@charset "UTF-8";
@font-face {
  font-family: 'BLG';
  src: url(../font/bleage_font.ttf);
  font-weight: normal;
}
@font-face {
  font-family: 'BN';
  src: url(../font/BebasNeue-Regular.ttf);
  font-weight: normal;
  }
  @font-face {
  font-family: 'GS';
  src: url(../font/GeneralSans-Semibold.ttf);
  }
  

img{
  vertical-align: bottom;
}
p,span,h1,h2,h3,h4,div,nav,li,ul{
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-feature-settings: "palt";
}
html {
  scroll-padding-top: 0px; /* 固定ヘッダの高さ分 */
  font-size: 62.5%;
  overflow-x: hidden;
}
body {
  line-height: 1.6875;
}
.module_title{
  display: none;
}
.blg-font{
  font-family: 'BLG';
  src: url(font/bleage_font.ttf);
}
.color-white{
  color: white;
}
@media (min-width: 700px) {
.sp-br{
  display: none;
}
}
.pc-br{
  display: none;
}
@media (min-width: 700px) {
.pc-br{
  display: block;
}
}

/* ================================ */
/* KV */
/* ================================ */
.atcl1-gallery{
  background-color: #222;
}
/* タイトル始まり */
.ttl-wrapper{
  width: calc(100% - 50px);
  margin: 0 auto;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.ttl-big{
  font-size: 10rem;
  font-family: "BN";
  letter-spacing: 0.8rem;
  line-height: 10rem;
  color: #ffffff;
}
@media (min-width: 700px) {
  .ttl-big{
    font-size: 15rem;
    line-height: 15rem;
    letter-spacing: 1rem;
  }
}
.ttl-small-wrap{
  display: flex;
  gap: 20px;
  align-items: center;
  color: #ffffff;
}
.ttl-small1{
  font-size: 2.3rem;
  font-weight: bold;
  letter-spacing: 0.6rem;
}
@media (min-width: 700px) {
  .ttl-small1{
    font-size: 2.8rem;
    letter-spacing: 0.7rem;
  }
}

.ttl-small2{
  font-family: "GS";
  font-size: 1.2rem;
  line-height: 1.3rem;
  letter-spacing: 0.3rem;
}
@media (min-width: 700px) {
  .ttl-small2{
    font-size: 1.4rem;
    letter-spacing: 0.5rem;
    line-height: 1.5rem;
  }
}

/* ================================================== */
/* タブ */
/* ================================================== */
.tab {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 10px;
  width: calc(100% - 50px);
  margin: 0rem auto 0rem;
  position: relative;
  z-index: 2;
  padding-bottom: 3rem;
}
@media (min-width: 700px) {
  .tab {
  width: calc(100% - 0px);
  max-width: 900px;
  gap: 30px;
  }
}

.tab-botom{
  padding-top: 3rem;
}

.tablist.active {
  background-color: #aba185;
  color: white;
  border: 0.5px solid #aba185;
}

.tablist {
  padding: 0;
  list-style-type: none;
  border: 0.5px solid #aba185;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  color: #ffffff;
  background-color: #2222228f;
}
@media (min-width: 700px) {
  .tablist {
  font-size: 1.6rem;
  font-weight: bold;
  }
}
.tabcontents {
  height: auto;
}
.tabcontents-list{
  width: calc(100% - 50px);
  margin: 0 auto;
}
@media (min-width: 700px) {
  .tabcontents-list{
    max-width: 900px;
    width: calc(100% - 0px);
  }
}
.coming-soon{
  font-size: 7rem;
  font-family: 'BN';
  text-align: center;
  color: rgb(255, 255, 255);
  padding: 10rem 0;
}
@media (min-width: 700px) {
  .coming-soon{
    font-size: 10rem;
  }
}
/* ================================================================ */
/* fotter */
/* ================================================================ */

.sns-contents {
  display: flex;
  gap: 10px;
  justify-content: center;
}

@media (min-width: 700px) {
  .sns-contents {
    gap: 20px;
  }
}

.sns-btn img {
  width: 40px;
}

@media (min-width: 700px) {
  .sns-btn img {
    width: 50px;
  }
}

.footer-logo {
  width: 50px;
  display: block;
  margin: 60px auto 0;
}

@media (min-width: 700px) {
  .footer-logo {
    width: 60px;
  }
}

.footer-copyright {
  color: white;
  text-align: center;
  margin-top: 30px;
  font-size: 1rem;
}

@media (min-width: 700px) {
  .footer-copyright {
    font-size: 1.3rem;
  }
}


/*==================================================
動きの設定
===================================*/

/*背景色が伸びて出現（左から・右から）*/
.bgextendKv{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*はみ出た色要素を隠す*/
	opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappearKv{
	animation-name:bgextendAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes bgextendAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/*背景色が伸びて出現（左から）*/
.bgLRextendKv::before{
	animation-name:bgLRextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #beb49b;/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定*/
.bgappearTriggerKv,
.bgUDextendTriggerKv,
.bgDUextendTriggerKv,
.bgRLextendTriggerKv,
.bgLRextendTriggerKv{
    opacity: 0;
}


/* fadeup */
.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
  
  
  .fadeUpTrigger{
      opacity: 0;
  }



  /* 左から */

.fadeLeft{
  animation-name:fadeLeftAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeLeftAnime{
    from {
      opacity: 0;
    transform: translateX(-100px);
    }
  
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }
  
  .footer-list-bl{

  }

  .footer-gallery{
    background-color: #222!important;
  }
  
    /* タイトル用の動き */
    span.smoothText {
      overflow: hidden;
      display: block;
    }
    
    span.smoothTextTrigger{
      transition: .8s ease-in-out;
      transform: translate3d(0,100%,0) skewY(12deg);
      transform-origin: left;
      display: block;
    }
    span.smoothTextTrigger.smoothTextAppear{
        transform: translate3d(0,0,0) skewY(0);
    }