/* @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
---------------------------------*/
/* drop_shodow */
/* color */
/* font */
/* layout */
/*---------------------------------
  mixin
---------------------------------*/
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  position: relative;
  color: #fff;
  background-color: #000;
  font-size: 1.4rem;
}
@media (min-width: 1180px) {
  body {
    font-size: 1.6rem;
  }
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #000;
  text-align: center;
}

#loading_box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#loading .kvArea {
  width: 100%;
}
#loading .kvArea img {
  width: 60px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  #loading .kvArea img {
    width: auto;
    max-width: 100px;
  }
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 1;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}
img {
  display: inline;
}

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: 1180px) {
  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: 1180px) {
  .tab-only {
    display: none;
  }
}

.tab-none {
  display: block;
}
@media (min-width: 768px) {
  .tab-none {
    display: none;
  }
}
@media (min-width: 1180px) {
  .tab-none {
    display: block;
  }
}

.pc {
  display: none;
}
@media (min-width: 1180px) {
  .pc {
    display: block;
  }
}

.pc-none {
  display: block;
}
@media (min-width: 1180px) {
  .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;
  }
}

/* container */
.container {
  max-width: 1180px;
  margin: 0 20px;
}
@media (min-width: 768px) {
  .container {
    margin: 0 30px;
  }
}
@media screen and (min-width: 1181px) {
  .container {
    margin: 0 auto;
  }
}

/* wrap */
@media screen and (min-width: 1181px) {
  #wrap {
    margin-top: 80px;
  }
}

/*---------------------------------
  header
---------------------------------*/
/* cmn */
#header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
}
#header .header__sns .icon_x img {
  width: 24px;
}
#header .inner {
  max-width: 1180px;
  margin: 0 auto;
}
#header .nav__menu a {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-decoration: none;
}

/*-- 1181px- --*/
@media print, screen and (min-width: 1181px) {
  #header {
    height: 80px;
    background-color: #000;
  }
  #header .header__hamburger {
    display: none;
  }
  #header .nav__bg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
  }
  #header .nav__menu {
    display: flex;
  }
  #header .nav__menu .nav__menu_item::after {
    content: "/";
    font-size: 1.6rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-left: 0.8rem;
    margin-right: 0.8rem;
    color: #e10414;
  }
  #header .nav__menu a {
    color: #e10414;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }
}
/*-- 1180px --*/
@media only screen and (max-width: 1180px) {
  #header {
    height: 60px;
  }
  #header .header__hamburger {
    cursor: pointer;
    position: fixed;
    border: 0px;
    top: 0;
    right: 0;
    background: #000;
    height: 60px;
    width: 60px;
    z-index: 10;
  }
  #header .header__hamburger span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 15px;
    height: 1px;
    background: #e10414;
    width: 30px;
  }
  #header .header__hamburger span:nth-child(1) {
    top: 20px;
  }
  #header .header__hamburger span:nth-child(2) {
    top: 30px;
  }
  #header .header__hamburger span:nth-child(3) {
    top: 40px;
  }
  #header .header__hamburger.active span:nth-child(1) {
    top: 37px;
    left: 15px;
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
    width: 30px;
  }
  #header .header__hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  #header .header__hamburger.active span:nth-child(3) {
    top: 25px;
    left: 15px;
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
    width: 30px;
  }
  #header .nav__bg {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
    background: rgba(225, 4, 20, 0.95);
    padding: 80px 20px 40px;
    margin-left: 100%;
    opacity: 0;
    transition: 0.3s ease;
    text-align: center;
  }
  #header .nav__bg.show {
    opacity: 100;
    margin-left: 0;
  }
  #header .nav__menu {
    margin-bottom: 4rem;
  }
  #header .nav__menu li {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
  #header .nav__menu a {
    color: #fff;
  }
}
/*---------------------------------
  footer
---------------------------------*/
#footer {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 1180px) {
  #footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
