@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@600;700&family=EB+Garamond:wght@500&display=swap');
.en {
 font-family: "EB Garamond", "Times New Roman", Times, "serif";
 font-optical-sizing: auto;
 font-weight: 500;
 font-style: normal;
 letter-spacing: .5px;
}
:root {
 --base-white: #fff;
 --main-bg-color: #ebe2ea;
 --sub-color: #adacd3;
 --text-color: #2D282E;
 --link-color: #ec6500;
 --link-bg-color: #ebe2ea;
 --app-height: 100vh;
}
/* テキスト選択時のスタイル */ ::selection {
 color: var(--text-color);
 background-color: var(--main-bg-color);
}
html {
 scroll-padding-top: 50px;
}
/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, nav, section, time, mark, audio, video {
 font-size: 1em;
 margin: 0;
 padding: 0;
 border: 0;
 outline: 0;
 -webkit-box-sizing: border-box;
 box-sizing: border-box;
 vertical-align: bottom;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
 display: block;
}
html {
 font-size: 62.5%;
}
body {
 -webkit-text-size-adjust: 100%;
}
body, table, input, textarea, select, option, h1, h2, h3, h4, h5, h6, p {
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 margin: 0;
 padding: 0;
}
h1, h2, h3, h4, h5, h6 {
 font-weight: 700;
 transition: all 1000ms;
}
table, input, textarea, select, option {
 line-height: 1.1;
}
ol, ul {
 list-style: none;
}
blockquote, q {
 quotes: none;
}
:focus {
 outline: 0;
}
ins {
 text-decoration: none;
}
del {
 text-decoration: line-through;
}
hr {
 height: 0;
 margin: 0;
 padding: 0;
 border: 0;
}
a {
 color: inherit;
 text-decoration: none;
 -webkit-transition: all 300ms;
 transition: all 300ms;
 word-wrap: break-word;
}
a:hover {
 cursor: pointer;
 opacity: .7
}
img {
 vertical-align: bottom;
 -webkit-backface-visibility: hidden;
 max-width: 100%;
 width: auto;
 height: inherit;
 pointer-events: none;
}
figure img {
 pointer-events: none;
}
.ruby {
 position: relative;
}
.ruby > .rt {
 text-align: center;
 position: absolute;
 bottom: -15px;
 font-size: 12px;
 left: 0;
 right: 0;
 letter-spacing: normal;
 display: inline-block;
 line-height: 1em;
}
.cast-txt .ruby > .rt {
 bottom: -12px;
 font-size: 14px;
}
/* スクロールバー */ ::-webkit-scrollbar {
 width: 3px;
 height: 4px;
}
::-webkit-scrollbar-thumb {
 background: var(--sub-color);
 border-radius: 2px;
}
::-webkit-scrollbar-track {
 background: rgba(0, 0, 0, 0.8);
}
.guard {
 pointer-events: none;
 cursor: default;
}
/* ローディング */
.loading-container {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 9999; /* 最前面に表示 */
 display: flex;
 justify-content: center;
 align-items: center;
 overflow: hidden;
}
.loading-container img {
 height: 70%;
 max-height: 700px;
 animation-name: fadeOut;
 animation-duration: 1s;
 animation-fill-mode: forwards;
}
@keyframes fadeOut {
 from {
  opacity: 1;
 }
 to {
  opacity: 0;
 }
}
.loading-container::after {
 content: "";
 top: 0;
 left: 0;
 z-index: -1;
 width: 100%;
 height: 100%;
 display: block;
 position: absolute;
 /* 背景グラデーションの設定 */
 background: linear-gradient(to bottom, #95a3d0, #bdb2d5, #e7e0e9, #f1f1ed);
 background-size: 100% 180%; /* 縦方向に2倍に広げて、アニメーションの余白を確保 */
 /* アニメーションの適用 */
 animation: moveGradient 8s ease-in-out infinite alternate;
}
@keyframes moveGradient {
 0% {
  background-position: 0% 0%; /* 上からスタート */
 }
 100% {
  background-position: 0% 80%; /* 下に移動 */
 }
}
/* //ローディング */
.fadein {
 opacity: 0;
 transition: all 1000ms;
}
.fadein.in, .fadein.active {
 opacity: 0;
 animation-name: fadeInMove;
 animation-duration: 1s;
 animation-fill-mode: forwards;
}
.fadein.in {
 animation-delay: .5s; /* 遅延 */
}
@keyframes fadeInMove {
 from {
  opacity: 0;
  filter: blur(20px);
 }
 to {
  opacity: 1;
  filter: blur(0px);
 }
}
.fade {
 opacity: 0;
 transition: all 1000ms;
}
.fade.active {
 animation-name: fadeIn;
 animation-duration: 1.5s;
 animation-delay: .5s; /* 遅延 */
 animation-fill-mode: forwards;
}
@keyframes fadeIn {
 from {
  opacity: 0;
  transform: translate(0, 60px);
 }
 to {
  opacity: 1;
  transform: translate(0, 0);
 }
}
.bright-in {
 overflow: hidden;
 opacity: 0;
 transition: all 1000ms;
 transition: 2s;
 width: 100%;
 height: 100%;
 background-color: #fff;
 filter: brightness(150%);
}
.bright-in img {
 transition: 6s;
 transform: scale(1.05);
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center;
}
.intro-top .bright-in img {
 transition: 8s;
 transform: scale(1.1);
}
.bright-in.active {
 opacity: 1;
 filter: brightness(100%);
 animation-delay: .1s; /* 遅延 */
}
.bright-in.active img {
 transform: scale(1);
}
.shrink {
 width: 100%;
 height: 100%;
 transform: scale(1.05);
}
.shrink img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center bottom;
}
.shrink.in {
 animation: shrink 10s linear forwards;
}
@keyframes shrink {
 0% {
  transform: scale(1.05);
 }
 100% {
  transform: scale(1);
 }
}
.blur {
 opacity: 0;
 transition: all 1000ms;
}
.blur.in {
 opacity: 0;
 animation-name: fadeInMove;
 animation-duration: 1s;
 animation-fill-mode: forwards;
 animation-delay: .5s; /* 遅延 */
}
.blur.active {
 opacity: 0;
 animation-name: fadeInMove;
 animation-duration: 2s;
 animation-fill-mode: forwards;
 animation-delay: .1s; /* 遅延 */
 transition: all 1000ms;
}
.loading img {
 opacity: 0;
 animation-name: fadeInMove;
 animation-duration: 1.5s;
 animation-fill-mode: forwards;
}
@keyframes fadeInMove {
 from {
  opacity: 0;
  filter: blur(20px);
 }
 to {
  opacity: 1;
  filter: blur(0px);
 }
}
.fade-in-up {
 opacity: 1;
 transform: translate(0, 5%);
 transition: all 1000ms;
}
.fade-in-up.in {
 opacity: 1;
 animation-name: fadeInUp;
 animation-duration: 1.5s;
 animation-fill-mode: forwards;
}
@keyframes fadeInUp {
 from {
  opacity: 1;
  transform: translate(0, 5%);
 }
 to {
  opacity: 1;
  transform: translate(0, 0);
 }
}
/*------------------------------------------------------------
	layout
------------------------------------------------------------*/
/* support iOS */
html {
 height: -webkit-fill-available;
}
body {
 font-family: "Zen Old Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
 font-size: 1.6rem;
 font-weight: 500;
 line-height: 2em;
 color: var(--text-color);
 background-color: #fff;
 width: 100%;
 height: 100%;
 padding: 0;
 font-style: inherit;
 font-weight: 600;
 /* iPhoneポップアップ無効 */
 -webkit-touch-callout: none;
 -ms-text-size-adjust: 100%;
 -webkit-text-size-adjust: 100%;
 text-rendering: geometricPrecision;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 -webkit-tap-highlight-color: transparent;
 overflow-x: hidden;
 -webkit-overflow-scrolling: touch;
 min-height: -webkit-fill-available;
}
b, strong, .bold {
 font-weight: 700;
}
.flex {
 display: -webkit-box;
 display: -ms-flexbox;
 display: -webkit-flex;
 display: flex;
 -webkit-box-lines: multiple;
 -moz-box-lines: multiple;
 box-sizing: border-box;
}
.flexbox {
 display: -webkit-box;
 display: -ms-flexbox;
 display: -webkit-flex;
 display: flex;
 -webkit-box-lines: multiple;
 -moz-box-lines: multiple;
 -webkit-flex-wrap: wrap;
 -ms-flex-wrap: wrap;
 flex-wrap: wrap;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
}
.wrap {
 -webkit-flex-wrap: wrap;
 -ms-flex-wrap: wrap;
 flex-wrap: wrap;
}
.mv {
 position: relative;
}
#container {
 width: 100%;
 min-height: 100vh;
 min-height: 100lvh;
 height: -webkit-fill-available;
 padding: 0;
 margin: 0 auto;
 position: relative;
 z-index: 1;
}
.section_bg {
 background-color: var(--text-color);
}
.slide {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 background-size: cover;
 background-position: center bottom;
 background-repeat: no-repeat;
 opacity: 0;
 transform: scale(1.1);
 animation: imageTransition 20s infinite;
 will-change: opacity, transform;
}
/* 各スライドの背景画像を設定 */
.slide-1 {
 background-image: url('../images/kaede.jpg?v1.2');
 animation-delay: 0s;
}
.slide-2 {
 background-image: url('../images/sky.jpg?v1.1');
 animation-delay: 10s;
}
@media screen and (max-width : 912px) {
 .slide-2 {
  background-position: bottom right;
 }
}
/* アニメーションの定義 */
@keyframes imageTransition {
 /* 0% - 5.55% (0s - 1s): フェードイン */
 0% {
  opacity: 0;
  transform: scale(1.1);
 }
 5.55% { /* 1s / 18s * 100% */
  opacity: .85;
  transform: scale(1.1); /* ズームイン完了 */
 }
 44.44% { /* 8秒時点 (1s (フェードイン) + 7s (表示維持) = 8s) / 18s * 100% */
  opacity: .85;
  transform: scale(1); /* 表示維持終了、フェードアウト開始 */
 }
 55.55% { /* 10s / 18s * 100% */
  opacity: 0;
  transform: scale(1);
 }
 100% {
  opacity: 0;
  transform: scale(1.1); /* 最初の状態に戻る */
 }
}
/* --- コンテンツエリア --- */
.main {
 position: relative; /* 背景の上に表示されるように */
 z-index: 1; /* 背景より前面 */
 text-align: center;
 width: 100%;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 min-height: 100%;
 min-height: 100vh;
 min-height: 100lvh;
}
.fullscreen-slideshow {
 position: absolute;
 top: 0;
 bottom: 0;
 left: 0;
 right: 0;
 background-color: #fff;
 width: 100%;
 min-height: 100%;
 height: 100%;
 overflow: hidden;
}
/* タイトル */
.main-header {
 position: relative;
 z-index: 1;
 width: 100%;
 height: 100%;
 max-width: 1200px;
 margin: auto;
 display: flex;
 align-items: center;
 flex-direction: column;
 justify-content: flex-end;
 padding-bottom: 20px;
}
.main .catch01, .main .catch02 {
 position: absolute;
 top: 12%;
 right: 3.5%;
 height: 80%;
 max-height: 600px;
}
.main .catch02 {
 top: 18%;
 left: 3.5%;
 right: inherit;
}
.main .catch01 img, .main .catch02 img {
 height: 100%;
 mix-blend-mode: hard-light;
}
.billing .billing-inner {
 max-width: 1200px;
 width: 100%;
 margin: 0 auto;
}
.billing .main-roadshow-sp {
 max-width: 320px;
 width: 70%;
 margin: 2vh auto;
}
.billing .copyright {
 font-size: clamp(1rem, 1.2vw, 1.1rem);
 line-height: 1.6em;
 margin: 2rem auto 1.4rem;
 text-align: center;
}
.cybersecurity {
 display: flex;
 justify-content: center;
 align-items: center;
}
.cybersecurity img {
 max-width: 100px;
}
.intro .section_bg.intro-top {
 min-height: var(--app-height);
 background-color: #fff;
}
.intro-top .intro-img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center bottom;
}
.intro-top .catch-intro-top {
 position: absolute;
 z-index: 1;
 width: 100%;
 height: 25%;
 display: flex;
 justify-content: center;
 top: 5%;
}
.intro-top .catch-intro-top img {
 height: 100%;
}
@media screen and (min-width : 913px) {
 #top.main {
  aspect-ratio: 16 / 8.5;
 }
 .intro-top .catch-intro-top {
  width: 30%;
  height: 50%;
  top: 20%;
  max-height: 400px;
 }
}
@media screen and (min-width : 1025px) {
 .shrink .kv-img {
  object-position: 50% 55%;
  min-height: 920px;
 }
 .intro-top .intro-img {
  object-position: 50% 100%;
  min-height: 920px;
 }
 .billing .billing-inner {
  width: 80%;
 }
}
@media screen and (min-width: 1025px) and (max-height: 750px) and (orientation: landscape) { /* 横向き */
 .shrink .kv-img {
  object-position: 50% 70%;
 }
}
@media screen and (min-width : 1600px) {
 .intro-top .intro-img {
  object-position: 50% 90%;
 }
}
@media screen and (min-width : 1800px) {
 .intro-top .intro-img {
  object-position: 50% 80%;
 }
}
@media screen and (max-width : 912px) {
 .intro .section_bg.intro-top {
  aspect-ratio: 1 / 1.414;
  object-fit: cover;
 }
}
.bg-white {
 position: relative;
 color: #000;
 background: rgba(255, 255, 255, .7);
 -webkit-backdrop-filter: blur(8px);
 backdrop-filter: blur(8px);
 padding-top: 80px;
}
.section_inner .modal__content {
 min-height: inherit;
}
#comment, #music {
 padding-top: 60px;
}
#introduction, #story {
 padding-top: 90px;
}
.section_introduction .bg-white, .section_cast .bg-white {
 background-color: #fff;
 padding-bottom: 10px;
}
#introduction {
 color: var(--link-color);
}
#comment, #music, #introduction, #story, #cast, #staff {
 position: relative;
}
#comment::before, #music::before, #introduction::before, #story::before, #cast::before, #staff::before {
 content: "";
 display: block;
 position: absolute;
 z-index: 1;
 top: 0;
 left: 0;
 opacity: .8;
}
#comment::before {
 aspect-ratio: 2.6 / 1;
 background: url("../images/txt-comment.png") no-repeat left top;
 background-size: 100% auto;
 width: 74%;
 max-width: 640px;
}
#music::before {
 aspect-ratio: 2.6 / 1;
 background: url("../images/txt-music.png") no-repeat left top;
 background-size: 100% auto;
 width: 64%;
 max-width: 540px;
}
#introduction::before {
 aspect-ratio: 3.4 / 1;
 background: url("../images/txt-introduction-orange.png") no-repeat left top;
 background-size: 100% auto;
 width: 86%;
 max-width: 760px;
}
#story::before {
 aspect-ratio: 1.9 / 1;
 background: url("../images/txt-story-orange.png") no-repeat left top;
 background-size: 100% auto;
 width: 50%;
 max-width: 480px;
}
#cast::before {
 aspect-ratio: 1.9 / 1;
 background: url("../images/txt-cast-orange.png") no-repeat left top;
 background-size: 100% auto;
 width: 50%;
 max-width: 400px;
 right: 0;
 left: 0;
 margin: auto;
}
#staff::before {
 aspect-ratio: 1.9 / 1;
 background: url("../images/txt-staff.png") no-repeat left top;
 background-size: 100% auto;
 width: 50%;
 max-width: 480px;
}
#music .photo img {
 aspect-ratio: inherit;
}
.section_inner .content {
 position: relative;
 z-index: 2;
}
.content .content-inner {
 margin: 5vh auto;
}
.content .content-inner p {
 font-size: clamp(1.5rem, 2vw, 1.8rem);
 line-height: 2em;
 text-align: justify;
 hyphens: auto;
 word-break: break-all;
 margin-bottom: 20px;
}
.content .ph {
 margin: 20px auto;
}
.ttl-story01 {
 max-width: 360px;
 width: 70%;
 margin: 0 auto 3rem;
}
.ttl-story02 {
 max-width: 620px;
 width: 84%;
 margin: 3rem auto 5rem;
 position: relative;
 z-index: 4;
}
.story-img {
 position: relative;
 aspect-ratio: 16 / 8.7;
 overflow: hidden;
}
.story-img .imgsbox2 {
 position: absolute;
 z-index: 1;
 bottom: 0;
}
.story-img .imgsbox2 div {
 aspect-ratio: 10 / 11;
}
/*
.story-img::before {
 content: "";
 display: block;
 width: 100%;
 aspect-ratio: 10 / 8;
 background: -webkit-linear-gradient(rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 20%, transparent);
 background: -moz-linear-gradient(rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 20%, transparent);
 background: -o-linear-gradient(rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 20%, transparent);
 background: linear-gradient(rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 20%, transparent);
 position: absolute;
 z-index: 2;
}*/
.section_story .bg-white {
 padding-bottom: 1px;
 z-index: 3;
 background-color: #fff;
}
.section_inner.section_story .content .content-inner, .section_inner.section_story .content {
 margin-bottom: 0;
}
@media screen and (min-width : 913px) {
 #comment::before, #music::before, #introduction::before, #story::before, #staff::before {
  left: 4%;
 }
 #introduction {
  padding-top: 90px;
 }
 #cast, #staff {
  padding-top: 140px;
 }
 #story {
  padding-top: 100px;
 }
 #introduction::before {
  width: 55%;
 }
 #story::before, #staff::before {
  width: 40%;
 }
 #cast::before {
  width: 36%;
 }
 .ttl-story01 {
  max-width: 600px;
  width: 100%;
  margin: 0 auto 2.5rem;
 }
 .ttl-story02 {
  max-width: 1000px;
  margin: 4rem auto 8rem;
 }
}
@media screen and (min-width : 1025px) {
 .bg-white {
  padding-bottom: 5vh;
 }
 .section_inner .scroll_area {
  margin: 60px 0 100px;
 }
 .section_inner .content .content-inner {
  margin: 100px 0;
 }
 .section_inner .content {
  margin: 50px auto;
  max-width: 800px;
 }
 #introduction .content-inner {
  margin-bottom: 7rem;
 }
 .section_inner .wrapp .profile {
  padding-left: 40px;
 }
}
@media screen and (max-width : 1024px) {
 .section_inner .content {
  width: 100%;
 }
 .section_inner .content-inner:not(.bright-in) {
  width: 84%;
 }
}
@media screen and (max-width: 912px) and (orientation: portrait) { /* 縦向き */
}
@media screen and (max-width : 912px) {
 #top.main {
  aspect-ratio: 1 / 1.414;
  object-fit: cover;
 }
 .main-header {
  justify-content: space-between;
  padding-bottom: 5px;
 }
 .main-header .logo-jp {
  max-width: 240px;
  width: 37%;
  margin-top: 74px;
 }
 .loading-container img {
  height: 50%;
 }
 .main .catch01, .main .catch02 {
  height: 44%;
  top: 70px;
 }
 .main .catch02 {
  top: 30%;
 }
 #music {
  padding-top: 140px;
 }
 #comment {
  padding-top: 60px;
 }
 #top .billing {
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1), transparent);
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1), transparent);
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1), transparent);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1), transparent);
 }
 #story {
  padding-top: 70px;
 }
 #introduction {
  padding-top: 140px;
 }
 #cast, #staff {
  padding-top: 140px;
 }
 #cast::before, #staff::before {
  right: inherit;
 }
}
@media screen and (max-width : 520px) {
 #comment {
  padding-top: 40px;
 }
 #music {
  padding-top: 60px;
 }
 #story, #cast, #staff {
  padding-top: 40px;
 }
 #introduction {
  padding-top: 70px;
 }
}
.intro {
 position: relative;
 min-height: 100vh;
 min-height: 100lvh;
}
.intro .section_bg {
 width: 100%;
 height: 100vh;
 height: 100lvh;
 top: 0;
 left: 0;
 position: sticky;
 overflow: hidden;
 transition: 1s;
}
.intro .section_inner {
 position: relative;
 margin-top: -100vh;
 margin-top: -100lvh;
}
.intro .section_inner .title {
 font-size: clamp(6rem, 10vw, 12rem);
 line-height: 1em;
 text-align: center;
 margin-bottom: 4rem;
 padding-top: 40px;
 color: #e9c468;
}
.intro .section_inner .section_main {
 padding: 120px 50px;
}
.intro .section_inner .section_main .section_body {
 max-width: 800px;
 margin: 0 auto;
}
@media screen and (max-width: 1024px) {
 .intro .section_inner .section_main {
  padding: 80px 30px;
 }
 .intro .section_inner .section_main .section_body {
  max-width: 500px;
 }
}
.imgsbox {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 100%;
 overflow: hidden;
 flex-wrap: wrap;
}
.imgsbox div {
 width: 50%;
}
@media screen and (max-width: 1024px) {
 .imgsbox div {
  width: 100%;
 }
}
.imgsbox3 {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 100%;
 overflow: hidden;
 flex-wrap: wrap;
 background-color: #fff;
}
.imgsbox3 div {
 width: 33.33%;
}
@media screen and (min-width: 1023px) {
 .imgsbox3 div {
  aspect-ratio: 16 / 9;
 }
}
@media screen and (max-width: 1024px) {
 .imgsbox3 div {
  aspect-ratio: 4 / 3.5;
 }
 .imgsbox3 div.right img {
  object-position: 80% center;
 }
 .imgsbox3.first div:first-of-type {
  order: 2;
  width: 50%;
 }
 .imgsbox3.first div:nth-of-type(2) {
  order: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
 }
 .imgsbox3.first div:last-of-type {
  width: 50%;
  order: 3;
 }
}
.imgsbox2 {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 100%;
 overflow: hidden;
 flex-wrap: wrap;
 background-color: #fff;
}
.imgsbox2 div {
 width: 50%;
}
@media screen and (min-width: 913px) {
 .imgsbox2 div {
  aspect-ratio: 16 / 9;
 }
}
@media screen and (max-width : 912px) {
 .imgsbox2.w div {
  width: 100%;
 }
}
.fotter-inner {
 position: relative;
 color: #fff;
 z-index: 1;
 width: 98%;
 text-align: center;
 margin: 0 auto;
 min-height: 100vh;
 min-height: 100lvh;
 display: flex;
 align-items: center;
 flex-direction: column;
 justify-content: center;
 padding: 1rem 0;
}
.fotter-inner .billing .main-roadshow-sp {
 max-width: 400px;
 width: 80%;
}
.fotter-header {
 position: relative;
 z-index: 1;
 width: 90%;
 top: 0;
 left: 0;
 right: 0;
 margin: 0 auto 7rem;
 display: flex;
 align-items: center;
 flex-direction: column;
 justify-content: flex-end;
 aspect-ratio: 1 / .9;
}
.fotter-header .main-title {
 max-width: 100%;
 margin: 0 auto;
}
.fotter-title-jp {
 max-width: 500px;
 width: 60%;
 margin: 1rem auto;
}
.fotter-billing {
 max-width: 1300px;
 width: 100%;
 margin: 0 auto 2rem;
}
@media screen and (min-width : 913px) {
 .fotter-header {
  width: 70%;
  min-width: 500px;
 }
 .fotter-header .main-title {
  max-width: 90%;
 }
 .fotter-title-jp {
  width: 70%;
  margin: 2rem auto;
 }
 .fotter-header {
  aspect-ratio: 4 / 3;
  margin-bottom: 10rem;
 }
}
.fullscreen-image-container {
 background-color: #fff;
}
@keyframes blurImage {
 0% {
  filter: blur(10px); /* アニメーション開始時はぼかしなし */
  opacity: .5
 }
 100% {
  filter: blur(0); /* アニメーション終了時に最大10pxぼかす */
  opacity: 1
 }
}
@keyframes fadeout-txt {
 0% {
  filter: blur(0);
  opacity: 1
 }
 100% {
  filter: blur(10);
  opacity: 0
 }
}
/*
.catch-area {
 aspect-ratio: 240 / 83;
 display: flex;
 justify-content: center;
 align-items: center;
}*/
.intro.read .section_inner {
 min-height: 200vh;
}
.read .catch-txt {
 min-height: 100vh;
 display: flex;
 justify-content: center;
 align-items: center;
 position: sticky;
 top: 0;
}
.read .content-inner .blurImage {
 filter: blur(10px); /* 初期状態ではぼかしなし */
 opacity: .5;
 height: 100%;
}
.read .content-inner.active .blurImage {
 animation-name: blurImage; /* 適用するアニメーションの名前 */
 animation-duration: 2s; /* アニメーションにかける時間 */
 animation-delay: 2s; /* アニメーション開始までの遅延時間 */
 animation-fill-mode: forwards; /* アニメーション終了時のスタイルを維持 */
 animation-timing-function: ease-out;
}
.read .content-inner .blurImage img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center;
}
.read .content-inner.bright-in {
 height: 100%;
}
.read.active .catch-txt span {
 animation-name: fadeout-txt;
 animation-duration: 1.5s;
 animation-delay: 4s;
 animation-fill-mode: forwards;
 animation-timing-function: ease-out;
}
.read.active .catch-txt img {
 filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1));
}
.read .catch-txt {
 max-width: 700px;
 width: 70%;
 margin: 0 auto;
}
@media screen and (max-width : 912px) {
 .bg-white {
  padding-top: 0;
 }
 .read .catch-txt {
  width: 70%;
 }
}
/* ------------------------------
	キャスト・スタッフ
------------------------------ */
.cast-container01, .cast-container02 {
 position: relative;
 z-index: 5;
 margin: 4rem auto 6rem;
 width: 84%;
 display: -ms-grid;
 display: grid;
 -ms-grid-columns: 1fr;
 grid-template-columns: repeat(1, 1fr);
 grid-gap: 6rem;
}
.cast-container02 {
 width: 70%;
}
 .cast-container03 {
 position: relative;
 z-index: 5;
 margin: 4rem auto 6rem;
 width: 84%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6rem 10%;
 }
