@charset "UTF-8";
/* Eric Meyer's Reset CSS v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*theme--------------------------*/
/*-------------------------------*/
/*-------------------------------*/
:root {
  /* iOSの下部セーフエリア込みの余白（対応外ブラウザは0になる） */
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --gap: 24px;
}

/*-------------------------------*/
/*breakpointes-------------------*/
/*-------------------------------*/
/*mixin--------------------------*/
/*-------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

ruby {
  ruby-align: center;
}

rt {
  font-size: 0.5em;
  transform: translateY(0.1em);
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #000000;
  background-color: #014696;
  min-height: 100vh;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

main {
  flex: 1;
  position: relative;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  color: #000000;
}

img, picture, video {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
  -webkit-user-drag: none;
}

.js-fade,
.js-zoom,
.js-slide-left,
.js-slide-right,
.js-stagger .js-stagger-item {
  opacity: 0;
}

.intro_and_story {
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
.intro_and_story .bg-left, .intro_and_story .bg-right {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 280px;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.1));
  background-repeat: repeat-y;
  background-size: 280px;
  background-position: top center;
  background-image: url(../img/bg_copy.svg);
  animation: bgScroll 20s linear infinite;
}
@media screen and (max-width: 768px) {
  .intro_and_story .bg-left, .intro_and_story .bg-right {
    animation: bgScrollSp 20s linear infinite;
    width: 150px;
    background-size: 150px;
    opacity: 0.5;
  }
}
.intro_and_story .bg-right {
  left: unset;
  right: 0;
  transform: rotate(180deg);
}

@keyframes bgScroll {
  0% {
    background-position-y: 0;
  }
  100% {
    background-position-y: 1527px;
  }
}
@keyframes bgScrollSp {
  0% {
    background-position-y: 0;
  }
  100% {
    background-position-y: 818px;
  }
}
section.section-default .section_inner .section_main {
  max-width: 1200px;
  padding: 0 50px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  section.section-default .section_inner .section_main {
    max-width: 500px;
    padding: 0 20px;
  }
}
section.section-default .section_inner .section_main h2 {
  position: relative;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 40px;
}
section.section-default .section_inner .section_main h2 p.en {
  font-family: "Noto Serif JP";
  font-size: 2em;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.1em;
  text-indent: 0.1em;
}
@media screen and (max-width: 768px) {
  section.section-default .section_inner .section_main h2 p.en {
    font-size: 1.75em;
  }
}
section.section-default .section_inner .section_main h2 p.ja {
  font-family: "Noto Serif JP";
  font-size: 0.88em;
  color: #DA0A17;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  section.section-default .section_inner .section_main h2 p.ja {
    text-indent: 0.1em;
  }
}
section.section-default .section_inner .section_main h2.white {
  color: #FFF;
}

@media screen and (max-width: 768px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .br-sp {
    display: block;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*nav----------------------------*/
.nav_btn {
  position: fixed;
  top: 10px;
  right: 10px;
  background-image: url(../img/nav_icon.svg);
  background-size: 100%;
  width: 80px;
  height: 80px;
  transition: 0.5s;
  z-index: 103;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .nav_btn {
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
  }
}
.nav_btn {
  transition: 0.2s;
}
.nav_btn.show {
  background-image: url(../img/nav_icon-close.svg);
  opacity: 0.8;
}
.nav_btn.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .nav_btn.active {
    opacity: 1;
  }
}
.nav_btn:hover {
  opacity: 0.6;
}

.nav_bar {
  background-color: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  width: 80px;
  height: 80px;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 102;
}
@media screen and (max-width: 768px) {
  .nav_bar {
    z-index: 100;
    width: 100%;
    height: 60px;
    top: 0;
    right: 0;
    display: block;
  }
}

.gnav {
  background-color: #fff;
  z-index: 101;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.5s;
  height: 100%;
  width: 100%;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.1);
  overflow-y: auto;
  padding: 100px 50px 50px;
  background-image: url(../img/bg_q2.png);
  background-size: 430px;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .gnav {
    background-size: 90%;
    padding: 80px 20px 40px;
  }
}
.gnav.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}
.gnav .gnav_list {
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list {
    gap: 24px;
  }
}
.gnav .gnav_list li a {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  display: flex;
  gap: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 0.2s;
}
.gnav .gnav_list li a p.en {
  font-size: 1.5em;
  color: #014696;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list li a p.en {
    font-size: 1.3em;
  }
}
.gnav .gnav_list li a p.ja {
  color: #DA0A17;
  font-size: 0.8em;
}
@media screen and (max-width: 768px) {
  .gnav .gnav_list li a p.ja {
    font-size: 0.75em;
  }
}
.gnav .gnav_list li a:hover {
  opacity: 0.6;
  transform: translateY(1px);
}

/*-------------------------------*/
.nav_sns {
  z-index: 104;
  position: fixed;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 10px;
  transition: 0.5s;
}
.nav_sns li a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  background-color: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .nav_sns li a {
    width: 40px;
    height: 40px;
  }
}
.nav_sns li a {
  transition: 0.2s;
}
.nav_sns li a:hover {
  opacity: 0.6;
  transform: translateY(1px);
}

.to_top {
  position: sticky;
  z-index: 99;
  bottom: 0px;
  width: 3em;
  height: 3em;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #DA0A17;
  color: #014696;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 0 1px auto;
}
.to_top::after {
  content: "▲";
  font-size: 14px;
  transform: scaleY(0.5);
  margin-bottom: 4px;
}
.to_top {
  transform: translateY(5px);
  opacity: 0;
  transition: 0.5s;
}
.to_top.active {
  transform: translateY(0px);
  opacity: 1;
}

.loading {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #FFF;
}

.loading_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  width: 100%;
  max-width: 320px;
}
@media screen and (max-width: 768px) {
  .loader {
    max-width: 240px;
  }
}

.fixed_bg {
  position: fixed;
  z-index: -10;
  background-image: url(../img/bg_b.jpg);
  background-size: 100%;
  background-repeat: repeat-y;
  top: 0;
  left: 0;
  height: 100vh;
  height: 100lvh;
  width: 100%;
  background-color: #fff;
}

.fixed_bgv {
  z-index: -10;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .fixed_bgv {
    display: none;
  }
}
.fixed_bgv video {
  width: 100%;
  height: 100vh;
  height: 100lvh;
  -o-object-fit: cover;
     object-fit: cover;
}
.fixed_bgv .overlay-dot {
  z-index: 2;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: radial-gradient(circle, rgba(237, 255, 134, 0.4) 0.5px, transparent 0.5px);
  background-position: 0 0;
  background-size: 7px 7px;
}

#footer {
  background-color: #fff;
  z-index: 2;
  position: relative;
  padding: 50px 50px 50px;
  color: #014696;
}
#footer a {
  color: #014696;
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 40px 20px 60px;
  }
}
#footer ul.share-texts {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin-bottom: 32px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #footer ul.share-texts {
    font-size: 12px;
  }
}
#footer ul.share-texts .icon-share {
  width: 14px;
}
#footer ul.share-texts a, #footer ul.share-texts #copy-button {
  cursor: pointer;
  transition: 0.1s;
}
#footer ul.share-texts a:hover, #footer ul.share-texts #copy-button:hover {
  opacity: 0.5;
}
#footer .wb_logo {
  width: 80px;
  margin: 0 auto 20px;
}
#footer ul.wb_sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2em;
  margin: 0 auto 20px;
}
#footer ul.wb_sns li a {
  transition: 0.1s;
}
#footer ul.wb_sns li a:hover {
  opacity: 0.5;
}
#footer ul.wb_sns li a img {
  height: 36px;
  width: auto;
}
#footer ul.policies {
  display: flex;
  justify-content: center;
  gap: 1.4em;
  font-size: 12px;
  margin: 0 auto 20px;
  margin-left: -1em;
  font-weight: 900;
}
#footer .copyright-footer {
  text-align: center;
  font-size: 12px;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