#footer .footer__sns {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
#footer .footer__sns .icon_x img {
  width: 24px;
}
#footer .footer__logo {
  width: 115px;
  margin: 0 auto 5px;
}
@media (min-width: 768px) {
  #footer .footer__logo {
    width: 224px;
  }
}
#footer .release {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff100;
  margin-bottom: 20px;
}
@media (min-width: 430px) {
  #footer .release {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  #footer .release {
    font-size: 2rem;
  }
}
@media (min-width: 1180px) {
  #footer .release {
    font-size: 2.6rem;
  }
}
#footer .release span {
  letter-spacing: -0.4em;
}
#footer .copy {
  font-size: 1rem;
  text-align: center;
}
@media (min-width: 1180px) {
  #footer .copy {
    font-size: 1.2rem;
  }
}

/*---------------------------------
  hdg
---------------------------------*/
.hdg__02 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .hdg__02 {
    font-size: 4rem;
  }
}
.hdg__02 span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 1rem;
  display: block;
}
@media (min-width: 768px) {
  .hdg__02 span {
    font-size: 1.2rem;
  }
}

/*---------------------------------
  top
---------------------------------*/
#top #kv .kv__sp {
  opacity: 0;
}
@media print, screen and (max-width: 767px) {
  #top #kv .kv__pc {
    display: none;
  }
}
@media (min-width: 768px) {
  #top #kv .kv__pc {
    max-width: 932px;
    margin: 0 auto 40px;
    position: relative;
    opacity: 0;
  }
  #top #kv .kv__items {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }
  #top #kv .catch_main {
    margin-top: 5.15vw;
    text-align: center;
  }
  #top #kv .catch_main img {
    width: 2.15vw;
  }
  #top #kv h1 {
    margin-top: 4.61vw;
    text-align: center;
  }
  #top #kv h1 img {
    width: 56.22vw;
  }
  #top #kv .detail {
    width: 94.42%;
    margin: 3.54vw auto 0;
  }
  #top #kv .detail span {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  #top #kv .detail .billing {
    width: 66.52vw;
    margin-bottom: 1.82vw;
  }
  #top #kv .detail .listing {
    width: 63.84vw;
    margin-bottom: 2.9vw;
  }
  #top #kv .bg {
    position: relative;
    z-index: 1;
  }
}
@media (min-width: 932px) {
  #top #kv .kv__pc {
    margin: 0 auto 20px;
  }
  #top #kv .catch_main {
    margin-top: 48px;
  }
  #top #kv .catch_main img {
    width: 20px;
  }
  #top #kv h1 {
    margin-top: 43px;
  }
  #top #kv h1 img {
    width: 524px;
  }
  #top #kv .detail {
    margin: 33px auto 0;
  }
  #top #kv .detail .billing {
    width: 620px;
    margin-bottom: 17px;
  }
  #top #kv .detail .listing {
    width: 595px;
    margin-bottom: 27px;
  }
}
#top #kv .is-show {
  opacity: 1;
}
#top #info .channel {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
#top #info .channel .star_channel {
  margin-right: 12px;
}
@media (min-width: 768px) {
  #top #info .channel .star_channel {
    margin-right: 23px;
  }
}
#top #info .channel .star_channel a {
  display: block;
  width: 37px;
}
@media (min-width: 768px) {
  #top #info .channel .star_channel a {
    width: 73px;
  }
}
#top #info .channel .star_channel_movies a {
  display: block;
  width: 108px;
}
@media (min-width: 768px) {
  #top #info .channel .star_channel_movies a {
    width: 211px;
  }
}
#top #info .release {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff100;
  margin-bottom: 20px;
}
@media (min-width: 430px) {
  #top #info .release {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  #top #info .release {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}
@media (min-width: 1180px) {
  #top #info .release {
    font-size: 3rem;
  }
}
#top #info .release span {
  letter-spacing: -0.4em;
}
#top #info .nav_sub {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
#top #info .nav_sub li {
  width: 47.32%;
}
#top #info .nav_sub a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  background-color: #e10414;
  border: 2px solid #fff;
  color: #ffdc00;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.1em;
}
#top #tie-up {
  max-width: 960px;
  margin: 0 20px 30px;
}
@media (min-width: 961px) {
  #top #tie-up {
    margin: 0 auto 30px;
  }
}
#top #tie-up ul {
  display: flex;
  justify-content: center;
  gap: 0 20px;
}
#top #pick-up {
  max-width: 768px;
  margin: 0 20px 30px;
}
@media (min-width: 768px) {
  #top #pick-up {
    margin: 0 auto 30px;
  }
}
#top #pick-up ul {
  display: flex;
  justify-content: center;
  gap: 0 10px;
}
#top #pick-up ul li {
  width: 50%;
}
#top #ticket {
  background-color: #000;
  padding-top: 50px;
  padding-bottom: 50px;
}
#top #ticket #mvtk-widgets-container {
  margin: 0 auto 30px;
}
#top #ticket .ticket__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 440px;
  margin: 0 auto;
}
#top #ticket .ticket__list li:not(:last-of-type) {
  margin: 0 10px 30px;
}
#top #news {
  background-color: #DC0214;
  scroll-margin-top: 60px;
  padding-top: 50px;
  padding-bottom: 50px;
  background-image: url(../../asset/images/top/bg_rose_left.svg), url(../../asset/images/top/bg_rose_right.svg);
  background-repeat: repeat-y, repeat-y;
  background-position: left center, right center;
  background-size: 90px, 120px;
}
@media (min-width: 430px) {
  #top #news {
    background-size: 120px, 140px;
  }
}
@media (min-width: 768px) {
  #top #news {
    background-size: 150px, 180px;
  }
}
@media (min-width: 1180px) {
  #top #news {
    scroll-margin-top: 80px;
    background-size: 190px, 220px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
#top #news .news__items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  #top #news .news__items {
    justify-content: flex-start;
  }
}
#top #news .news__items .news__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  width: calc(50% - 10px);
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  #top #news .news__items .news__item {
    width: 32%;
    margin-right: 2%;
  }
  #top #news .news__items .news__item:nth-child(3n) {
    margin-right: 0;
  }
  #top #news .news__items .news__item:hover {
    opacity: 0.7;
    transition: all 0.3s;
  }
}
#top #news .news__items .news__item .ph {
  margin-bottom: 10px;
}
#top #news .news__items .news__item .ph img {
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
}
#top #news .news__items .news__item .date {
  margin-bottom: 10px;
}
#top #news .news__items .news__item h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #top #news .news__items .news__item h3 {
    font-size: 1.6rem;
  }
}
#top #news .news__items .news__item .btn {
  display: block;
  text-align: center;
  padding: 0.5rem;
  border: 1px solid #fff;
  background-color: #e10414;
}
#top #introduction {
  background: url(../../asset/images/top/intro_bg_sp.jpg) no-repeat bottom center #000;
  background-size: 100%;
  scroll-margin-top: 60px;
  padding-top: 50px;
}
@media (min-width: 1180px) {
  #top #introduction {
    background: url(../../asset/images/top/intro_bg_pc.jpg) no-repeat bottom center #000;
    background-size: 100%;
    scroll-margin-top: 80px;
    padding-top: 100px;
  }
}
@media (min-width: 1180px) {
  #top #introduction .hdg__02 {
    margin-bottom: 100px;
  }
}
#top #introduction h3 {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  #top #introduction h3 {
    margin-bottom: 50px;
  }
}
@media (min-width: 1180px) {
  #top #introduction h3 {
    margin-bottom: 60px;
  }
}
#top #introduction .text {
  line-height: 1.8;
}
#top #introduction .items {
  position: relative;
  width: auto;
  height: 117.18vw;
}
@media (min-width: 1180px) {
  #top #introduction .items {
    width: 92.19vw;
    height: 69.48vw;
  }
}
#top #introduction .items .intro_catch2 {
  position: absolute;
  top: 12.43vw;
  left: 16.53vw;
  width: 21.33vw;
}
@media (min-width: 1180px) {
  #top #introduction .items .intro_catch2 {
    top: 1.69vw;
    left: 28.98vw;
    width: 15.93vw;
  }
}
#top #introduction .items .intro_tokuchou {
  position: absolute;
  top: 4.24vw;
  right: 7.49vw;
  width: 43.79vw;
}
@media (min-width: 1180px) {
  #top #introduction .items .intro_tokuchou {
    top: 0;
    right: 0;
    width: 30.71vw;
  }
}
#top #story {
  background-color: #FFDC00;
  scroll-margin-top: 60px;
}
@media (min-width: 1180px) {
  #top #story {
    scroll-margin-top: 80px;
  }
}
#top #story .container {
  padding-top: 50px;
  position: relative;
  z-index: 2;
  padding-top: 13.02vw;
  padding-bottom: 65.1vw;
}
@media (min-width: 1180px) {
  #top #story .container {
    padding-top: 7.81vw;
    padding-bottom: 15.63vw;
  }
}
#top #story .hdg__02 {
  color: #E60013;
}
@media (min-width: 1180px) {
  #top #story .hdg__02 {
    margin-bottom: 100px;
  }
}
#top #story .lead {
  color: #E60013;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.8;
  margin-bottom: 26px;
}
@media (min-width: 768px) {
  #top #story .lead {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}
@media (min-width: 1180px) {
  #top #story .lead {
    font-size: 2.8rem;
    line-height: 2;
    margin-bottom: 90px;
  }
}
#top #story .text {
  color: #231815;
}
@media (min-width: 1180px) {
  #top #story .text {
    max-width: 59.75%;
    margin: 0 auto;
  }
}
#top #story .text p {
  margin-bottom: 2rem;
  line-height: 2;
  font-weight: 700;
}
#top #story .text p:last-of-type {
  margin-bottom: 0;
}
#top #story .story__bg {
  position: relative;
  overflow: hidden;
}
#top #story .story__bg .story__bg01 {
  position: absolute;
  top: 5.21vw;
  left: 0;
  width: 48.83vw;
}
@media (min-width: 1180px) {
  #top #story .story__bg .story__bg01 {
    top: 4.14vw;
    width: 32.89vw;
  }
}
#top #story .story__bg .story__bg02 {
  position: absolute;
  top: 4.17vw;
  right: 0;
  width: 34.11vw;
}
@media (min-width: 1180px) {
  #top #story .story__bg .story__bg02 {
    top: 1.56vw;
    width: 28.59vw;
  }
}
#top #story .story__bg .story__bg03 {
  position: absolute;
  left: 7.55vw;
  bottom: 23.44vw;
  width: 27.21vw;
}
@media (min-width: 1180px) {
  #top #story .story__bg .story__bg03 {
    left: 3.91vw;
    bottom: 15vw;
    width: 16.33vw;
  }
}
#top #story .story__bg .story__bg04 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 92.45vw;
}
@media (min-width: 1180px) {
  #top #story .story__bg .story__bg04 {
    width: 44.14vw;
  }
}
#top #story .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#top #story .items .item {
  width: 50%;
}
@media (min-width: 768px) {
  #top #story .items .item {
    width: 25%;
  }
}
#top #production_note {
  background-color: #DC0214;
  scroll-margin-top: 60px;
  padding-top: 50px;
  padding-bottom: 120px;
  background-color: #DC0214;
  background-image: url(../../asset/images/top/note_bg_top.png), url(../../asset/images/top/note_bg_bottom.png);
  background-position: top center, bottom center;
  background-repeat: no-repeat, no-repeat;
  background-size: 100%, 100%;
}
@media (min-width: 768px) {
  #top #production_note {
    padding-top: 100px;
    padding-bottom: 230px;
  }
}
@media (min-width: 1180px) {
  #top #production_note {
    background-repeat: repeat-x, no-repeat;
    background-size: auto, 100%;
    scroll-margin-top: 80px;
    padding-bottom: 380px;
  }
}
#top #production_note h3 {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  #top #production_note h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}
@media (min-width: 1180px) {
  #top #production_note h3 {
    font-size: 3.6rem;
    margin-bottom: 40px;
  }
}
#top #production_note h3::before {
  content: "";
  display: block;
  width: 18px;
  height: 46px;
  background: url(../../asset/images/top/note_icon_chess.svg) no-repeat center;
  background-size: contain;
  margin: 0 auto 15px;
}
@media (min-width: 768px) {
  #top #production_note h3::before {
    width: 30px;
    height: 77px;
    margin: 0 auto 30px;
  }
}
@media (min-width: 1180px) {
  #top #production_note h3::before {
    width: 46px;
    height: 115px;
    margin: 0 auto 40px;
  }
}
#top #production_note .note__items {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px 20px;
}
@media (min-width: 768px) {
  #top #production_note .note__items {
    padding: 40px 30px;
  }
}
@media (min-width: 1180px) {
  #top #production_note .note__items {
    padding: 60px 50px;
  }
}
#top #production_note .note__items .note__item:not(:last-of-type) {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  #top #production_note .note__items .note__item:not(:last-of-type) {
    margin-bottom: 90px;
  }
}
#top #production_note .note__items .note__item h4 {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  #top #production_note .note__items .note__item h4 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
@media (min-width: 1180px) {
  #top #production_note .note__items .note__item h4 {
    font-size: 2.6rem;
    margin-bottom: 40px;
  }
}
#top #production_note .note__items .note__item p {
  line-height: 2;
}
#top #production_note .note__items .note__item p:not(:last-of-type) {
  margin-bottom: 2rem;
}
@media (min-width: 1180px) {
  #top #production_note .note__items .note__item p:not(:last-of-type) {
    margin-bottom: 3rem;
  }
}
#top #production_note .photos {
  margin-top: 40px;
}
@media (min-width: 768px) {
  #top #production_note .photos {
    display: flex;
  }
}
#top #production_note .photos .ph {
  margin: 0 0 10px;
}
@media (min-width: 768px) {
  #top #production_note .photos .ph {
    margin: 0 5px;
  }
}
#top #comment {
  background-color: #000;
  scroll-margin-top: 60px;
  padding-top: 50px;
  padding-bottom: 60px;
  background: url(../../asset/images/top/comment_bg.png) #000 no-repeat center bottom;
  background-size: cover;
}
@media (min-width: 768px) {
  #top #comment {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1180px) {
  #top #comment {
    scroll-margin-top: 80px;
  }
}
@media (min-width: 1180px) {
  #top #comment .hdg__02 {
    margin-bottom: 100px;
  }
}
#top #comment .comment__items {
  max-width: 900px;
  margin: 0 auto;
}
#top #comment .comment__item {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 3rem 2rem;
}
@media (min-width: 1180px) {
  #top #comment .comment__item {
    padding: 3rem;
  }
}
#top #comment .comment__item:not(:last-of-type) {
  margin-bottom: 40px;
}
@media (min-width: 1180px) {
  #top #comment .comment__item:not(:last-of-type) {
    margin-bottom: 60px;
  }
}
#top #comment .comment__item h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #top #comment .comment__item h3 {
    font-size: 2.2rem;
  }
}
#top #comment .comment__item h3 span {
  font-size: 1.2rem;
  font-weight: 400;
}
@media (min-width: 768px) {
  #top #comment .comment__item h3 span {
    font-size: 1.6rem;
  }
}
#top #comment .comment__item p {
  line-height: 2;
  margin-bottom: 2rem;
}
#top #comment .note {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 4rem;
}
#top #cast {
  background-color: #000;
  scroll-margin-top: 60px;
  padding-top: 50px;
  padding-bottom: 100px;
  background: url(../../asset/images/top/cast_bg.png) #000 no-repeat center bottom;
  background-size: 100%;
}
@media (min-width: 768px) {
  #top #cast {
    padding-top: 100px;
    padding-bottom: 200px;
  }
}
@media (min-width: 1180px) {
  #top #cast {
    scroll-margin-top: 80px;
    padding-bottom: 400px;
  }
}
#top #cast .hdg__02 {
  margin-bottom: 50px;
}
#top #cast .cast__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 1180px) {
  #top #cast .cast__items {
    justify-content: space-between;
  }
}
#top #cast .cast__items .cast__item {
  display: block;
  width: 42%;
  margin: 0 2% 30px;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}
