@charset "UTF-8";
/* --------------------
   Base
-------------------- */
:root {
  --gap: clamp(16px, 3vw, 32px);
  --nav-w: 72px;
  --c-light: $font_collar1;
  --c-dark: $font_collar2;
  --c-accent: $font_collar-gold;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #CCDCE9;
  background: #000;
  font-family: "HGMinchoB", "HGSMinchoE", "Zen Old Mincho", "Shippori Mincho", Georgia, serif;
  font-weight: 500;
  line-height: 1.8;
}

main {
  margin-top: -100vh;
}

/* ローディング画面 */
.progress-bar {
  width: 200px;
  height: 8px;
  background: #eee;
  border: 1px solid black;
  border-radius: 4px;
  overflow: hidden;
  position: fixed;
  z-index: 9999;
  background: #fff;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bar {
  width: 0;
  height: 100%;
  background: #DFA940;
  animation: loading 3s infinite;
}

@keyframes loading {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-image: linear-gradient(0deg, #001e36, #000000);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
#loading .hero-loading {
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  position: absolute;
  top: 50%;
  left: 45.5%;
  animation: fluffy 3s infinite;
}
#loading .hero-loading .top-h1 {
  writing-mode: vertical-rl;
  font-size: 48px;
  font-weight: 500;
  font-family: "HGSMinchoE", "HGMinchoB";
  margin: 0px;
  z-index: 10;
}
#loading .hero-loading .top-h2 {
  writing-mode: vertical-rl;
  font-size: 24px;
  font-weight: 500;
  font-family: "HGSMinchoE", "HGMinchoB";
  margin: 0px;
  position: relative;
  top: -133px;
  left: -10px;
  z-index: 10;
}
@keyframes fluffy {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

/* ローディングアニメーション */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
/* フッターにかぶらないよう、pageWrapを相対基準に */
#pageWrap {
  position: relative;
}

.side-nav {
  color: #fff;
}

/* 初期色は任意 */
.side-nav.is-gold {
  color: #DFA940;
}

.side-nav.is-c1 {
  color: #CCDCE9;
}

/* リンクは継承させる */
.side-nav a {
  color: inherit;
  text-decoration: none;
}

/* --------------------
   Vertical full sections
-------------------- */
.makie-section,
.makie_intro-section,
.about-section,
.gallery-section,
.finally-section,
.v-section {
  min-height: 800px;
  height: 100vh;
}

.hero-section,
.makie-section,
.makie_intro-section,
.about-section,
.gallery-section,
.notes-section,
.finally-section,
.cta-section,
.v-section {
  position: relative;
  display: grid;
  place-items: center;
  padding: 56px 104px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  /* 右側の固定ナビと視認性が被らない余白 */
  padding-right: calc(var(--nav-w) + var(--gap));
  /* 濃淡を補助する薄いオーバーレイ（必要なら調整） */
}
.hero-section::before,
.makie-section::before,
.makie_intro-section::before,
.about-section::before,
.gallery-section::before,
.notes-section::before,
.finally-section::before,
.cta-section::before,
.v-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
  pointer-events: none;
}
.hero-section__inner,
.makie-section__inner,
.makie_intro-section__inner,
.about-section__inner,
.gallery-section__inner,
.notes-section__inner,
.finally-section__inner,
.cta-section__inner,
.v-section__inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  text-align: center;
}
.hero-section__inner .h2,
.makie-section__inner .h2,
.makie_intro-section__inner .h2,
.about-section__inner .h2,
.gallery-section__inner .h2,
.notes-section__inner .h2,
.finally-section__inner .h2,
.cta-section__inner .h2,
.v-section__inner .h2 {
  font-size: 48px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .hero-section__inner .h2,
  .makie-section__inner .h2,
  .makie_intro-section__inner .h2,
  .about-section__inner .h2,
  .gallery-section__inner .h2,
  .notes-section__inner .h2,
  .finally-section__inner .h2,
  .cta-section__inner .h2,
  .v-section__inner .h2 {
    font-size: 36px;
  }
}
.hero-section__inner .h3,
.makie-section__inner .h3,
.makie_intro-section__inner .h3,
.about-section__inner .h3,
.gallery-section__inner .h3,
.notes-section__inner .h3,
.finally-section__inner .h3,
.cta-section__inner .h3,
.v-section__inner .h3 {
  font-size: 20px;
  margin: 0;
}
.hero-section__inner .txt,
.makie-section__inner .txt,
.makie_intro-section__inner .txt,
.about-section__inner .txt,
.gallery-section__inner .txt,
.notes-section__inner .txt,
.finally-section__inner .txt,
.cta-section__inner .txt,
.v-section__inner .txt {
  font-size: 24px;
  line-height: 32px;
  text-align: left;
}
@media (max-width: 768px) {
  .hero-section__inner .txt,
  .makie-section__inner .txt,
  .makie_intro-section__inner .txt,
  .about-section__inner .txt,
  .gallery-section__inner .txt,
  .notes-section__inner .txt,
  .finally-section__inner .txt,
  .cta-section__inner .txt,
  .v-section__inner .txt {
    font-size: 16px;
  }
}
.hero-section__inner--narrow,
.makie-section__inner--narrow,
.makie_intro-section__inner--narrow,
.about-section__inner--narrow,
.gallery-section__inner--narrow,
.notes-section__inner--narrow,
.finally-section__inner--narrow,
.cta-section__inner--narrow,
.v-section__inner--narrow {
  width: 100%;
  max-width: 550px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .hero-section,
  .makie-section,
  .makie_intro-section,
  .about-section,
  .gallery-section,
  .notes-section,
  .finally-section,
  .cta-section,
  .v-section {
    padding-right: 30px !important;
    padding-left: 30px !important;
  }
}