.spacer {
  display: none;
}
@media screen and (max-width: 768px) {
  .spacer {
    display: block;
    height: 60px;
    width: 100%;
  }
}

#top {
  position: relative;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  width: 100%;
  z-index: 2;
}
#top .main-pc {
  overflow: hidden;
  width: 100%;
  z-index: 1;
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .main-pc {
    display: none;
  }
}
#top .main-pc .main_imgs {
  width: 100%;
  display: flex;
}
#top .main-pc .main_imgs .main {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#top .main-pc .main_imgs .main .main_img {
  position: relative;
  overflow: hidden;
}
#top .main-pc .main_imgs .main .main_img img {
  opacity: 0;
  filter: grayscale(100%);
  transition: 3s;
  transform: scale(1.1);
}
#top .main-pc .main_imgs .main .main_img img.inview {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1);
}
#top .main-pc .main_imgs .main .copy_tate {
  position: absolute;
  top: 36%;
  left: 80%;
  width: 5.5%;
  transition: 1s;
  opacity: 0;
  transform: translateY(10px);
}
#top .main-pc .main_imgs .main .copy_tate.inview {
  opacity: 1;
  transform: translateY(0px);
}
#top .main-sp {
  z-index: 1;
  display: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .main-sp {
    display: block;
  }
}
#top .main-sp_outer-outer {
  overflow: hidden;
  width: 100%;
}
#top .main-sp_outer {
  opacity: 0;
  filter: grayscale(100%);
  transition: 3s;
  transform: scale(1.1);
}
#top .main-sp_outer.inview {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1);
}
#top .copy {
  z-index: 2;
  position: absolute;
  width: 74%;
  top: 4%;
  left: 13%;
  opacity: 0;
  transition: 1s;
  transform: translateY(-10px);
}
#top .copy.inview {
  opacity: 1;
  transform: translateY(0px);
}
#top .titles {
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 3.5%;
  left: 6%;
  gap: 6%;
  width: 75%;
}
@media screen and (max-width: 768px) {
  #top .titles {
    display: block;
    width: 68%;
    bottom: 2%;
    left: 16%;
  }
}
#top .titles .copy2 {
  width: 36%;
}
@media screen and (max-width: 768px) {
  #top .titles .copy2 {
    display: none;
  }
}
#top .titles .copy2 {
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
#top .titles .copy2.inview {
  opacity: 1;
  transform: translateY(0px);
}
#top .titles .title {
  width: 37%;
}
@media screen and (max-width: 768px) {
  #top .titles .title {
    width: 100%;
  }
}
#top .titles .title {
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
#top .titles .title.inview {
  opacity: 1;
  transform: translateY(0px);
}
#top .titles .release {
  width: 18%;
}
@media screen and (max-width: 768px) {
  #top .titles .release {
    width: 37%;
    margin: 4% auto 0;
  }
}
#top .titles .release {
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
#top .titles .release.inview {
  opacity: 1;
  transform: translateY(0px);
}

#info {
  background-color: #fff;
  background-image: url(../img/bg_q.jpg);
  background-size: 350px;
  background-position: center center;
  padding: 40px 50px 60px;
}
@media screen and (max-width: 768px) {
  #info {
    padding: 20px 20px 60px;
  }
}
#info .billing {
  margin: 0 auto 20px;
  width: 90%;
  max-width: 800px;
  display: block;
}
#info .bnrs_tkt {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #info .bnrs_tkt {
    gap: 10px;
    margin-bottom: 20px;
  }
}
#info .bnrs_tkt div {
  width: calc(50% - 10px);
  max-width: 360px;
}
@media screen and (max-width: 768px) {
  #info .bnrs_tkt div {
    width: 100%;
    max-width: 280px;
  }
}
#info .bnrs_tkt div a {
  display: block;
  transition: 0.2s;
}
#info .bnrs_tkt div a:hover {
  opacity: 0.6;
  transform: translateY(1px);
}
#info .bnr_val {
  display: flex;
  justify-content: center;
  margin: 0 auto 60px;
  max-width: 740px;
  border: solid 1px #CCC;
}
@media screen and (max-width: 768px) {
  #info .bnr_val {
    max-width: 280px;
    margin-bottom: 40px;
  }
}
#info .bnr_val a {
  display: block;
  width: 100%;
  transition: 0.2s;
}
#info .bnr_val a:hover {
  opacity: 0.6;
  transform: translateY(1px);
}
#info .bnr_val a picture,
#info .bnr_val a img {
  display: block;
  width: 100%;
  height: auto;
}

/*trailer------------------------*/
#trailer {
  overflow: hidden;
}
#trailer .section_inner {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner {
    padding: 80px 0;
  }
}
#trailer .section_main {
  max-width: 1100px;
}
@media screen and (max-width: 768px) {
  #trailer .section_main {
    max-width: 500px;
  }
}
#trailer .section_main .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
#trailer .section_main .youtube_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#trailer .trailer_tabs {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 5px;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  #trailer .trailer_tabs {
    gap: 3px;
    margin-top: 3px;
  }
}
#trailer .trailer_tabs li {
  cursor: pointer;
  background-color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  text-align: center;
  color: #014696;
  pointer-events: all;
  height: 3em;
  flex: 0 0 calc((100% - 15px) / 4);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  #trailer .trailer_tabs li {
    height: 2.5em;
    flex-basis: calc((100% - 3px) / 2);
  }
}
@media screen and (max-width: 768px) {
  #trailer .trailer_tabs li:first-child {
    flex-basis: 100%;
  }
}
#trailer .trailer_tabs li:hover {
  opacity: 0.6;
  transform: translateY(1px);
}
#trailer .trailer_tabs .tab--new {
  flex-basis: calc((100% - 10px) / 3);
}
@media screen and (max-width: 768px) {
  #trailer .trailer_tabs .tab--new {
    flex-basis: calc((100% - 3px) / 2);
  }
}
#trailer .trailer_tabs .tab.active {
  opacity: 0.5;
  pointer-events: none;
}

/*-------------------------------*/
#intro {
  position: relative;
}
#intro .section_inner {
  padding: 120px 0 80px;
}
@media screen and (max-width: 768px) {
  #intro .section_inner {
    padding: 60px 0 40px;
  }
}
@media screen and (max-width: 768px) {
  #intro .section_inner .section_main {
    padding: 0 30px;
  }
}
#intro .section_inner .section_main h3 {
  margin-bottom: 2em;
}
#intro .section_inner .section_main .text_body p {
  line-height: 2;
  font-weight: 700;
  margin-bottom: 1em;
  text-align: justify;
}
#intro .section_inner .section_main .text_body p:last-of-type {
  margin-bottom: 0;
}

.scroll-strip {
  overflow: hidden;
  width: 100%;
  border-top: solid 8px #014696;
  border-bottom: solid 8px #014696;
}
@media screen and (max-width: 768px) {
  .scroll-strip {
    border-top: solid 6px #014696;
    border-bottom: solid 6px #014696;
  }
}
.scroll-strip .scroll-strip_track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}
.scroll-strip .scroll-strip_track img {
  display: block;
  width: 100vw;
  max-width: unset;
  height: auto;
  flex-shrink: 0;
  backface-visibility: hidden;
  transform: translateZ(0);
}
@media screen and (max-width: 768px) {
  .scroll-strip .scroll-strip_track img {
    width: 200vw;
  }
}
.scroll-strip.scroll-strip--right .scroll-strip_track {
  animation: scrollRight 30s linear infinite;
}
@media screen and (max-width: 768px) {
  .scroll-strip.scroll-strip--right .scroll-strip_track {
    animation-duration: 15s;
  }
}
.scroll-strip.scroll-strip--left .scroll-strip_track {
  animation: scrollLeft 30s linear infinite;
}
@media screen and (max-width: 768px) {
  .scroll-strip.scroll-strip--left .scroll-strip_track {
    animation-duration: 15s;
  }
}