@media (min-width: 768px) {
  #top #cast .cast__items .cast__item {
    margin: 0 2% 50px;
  }
}
@media (min-width: 1180px) {
  #top #cast .cast__items .cast__item {
    width: 30.25%;
    margin: 0;
  }
  #top #cast .cast__items .cast__item:hover {
    opacity: 0.7;
    transition: all 0.3s;
  }
}
#top #cast .cast__items .cast__item img {
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.5);
}
#top #cast .cast__items .cast__item dl {
  text-align: center;
  padding-top: 10px;
  line-height: 1.8;
  text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.5);
}
#top #cast .cast__items .cast__item dl dt {
  font-size: 1rem;
}
@media (min-width: 768px) {
  #top #cast .cast__items .cast__item dl dt {
    font-size: 1.2rem;
  }
}
#top #cast .cast__items .cast__item dl dd {
  color: #ffdc00;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  #top #cast .cast__items .cast__item dl dd {
    font-size: 2rem;
  }
}
#top #cast .cast__items .cast__item dl dd span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
}
@media (min-width: 768px) {
  #top #cast .cast__items .cast__item dl dd span {
    font-size: 1.2rem;
  }
}
#top #staff {
  background-color: #fff;
  scroll-margin-top: 60px;
  padding-top: 50px;
}
@media (min-width: 768px) {
  #top #staff {
    padding-top: 100px;
  }
}
@media (min-width: 1180px) {
  #top #staff {
    scroll-margin-top: 80px;
  }
}
#top #staff .hdg__02 {
  color: #000;
}
#top #staff .staff__item {
  padding-bottom: 50px;
}
@media (min-width: 1180px) {
  #top #staff .staff__item {
    display: flex;
    justify-content: space-between;
    max-width: 980px;
    margin: 0 auto;
    padding-bottom: 100px;
  }
}
#top #staff .staff__item .ph {
  width: 67.99%;
  margin: 0 auto;
  display: block;
}
@media (min-width: 768px) {
  #top #staff .staff__item .ph {
    width: 320px;
  }
}
@media (min-width: 1180px) {
  #top #staff .staff__item .ph {
    width: 32.65%;
    margin: 0;
  }
}
#top #staff .staff__item .ph img {
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1180px) {
  #top #staff .staff__item .txt {
    width: 61.22%;
  }
}
#top #staff .staff__item dl {
  padding-top: 20px;
  margin-bottom: 30px;
  line-height: 1.8;
  text-align: center;
}
@media (min-width: 768px) {
  #top #staff .staff__item dl {
    padding-top: 30px;
  }
}
@media (min-width: 1180px) {
  #top #staff .staff__item dl {
    text-align: left;
    padding-top: 0;
  }
}
#top #staff .staff__item dl dt {
  font-size: 1rem;
  color: #000;
}
@media (min-width: 768px) {
  #top #staff .staff__item dl dt {
    font-size: 1.4rem;
  }
}
#top #staff .staff__item dl dd {
  color: #E60013;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  #top #staff .staff__item dl dd {
    font-size: 2.2rem;
  }
}
#top #staff .staff__item dl dd span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
}
@media (min-width: 768px) {
  #top #staff .staff__item dl dd span {
    font-size: 1.4rem;
  }
}
#top #staff .prof p {
  color: #000;
  line-height: 1.8;
}
@media (min-width: 1180px) {
  #top #staff .prof p {
    font-size: 1.4rem;
  }
}

