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

img {
  height: auto;
  max-width: 100%;
}
img{
  vertical-align: bottom;
  width: 100%;
}
p,span,h1,h2,h3,h4,div,nav{
  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 */
/* ================================ */
.kv-contents {
  position: relative;
}

.kv-ttl {
  position: absolute;
  display: flex;
  align-items: baseline;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 15px;
  color: #fff;
}

@media (min-width: 700px) {
  .kv-ttl {
    margin-left: 15%;
  }
}

.kv-ttl h1 {
  font-size: 6rem;
  font-weight: normal;
}

@media (min-width: 700px) {
  .kv-ttl h1 {
    font-size: 10rem;
  }
}

.kv-ttl h2 {
  font-size: 2rem;
  margin-left: 10px;
}

@media (min-width: 700px) {
  .kv-ttl h2 {
    font-size: 3rem;
    letter-spacing: 1.2rem;
  }
}

.coming-soon{
  font-size: 5rem;
  text-align: center;
  font-family: 'BLG';
  padding: 8rem 0;
}
/*==================================================
ギャラリーのためのcss
===================================*/
.gallery{
  columns: 4;/*段組みの数*/
  padding:5rem 15px;/*ギャラリー左右に余白をつける*/
  margin:0 auto;
  max-width: 1000px;
  }
  
  .gallery li {
      margin-bottom: 20px;/*各画像下に余白をつける*/
  list-style:none;
  }
  
  /*ギャラリー内のイメージは横幅100%にする*/
  .gallery img{
    width:100%;
    height:auto;
    vertical-align: bottom;/*画像の下にできる余白を削除*/}
  
  /*　横幅900px以下の段組み設定　*/
  @media only screen and (max-width: 900px) {
    .gallery{
    columns:3;
    }	
  }
  
  @media only screen and (max-width: 768px) {
    .gallery{
    columns: 2;
    }	
  }


/* ================================================================ */
/* fotter */
/* ================================================================ */
.footer-contents {
  background-color: rgb(0, 0, 0);
  padding: 60px 0;
}

.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: #DC6911;/*伸びる背景色の設定*/
}
@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);
    }
  }
  