@charset "utf-8";
/* CSS Document */
/*#topの時の制御*/
.backBG.TOP:before,.backBG.TOP:after{
  display: none;
}
.backBG.TOP .blackBox{
  animation-name: none;
}
.backBG.TOP .blackline{
  animation-name: none;
}
/* アニメーション1　上下のBOX ---------------------------------------- */
.backBG{
  position: relative;
  overflow: hidden;
  height: calc(100% - 100px);
}
.backBG:before{
  top:0;
}
.backBG:after{
  bottom :0;
}
.backBG:before,.backBG:after{
  content:"";
  position: absolute;
  animation-fill-mode:backwards;
  animation: in 8s ;
  background: #0d0d0d;
  animation-timing-function:ease-in;
}
@keyframes in {
  0% {
    height: 0px;
    width: 100%;
    background: #0d0d0d;
  }
  0.00001% {
    height: 200px;
    width: 100%;
    background: #0d0d0d;
  }
  100% {
    height: 0px;
    width: 100%;
    background: #0d0d0d;
  }
}
/* アニメーション2　画像の切り替え ---------------------------------------- */
.photo-show { 
  height: 100%;
  position: relative;
  overflow: hidden;
}
.photo-show .sp{
  display: none;
}
.photo-show .pc img,
.photo-show .sp img  { 
  animation: show 4s ;
  -webkit-animation: show 4s ;
  opacity: 0;
  position: absolute;
  right: 0; 
  min-width: 100%; 
  min-height: 100%;
  width: auto; 
  height: auto;
  z-index: -100;
}
@keyframes show {
  0% {opacity:0}
  50% {opacity:1;}
  100% {opacity:0;}
}
@-webkit-keyframes show {
  0% {opacity:0}
  50% {opacity:1;}
  100% {opacity:0;}
}
.photo-show img:nth-of-type(1) {
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
}
.photo-show img:nth-of-type(2) {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}
.photo-show img:nth-of-type(3) {
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
}
.photo-show img:nth-of-type(4) {
  animation-delay: 3s;
  -webkit-animation-delay: 3s;
}
.photo-show img:nth-of-type(5) {
  animation-delay: 3.8s;
  -webkit-animation-delay: 3.8s
}
.photo-show img:nth-of-type(6) {
  animation-delay: 4.6s;
  -webkit-animation-delay: 4.6s;
}
.photo-show img:nth-of-type(7) {
  animation-delay: 5.4s;
  -webkit-animation-delay: 5.4s;
} 
.photo-show img:nth-of-type(8) {
  animation-delay: 6.2s;
  -webkit-animation-delay: 6.2s;
}
.photo-show img:nth-of-type(9) {
  animation-delay: 7s;
  -webkit-animation-delay: 7s;
}
.photo-show img:nth-of-type(10) {
  animation-delay: 7.6s;
  -webkit-animation-delay: 7.6s;
}
.photo-show img:nth-of-type(11) {
  animation-delay: 8.2s;
  -webkit-animation-delay: 8.2s;
}
.photo-show img:nth-of-type(12) {
  animation-delay: 8.8s;
  -webkit-animation-delay: 8.8s;
}
/* アニメーション3　黒のバッググランド ---------------------------------------- */
.blackBox { 
  height: 100vh;
  animation-name: black;
  animation-duration: 1s ;
  animation-delay: 10s;
  opacity:0;
}
.blackBox.blackBG{
  background:#0d0d0d; 
  opacity:1;
}
@keyframes black {
  0%{    
    opacity:1;
    background:#0d0d0d; 
    transform:translateX(100%);
  }
  100%{ 
    opacity:1;
    background:#0d0d0d;   
    transform:translateX(0);
  }
}
/* アニメーション4 ---------------------------------------- */
.blackline{
  position: absolute;
  bottom: 0;
  left: 0;    
  width: 100%;
  height: 100vh;
  background:#141414;
  animation-name: black2;
  animation-duration: 1s ;
  animation-delay: 10s;
}
@keyframes black2 {
  0%{    
    transform:translateX(100%);
  }
  100%{ 
    transform:translateX(0);
  }
}
/* nav ---------------------------------------- */
.Nav{
  position: fixed;
  top: 0;
  left: 0;    
  width: 100%;
  height: 200px;
  background:rgba(255, 255, 255, 0.8);
  border-top: solid 8px #9F9D66;
  z-index: 101;
}
.Nav.active,.Nav2{
  display: none;
}
.Nav2.active{
  display: inherit;
}
.Nav .logo{
	width: 160px;
	height: 76px;
  margin: 24px auto;
}
.Nav ul{
  text-align: center;
}
.Nav li{
  display: inline-block;
  padding: 0 24px;
  line-height: 24px;
  vertical-align: middle;
}
.Nav li a{
  text-decoration: none;
}