.md__btn, .md__btn_trailer {
  cursor: pointer;
}

.md__overlay, .md__overlay_trailer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #DC0214;
  opacity: 0.95;
  z-index: 11;
}

.md__contents, .md__contents_trailer {
  display: none;
  position: fixed;
  top: 10px;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 12;
}

.md__close_btn, .md__close_btn_trailer {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  z-index: 13;
  cursor: pointer;
}
@media (min-width: 768px) {
  .md__close_btn, .md__close_btn_trailer {
    right: 30px;
  }
}
@media (min-width: 1180px) {
  .md__close_btn, .md__close_btn_trailer {
    top: 30px;
    right: 40px;
    width: 60px;
    height: 60px;
  }
}

.md__close_btn span, .md__close_btn_trailer span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.md__close_btn span:nth-of-type(1), .md__close_btn_trailer span:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateY(17px) rotate(-45deg);
          transform: translateY(17px) rotate(-45deg);
}
@media (min-width: 1180px) {
  .md__close_btn span:nth-of-type(1), .md__close_btn_trailer span:nth-of-type(1) {
    -webkit-transform: translateY(29px) rotate(-45deg);
            transform: translateY(29px) rotate(-45deg);
  }
}

.md__close_btn span:nth-of-type(2), .md__close_btn_trailer span:nth-of-type(2) {
  bottom: 0;
  -webkit-transform: translateY(-17px) rotate(45deg);
          transform: translateY(-17px) rotate(45deg);
}
@media (min-width: 1180px) {
  .md__close_btn span:nth-of-type(2), .md__close_btn_trailer span:nth-of-type(2) {
    -webkit-transform: translateY(-29px) rotate(45deg);
            transform: translateY(-29px) rotate(45deg);
  }
}