@keyframes scrollRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scrollLeft {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
#story {
  background-color: #000;
  position: relative;
  overflow: hidden;
  color: #FFF;
}
#story .story-bgr {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  #story .story-bgr {
    left: -50%;
    width: 200%;
  }
}
#story .story-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  opacity: 1;
}
#story .story-bg img {
  width: 100%;
  height: auto;
  display: block;
}
#story .section_inner {
  padding: 0px 0 100px;
}
@media screen and (max-width: 768px) {
  #story .section_inner {
    padding: 40px 0 80px;
  }
}
#story .section_inner .section_main {
  position: relative;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  #story .section_inner .section_main {
    padding: 0 30px;
  }
}
#story .section_inner .section_main .bg_q {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 432px;
}
@media screen and (max-width: 768px) {
  #story .section_inner .section_main .bg_q {
    width: 360px;
    padding-left: 20px;
  }
}
#story .section_inner .section_main h2 {
  margin-top: 7.5vw;
  margin-bottom: 27vw;
}
@media screen and (max-width: 768px) {
  #story .section_inner .section_main h2 {
    margin-top: 0vw;
    margin-bottom: 100vw;
  }
}
#story .section_inner .section_main .text_body {
  text-align: center;
}
#story .section_inner .section_main .text_body p {
  position: relative;
  line-height: 2.2;
  font-weight: 700;
  margin-bottom: 1.5em;
}
#story .section_inner .section_main .text_body p:last-of-type {
  margin-bottom: 0;
}
#story .section_inner .section_main .text_body p span {
  display: inline-block;
}
#story .section_inner .section_main .text_body p span.big {
  font-size: 1.375em;
}
@media screen and (max-width: 768px) {
  #story .section_inner .section_main .text_body p span.big {
    font-size: 1.2em;
    line-height: 1.6;
  }
}
#story .section_inner .section_main .text_body p span.bigger {
  font-size: 2em;
}
@media screen and (max-width: 768px) {
  #story .section_inner .section_main .text_body p span.bigger {
    font-size: 1.5em;
  }
}
#story .section_inner .section_main .text_body p.red-mark {
  padding: 0 0.75em;
  font-size: 1.5em;
  background-color: #DA0A17;
  color: #FFF;
  display: inline-block;
  transform: rotate(1deg);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
  margin: 1em auto 0.75em;
}
@media screen and (max-width: 768px) {
  #story .section_inner .section_main .text_body p.red-mark {
    margin: 0.5em auto 0.75em;
    font-size: 1.28em;
    line-height: 1.6;
    padding: 0.25em 0.75em;
  }
}
#story .section_inner .section_main .text_body .glitch-img {
  position: relative;
  margin-bottom: 1.5em;
}
#story .section_inner .section_main .text_body .glitch-img:last-child {
  margin-bottom: 0;
}
#story .section_inner .section_main .text_body .glitch-img picture {
  display: block;
}
#story .section_inner .section_main .text_body .glitch-img .glitch-copy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
#story .section_inner .section_main .text_body .glitch-img .glitch-copy:nth-child(2) {
  animation: imgGlitch1 8s infinite linear;
}
#story .section_inner .section_main .text_body .glitch-img .glitch-copy:nth-child(3) {
  animation: imgGlitch2 8s infinite linear;
}
#story .section_inner .section_main .text_body .glitch-img.story_naze {
  max-width: 660px;
  margin: 0 auto 1.5em;
  filter: drop-shadow(0px 0px 2px #e60012) drop-shadow(0px 0px 2px #e60012) drop-shadow(0px 0px 5px #e60012) drop-shadow(0px 0px 5px #e60012);
}
#story .section_inner .section_main .text_body .glitch-img.story_nazo {
  max-width: 830px;
  margin: 1.5em auto 0;
  filter: drop-shadow(0px 0px 2px #0070bd) drop-shadow(0px 0px 2px #0070bd) drop-shadow(0px 0px 5px #0070bd) drop-shadow(0px 0px 5px #0070bd);
}
#story .section_inner .section_main .text_body .glitch-img.story_nazo .glitch-copy:nth-child(2) {
  animation-name: imgGlitch3;
}
#story .section_inner .section_main .text_body .glitch-img.story_nazo .glitch-copy:nth-child(3) {
  animation-name: imgGlitch4;
}

