@charset "UTF-8";
/* @docs
label: Core Remedies
version: 0.1.0-beta.2
note: |
  These remedies are recommended
  as a starter for any project.
category: file
*/
/* @docs
label: Box Sizing
note: |
  Use border-box by default, globally.
category: global
*/
*, ::before, ::after {
  box-sizing: border-box;
}

/* @docs
label: Line Sizing
note: |
  Consistent line-spacing,
  even when inline elements have different line-heights.
links:
  - https://drafts.csswg.org/css-inline-3/#line-sizing-property
category: global
*/
html {
  line-sizing: normal;
}

/* @docs
label: Body Margins
note: |
  Remove the tiny space around the edge of the page.
category: global
*/
body {
  margin: 0;
}

/* @docs
label: Hidden Attribute
note: |
  Maintain `hidden` behaviour when overriding `display` values.
  category: global
*/
[hidden] {
  display: none;
}

/* @docs
label: Heading Sizes
note: |
  Switch to rem units for headings
category: typography
*/
h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.17rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.83rem;
}

h6 {
  font-size: 0.67rem;
}

/* @docs
label: H1 Margins
note: |
  Keep h1 margins consistent, even when nested.
category: typography
*/
h1 {
  margin: 0.67em 0;
}

/* @docs
label: Pre Wrapping
note: |
  Overflow by default is bad...
category: typography
*/
pre {
  white-space: pre-wrap;
}

/* @docs
label: Horizontal Rule
note: |
  1. Solid, thin horizontal rules
  2. Remove Firefox `color: gray`
  3. Remove default `1px` height, and common `overflow: hidden`
category: typography
*/
hr {
  border-style: solid;
  border-width: 1px 0 0;
  color: inherit;
  height: 0;
  overflow: visible;
}

/* @docs
label: Responsive Embeds
note: |
  1. Block display is usually what we want
  2. The `vertical-align` removes strange space-below in case authors overwrite the display value
  3. Responsive by default
  4. Audio without `[controls]` remains hidden by default
category: embedded elements
*/
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
  max-width: 100%;
}

audio:not([controls]) {
  display: none;
}

/* @docs
label: Responsive Images
note: |
  These new elements display inline by default,
  but that's not the expected behavior for either one.
  This can interfere with proper layout and aspect-ratio handling.
  1. Remove the unnecessary wrapping `picture`, while maintaining contents
  2. Source elements have nothing to display, so we hide them entirely
category: embedded elements
*/
picture {
  display: contents;
}

source {
  display: none;
}

/* @docs
label: Aspect Ratios
note: |
  Maintain intrinsic aspect ratios when `max-width` is applied.
  `iframe`, `embed`, and `object` are also embedded,
  but have no intrinsic ratio,
  so their `height` needs to be set explicitly.
category: embedded elements
*/
img, svg, video, canvas {
  height: auto;
}

/* @docs
label: Audio Width
note: |
  There is no good reason elements default to 300px,
  and audio files are unlikely to come with a width attribute.
category: embedded elements
*/
audio {
  width: 100%;
}

/* @docs
label: Image Borders
note: |
  Remove the border on images inside links in IE 10 and earlier.
category: legacy browsers
*/
img {
  border-style: none;
}

/* @docs
label: SVG Overflow
note: |
  Hide the overflow in IE 10 and earlier.
category: legacy browsers
*/
svg {
  overflow: hidden;
}

/* @docs
label: HTML5 Elements
note: |
  Default block display on HTML5 elements.
  For oldIE to apply this styling one needs to add some JS as well (i.e. `document.createElement("main")`)
links:
  - https://www.sitepoint.com/html5-older-browsers-and-the-shiv/
category: legacy browsers
*/
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

/* @docs
label: Checkbox & Radio Inputs
note: |
  1. Add the correct box sizing in IE 10
  2. Remove the padding in IE 10
category: legacy browsers
*/
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/*---------------------------------
  variable
---------------------------------*/
/* layout */
/* color */
/*---------------------------------
  mixin
---------------------------------*/
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  position: relative;
  font-size: 1.6rem;
  word-break: break-all;
  letter-spacing: 0.03em;
  color: #231815;
}
@media (min-width: 960px) {
  body {
    font-size: 2rem;
  }
}

img {
  display: inline;
  max-width: 100%;
  pointer-events: none;
  user-drag: none;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, figure {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

em {
  font-style: normal;
}

@media (min-width: 960px) {
  a:hover {
    opacity: 0.7;
    transition: all 0.3s;
  }
}

.sp {
  display: block;
}
@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

.tab {
  display: none;
}
@media (min-width: 768px) {
  .tab {
    display: block;
  }
}

.tab-only {
  display: none;
}
@media (min-width: 768px) {
  .tab-only {
    display: block;
  }
}
@media (min-width: 960px) {
  .tab-only {
    display: none;
  }
}

.tab-none {
  display: block;
}
@media (min-width: 768px) {
  .tab-none {
    display: none;
  }
}
@media (min-width: 960px) {
  .tab-none {
    display: block;
  }
}

.pc {
  display: none;
}
@media (min-width: 960px) {
  .pc {
    display: block;
  }
}

.pc-none {
  display: block;
}
@media (min-width: 960px) {
  .pc-none {
    display: none;
  }
}

.desktop {
  display: none;
}
@media (min-width: 1366px) {
  .desktop {
    display: block;
  }
}

.desktop-none {
  display: block;
}
@media (min-width: 1366px) {
  .desktop-none {
    display: none;
  }
}

/* contents */
.text:not(:last-of-type) {
  margin-bottom: 2rem;
}
@media (min-width: 960px) {
  .text:not(:last-of-type) {
    margin-bottom: 4rem;
  }
}
.text p {
  line-height: 1.8;
}

/*---------------------------------
  footer
---------------------------------*/
#footer {
  text-align: center;
  font-size: 1.4rem;
  padding: 20px 0;
  background-color: #000;
  color: #fff;
}
@media (min-width: 768px) {
  #footer {
    padding: 40px 0;
  }
}
#footer .foot_date {
  max-width: 200px;
  margin: 0 auto 20px;
}
@media (min-width: 768px) {
  #footer .foot_date {
    max-width: 500px;
    margin: 0 auto 30px;
  }
}