/* Anniversary ---------------------------------------- */
.Anniversary{
  width: 100%;
  max-width: 900px;
  margin: auto;
  padding: 0 4%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;

}
.AnniversaryBG{
  background: #000;
  color: #9F9D66;
  padding: 120px 0 60px; 
}
.AnniversaryBG p{
  width: 100%;
  max-width: 1000px;
  padding: 0 16px;
  margin: auto;
  line-height: 32px;
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 0.8s ease-in-out 0.5s;
}
.AnniversaryBG .right{
  text-align: right;
  padding: 32px 0 0;
}
.ornament{
  width:100%;
  max-width: 1000px;
  padding: 60px 0 0;
  margin: auto;
  text-align: center;
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 0.8s ease-in-out 0.5s;
}
.ornament h2{
  position:relative;
  display:inline-block;
  padding:24px 50%;
}
.ornament.Anime.on,.AnniversaryBG p.Anime.on{
    opacity: 1;
    transform: translate(0, 0);
}

.ornament h2:before, .ornament h2:after{
  content:"";
  display:block;
  width:48%;
  height:4px;
  border-top:1px solid #9F9D66;
  position:absolute;
  top:3px;
}
.ornament h2:before{left:-24px;}
.ornament h2:after{right:-24px;}
.ornament h2 span{
  display:block;
  width: 8px;
  height: 8px;
  background: #9F9D66;
  /*border:2px solid #9F9D66;*/
  -webkit-transform:rotate(45deg);
  transform:rotate(45deg);
  position:absolute;
  top: 0px;
  left:50%;
  margin-left:-4px;
}
/* slider ---------------------------------------- */
.slider01{
  /*background:linear-gradient(to bottom, transparent 0, #000 102%), url(../img/slider/slider01.jpg) no-repeat center center;*/
  background:url(../img/slider/slider01.jpg) no-repeat center center;
  width: 100%;
  height: 100vh;
  background-size: cover;
}
.slider02{
  /*background:linear-gradient(to bottom, transparent 0, #000 102%), url(../img/slider/slider02.jpg) no-repeat center center;*/
  background:url(../img/slider/slider02.jpg) no-repeat center center;
  width: 100%;
  height: 100vh;
  background-size: cover;
}
.mouse {
  display: block;
  margin: 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 40px;
  border: 2px solid #9F9D66;
  position: absolute;
  bottom: 44px;
  position: absolute;
  left: 50%;
  margin-left: -38px;
  z-index: 100;
}
.mouse span {
  display: block;
  margin: 26px auto;
  width: 0px;
  height: 0px;
  border-top: 18px solid #9F9D66;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
}
.mouse p{
  color: #9F9D66;
  text-align: center;
  font-size: 21px;
  font-family: 'Yellowtail', cursive;
}
/* coomon content---------------------------------------- */
.BG{
  background: #f1f1f1;
}
.contentW,.contentW2{
  width: 100%;
  max-width: 1600px;
  margin: auto;
}
.contentW2{
  padding: 200px 40px 360px;
}
.contentW3{
  width: 100%;
  /*max-width: 1000px;*/
  /*margin: auto;*/
}
.text p{
    line-height: 32px;
}
.contentW4{
  width: 100%;
  max-width: 1680px;
  margin: auto;
}
.moreBtn{
  width: 280px;
  text-align: center;
  margin: 40px 0;
  float: right;
}
.moreBtn2{
  width: 280px;
  text-align: center;
  margin: 40px 0;
}
.moreBtn a,.moreBtn2 a{
  padding: 0 34px 0 60px;
  color: #9F9D66;
  border-radius: 4px;
  position: relative;
}
.moreBtn a.button:before,.moreBtn2 a.button:before {
    content: "\e916";
    font-family: "icon";
    font-size: 24px;
    color: #9F9D66;
    position: absolute;
    top: 0;
    left: -130px;
    right: 0;
    margin: auto;
}
.moreBtn a.button:hover:before,
.moreBtn2 a.button:hover:before{
  color: #fff;
  z-index: 1;
}