@keyframes imgGlitch1 {
  0%, 100% {
    opacity: 0;
    transform: translate(0);
    clip-path: none;
  }
  20% {
    opacity: 0;
  }
  21% {
    opacity: 0.8;
    transform: translate(-8px, 2px);
    clip-path: inset(20% 0 40% 0);
  }
  23% {
    opacity: 0.8;
    transform: translate(6px, -1px);
    clip-path: inset(50% 0 10% 0);
  }
  25% {
    opacity: 0;
    transform: translate(0);
    clip-path: none;
  }
  70% {
    opacity: 0;
  }
  71% {
    opacity: 0.6;
    transform: translate(5px, 1px);
    clip-path: inset(5% 0 60% 0);
  }
  72.5% {
    opacity: 0.6;
    transform: translate(-4px, -2px);
    clip-path: inset(60% 0 5% 0);
  }
  74% {
    opacity: 0;
    transform: translate(0);
    clip-path: none;
  }
}
@keyframes imgGlitch2 {
  0%, 100% {
    opacity: 0;
    transform: translate(0);
    clip-path: none;
  }
  40% {
    opacity: 0;
  }
  41% {
    opacity: 0.7;
    transform: translate(7px, -2px);
    clip-path: inset(30% 0 30% 0);
  }
  43% {
    opacity: 0.7;
    transform: translate(-5px, 3px);
    clip-path: inset(70% 0 5% 0);
  }
  44% {
    opacity: 0;
    transform: translate(0);
    clip-path: none;
  }
  85% {
    opacity: 0;
  }
  86% {
    opacity: 0.5;
    transform: translate(-6px, 1px);
    clip-path: inset(5% 0 70% 0);
  }
  87% {
    opacity: 0.5;
    transform: translate(4px, -1px);
    clip-path: inset(45% 0 20% 0);
  }
  89% {
    opacity: 0;
    transform: translate(0);
    clip-path: none;
  }
}
@keyframes imgGlitch3 {
  0%, 100% {
    opacity: 0;
    transform: translate(0);
    clip-path: none;
  }
  35% {
    opacity: 0;
  }
  36% {
    opacity: 0.8;
    transform: translate(6px, -2px);
    clip-path: inset(15% 0 50% 0);
  }
  38% {
    opacity: 0.8;
    transform: translate(-7px, 1px);
    clip-path: inset(55% 0 15% 0);
  }
  40% {
    opacity: 0;
    transform: translate(0);
    clip-path: none;
  }
  80% {
    opacity: 0;
  }
  81% {
    opacity: 0.6;
    transform: translate(-5px, 2px);
    clip-path: inset(10% 0 55% 0);
  }
  82.5% {
    opacity: 0.6;
    transform: translate(4px, -1px);
    clip-path: inset(65% 0 10% 0);
  }
  84% {
    opacity: 0;
    transform: translate(0);
    clip-path: none;
  }
}
@keyframes imgGlitch4 {
  0%, 100% {
    opacity: 0;
    transform: translate(0);
    clip-path: none;
  }
  10% {
    opacity: 0;
  }
  11% {
    opacity: 0.7;
    transform: translate(-6px, 1px);
    clip-path: inset(25% 0 40% 0);
  }
  13% {
    opacity: 0.7;
    transform: translate(5px, -2px);
    clip-path: inset(60% 0 10% 0);
  }
  14% {
    opacity: 0;
    transform: translate(0);
    clip-path: none;
  }
  55% {
    opacity: 0;
  }
  56% {
    opacity: 0.5;
    transform: translate(7px, 1px);
    clip-path: inset(5% 0 65% 0);
  }
  57% {
    opacity: 0.5;
    transform: translate(-4px, -1px);
    clip-path: inset(50% 0 15% 0);
  }
  59% {
    opacity: 0;
    transform: translate(0);
    clip-path: none;
  }
}
/* =========================================
   CAST セクション
========================================= */
#cast {
  position: relative;
  color: #FFF;
  overflow: hidden;
  /* 背景にふわふわ浮かぶ Q（JSで動的生成） */
}
#cast .comment-q {
  opacity: 0;
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  will-change: transform, opacity;
  transition: opacity 2s ease;
  z-index: -1; /* section_inner の下に / #castはSCでないので-redのブレンドも維持 */
  filter: blur(2px);
}
#cast .section_inner {
  position: relative;
  padding: 100px 0 100px;
}
@media screen and (max-width: 768px) {
  #cast .section_inner {
    padding: 60px 0 60px;
  }
}
#cast .section_inner .section_main {
  position: relative;
  max-width: 1500px;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  #cast .section_inner .section_main {
    max-width: 500px;
    padding: 0 0px;
  }
}
#cast .section_inner .section_main h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #cast .section_inner .section_main h2 {
    margin-bottom: 20px;
  }
}
#cast {
  /* 相関図マップ共通 */
}
#cast .cast_map {
  position: relative;
  margin: 0 auto;
}
#cast .cast_map .cast_map_base,
#cast .cast_map .cast_map_red {
  display: block;
  width: 100%;
  height: auto;
}
#cast .cast_map .cast_map_base {
  position: relative;
  z-index: 2;
}
#cast .cast_map .cast_map_red {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  mix-blend-mode: color;
  opacity: 0.7;
  pointer-events: none;
}
#cast .cast_map .cast_map_photos {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
}
#cast .cast_map--pc {
  margin: 0 auto;
  max-width: 1500px;
}
@media screen and (max-width: 768px) {
  #cast .cast_map--pc {
    display: none;
  }
}
#cast .cast_map--sp {
  display: none;
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  #cast .cast_map--sp {
    display: block;
  }
}
#cast {
  /* 写真ボタン共通 */
}
#cast .cast_photo {
  position: absolute;
  padding: 0;
  margin: 0;
  border: 0;
  background-color: #014696; /* 画像の背景に青ベタ */
  cursor: default;
  pointer-events: auto;
  line-height: 0;
}
#cast .cast_photo .cast_photo_img {
  display: block;
  width: 100%;
  height: auto;
}
#cast .cast_photo .cast_photo_plus {
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 32px; /* PC: 全員同じ 40px */
  height: 32px;
  transition: transform 0.25s ease;
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}
@media screen and (max-width: 768px) {
  #cast .cast_photo .cast_photo_plus {
    right: -4px;
    bottom: -4px;
    width: 30px; /* SP: 全員同じ 32px */
    height: 30px;
  }
}
#cast .cast_photo {
  /* プロフィールを開けるボタン（主要3人）だけホバー・トランジションを有効化 */
}
#cast .cast_photo.js-cast-open {
  cursor: pointer;
  transition: transform 0.3s ease;
}
#cast .cast_photo.js-cast-open .cast_photo_img {
  transition: opacity 0.25s ease; /* hoverでふわっと */
}
#cast .cast_photo.js-cast-open:hover .cast_photo_plus, #cast .cast_photo.js-cast-open:focus-visible .cast_photo_plus {
  transform: scale(1.2);
}
#cast .cast_photo.js-cast-open:hover .cast_photo_img, #cast .cast_photo.js-cast-open:focus-visible .cast_photo_img {
  opacity: 0.8; /* 画像だけ透ける → 背景の青が透けて見える */
}
#cast .cast_photo.js-cast-open:hover {
  z-index: 2;
}
#cast {
  /* -------- PC 配置 (viewBox 1500 x 1071) --------
     Figmaメタデータから算出 (x,y,width を viewBox で割った値)
     サイズ:
       - ch01 三島 / ch02 本庄:  184px → 12.27%
       - ch03 坂田      :  185px → 12.33%
       - その他10人             :  133px →  8.87%
  */
}
#cast .cast_map--pc {
  /* デフォルトサイズ（その他10人共通） */
}
#cast .cast_map--pc .cast_photo {
  width: 8.87%;
}
#cast .cast_map--pc {
  /* 主要2人 */
}
#cast .cast_map--pc .cast_photo--ch01,
#cast .cast_map--pc .cast_photo--ch02 {
  width: 12.27%;
}
#cast .cast_map--pc {
  /* 坂田 */
}
#cast .cast_map--pc .cast_photo--ch03 {
  width: 12.33%;
}
#cast .cast_map--pc {
  /* 位置（Figma座標ベース） */
}
#cast .cast_map--pc .cast_photo--ch01 {
  left: 35.6%;
  top: 38.66%;
}
#cast .cast_map--pc { /* 三島玲央 */ }
#cast .cast_map--pc .cast_photo--ch02 {
  left: 54.73%;
  top: 38.66%;
}
#cast .cast_map--pc { /* 本庄絆 */ }
#cast .cast_map--pc .cast_photo--ch03 {
  left: 41.47%;
  top: 6.26%;
}
#cast .cast_map--pc { /* 坂田泰彦 */ }
#cast .cast_map--pc .cast_photo--ch04 {
  left: 33.47%;
  top: 72.36%;
}
#cast .cast_map--pc { /* 富塚頼子 */ }
#cast .cast_map--pc .cast_photo--ch05 {
  left: 46.13%;
  top: 72.36%;
}
#cast .cast_map--pc { /* 赤岩 */ }
#cast .cast_map--pc .cast_photo--ch06 {
  left: 58.8%;
  top: 72.36%;
}
#cast .cast_map--pc { /* 馬場 */ }
#cast .cast_map--pc .cast_photo--ch07 {
  left: 71.47%;
  top: 72.36%;
}
#cast .cast_map--pc { /* 椎名 */ }
#cast .cast_map--pc .cast_photo--ch08 {
  left: 4.67%;
  top: 12.23%;
}
#cast .cast_map--pc { /* 田代由紀 */ }
#cast .cast_map--pc .cast_photo--ch09 {
  left: 87.93%;
  top: 56.02%;
}
#cast .cast_map--pc { /* 本庄裕翔 */ }
#cast .cast_map--pc .cast_photo--ch10 {
  left: 71.47%;
  top: 38.47%;
}
#cast .cast_map--pc { /* MC坂東工 */ }
#cast .cast_map--pc .cast_photo--ch11 {
  left: 15.4%;
  top: 12.23%;
}
#cast .cast_map--pc { /* 片桐俊作 */ }
#cast .cast_map--pc .cast_photo--ch12 {
  left: 5.8%;
  top: 53.13%;
}
#cast .cast_map--pc { /* 桐崎恵茉 */ }
#cast .cast_map--pc .cast_photo--ch13 {
  left: 88%;
  top: 17.83%;
}
#cast .cast_map--pc { /* ?? 伊沢 */ }
#cast {
  /* -------- SP 配置 (viewBox 375 x 1190) --------
     Figmaメタデータから算出
     サイズ:
       - ch01 三島 / ch02 本庄: 102px   → 27.20%
       - ch03 坂田      :  96.2px → 25.66%
       - その他10人             :  69.7px → 18.58%
  */
}
#cast .cast_map--sp {
  /* デフォルトサイズ */
}
#cast .cast_map--sp .cast_photo {
  width: 18.58%;
}
#cast .cast_map--sp {
  /* 主要2人 */
}
#cast .cast_map--sp .cast_photo--ch01,
#cast .cast_map--sp .cast_photo--ch02 {
  width: 27.2%;
}
#cast .cast_map--sp {
  /* 坂田 */
}
#cast .cast_map--sp .cast_photo--ch03 {
  width: 25.66%;
}
#cast .cast_map--sp {
  /* 位置（Figma座標ベース） */
}
#cast .cast_map--sp .cast_photo--ch01 {
  left: 12.53%;
  top: 51.18%;
}
#cast .cast_map--sp { /* 三島玲央 */ }
#cast .cast_map--sp .cast_photo--ch02 {
  left: 59.2%;
  top: 51.18%;
}
#cast .cast_map--sp { /* 本庄絆 */ }
#cast .cast_map--sp .cast_photo--ch03 {
  left: 48.84%;
  top: 29.49%;
}
#cast .cast_map--sp { /* 坂田泰彦 */ }
#cast .cast_map--sp .cast_photo--ch04 {
  left: 15.76%;
  top: 71.6%;
}
#cast .cast_map--sp { /* 富塚頼子 */ }
#cast .cast_map--sp .cast_photo--ch05 {
  left: 42.45%;
  top: 71.6%;
}
#cast .cast_map--sp { /* 赤岩 */ }
#cast .cast_map--sp .cast_photo--ch06 {
  left: 15.76%;
  top: 84.29%;
}
#cast .cast_map--sp { /* 馬場 */ }
#cast .cast_map--sp .cast_photo--ch07 {
  left: 42.45%;
  top: 84.29%;
}
#cast .cast_map--sp { /* 椎名 */ }
#cast .cast_map--sp .cast_photo--ch08 {
  left: 13.85%;
  top: 6.5%;
}
#cast .cast_map--sp { /* 田代由紀 */ }
#cast .cast_map--sp .cast_photo--ch09 {
  left: 75.46%;
  top: 80.22%;
}
#cast .cast_map--sp { /* 本庄裕翔 */ }
#cast .cast_map--sp .cast_photo--ch10 {
  left: 79.19%;
  top: 35.12%;
}
#cast .cast_map--sp { /* MC坂東工 */ }
#cast .cast_map--sp .cast_photo--ch11 {
  left: 36.57%;
  top: 6.5%;
}
#cast .cast_map--sp { /* 片桐俊作 */ }
#cast .cast_map--sp .cast_photo--ch12 {
  left: 14.2%;
  top: 28.26%;
}
#cast .cast_map--sp { /* 桐崎恵茉 */ }
#cast .cast_map--sp .cast_photo--ch13 {
  left: 73.39%;
  top: 12.77%;
}
#cast .cast_map--sp { /* ?? 伊沢 */ }

