@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Noto+Sans+JP:wght@500;700&family=Noto+Serif+JP:wght@700&display=swap');
/*------------------------------------------------------------
	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;
 background: transparent;
 vertical-align: bottom;
}
html .en {
 font-family: "Marcellus", "Times New Roman", Times, "serif";
 font-weight: 400;
 font-style: normal;
}
:root {
 --main-bg: #fff;
 --main-color: #aa1a39;
 --sub-color: #131a4e;
 --text-color: #010101;
 --link-color: #aa1a39;
 --red: #aa1a39;
 --wp--preset--font-size--small: .9em;
 --app-height: 100vh; /* フォールバック */
}
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;
}
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 100ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
 transition: all 100ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
 word-wrap: break-word;
}
a:hover {
 cursor: pointer;
 -webkit-transition: all 100ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
 transition: all 100ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
 color: #e3d3aa;
}
img {
 vertical-align: bottom;
 -webkit-backface-visibility: hidden;
 width: auto;
 pointer-events: none;
 max-width: 100%;
 width: auto;
 height: auto;
}
ruby > rt {
 font-size: 40%;
}
/* ローディングコンテナのスタイル */
.loading-container {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100vh;
 height: 100lvh;
 background-color: #becce2; /* 背景色 */
 z-index: 9999; /* 最前面に表示 */
 display: flex;
 justify-content: center;
 align-items: center;
 overflow: hidden;
}
/* 浮遊する円（オーブ）の共通スタイル */
.orb {
 width: 30%;
 aspect-ratio: 1;
 background-color: #7272ca; /* 水色 */
 border-radius: 50%; /* 円形 */
 opacity: 0.1; /* 半透明 */
 filter: blur(100px); /* ぼかし効果 */
 position: absolute;
}
/* 個々の円の動きを定義 */
.orb1 {
 animation: float 8s ease-in-out infinite;
 animation-delay: 0s;
}
.orb2 {
 background-color: #39458f;
 animation: float 10s ease-in-out infinite;
 animation-delay: -2s; /* 動きに時間差をつける */
}
.orb3 {
 animation: float 12s ease-in-out infinite;
 animation-delay: -5s;
}
/* 浮遊するアニメーションのキーフレーム */
@keyframes float {
 0% {
  transform: translateY(-20vh) translateX(0) scale(0.8); /* 画面外上部から開始、少し小さめ */
  opacity: 0; /* 最初は透明 */
 }
 25% {
  transform: translateY(10vh) translateX(-50px) scale(1); /* 画面上部へ、揺れる */
  opacity: 0.2;
 }
 50% {
  transform: translateY(40vh) translateX(30px) scale(0.9); /* 画面中央へ、揺れる */
  opacity: 0.3;
 }
 75% {
  transform: translateY(70vh) translateX(-60px) scale(1.1); /* 画面下部へ、少し大きめ */
  opacity: 0.1;
 }
 100% {
  transform: translateY(120vh) translateX(40px) scale(0.7); /* 画面外下部へ、小さくなりながら消える */
  opacity: 0; /* 最後は透明 */
 }
}
/* ローディング完了後のスタイル */
.loading-container.hidden {
 opacity: 0;
 visibility: hidden;
 transition: opacity 1s, visibility 1s;
}
/* スクロールバー */ ::-webkit-scrollbar {
 width: 3px;
 height: 4px;
}
::-webkit-scrollbar-thumb {
 background: var(--sub-color);
 border-radius: 2px;
}
::-webkit-scrollbar-track {
 background: #999;
}
/* support iOS */
html {
 height: -webkit-fill-available;
}
body {
 font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
 font-size: 1.64rem;
 line-height: 2em;
 font-style: inherit;
 font-weight: 500;
 color: var(--text-color);
 background: var(--main-bg);
 width: 100%;
 padding: 0;
 -webkit-user-select: none;
 -moz-user-select: none;
 -khtml-user-select: none;
 -webkit-user-drag: none;
 -khtml-user-drag: none;
 /* 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;
}
a {
 color: inherit;
 text-decoration: none;
 -webkit-transition: all 100ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
 transition: all 100ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
 word-wrap: break-word;
 cursor: pointer;
}
a:hover {
 cursor: pointer;
 -webkit-transition: all 100ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
 transition: all 100ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
 color: #e3d3aa;
}
@media screen and (max-width: 812px) {
 body {
  font-size: 1.5rem;
  overflow-x: hidden;
 }
}
.blur {
 opacity: 0;
 filter: blur(20px);
 transition: all 1000ms;
}
.blur.active {
 opacity: 0;
 filter: blur(20px);
 animation-name: blur;
 animation-duration: 1s;
 animation-fill-mode: forwards;
}
.fotter-catch.blur.active {
 animation-duration: 2s;
 animation-delay: 1s; /* 遅延 */
}
@keyframes blur {
 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-fill-mode: forwards;
}
@keyframes fadeIn {
 from {
  opacity: 0;
  transform: translate(0, 100px);
 }
 to {
  opacity: 1;
  transform: translate(0, 0);
 }
}
.bright-in {
 overflow: hidden;
 opacity: 1;
 transition: 2s;
 filter: brightness(30%);
 width: 100%;
 background-color: #000;
}
.bright-in img {
 transition: 6s;
 transform: scale(1.1);
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center;
}
.bright-in.active {
 filter: brightness(100%);
 opacity: 1;
}
.bright-in.active img {
 transform: scale(1);
}
.zoom-in {
 position: relative;
 overflow: hidden;
 width: 100%;
 height: 100%;
 background-color: #000;
}
.shrink img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center;
}
.zoom-in .dark-in.active {
 animation-name: darkIn;
 animation-duration: 5s;
 animation-delay: 2s; /* 遅延 */
 animation-fill-mode: forwards;
}
@keyframes darkIn {
 from {
  opacity: 1;
 }
 to {
  opacity: .7;
 }
}
.shrink {
 width: 100%;
 height: 100%;
 transform: scale(1.2);
}
.shrink.active, .shrink.in {
 animation: shrink 10s linear forwards;
}
@keyframes shrink {
 0% {
  transform: scale(1.2);
 }
 100% {
  transform: scale(1);
 }
}
.blur-in {
 transition: all 1000ms;
 transform: scale(1.1);
 filter: blur(10px);
}
.blur-in.in {
 animation-name: blur-in;
 animation-duration: 5s;
 animation-fill-mode: forwards;
 animation-delay: .1s; /* 遅延 */
}
@keyframes blur-in {
 from {
  filter: blur(10px);
  transform: scale(1.1);
 }
 to {
  filter: blur(0px);
  transform: scale(1);
 }
}
.blur-in-late, .blur-in-late2 {
 opacity: 0;
 transition: all 1000ms;
 filter: blur(20px);
}
.blur-in-late.in {
 opacity: 0;
 animation-name: blur-in02;
 animation-duration: 1s;
 animation-fill-mode: forwards;
 animation-delay: 1.5s; /* 遅延 */
}
.blur-in-late2.in {
 opacity: 0;
 animation-name: blur-in02;
 animation-duration: 1.8s;
 animation-fill-mode: forwards;
 animation-delay: 2s; /* 遅延 */
}
@keyframes blur-in02 {
 from {
  opacity: 0;
  filter: blur(20px);
 }
 to {
  opacity: 1;
  filter: blur(0px);
 }
}
.fade-in-down {
 opacity: 1;
 transform: translate(0, -5%);
 transition: all 1000ms;
}
.fade-in-down.in {
 opacity: 1;
 animation-name: fadeInDown;
 animation-duration: 1.5s;
 animation-fill-mode: forwards;
}
@keyframes fadeInDown {
 from {
  opacity: 1;
  transform: translate(0, -5%);
 }
 to {
  opacity: 1;
  transform: translate(0, 0);
 }
}
.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);
 }
}
.fade-in-down.petal, .fade-in-up.petal {
 opacity: 0;
 transform: translate(0, 10%);
 filter: blur(30px);
 transition: all 1000ms;
}
.fade-in-down.petal.in, .fade-in-up.petal.in {
 opacity: 1;
 animation-name: fadeInUp-petal;
 animation-duration: 4s;
}
@keyframes fadeInUp-petal {
 from {
  opacity: 0;
  transform: translate(0, 10%);
  filter: blur(30px);
 }
 to {
  opacity: 1;
  transform: translate(0, 0);
  filter: blur(0px);
 }
}
/* ------------------------------
	メイン
------------------------------ */
.main, .top-area {
 aspect-ratio: 1 / 1.4;
 position: relative;
}
#top .main-bg-inner {
 width: 100%;
 height: 100%;
}
#top .main-bg-inner img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center 50%;
}
@media screen and (max-width: 1124px) and (min-width: 813px) {
 #top .main-bg-inner img {
  object-position: 60% 50%;
 }
}
#top .main-left img, #top .main-right img, .main-left-petal img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center top;
}
#top .main-inner, #top .main-left, #top .main-right {
 position: absolute;
 top: -3%;
 bottom: -3%;
 height: 106%;
 width: 100%;
}
#top .main-bg {
 height: 100%;
 background-color: #dbe1ed;
}
#top .main-left {
 left: 0;
 width: 33.024194%;
 z-index: 1;
}
#top .main-right {
 right: 0;
 width: 31.733871%;
 z-index: 1;
}
#top .top-area {
 width: 100%;
 z-index: 2;
}
.px-bg {
 transition: transform 0.1s;
}
.top-area-inner {
 width: 37%;
 height: 100%;
 margin: auto;
 display: flex;
}
.top-area-inner .top-catch img {
 width: auto;
 max-height: 100%;
 position: absolute;
}
.top-area-inner .top-catch .inner {
 display: block;
 aspect-ratio: 15 / 292;
 position: relative;
 height: 100%;
}
.main-left-petal {
 position: absolute;
 top: 0;
 left: 0;
 width: 50%;
 height: 100%;
}
.main-left-petal.right {
 left: inherit;
 right: 0;
 width: 50%;
}
.main-left-petal img {
 object-position: center bottom;
}
@media screen and (min-width : 813px) {
 .main, .top-area {
  aspect-ratio: 3 / 2;
 }
 #top .main-left {
  width: 22%;
 }
 #top .main-right {
  width: 21%;
 }
 #top .main-left img {
  object-fit: cover;
  width: 100%;
  object-position: center 40%;
 }
 #top .main-right img {
  object-fit: cover;
  width: 100%;
  object-position: center 15%;
 }
 #top .main-bg {
  width: 57.4%;
  margin: 0 20.8% 0 21.8%;
 }
 #top .main-bg-inner {
  height: 100vh;
  height: 100lvh;
  min-height: 100vh;
  min-height: 100lvh;
  min-height: var(--app-height);
  position: sticky;
  top: 0;
  left: 0;
 }
 .top-area-inner {
  width: 57%;
  height: 100vh;
  height: 100lvh;
  min-height: 650px;
  top: 0;
  left: 0;
  position: sticky;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 2;
 }
 .top-area-inner .billing {
  width: 46%;
  max-width: 500px;
  min-width: 280px;
  padding-bottom: 40px;
  padding-top: 40px;
  margin-left: 6%;
 }
 .top-area-inner .top-catch {
  height: 100%;
  min-height: 650px;
  padding-top: 20px;
  padding-bottom: 10px;
  position: absolute;
  top: 0;
  right: -1%;
  z-index: 10;
 }
 .main-left-petal {
  width: 40%;
 }
 .main-left-petal img {
  object-position: center 80%;
 }
 .main-left-petal.right {
  width: 40%;
 }
 .main-left-petal.right img {
  object-position: center 80%;
 }
}
@media screen and (max-width : 812px) {
 #top .main-bg {
  padding-bottom: 3%;
  padding-top: 3%;
 }
 .top-area-inner {
  flex-direction: column;
  position: relative;
  z-index: 2;
 }
 .top-area-inner .top-catch {
  height: 66%;
  padding-top: 50%;
  display: flex;
  justify-content: flex-end;
 }
 .top-area-inner .billing {
  width: 104%;
  margin: auto;
  padding-left: 4%;
 }
}
/* ------------------------------
	コンテンツ
------------------------------ */
#container {
 width: 100%;
 position: relative;
}
.flexbox {
 display: -webkit-box;
 display: -ms-flexbox;
 display: -webkit-flex;
 display: flex;
 -webkit-box-lines: multiple;
 -moz-box-lines: multiple;
 -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;
}
.vh {
 position: relative;
 min-height: min-height: var(--app-height);
}
.article-box {
 position: relative; /* 子要素（::before）の位置決めの基準とする */
 max-width: 1000px;
 width: 88%;
 margin: 5vh auto;
 color: #fff;
 z-index: 1; /* コンテンツを背景の上に配置 */
 padding: 50px;
}
.article-box::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(0, 0, 0, 0.7); /* 半透明の黒背景 */
 mix-blend-mode: multiply; /* 背景のみに乗算を適用 */
 z-index: -1; /* コンテンツの下に配置 */
}
.article-box.prelusion {
 margin-bottom: 10vh;
}
.intro {
 position: relative;
 min-height: 100vh;
 min-height: 100lvh;
 min-height: var(--app-height);
 -webkit-overflow-scrolling: touch;
 z-index: 1;
}
.intro .section_bg {
 width: 100%;
 height: 100vh;
 height: 100lvh;
 min-height: var(--app-height);
 top: 0;
 left: 0;
 position: sticky;
 overflow: hidden;
}
.intro .section_bg.footer_bg {
 position: absolute;
 height: 100%;
 width: 100%;
 bottom: 0;
 right: 0;
}
.intro .section_inner {
 position: relative;
 margin-top: -90vh;
 margin-top: -90lvh;
 padding: 80px 0 120px;
 min-height: 100vh;
 min-height: 100lvh;
 min-height: var(--app-height);
}
.intro .section_inner .title {
 font-size: clamp(4rem, 7vw, 7rem);
 line-height: 1em;
 text-align: center;
 margin-bottom: 6rem;
 padding-top: 40px;
 color: #fc0202;
 mix-blend-mode: lighten;
}
.intro .section_inner .section_main {
 padding: 120px 50px;
}
.intro .section_inner .section_main .section_body {
 max-width: 800px;
 margin: 0 auto;
}
.fotter-inner .fotter-catch {
 position: absolute;
 right: 18px;
 top: 90px;
 max-width: 70px;
 width: 10%;
}
@media screen and (max-width: 1024px) {
 .intro .section_inner {
  padding: 40px 0 80px;
 }
 .intro.fotter .section_inner {
  margin-top: -100vh;
  margin-top: -100lvh;
  margin-top: calc(var(--app-height) * -1);
 }
 .intro .section_inner .section_main {
  padding: 80px 30px;
 }
 .intro .section_inner .section_main .section_body {
  max-width: 500px;
 }
 .fotter-inner .fotter-catch {
  top: 70px;
 }
}
.cast-container01 {
 margin: 4rem auto 6rem;
 width: 60%;
 display: -ms-grid;
 display: grid;
 -ms-grid-columns: 1fr;
 grid-template-columns: repeat(1, 1fr);
 grid-gap: 6rem;
}
.cast-container02 {
 width: 86%;
 margin: 3rem auto 10rem;
 display: -ms-grid;
 display: grid;
 -ms-grid-columns: 1fr 1fr;
 grid-template-columns: repeat(2, 1fr);
 grid-gap: 6rem 3rem;
}
.name {
 font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
 font-size: clamp(4rem, 4vw, 5rem);
 line-height: 1em;
 display: block;
 text-align: center;
 margin-top: 2rem;
 white-space: nowrap;
 color: #fff;
 letter-spacing: 1px;
 margin-bottom: clamp(3rem, 4vw, 4rem);
 font-variant-east-asian: proportional-alternate;
}
.name .yaku {
 font-size: .7em;
}
.name .post {
 font-size: .6em;
 margin-right: 12px;
}
.name .yaku::before {
 content: "as";
 font-family: "Marcellus", "Times New Roman", Times, "serif";
 font-weight: 400;
 color: #fc0202;
 mix-blend-mode: lighten;
 display: inline-block;
 margin-right: 5px;
 font-size: .9em;
}
.name .btn-area {
 vertical-align: top;
 margin-top: 2rem;
}
.name .btn:hover {
 background-color: var(--sub-color);
}
.footer .shrink img.bottom {
 object-position: 98% bottom;
}
.footer .fotter-inner {
 min-height: 100vh;
 min-height: 100lvh;
 min-height: var(--app-height);
 display: flex;
 align-items: flex-end;
 justify-content: center;
 width: 72%;
 margin-left: 1%;
 padding: 20px 0;
}
.billing {
 width: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
 flex-direction: column;
 line-height: 1em;
}
.billing img, .fotter-inner .fotter-catch img {
 filter: drop-shadow(0px 0px 5px #fff);
}
.footer .fotter-inner .billing {
 width: 90%;
 max-width: 1000px;
}
.footer .fotter-inner .billing02 {
 max-width: 500px;
}
.billing-day {
 width: 60%;
 max-width: 400px;
 margin-top: 20px;
}
.billing-catch {
 width: 80%;
 max-width: 500px;
 margin-top: 40px;
}
@media screen and (min-width: 1025px) {
 .vh {
  min-height: 750px;
 }
 .footer .fotter-inner {
  margin-left: 5%;
 }
 .footer .fotter-inner .billing {
  width: 70%;
 }
}
@media screen and (min-width : 813px) {
 .name {
  display: flex;
  justify-content: center;
  align-items: baseline;
 }
 .name .yaku::before {
  margin-left: 10px;
 }
 .footer .shrink img.bottom {
  object-position: right 45%;
  min-height: 900px;
 }
 .footer .fotter-inner {
  width: 50%;
  margin-left: 2%;
  align-items: center;
 }
}
@media screen and (max-width: 812px) {
 .article-box {
  padding: 40px 16px;
 }
 .name .yaku, .name .post {
  display: block;
  margin: 10px 0;
 }
 .name .yaku::before {
  margin-left: -8px;
 }
 .billing-day {
  margin-top: 8px;
 }
 .billing-catch {
  margin-top: 10px;
 }
}
@media screen and (max-width: 560px) {}
/* ------------------------------
	雪
------------------------------ */
/* 背景を表示させるコンテナ */
.snow-container {
 width: 100%;
 position: relative;
 overflow: hidden;
}
.snow-container img {
 height: 100vh;
 height: 100lvh;
 min-height: 100vh;
 min-height: 100lvh;
 min-height: var(--app-height);
 width: 100%;
}
/* 雪の基本スタイル */
.snow-container {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 min-height: var(--app-height);
 overflow: hidden;
 pointer-events: none; /* クリックを無効にする */
}
.snow {
 position: absolute;
 background: white;
 border-radius: 50%;
 opacity: 1; /* 最初は非表示に */
 filter: blur(5px);
 will-change: transform, opacity; /* アニメーションの最適化 */
 mix-blend-mode: multiply;
}
/* アニメーションの定義 */
@keyframes fall {
 0% {
  transform: translateY(-100%) translateX(0); /* 画面上部から開始 */
  opacity: 0;
 }
 10% {
  opacity: 1; /* 徐々に表示 */
 }
 90% {
  opacity: 1; /* 落下中は表示 */
 }
 100% {
  transform: translateY(100vh) translateX(var(--x-end)); /* 画面下部まで落下 */
  opacity: 0; /* 徐々に消える */
 }
}
/* ------------------------------
	イントロ・ストーリー
------------------------------ */
.section_inner p, .article-box p {
 margin-bottom: 2.2rem;
 line-height: 2.2em;
 text-align: justify;
}
.section_inner .ph {
 margin-bottom: 30px;
 margin-top: 30px;
}
.section_inner .section_ttl {
 font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
 font-size: clamp(2.4rem, 3.4vw, 3.6rem);
 line-height: 1.4em;
 margin-bottom: 2.5rem;
}
/* ------------------------------
	バナー
------------------------------ */
.banner-area {
 position: relative;
 padding-top: 30px;
 padding-bottom: 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 li a {
 display: block;
}
@media screen and (max-width : 812px) {
 .banner {
  gap: 10px;
 }
 .banner li {
  width: 48%;
 }
}
/* ------------------------------
	動画
------------------------------ */
#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: #ea5514;
}
#cboxLoadedContent #trailer {
 height: 100%;
 padding: 0;
 display: flex;
 align-items: center;
 background-color: #fff;
}
#cboxLoadedContent #trailer .__btns li:hover span, #cboxLoadedContent #trailer .__btns li.select span {
 background: #B11005;
}
#cboxLoadedContent #trailer .__btns li span {
 background: rgba(177, 16, 5, .5);
}
#cboxLoadedContent #trailer .trailer-inner {
 width: 100%;
}
#cboxLoadedContent #trailer .__movie-wrap {
 max-width: 100%;
 height: 70%;
}
.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 40px;
 }
 .__btns li {
  width: 50%;
 }
}
/* ------------------------------
	メニュー
------------------------------ */
#top-head .nav-button {
 position: absolute;
 right: 0;
 z-index: 10;
 top: -120px;
}
#top-head.fixed {
 position: fixed;
 top: 0;
}
#top-head:not(.fixed) .sns {
 position: absolute;
 top: -120px;
}
#top-head:not(.fixed) .sns li a {
 width: 34px;
 height: 34px;
}
#top-head:not(.fixed) .sns img {
 width: 22px;
}
#top-head.fixed .nav-button, #top-head.fixed .sns {
 top: 0;
 transition: top 0.6s ease;
 -webkit-transition: top 0.6s ease;
 -moz-transition: top 0.6s ease;
}
#top-head.fixed .sns {
 top: 1.5rem;
}
@media screen and (min-width: 1025px) {
 #top-head:not(.fixed) {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  height: 60px;
  padding-left: 2.5rem;
  background: -webkit-linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .1), transparent);
  background: -moz-linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .1), transparent);
  background: -o-linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .1), transparent);
  background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .1), transparent);
 }
 #top-head:not(.fixed) .nav-wrap, #top-head:not(.fixed) .nav-wrap .nav-wrap-inner {
  display: flex;
 }
 #top-head:not(.fixed) .nav-wrap .nav {
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-top: 8px;
 }
 #top-head:not(.fixed) .sns {
  margin-top: 128px;
  display: flex;
 }
}
/* ------------------------------
	responsive
------------------------------ */
.sp {
 display: none;
}
@media screen and (max-width: 812px) {
 .sp {
  display: block;
 }
 .pc {
  visibility: hidden;
  display: none !important;
 }
}