@keyframes spotlightMovePC {
  0% {
    translate: -10.88% -10.451%;
    opacity: 1;
  }
  3% {
    translate: -10.785% -8.195%;
  }
  6% {
    translate: -10.476% -5.478%;
  }
  9% {
    translate: -9.928% -2.44%;
  }
  12% {
    translate: -9.142% 0.645%;
  }
  15% {
    translate: -8.047% 3.638%;
  }
  18% {
    translate: -6.666% 6.354%;
  }
  21% {
    translate: -4.952% 8.61%;
  }
  24% {
    translate: -2.857% 10.175%;
  }
  27% {
    translate: -0.404% 10.866%;
  }
  30% {
    translate: 2.024% 10.636%;
  }
  33% {
    translate: 4.191% 9.761%;
  }
  36% {
    translate: 6.048% 8.288%;
  }
  39% {
    translate: 7.572% 6.308%;
  }
  42% {
    translate: 8.739% 3.914%;
  }
  45% {
    translate: 9.5% 1.152%;
  }
  48% {
    translate: 9.81% -1.933%;
  }
  51% {
    translate: 9.62% -5.202%;
  }
  54% {
    translate: 8.881% -8.655%;
  }
  57% {
    translate: 7.548% -11.141%;
  }
  60% {
    translate: 5.929% -12.476%;
  }
  63% {
    translate: 4.143% -12.753%;
  }
  66% {
    translate: 2.429% -11.97%;
  }
  69% {
    translate: 0.953% -10.22%;
  }
  72% {
    translate: -0.071% -7.504%;
  }
  75% {
    translate: -0.452% -3.913%;
  }
  78% {
    translate: 0% 0%;
  }
  85% {
    scale: 1;
    opacity: 1;
  }
  90% {
    scale: 1.5;
  }
  100% {
    translate: 0% 0%;
    scale: 5;
    opacity: 0;
  }
}
@keyframes spotlightMoveSP {
  0% {
    translate: -11.2% -7.953%;
    opacity: 1;
  }
  3% {
    translate: -12.977% -5.886%;
  }
  6% {
    translate: -14% -3.532%;
  }
  9% {
    translate: -14.222% -1.046%;
  }
  12% {
    translate: -13.688% 1.44%;
  }
  15% {
    translate: -12.4% 3.82%;
  }
  18% {
    translate: -10.355% 5.887%;
  }
  21% {
    translate: -7.555% 7.536%;
  }
  24% {
    translate: -4% 8.609%;
  }
  27% {
    translate: 0.267% 8.949%;
  }
  30% {
    translate: 4.534% 8.53%;
  }
  33% {
    translate: 8% 7.405%;
  }
  36% {
    translate: 10.712% 5.73%;
  }
  39% {
    translate: 12.667% 3.664%;
  }
  42% {
    translate: 13.867% 1.309%;
  }
  45% {
    translate: 14.312% -1.203%;
  }
  48% {
    translate: 14% -3.689%;
  }
  51% {
    translate: 12.934% -6.043%;
  }
  54% {
    translate: 11.067% -8.189%;
  }
  57% {
    translate: 7.689% -10.23%;
  }
  60% {
    translate: 4.045% -11.093%;
  }
  63% {
    translate: 0.489% -10.962%;
  }
  66% {
    translate: -2.444% -10.02%;
  }
  69% {
    translate: -4.4% -8.424%;
  }
  72% {
    translate: -4.933% -6.331%;
  }
  75% {
    translate: -3.6% -3.898%;
  }
  78% {
    translate: 0% 0%;
  }
  85% {
    scale: 1;
    opacity: 1;
  }
  90% {
    scale: 1.5;
  }
  100% {
    translate: 0% 0%;
    scale: 5;
    opacity: 0;
  }
}
html {
  font-size: min(0.715vw, 10px);
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  color: #4c4c4c;
}
@media (max-width: 768px) {
  html {
    font-size: min(1.334vw, 8px);
  }
}

body, h1, h2, h3, h4, p, figure, ul, ol, li, dl, dt, dd {
  margin: 0;
  padding: 0;
}

ol, ul, li {
  list-style: none;
}

img, svg {
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s linear;
}

*, *::before, *::after {
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}

.js-animation.boundIn {
  scale: 0;
  transition: scale 0.4s cubic-bezier(1, 0.05, 0.34, 1.49);
}
.js-animation.boundIn.is-animated {
  scale: 1;
}
.js-animation.slideUpIn {
  opacity: 0;
  translate: 0 30px;
  transition: opacity 0.4s linear, translate 0.4s ease-out;
}
.js-animation.slideUpIn.is-animated {
  opacity: 1;
  translate: 0 0;
}

.header_outer {
  position: fixed;
  background: #fff;
  left: 0;
  right: 0;
  top: 0;
  z-index: 500;
}
.header_inner {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .header_inner {
    justify-content: flex-end;
    height: 6rem;
    max-width: 1400px;
    padding: 0 1.7rem;
  }
}
@media (max-width: 768px) {
  .header_inner {
    justify-content: space-between;
    height: 13rem;
    padding: 0 3.1rem 0 3.6rem;
  }
}
@media (min-width: 769px) {
  .header_logo {
    width: 14.6rem;
    margin-left: 1.4rem;
  }
}
@media (max-width: 768px) {
  .header_logo {
    order: -1;
    width: 23.3rem;
  }
}
.header_logo:hover {
  opacity: 0.5;
}