/* =========================================
   CAST モーダル (Swiper 内蔵)
========================================= */
.cast_modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cast_modal.is-open {
  visibility: visible;
  opacity: 1;
}
.cast_modal .cast_modal_overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.82);
  cursor: pointer;
}
.cast_modal .cast_modal_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 100px);
  max-width: 1300px;
  height: calc(80vh - 80px); /* 固定高さ → 全スライド揃う */
  max-height: 800px; /* 画面が広い時にデカくなりすぎない上限 */
  background: #FFF;
  color: #000;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_modal_inner {
    width: calc(100% - 30px);
    height: calc(90vh - 60px);
    max-height: none;
    max-width: 500px;
  }
}
.cast_modal {
  /* 下部コントロールバー —— モーダル下端に吸い付き */
}
.cast_modal .cast_modal_controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_modal_controls {
    bottom: 14px;
    gap: 32px;
  }
}
.cast_modal .cast_modal_close {
  position: relative;
  width: 44px;
  height: 44px;
  background: #DA0A17;
  border: 0;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: background 0.2s, transform 0.2s;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_modal_close {
    width: 36px;
    height: 36px;
  }
}
.cast_modal .cast_modal_close::before, .cast_modal .cast_modal_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #FFF;
  transform-origin: center;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_modal_close::before, .cast_modal .cast_modal_close::after {
    width: 14px;
  }
}
.cast_modal .cast_modal_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.cast_modal .cast_modal_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.cast_modal .cast_modal_close:hover {
  transform: scale(1.08);
}
.cast_modal {
  /* Swiper 内部 —— 親 (cast_modal_inner) の固定高さを100%で受け取る */
}
.cast_modal .cast_swiper {
  width: 100%;
  height: 100%;
}
.cast_modal .cast_swiper .swiper-wrapper {
  height: 100%;
}
.cast_modal .cast_swiper .swiper-slide {
  height: 100%;
  overflow-y: auto; /* スライド内でスクロール */
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.cast_modal {
  /* カード内 —— スクロールは親slide側に任せて、カードは自然な高さ */
}
.cast_modal .cast_card {
  border-top: solid 5px #DA0A17;
  border-bottom: solid 5px #DA0A17;
  display: flex;
  gap: 30px;
  padding: 50px 60px 110px; /* 下はコントロールバー分の余白 */
  min-height: 100%; /* slide高に満たない場合も揃える */
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_card {
    flex-direction: column;
    gap: 16px;
    padding: 40px 20px 90px;
  }
}
.cast_modal .cast_card .cast_card_photo {
  flex: 0 0 28%;
}
.cast_modal .cast_card .cast_card_photo img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_card .cast_card_photo img {
    width: 60%;
    margin: 0 auto;
  }
}
.cast_modal .cast_card .cast_card_body {
  flex: 1;
  min-width: 0;
}
.cast_modal .cast_card .cast_card_role {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 1.8em;
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-bottom: 0.3em;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_card .cast_card_role {
    font-size: 1.5em;
  }
}
.cast_modal .cast_card .cast_card_actor {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 1.2em;
  color: #DA0A17;
  margin-bottom: 1.2em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_card .cast_card_actor {
    font-size: 1.05em;
    margin-bottom: 1em;
  }
}
.cast_modal .cast_card {
  /* コメントセクション流用の名前スパン装飾
     PC: 通常の左寄せ
     SP: .names 自体を fit-content（= 一番長い行の幅）で margin auto 中央配置、
         内部の .role/.name は左寄せのまま（共通の左端を共有） */
}
.cast_modal .cast_card .names {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5em;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_card .names {
    margin: 0 auto 1.5em;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
  }
}
.cast_modal .cast_card .names .role, .cast_modal .cast_card .names .name {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: flex-start ← 既定（左寄せ維持） */
}
.cast_modal .cast_card .names {
  /* SPで name_group を含む .name は min-content で widest group 幅にフィット
     （.names の fit-content がこの幅を参照して block 幅が決まる） */
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_card .names .name:has(> .name_group) {
    width: -moz-min-content;
    width: min-content;
  }
}
.cast_modal .cast_card .names .role {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.cast_modal .cast_card .names {
  /* グループ単位で折り返したい場合 */
}
.cast_modal .cast_card .names .name_group {
  display: inline-flex;
  flex-wrap: nowrap;
}
.cast_modal .cast_card .names .aka-maru, .cast_modal .cast_card .names .ao-maru {
  font-size: 1.4em;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_card .names .aka-maru, .cast_modal .cast_card .names .ao-maru {
    font-size: 1.1em;
  }
}
.cast_modal .cast_card .cast_card_desc {
  line-height: 1.9;
  font-weight: 500;
  margin-bottom: 1em;
}
.cast_modal .cast_card .cast_card_comment {
  margin-top: 1.5em;
  padding: 2em 1.2em;
  background-color: rgba(1, 70, 150, 0.05);
}
.cast_modal .cast_card .cast_card_comment .cast_card_comment_title {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  color: #014696;
  margin-bottom: 1em;
  letter-spacing: 0.15em;
  text-indent: 0.15em;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_card .cast_card_comment .cast_card_comment_title {
    text-align: center;
  }
}
.cast_modal .cast_card .cast_card_comment .cast_card_comment_body {
  line-height: 1.9;
  font-weight: 500;
  font-size: 0.95em;
}

/* ナビゲーション（前後）— コントロールバー内フレックスアイテム */
.cast_modal .cast_modal_nav {
  position: relative;
  width: 44px;
  height: 44px;
  background: #014696;
  border: 0;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_modal_nav {
    width: 36px;
    height: 36px;
  }
}
.cast_modal .cast_modal_nav:hover {
  transform: scale(1.08);
}
.cast_modal .cast_modal_nav.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
.cast_modal .cast_modal_nav.swiper-button-disabled:hover {
  transform: none;
}
.cast_modal .cast_modal_nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
}
@media screen and (max-width: 768px) {
  .cast_modal .cast_modal_nav::before {
    width: 8px;
    height: 8px;
    border-width: 1.5px;
  }
}
.cast_modal .cast_modal_nav.cast_modal_nav--prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}
.cast_modal .cast_modal_nav.cast_modal_nav--next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}