/*---------------------------------
  header
---------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
}
#header nav .menu a {
  text-decoration: none;
}
@media (max-width: 1366px) {
  #header .nav_trigger {
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 104;
    background: #0096D9;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  #header .nav_trigger span {
    display: block;
    width: 30px;
    height: 1px;
    background: #fff;
    margin: 7px auto;
    transition: all 0.3s ease;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  #header .nav_trigger .menu-label {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-align: center;
    transition: all 0.3s ease;
    width: auto;
    height: auto;
    background: inherit;
  }
  #header .nav_trigger.is-active span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
            transform: rotate(45deg) translate(5px, 5px);
  }
  #header .nav_trigger.is-active span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
  }
  #header .nav_trigger.is-active span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(6px, -6px);
            transform: rotate(-45deg) translate(6px, -6px);
  }
  #header .menu_box {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 103;
    background: #0096d9;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    transition: all 0.3s ease;
    overflow-y: auto;
  }
  #header .menu_box.is-active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  #header .menu_box .nav_logo {
    display: block;
    width: 100px;
    margin: 20px auto 60px;
  }
  #header .menu_box .menu {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding-bottom: 60px;
  }
  #header .menu_box .menu a {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  #header .menu_box .menu a:hover {
    opacity: 0.7;
  }
  #header .menu_box .sns {
    display: flex;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    justify-content: center;
    margin-top: 40px;
  }
  #header .menu_box .sns a {
    display: block;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
  }
  #header body.menu-open {
    overflow: hidden;
  }
}
@media (min-width: 1367px) {
  #header {
    background-color: rgba(255, 255, 255, 0.9);
  }
  #header .nav_trigger {
    display: none;
  }
  #header .menu_box {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #header .menu_box .nav_logo {
    display: none;
  }
  #header .menu_box .menu {
    display: flex;
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
    margin-right: 60px;
  }
  #header .menu_box .menu a {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #0096D9;
  }
  #header .menu_box .sns {
    display: flex;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  #header .menu_box .sns a {
    display: block;
    width: 32px;
  }
  #header .menu_box .sns a.link__x {
    width: 30px;
  }
}

/*---------------------------------
  hdg
---------------------------------*/
.ttl {
  text-align: center;
  margin-bottom: 60px;
}
.ttl.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}
.ttl.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.ttl span {
  display: block;
  font-size: 1.6rem;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .ttl span {
    font-size: 1.5rem;
  }
}
@media (min-width: 960px) {
  .ttl span {
    font-size: 2rem;
  }
}

/*---------------------------------
  animation
---------------------------------*/
.js-anime.slide_up {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
.js-anime.slide_up.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.js-anime.scale_up {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}
.js-anime.scale_up.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*---------------------------------
  loading
---------------------------------*/
#loading {
  position: fixed;
  inset: 0;
  z-index: 102;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
}
#loading.is-show {
  opacity: 1;
  transition: opacity 0.6s;
}
#loading.is-hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s;
}
#loading #loading_item {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  transition: opacity 0.8s, -webkit-transform 0.6s;
  transition: opacity 0.8s, transform 0.6s;
  transition: opacity 0.8s, transform 0.6s, -webkit-transform 0.6s;
}
#loading #loading_item span {
  display: block;
  width: 100px;
}
@media (min-width: 960px) {
  #loading #loading_item span {
    width: 200px;
  }
}
#loading.item-in #loading_item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
}
#loading.item-leave #loading_item {
  opacity: 0;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
}

#main {
  background-color: #F8FCFE;
}
#main .con_inner {
  max-width: 1080px;
  width: auto;
  padding: 20px;
  margin: 0 auto;
}
@media (min-width: 1366px) {
  #main .con_inner {
    width: 70%;
    max-width: none;
  }
}

