@charset "UTF-8";
/* ©SCHNEID
映画『ChaO』
Kazumi Nishibayashi */
/*------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&family=Montserrat:wght@700&display=swap');
.en, .Montserrat {
 font-family: "Montserrat", "Arial", "Helvetica", "sans-serif";
 font-optical-sizing: auto;
 font-weight: 700;
 font-style: normal;
 letter-spacing: normal;
}
/*------------------------------------------------------------
	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;
}
* {
 box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
 display: block;
}
html {
 font-size: 62.5%;
 -webkit-overflow-scrolling: touch;
}
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: 600;
 font-feature-settings: "palt"1;
}
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;
 display: inline-block;
}
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;
}
img {
 max-width: 100%;
 width: 100%;
 height: auto;
 vertical-align: bottom;
 display: block;
}
/*------------------------------------------------------------
	layout
------------------------------------------------------------*/
html {
 height: -webkit-fill-available;
}
body {
 font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
 font-size: 1.6rem;
 line-height: 2.2em;
 letter-spacing: 1px;
 background-color: #fff;
 color: #333;
 font-style: inherit;
 font-weight: 500;
 -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;
}
#loading-screen {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 min-height: 100%;
 min-height: 100lvh;
 background-color: #fff;
 display: flex;
 justify-content: center;
 align-items: center;
 z-index: 9999; /* 最前面に表示 */
}
#loading-image {
 width: 100px;
 height: 100px;
}
.rotate {
 animation: rotate 1s linear infinite; /* 回転アニメーション */
}
@keyframes rotate {
 0% {
  transform: rotate(0deg);
 }
 100% {
  transform: rotate(360deg);
 }
}
.fadein, .fade-in-up {
 opacity: 0;
 transform: translate(0, 60px);
 transition: all 1000ms;
}
.fadein.active, .fade-in-up.active {
 opacity: 0;
 animation-name: fadeInMove;
 animation-duration: 1.5s;
 animation-delay: .1s; /* 遅延 */
 animation-fill-mode: forwards;
}
.fade-in-up.active {
 animation-duration: 1s;
 animation-delay: .5s; /* 遅延 */
}
.top-billing {
 opacity: 0;
 transition: opacity 1s ease-in-out 1s;
}
.top-billing.fade-in.active {
 opacity: 1;
}
.txt-catch02.fade-in-up.active, .txt-catch.fade-in-up.active {
 animation-delay: 1s; /* 遅延 */
}
#kv_bg.fade-in-up.active {
 animation-delay: .1s;
}
@keyframes fadeInMove {
 from {
  opacity: 0;
  transform: translate(0, 40px);
 }
 to {
  opacity: 1;
  transform: translate(0, 0);
 }
}
.fade-in-down {
 opacity: 1;
 transform: translate(0, -60px);
 transition: all 1000ms;
}
.fade-in-down.active {
 opacity: 1;
 animation-name: fadeInDown;
 animation-duration: 1.5s;
 animation-delay: .1.5s; /* 遅延 */
 animation-fill-mode: forwards;
}
@keyframes fadeInDown {
 from {
  opacity: 1;
  transform: translate(0, -60px);
 }
 to {
  opacity: 1;
  transform: translate(0, 0);
 }
}
.dark-in.active {
 animation-name: darkIn;
 animation-duration: 5s;
 animation-fill-mode: forwards;
}
@keyframes darkIn {
 from {
  opacity: 1;
 }
 to {
  opacity: .5;
 }
}
.bright-in {
 overflow: hidden;
 opacity: 1;
 transition: 2s;
 filter: brightness(30%);
 width: 100%;
 height: 100%;
 background-color: #000;
}
.bright-in img {
 transition: 5s;
 transform: scale(1.05);
 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);
}
.mask {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 min-height: 100vh;
 min-height: 100lvh;
 display: flex;
 justify-content: center;
 align-items: center;
 z-index: 20;
}
.circle {
 width: 100%;
 height: 100%;
 position: absolute;
 transform: scale(1); /* 初期サイズ */
 transition: transform 4s ease-in-out;
 overflow: hidden;
 background: url('../images/mask.svg') center / cover no-repeat;
}
.keyvisual-inner {
 position: relative;
 top: 0;
}
.keyvisual-inner .main-character, .txt-catch02, .mainBg {
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
}
.txt-catch {
 position: absolute;
 top: 3%;
 width: 2.5%;
 max-width: 50px;
 left: 93.5%;
}
.keyvisual-inner .main-character, .txt-catch, .txt-catch02 {
 z-index: 2;
}
.main-character img {
 transform: translateY(60px); /* 初期位置を100px下に設定 */
 transition: transform 1.5s ease;
}
.main-character.active img {
 transform: translateY(0); /* activeクラスが付与されると元の位置に戻る */
}
.keyvisual-inner img {
 transform: translateY(30px); /* 初期位置を100px下に設定 */
 transition: transform 1s ease;
}
.keyvisual-inner.active img {
 transform: translateY(0); /* activeクラスが付与されると元の位置に戻る */
}
.sns-official .sns li {
 width: 10%;
 min-width: 44px;
}
.sns-official .sns img {
 width: 100%;
}
#top {
 position: relative;
 min-height: inherit;
}
.keyvisual-all {
 top: 0;
 left: 0;
 position: relative;
 width: 100%;
}
.keyvisual-all .section_bg {
 height: inherit;
 min-height: inherit;
 overflow: visible;
 overflow: inherit;
}
.award {
 display: block;
 z-index: 1;
}
.award.fade-in.active {
 opacity: 1;
}
.award img {
 filter: drop-shadow(0 0 1px #fff);
}
.flex {
 display: -webkit-box;
 display: -ms-flexbox;
 display: -webkit-flex;
 display: flex;
 -webkit-box-lines: multiple;
 -moz-box-lines: multiple;
}
.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;
}
.section {
 width: 100%;
 min-height: 100%;
 min-height: 100vh;
 min-height: 100lvh;
 position: relative;
 -webkit-overflow-scrolling: touch;
}
.section_bg {
 width: 100%;
 height: 100vh;
 height: 100lvh;
 min-height: 720px;
 top: 0;
 left: 0;
 position: sticky;
 overflow: hidden;
}
.section-inner {
 padding: 120px 50px;
}
.section-inner.contents {
 position: relative;
 margin-top: -50vh;
 margin-top: -50lvh;
}
.article {
 max-width: 900px;
 margin: auto;
}
.article p {
 margin: 1.6rem 0;
}
.article figure {
 margin: 2.4rem 0;
}
.section-inner.contents .article {
 margin-bottom: 50vh;
}
.section-inner .title {
 font-size: clamp(4.4rem, 6vw, 8rem);
 line-height: 1.2em;
 text-align: center;
 margin-bottom: 5rem;
 color: #fcd240;
 margin-left: auto;
 margin-right: auto;
}
#story .section-inner .title {
 width: clamp(160px, 30%, 280px);
 width: 60%;
}
#character .section-inner .title {
 font-size: clamp(3.8rem, 5.5vw, 7rem);
 line-height: 1;
 margin-bottom: 3vh;
 color: #fff;
 width: clamp(250px, 50%, 440px);
}
#character .section-inner .title .s {
 font-size: .8em;
}
.subttl {
 font-size: clamp(2.2rem, 3.6vw, 3.6rem);
 font-weight: 700;
 line-height: 1.6em;
 text-align: center;
 margin-bottom: 3rem;
 white-space: nowrap
}
.textanimation {
 white-space: nowrap;
}
.textanimation span {
 animation: showText 1.5s backwards;
 animation-delay: .1s;
 display: inline-block;
 line-height: 1em;
}
.textanimation > span {
 overflow: hidden;
}
.textanimation > span > span {
 animation: showTextFromBottom 1s backwards;
}
.textanimation span {
 animation: showText 1.5s backwards;
 animation-delay: .1s;
 display: inline-block;
 line-height: 1em;
}
@keyframes showTextFromBottom {
 0% {
  transform: translateY(100%);
 }
 100% {
  transform: translateY(0px);
 }
}
#intro {
 background-color: #f9d2cd;
 padding-top: 100px;
}
#intro .section-inner {
 background-color: #da656a;
 margin-top: -1px;
 padding: 2px 0 70px;
}
#intro .section-inner .article {
 padding-left: 50px;
 padding-right: 50px;
 max-width: 1000px;
 text-align: justify;
 hyphens: auto;
 word-break: break-all;
}
#intro .article, #story .article {
 color: #fff;
}
#intro .intro-catch {
 width: 93.4%;
 margin: 0 auto;
}
#intro .subttl {
 max-width: 900px;
 margin: 0 auto 4rem;
 color: #fff;
 text-shadow:
  0 0 1px rgba(251, 211, 62, 0.5), /* 半透明の影 */ 0 0 5px rgba(251, 211, 62, 0.5), /* 半透明の影 */ 0 0 10px rgba(251, 211, 62, 0.5), /* 半透明の影 */ 0 0 15px rgba(251, 211, 62, 0.5); /* 半透明の影 */
}
#story .article {
 text-align: center;
 font-size: clamp(1.45rem, 1.8vw, 1.8rem);
 line-height: 2.8em;
 margin-bottom: inherit;
 margin-top: 0;
 width: 100%;
}
#story .contents {
 text-align: center;
 font-size: clamp(1.4rem, 1.8vw, 1.8rem);
 line-height: 2.8em;
 background: url("../images/wave.svg") no-repeat center bottom;
 background-size: 100% auto;
}
#story .section_bg {
 background: url("../images/wave-blue.svg") no-repeat center bottom;
 background-size: 100% auto;
}
.bg-moviein video {
 width: 100%;
 height: 100%;
 min-height: 100lvh;
 filter: saturate(50%);
 position: absolute;
 right: 0;
 object-fit: cover;
 object-position: center;
}
.bg-moviein::after {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 /* background: url("../images/dot.png") rgba(236, 109, 116, 0.5); */
 background: url("../images/dot.png") rgba(0, 0, 0, 0.6);
 filter: saturate(200%);
 background-size: 4px;
}
#story::before {
 content: "";
 position: absolute;
 top: -2px;
 left: 0;
 width: 100%;
 aspect-ratio: 8.8;
 background: url("../images/wave-pink.svg") no-repeat center top;
 background-size: 100% auto;
 z-index: 1;
}
#character .section-inner {
 background: #86cde3 url("../images/water.jpg") no-repeat center bottom;
 background-size: 100% auto;
 padding: 80px 30px 200px;
 min-height: 100%;
 min-height: 100vh;
 min-height: 100lvh;
}
.cast-list {
 justify-content: center;
 gap: clamp(.2rem, 1.2vw, 4rem);
 text-align: center;
 margin: 0 auto;
 max-width: 1440px;
 width: 100%;
 font-feature-settings: "palt"1;
}
.cast-list li {
 position: relative;
 min-width: 20%;
 padding: 2.2rem 3rem;
 color: #00afdd;
 font-weight: 700;
 white-space: nowrap;
 display: flex;
 justify-content: center;
 align-items: center;
 flex-direction: column;
 border-radius: 10rem;
 overflow: hidden;
 margin-bottom: clamp(1rem, 2vw, 4rem);
}
.cast-list li.op {
 padding-top: 1rem;
 padding-bottom: 1rem;
}
.cast-list li::before {
 content: "";
 position: absolute;
 left: 0;
 top: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.75));
 transform: none;
 mix-blend-mode: overlay;
}
.cast-list .role, .cast-list .name {
 position: relative;
 z-index: 1;
 line-height: 1.2em;
}
.cast-list .role {
 font-size: clamp(1.1rem, 1.4vw, 1.5rem);
 color: #fe8784;
 margin-bottom: 2px;
}
.cast-list .name {
 font-size: clamp(1.8rem, 2vw, 2.8rem);
}
.cast-list .name::before {
 content: "CV";
 font-family: "Montserrat", "Arial", "Helvetica", "sans-serif";
 color: #fe8784;
 font-size: .8em;
 margin-right: 3px;
}
.cast-list .name .group {
 font-size: .5em;
 display: block;
 line-height: 1em;
}
.block-image {
 aspect-ratio: 2.4;
 object-fit: cover;
 overflow: hidden;
}
.top-billing {
 display: flex;
 flex-direction: column;
}
.top-billing .logo {
 width: 100%;
}
.txt-roadshow .credit {
 display: block;
 width: 100%;
 max-width: 320px;
 margin: 20px auto;
}
#fotter {
 padding: 20px 0;
}
#fotter .article .billing {
 margin: 0 auto;
 width: 72%;
 max-width: 420px;
}
#fotter .article .billing-txt {
 max-width: 280px;
 margin: 5vh auto;
 width: 68%;
}
#fotter .article .billing-txt.ver2 {
 max-width: 420px;
 width: 100%;
}
#fotter .article .billing-roadshow {
 max-width: 200px;
 margin: 0 auto;
 width: 40%;
}
.fotter-section .article {
 width: 86%;
 text-align: center;
}
.copyright {
 font-size: 1.1rem;
 line-height: 1.6em;
 color: #00afdd;
}
.sns li {
 display: inline-block;
 margin-left: 1.2rem;
}
.sns img {
 width: 34px;
 filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.8));
}
.share .item .link {
 display: block;
}
.sns li .link:hover, .share .item .link:hover {
 opacity: 0.7;
}
.share {
 margin: 6rem auto 4rem;
}
.share .ttl {
 margin-right: 6px;
 display: block;
 line-height: 1em;
 color: #00aedc;
}
.share .item {
 margin: auto;
 position: relative;
}
.share .item .link {
 display: block;
 display: -webkit-box;
 display: -ms-flexbox;
 display: -webkit-flex;
 display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 justify-content: center;
 cursor: pointer;
 width: 50px;
 height: 50px;
 position: relative;
}
.share .item .link .label {
 font-size: 0;
}
.share .item svg {
 display: block;
 margin: auto;
 position: absolute;
 left: 0;
 right: 0;
 top: 0;
 bottom: 0;
 width: 38px;
 height: 34px;
}
.share .item svg.svg-x {
 padding-top: .5px;
 width: 40px;
 height: 36px;
}
.share .item svg.svg-line {
 padding-top: 1.5px;
 width: 56px;
 height: 44px;
}
.slider-container {
 width: 100%;
 height: 100%;
 overflow: hidden;
 position: relative;
 opacity: 1;
 transition: opacity 5s ease-in-out;
}
.slider-container.transparent {
 opacity: 0.5; /* 半透明 */
}
.slider {
 width: 100%;
 height: 100%;
 position: relative;
}
.slider img {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 opacity: 0;
 transition: opacity 1s ease-in-out, transform 5s ease-in-out;
 transform: scale(1.05);
}
.slider img.active {
 opacity: 1;
 transform: scale(1);
}
.button::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 -webkit-touch-callout: none;
 -webkit-user-select: none;
 -khtml-user-select: none;
 -moz-user-select: none;
 -ms-user-select: none;
 user-select: none;
 -webkit-tap-highlight-color: transparent;
 background: rgb(2, 0, 36);
 background: linear-gradient(45deg, rgba(2, 0, 36, 0) 5%, rgba(255, 255, 255, .5) 6%, rgba(255, 255, 255, 0) 9%, rgba(255, 255, 255, .5) 10%, rgba(255, 255, 255, 0) 17%, rgba(255, 255, 255, .5) 19%, rgba(255, 255, 255, 0) 21%);
 background-size: 150%;
 background-position: right;
}
.button {
 font-size: clamp(1.6rem, 2vw, 2.4rem);
 white-space: nowrap;
 line-height: 1em;
 display: flex;
 justify-content: center;
 align-items: center;
 position: relative;
 overflow: hidden;
 max-width: 280px;
 width: 50%;
 padding: 16px 10px;
 border-radius: 80px;
 margin: 20px auto;
 cursor: pointer;
 border: none;
 background-color: rgba(218, 101, 106, 1);
 box-shadow: inset 0px 3px 5px rgba(255, 255, 255, 0.7), 0px 0px 3px rgba(0, 0, 0, 0.5), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
 color: #fff;
 transition: transform 0.3s ease-in-out;
}
.button:hover {
 animation: poyon 0.5s ease-in-out infinite alternate;
 transform: scale(1);
}
@keyframes poyon {
 0% {
  transform: translateY(0);
  transform: scale(1);
 }
 100% {
  transform: translateY(-5px); /* 5px上に移動 */
  transform: scale(1.05);
 }
}
@media screen and (min-width: 813px) {
 .block-image {
  width: 50%;
 }
 #intro .subttl figure {
  margin-left: -2%;
  margin-right: -1%;
  width: 103%;
 }
 #story .section-inner .title {
  margin-bottom: 8rem;
 }
 #story.section .section-inner.contents {
  padding-top: clamp(300px, 50vh, 400px);
  padding-bottom: clamp(300px, 50vh, 400px);
  margin-top: -100vh;
  margin-top: -100lvh;
  min-height: 100vh;
  min-height: 100lvh;
  display: flex;
  align-items: center;
 }
 .cast-list {
  gap: clamp(1rem, 2vw, 4rem);
  flex-wrap: nowrap;
 }
}
@media screen and (min-width: 1025px) {
 .award {
  width: 76%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 30px;
 }
 .award.nominate .fantasia {
  width: 80%;
 }
 .main {
  position: relative;
 }
 .keyvisual-all-inner {
  margin-top: -15px;
 }
 .main-character, .stop {
  padding-left: 20%;
 }
 .txt-catch02 {
  left: 26%;
  right: -6%;
 }
 .top-billing {
  position: absolute;
  top: 0;
  left: 0;
  width: 32%;
  max-width: 600px;
  height: 100%;
  padding: 2vh 30px 0 2vw;
  z-index: 10;
 }
 .top-billing .top-billing-inner {
  position: sticky;
  top: 0;
  left: 0;
  overflow: hidden;
  padding-bottom: 40px;
  transition: all 1000ms;
 }
 .header-logo {
  width: 103%;
  margin-left: -3%;
 }
 .txt-billing {
  padding-left: 5%;
  width: 72%;
  margin: 12vh 0;
 }
 .txt-billing.ver2 {
  width: 79%;
  margin: 11vh 0;
 }
 .txt-roadshow {
  padding-left: 35px;
  width: 52%;
 }
 .txt-catch_sp {
  display: none;
 }
 .sns-official {
  padding-left: 24px;
  margin-top: 30px;
 }
 .txt-roadshow .credit {
  margin-left: 0;
 }
 .character-area {
  max-width: 1920px;
  margin: auto;
 }
 .character-area .item {
  width: 47%;
  margin-right: 3%;
 }
 .button {
  background-color: rgba(218, 101, 106, 0.9);
  padding: 24px 10px;
  margin-top: 40px;
 }
 .castbox {
  margin-top: 8rem;
 }
 .fotter-section {
  display: flex;
  justify-content: space-between;
 }
 .fotter-section .fotter-section-ph {
  width: 65%;
 }
 .fotter-section .article {
  width: 30%;
  margin-right: 5%;
 }
}
@media (min-width: 1025px) and (max-width: 1440px) and (orientation: portrait) { /* 縦向き */
 /* 縦向きタブレット向けのCSS */
}
@media screen and (min-width: 1025px) and (min-height: 900px) {
 /* ビューポートの高さが900px以上の時に適用したいスタイルを記述 */
 .top-billing .top-billing-inner {
  margin-top: 2vh;
 }
 .header-logo {
  margin-top: 1vh;
 }
 html .top-billing-inner .nav-wrap-inner {
  margin-top: 4vh;
  margin-bottom: 4vh
 }
 html .top-billing-inner .nav-wrap-inner .nav .wave-text {
  padding: 1vh 0;
 }
 .sns-official {
  margin-top: 5vh;
 }
}
@media screen and (max-width: 1024px) {
 @keyframes fadeInMove {
  from {
   opacity: 0;
   transform: translate(0, 30px);
  }
  to {
   opacity: 1;
   transform: translate(0, 0);
  }
 }
 .main {
  overflow: hidden;
 }
 .keyvisual-all {
  width: 100%;
  left: 0;
 }
 .keyvisual-all-inner {
  margin-top: -10px;
  width: 100%;
  aspect-ratio: 1 / 1.414;
  overflow: hidden;
 }
 .keyvisual-all-inner img {
  aspect-ratio: 1 / 1.414;
  object-fit: cover;
 }
 .txt-catch {
  display: none;
 }
 .award {
  width: 100%;
  bottom: 0;
  max-width: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 5px;
 }
 .award.nominate li {
  max-width: 320px;
  width: 48%;
 }
 .award.nominate li.fantasia {
  max-width: 260px;
  width: 38%;
 }
 .top-billing {
  width: 82%;
  max-width: 600px;
  margin: 30px auto 80px;
 }
 .top-billing .txt-roadshow {
  width: 40%;
  margin: 20px auto;
 }
 .top-billing .txt-catch_sp {
  width: 70%;
  max-width: 600px;
  margin: 30px auto 30px;
 }
 .top-billing .txt-billing.ver2 {
  width: 100%;
  margin: 30px auto;
 }
 .top-billing .bg_movie a {
  width: 52%;
  margin: 0 auto 30px;
  padding-right: 2%;
 }
 .top-billing .sns-official .sns {
  justify-content: center;
 }
 .top-billing .sns-official .sns li {
  margin-left: .8rem;
  margin-right: .8rem;
 }
 .character-area {
  flex-direction: column;
 }
 .character-area .item {
  margin: 30px auto 50px;
  max-width: 600px;
  width: 100%;
  overflow: hidden;
 }
 #fotter {
  padding: 40px 0;
 }
}
@media screen and (max-width: 812px) {
 body {
  font-size: 1.4rem;
  letter-spacing: .5px;
 }
 .section-inner {
  padding: 80px 0;
 }
 #character .section-inner {
  padding: 80px 0;
  background-size: 140% auto;
 }
 .bg-moviein::after {
  background-size: 3px;
 }
 #intro {
  padding-top: 50px;
 }
 #intro .intro-catch {
  width: 80%;
  margin-bottom: 1rem;
 }
 #intro .subttl {
  width: 90%;
  max-width: 400px;
 }
 #intro .section-inner .article {
  padding-left: 30px;
  padding-right: 30px;
 }
 #story.section {
  min-height: inherit;
  height: inherit;
 }
 #story .article {
  line-height: 2.4em;
 }
 #story.section .section-inner.contents {
  margin-top: 0;
  margin-top: 0;
 }
 #story.section .section_bg {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
 }
 #story.section .section-inner.contents {
  padding-top: 120px;
  padding-bottom: 120px;
 }
 .castbox {
  max-width: 600px;
  margin: auto;
 }
 .cast-list li {
  padding: 2rem 0;
  min-width: 48%;
 }
 .cast-list li.first {
  min-width: 51%;
 }
 .share {
  margin-top: 4rem;
 }
}
@media screen and (max-width: 520px) {
 .top-billing {
  width: 70%;
  margin-top: 10px;
  margin-bottom: 30px;
 }
 .top-billing .txt-billing.ver2 {
  width: 120%;
  margin: 30px -10%;
 }
 .top-billing .txt-catch_sp {
  margin-top: 20px;
 }
 .character-area .item img {
  width: 103%;
  margin-right: -5%;
  max-width: 103%;
 }
 .copyright {
  font-size: .9rem;
 }
}
/* ------------------------------
	NEWS
------------------------------ */
#news {
 background-color: #fff;
 padding-bottom: 50px;
 padding-top: 80px;
}
.news-ttl.en {
 font-size: clamp(3rem, 5vw, 5rem);
 color: #00afdd;
}
#news a {
 font-size: clamp(1.4rem, 2vw, 1.5rem);
 vertical-align: middle;
}
.newsbox {
 width: 100%;
}
.newsbox .article-list-item {
 border-top: 1px solid #86cde3;
}
.newsbox .article-list-item:last-child {
 border-bottom: 1px solid #86cde3;
}
.article-list-item dl {
 padding: 1.6rem 0;
 display: table;
 width: 100%;
 line-height: 1.6em;
}
.article-list-item dl dt {
 color: #00afdd;
}
.newsbox .btn-area {
 text-align: center;
 margin-top: 2rem;
}
.news {
 width: 86%;
 max-width: 1140px;
 margin: auto;
}
.news-more {
 text-align: right;
 margin-top: 10px;
}
#news .news-more .more, .info-more .more {
 color: #00afdd;
 font-size: clamp(1.6rem, 1.8vw, 1.8rem);
 display: inline-flex;
 line-height: 1em;
}
@media screen and (min-width : 1025px) {
 .news {
  display: flex;
 }
 .news-ttl.en {
  min-width: 220px;
 }
 .article-list-item dl {
  padding: 2.4rem 0;
 }
 .article-list-item dl dt {
  display: table-cell;
  width: 110px;
  vertical-align: top;
  white-space: nowrap;
  position: relative;
  top: 1px;
  padding-right: 12px;
  letter-spacing: normal !important;
  font-size: 1.1em;
 }
 .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;
 }
}
/* ------------------------------
	動画
------------------------------ */
#trailer {
 display: none;
}
.bg_movie {
 position: relative;
 overflow: hidden;
 background-color: #000;
 width: 100%;
 height: 35vw;
 -o-object-fit: cover;
 object-fit: cover;
 z-index: 2;
}
.bg_movie a {
 display: block;
 width: 100%;
 height: 100%;
}
.btn-play {
 position: absolute;
 z-index: 1;
 width: 100%;
 height: 100%;
 justify-content: center;
 align-items: center;
}
.btn-play::before {
 content: "";
 position: absolute;
 z-index: 1;
 width: 300px;
 height: 300px;
 justify-content: center;
 align-items: center;
 background: url("../images/staff/txt-movie.png") no-repeat center center;
 background-size: 100% auto;
 transition: transform 1.2s cubic-bezier(0.3, 0.7, 0.4, 1);
}
.btn-play:hover::before {
 animation: rotateBack 1.2s ease-in-out forwards;
}
.btn-play #play {
 width: 160px;
 height: 160px;
}
@keyframes spin {
 to {
  transform: rotate(360deg);
 }
}
.stroke-solid {
 stroke-dashoffset: 0;
 stroke-dasharray: 300;
 stroke-width: 4px;
 transition: stroke-dashoffset 1s ease, opacity 1s ease;
}
.icon {
 transform: scale(1);
 transform-origin: 50% 50%;
 transition: transform 200ms ease-out;
}
.modal-btn:hover .stroke-solid {
 opacity: 1;
 stroke-dashoffset: 300;
}
.modal-btn:hover .icon {
 transform: scale(1.4);
}
.bg_movie video {
 transition: 0.4s;
 width: 100%;
 height: 100%;
 -o-object-fit: cover;
 object-fit: cover;
}
@media screen and (max-width: 812px) {
 .bg_movie {
  height: auto;
  aspect-ratio: 1.8;
 }
 .btn-play #play {
  width: 80px;
  height: 80px;
 }
 .btn-play::before {
  width: 150px;
  height: 150px;
 }
 .slider-container-sp {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100lvh;
 }
 .slider-container-sp .slider-container {
  flex: 1;
 }
}
/* ------------------------------
	画像スライダー
------------------------------ */
.slider-story-area {
 width: 100%;
 overflow: hidden;
}
.slider-story {
 display: flex;
 width: max-content; /* コンテンツの幅を画像の総幅に合わせる */
 animation: scroll-img 40s linear infinite; /* 無限スクロールアニメーション */
 transform: translate3d(0, 0, 0);
}
.slider-story.reverse {
 animation: scroll-img-reverse 40s linear infinite;
 margin-bottom: 3rem;
 margin-top: 2rem;
}
.slider-story img {
 aspect-ratio: 40 / 17;
 object-fit: cover;
}
.slider-story li {
 display: block;
 position: relative;
 object-fit: cover;
 width: 80vw;
}
/* 無限スクロールのアニメーション */
@keyframes scroll-img {
 0% {
  transform: translateX(0); /* スライド開始位置 */
 }
 100% {
  transform: translateX(-50%); /* スライド終了位置（画像の半分だけスクロール） */
 }
}
@keyframes scroll-img-reverse { /* アニメーション名も変更 */
 0% {
  transform: translateX(-50%); /* 開始位置を右端に */
 }
 100% {
  transform: translateX(0%); /* 終了位置を左端に */
 }
}
@media screen and (min-width: 813px) {
 /* 画像を横に並べる */
 .slider-story {
  animation: scroll-img 60s linear infinite;
 }
 .slider-story.reverse {
  animation: scroll-img-reverse 60s linear infinite;
  margin-bottom: 4rem;
  margin-top: 0;
 }
 .slider-story li {
  width: 50vw;
 }
}
@media screen and (min-width: 1240px) {
 /* 画像を横に並べる */
 .slider-story {
  animation: scroll-img 70s linear infinite;
 }
 .slider-story.reverse {
  animation: scroll-img-reverse 70s linear infinite;
 }
 .slider-story li {
  width: 40vw;
 }
}
/* ------------------------------
	動画
------------------------------ */
.__movie-wrap {
 width: 90%;
 max-width: 1040px;
 margin: auto;
 display: flex;
 justify-content: center;
 align-content: center;
}
.__movie-wrap-inner {
 width: 100%;
 margin: auto;
}
.__movie-wrap-inner iframe {
 display: block;
 width: 100%;
 max-width: 100%;
 height: auto;
 aspect-ratio: 1.77777778;
 -o-object-fit: cover;
 object-fit: cover;
}
.__btns {
 width: 90%;
 max-width: 1040px;
 margin: auto;
 display: flex;
 flex-wrap: wrap;
 margin: 4px auto;
}
.__btns li {
 width: 33.33333%;
 line-height: 40px;
 text-align: center;
 font-size: 15px;
 font-weight: 600;
 letter-spacing: 0;
 font-style: normal;
 margin: 0;
 padding: 4px;
 transition: all 0.3s ease;
}
.__btns li span {
 background: rgba(0, 0, 0, .5);
 width: 100%;
 height: 100%;
 display: block;
 text-decoration: none;
 color: #fff;
 padding: 0;
 float: left;
}
.__btns li:hover span, .__btns li.select span {
 background: #000;
}
#cboxLoadedContent #trailer, #cboxLoadedContent #poster {
 height: 100%;
 padding: 0;
 display: flex;
 align-items: center;
 background: #000;
}
#cboxLoadedContent #poster {
 justify-content: center;
 height: 100vh;
 height: 100dvh;
}
#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%;
}
@media screen and (max-width : 812px) {
 .__movie-wrap {
  width: 100%;
 }
 .__btns li {
  line-height: 30px;
  font-size: 14px;
 }
}
.section-ttl {
 width: 90%;
 margin: 0 auto;
}
/*　キャラクター -----------------------------------------　*/
#character {
 background-color: #fff;
 position: relative;
}
#character .section-header {
 position: absolute;
 top: 0;
 width: 100%;
 aspect-ratio: 48 / 3;
 display: flex;
 align-items: flex-end;
 z-index: 1;
}
#character::before {
 content: "";
 width: 100%;
 display: block;
 border-top: 4px solid #fff;
 position: absolute;
 top: -2px;
}
#diagram {
 width: 100%;
 margin: 0 auto;
}
img.img-full {
 width: 100%;
}
.cast-photo {
 max-width: 600px;
}
.txt-skew {
 -webkit-transform: skew(0deg, -10deg);
 -moz-transform: skew(0deg, -10deg);
 transform: skew(0deg, -10deg);
 width: 100%;
}
.txt-skew-inner {
 transform: translate(0, 0);
 text-align: justify;
 hyphens: auto;
 word-break: break-all;
}
#cboxLoadedContent .modal__content-inner {
 position: relative;
 min-height: 100%;
}
#cboxLoadedContent .modal__content-inner .scene {
 width: 90%;
 margin: 20px auto 80px;
 display: flex;
 gap: 20px;
}
.modal__content-inner::before {
 content: "";
 width: 100%;
 background-size: 100% auto;
 display: block;
 height: 100%;
 height: 100%;
 top: 0;
 position: absolute;
 z-index: 2;
}
.modal__content-inner::after {
 content: "";
 width: 100%;
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 606.8 45.2'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%23ffffff' d='M606.7,0H0v40c3.9,3.4,9.4,5.2,16.1,5.2,11.4,0,23.8-5.5,28.7-12.7h0s0,0,0,0c2.5-4.2,2-6.9,1.1-8.5-1.2-2.1-3.6-3.3-6.8-3.3-.8,0-1.6,0-2.5.2-4.3.8-6.8,2.7-6.5,5,0,.9.6,1.9,1.8,2.4-1.1.3-2,.4-2.5.4s-1.7,0-2-.8c-.4-1.1.9-4.1,5.9-7.9,5.3-4,13.5-6.6,22.3-7h551.2V0h0Z' /%3E%3C/g%3E%3C/svg%3E") center top no-repeat;
 background-size: 100% auto;
 position: absolute;
 height: 100%;
 top: 0;
 z-index: 1;
}
.modal__content {
 background-size: 100% auto !important;
 position: relative;
}
.modal__content::before {
 content: "";
 width: 6%;
 position: absolute;
 top: 0;
 aspect-ratio: 1 / 2;
 background: url("../characters/water-drop.png") no-repeat center top;
 background-size: 90% auto;
 z-index: 3;
}
.modal__content .wrapp-chara::after {
 content: "";
 width: 16%;
 position: absolute;
 bottom: 0;
 right: 0;
 aspect-ratio: 3 / 2;
 background: url("../characters/water-drop02.png") no-repeat right bottom;
 background-size: auto 100%;
 z-index: 3;
}
#cast01 .wrapp-chara::after, #cast02 .wrapp-chara::after {
 display: none;
}
.modal__content::after {
 content: "";
 width: 100%;
 background-size: 100% auto;
 position: absolute;
 height: 100%;
 bottom: 0;
 z-index: 1;
}
#cast01 .modal__content-inner::before {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 606.7 43.8'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%2300aedc' d='M606.7,0H0v37.2c10.5,11.5,35.9,4.8,43.1-5.8,4.1-6.8-.7-9.5-6.1-8.5-6.7,1.3-6,4.9-1.2,3.4,2-.6,2.9,1.4-1.5,3.3-9.1,3.9-13.4-2.6-2.2-11.1,5.8-4.4,14.5-7,23.5-7.4h529.9c0,5.6,4.5,10.1,10.1,10.1v22.5h11.2V0Z' /%3E%3C/g%3E%3C/svg%3E") center top no-repeat;
}
#cast01 {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 607.1 4535.4'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%2300aedc' d='M0,4535.1h11.2V0H0v4535.4h0v-.3ZM595.9,0v4535.4h11.2V0h-11.2Z' /%3E%3C/g%3E%3C/svg%3E") center top repeat-y;
}
#cast01::after {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 606.7 21.3'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%2300aedc' d='M585.4,10.1H21.3C21.3,4.5,16.8,0,11.2,0H0v21.3h606.7V0h-11.2c-5.6,0-10.1,4.5-10.1,10.1Z' /%3E%3C/g%3E%3C/svg%3E") center bottom no-repeat;
}
#cast02 .modal__content-inner::before {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 606.7 43.8'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%23f8bcb1' d='M606.7,0H0v37.2c10.5,11.5,35.9,4.8,43.1-5.8,4.1-6.8-.7-9.5-6.1-8.5-6.7,1.3-6,4.9-1.2,3.4,2-.6,2.9,1.4-1.5,3.3-9.1,3.9-13.4-2.6-2.2-11.1,5.8-4.4,14.5-7,23.5-7.4h529.9c0,5.6,4.5,10.1,10.1,10.1v22.5h11.2V0Z' /%3E%3C/g%3E%3C/svg%3E") center top no-repeat;
}
#cast02 {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 607.1 4535.4'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%23f8bcb1' d='M0,4535.1h11.2V0H0v4535.4h0v-.3ZM595.9,0v4535.4h11.2V0h-11.2Z' /%3E%3C/g%3E%3C/svg%3E") center top repeat-y;
}
#cast02::after {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 606.7 21.3'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%23f8bcb1' d='M585.4,10.1H21.3C21.3,4.5,16.8,0,11.2,0H0v21.3h606.7V0h-11.2c-5.6,0-10.1,4.5-10.1,10.1Z' /%3E%3C/g%3E%3C/svg%3E") center bottom no-repeat;
}
#cast03 .modal__content-inner::before {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 606.7 43.8'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%2323b6bc' d='M606.7,0H0v37.2c10.5,11.5,35.9,4.8,43.1-5.8,4.1-6.8-.7-9.5-6.1-8.5-6.7,1.3-6,4.9-1.2,3.4,2-.6,2.9,1.4-1.5,3.3-9.1,3.9-13.4-2.6-2.2-11.1,5.8-4.4,14.5-7,23.5-7.4h529.9c0,5.6,4.5,10.1,10.1,10.1v22.5h11.2V0Z' /%3E%3C/g%3E%3C/svg%3E") center top no-repeat;
}
#cast03 {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 607.1 4535.4'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%2323b6bc' d='M0,4535.1h11.2V0H0v4535.4h0v-.3ZM595.9,0v4535.4h11.2V0h-11.2Z' /%3E%3C/g%3E%3C/svg%3E") center top repeat-y;
}
#cast03::after {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 606.7 21.3'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%2323b6bc' d='M585.4,10.1H21.3C21.3,4.5,16.8,0,11.2,0H0v21.3h606.7V0h-11.2c-5.6,0-10.1,4.5-10.1,10.1Z' /%3E%3C/g%3E%3C/svg%3E") center bottom no-repeat;
}
#cast04 .modal__content-inner::before {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 606.7 43.8'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%23ef821d' d='M606.7,0H0v37.2c10.5,11.5,35.9,4.8,43.1-5.8,4.1-6.8-.7-9.5-6.1-8.5-6.7,1.3-6,4.9-1.2,3.4,2-.6,2.9,1.4-1.5,3.3-9.1,3.9-13.4-2.6-2.2-11.1,5.8-4.4,14.5-7,23.5-7.4h529.9c0,5.6,4.5,10.1,10.1,10.1v22.5h11.2V0Z' /%3E%3C/g%3E%3C/svg%3E") center top no-repeat;
}
#cast04 {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 607.1 4535.4'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%23ef821d' d='M0,4535.1h11.2V0H0v4535.4h0v-.3ZM595.9,0v4535.4h11.2V0h-11.2Z' /%3E%3C/g%3E%3C/svg%3E") center top repeat-y;
}
#cast04::after {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 606.7 21.3'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%23ef821d' d='M585.4,10.1H21.3C21.3,4.5,16.8,0,11.2,0H0v21.3h606.7V0h-11.2c-5.6,0-10.1,4.5-10.1,10.1Z' /%3E%3C/g%3E%3C/svg%3E") center bottom no-repeat;
}
#cast05 .modal__content-inner::before {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 606.7 43.8'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%238f70ae' d='M606.7,0H0v37.2c10.5,11.5,35.9,4.8,43.1-5.8,4.1-6.8-.7-9.5-6.1-8.5-6.7,1.3-6,4.9-1.2,3.4,2-.6,2.9,1.4-1.5,3.3-9.1,3.9-13.4-2.6-2.2-11.1,5.8-4.4,14.5-7,23.5-7.4h529.9c0,5.6,4.5,10.1,10.1,10.1v22.5h11.2V0Z' /%3E%3C/g%3E%3C/svg%3E") center top no-repeat;
}
#cast05 {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 607.1 4535.4'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%238f70ae' d='M0,4535.1h11.2V0H0v4535.4h0v-.3ZM595.9,0v4535.4h11.2V0h-11.2Z' /%3E%3C/g%3E%3C/svg%3E") center top repeat-y;
}
#cast05::after {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 606.7 21.3'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%238f70ae' d='M585.4,10.1H21.3C21.3,4.5,16.8,0,11.2,0H0v21.3h606.7V0h-11.2c-5.6,0-10.1,4.5-10.1,10.1Z' /%3E%3C/g%3E%3C/svg%3E") center bottom no-repeat;
}
#cast06 .modal__content-inner::before {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 606.7 43.8'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%235e66ad' d='M606.7,0H0v37.2c10.5,11.5,35.9,4.8,43.1-5.8,4.1-6.8-.7-9.5-6.1-8.5-6.7,1.3-6,4.9-1.2,3.4,2-.6,2.9,1.4-1.5,3.3-9.1,3.9-13.4-2.6-2.2-11.1,5.8-4.4,14.5-7,23.5-7.4h529.9c0,5.6,4.5,10.1,10.1,10.1v22.5h11.2V0Z' /%3E%3C/g%3E%3C/svg%3E") center top no-repeat;
}
#cast06 {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 607.1 4535.4'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%235e66ad' d='M0,4535.1h11.2V0H0v4535.4h0v-.3ZM595.9,0v4535.4h11.2V0h-11.2Z' /%3E%3C/g%3E%3C/svg%3E") center top repeat-y;
}
#cast06::after {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 606.7 21.3'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%235e66ad' d='M585.4,10.1H21.3C21.3,4.5,16.8,0,11.2,0H0v21.3h606.7V0h-11.2c-5.6,0-10.1,4.5-10.1,10.1Z' /%3E%3C/g%3E%3C/svg%3E") center bottom no-repeat;
}
#cast07 .modal__content-inner::before {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 606.7 43.8'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%23fbc70d' d='M606.7,0H0v37.2c10.5,11.5,35.9,4.8,43.1-5.8,4.1-6.8-.7-9.5-6.1-8.5-6.7,1.3-6,4.9-1.2,3.4,2-.6,2.9,1.4-1.5,3.3-9.1,3.9-13.4-2.6-2.2-11.1,5.8-4.4,14.5-7,23.5-7.4h529.9c0,5.6,4.5,10.1,10.1,10.1v22.5h11.2V0Z' /%3E%3C/g%3E%3C/svg%3E") center top no-repeat;
}
#cast07 {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 607.1 4535.4'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%23fbc70d' d='M0,4535.1h11.2V0H0v4535.4h0v-.3ZM595.9,0v4535.4h11.2V0h-11.2Z' /%3E%3C/g%3E%3C/svg%3E") center top repeat-y;
}
#cast07::after {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 606.7 21.3'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%23fbc70d' d='M585.4,10.1H21.3C21.3,4.5,16.8,0,11.2,0H0v21.3h606.7V0h-11.2c-5.6,0-10.1,4.5-10.1,10.1Z' /%3E%3C/g%3E%3C/svg%3E") center bottom no-repeat;
}
#cast08 .modal__content-inner::before {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 606.7 43.8'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%23e9546b' d='M606.7,0H0v37.2c10.5,11.5,35.9,4.8,43.1-5.8,4.1-6.8-.7-9.5-6.1-8.5-6.7,1.3-6,4.9-1.2,3.4,2-.6,2.9,1.4-1.5,3.3-9.1,3.9-13.4-2.6-2.2-11.1,5.8-4.4,14.5-7,23.5-7.4h529.9c0,5.6,4.5,10.1,10.1,10.1v22.5h11.2V0Z' /%3E%3C/g%3E%3C/svg%3E") center top no-repeat;
}
#cast08 {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 607.1 4535.4'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%23e9546b' d='M0,4535.1h11.2V0H0v4535.4h0v-.3ZM595.9,0v4535.4h11.2V0h-11.2Z' /%3E%3C/g%3E%3C/svg%3E") center top repeat-y;
}
#cast08::after {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 606.7 21.3'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%23e9546b' d='M585.4,10.1H21.3C21.3,4.5,16.8,0,11.2,0H0v21.3h606.7V0h-11.2c-5.6,0-10.1,4.5-10.1,10.1Z' /%3E%3C/g%3E%3C/svg%3E") center bottom no-repeat;
}
#cast09 .modal__content-inner::before {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 606.7 43.8'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%2382939c' d='M606.7,0H0v37.2c10.5,11.5,35.9,4.8,43.1-5.8,4.1-6.8-.7-9.5-6.1-8.5-6.7,1.3-6,4.9-1.2,3.4,2-.6,2.9,1.4-1.5,3.3-9.1,3.9-13.4-2.6-2.2-11.1,5.8-4.4,14.5-7,23.5-7.4h529.9c0,5.6,4.5,10.1,10.1,10.1v22.5h11.2V0Z' /%3E%3C/g%3E%3C/svg%3E") center top no-repeat;
}
#cast09 {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 607.1 4535.4'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%2382939c' d='M0,4535.1h11.2V0H0v4535.4h0v-.3ZM595.9,0v4535.4h11.2V0h-11.2Z' /%3E%3C/g%3E%3C/svg%3E") center top repeat-y;
}
#cast09::after {
 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 606.7 21.3'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%2382939c' d='M585.4,10.1H21.3C21.3,4.5,16.8,0,11.2,0H0v21.3h606.7V0h-11.2c-5.6,0-10.1,4.5-10.1,10.1Z' /%3E%3C/g%3E%3C/svg%3E") center bottom no-repeat;
}
@media screen and (min-width: 1025px) {
 .wrapp-chara .profile, .wrapp-chara .photo {
  display: grid;
  align-items: center;
 }
 .txt-skew {
  width: 90%;
 }
}
@media screen and (max-width : 812px) {
 #characters {
  padding-bottom: 20px;
 }
 .modal__content::before {
  width: 12%;
  background-size: 100% auto;
 }
 .modal__content .wrapp-chara::after {
  background: url("../characters/water-drop02.png") no-repeat right bottom -20px;
  background-size: auto 100%;
  width: 36%;
 }
 #character .section-header {
  aspect-ratio: 30 / 3;
 }
 /*　相関図 -----------------------------------------　*/
 .slider-wrapper {
  max-width: 980px;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
 }
 .slider-wrapper > * {
  -webkit-transform: translateZ(0px);
  transform: translateZ(0px);
 }
 .slider-wrapper::-webkit-scrollbar {
  display: none;
  height: 0 !important;
 }
 .slider-diagram {
  width: auto;
 }
 .slider-diagram .unit {
  width: 980px;
 }
 .slider-inner-container {
  width: 980px;
 }
}
@media screen and (max-width : 1024px) {
 #cboxLoadedContent .modal__content-inner .scene {
  flex-flow: column;
  gap: 12px;
 }
 #cast01 .profile, #cast02 .profile {
  padding-bottom: 0;
 }
}
/*　4°C -----------------------------------------　*/
#production {
 position: relative;
 padding-bottom: 100px;
}
#production::before {
 background: url("../images/staff/bg_dot.png") repeat-x center top;
 background-size: 2% auto;
 content: "";
 display: block;
 width: 100%;
 padding-top: 20%;
 position: absolute;
 z-index: 2;
}
#production .section-ttl::before {
 content: "";
 display: block;
 width: 100%;
 padding-top: 20%;
}
#production .section-ttl {
 width: 70%;
 max-width: 1200px;
 mix-blend-mode: screen;
 position: relative;
 z-index: 3;
}
#production .ttl-name {
 max-width: 600px;
 margin-bottom: 3rem;
}
#production .production-article {
 width: 70%;
 max-width: 1200px;
 background-color: rgba(255, 244, 98, 0.85);
 padding: 5%;
 margin: 80px auto;
 text-align: justify;
 hyphens: auto;
 word-break: break-all;
 position: relative;
 z-index: 3;
}
#production .production-article-inner .ph {
 mix-blend-mode: multiply;
 float: right;
 width: 40%;
 margin-left: 5%;
 margin-bottom: 12px;
}
/*　ミュージック -----------------------------------------　*/
#music {
 position: relative;
}
#music .music-article {
 z-index: 2;
 position: relative;
}
#music .music-article::before {
 content: "";
 position: absolute;
 top: 0;
 background-image: url("../images/staff/music-ttl.webp"), url("../images/staff/music-ttl.png");
 background-repeat: no-repeat;
 background-position: center top;
 background-size: 100% auto;
 aspect-ratio: 12 / 4;
 width: 100%;
}
#music .music-article::after {
 content: "";
 position: absolute;
 bottom: 0;
 background-image: url("../images/staff/music-kumi.png");
 background-repeat: no-repeat;
 background-position: center top;
 background-size: 100% auto;
 aspect-ratio: 6 / 1;
 width: 100%;
}
#music .music-article-inner {
 position: relative;
 z-index: 3;
 width: 100%;
}
#music .music-article-inner::before, #music .music-article-inner::after {
 content: "";
 display: block;
 aspect-ratio: 6 / 1.5;
 width: 100%;
}
#music .music-article-inner::after {
 aspect-ratio: 7 / 1;
}
#music .music-article-inner .article-box {
 width: 84%;
 max-width: 1440px;
 margin: auto;
 text-align: justify;
 hyphens: auto;
 word-break: break-all;
}
.music-more {
 -webkit-transform: skew(0deg, -5deg);
 -moz-transform: skew(0deg, -5deg);
 transform: skew(0deg, -5deg);
}
.music-more .section-ph, .music-more .ttl-kumi {
 -webkit-transform: skew(0deg, 5deg);
 -moz-transform: skew(0deg, 5deg);
 transform: skew(0deg, 5deg);
}
.article-box .section-ph {
 width: 34%;
 float: left;
 margin-right: 50px;
}
.article-box .ttl-kumi {
 max-width: 400px;
 width: 38%;
 margin-bottom: 30px;
 margin-top: 16px;
 display: flex;
}
.article-box .article-box-inner {
 width: 100%;
}
.music-ttl-inner {
 max-width: 400px;
}
/*　スタッフ -----------------------------------------　*/
#staff {
 position: relative;
 background: #135087 url("../images/staff/staff_bg.jpg") no-repeat center bottom;
 background-size: 100% auto;
 padding-top: 100px;
}
#staff::after {
 content: "";
 display: block;
 width: 100%;
 aspect-ratio: 5 / 2;
}
.staff-list {
 width: 84%;
 margin: 50px auto 0;
 color: #fff;
}
.staff-list .ttl-name {
 width: 80%;
 max-width: 400px;
 margin: 0 auto 3rem;
}
.staff-list p {
 text-align: justify;
 font-size: 1.4rem;
 line-height: 2em;
 hyphens: auto;
 word-break: break-all;
}
@media screen and (min-width : 813px) {
 .staff-list {
  width: 90%;
  margin-top: 100px;
  display: -ms-grid;
  display: grid;
  grid-gap: 5rem;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: repeat(2, 1fr);
 }
 #production::after {
  content: "";
  background-image: url("../images/staff/bg_4c.webp"), url("../images/staff/bg_4c.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
 }
 #music::after {
  content: "";
  background-image: url("../images/staff/bg_music.webp"), url("../images/staff/bg_music.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
 }
 #music .music-article {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100%;
 }
 #music .music-article-inner .article-box {
  display: flex;
  justify-content: space-between;
 }
 .article-box .music-more {
  width: 55%;
 }
 .article-box .article-box-inner {
  width: 35%;
 }
 .article-box .article-box-inner .music-ttl {
  position: sticky;
  top: 0;
  padding-top: 56px;
 }
}
@media screen and (min-width : 1025px) {
 #production .production-article-inner .ph {
  width: 320px;
  margin-left: 3rem;
 }
}
@media screen and (min-width : 1240px) {
 .staff-list {
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: repeat(4, 1fr);
 }
 .staff-list .ttl-name {
  width: 100%;
 }
 #music .music-article-inner .article-box {
  padding-left: 5%;
 }
 .article-box .article-box-inner {
  width: 40%;
 }
 .article-box .article-box-inner .music-ttl {
  margin-top: 2%;
 }
}
.readmore input[type="checkbox"], .music-more input[type="checkbox"] {
 display: none;
}
.music-more-content {
 color: #1d2088;
 font-size: 1.4rem;
 line-height: 2em;
}
.music-more-content .profile {
 font-size: 1.2rem;
 letter-spacing: normal;
 line-height: 1.6em;
 margin-top: 20px;
}
.music-more-content .profile .ttl {
 font-size: 1.4em;
 float: left;
 margin-right: 20px;
}
@media screen and (max-width : 812px) {
 #staff {
  padding-top: 50px;
  background-position: left 20% bottom;
  background-size: 130% auto;
 }
 #staff::after {
  aspect-ratio: 5 / 3;
 }
 .staff-list .ttl-name, #production .ttl-name {
  margin-bottom: 2rem;
 }
 .readmore {
  position: relative;
  padding-bottom: 30px;
 }
 .readmore label {
  position: absolute;
  display: table;
  left: 50%;
  bottom: 0;
  margin: 0 auto;
  width: 80px;
  text-align: center;
  line-height: 1em;
  border-radius: 20px;
  padding: 4px;
  color: #135087;
  background-color: #fef684;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 1;
 }
 .readmore label::before {
  content: 'MORE';
 }
 .readmore input[type="checkbox"]:checked ~ label::before {
  content: 'CLOSE';
 }
 .readmore-content {
  position: relative;
  height: 120px;
  overflow: hidden;
  transition: 1s;
 }
 .readmore-content.music-more-content {
  height: 400px;
 }
 .readmore-content::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(rgba(19, 80, 135, 0) 0%, rgba(19, 80, 135, 0.8) 50%, #135087 100%);
 }
 .readmore-content.music-more-content::before {
  height: 10px;
  background: none;
 }
 .readmore input[type="checkbox"]:checked ~ .readmore-content {
  height: auto;
 }
 .readmore input[type="checkbox"]:checked ~ .readmore-content::before {
  background: none;
 }
 #production {
  padding-bottom: 100px;
 }
 #production::before {
  background-size: 4% auto;
 }
 #production .section-ttl::before {
  padding-top: 180px;
 }
 #production {
  background-image: url("../images/staff/bg_4c.webp"), url("../images/staff/bg_4c.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 101%;
 }
 #production .production-article, #production .section-ttl {
  width: 90%;
 }
 #production .production-article {
  margin: 0 auto;
  padding: 50px 6%;
 }
 #music {
  background-image: url("../images/staff/bg_music.webp"), url("../images/staff/bg_music.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 101%;
 }
 #music .music-article-inner::before {
  aspect-ratio: 6 / 1.8;
 }
 .article-box .section-ph {
  margin: 10px 20px 0 0;
 }
 .article-box .ttl-kumi {
  width: 42%;
  margin-bottom: 10px;
  margin-top: 10px;
 }
 .article-box .ttl-kumi {
  width: 42%;
  margin-bottom: 10px;
  margin-top: 10px;
 }
 .music-ttl-inner {
  width: 80%;
 }
}
@media screen and (max-width : 1239px) {
 .staff-list-item {
  margin-bottom: 80px;
 }
}
/* ------------------------------
	バナー
------------------------------ */
.banner-area {
 padding-top: 30px;
 position: relative;
 background-color: #fef89f;
}
.ticket-mvtk {
 width: 90%;
 max-width: 1200px;
 list-style: none;
 margin: auto;
}
.ticket-mvtk div {
 margin: auto;
 margin-bottom: 30px;
}
.banner {
 width: 90%;
 max-width: 1200px;
 list-style: none;
 padding-bottom: 10px;
 margin: auto;
 display: flex;
 flex-wrap: wrap;
 gap: 20px;
}
.banner li {
 max-width: 260px;
 width: 23%;
 margin-bottom: 20px;
}
@media screen and (max-width : 812px) {
 .banner {
  gap: 4%;
 }
 .banner li {
  width: 48%;
  margin-bottom: 4%;
 }
}
/* ------------------------------
	メニューカスタマイズ
------------------------------ */
@media screen and (min-width: 1025px) {
 #top-head:not(.fixed) .nav-wrap {
  display: none;
 }
 .top-billing-inner .nav-wrap-inner {
  justify-content: flex-start;
  padding-left: 40px;
  margin-top: 2vh;
 }
 .top-billing-inner .nav-wrap-inner .nav {
  margin-bottom: 2vh;
  font-size: clamp(1.6rem, 1.5vw, 3rem);
 }
 .top-billing-inner .nav-wrap-inner .nav .wave-text {
  padding: 6px 0;
 }
 .top-billing-inner .nav .menu-item {
  justify-content: flex-start;
 }
 .top-billing-inner .nav .menu-item:first-of-type {
  display: none;
 }
 .top-billing-inner .nav .link {
  color: #eb6d80;
 }
}
@media screen and (max-width: 1024px) {
 .top-billing-inner .nav-wrap-inner {
  display: none;
 }
}
/* ------------------------------
	メインビジュアル切り替え
------------------------------ */
.change-item {
 position: relative;
 display: none;
 opacity: 0;
 z-index: 0;
}
.change-item.active {
 display: flex;
 justify-content: flex-end;
 opacity: 1;
 z-index: 1;
}
/* @keyframes の定義を修正 */
@keyframes fadeInFromBlur {
 0% {
  filter: brightness(3) blur(10px); /* 開始はぼやけて明るい */
  opacity: 0; /* ★追加: 最初は透明 */
 }
 100% {
  filter: brightness(1) blur(0px); /* 終了はクリア */
  opacity: 1; /* ★追加: 最終的に不透明 */
 }
}
.image-box img {
 max-width: 100%;
 height: auto;
 display: block;
 /* デフォルトではぼやけた状態にしておく (activeクラスがついていない場合) */
 filter: brightness(3) blur(10px);
 /* ★追加: activeクラスが付いていないときは透明にしておく */
 opacity: 0; /* これが無いと、activeクラスが付く前にぼやけた画像が見えてしまう */
}
/* active クラスが付与された時にアニメーションを適用 */
.image-box.active img {
 animation-name: fadeInFromBlur;
 animation-duration: 1.8s; /* 2秒かけてアニメーション */
 animation-timing-function: ease-out;
 animation-fill-mode: forwards; /* アニメーション終了時の状態を維持 */
 /* アニメーションが終了した後の最終状態 */
 filter: brightness(1) blur(0px);
 opacity: 1; /* ★追加: アニメーション終了時の最終的なopacityを明示 */
}
/* @keyframes の定義 */
@keyframes delayedFadeOut {
 0% {
  opacity: 1; /* 開始時点は完全に表示 */
 }
 95% {
  opacity: 1; /* アニメーション時間の90%まで完全に表示を維持 */
 }
 100% {
  opacity: 0; /* 残り10%の間に完全に透明になる */
 }
}
/* 要素への適用 */
.fade-out-box {
 /* アニメーションを適用 */
 animation-name: delayedFadeOut;
 animation-duration: 8s; /* 合計アニメーション時間は10秒 */
 animation-timing-function: linear; /* フェードアウトの速度は一定（必要に応じてease-outなどに変更可）*/
 animation-fill-mode: forwards; /* アニメーション終了時の状態（opacity: 0）を維持 */
 /* animation-delay: 1s; */ /* ページ読み込み後、さらに遅延させたい場合は追加 */
}
/* MUSIC動画 */
.mv-movieBtn-box {
 width: 100%;
 aspect-ratio: 16 / 8;
 overflow: hidden;
 margin: 3rem auto 5rem;
 -webkit-transform: skew(0deg, -5deg);
 -moz-transform: skew(0deg, -5deg);
 transform: skew(0deg, -5deg);
 display: flex;
 justify-content: center;
 align-items: center;
}
.mv-movieBtn {
 aspect-ratio: 16 / 9;
 z-index: 1;
 position: relative;
 -webkit-transform: skew(0deg, 5deg);
 -moz-transform: skew(0deg, 5deg);
 transform: skew(0deg, 5deg);
 width: 140%;
 margin: -20%;
}
.mv-movieBtn a, .mv-movieBtn video, .mv-movieBtn .view #player, .mv-movieBtn .view, .mv-movieBtn .adbox {
 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:hover {
 opacity: .9;
 background-color: rgba(0, 0, 0, 0.7);
}
.mv-movieBtn a::after {
 content: "";
 position: absolute;
 width: 100%;
 height: 100%;
 top: 0;
 left: 0;
 background: url("../trailer/play-button.png") center center / 26% no-repeat rgba(0, 0, 0, .4);
 opacity: 0.7;
}
/* ------------------------------
	レスポンシブ
------------------------------ */
.sp {
 display: none;
}
@media screen and (max-width : 812px) {
 .sp {
  display: block;
 }
 .pc {
  visibility: hidden;
  display: none;
 }
}
@media (prefers-color-scheme: dark) {
 body, #loading-screen, #container {
  background-color: #fff;
  color: #333;
 }
}