/* ボディスクロールロック */
body.is-cast-modal-open {
  overflow: hidden;
}

.news {
  position: relative;
  z-index: 1;
}
.news .comment-q {
  opacity: 0;
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  will-change: transform, opacity;
  transition: opacity 2s ease;
  z-index: 1;
  filter: blur(2px);
}
.news .news-list {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news .news-list li a {
  padding: 20px;
  display: flex;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .news .news-list li a {
    padding: 1em;
    display: block;
  }
}
.news .news-list li a .news-date {
  font-weight: 900;
  font-family: "Noto Serif JP";
  letter-spacing: 0.05em;
  width: 10em;
}
@media screen and (max-width: 768px) {
  .news .news-list li a .news-date {
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 0.5em;
    margin-bottom: 0.5em;
    border-bottom: solid 1px #FFF;
  }
}
.news .news-list li a .news-title {
  font-weight: 700;
  flex: 1;
}
.news .news-list li a {
  transition: 0.2s;
}
.news .news-list li a:hover {
  opacity: 0.6;
  transform: translateY(1px);
}
.news .news-list.news-list-top li a {
  background-color: #014696;
  color: #FFF;
}
.news .news-list.news-list-news li a {
  background-color: #FFF;
}
.news .news-list.news-list-news li a .news-date {
  color: #DA0A17;
}
@media screen and (max-width: 768px) {
  .news .news-list.news-list-news li a .news-date {
    border-bottom: solid 1px #DA0A17;
  }
}
.news a.to-list {
  display: block;
  text-align: center;
  margin-top: 1em;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
.news a.to-list p {
  display: block;
  padding: 1em 0;
  transition: 0.2s;
}
.news a.to-list p:hover {
  opacity: 0.6;
  transform: translateY(1px);
}
.news .page-navigation {
  border-top: solid 2px #DA0A17;
  margin-top: 30px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
}
.news .page-navigation a {
  padding: 0 1em;
  transition: 0.2s;
  text-transform: uppercase;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  color: #014696;
  font-weight: 900;
}
.news .page-navigation a:hover, .news .page-navigation a.invalid {
  opacity: 0.2;
}
.news .page-navigation a.invalid {
  pointer-events: none;
}
.news .news-body {
  background-color: #fff;
  padding: 50px;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news .news-body {
    padding: 30px 20px;
  }
}
.news .news-body .news-date {
  color: #DA0A17;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .news .news-body .news-date {
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 0.5em;
    padding-bottom: 0.25em;
    border-bottom: solid 1px #DA0A17;
  }
}
.news .news-body .news-title {
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.3;
  border-bottom: solid 2px #DA0A17;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .news .news-body .news-title {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
}
.news .news-body .news-content .block {
  margin: 0 0 2em;
}
.news .news-body .news-content .block:last-of-type {
  margin: 0 0 0;
}
.news .news-body .news-content .block--frame {
  background-color: rgba(1, 70, 150, 0.06);
  padding: 24px 32px 20px;
}
@media screen and (max-width: 768px) {
  .news .news-body .news-content .block--frame {
    padding: 18px 20px 16px;
  }
}
.news .news-body .news-content p {
  line-height: 2.2;
  text-align: justify;
  margin-bottom: 0.5em;
}
.news .news-body .news-content p.small {
  font-size: 0.8em;
  line-height: 1.6;
}
.news .news-body .news-content span.strong {
  font-weight: 700;
}
.news .news-body .news-content span.blue {
  color: #014696;
}
.news .news-body .news-content span.red {
  color: #DA0A17;
}
.news .news-body .news-content span.small {
  font-size: 0.8em;
}
.news .news-body .news-content span.big {
  font-size: 1.1em;
  line-height: 1.6;
}
.news .news-body .news-content span.italic {
  font-style: italic;
}
.news .news-body .news-content a {
  color: #014696;
  font-weight: 700;
  word-break: break-all;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: 0.2s;
}
.news .news-body .news-content a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.news .news-body .news-content .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.news .news-body .news-content .youtube_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#news-top {
  overflow: hidden;
  padding: 0px 0 0;
}
@media screen and (max-width: 768px) {
  #news-top {
    padding: 0px 0 0;
  }
}
#news-top .section_inner .section_main {
  padding: 0;
}
@media screen and (max-width: 768px) {
  #news-top .section_inner .section_main {
    padding: 0;
  }
}
#news-top .section_inner .section_main h2 {
  margin-bottom: 20px;
}

#news-list, #news-article {
  padding: 120px 0 80px;
}