/*---------------------------------
  kv
---------------------------------*/
#kv {
  background: url(/asset/images/top/kv_sp.jpg) no-repeat center;
  background-size: cover;
  height: 820px;
}
@media (min-width: 430px) {
  #kv {
    height: 208.65vw;
  }
}
@media (min-width: 768px) {
  #kv {
    background: url(/asset/images/top/kv_pc.webp) no-repeat center;
    background-size: cover;
    height: 65.89vw;
  }
}
#kv .inner {
  padding-top: 70px;
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
  height: 820px;
}
@media (min-width: 430px) {
  #kv .inner {
    height: 208.65vw;
  }
}
@media (min-width: 768px) {
  #kv .inner {
    padding-top: 5.12vw;
    margin-left: 0;
    margin-right: 0;
    height: 65.89vw;
  }
}
#kv .inner .main_ttl {
  margin-bottom: 20px;
  margin-left: auto;
  mix-blend-mode: multiply;
}
@media (min-width: 430px) {
  #kv .inner .main_ttl {
    max-width: 89.57vw;
  }
}
@media (min-width: 768px) {
  #kv .inner .main_ttl {
    width: 45.97vw;
    margin-bottom: 1.46vw;
    margin-left: auto;
    margin-right: 7.32vw;
  }
}
#kv .inner .main_ttl.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1.5s;
  transition-delay: 0.6s;
  -webkit-transform: translate(0, -30px);
          transform: translate(0, -30px);
}
#kv .inner .main_ttl.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#kv .inner .main_ttl h1 span {
  text-align: right;
}
#kv .inner .main_ttl h1 span img {
  width: 100%;
  max-width: none;
}
#kv .inner .release_date {
  text-align: right;
  margin-top: 10vw;
}
@media (min-width: 768px) {
  #kv .inner .release_date {
    margin-right: 3.66vw;
    margin-top: 3vw;
  }
}
#kv .inner .release_date img {
  width: 100%;
  max-width: none;
  mix-blend-mode: multiply;
}
#kv .inner .release_date .first {
  margin-bottom: 20px;
  margin-left: auto;
  width: 25.95vw;
}
@media (min-width: 768px) {
  #kv .inner .release_date .first {
    width: 12.08vw;
    margin-bottom: 1.46vw;
  }
}
#kv .inner .release_date .all {
  margin-left: auto;
  width: 33vw;
}
@media (min-width: 768px) {
  #kv .inner .release_date .all {
    width: 16vw;
  }
}
#kv .inner .txt01 {
  position: absolute;
  top: 200px;
  left: 60px;
  mix-blend-mode: multiply;
}
@media (min-width: 430px) {
  #kv .inner .txt01 {
    top: 50.89vw;
    left: 15.27vw;
    width: 11.34vw;
  }
}
@media (min-width: 768px) {
  #kv .inner .txt01 {
    top: 13vw;
    left: 21vw;
    width: 5.12vw;
  }
}
#kv .inner .txt01.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transition-delay: 1s;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}
#kv .inner .txt01.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}
#kv .inner .txt01 img {
  width: 100%;
  max-width: none;
}
#kv .inner .txt02 {
  position: absolute;
  top: 250px;
  left: 190px;
  mix-blend-mode: multiply;
}
@media (min-width: 430px) {
  #kv .inner .txt02 {
    top: 63.61vw;
    left: 48.35vw;
    width: 11.34vw;
  }
}
@media (min-width: 768px) {
  #kv .inner .txt02 {
    top: 38vw;
    left: 67vw;
    width: 5.12vw;
  }
}
#kv .inner .txt02.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transition-delay: 1.2s;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}
#kv .inner .txt02.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}
#kv .inner .txt02 img {
  width: 100%;
  max-width: none;
}
#kv .inner .credit {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  position: absolute;
  right: 0;
  bottom: 20px;
}
@media (min-width: 768px) {
  #kv .inner .credit {
    color: #000;
    margin-right: 3.66vw;
    bottom: 1.46vw;
  }
}
@media (min-width: 960px) {
  #kv .inner .credit {
    font-size: 1.5rem;
  }
}
#kv .inner .credit.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#kv .inner .credit.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#kv .inner .news_banner {
  width: 11.71vw;
  position: absolute;
  top: 7.91vw;
  left: 2.2vw;
}
@media (min-width: 1366px) {
  #kv .inner .news_banner {
    width: 200px;
  }
}
#kv .inner .news_banner.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transition-delay: 1.4s;
}
#kv .inner .news_banner.js-anime.is-active {
  opacity: 1;
  visibility: visible;
}
#kv .inner .news_banner a {
  display: block;
  margin-bottom: 20px;
}

/*---------------------------------
  banner
---------------------------------*/
#banner {
  margin-top: 20px;
  margin-bottom: 60px;
}
#banner .news_banner {
  margin: 0 auto 20px;
}
@media (min-width: 960px) {
  #banner .news_banner {
    margin: 0 auto 60px;
  }
}
#banner .news_banner a {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
#banner .news_banner_novel {
  margin-bottom: 40px;
}
#banner .news_banner_novel a {
  display: block;
  text-align: center;
  margin: 0 auto 20px;
}
@media (min-width: 960px) {
  #banner .news_banner_novel a {
    width: 360px;
  }
}
#banner .news_note {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 960px) {
  #banner .news_note {
    margin-bottom: 60px;
  }
}
#banner .news_note a {
  color: #0096D9;
  display: block;
  border: 3px solid #0096D9;
  background-color: #e4f5f8;
  padding: 2rem;
  text-decoration: none;
  max-width: 360px;
  margin: 0 auto;
}
#banner .widgets #mvtk-widgets-container {
  margin: 0 auto;
}
#banner .widgets ul {
  display: flex;
  justify-content: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  max-width: 560px;
  margin: 40px auto 0;
}
#banner .widgets ul li a {
  display: block;
}