/* TOP content---------------------------------------- */
.blackBox2{
  background: #000;
  width: 100%;
  height: 580px;
  margin: -5px 0 0;
  padding: 80px 40px 400px;
}
.blackBox2 .text{
  color: #fff;
}
.blackBox2 .text h2{
  font-size: 60px;
  position: relative;
  margin: -200px 0 40px;
  padding: 200px 0 0;
}
.blackBox2 .text h2,.blackBox2 .text p,.four .text h2,.four .text p,
.thestage .text h2,.thestage .text p,.access .text h2,.accessw .map,
.accessw .detail,.moreBtn,.moreBtn2{
  opacity : 0;
  transform : translate(0, 30px);
  transition : all 0.8s ease-in-out 0.5s;
}
.blackBox2 .text h2.Anime.on,.blackBox2 .text p.Anime.on,
.four .text h2.Anime.on,.four .text p.Anime.on,
.thestage .text h2.Anime.on,.thestage .text p.Anime.on,
.access .text h2.Anime.on,.accessw .map.Anime.on,.accessw .detail.Anime.on,
.moreBtn.Anime.on,.moreBtn2.Anime.on{
  opacity : 1;
  transform : translate(0, 0);
}
.blackBox2 .text h2:before,.thestage .text h2:before,.accessw .text h2:before{
  content: '';
  position: absolute;
  width: 60px;
  height: 8px;
  left: 0;
  bottom: -16px;
  background: #9F9D66;
}
.blackBox2 .text h2:before{
   bottom: -16px; 
}
/* thefirst ---------------------------------------- */
.thefirst {
  margin: -100px 0 0;
  float: right;
}
/* four ---------------------------------------- */
.four{
  text-align: right;
}
.four .text h2{
  font-size: 60px;
  position: relative;
  text-align: right;
  margin: 0 0 40px;
}
.four .text h2:before{
  content: '';
  position: absolute;
  width: 60px;
  height: 8px;
  right: 0;
  bottom: -16px;
  background: #9F9D66;
}
.four .text h2 span{
  display: block;
  font-size: 24px;
}
/* thestage ---------------------------------------- */
.thestageBg{
  background:url(../img/top/thestage.jpg) no-repeat center center;
  width: 100%;
  height: 800px;
  background-size: cover;
}
.thestage .textw{
  width: 100%;
  max-width: 1600px;
  margin: auto;
}
.thestage .text h2{
  font-size: 60px;
  position: relative;
  margin: 0 0 40px;
}
.thestage .text h2 span,.accessw .text h2 span{
  display: block;
  font-size: 24px;
}
.thestage{
  width: 100%;
  margin: 0 0 -100px;
  position: relative;
}
.thestage .Bgmask{
  /*
  background: -webkit-linear-gradient(90deg, rgb(0, 0, 0, 0.8), rgb(255, 255, 255, 0));
  background: linear-gradient(90deg, rgb(0, 0, 0, 0.8), rgb(255, 255, 255, 0));
*/
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 80px 40px;  
}
.BGcolor{
  background: #9F9D66;
  width: 100%;
  height: 200px;
}
/* aaa ---------------------------------------- */
.accessw{
  width: 100%;
  margin: -160px 0 0;
  position: relative;
}
.accessw .text h2{
  font-size: 60px;
  position: relative;
  margin: 0 0 52px; 
}

