@charset "utf-8";

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


img {
  /* vertical-align: bottom; */
  width: 100%;
  height: auto;
}

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;
  background-color: #ffffff;
}

.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;
  }
}


@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);
}


/* KV */

.bn-txt {
  font-family: 'BN';
}

.kv-contents {
  position: relative;
}

.kv-ttl {
  position: absolute;
  align-items: baseline;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 15px;
  font-weight: normal;
}

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

@media (min-width: 1500px) {
  .kv-ttl {}
}

.kv-ttl h1 {
  font-size: 8rem;
  font-weight: normal;
  line-height: 6rem;
  letter-spacing: 0.2rem;
}

@media (min-width: 700px) {
  .kv-ttl h1 {
    font-size: 15rem;
    line-height: 13rem;
    letter-spacing: 0.5rem;
  }
}

.kv-ttl h2 {
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}

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

/* ================================================== */
/* OUTLINE */
/* ================================================== */
.outline-contents {}

.outline-bg-illust {}

.outline-table {
  width: calc(100% - 30px);
  max-width: 900px;
  font-size: 1.6rem;
  padding: 60px 0 70px;
  margin: 0 auto;
  color: #141414;
}

.outline-table-dl {
  display: flex;
  border-bottom: 1px solid #d6d6d6;;
  padding: 15px 0;
}

.outline-table-dt {
  font-weight: bold;
  width: 25%;
  font-size: 1.5rem;
}

@media (min-width: 700px) {
  .outline-table-dt {
    font-size: 1.8rem;
    width: 20%;
  }
}

.outline-table-dd {
  width: 75%;
  font-size: 1.5rem;
}

.outline-table-dd a {
  color: #c42c28;;
}

@media (min-width: 700px) {
  .outline-table-dd {
    width: 80%;
  }
}



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

/*背景色が伸びて出現（左から・右から）*/
.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: 1s;
  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: #c42c28;
  /*伸びる背景色の設定*/
}

@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;
}

.fadeUpTrigger2 {
  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);
  }
}




/* アルファベット */




.gallery{
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 700px) {
  .gallery{
    display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