/*---------------------------------
  trailer
---------------------------------*/
#trailer {
  padding-top: 50px;
}
@media (min-width: 960px) {
  #trailer {
    padding-top: 100px;
  }
}
#trailer .ttl {
  color: #0096D9;
}
#trailer .trailer_ttl {
  text-align: center;
  color: #0096D9;
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  #trailer .trailer_ttl {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
}

/* youtube-modal */
#youtube-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 105;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#youtube-modal.is-active {
  opacity: 1;
  visibility: visible;
}
#youtube-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
  transition: background 0.4s ease;
}
#youtube-modal.is-active .modal-overlay {
  background: rgba(0, 0, 0, 0.8);
}
#youtube-modal .modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 2;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
}
@media (min-width: 430px) {
  #youtube-modal .modal-content {
    width: 95%;
    margin: 20px;
  }
}
#youtube-modal.is-active .modal-content {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
#youtube-modal .modal-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 0;
}
#youtube-modal .modal-header .modal-close {
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border: 1px solid #fff;
  background-color: #0096D9;
}
@media (min-width: 768px) {
  #youtube-modal .modal-header .modal-close {
    width: 60px;
    height: 60px;
  }
}
#youtube-modal .modal-header .modal-close::before, #youtube-modal .modal-header .modal-close::after {
  content: "";
  position: absolute;
  background: #fff;
  transition: background 0.2s ease;
}
#youtube-modal .modal-header .modal-close::before {
  width: 2px;
  height: 16px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (min-width: 768px) {
  #youtube-modal .modal-header .modal-close::before {
    width: 3px;
    height: 32px;
  }
}
#youtube-modal .modal-header .modal-close::after {
  width: 2px;
  height: 16px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 768px) {
  #youtube-modal .modal-header .modal-close::after {
    width: 3px;
    height: 32px;
  }
}
#youtube-modal .modal-header .modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
}
#youtube-modal .modal-header .modal-close:hover::before, #youtube-modal .modal-header .modal-close:hover::after {
  background: #fff;
}
#youtube-modal .modal-body .video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
#youtube-modal .modal-body .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* youtube-section */
#youtube-section {
  padding: 0 15px;
  margin-bottom: 60px;
}
@media (min-width: 960px) {
  #youtube-section {
    margin-bottom: 100px;
  }
}
#youtube-section .video-tabs {
  max-width: 1080px;
  margin: 16px auto 0;
}
#youtube-section .video-tabs .tab-list {
  display: flex;
  gap: 1.3333333333%;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 960px) {
  #youtube-section .video-tabs .tab-list {
    gap: 2%;
  }
}
#youtube-section .video-tabs .tab-list li {
  width: 32%;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  #youtube-section .video-tabs .tab-list li {
    margin-bottom: 10px;
  }
}
@media (min-width: 960px) {
  #youtube-section .video-tabs .tab-list li {
    width: 18%;
    margin-bottom: 0;
  }
}
#youtube-section .video-tabs .tab-list .tab-button {
  background: #fff;
  color: #0096D9;
  border: 1px solid #0096D9;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border-radius: 4px;
}
@media (min-width: 960px) {
  #youtube-section .video-tabs .tab-list .tab-button {
    font-size: 2rem;
  }
}
#youtube-section .video-tabs .tab-list .tab-button.is-active {
  background: #0096D9;
  color: #fff;
}
@media (min-width: 960px) {
  #youtube-section .video-tabs .tab-list .tab-button:hover {
    background-color: #0096D9;
    color: #fff;
  }
}
#youtube-section .video-panels {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}
#youtube-section .video-panels .panel {
  opacity: 1;
  transition: opacity 0.35s ease;
}
#youtube-section .video-panels.is-layered .panel {
  position: absolute;
  inset: 0;
  opacity: 0;
}
#youtube-section .video-panels.is-layered .panel.is-active {
  opacity: 1;
}
#youtube-section .video-panels.is-layered .panel.is-entering {
  opacity: 0.01;
}
#youtube-section .video-panels.is-layered .panel.is-leaving {
  opacity: 0;
  pointer-events: none;
}
#youtube-section .video-panels .panel[hidden] {
  display: none;
}
#youtube-section .video-container {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
#youtube-section .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/*---------------------------------
  introduction
---------------------------------*/
#introduction {
  background: url(/asset/images/top/introduction_bg.webp) no-repeat center bottom;
  background-size: cover;
  color: #fff;
  padding-top: 50px;
}
@media (min-width: 960px) {
  #introduction {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
#introduction .ttl {
  color: #fff;
}
#introduction .lead {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 2;
}
@media (min-width: 960px) {
  #introduction .lead {
    font-size: 3.2rem;
    margin-bottom: 60px;
  }
}
#introduction .lead strong {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 2rem;
}
@media (min-width: 960px) {
  #introduction .lead strong {
    font-size: 3.2rem;
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) {
  #introduction .lead02 {
    text-align: center;
  }
}
@media (min-width: 960px) {
  #introduction .lead02 {
    font-size: 2.4rem;
    margin-bottom: 80px;
    line-height: 2;
  }
}
@media (min-width: 960px) {
  #introduction .text {
    margin-bottom: 80px;
  }
}
#introduction .ph {
  margin-bottom: 2rem;
}
@media (min-width: 960px) {
  #introduction .ph {
    margin-bottom: 80px;
  }
}
#introduction .ph._flex {
  display: flex;
  gap: 20px;
}
@media (min-width: 960px) {
  #introduction .ph._flex {
    gap: 40px;
  }
}

