@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: YakuHanJP_Narrow, "Roboto", "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.06em;
  line-height: 2.2;
  font-feature-settings: "palt";
  font-size: 2rem;
  background-color: #111;
}

img {
  width: 100%;
  /* PCの右クリック禁止 */
  pointer-events: none;
  /* SPの長押し禁止 */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
}

.pc {
  display: inline-block;
}

.sp {
  display: none;
}

h2 {
  font-size: 7rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

/*===========
fadein
===========*/
.fade {
  opacity: 0;
  transition: 3s;
}

.fade.is-show {
  opacity: 1;
}

.prologue {
  background-image: url(../img/prologue_back.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 999;
}
.prologue .prologue_copy {
  color: #fff;
  letter-spacing: 0.1em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1.2;
}
.prologue .typewriter {
  font-size: 2rem;
  border-right: 2px solid #fff; /* カーソル風の演出 */
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}

.prologue2 {
  background-image: url(../img/prologue_back_top.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 999;
}
.prologue2 .prologue_copy2 {
  color: #fff;
  letter-spacing: 0.1em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1.2;
}
.prologue2 .typewriter {
  font-size: 2rem;
  white-space: nowrap;
  display: inline-block;
}

.mv {
  padding: 2% 1% 8%;
  background-image: url(../img/back.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.mv .text_box {
  color: #fff;
  text-align: center;
  line-height: 2.4;
  padding-block: 8% 0;
}
.mv .text_box .space {
  margin-top: 2em;
}
.mv.top {
  padding-top: 6%;
}

.message {
  padding-block: 6% 8%;
}
.message .message_box {
  width: 96rem;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5%;
}
.message .message_box .text {
  width: 40rem;
  color: #fff;
  letter-spacing: 0;
  line-height: 1.8;
}
.message .message_box .text .sign {
  margin-block: 9% 0;
}
.message .message_box .text .sign.top {
  width: 70%;
  margin-left: auto;
}
.message .message_box .text .name {
  text-align: right;
}
.message .message_box .text .japanese {
  font-size: 0.8em;
  margin-top: 2em;
  letter-spacing: 0.08em;
}
.message .message_box .text .ja_name {
  text-align: right;
  font-size: 0.8em;
  letter-spacing: 0.08em;
}
.message .message_box .img {
  width: 50rem;
}

.gallery .img_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}
.gallery .img_box .img1 {
  grid-column: 1/3;
  grid-row: 1/2;
}
.gallery .img_box .img2 {
  grid-column: 1/2;
  grid-row: 2/4;
}
.gallery .img_box .img3 {
  grid-column: 2/3;
  grid-row: 2/3;
}
.gallery .img_box .img4 {
  grid-column: 2/3;
  grid-row: 3/4;
}
.gallery .img_box .img5 {
  grid-column: 1/3;
  grid-row: 4/5;
}
.gallery .img_box .img6 {
  grid-column: 1/2;
  grid-row: 5/6;
}
.gallery .img_box .img7 {
  grid-column: 2/3;
  grid-row: 5/6;
}
.gallery .img_box .img8 {
  grid-column: 1/3;
  grid-row: 6/7;
}

.history {
  padding-block: 6% 8%;
  background-image: url(../img/back.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.history .box {
  display: flex;
  flex-direction: column;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.history .box dl {
  display: flex;
  gap: 0 2em;
  color: #fff;
  justify-content: flex-start;
}
.history .box dl.b dt,
.history .box dl.b dd {
  font-weight: 600;
  color: #bba340;
}

footer {
  background-color: #0c0c0c;
  padding-block: 6% 8%;
}
footer .logo {
  width: 18%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  h2 {
    font-size: 9vw;
  }
  .prologue .prologue_copy {
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
  }
  .prologue .typewriter {
    font-size: 4.4vw;
    border-right: unset;
    border-bottom: 2px solid #fff; /* カーソル風の演出 */
  }
  .prologue2 .prologue_copy2 {
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
  }
  .prologue2 .typewriter {
    font-size: 4.4vw;
  }
  .mv {
    padding: 6% 1% 14%;
  }
  .mv .text_box {
    font-size: 3.6vw;
    padding-block: 12% 0;
  }
  .message {
    padding-block: 10% 14%;
  }
  .message .message_box {
    width: 80%;
    gap: 5vw;
  }
  .message .message_box .text {
    font-size: 3.8vw;
    width: 100%;
    margin-top: 4%;
  }
  .message .message_box .text .sign {
    width: 80%;
    margin-left: auto;
  }
  .gallery .img_box {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery .img_box .img1 {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .gallery .img_box .img2 {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .gallery .img_box .img3 {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .gallery .img_box .img4 {
    grid-column: 1/2;
    grid-row: 4/5;
  }
  .gallery .img_box .img5 {
    grid-column: 1/2;
    grid-row: 5/6;
  }
  .gallery .img_box .img6 {
    grid-column: 1/2;
    grid-row: 6/7;
  }
  .gallery .img_box .img7 {
    grid-column: 1/2;
    grid-row: 7/8;
  }
  .gallery .img_box .img8 {
    grid-column: 1/2;
    grid-row: 8/9;
  }
  .history {
    padding-block: 10% 14%;
  }
  .history .box {
    margin: 2vw auto 0;
    width: 80%;
    gap: 5vw;
  }
  .history .box dl {
    flex-direction: column;
    font-size: 4vw;
  }
  .history .box dl dt {
    line-height: 1.2;
  }
  .history .box dl dd {
    line-height: 1.5;
    text-align: justify;
  }
  footer {
    padding-block: 12% 16%;
  }
  footer .logo {
    width: 30%;
    line-height: 0;
  }
}/*# sourceMappingURL=style.css.map */