#news .modal .md__inner_news {
  height: 100%;
  overflow-y: auto;
  padding-top: 70px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 70px;
}
@media (min-width: 768px) {
  #news .modal .md__inner_news {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1180px) {
  #news .modal .md__inner_news {
    padding-top: 100px;
    margin: 0 auto;
  }
}
#news .modal .news__content {
  max-width: 800px;
  margin: 0 auto;
}
#news .modal .news__content.wide {
  max-width: 1000px;
}
#news .modal .ph {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  #news .modal .ph.beside {
    width: 800px;
  }
}
@media (min-width: 768px) {
  #news .modal .ph.vertical {
    width: 560px;
  }
}
#news .modal .ph img {
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
}
#news .modal .ph {
  margin-bottom: 20px;
}
#news .modal .date {
  margin-bottom: 10px;
  font-weight: 400;
}
#news .modal h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #news .modal h3 {
    margin-bottom: 40px;
  }
}
#news .modal .txt {
  background: #d31625;
  padding: 2rem;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #news .modal .txt {
    padding: 4rem;
  }
}
#news .modal .txt h4 {
  font-size: 1.6rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 4px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #news .modal .txt h4 {
    font-size: 1.8rem;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
}
#news .modal .txt p {
  margin-bottom: 2rem;
}
#news .modal .txt ul li {
  margin-bottom: 2rem;
}
#news .modal .txt a {
  color: #fff;
}
#news .modal .txt a img {
  border: 1px solid #fff;
}
#news #news20240723 .main_ph {
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #news #news20240723 .main_ph {
    margin-bottom: 40px;
  }
}
#news #news20240723 .lead {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #news #news20240723 .lead {
    margin-bottom: 40px;
  }
}
#news #news20240723 dl {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #news #news20240723 dl {
    margin-bottom: 40px;
  }
}
#news #news20240723 dl dt {
  font-weight: 600;
  margin-bottom: 5px;
}
#news #news20240723 dl dd .list__note-01 {
  margin-top: 20px;
}
#news #news20240723 dl dd .list__note-01 > li {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
@media (min-width: 1180px) {
  #news #news20240723 dl dd .list__note-01 > li {
    font-size: 1.4rem;
  }
}
#news #news20240723 a {
  word-break: break-all;
}
@media (min-width: 768px) {
  #news #news20240723 .items {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
}
#news #news20240723 .items .img {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #news #news20240723 .items .img {
    margin-bottom: 0;
  }
}
#news #news20240723 .store_info {
  border: 1px solid #fff;
  padding: 10px;
}
@media (min-width: 768px) {
  #news #news20240723 .store_info {
    padding: 20px;
  }
}
#news #news20240723 .sub_ph {
  margin-top: 20px;
  text-align: center;
}