/*---------------------------------
  story
---------------------------------*/
#story .bg {
  background: url(/asset/images/top/story_bg.webp) no-repeat center bottom;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 960px) {
  #story .bg {
    background: url(/asset/images/top/story_bg.webp) no-repeat center;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
#story .ttl {
  color: #000;
}
#story .con {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
}
@media (min-width: 960px) {
  #story .con {
    padding: 60px;
  }
}
#story .con .lead {
  text-align: center;
  line-height: 1.6;
  margin-bottom: 2rem;
}
@media (min-width: 960px) {
  #story .con .lead {
    margin-bottom: 50px;
  }
}
#story .con .lead strong {
  font-size: 2rem;
}
@media (min-width: 960px) {
  #story .con .lead strong {
    font-size: 3.2rem;
    letter-spacing: 0.1em;
  }
}
@media (min-width: 960px) {
  #story .con .text p {
    line-height: 2;
  }
}
#story .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 10px 0;
}
@media (min-width: 960px) {
  #story .items {
    padding: 20px;
    gap: 20px;
  }
}
#story .items .item {
  width: 49%;
  margin-bottom: 15px;
}
#story .items .item:last-of-type {
  width: 100%;
}
@media (min-width: 960px) {
  #story .items .item {
    width: calc(33.3333333333% - 15px);
    margin-bottom: 0;
  }
  #story .items .item:last-of-type {
    width: calc(33.3333333333% - 15px);
  }
}
#story .items .item img {
  width: 100%;
}

/*---------------------------------
  cast
---------------------------------*/
#cast {
  background: url(/asset/images/top/cast_bg.jpg) no-repeat center bottom;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 960px) {
  #cast {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
#cast .ttl {
  color: #0096D9;
}
#cast .item .cast_button {
  border: 1px solid #0096D9;
  position: relative;
  cursor: pointer;
}
@media (min-width: 960px) {
  #cast .item .cast_button {
    transition: 0.3s;
  }
  #cast .item .cast_button:hover {
    opacity: 0.7;
  }
}
#cast .item .cast_button .btn {
  background: rgba(0, 150, 217, 0.9);
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 0.5rem;
  letter-spacing: 0.1em;
}
@media (min-width: 960px) {
  #cast .item .cast_button .btn {
    font-size: 2.2rem;
  }
}
#cast .item .cast_button .btn::before {
  content: "＋";
  position: absolute;
  right: 5px;
  font-weight: 700;
}
#cast .item .cap {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 1rem;
}
#cast .item .cap span {
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
}
#cast .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 768px) {
  #cast .items {
    justify-content: center;
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
  }
}
#cast .items .item {
  width: 48%;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  #cast .items .item {
    width: 320px;
    margin-bottom: 50px;
  }
}
#cast .item.center {
  width: 70%;
  margin: 0 auto 25px;
}
@media (min-width: 768px) {
  #cast .item.center {
    width: 320px;
    margin: 0 auto 50px;
  }
}