.accessw .Bgmask{
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  padding: 80px 40px;  
}
.mapinline{
  width: 100%;
  max-width: 1600px;
  margin: auto;
}
.mapinline .map{
  width: 60%;
  height: 480px;
  float: left;
}
.mapinline #maps{
  height: 480px;
}
.mapinline .detail{
  width: 40%;
  float: right;
  color: #000;
  padding: 40px;
}
.mapinline .detail h3{
  font-size: 30px;
  margin: 0 0 32px;
}
.mapinline .detail ul{
  margin: 0 0 24px;
}
.mapinline .detail li{
  margin: 0 0 8px; 
}


@media screen and (max-width:767px){

/* アニメーション1　上下のBOX ---------------------------------------- */
  @keyframes in {
    0% {
      height: 0px;
      width: 100%;
      background: #0d0d0d;
    }
    0.00001% {
      height: 120px;
      width: 100%;
      background: #0d0d0d;
    }
    100% {
      height: 0px;
      width: 100%;
      background: #0d0d0d;
    }
  }
/* アニメーション2　画像の切り替え ---------------------------------------- */
  .photo-show .pc{
    display: none;
  }
  .photo-show .sp{
    display: initial;
  }
/* nav ---------------------------------------- */
	.Nav{
	  height: 80px;
	}
	.Nav .logo{
		width: 120px;
		height: 57px;
	  margin: 8px auto;
	}
  .Nav li {
    display: initial;
    padding: 0 24px;
    line-height: 24px;
    vertical-align: middle;
  }
  .Nav.active{
    display: inherit;
  }
  .Nav2.active{
    display: none;
  }

/* coomon content---------------------------------------- */
  .contentW,.contentW2{
  }
  .contentW2{
    padding: 100px 16px 260px;
  }
  .contentW3{
  }
  .BrSp{
    display: none;
  }
  .text p {
      line-height: 24px;
  }
/* Anniversary---------------------------------------- */
  .Anniversary h2{
    font-size: 80px;
  }
  .Anniversary p{
    font-size: 26px;
  }
  .AnniversaryBG .right {
      padding: 32px 16px 0;
  }
  .AnniversaryBG p {
      line-height: 24px;
  }  
/* TOP content---------------------------------------- */
  .blackBox2 .text h2,.four .text h2,.thestage .text h2,.accessw .text h2{
    font-size: 30px;
  }
  .blackBox2 .text h2:before,.thestage .text h2:before,.accessw .text h2:before,.four .text h2:before{
    height: 4px;
  }

  .blackBox2 {
    padding: 40px 16px 20px;
  }


/* thestage---------------------------------------- */
  .thestage .Bgmask{
    padding: 40px 16px 20px;
  }
  .thestage .Bgmask{
    background:rgb(0, 0, 0, 0.8);
    color: #fff;
  }


  .accessw .Bgmask{
    padding: 40px 16px 20px;
  }

  .mapinline .map{
    width: 100%;
    float: none;
  }
  .mapinline .detail h3 {
      font-size: 24px;
      margin: 0px 0 16px;
  }  
  .mapinline .detail {
    width: 100%;
    float: none;
    padding: 40px 0;
  }
  .mapinline .detail ul {
      margin: 0 0 8px;
  }  

}
@media screen and (max-width:767px){
/* Anniversary---------------------------------------- */
  .Anniversary h2{
    font-size: 42px;
  }
  .Anniversary p{
    font-size: 14px;
  }


}