.nav_switch {
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 7.8rem;
  cursor: pointer;
}
@media (min-width: 769px) {
  .nav_switch {
    display: none;
  }
}
.nav_switch::before, .nav_switch::after, .nav_switch span {
  background: #d80b24;
  width: 46.154%;
  height: 5.129%;
}
.nav_switch::before, .nav_switch::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.nav_switch::before {
  top: 28.206%;
}
.nav_switch::after {
  bottom: 28.206%;
}
.nav_switch.is-opened span {
  display: none;
}
.nav_switch.is-opened::before, .nav_switch.is-opened::after {
  width: 58.975%;
  inset: 0;
  margin: auto;
}
.nav_switch.is-opened::before {
  rotate: 45deg;
}
.nav_switch.is-opened::after {
  rotate: -45deg;
}
@media (max-width: 768px) {
  .nav_outer {
    position: fixed;
    background: #d80b24;
    height: 0;
    left: 0;
    right: 0;
    top: 13rem;
    color: #fff;
    overflow: hidden;
    transition: height 0.2s ease-out;
  }
  .nav_outer.is-opened {
    height: calc(100dvh - 13rem);
  }
}
@media (max-width: 768px) {
  .nav_inner {
    display: flex;
    align-items: center;
    height: calc(100dvh - 13rem);
    padding: 9rem;
  }
}
.nav_list {
  display: flex;
}
@media (min-width: 769px) {
  .nav_list {
    column-gap: 1.4rem;
  }
}
@media (max-width: 768px) {
  .nav_list {
    flex-direction: column;
    row-gap: 11rem;
    width: 100%;
  }
}
.nav_link {
  display: block;
  position: relative;
}
@media (min-width: 769px) {
  .nav_link {
    line-height: 1.715;
    font-size: 1.4rem;
    font-weight: 700;
  }
  .nav_link.is-current::after {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .nav_link {
    padding: 0.6rem 0 1.4rem;
    line-height: 1;
    font-size: 5.4rem;
    font-weight: 800;
  }
}
.nav_link::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: 0.2s linear;
}
@media (min-width: 769px) {
  .nav_link::after {
    background: #d80b24;
    width: 3.2rem;
    height: 2px;
    left: 0;
    right: 0;
    bottom: -1rem;
    margin: 0 auto;
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .nav_link::after {
    background-image: url(../img/arrow2_w.svg);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 3.6rem;
    height: 5.4rem;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
}
@media (min-width: 769px) {
  .nav_link:hover {
    color: #d80b24;
  }
  .nav_link:hover::after {
    opacity: 1;
  }
}

@media (min-width: 769px) {
  .main_outer {
    padding-top: 6rem;
  }
}
@media (max-width: 768px) {
  .main_outer {
    padding-top: 13rem;
  }
}

.kv_section {
  position: sticky;
  background: #d80b24;
  left: 0;
  right: 0;
}
@media (min-width: 769px) {
  .kv_section {
    aspect-ratio: 1400/724;
    top: 6rem;
  }
}
@media (max-width: 768px) {
  .kv_section {
    aspect-ratio: 750/1274;
    top: 13rem;
  }
}
.kv_title {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  scale: 0;
  transition: scale 0.4s cubic-bezier(1, 0.05, 0.34, 1.49) 2.6s;
}
@media (min-width: 769px) {
  .kv_title {
    width: 50.858%;
    bottom: 71.133%;
    padding-right: 6.5rem;
  }
}
@media (max-width: 768px) {
  .kv_title {
    width: 81.6%;
    bottom: 76.139%;
  }
}
.kv_section.is-started .kv_title {
  scale: 1;
}
.kv_bg {
  position: relative;
}
.kv_image {
  position: absolute;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.3s linear 2.2s;
}
@media (min-width: 769px) {
  .kv_image {
    width: 39.929%;
    left: 0;
    right: 1.358%;
    top: 32.459%;
  }
}
@media (max-width: 768px) {
  .kv_image {
    width: 83.6%;
    left: 0.134%;
    right: 0;
    top: 39.011%;
  }
}
.kv_section.is-started .kv_image {
  opacity: 1;
}
.kv_mask {
  position: absolute;
  inset: 0;
  contain: paint;
  pointer-events: none;
}
.kv_mask::after {
  content: "";
  position: absolute;
  background: radial-gradient(circle 53rem at 50% 50%, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
  width: 300%;
  height: 300%;
  left: -100%;
  top: -100%;
}
@media (min-width: 769px) {
  .kv_mask::after {
    translate: -10.88% -10.451%;
  }
}
@media (max-width: 768px) {
  .kv_mask::after {
    translate: -11.2% -7.953%;
  }
}
.kv_section.is-started .kv_mask::after {
  background: radial-gradient(circle 53rem at 50% 50%, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.8) 55%, rgba(0, 0, 0, 0.8) 100%);
}
@media (min-width: 769px) {
  .kv_section.is-started .kv_mask::after {
    animation: spotlightMovePC 1.8s linear 0.2s 1 forwards;
  }
}
@media (max-width: 768px) {
  .kv_section.is-started .kv_mask::after {
    animation: spotlightMoveSP 1.8s linear 0.2s 1 forwards;
  }
}

.about_section {
  position: sticky;
}
@media (min-width: 769px) {
  .about_section {
    top: -9.6rem;
    margin: -8.6rem 0 -9.6rem;
    padding: 8.5rem 0;
  }
}
@media screen and (min-width: 769px) and (max-height: 62.5vw) and (max-width: 1000px) {
  .about_section {
    top: calc(46.6rem - 100dvh);
  }
}
@media (max-width: 768px) {
  .about_section {
    top: -3.8rem;
    margin: -4.8rem 0;
    padding: 4.7rem 0;
  }
}
.about_section::before, .about_section::after {
  content: "";
  position: absolute;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  right: 0;
  pointer-events: none;
}
@media (min-width: 769px) {
  .about_section::before, .about_section::after {
    background-image: url(../img/bg_y_edge_pc.webp);
    height: 8.6rem;
  }
}
@media (max-width: 768px) {
  .about_section::before, .about_section::after {
    background-image: url(../img/bg_y_edge_sp.webp);
    height: 4.8rem;
  }
}
.about_section::before {
  top: 0;
}
.about_section::after {
  bottom: 0;
  scale: 1 -1;
}
.about_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media (min-width: 769px) {
  .about_inner {
    row-gap: 9rem;
    padding: 9.5rem 0 10.5rem;
  }
}
@media (max-width: 768px) {
  .about_inner {
    row-gap: 7rem;
    margin-top: -1rem;
    padding: 15rem 0 8rem;
  }
}
.about_inner::before {
  content: "";
  position: absolute;
  background-color: #edecda;
  background-position: center top;
  background-repeat: repeat-y;
  background-size: 100% auto;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
@media (min-width: 769px) {
  .about_inner::before {
    background-image: url(../img/bg_y_pc.webp);
    top: 0;
  }
}
@media (max-width: 768px) {
  .about_inner::before {
    background-image: url(../img/bg_y_sp.webp);
    top: 1rem;
  }
}
.about_inner.is-animated .about_lead {
  opacity: 1;
  translate: 0 0;
}
.about_inner.is-animated .about_copy {
  scale: 1;
}
.about_lead {
  position: relative;
  opacity: 0;
  translate: 0 30px;
  transition: opacity 0.4s linear, translate 0.4s ease-out;
}
@media (min-width: 769px) {
  .about_lead {
    width: 90rem;
  }
}
@media (max-width: 768px) {
  .about_lead {
    width: 57.2rem;
  }
}
.about_copy {
  position: relative;
  scale: 0;
  transition: scale 0.4s cubic-bezier(1, 0.05, 0.34, 1.49);
}
@media (min-width: 769px) {
  .about_copy {
    width: 40.6rem;
  }
}
@media (max-width: 768px) {
  .about_copy {
    width: 58.8rem;
  }
}

.gallery_outer {
  position: relative;
  background: #d80b24;
  color: #fff;
  contain: paint;
}
@media (min-width: 769px) {
  .gallery_outer {
    clip-path: url(#clipshapePC);
    padding: 2.5rem 0 0;
  }
}
@media (max-width: 768px) {
  .gallery_outer {
    clip-path: url(#clipshapeSP);
    padding: 0rem 0 0;
  }
}
.gallery_bg {
  position: absolute;
  background-position: center top;
  background-repeat: repeat;
  background-size: 100% auto;
  height: 1000%;
  inset: -200% 0 auto;
  pointer-events: none;
}
@media (min-width: 769px) {
  .gallery_bg {
    background-image: url(../img/bg_grid_pc.png);
  }
}
@media (max-width: 768px) {
  .gallery_bg {
    background-image: url(../img/bg_grid_sp.png);
  }
}
.gallery_aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media (min-width: 769px) {
  .gallery_aside {
    margin-top: 6.5rem;
  }
}
@media (max-width: 768px) {
  .gallery_aside {
    margin-top: 12rem;
  }
}
.gallery_aside p {
  scale: 0;
  transition: scale 0.4s cubic-bezier(1, 0.05, 0.34, 1.49) 0.3s;
}
@media (min-width: 769px) {
  .gallery_aside p {
    width: 54.6rem;
  }
}
@media (max-width: 768px) {
  .gallery_aside p {
    width: 50.9rem;
  }
}
.gallery_aside figure {
  opacity: 0;
  translate: 0 50%;
  transition: opacity 0.2s ease-in, translate 0.3s ease;
}
@media (min-width: 769px) {
  .gallery_aside figure {
    width: 28.6rem;
    margin-top: -3.7rem;
  }
}
@media (max-width: 768px) {
  .gallery_aside figure {
    width: 44rem;
    margin-top: -3rem;
  }
}
.gallery_aside.is-animated p {
  scale: 1;
}
.gallery_aside.is-animated figure {
  opacity: 1;
  translate: 0 0;
}
.gallery_img {
  position: absolute;
  margin: 0 auto;
  z-index: 2;
  pointer-events: none;
}
@media (min-width: 769px) {
  .gallery_img {
    max-width: 1400px;
    inset: 5% 0 -5%;
  }
}
@media (max-width: 768px) {
  .gallery_img {
    display: none;
    inset: 0;
    transform: none !important;
  }
}
.gallery_img > div {
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 769px) {
  .gallery_img > div.img1 {
    background-image: url(../img/gallery_img1_pc.png);
    width: 13.6rem;
    height: 12.7rem;
    right: 83.572%;
    top: 22.699%;
  }
}
@media (max-width: 768px) {
  .gallery_img > div.img1 {
    background-image: url(../img/gallery_img1_sp.png);
    width: 14rem;
    height: 17.2rem;
    right: 79.6%;
    top: 17.482%;
  }
}
@media (min-width: 769px) {
  .gallery_img > div.img2 {
    background-image: url(../img/gallery_img2_pc.png);
    width: 14.7rem;
    height: 14rem;
    left: 84.572%;
    top: 32.849%;
  }
}
@media (max-width: 768px) {
  .gallery_img > div.img2 {
    background-image: url(../img/gallery_img2_sp.png);
    width: 14.3rem;
    height: 16.5rem;
    right: 78.4%;
    top: 33.043%;
  }
}
@media (min-width: 769px) {
  .gallery_img > div.img3 {
    background-image: url(../img/gallery_img3_pc.png);
    width: 12.4rem;
    height: 13.7rem;
    right: 84.786%;
    top: 36.386%;
  }
}
@media (max-width: 768px) {
  .gallery_img > div.img3 {
    background-image: url(../img/gallery_img3_sp.png);
    width: 16.6rem;
    height: 15.4rem;
    right: 74.8%;
    top: 46.746%;
  }
}
@media (min-width: 769px) {
  .gallery_img > div.img4 {
    background-image: url(../img/gallery_img4_pc.png);
    width: 14rem;
    height: 12.8rem;
    left: 84.715%;
    top: 46.997%;
  }
}
@media (max-width: 768px) {
  .gallery_img > div.img4 {
    background-image: url(../img/gallery_img4_sp.png);
    width: 17.8rem;
    height: 15rem;
    left: 72.134%;
    top: 68.487%;
  }
}
@media (min-width: 769px) {
  .gallery_img > div.img5 {
    background-image: url(../img/gallery_img5_pc.png);
    width: 13.8rem;
    height: 12.8rem;
    right: 83.286%;
    top: 54.555%;
  }
}
@media (max-width: 768px) {
  .gallery_img > div.img5 {
    background-image: url(../img/gallery_img5_sp.png);
    width: 17rem;
    height: 17rem;
    left: 73.734%;
    top: 82.803%;
  }
}
@media (min-width: 769px) {
  .gallery_img > div.img6 {
    background-image: url(../img/gallery_img6_pc.png);
    width: 12.7rem;
    height: 14rem;
    left: 84.072%;
    top: 68.29%;
  }
}
@media (max-width: 768px) {
  .gallery_img > div.img6 {
    display: none;
  }
}
@media (min-width: 769px) {
  .gallery_img > div.img7 {
    background-image: url(../img/gallery_img7_pc.png);
    width: 14.2rem;
    height: 14rem;
    right: 82.858%;
    top: 79.652%;
  }
}
@media (max-width: 768px) {
  .gallery_img > div.img7 {
    display: none;
  }
}
@media (min-width: 769px) {
  .gallery_img > div.img8 {
    background-image: url(../img/gallery_img8_pc.png);
    width: 15.4rem;
    height: 12.5rem;
    left: 84.858%;
    top: 84.642%;
  }
}
@media (max-width: 768px) {
  .gallery_img > div.img8 {
    display: none;
  }
}

.chara_section {
  position: relative;
}
@media (min-width: 769px) {
  .chara_inner {
    padding: 8rem 0 0.5rem;
  }
}
@media (max-width: 768px) {
  .chara_inner {
    padding: 15rem 0 0;
  }
}
.chara_title {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
@media (min-width: 769px) {
  .chara_title {
    column-gap: 1.2rem;
  }
}
@media (max-width: 768px) {
  .chara_title {
    column-gap: 2rem;
  }
}
.chara_title::before, .chara_title::after {
  content: "";
  display: block;
  aspect-ratio: 19/49;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  scale: 0;
  transform-origin: center 80%;
  transition: scale 0.4s cubic-bezier(1, 0.05, 0.34, 1.49) 0.2s;
}
@media (min-width: 769px) {
  .chara_title::before, .chara_title::after {
    width: 1.9rem;
  }
}
@media (max-width: 768px) {
  .chara_title::before, .chara_title::after {
    width: 2.2rem;
    translate: 0 5%;
  }
}
.chara_title::before {
  background-image: url(../img/exclamation_or.svg);
}
.chara_title::after {
  background-image: url(../img/exclamation_y.svg);
}
.chara_title h2 {
  line-height: 1;
  font-weight: 900;
  opacity: 0;
  transition: opacity 0.2s linear;
}
@media (min-width: 769px) {
  .chara_title h2 {
    font-size: 4.7rem;
  }
}
@media (max-width: 768px) {
  .chara_title h2 {
    font-size: 5.6rem;
  }
}
.chara_title.is-animated::before, .chara_title.is-animated::after {
  scale: 1;
}
.chara_title.is-animated h2 {
  opacity: 1;
}
.chara_list {
  display: flex;
}
@media (min-width: 769px) {
  .chara_list {
    justify-content: center;
    column-gap: 5.3rem;
    margin-top: 5.5rem;
  }
}
@media (max-width: 768px) {
  .chara_list {
    flex-direction: column;
    align-items: center;
    row-gap: 5.3rem;
    margin-top: 8rem;
  }
}
@media (min-width: 769px) {
  .chara_card {
    width: 23.3rem;
  }
}
@media (max-width: 768px) {
  .chara_card {
    display: grid;
    grid-template-columns: 22rem max-content 1fr;
    align-items: center;
    gap: 2rem 1rem;
    width: 67rem;
  }
}
.chara_card_image {
  overflow: hidden;
}
@media (min-width: 769px) {
  .chara_card_image {
    border-radius: 1.7rem;
  }
}
@media (max-width: 768px) {
  .chara_card_image {
    grid-column: 1/2;
    grid-row: 1/3;
    border-radius: 1.6rem;
    margin-right: 1rem;
  }
}
.chara_card_position {
  line-height: 1;
  font-weight: 700;
}
@media (min-width: 769px) {
  .chara_card_position {
    margin-top: 2rem;
    font-size: 1.8rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .chara_card_position {
    grid-column: 2/3;
    grid-row: 1/2;
    font-size: 2.4rem;
  }
}
.chara_card_name {
  line-height: 1;
  font-weight: 900;
}
@media (min-width: 769px) {
  .chara_card_name {
    margin-top: 1rem;
    font-size: 3rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .chara_card_name {
    grid-column: 3/4;
    grid-row: 1/2;
    font-size: 4.4rem;
  }
}
.chara_card_text {
  font-weight: 700;
  text-align: justify;
}
@media (min-width: 769px) {
  .chara_card_text {
    margin-top: 1rem;
    line-height: 1.75;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .chara_card_text {
    grid-column: 2/4;
    line-height: 1.715;
    font-size: 2.8rem;
  }
}

.cm_section {
  position: relative;
}
@media (min-width: 769px) {
  .cm_inner {
    padding: 8rem 0 0;
  }
}
@media (max-width: 768px) {
  .cm_inner {
    margin-top: -2rem;
    padding: 15rem 0 0;
  }
}
.cm_title {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
@media (min-width: 769px) {
  .cm_title {
    column-gap: 1.2rem;
  }
}
@media (max-width: 768px) {
  .cm_title {
    column-gap: 2rem;
  }
}
.cm_title::before, .cm_title::after {
  content: "";
  display: block;
  aspect-ratio: 19/49;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  scale: 0;
  transform-origin: center 80%;
  transition: scale 0.4s cubic-bezier(1, 0.05, 0.34, 1.49) 0.2s;
}
@media (min-width: 769px) {
  .cm_title::before, .cm_title::after {
    width: 1.9rem;
  }
}
@media (max-width: 768px) {
  .cm_title::before, .cm_title::after {
    width: 2.2rem;
    translate: 0 5%;
  }
}
.cm_title::before {
  background-image: url(../img/exclamation_y.svg);
}
.cm_title::after {
  background-image: url(../img/exclamation_or.svg);
}
.cm_title h2 {
  line-height: 1;
  font-weight: 900;
  opacity: 0;
  transition: opacity 0.2s linear;
}
@media (min-width: 769px) {
  .cm_title h2 {
    font-size: 4.7rem;
  }
}
@media (max-width: 768px) {
  .cm_title h2 {
    font-size: 5.6rem;
  }
}
.cm_title.is-animated::before, .cm_title.is-animated::after {
  scale: 1;
}
.cm_title.is-animated h2 {
  opacity: 1;
}
.cm_list {
  display: grid;
  justify-content: center;
}
@media (min-width: 769px) {
  .cm_list {
    grid-template-columns: repeat(2, 43rem);
    gap: 11.5rem 5rem;
    margin-top: 8rem;
  }
}
@media (max-width: 768px) {
  .cm_list {
    grid-template-columns: 56rem;
    row-gap: 16rem;
    margin-top: 16rem;
  }
  .cm_list > li::before {
    content: "";
    position: absolute;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 5;
  }
  .cm_list > li:nth-of-type(1)::before {
    background-image: url(../img/gallery_img1_sp.png);
    width: 14rem;
    height: 17.2rem;
    left: -8.2rem;
    bottom: -10.5rem;
  }
  .cm_list > li:nth-of-type(4)::before {
    background-image: url(../img/gallery_img2_sp.png);
    width: 14.3rem;
    height: 16.5rem;
    left: -7.6rem;
    top: -10.1rem;
  }
  .cm_list > li:nth-of-type(6)::before {
    background-image: url(../img/gallery_img3_sp.png);
    width: 16.6rem;
    height: 15.4rem;
    left: -7.2rem;
    top: -9.8rem;
  }
  .cm_list > li:nth-of-type(9)::before {
    background-image: url(../img/gallery_img4_sp.png);
    width: 17.8rem;
    height: 15rem;
    right: -6.4rem;
    top: -7.4rem;
  }
  .cm_list > li:nth-of-type(11)::before {
    background-image: url(../img/gallery_img5_sp.png);
    width: 17rem;
    height: 17rem;
    right: -6.8rem;
    top: -8.4rem;
  }
}
.cm_list > li {
  position: relative;
}
.cm_card {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .cm_card {
    row-gap: 1.6rem;
  }
}
@media (max-width: 768px) {
  .cm_card {
    row-gap: 2.4rem;
  }
}
.cm_card_image {
  position: relative;
}
.cm_card_image:has(img) {
  cursor: pointer;
}
.cm_card_image figure {
  aspect-ratio: 430/243;
  position: relative;
  overflow: hidden;
  pointer-events: none;
}
@media (min-width: 769px) {
  .cm_card_image figure {
    border-radius: 1.6rem;
  }
}
@media (max-width: 768px) {
  .cm_card_image figure {
    border-radius: 2rem;
  }
}
.cm_card_image figure img {
  transition: 0.4s ease;
}
.cm_card_image figure:empty {
  background: #cacaca;
}
.cm_card_image p {
  display: flex;
  align-items: center;
  position: absolute;
  background: #fff;
  max-width: 100%;
  font-weight: 900;
  color: #d80b24;
  white-space: nowrap;
  pointer-events: none;
}
@media (min-width: 769px) {
  .cm_card_image p {
    border-radius: 0.8rem;
    min-height: 4.9rem;
    bottom: 22.3rem;
    padding: 0.8rem 1.1rem;
    line-height: 1.223;
    font-size: 2.7rem;
  }
  li:nth-of-type(4n+1) .cm_card_image p, li:nth-of-type(4n+2) .cm_card_image p {
    left: -3rem;
  }
  li:nth-of-type(4n+3) .cm_card_image p, li:nth-of-type(4n) .cm_card_image p {
    right: -3rem;
  }
}
@media (max-width: 768px) {
  .cm_card_image p {
    border-radius: 1rem;
    min-height: 7.8rem;
    bottom: 29.2rem;
    padding: 1.2rem 2rem;
    letter-spacing: -0.02em;
    line-height: 1.228;
    font-size: 4.4rem;
  }
  li:nth-of-type(2n+1) .cm_card_image p {
    left: -5.4rem;
  }
  li:nth-of-type(2n) .cm_card_image p {
    right: -5.4rem;
  }
  .cm_card_image p > span {
    font-size: 0.86em;
    scale: 1 1.1;
  }
}
.cm_card_image[data-ytid]::after {
  content: "";
  aspect-ratio: 67/44;
  position: absolute;
  background-image: url(../img/play.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  inset: 0;
  margin: auto;
  pointer-events: none;
}
@media (min-width: 769px) {
  .cm_card_image[data-ytid]::after {
    width: 6.7rem;
  }
}
@media (max-width: 768px) {
  .cm_card_image[data-ytid]::after {
    width: 12.4rem;
  }
}
.cm_card_image[data-ytid]:hover img {
  scale: 1.1;
}
.cm_card_text {
  font-weight: 700;
  text-align: justify;
}
@media (min-width: 769px) {
  .cm_card_text {
    line-height: 1.563;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .cm_card_text {
    line-height: 1.715;
    font-size: 2.8rem;
  }
}
.cm_card_link {
  display: flex;
  justify-content: center;
  align-items: center;
  stroke: #fff;
  width: 100%;
  letter-spacing: 0.02em;
  font-weight: 700;
}
@media (min-width: 769px) {
  .cm_card_link {
    column-gap: 1rem;
    stroke-width: 0.15rem;
    border: 0.17rem solid #fff;
    border-radius: 0.7rem;
    height: 4.3rem;
    line-height: 1.211;
    font-size: 1.9rem;
  }
}
@media (max-width: 768px) {
  .cm_card_link {
    column-gap: 1.8rem;
    stroke-width: 0.35rem;
    border: 0.4rem solid #fff;
    border-radius: 1rem;
    height: 9.5rem;
    line-height: 1.217;
    font-size: 3.7rem;
  }
}
.cm_card_link svg {
  width: 1.264em;
  height: 0.843em;
}
.cm_card_link:hover {
  background: #fff;
  stroke: #d80b24;
  color: #d80b24;
}

.cast_section {
  position: relative;
  z-index: 5;
}
@media (min-width: 769px) {
  .cast_section {
    margin: -8.6rem 0 0;
    padding: 8.5rem 0 0;
  }
}
@media (max-width: 768px) {
  .cast_section {
    margin: -4.8rem 0 0;
    padding: 4.7rem 0 0;
  }
}
.cast_section::before {
  content: "";
  position: absolute;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  right: 0;
  pointer-events: none;
}
@media (min-width: 769px) {
  .cast_section::before {
    background-image: url(../img/bg_y_edge_pc.webp);
    height: 8.6rem;
  }
}
@media (max-width: 768px) {
  .cast_section::before {
    background-image: url(../img/bg_y_edge_sp.webp);
    height: 4.8rem;
  }
}
.cast_section::before {
  top: 0;
}
.cast_inner {
  position: relative;
}
@media (min-width: 769px) {
  .cast_inner {
    padding: 11rem 0 8rem;
  }
}
@media (max-width: 768px) {
  .cast_inner {
    margin-top: -4rem;
    padding: 15rem 0 8rem;
  }
}
.cast_inner::before {
  content: "";
  position: absolute;
  background-color: #edecda;
  background-position: center top;
  background-repeat: repeat-y;
  background-size: 100% auto;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
@media (min-width: 769px) {
  .cast_inner::before {
    background-image: url(../img/bg_y_pc.webp);
    top: 0;
  }
}
@media (max-width: 768px) {
  .cast_inner::before {
    background-image: url(../img/bg_y_sp.webp);
    top: 4rem;
  }
}
.cast_title {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
@media (min-width: 769px) {
  .cast_title {
    column-gap: 1.2rem;
  }
}
@media (max-width: 768px) {
  .cast_title {
    column-gap: 2rem;
  }
}
.cast_title::before, .cast_title::after {
  content: "";
  display: block;
  aspect-ratio: 19/49;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  scale: 0;
  transform-origin: center 80%;
  transition: scale 0.4s cubic-bezier(1, 0.05, 0.34, 1.49) 0.2s;
}
@media (min-width: 769px) {
  .cast_title::before, .cast_title::after {
    width: 1.9rem;
  }
}
@media (max-width: 768px) {
  .cast_title::before, .cast_title::after {
    width: 2.2rem;
    translate: 0 5%;
  }
}
.cast_title::before {
  background-image: url(../img/exclamation_or.svg);
}
.cast_title::after {
  background-image: url(../img/exclamation_y.svg);
}
.cast_title h2 {
  line-height: 1;
  font-weight: 900;
  color: #d80b24;
  opacity: 0;
  transition: opacity 0.2s linear;
}
@media (min-width: 769px) {
  .cast_title h2 {
    font-size: 4.7rem;
  }
}
@media (max-width: 768px) {
  .cast_title h2 {
    font-size: 5.6rem;
  }
}
.cast_title.is-animated::before, .cast_title.is-animated::after {
  scale: 1;
}
.cast_title.is-animated h2 {
  opacity: 1;
}
.cast_list {
  display: flex;
  position: relative;
}
@media (min-width: 769px) {
  .cast_list {
    justify-content: center;
    column-gap: 4rem;
    padding-top: 6rem;
  }
}
@media (max-width: 768px) {
  .cast_list {
    flex-direction: column;
    align-items: center;
    row-gap: 10.5rem;
    padding-top: 8.5rem;
  }
}
.cast_card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 769px) {
  .cast_card {
    width: 30rem;
  }
}
@media (max-width: 768px) {
  .cast_card {
    width: 60.6rem;
  }
}
.cast_card_image {
  overflow: hidden;
}
@media (min-width: 769px) {
  .cast_card_image {
    border-radius: 2.2rem;
    width: 23rem;
  }
}
@media (max-width: 768px) {
  .cast_card_image {
    border-radius: 3.4rem;
    width: 35rem;
  }
}
.cast_card_position {
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 769px) {
  .cast_card_position {
    padding-top: 2rem;
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .cast_card_position {
    padding-top: 5rem;
    font-size: 2.7rem;
  }
}
.cast_card_name {
  line-height: 1;
  font-weight: 900;
  text-align: center;
  color: #d80b24;
}
@media (min-width: 769px) {
  .cast_card_name {
    padding-top: 1rem;
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .cast_card_name {
    padding-top: 3rem;
    font-size: 5rem;
  }
}
.cast_card_text {
  font-weight: 500;
  text-align: justify;
}
@media (min-width: 769px) {
  .cast_card_text {
    padding-top: 1rem;
    line-height: 1.875;
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .cast_card_text {
    padding-top: 2.5rem;
    line-height: 1.782;
    font-size: 3.2rem;
  }
}

.footer_outer {
  position: relative;
  background: #e8ebeb;
}
.footer_inner {
  display: grid;
  position: relative;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .footer_inner {
    justify-content: space-between;
    grid-template-columns: 18.1rem auto auto;
    row-gap: 7rem;
    max-width: 1400px;
    padding: 11rem 28.5rem 2rem;
  }
}
@media (max-width: 768px) {
  .footer_inner {
    row-gap: 6rem;
    padding: 8rem 6rem;
  }
}
@media (min-width: 769px) {
  .footer_logo {
    grid-column: 1/2;
    grid-row: 1/3;
  }
}
@media (max-width: 768px) {
  .footer_logo {
    width: 24.4rem;
  }
}
.footer_logo a {
  display: block;
}
.footer_logo a:hover {
  opacity: 0.5;
}
.footer_menu {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .footer_menu {
    grid-column: 2/3;
    grid-row: 1/3;
    row-gap: 2rem;
  }
}
@media (max-width: 768px) {
  .footer_menu {
    display: none;
  }
}
.footer_menu_link {
  font-weight: 700;
  color: #2a2a2a;
}
@media (min-width: 769px) {
  .footer_menu_link {
    line-height: 1.267;
    font-size: 1.5rem;
  }
}
.footer_menu_link:hover {
  color: #d80b24;
}
@media (min-width: 769px) {
  .footer_utility {
    grid-column: 3/4;
    grid-row: 1/2;
  }
}
@media (max-width: 768px) {
  .footer_utility {
    margin-top: 2rem;
  }
}
.footer_utility_list {
  display: flex;
}
@media (min-width: 769px) {
  .footer_utility_list {
    flex-direction: column;
    row-gap: 1.6rem;
  }
}
@media (max-width: 768px) {
  .footer_utility_list {
    flex-wrap: wrap;
    gap: 4rem 7rem;
  }
  .footer_utility_list > li:first-of-type {
    width: 100%;
  }
}
.footer_utility_link {
  font-weight: 500;
  color: #848484;
}
@media (min-width: 769px) {
  .footer_utility_link {
    line-height: 1.667;
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .footer_utility_link {
    line-height: 1.334;
    font-size: 2.4rem;
  }
}
.footer_utility_link:hover {
  color: #d80b24;
}
.footer_sns {
  display: flex;
  align-items: center;
}
@media (min-width: 769px) {
  .footer_sns {
    grid-column: 3/4;
    grid-row: 2/3;
    column-gap: 1.5rem;
    width: 22rem;
  }
}
@media (max-width: 768px) {
  .footer_sns {
    column-gap: 4rem;
  }
}
.footer_sns_sub {
  line-height: 1;
  font-weight: 700;
  color: #848484;
}
@media (min-width: 769px) {
  .footer_sns_sub {
    font-size: 1.7rem;
  }
}
@media (max-width: 768px) {
  .footer_sns_sub {
    font-size: 3rem;
  }
}
.footer_sns_list {
  display: flex;
  align-items: center;
}
@media (min-width: 769px) {
  .footer_sns_list {
    column-gap: 1rem;
  }
}
@media (max-width: 768px) {
  .footer_sns_list {
    column-gap: 2rem;
  }
}
.footer_sns_link {
  display: block;
}
@media (min-width: 769px) {
  .footer_sns_link {
    width: 2.8rem;
  }
}
@media (max-width: 768px) {
  .footer_sns_link {
    width: 5rem;
  }
}
.footer_sns_link:hover {
  opacity: 0.5;
}
.footer_copyright {
  line-height: 1;
  font-weight: 500;
  color: #848484;
}
@media (min-width: 769px) {
  .footer_copyright {
    grid-column: 1/4;
    grid-row: 3/4;
    font-size: 1rem;
    text-align: right;
  }
}
@media (max-width: 768px) {
  .footer_copyright {
    margin-top: 2rem;
    font-size: 2rem;
  }
}

.pagetop_anchor {
  aspect-ratio: 1/1;
  position: fixed;
  opacity: 0;
  transition: opacity 0.2s linear;
  z-index: 9000;
}
@media (min-width: 769px) {
  .pagetop_anchor {
    width: 7.5rem;
    left: calc(50% + 62rem);
    bottom: 8rem;
  }
}
@media (max-width: 768px) {
  .pagetop_anchor {
    width: 9rem;
    right: 4rem;
    bottom: 15rem;
  }
}
.pagetop_anchor.is-shown {
  opacity: 1;
}
.pagetop_anchor a {
  display: block;
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  fill: #fff;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.pagetop_anchor a:hover {
  opacity: 0.5;
}
.pagetop_anchor a svg {
  pointer-events: none;
}

.modal_box {
  background: transparent;
  border: 0;
  padding: 0;
}
@media (min-width: 769px) {
  .modal_box {
    width: 888px;
    max-width: calc(100% - 40px);
    max-height: calc(100% - 40px);
  }
}
@media (max-width: 768px) {
  .modal_box {
    width: 66.6rem;
  }
}
.modal_box::backdrop {
  background: rgba(37, 30, 28, 0.8);
  background-blend-mode: multiply;
}
.modal_box:focus {
  outline: none;
}
.modal_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}
@media (min-width: 769px) {
  .modal_inner {
    padding: 5rem 0;
  }
}
@media (max-width: 768px) {
  .modal_inner {
    padding: 7rem 0;
  }
}
.modal_close {
  aspect-ratio: 1/1;
  position: absolute;
  right: 0;
  cursor: pointer;
}
@media (min-width: 769px) {
  .modal_close {
    width: 25px;
    top: 1rem;
  }
}
@media (max-width: 768px) {
  .modal_close {
    width: 2.6rem;
    top: 2rem;
  }
}
.modal_close::before, .modal_close::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 116%;
  height: 16%;
  inset: -3% 0 0 -6%;
  margin: auto;
  pointer-events: none;
}
.modal_close::before {
  rotate: 45deg;
}
.modal_close::after {
  rotate: -45deg;
}
.modal_close:hover {
  opacity: 0.5;
}
.modal_frame {
  aspect-ratio: 16/9;
  position: relative;
  width: 100%;
}
.modal_frame iframe {
  position: relative;
  width: 100%;
  height: 100%;
}