/* cast-modal */
.cast-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 105;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.cast-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.cast-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 150, 217, 0.9);
  cursor: pointer;
  transition: background 0.4s ease;
}
.cast-modal.is-active .modal-overlay {
  background: rgba(0, 150, 217, 0.9);
}
.cast-modal .modal-content {
  position: relative;
  width: 92%;
  max-width: 1180px;
  overflow: hidden;
  max-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  z-index: 2;
  -webkit-transform: scale(0.96);
          transform: scale(0.96);
  opacity: 0;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
}
@media (min-width: 430px) {
  .cast-modal .modal-content {
    width: 95%;
    margin: 20px;
  }
}
.cast-modal.is-active .modal-content {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.cast-modal .modal-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 10px;
}
.cast-modal .modal-header .modal-close {
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  width: 50px;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background-color: inherit;
}
@media (min-width: 768px) {
  .cast-modal .modal-header .modal-close {
    width: 48px;
    height: 48px;
  }
}
.cast-modal .modal-header .modal-close::before, .cast-modal .modal-header .modal-close::after {
  content: "";
  position: absolute;
  background: #fff;
}
.cast-modal .modal-header .modal-close::before {
  width: 2px;
  height: 56px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.cast-modal .modal-header .modal-close::after {
  width: 2px;
  height: 56px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.cast-modal .modal-body {
  background: #fff;
  padding: 20px;
  overflow-y: auto;
  flex: 1 1 auto;
  height: auto;
}
@media (min-width: 768px) {
  .cast-modal .modal-body {
    padding: 60px 60px 70px;
  }
}
.cast-modal .modal-body .cast_ttl {
  margin-bottom: 20px;
  color: #0096D9;
}
.cast-modal .modal-body .cast_ttl h3 {
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  .cast-modal .modal-body .cast_ttl h3 {
    font-size: 3.6rem;
  }
}
.cast-modal .modal-body .cast_ttl h3 .small {
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .cast-modal .modal-body .cast_ttl h3 .small {
    font-size: 2.4rem;
  }
}
.cast-modal .modal-body .cast_ttl p.en {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .cast-modal .modal-body .cast_ttl p.en {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  .cast-modal .modal-body .text p {
    font-size: 2rem;
  }
}
.cast-modal .modal-body .profile {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .cast-modal .modal-body .profile {
    margin-top: 60px;
  }
}
.cast-modal .modal-body .profile h4 {
  color: #0096D9;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .cast-modal .modal-body .profile h4 {
    font-size: 2.4rem;
  }
}
.cast-modal .modal-body .profile .text p {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .cast-modal .modal-body .profile .text p {
    font-size: 1.6rem;
  }
}

/*---------------------------------
  staff
---------------------------------*/
#staff {
  background: url(/asset/images/top/staff_bg.jpg) no-repeat left bottom;
  background-size: cover;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 960px) {
  #staff {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
#staff .ttl {
  color: #0096D9;
}
#staff .staff_button {
  border: 1px solid #0096D9;
  position: relative;
  cursor: pointer;
  background-color: #fff;
  text-align: center;
  padding: 30px 10px 70px;
  color: #0096D9;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media (min-width: 960px) {
  #staff .staff_button {
    padding: 50px 10px 90px;
    transition: 0.3s;
  }
  #staff .staff_button:hover {
    opacity: 0.7;
  }
}
@media (min-width: 960px) {
  #staff .staff_button p {
    font-size: 2.4rem;
  }
}
#staff .staff_button p span {
  font-size: 1.2rem;
  margin-right: 1rem;
}
@media (min-width: 960px) {
  #staff .staff_button p span {
    font-size: 2rem;
  }
}
#staff .staff_button .btn {
  background: rgba(0, 150, 217, 0.9);
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 0.5rem;
  letter-spacing: 0.1em;
}
@media (min-width: 960px) {
  #staff .staff_button .btn {
    font-size: 2.2rem;
  }
}
#staff .staff_button .btn::before {
  content: "＋";
  position: absolute;
  right: 5px;
  font-weight: 700;
}
#staff .song {
  margin-bottom: 80px;
}
@media (min-width: 960px) {
  #staff .song {
    margin-bottom: 100px;
  }
}
#staff .song .item {
  max-width: 660px;
  margin: 0 auto;
}
#staff .staff {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  #staff .staff {
    margin-bottom: 100px;
  }
}
#staff .staff .items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  #staff .staff .items {
    flex-direction: row;
    margin-bottom: 60px;
  }
}
@media (min-width: 1366px) {
  #staff .staff .items {
    gap: 120px;
  }
}
@media (min-width: 768px) {
  #staff .staff .items .item {
    width: 100%;
  }
}
#staff .staff .items.only {
  justify-content: center;
}
@media (min-width: 768px) {
  #staff .staff .items.only .item {
    width: 550px;
  }
}

/* staff-modal */
.staff-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 105;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.staff-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.staff-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 150, 217, 0.9);
  cursor: pointer;
  transition: background 0.4s ease;
}
.staff-modal.is-active .modal-overlay {
  background: rgba(0, 150, 217, 0.9);
}
.staff-modal .modal-content {
  position: relative;
  width: 92%;
  max-width: 1180px;
  overflow: hidden;
  max-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  z-index: 2;
  -webkit-transform: scale(0.96);
          transform: scale(0.96);
  opacity: 0;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
}
@media (min-width: 430px) {
  .staff-modal .modal-content {
    width: 95%;
    margin: 20px;
  }
}
.staff-modal.is-active .modal-content {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.staff-modal .modal-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 10px;
}
.staff-modal .modal-header .modal-close {
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  width: 50px;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background-color: inherit;
}
@media (min-width: 768px) {
  .staff-modal .modal-header .modal-close {
    width: 48px;
    height: 48px;
  }
}
.staff-modal .modal-header .modal-close::before, .staff-modal .modal-header .modal-close::after {
  content: "";
  position: absolute;
  background: #fff;
}
.staff-modal .modal-header .modal-close::before {
  width: 2px;
  height: 56px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.staff-modal .modal-header .modal-close::after {
  width: 2px;
  height: 56px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.staff-modal .modal-body {
  background: #fff;
  padding: 40px 20px;
  overflow-y: auto;
  flex: 1 1 auto;
  height: auto;
}
@media (min-width: 768px) {
  .staff-modal .modal-body {
    padding: 60px 60px 70px;
  }
}
.staff-modal .modal-body .song_ttl {
  margin-bottom: 20px;
  color: #0096D9;
  text-align: center;
}
.staff-modal .modal-body .song_ttl h3 {
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .staff-modal .modal-body .song_ttl h3 {
    font-size: 3.4rem;
    margin-bottom: 20px;
  }
}
.staff-modal .modal-body .song_ttl h3 .small {
  font-size: 1.4rem;
  margin-right: 1rem;
  display: block;
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  .staff-modal .modal-body .song_ttl h3 .small {
    font-size: 2.4rem;
  }
}
.staff-modal .modal-body .song_ttl p.lead {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .staff-modal .modal-body .song_ttl p.lead {
    font-size: 2rem;
    font-weight: 500;
  }
}
.staff-modal .modal-body .staff_ttl {
  margin-bottom: 20px;
  color: #0096D9;
}
.staff-modal .modal-body .staff_ttl h3 {
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .staff-modal .modal-body .staff_ttl h3 {
    font-size: 3.6rem;
  }
}
.staff-modal .modal-body .staff_ttl h3 .small {
  font-size: 1.4rem;
  margin-right: 1rem;
}
@media (min-width: 768px) {
  .staff-modal .modal-body .staff_ttl h3 .small {
    font-size: 2.4rem;
  }
}
.staff-modal .modal-body .staff_ttl p.en {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .staff-modal .modal-body .staff_ttl p.en {
    font-size: 1.6rem;
  }
}
.staff-modal .modal-body .text h4 {
  color: #0096D9;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .staff-modal .modal-body .text h4 {
    margin-bottom: 1rem;
    font-size: 2.4rem;
  }
}
@media (min-width: 768px) {
  .staff-modal .modal-body .text p {
    font-size: 2rem;
  }
}
.staff-modal .modal-body .profile {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .staff-modal .modal-body .profile {
    margin-top: 60px;
  }
}
.staff-modal .modal-body .profile h4 {
  color: #0096D9;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-size: 2rem;
}
.staff-modal .modal-body .profile .text p {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .staff-modal .modal-body .profile .text p {
    font-size: 1.6rem;
  }
}
.staff-modal .modal-body .ph {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .staff-modal .modal-body .ph {
    width: 80%;
    margin: 0 auto 60px;
  }
}
.staff-modal .modal-body .ph img {
  border: 1px solid #707070;
}

/*---------------------------------
  billing
---------------------------------*/
#billing {
  color: #fff;
  text-align: center;
}
#billing .txt_cast p {
  font-weight: 500;
}
#billing .txt_cast .main {
  font-size: 2.4rem;
}
#billing .txt_staff p {
  font-size: 1.4rem;
}
#billing .txt_production p {
  font-size: 1.2rem;
}