.media {
  position: relative;
  z-index: 1;
}
.media .comment-q {
  opacity: 0;
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  will-change: transform, opacity;
  transition: opacity 2s ease;
  z-index: 1;
  filter: blur(2px);
}
.media .media-tabs {
  z-index: 2;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin-bottom: 0;
  justify-content: center;
  align-items: stretch;
}
.media .media-tabs .media-tab {
  flex: 1;
  border: solid 1px #CCC;
  padding: 0.75em 1em;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  background-color: rgba(255, 255, 255, 0);
}
.media .media-tabs .media-tab:hover {
  opacity: 0.8;
  transform: translateY(1px);
}
.media .media-tabs .media-tab.active {
  background-color: rgba(255, 255, 255, 0.25);
  cursor: default;
}
.media .media-tabs .media-tab.active:hover {
  opacity: 1;
  transform: none;
}
.media .media-tabs .media-tab.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .media .media-tabs .media-tab {
    font-size: 0.85em;
    padding: 0.8em 0.5em;
    margin-bottom: 0;
  }
}
.media .media-tabs .media-tab-special {
  flex: 0 0 100%;
}
.media .media-updated {
  z-index: 2;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.7;
  text-align: right;
  margin: 1em 0;
  font-size: 0.8em;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .media .media-updated {
    font-size: 0.8em;
  }
}
.media .media-note {
  z-index: 2;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
  margin-top: 1em;
  font-size: 0.7em;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.media .media-panels {
  z-index: 2;
  position: relative;
}
.media .media-panels .media-panel {
  display: none;
}
.media .media-panels .media-panel.active {
  display: block;
}
.media .media-stagger-item {
  opacity: 0;
}
.media .media-list {
  list-style: none;
}
.media .media-list li {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  display: flex;
  gap: 1em;
  line-height: 1.2;
  border-bottom: solid 2px #014696;
  font-family: "Noto Serif JP", serif;
  font-size: 0.9em;
}
@media screen and (max-width: 768px) {
  .media .media-list li {
    flex-direction: column;
    gap: 0.25em;
    padding: 1em;
    font-size: 0.85em;
  }
}
.media .media-list li:last-child {
  border-bottom: none;
}
.media .media-list li .media-date {
  width: 8em;
  flex-shrink: 0;
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  color: #DA0A17;
}
@media screen and (max-width: 768px) {
  .media .media-list li .media-date {
    width: 100%;
  }
}
.media .media-list li .media-name {
  width: 8em;
  flex-shrink: 0;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .media .media-list li .media-name {
    width: 100%;
  }
}
.media .media-list li .media-content {
  flex: 1;
}
.media .media-list li.media-list-header {
  background-color: transparent;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.media .media-list li.media-list-header .media-date,
.media .media-list li.media-list-header .media-name,
.media .media-list li.media-list-header .media-content {
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .media .media-list li.media-list-header {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .media .media-list li.media-stagger-item .media-date::before,
  .media .media-list li.media-stagger-item .media-name::before,
  .media .media-list li.media-stagger-item .media-content::before {
    display: inline-block;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 0.7em;
    color: #999;
    width: 5em;
    letter-spacing: 0.1em;
    margin-bottom: 0.2em;
  }
  .media .media-list li.media-stagger-item .media-date::before {
    content: "発売日";
  }
  .media .media-list li.media-stagger-item .media-name::before {
    content: "媒体名";
  }
  .media .media-list li.media-stagger-item .media-content::before {
    content: "内容";
  }
}
.media .media-special-header {
  z-index: 2;
  position: relative;
  text-align: center;
  margin: 2em 0 2em;
  color: #FFF;
}
.media .media-special-header .media-special-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 1.4em;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0 0 0.8em;
}
@media screen and (max-width: 768px) {
  .media .media-special-header .media-special-title {
    font-size: 1.1em;
    line-height: 1.5;
  }
}
.media .media-special-header .media-special-lead {
  font-family: "Noto Serif JP", serif;
  font-size: 0.95em;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .media .media-special-header .media-special-lead {
    font-size: 0.85em;
  }
}
.media .media-list-tv li {
  padding: 10px 20px;
}
.media .media-list-tv li .media-area {
  width: 15%;
  flex-shrink: 0;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  color: #DA0A17;
}
@media screen and (max-width: 768px) {
  .media .media-list-tv li .media-area {
    width: 100%;
  }
}
.media .media-list-tv li .media-name {
  width: 30%;
  flex-shrink: 0;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .media .media-list-tv li .media-name {
    width: 100%;
  }
}
.media .media-list-tv li .media-airdate {
  width: 15%;
  flex-shrink: 0;
  font-feature-settings: "tnum";
}
@media screen and (max-width: 768px) {
  .media .media-list-tv li .media-airdate {
    width: 100%;
  }
}
.media .media-list-tv li .media-airtime {
  flex: 1;
  font-feature-settings: "tnum";
}
.media .media-list-tv li.media-list-header .media-area,
.media .media-list-tv li.media-list-header .media-name,
.media .media-list-tv li.media-list-header .media-airdate,
.media .media-list-tv li.media-list-header .media-airtime {
  color: #FFF;
}
.media .media-list-tv li.media-list-header .media-airdate {
  width: auto;
  flex: 1;
}
.media .media-list-tv li.media-list-header .media-airtime {
  display: none;
}
@media screen and (max-width: 768px) {
  .media .media-list-tv li {
    display: grid;
    grid-template-columns: 5.5em 9.5em 4em 1fr;
    -moz-column-gap: 0.4em;
         column-gap: 0.4em;
    align-items: baseline;
    padding: 0.7em 1em;
    font-size: 0.8em;
  }
  .media .media-list-tv li.media-list-header {
    display: grid;
    background: transparent;
    padding: 0.3em 1em 0.4em;
  }
  .media .media-list-tv li.media-list-header .media-area,
  .media .media-list-tv li.media-list-header .media-name,
  .media .media-list-tv li.media-list-header .media-airdate,
  .media .media-list-tv li.media-list-header .media-airtime {
    color: #FFF;
    font-weight: 700;
    font-size: 1em;
  }
  .media .media-list-tv li.media-list-header .media-airdate {
    grid-column: 3/5;
  }
  .media .media-list-tv li.media-list-header .media-airtime {
    display: none;
  }
  .media .media-list-tv li.media-stagger-item .media-area,
  .media .media-list-tv li.media-stagger-item .media-name,
  .media .media-list-tv li.media-stagger-item .media-airdate,
  .media .media-list-tv li.media-stagger-item .media-airtime {
    width: auto;
  }
  .media .media-list-tv li.media-stagger-item .media-area::before,
  .media .media-list-tv li.media-stagger-item .media-name::before,
  .media .media-list-tv li.media-stagger-item .media-airdate::before,
  .media .media-list-tv li.media-stagger-item .media-airtime::before {
    content: none;
    display: none;
  }
  .media .media-list-tv li.media-stagger-item .media-airtime {
    font-feature-settings: "tnum";
    min-width: 0;
  }
}

#media-list {
  padding: 120px 0 80px;
}

/*answer page--------------------*/
.answer-page {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #FFF;
}
.answer-page .answer-line {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.answer-page .answer-line img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .answer-page .answer-line img {
    max-width: unset;
    width: 250%;
  }
}
.answer-page .answer-page__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 50px 0;
}
@media screen and (max-width: 768px) {
  .answer-page .answer-page__inner {
    padding: 80px 20px 0;
  }
}

.answer-title {
  max-width: 800px;
  width: 80%;
  margin: 0 auto 120px;
}
@media screen and (max-width: 768px) {
  .answer-title {
    width: 80%;
    margin: 0 auto 80px;
  }
}
.answer-title img {
  display: block;
  width: 100%;
  height: auto;
}

.answer-quizzes {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media screen and (max-width: 768px) {
  .answer-quizzes {
    gap: 60px;
  }
}

.answer-quiz {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .answer-quiz {
    gap: 5px;
  }
}
.answer-quiz__image {
  border: solid 4px #FFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .answer-quiz__image {
    border-width: 3px;
  }
}
.answer-quiz__image img {
  display: block;
  width: 100%;
  height: auto;
}
.answer-quiz__answer {
  background-color: #FFF;
  color: #014696;
  padding: 30px 40px;
}
@media screen and (max-width: 768px) {
  .answer-quiz__answer {
    padding: 22px 24px;
  }
}
.answer-quiz__label {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 1.2em;
  color: #DA0A17;
  letter-spacing: 0.2em;
  margin-bottom: 0.4em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .answer-quiz__label {
    font-size: 0.85em;
  }
}
.answer-quiz__value {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 5em;
  color: #014696;
  line-height: 1;
  margin-bottom: 0.5em;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .answer-quiz__value {
    font-size: 2em;
  }
}
.answer-quiz__explain {
  font-size: 0.95em;
  line-height: 1.9;
  font-weight: 500;
  color: #014696;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .answer-quiz__explain {
    font-size: 0.9em;
    line-height: 1.8;
  }
}
.answer-quiz__strong {
  font-weight: 900;
  color: #DA0A17;
}

.answer-trailer {
  max-width: 1000px;
  margin: 100px auto 0;
}
@media screen and (max-width: 768px) {
  .answer-trailer {
    margin: 70px auto 0;
  }
}
.answer-trailer__title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  color: #FFF;
  font-size: 2.2em;
  letter-spacing: 0.15em;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  .answer-trailer__title {
    font-size: 1.5em;
  }
}
.answer-trailer .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.answer-trailer .youtube_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.answer-link {
  text-align: center;
  margin: 100px auto 80px;
}
@media screen and (max-width: 768px) {
  .answer-link {
    margin: 70px auto 60px;
  }
}
.answer-link a {
  display: inline-block;
  width: 505px;
  max-width: 90%;
  transition: 0.2s;
  line-height: 0;
}
.answer-link a img {
  display: block;
  width: 100%;
  height: auto;
}
.answer-link a:hover {
  opacity: 0.75;
  transform: translateY(1px);
}