.cast__items .modal .md__inner {
  height: 100%;
  overflow-y: auto;
  padding-top: 70px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 70px;
}
@media (min-width: 768px) {
  .cast__items .modal .md__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1180px) {
  .cast__items .modal .md__inner {
    padding-top: 100px;
    margin: 0 auto;
  }
}
.cast__items .modal .cast__content {
  max-width: 800px;
  margin: 0 auto;
}
.cast__items .modal .ph {
  width: 80%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .cast__items .modal .ph {
    width: 560px;
  }
}
.cast__items .modal .ph img {
  box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
}
.cast__items .modal dl {
  text-align: center;
  padding-top: 20px;
  margin-bottom: 30px;
  line-height: 1.8;
}
.cast__items .modal dl dt {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .cast__items .modal dl dt {
    font-size: 1.4rem;
  }
}
.cast__items .modal dl dd {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .cast__items .modal dl dd {
    font-size: 2rem;
  }
}
.cast__items .modal dl dd span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
}
@media (min-width: 768px) {
  .cast__items .modal dl dd span {
    font-size: 1.4rem;
  }
}
.cast__items .modal .cast__detail p {
  font-size: 1.4rem;
  line-height: 1.8;
}

#trailer__items.modal .md__inner_trailer {
  height: 100%;
  overflow-y: auto;
  margin: 0 auto;
  padding-top: 80px;
  overflow-y: auto;
}
@media (min-width: 768px) {
  #trailer__items.modal .md__inner_trailer {
    padding-top: 30px;
  }
}
#trailer__items.modal .md__inner_trailer .movie_item {
  width: 100%;
  aspect-ratio: 16/9;
}
#trailer__items.modal .md__inner_trailer .movie_item .ttl {
  text-align: center;
  margin-bottom: 10px;
}
#trailer__items.modal .md__inner_trailer iframe {
  width: 100%;
  height: 100%;
}
#trailer__items.modal .tab__trailer {
  width: 96%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #trailer__items.modal .tab__trailer {
    width: 70%;
  }
}
#trailer__items.modal .tab__trailer .tab__items {
  display: flex;
}
#trailer__items.modal .tab__trailer .tab__items .tab__item {
  width: 33.3333333333%;
  cursor: pointer;
  text-align: center;
  background-color: #fff;
  color: #000;
  transition: 0.4s ease-in-out;
  padding: 1rem;
  border-right: 1px solid #000;
}
#trailer__items.modal .tab__trailer .tab__items .tab__item.tab__item_active {
  background-color: #000;
  color: #E60013;
  font-weight: 700;
}
#trailer__items.modal .tab__trailer .tab__items .tab__item:nth-child(3) {
  border-right: none;
}
#trailer__items.modal .tab__trailer .tab__content {
  display: none;
}
#trailer__items.modal .tab__trailer .tab__content.tab__content_active {
  display: block;
  -webkit-animation: tab-show 0.9s ease-in-out forwards;
          animation: tab-show 0.9s ease-in-out forwards;
}
@-webkit-keyframes tab-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes tab-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}