/*---------------------------------
  news
---------------------------------*/
#news {
  background: url(/asset/images/news/news_bg.jpg) no-repeat center bottom fixed;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  #news {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
#news .ttl {
  color: #fff;
}
#news .news_con {
  padding: 0 20px;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  #news .news_con {
    margin-bottom: 100px;
  }
}
#news .news_con .inner {
  max-width: 1080px;
  background-color: #fff;
  margin: 0 auto;
  padding: 40px 30px 60px;
  position: relative;
}
@media (min-width: 768px) {
  #news .news_con .inner {
    padding: 80px 60px;
  }
}
#news .news_con .inner::before {
  content: "";
  display: block;
  background: url(/asset/images/icon_trum_mae.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  left: 20px;
  top: -40px;
  width: 60px;
  height: 60px;
}
@media (min-width: 768px) {
  #news .news_con .inner::before {
    left: 30px;
    top: -40px;
    width: 80px;
    height: 80px;
  }
}
#news .news_con .date {
  margin-bottom: 20px;
}
#news .news_con h3 {
  font-size: 1.8rem;
  color: #0096D9;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #news .news_con h3 {
    margin-bottom: 40px;
    font-size: 2.2rem;
  }
}
#news .news_con h4 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  #news .news_con h4 {
    font-size: 2rem;
  }
}
#news .news_con h4 .sub {
  font-size: 80%;
}
#news .news_con h5 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  #news .news_con h5 {
    font-size: 1.6rem;
  }
}
#news .news_con p a {
  color: #0096D9;
}
#news .news_con p.note {
  font-size: 1.2rem;
  margin-top: 1rem;
}
#news .news_con p.note._mark {
  text-indent: -1em;
  padding-left: 1em;
  color: #f00;
}
@media (min-width: 768px) {
  #news .news_con p.note {
    font-size: 1.6rem;
  }
}
@media (max-width: 520px) {
  #news .news_con p span.block {
    display: block;
  }
}
#news .news_con .atn_color {
  color: #f00;
}
#news .news_con ul.atn {
  margin-left: 2rem;
  margin-bottom: 40px;
}
#news .news_con ul.atn li {
  list-style-type: disc;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  #news .news_con ul.atn li {
    font-size: 1.6rem;
  }
}
#news .news_con ul a {
  color: #0096D9;
}
#news .news_con .note_box {
  background-color: #f7f7f7;
  padding: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  #news .news_con .note_box {
    padding: 2rem;
  }
}
#news .news_con .list {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  #news .news_con .list {
    display: flex;
  }
}
#news .news_con .list dt {
  background-color: #eee;
  padding: 0.5rem;
}
@media (min-width: 768px) {
  #news .news_con .list dt {
    width: 10rem;
    flex: none;
    display: flex;
    align-items: center;
    margin-right: 1rem;
  }
}
#news .news_con .list dd {
  padding: 1rem 0.5rem;
}
#news .news_con .img {
  margin-top: 20px;
  margin-bottom: 40px;
}
#news #news20251030 .img.mvtk_img {
  width: 70%;
  margin: 40px auto 0;
}
@media (min-width: 768px) {
  #news #news20251030 .img.mvtk_img {
    width: 320px;
    margin: 40px 0 0 0;
  }
}
#news #news20251020 .img {
  max-width: 220px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #news #news20251020 .img {
    margin: 0;
  }
}
#news #news20251113 .img_main {
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #news #news20251113 .img_main {
    margin-bottom: 40px;
  }
}
#news #news20251113 .img {
  text-align: center;
  width: calc(33.3333333333% - 10px);
}
@media (min-width: 768px) {
  #news #news20251113 .img {
    width: calc(33.3333333333% - 10px);
  }
}
#news #news20251113 .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
#news #news20251113 .items._single {
  justify-content: center;
}
#news #news20251113_2 .img {
  margin: 40px auto 0;
}
@media (min-width: 768px) {
  #news #news20251113_2 .img {
    max-width: 650px;
  }
}
#news #news20251204_campaign .present {
  background-color: #0096D9;
  color: #fff;
  font-weight: 600;
  padding: 2rem 4rem;
  border-radius: 10px;
  display: inline-block;
}
@media (min-width: 768px) {
  #news #news20251204_campaign .present ul {
    margin-left: 1rem;
  }
}
#news #news20251204_campaign .present ul li {
  list-style-type: disc;
  margin-bottom: 1rem;
}
#news #news20251204_campaign .present .small {
  font-size: 70%;
}
@media (min-width: 768px) {
  #news #news20251211 .img, #news #news20251223_repo .img {
    width: 60%;
    margin: 20px auto 40px;
  }
}
#news #news20251211 .items, #news #news20251223_repo .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
#news #news20251211 .items._single, #news #news20251223_repo .items._single {
  justify-content: center;
}
#news #news20251211 .items .img, #news #news20251223_repo .items .img {
  text-align: center;
  width: calc(50% - 10px);
}
@media (min-width: 768px) {
  #news #news20251211 .items .img, #news #news20251223_repo .items .img {
    width: calc(50% - 10px);
  }
}
#news #attention_page h3 {
  text-align: center;
}
#news .attention_logo {
  width: 160px;
  margin: 0 auto 70px;
}
@media (min-width: 768px) {
  #news .attention_logo {
    width: 300px;
    margin: 0 auto 60px;
  }
}

