@charset "UTF-8";
/*color*/
/* guideline */
/*font-family*/
/*text-shadow*/
/*box-shadow*/
/*media query break point*/
/*gHeader用*/
/*gHeader用*/
/* media query */
/* ------------------------------------------------------------
    HEADER
------------------------------------------------------------ */
/* ------------------------------------------------------------
    MAIN
------------------------------------------------------------ */
/* ------------------------------------------------------------
    MV
------------------------------------------------------------ */
.s_mv {
  position: relative;
  z-index: 0;
  width: 100%;
  overflow: hidden;
  background-color: #ccc;
}
.s_mv_full {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.s_mv_video {
  /* ベースは非表示 */
  display: none;
  width: 100%;
}
.s_mv_video_sp {
  aspect-ratio: 864/1080;
  display: block;
}
@media only screen and (min-width: 769px) {
  .s_mv_video_sp {
    display: none;
  }
}
.s_mv_video_pc {
  aspect-ratio: 1280/720;
  display: none;
}
@media only screen and (min-width: 769px) {
  .s_mv_video_pc {
    display: block;
  }
}
.s_mv_video_controls {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto clamp(8px, 6.5142857143px + 0.380952381vw, 12px) auto;
  grid-template-columns: auto auto;
  gap: clamp(8px, 6.5142857143px + 0.380952381vw, 12px);
  position: absolute;
  bottom: clamp(12px, 7.5428571429px + 1.1428571429vw, 24px);
  right: clamp(12px, 7.5428571429px + 1.1428571429vw, 24px);
}
.s_mv_video_controls .btn_control {
  display: block;
  cursor: pointer;
  width: clamp(32px, 29.0285714286px + 0.7619047619vw, 40px);
  height: clamp(32px, 29.0285714286px + 0.7619047619vw, 40px);
}
.s_mv_video_controls {
  /* --- アイコン切り替え --- */
  /* デフォルト（activeクラスがない時）は「OFFアイコン」を表示 */
}
.s_mv_video_controls .btn_control .icon_state_on {
  display: none;
}
.s_mv_video_controls .btn_control .icon_state_off {
  display: block;
}
.s_mv_video_controls {
  /* activeクラスがついた時は「ONアイコン」を表示 */
}
.s_mv_video_controls .btn_control.is-active .icon_state_on {
  display: block;
}
.s_mv_video_controls .btn_control.is-active .icon_state_off {
  display: none;
}

.s_mv_skip, .s_mv_replay {
  position: absolute;
  right: 0;
  bottom: 0;
  font-family: "EB Garamond", serif;
  font-size: 90%;
  line-height: 1;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 6px 12px;
  cursor: pointer;
  opacity: 0;
}
@media only screen and (min-width: 769px) {
  .s_mv_skip, .s_mv_replay {
    bottom: 80px;
  }
}
@media only screen and (min-width: 1000px) {
  .s_mv_skip, .s_mv_replay {
    bottom: 60px;
    padding: 8px 18px;
  }
}

.s_mv_scroll {
  width: 150px;
  height: 235px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.5) 100%);
}
.s_mv_scroll .scroll {
  width: 40px;
  height: 140px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.s_mv_scroll .scroll .txt {
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  white-space: nowrap;
  letter-spacing: 0.2em;
  /* -webkit-text-orientation: upright;
  text-orientation: upright; */
  -ms-text-combine-horizontal: all; /* for IE Edge */
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", serif; /* YAKUHAN以外 */
  line-height: 2.5;
}
.s_mv_scroll .scroll .txt .yoko {
  display: inline-block;
  -webkit-writing-mode: lr-tb;
          writing-mode: lr-tb;
  -ms-writing-mode: lr-tb;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.s_mv_scroll .scroll .txt .yoko.first {
  line-height: 1;
}
.s_mv_scroll .scroll .txt {
  text-orientation: mixed;
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.07em;
  position: absolute;
  top: 0;
  right: 18px;
}
.s_mv_scroll .scroll::before, .s_mv_scroll .scroll::after {
  display: block;
  content: "";
  width: 1px;
  position: absolute;
  left: 0;
  top: 0;
}
.s_mv_scroll .scroll::before {
  background: rgba(255, 255, 255, 0.4);
  height: 100%;
}
.s_mv_scroll .scroll::after {
  background: #fff;
  height: 0;
  -webkit-animation: anime_scroll 4s ease-in-out infinite;
          animation: anime_scroll 4s ease-in-out infinite;
}
@media only screen and (min-width: 769px) {
  .s_mv_scroll {
    width: 300px;
    height: 470px;
  }
  .s_mv_scroll .scroll {
    width: 60px;
    height: 120px;
  }
  .s_mv_scroll .scroll .txt {
    right: 34px;
  }
}

@media only screen and (max-width: 375px) and (max-height: 670px) { /* iPhoneSE */ }
/* ------------------------------------------------------------
    CONCEPT
------------------------------------------------------------ */
.s_concept {
  position: relative;
  z-index: 1;
}
.s_concept .s_concept_catch_bg_box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100vh - 70px);
  height: calc(100dvh - 70px); /* iOS */
  overflow: hidden;
}
@media only screen and (min-width: 769px) {
  .s_concept .s_concept_catch_bg_box {
    height: 100vh;
  }
}
.s_concept .catch_01, .s_concept .catch_02, .s_concept .catch_03, .s_concept .story_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.s_concept .s_concept_catch_bg_box {
  background-color: #eae6e4;
}
.s_concept .s_concept_catch_bg_box .img {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
.s_concept .s_concept_catch_bg_box .img::after {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.s_concept .s_concept_catch_bg_box .img {
  position: absolute;
  opacity: 0;
}
.s_concept .s_concept_catch_bg_box .img::after {
  background-color: #919490;
  mix-blend-mode: multiply;
}
.s_concept .s_concept_catch_bg_box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.s_concept .s_concept_catch_bg_box .img .img_cap {
  text-align: left;
  z-index: 1;
}
.s_concept .s_concept_catch_bg_box .catch_01 .img {
  opacity: 0.5;
}
.s_concept .s_concept_catch_cont_box .catch_01, .s_concept .s_concept_catch_cont_box .catch_02, .s_concept .s_concept_catch_cont_box .catch_03 {
  height: calc(100vh - 70px);
  height: calc(100dvh - 70px); /* iOS */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 769px) {
  .s_concept .s_concept_catch_cont_box .catch_01, .s_concept .s_concept_catch_cont_box .catch_02, .s_concept .s_concept_catch_cont_box .catch_03 {
    height: 100vh;
  }
}
.s_concept .s_concept_catch_cont_box .catch {
  width: 75%;
  max-width: 384px;
  position: relative;
  z-index: 1;
  opacity: 0;
}
.s_concept .story_bg {
  opacity: 0;
  background: #eae6e4;
}
.s_concept .story_bg .grad {
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 100%;
  background: linear-gradient(120deg, rgb(126, 129, 124) 0%, rgb(230, 232, 230) 17%, rgb(100, 146, 147) 34%, rgb(230, 232, 230) 51%, rgb(126, 129, 124) 68%, rgb(230, 232, 230) 85%, rgb(100, 146, 147) 100%);
  opacity: 0.5;
}
.s_concept .story_cont {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 12vh;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  gap: clamp(48px, 30.1714285714px + 4.5714285714vw, 96px);
}
.s_concept .story_cont_ph {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}
.s_concept .story_cont_ph_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 95%;
  max-width: 894px;
}
.s_concept .story_cont_ph_in .ph_item_a {
  width: 58%;
}
.s_concept .story_cont_ph_in .ph_item_b {
  width: 39%;
  margin-top: 8.42%;
}
.s_concept .story_cont_ph_in .ph_item_b figure {
  width: 76.47%;
}
.s_concept .story_cont_ph_in .ph_item_b .item_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 5.5%;
}
.s_concept .story_cont_ph.ph_02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.s_concept .story_cont_ph.ph_02 .story_cont_ph_in {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.s_concept .story_cont_txt {
  font-size: clamp(1.4rem, 1.2514285714rem + 0.380952381vw, 1.8rem);
  text-align: center;
  line-height: 2.2;
}

/* ------------------------------------------------------------
    CG
------------------------------------------------------------ */
.s_cg {
  position: relative;
  z-index: 1;
  height: calc(100vh - 70px);
  clip-path: border-box;
}
@media only screen and (min-width: 769px) {
  .s_cg {
    height: 100vh;
  }
}
.s_cg_figure {
  position: fixed;
  width: 100%;
  height: calc(100vh - 70px);
  top: 0;
  left: 0;
  pointer-events: none;
}
@media only screen and (min-width: 769px) {
  .s_cg_figure {
    height: 100vh;
  }
}
.s_cg_figure figcaption {
  text-align: left;
}
.s_cg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ------------------------------------------------------------
    INFORMATION
------------------------------------------------------------ */
.s_info {
  position: relative;
  z-index: 1;
  background: url(../img/common/bg_paper.webp) 0 0/cover;
  padding: clamp(56px, 47.0857142857px + 2.2857142857vw, 80px) 0;
}
.s_info_in {
  width: 90%;
  max-width: 1160px;
  margin-inline: auto;
}
.s_info_copy {
  text-align: center;
}
.s_info_copy .name {
  font-size: clamp(2rem, 1.5542857143rem + 1.1428571429vw, 3.2rem);
  line-height: 1.4;
  text-align: center;
}
.s_info_copy .access {
  line-height: 1;
  margin-top: clamp(32px, 20.1142857143px + 3.0476190476vw, 64px);
  text-align: left;
  display: inline-block;
}
.s_info_copy .access .line {
  font-size: clamp(1.1rem, 0.9142857143rem + 0.4761904762vw, 1.6rem);
  margin: 0 0 0.7em 0.7em;
  letter-spacing: 0.01em;
}
.s_info_copy .access .eki {
  letter-spacing: 0.06em;
  font-size: clamp(3.4rem, 2.6571428571rem + 1.9047619048vw, 5.4rem);
}
.s_info_copy .access .eki .s_s {
  font-size: 60%;
}
.s_info_copy .access .eki .min {
  font-size: clamp(6rem, 4.5142857143rem + 3.8095238095vw, 10rem);
  line-height: 0;
}
.s_info_action {
  border: solid 1px #222222;
  margin-top: clamp(40px, 31.0857142857px + 2.2857142857vw, 64px);
}
.s_info_action .action_copy {
  text-align: center;
  padding: clamp(28px, 20.5714285714px + 1.9047619048vw, 48px) clamp(20px, 12.5714285714px + 1.9047619048vw, 40px);
}
.s_info_action .action_copy .copy_1 {
  font-size: clamp(2.4rem, 1.8057142857rem + 1.5238095238vw, 4rem);
  line-height: 1.4;
}
.s_info_action .action_copy .copy_2 {
  font-size: clamp(1.8rem, 1.5028571429rem + 0.7619047619vw, 2.6rem);
  line-height: 1.4;
  margin-top: clamp(16px, 13.0285714286px + 0.7619047619vw, 24px);
}
.s_info_action .action_copy .copy_3 {
  font-size: clamp(1.4rem, 1.2514285714rem + 0.380952381vw, 1.8rem);
  display: inline-block;
  text-align: left;
  line-height: 1.6;
  margin-top: clamp(16px, 13.0285714286px + 0.7619047619vw, 24px);
  color: #75572b;
}
.s_info_action .action_copy .copy_3 > p + p {
  margin-top: 0.6em;
}
@media only screen and (min-width: 1000px) {
  .s_info_action .action_copy .copy_3 {
    text-align: center;
  }
}
.s_info_action .action_copy .notes {
  font-size: clamp(1.2rem, 1.1257142857rem + 0.1904761905vw, 1.4rem);
  line-height: 1.4;
  margin-top: clamp(8px, 6.5142857143px + 0.380952381vw, 12px);
}
.s_info_action .action_copy .s_mini {
  font-size: clamp(1.1rem, 0.9885714286rem + 0.2857142857vw, 1.4rem);
}
.s_info_action .action_limited {
  background: #222222;
  padding: clamp(28px, 20.5714285714px + 1.9047619048vw, 48px) clamp(20px, 12.5714285714px + 1.9047619048vw, 40px);
  text-align: center;
}
.s_info_action .action_limited .hd {
  color: #b59a5b;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 2.48rem + 1.3333333333vw, 4.4rem);
  line-height: 1;
}
.s_info_action .action_limited .c_btn_single {
  background: #c2c2c2;
  margin-top: clamp(16px, 13.0285714286px + 0.7619047619vw, 24px);
}
.s_info_action .action_limited .soon {
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  font-size: clamp(1.8rem, 1.8rem + 0vw, 1.8rem);
  line-height: 1;
  margin-top: clamp(8px, 5.0285714286px + 0.7619047619vw, 16px);
}
/*# sourceMappingURL=top.css.map */