.hero-section {
  min-height: 100vh !important;
  padding: 0;
  height: 100vh;
  width: 100%;
  position: relative;
}
.hero-section .movie_blk {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -1;
}
.hero-section .movie_blk .background_moviev {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-section__inner_title {
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  animation: title-point 1.5s ease-in 6s forwards;
}
.hero-section__inner_title .top-h1 {
  writing-mode: vertical-rl;
  font-size: 48px;
  font-weight: 500;
  font-family: "HGSMinchoE", "HGMinchoB";
  margin: 0px;
  z-index: 10;
}
.hero-section__inner_title .top-h2 {
  writing-mode: vertical-rl;
  font-size: 24px;
  font-weight: 500;
  font-family: "HGSMinchoE", "HGMinchoB";
  margin: 0px;
  position: relative;
  top: -133px;
  left: -10px;
  z-index: 10;
  animation: title-point2 2s ease-in 7s forwards;
}

@keyframes title-point {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    position: absolute;
    top: 40px;
    left: 25px;
  }
}
@keyframes title-point2 {
  to {
    top: -17px;
  }
}
.makie-section__inner_title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
}
.makie-section__inner_title .makie-h1,
.makie-section__inner_title .makie-h2 {
  writing-mode: vertical-rl;
  font-size: 60px;
  font-weight: 500;
  z-index: 10;
  margin: 0;
}
@media (max-width: 768px) {
  .makie-section__inner_title .makie-h1,
  .makie-section__inner_title .makie-h2 {
    font-size: 54px;
  }
}
.makie-section__inner_title .makie-h1 {
  position: relative;
  top: -180px;
  left: -30px;
}
@media (max-width: 768px) {
  .makie-section__inner_title .makie-h1 {
    top: 0;
    left: 0;
    margin-bottom: 200px;
  }
}
@media (max-width: 768px) {
  .makie-section__inner_title {
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .makie-section {
    background-position: 15% 0%;
  }
}

.makie_intro-section,
.about-section {
  justify-content: space-between;
  padding-left: 12%;
}
@media (max-width: 768px) {
  .makie_intro-section,
  .about-section {
    background-position: 54% 0%;
  }
}

.makie_intro-section,
.gallery-section {
  background-position: center center !important;
}

.finally-section {
  place-items: normal !important;
}
.finally-section__inner_title {
  display: flex;
}
.finally-section__inner_title .finally-h1 {
  writing-mode: vertical-rl;
  font-size: 36px;
  font-weight: 500;
  z-index: 10;
  margin: 0 0 0 auto;
}
@media (max-width: 768px) {
  .finally-section__inner_title .finally-h1 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .finally-section {
    background-size: contain;
    background-position: center center;
    background-color: #000;
  }
}

.makie_intro-section::before {
  background-image: linear-gradient(90deg, #041224, transparent);
}

.about-section::before {
  background-image: linear-gradient(90deg, #825600, transparent);
}

.gallery-section {
  align-content: space-between;
}
.gallery-section__inner .h2 {
  margin: 0;
}
.gallery-section__inner .h3 {
  font-size: 20px;
  margin: 0;
}

.notes-section {
  max-height: 500px;
  height: 500px;
}

.v-section--footer {
  min-height: 60svh;
}
.v-section--footer::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
}

/* --------------------
   Typo
-------------------- */
.ttl-xl {
  font-size: clamp(28px, 6vw, 64px);
  letter-spacing: 0.08em;
}

.ttl-md {
  font-size: clamp(22px, 4.5vw, 36px);
  letter-spacing: 0.08em;
}

.lead {
  font-size: clamp(16px, 2.6vw, 22px);
  opacity: 0.9;
}

.txt {
  font-size: 16px;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --------------------
   Buttons
-------------------- */
.btn {
  display: inline-block;
  position: relative;
  padding: 0;
  background: var(--c-accent);
  color: #CCDCE9;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.1s ease;
}
.btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}
.btn::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -40px;
  width: 35px;
  height: 1px;
  background-color: #CCDCE9;
}
.btn::before {
  position: absolute;
  content: "";
  top: 50%;
  right: -40px;
  width: 35px;
  height: 1px;
  background-color: #CCDCE9;
}

/* --------------------
   Fixed Right Nav (vertical writing)
-------------------- */
.side-nav {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 72px;
  margin-left: auto;
  inset-inline-end: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 100;
  /* 現在地 */
  /* セクションごとの色切替 */
  /* 背景が明るい時に黒文字でも映えるように */
}
.side-nav nav {
  pointer-events: auto;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.side-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-items: center;
  flex-wrap: wrap;
}
.side-nav a {
  color: inherit;
  text-decoration: none;
  letter-spacing: 0.1em;
  font-weight: 500;
  opacity: 0.8;
  position: relative;
  transition: opacity 0.2s ease;
}
.side-nav a::after {
  content: "";
  position: absolute;
  inset-inline-end: -6px;
  inset-block-end: -6px;
  width: 2px;
  height: 0;
  background: currentColor;
  transition: height 0.25s ease;
}
.side-nav a:hover {
  opacity: 1;
}
.side-nav a.is-active {
  opacity: 1;
}
.side-nav a.is-active::after {
  height: 24px;
}
.side-nav.is-gold {
  color: #DFA940;
  mix-blend-mode: normal;
}
.side-nav.is-light {
  color: #CCDCE9;
  mix-blend-mode: normal;
}
.side-nav.is-blue {
  color: #0d0d0d;
  mix-blend-mode: normal;
}

.side-nav-sp {
  display: none;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 100;
}

@media (max-width: 768px) {
  .side-nav {
    display: none;
  }
  .side-nav-sp {
    display: block;
  }
}
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 100;
  /* 重なり順を一番上にする */
  cursor: pointer;
  /* ハンバーガーメニューのアイコン */
  /* 三本線の一番上の棒の位置調整 */
  /* 三本線の一番下の棒の位置調整 */
}
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #DFA940;
  transition: 0.5s;
  position: absolute;
}
.drawer_open span:before {
  bottom: 8px;
}
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 100%;
  left: 0%;
  /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: rgb(0, 0, 0);
  transition: 0.5s;
  text-align: center;
  padding-top: 20px;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
  padding: 0;
}
.nav_list a {
  color: #DFA940;
  text-decoration: none;
  letter-spacing: 0.1em;
  font-weight: 500;
  opacity: 0.8;
  position: relative;
  transition: opacity 0.2s ease;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  bottom: 0;
  /* メニューを画面に入れる */
}