/*---------------------------------
  theatre
---------------------------------*/
#theatre {
  background-color: #0096D9;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  #theatre {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
#theatre .inner {
  margin: 0 10px;
}
@media (min-width: 960px) {
  #theatre .inner {
    margin: 0 5%;
  }
}
@media (min-width: 1366px) {
  #theatre .inner {
    max-width: 1100px;
    margin: 0 auto;
  }
}
#theatre .ttl {
  color: #fff;
}
#theatre .note {
  text-align: center;
  margin-bottom: 60px;
}
#theatre .note span {
  display: inline-block;
  background-color: #fff;
  color: #f00;
  font-size: 1.4rem;
  padding: 0.5rem;
}
@media (min-width: 960px) {
  #theatre .note span {
    font-size: 1.6rem;
  }
}
#theatre .atn {
  color: #fff;
  text-align: center;
}
#theatre .theatre_nav {
  max-width: 1100px;
  margin: 0 auto 40px;
}
#theatre .theatre_nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
@media (min-width: 960px) {
  #theatre .theatre_nav ul {
    justify-content: center;
    gap: 1%;
  }
}
#theatre .theatre_nav ul li {
  width: 32%;
  margin-bottom: 2%;
}
@media (min-width: 960px) {
  #theatre .theatre_nav ul li {
    width: 13.2857142857%;
  }
}
#theatre .theatre_nav ul li a {
  display: block;
  background-color: #fff;
  color: #0096D9;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem 0 2rem;
  border-radius: 4px;
  position: relative;
}
#theatre .theatre_nav ul li a::after {
  content: "";
  display: block;
  width: 16px;
  height: 8px;
  background-color: #0096D9;
  clip-path: polygon(100% 15%, 50% 100%, 0 15%, 0 0, 50% 85%, 100% 0);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 8px;
}
@media (min-width: 960px) {
  #theatre .theatre_nav ul li a {
    font-size: 1.6rem;
    padding: 1.5rem 0 2rem;
  }
}
#theatre .theater_area {
  padding-top: 60px;
}
@media (min-width: 960px) {
  #theatre .theater_area {
    padding-top: 80px;
  }
}
#theatre .theater_area h3 {
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
  font-size: 2.4rem;
}
#theatre .theater_area .theater_table_wrap {
  overflow-x: auto;
}
#theatre .theater_area .theater_table {
  width: 800px;
  background-color: #fff;
  border-collapse: collapse;
  border-spacing: 0;
}
@media (min-width: 960px) {
  #theatre .theater_area .theater_table {
    width: 100%;
  }
}
#theatre .theater_area .theater_table th, #theatre .theater_area .theater_table td {
  text-align: center;
}
#theatre .theater_area .theater_table th {
  background-color: #C7E8FA;
  color: #20313b;
  padding: 1rem 0.5rem;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  #theatre .theater_area .theater_table th {
    padding: 1.5rem 0.5rem;
    font-size: 1.6rem;
  }
  #theatre .theater_area .theater_table th:nth-child(1) {
    width: 10%;
  }
  #theatre .theater_area .theater_table th:nth-child(2) {
    width: 40%;
  }
  #theatre .theater_area .theater_table th:nth-child(3) {
    width: 15%;
  }
  #theatre .theater_area .theater_table th:nth-child(4) {
    width: 15%;
  }
  #theatre .theater_area .theater_table th:nth-child(5) {
    width: 10%;
  }
  #theatre .theater_area .theater_table th:nth-child(6) {
    width: 10%;
  }
}
#theatre .theater_area .theater_table td {
  border-bottom: 1px solid #ccc;
  padding: 1rem 0.5rem;
}
@media (min-width: 768px) {
  #theatre .theater_area .theater_table td {
    padding: 2rem 0.5rem;
    font-size: 1.6rem;
  }
}
#theatre .theater_area .theater_table td a {
  color: #0096D9;
}