.cast-container01 .ph {
 aspect-ratio: 16 / 9;
}
.name {
 font-size: clamp(3rem, 3vw, 4rem);
 line-height: 1em;
 text-align: center;
 margin-top: 2.4rem;
 white-space: nowrap;
 display: flex;
 justify-content: center;
 align-items: baseline;
}
.name.staff {
 flex-direction: column;
 align-items: center;
 margin-bottom: 2rem;
}
.name.spitz {
 max-width: 500px;
 width: 80%;
 margin-top: 40px;
}
.name .yaku {
 font-size: 0.8em;
}
.name .post, #cboxWrapper .name .post {
 display: block;
 font-size: 0.6em;
}
#cboxWrapper .name .post {
 margin-right: 10px;
}
.name .post.kana {
 letter-spacing: -2px;
}
.name .yaku::before {
 content: "as";
 font-family: "EB Garamond", "Times New Roman", Times, "serif";
 font-weight: 400;
 color: var(--link-color);
 mix-blend-mode: lighten;
 display: inline-block;
 margin-right: 5px;
 font-size: .9em;
 margin-left: 10px;
}
.name .yaku .sub {
 display: inline-block;
 font-feature-settings: "palt"1;
 margin: 0 -14px;
 font-size: 1em;
}
.btn-area {
 margin-top: 1rem;
 display: flex;
 justify-content: center;
}
.btn-area .btn {
 font-size: clamp(1.6rem, 1.6vw, 2rem);
 font-family: "EB Garamond", "Times New Roman", Times, "serif";
 background-color: var(--link-color);
 line-height: 1em;
 color: #fff;
 padding: 2px 18px;
}
.grid02 {
 display: -ms-grid;
 display: grid;
 -ms-grid-columns: 1fr 1fr;
 grid-template-columns: repeat(2, 1fr);
 grid-gap: 3rem;
}
.grid02 .btn-area {
 margin-top: 2rem;
}
.staff-container {
 margin-bottom: 6vh;
}
@media screen and (min-width: 913px) {
 .cast-container01 {
  width: 90%;
  max-width: 1600px;
  margin: 6rem auto 12rem;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 6rem;
 }
 .cast-container02 {
  width: 90%;
  max-width: 1600px;
  margin: 3rem auto 16rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 6rem;
 }
 .cast-container03 {
  width: 90%;
  max-width: 1600px;
  margin: 3rem auto 12rem;
  gap: 6rem 10%;
 }
 .btn-area {
  margin-top: 1.3rem;
 }
 .staff-container {
  margin-bottom: 10vh;
 }
}
@media screen and (min-width: 913px) and (max-width: 1140px) {
 .cast-container02 {
  grid-gap: 6rem 3rem;
 }
}
@media screen and (max-width: 912px) {
 .cast-container03 .blur {
  width: 45%;
 }
 .cast-container03 .blur.wide {
  width: 100%;
 }
 .name {
  margin-top: 1.6rem;
  font-size: clamp(3rem, 4vw, 4rem);
 }
 .name.tj {
  margin-bottom: 20px;
 }
 .bg-white {
  padding-top: 50px;
 }
}
@media screen and (max-width: 1024px) {
 .name.spitz {
  margin: 20px auto;
  width: 86%;
  max-width: 300px;
 }
}
/* ------------------------------
	NEWS
------------------------------ */
#news {
 background-color: var(--base-white);
 padding-bottom: 60px;
 padding-top: 80px;
}
.news-ttl.en {
 font-size: clamp(3rem, 5vw, 5rem);
 color: var(--link-color);
}
#news a {
 font-size: clamp(1.4rem, 2vw, 1.7rem);
}
.newsbox {
 width: 100%;
}
.newsbox .article-list-item {
 border-top: 1px solid var(--link-color);
}
.newsbox .article-list-item:last-child {
 border-bottom: 1px solid var(--link-color);
}
.article-list-item dl {
 padding: 1.6rem 0;
 display: table;
 width: 100%;
 line-height: 1.6em;
}
.article-list-item dl dt {
 color: var(--link-color);
}
.newsbox .btn-area {
 text-align: center;
 margin-top: 2rem;
}
.news {
 width: 86%;
 max-width: 1040px;
 margin: auto;
}
.news-more {
 text-align: right;
 margin-top: 10px;
}
#news .news-more .more {
 color: var(--link-color);
 font-size: clamp(2.2rem, 2.4vw, 2.4rem);
 display: inline-flex;
 line-height: 1em;
 position: relative;
}
#news .news-more .more::after {
 content: '';
 display: block;
 position: absolute;
 bottom: -4px;
 left: 0;
 width: 0%;
 height: 2px;
 background-color: var(--link-color);
 -webkit-transition: .3s;
 transition: .3s;
}
#news .news-more .more:hover::after {
 width: 100%;
}
@media screen and (min-width : 1025px) {
 .news {
  display: flex;
 }
 .news-ttl.en {
  min-width: 200px;
  line-height: 1em;
  margin-top: -10px;
 }
 .article-list-item dl {
  padding: 3rem 0;
 }
 .article-list-item dl dt {
  display: table-cell;
  width: 110px;
  vertical-align: top;
  white-space: nowrap;
  position: relative;
  padding-right: 12px;
  letter-spacing: normal !important;
  font-size: 1.18em;
 }
 .article-list-item dl dd {
  display: table-cell;
  width: -webkit-calc(100% - 110px);
  width: calc(100% - 110px);
  vertical-align: top;
 }
}
@media screen and (max-width : 1024px) {
 #news {
  padding-top: 60px;
 }
 .news-ttl.en {
  text-align: center;
  margin-bottom: 20px;
 }
 .article-list-item dl dt {
  margin-bottom: 5px;
 }
}
/* ------------------------------
	バナー
------------------------------ */
.banner-area {
 position: relative;
 background-color: var(--main-blue);
 padding-top: 30px;
}
.banner-area a {
 display: block;
}
.ticket-mvtk {
 width: 90%;
 max-width: 1200px;
 list-style: none;
 margin: auto;
}
.ticket-mvtk div {
 margin: auto;
 margin-bottom: 20px;
}
.banner {
 width: 90%;
 max-width: 1200px;
 list-style: none;
 margin: auto;
 display: flex;
 flex-wrap: wrap;
 gap: 20px;
}
.banner li {
 max-width: 260px;
 width: 23%;
}
.banner.main-banner li {
 width: 48%;
 max-width: 500px;
}
@media screen and (max-width : 812px) {
 .banner {
  gap: 10px;
 }
 .banner li {
  width: 48%;
 }
 .banner.main-banner li {
  width: 100%;
 }
}
/* ------------------------------
	動画
------------------------------ */
#trailer {
 display: none;
}
.bg_movie {
 margin: 0 auto;
 background-color: #000;
 padding: 20px 0 50px;
}
.__movie-wrap {
 width: 100%;
 max-width: 1040px;
 margin: auto;
 display: flex;
 justify-content: center;
 align-content: center;
}
.__movie-wrap-inner {
 position: relative;
 width: 100%;
 height: 0;
 padding-top: 56.25%;
 margin: auto;
 top: 0;
 bottom: 0;
}
.__movie-wrap-inner.modal {
 padding-top: 56.25%;
}
.__movie-wrap-inner iframe, .__movie-wrap-inner video {
 position: absolute;
 top: 0;
 bottom: 0;
 left: 0;
 right: 0;
 width: 100% !important;
 height: 100% !important;
 margin: auto;
 -o-object-fit: cover;
 object-fit: cover;
}
.mv-movieBtn .__movie-wrap-inner iframe {
 left: -5%;
 width: 110% !important;
 height: 110%;
}
.bg_movie .__movie-wrap-inner {
 overflow: hidden;
}
.__btns {
 width: 90%;
 max-width: 1040px;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 margin: 10px auto;
}
.__btns li {
 width: 33.3333%;
 width: calc(100% / 3);
 font-size: clamp(1.3rem, 2vw, 1.5rem);
 font-weight: 600;
 font-feature-settings: "palt"1;
 letter-spacing: 0;
 font-style: normal;
 margin: 0;
 padding: 4px;
 box-sizing: border-box;
 transition: all 0.3s ease;
}
.__btns li span {
 background: rgba(234, 85, 20, .5);
 width: 100%;
 height: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
 text-decoration: none;
 color: #fff;
 padding: 5px 1px;
 float: left;
 line-height: 1em;
 min-height: 40px;
 text-align: center;
}
.__btns li:hover span, .__btns li.select span {
 background-color: var(--link-color);
 cursor: pointer;
}
.mv-movieBtn {
 position: relative;
}
.mv-movieBtn a {
 position: absolute;
 left: 0;
 top: 0;
 width: 100%;
 height: 100%
}
.mv-movieBtn a {
 display: block;
 transition: all .3s ease;
 z-index: 2;
 opacity: 0.5;
}
.mv-movieBtn a::after {
 content: "";
 position: absolute;
 width: 100%;
 height: 100%;
 top: 0;
 left: 0;
 background: url("../images/play-button.png") center center / 25% no-repeat rgba(0, 0, 0, .4);
 opacity: 0.7;
}
@media screen and (min-width : 913px) {
 .mv-movieBtn {
  width: 90%;
  margin: auto;
 }
 .mv-movieBtn a:hover {
  opacity: .9;
  background-color: rgba(0, 0, 0, 0.7);
 }
 #cboxLoadedContent #trailer .__movie-wrap {
  width: 90%;
 }
}
@media screen and (max-width : 912px) {
 .bg_movie {
  padding: 0 0 30px;
 }
 .__btns li {
  width: 50%;
 }
}
/* ------------------------------
	メニューカスタマイズ
------------------------------ */
#top-head:not(.fixed) .nav-button {
 background: none;
}
#top-head:not(.fixed) .nav-button::after {
 color: var(--text-color);
}
#top-head:not(.fixed) .btn-menu__icon::before, #top-head:not(.fixed) .btn-menu__icon::after {
 background: var(--text-color);
}
#top-head .nav-button {
 transition: background 0.3s ease-in-out;
}
/* ------------------------------
	レスポンシブ
------------------------------ */
.sp {
 display: none;
}
.vh {
 min-height: var(--app-height);
}
@media screen and (max-width : 912px) {
 .sp {
  display: block;
 }
 .pc {
  visibility: hidden;
  display: none !important;
 }
}