/* --------------------
   Footer
-------------------- */
.footer {
  height: 350px;
  width: 100%;
  background-image: linear-gradient(0deg, #001e36, #000000);
  border-top: solid 1px #DFA940;
}
.footer .footer__inner {
  max-width: 1120px;
  width: 90%;
  height: 280px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  margin: 20px auto 0;
  text-align: center;
}
.footer .footer__inner .footer-title {
  color: #DFA940;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0;
}
.footer .footer__inner .footer-title h1 {
  font-size: 22px;
  position: relative;
  top: 50px;
}
.footer .footer__inner .footer-title h1 a {
  text-decoration: none;
  color: #DFA940;
}
@media (max-width: 768px) {
  .footer .footer__inner .footer-title h1 {
    font-size: 16px;
  }
}
.footer .footer__inner .footer-title h2 {
  font-size: 16px;
}
@media (max-width: 768px) {
  .footer .footer__inner .footer-title h2 {
    font-size: 14px;
  }
}
.footer .footer__inner .footer-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.footer .footer__inner .footer-links a {
  color: #DFA940;
  text-decoration: none;
  writing-mode: vertical-rl;
  opacity: 0.85;
  line-height: 1;
}
@media (max-width: 768px) {
  .footer .footer__inner .footer-links a {
    font-size: 14px;
  }
}
.footer .copy-area {
  border-top: solid 1px #DFA940;
  color: #DFA940;
  display: flex;
  justify-content: center;
  position: relative;
  bottom: 0;
}
.footer .copy-area .copy {
  opacity: 0.8;
  font-size: 12px;
}

.pc {
  display: block;
}

/* --------------------
   Responsive minor tweaks
-------------------- */
@media (max-width: 768px) {
  :root {
    --nav-w: 56px;
  }
  .v-section {
    padding-right: calc(var(--nav-w) + 8px);
  }
  .side-nav ul {
    gap: 12px;
  }
  .pc {
    display: none;
  }
}/*# sourceMappingURL=styles.css.map */