.answer-footer {
  text-align: center;
  color: #FFF;
  padding: 20px 20px 60px;
}
@media screen and (max-width: 768px) {
  .answer-footer {
    padding: 10px 20px 50px;
  }
}
.answer-footer ul.policies {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.6em;
  margin: 0 auto 18px;
  font-size: 14px;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .answer-footer ul.policies {
    font-size: 12px;
    gap: 1.2em;
  }
}
.answer-footer ul.policies li a {
  color: #FFF;
  transition: 0.2s;
}
.answer-footer ul.policies li a:hover {
  opacity: 0.6;
}
.answer-footer .copyright-footer {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 12px;
  line-height: 1.4;
  color: #FFF;
}

/*-------------------------------*/
/*kansai quiz page---------------*/
.kansai-quiz {
  background-color: #FFF;
  color: #000000;
  border-radius: 4px;
  padding: 60px 70px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .kansai-quiz {
    padding: 36px 24px;
  }
}
.kansai-quiz__heading {
  text-align: center;
  padding-bottom: 28px;
  border-bottom: solid 2px #014696;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .kansai-quiz__heading {
    padding-bottom: 20px;
    margin-bottom: 28px;
  }
}
.kansai-quiz__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 2em;
  letter-spacing: 0.15em;
  line-height: 1.4;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 768px) {
  .kansai-quiz__title {
    font-size: 1.4em;
    letter-spacing: 0.1em;
  }
}
.kansai-quiz__subtitle {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 1.6em;
  letter-spacing: 0.15em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .kansai-quiz__subtitle {
    font-size: 1.2em;
  }
}
.kansai-quiz__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .kansai-quiz__list {
    gap: 36px;
  }
}
.kansai-quiz__item {
  line-height: 1.7;
  padding-left: 1em;
  border-left: solid 3px #014696;
}
@media screen and (max-width: 768px) {
  .kansai-quiz__item {
    padding-left: 0.8em;
    border-left-width: 2px;
  }
}
.kansai-quiz__num {
  display: inline-block;
  color: #014696;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 1.25em;
  letter-spacing: 0.05em;
  margin-right: 0.35em;
}
@media screen and (max-width: 768px) {
  .kansai-quiz__num {
    font-size: 1.1em;
    margin-right: 0.25em;
  }
}
.kansai-quiz__question {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 1.05em;
  color: #000000;
  margin-bottom: 0.3em;
}
@media screen and (max-width: 768px) {
  .kansai-quiz__question {
    font-size: 0.95em;
  }
}
.kansai-quiz__options {
  font-size: 0.95em;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .kansai-quiz__options {
    font-size: 0.9em;
  }
}
.kansai-quiz__answer {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 1.3em;
  color: #DA0A17;
  letter-spacing: 0.05em;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5em;
}
@media screen and (max-width: 768px) {
  .kansai-quiz__answer {
    font-size: 1.15em;
  }
}
.kansai-quiz__answer-label {
  display: inline-block;
  background-color: #DA0A17;
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 0.55em;
  letter-spacing: 0.15em;
  padding: 0.25em 0.6em 0.2em 0.75em;
  border-radius: 2px;
  line-height: 1;
  transform: translateY(-0.15em);
}
@media screen and (max-width: 768px) {
  .kansai-quiz__answer-label {
    font-size: 0.6em;
  }
}
.kansai-quiz--answer .kansai-quiz__heading {
  border-bottom-color: #DA0A17;
}
.kansai-quiz--answer .kansai-quiz__item {
  border-left-color: #DA0A17;
}
.kansai-quiz--answer .kansai-quiz__num {
  color: #DA0A17;
}

.kansai-quiz-cta {
  text-align: center;
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  .kansai-quiz-cta {
    margin: 40px auto 0;
  }
}
.kansai-quiz-cta__lead {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  color: #FFF;
  font-size: 1.2em;
  letter-spacing: 0.1em;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 768px) {
  .kansai-quiz-cta__lead {
    font-size: 1em;
  }
}
.kansai-quiz-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8em;
  min-width: 320px;
  max-width: 90%;
  padding: 1em 2em;
  background-color: #DA0A17;
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 1.1em;
  letter-spacing: 0.15em;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .kansai-quiz-cta__btn {
    min-width: 240px;
    font-size: 1em;
    padding: 0.9em 1.5em;
  }
}
.kansai-quiz-cta__btn:hover {
  opacity: 0.85;
  transform: translateY(1px);
}
.kansai-quiz-cta__btn-text {
  color: #FFF;
}
.kansai-quiz-cta__btn-arrow {
  font-size: 0.8em;
  transform: translateY(-1px);
}

/*-------------------------------*/
#comment {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(6, 0, 95, 0.32) 0%, rgba(0, 0, 0, 0) 100%);
}
#comment .section_inner {
  z-index: 2;
  position: relative;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  #comment .section_inner {
    padding: 80px 0;
  }
}
#comment .section_inner .section_main .block {
  max-width: 1100px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .block {
    margin: 0 auto 50px;
  }
}
#comment .section_inner .section_main .block:last-of-type {
  margin-bottom: 0;
}
#comment .section_inner .section_main .block .names {
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .block .names {
    flex-direction: column;
    align-items: flex-end;
  }
}
#comment .section_inner .section_main .block .names .role {
  display: flex;
  justify-content: center;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
#comment .section_inner .section_main .block .names .name {
  display: flex;
  justify-content: center;
}
#comment .section_inner .section_main .block_inner {
  background-color: #fff;
  padding: 40px 50px 50px;
}
@media screen and (max-width: 768px) {
  #comment .section_inner .section_main .block_inner {
    padding: 30px 20px 40px;
  }
}
#comment .section_inner .section_main .block_inner p.sub_title {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #DA0A17;
  margin-bottom: 0.5em;
}
#comment .section_inner .section_main .block_inner p {
  line-height: 2em;
  font-weight: 700;
  text-align: justify;
}
#comment .section_inner .section_main .block_inner p .color-r {
  color: #DA0A17;
  font-size: 1.3em;
}
#comment .section_inner .section_main .block_inner p .color-b {
  color: #014696;
  font-size: 1.3em;
}

#teaser_original .link_original a {
  background-color: #DA0A17;
  color: #FFF;
  text-align: center;
  display: block;
  width: 24em;
  max-width: 90%;
  margin: 0 auto 120px;
  height: 3em;
  line-height: 3em;
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #teaser_original .link_original a {
    margin: 0 auto 80px;
  }
}
#teaser_original .link_original a::after {
  content: "";
  z-index: -2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #DA0A17;
  height: 5em;
  width: 5em;
  border: solid 20px #DA0A17;
  border-radius: 50%;
  transition: 0.2s;
}
#teaser_original .link_original a {
  transition: 0.2s;
}
#teaser_original .link_original a:hover {
  color: #014696;
}
#teaser_original .link_original a:hover::after {
  transform: translate(-50%, -50%) scale(0.9);
}

.aka-maru, .ao-maru, .aka-batsu, .ao-batsu {
  color: #FFF;
  position: relative;
  width: 3em;
  height: 3em;
  font-size: 1.2em;
  display: inline-block;
  line-height: 3em;
  text-align: center;
  font-weight: 900;
}

.aka-maru:before {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #DA0A17;
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.aka-maru:after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.aka-maru.yaku {
  color: #014696;
}

.ao-maru:before {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #014696;
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ao-maru:after {
  content: "";
  background-color: #DA0A17;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.aka-batsu:before {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #DA0A17;
  clip-path: polygon(0 0, 100% 100%, 100% 0, 0 100%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.aka-batsu:after {
  content: "";
  background-color: #014696;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ao-batsu:before {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #014696;
  clip-path: polygon(0 0, 100% 100%, 100% 0, 0 100%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ao-batsu:after {
  content: "";
  background-color: #DA0A17;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.color-r {
  color: #DA0A17;
}

.color-b {
  color: #014696;
}/*# sourceMappingURL=style.css.map */