@charset "UTF-8";

/* normalize, 変数(for Sass) */

/*===========
 Basic color
===========*/

/*===========
 main color for this site.
===========*/

/*===========
 etc color for this site.
===========*/

/*===========
 un use
===========*/

@-webkit-keyframes topanimation {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes topanimation {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 画面外にいる状態 */

.fadein {
  opacity: 0.1;
  -webkit-transform: translate(0, 30px);
  transform: translate(0, 30px);
  transition: all 800ms;
}

/* 画面内に入った状態 */

.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.fadeopacity {
  position: relative;
  display: block;
}

.fadeopacity::after {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 1s;
}

.fadeopacity.scrollin::after {
  background-color: rgba(0, 0, 0, 0);
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  letter-spacing: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

/* mixin(for Sass) */

/* ベースの要素スタイル */

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: border-box;
}

body {
  background: #ffffff;
  /* Fallback for when there is no custom background color defined. */
}

section {
  position: relative;
}

blockquote,
q {
  quotes: "" "";
}

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

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

img {
  display: inline-block;
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
  width: 100%;
  vertical-align: middle;
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

/*===================================
module flexbox
====================================*/

.flex-col-sp {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-col-sp_2 > li {
  width: calc(50% - 5px);
}

.flex-col-sp_2_nmargin > li {
  width: 50%;
}

a {
  color: #000000;
  text-decoration: underline;
  transition: 0.6s;
}

a:visited {
  color: inherit;
}

a:hover,
a:focus,
a:active {
  color: #000000;
}

a:focus {
  outline: none;
}

a:hover,
a:active {
  outline: 0;
}

a:hover {
  opacity: 0.7;
  transition: 0.6s;
}

.link-arrow {
  position: relative;
}

.link-arrow::after {
  margin-left: 5px;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  display: inline-block;
  font-weight: bold;
}

.link-arrow__left::before {
  content: "▶";
  display: inline-block;
  margin-right: 5px;
  font-size: 12px;
  color: #badf6a;
}

.link--green {
  color: #badf6a;
}

.link--green:visited {
  color: #badf6a;
}

.link--gold {
  color: #836900 !important;
  font-weight: bold;
}

/* ========================
hoverで横線が出てくるやつ
==========================*/

.c-viewlinks {
  margin: 30px 0 0 0;
  text-align: center;
}

.viewlinks {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding-bottom: 5px;
  font-size: 14px;
}

.viewlinks::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background: linear-gradient(-90deg, #9ed9ed, #d592ff, #ff9993);
  position: absolute;
  left: -100%;
  bottom: 0;
  transition: all 0.2s ease;
}

.viewlinks::after {
  margin-left: 10px;
}

.viewlinks:hover::before {
  left: 0;
}

.js-hover:hover {
  opacity: 1;
}

.link-pdf {
  font-weight: bold;
  text-decoration: none;
}

.link-pdf::before {
  display: inline-block;
  content: "▶︎";
  color: #badf6a;
  font-size: 10px;
}

.link-pdf::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 23px;
  background-image: url(../images/common/icon_pdf.png);
  background-size: 100%;
  vertical-align: middle;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol > li {
  counter-increment: number;
  position: relative;
}

ol > li:before {
  content: counter(number) ".";
  display: block;
  margin-left: -1em;
  position: absolute;
  top: 0;
  left: 0;
}

dl {
  margin: 0;
}

dl dd {
  margin: 0;
}

ol.numlist {
  padding-left: 1.5em;
}

table {
  margin: 0 0 1em;
  table-layout: fixed;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}

th {
  font-weight: normal;
}

.table {
  margin-top: 20px;
  border: 1px solid #363636;
  text-align: center;
}

.table dl dt {
  background-color: #f7f7f7;
  padding: 10px;
}

.table dl dd {
  padding: 10px;
}

.table--default {
  margin: 0;
}

.table--default dl {
  line-height: 1.8;
}

.table .table-list > li {
  margin-top: 10px;
}

.table .table-list > li:first-child {
  margin-top: 0;
}

.table .table-note {
  display: block;
  position: relative;
  font-size: 10px;
}

.table .table-note::before {
  content: "※";
  display: inline-block;
}

.table-ordered > li {
  width: 100%;
  display: table;
  margin-bottom: 15px;
  border: 1px solid #f7f7f7;
  border-collapse: collapse;
}

.table-ordered > li::before {
  display: none;
}

.table-ordered > li .table-ordered__num {
  display: table-cell;
  width: 35px;
  background-color: #f0f3f8;
  border: 1px solid #f7f7f7;
  color: #7186b9;
  font-family: "Times New Roman";
  font-style: italic;
  font-size: 18px;
  text-align: center;
  vertical-align: middle;
}

.table-ordered > li .table-ordered__txt {
  display: table-cell;
  vertical-align: middle;
  padding: 20px 10px;
  border: 1px solid #f7f7f7;
}

.table-ordered > li .table-ordered__txt .table-ordered__title {
  font-size: 14px;
}

.table-ordered > li .table-ordered__txt .table-ordered__txt--last {
  font-weight: bold;
  font-size: 19px;
}

input[type=text] {
  border-radius: 0;
  -webkit-appearance: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: none;
  border-color: #000000;
  border-radius: 3px;
  background: #000000;
  color: #fff;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb;
  outline: none;
}

.form-submit {
  position: relative;
  width: 100%;
  line-height: 34px;
  padding: 15px;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.submit-btn {
  position: relative;
}

.submit-btn:after {
  content: "";
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  position: absolute;
  right: 10px;
  font-size: 14px;
  color: #fff;
}

.section-confirmation input[type="submit"],
.section-confirmation input[type="button"] {
  width: 100%;
  padding: 15px 0;
  font-weight: bold;
  font-size: 14px;
}

.section-confirmation input[type="submit"]:hover,
.section-confirmation input[type="button"]:hover {
  opacity: 0.7;
}

.section-confirmation .input-submit {
  position: relative;
  margin-bottom: 10px;
}

.section-confirmation .input-button {
  position: relative;
}

.form-btn {
  margin-top: 30px;
}

.form-btn .form-reset,
.form-btn .form-submit {
  position: relative;
  margin-top: 10px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1.4px;
}

.form-btn .form-reset::after,
.form-btn .form-submit::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.form-btn .form-reset {
  width: 100%;
  display: block;
  padding: 17px;
  background-image: url(../images/common/bg_line.gif);
}

.form-btn .form-submit {
  width: 100%;
  padding: 17px;
  background-color: #badf6a;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #000000;
  border: none;
  padding: 5px 5px;
  border: 1px solid #e5e2d2;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 2px solid #836900;
  height: 37px;
  width: 100%;
}

textarea {
  width: 100%;
  height: 120px;
  resize: vertical;
}

input[type="text"],
input[type="email"] {
  display: block;
  width: 100%;
}

input.input-year {
  width: 30%;
  display: inline-block;
  margin-right: 10px;
}

input.input-month {
  width: 15%;
  display: inline-block;
  margin: 0 10px;
}

input.input-day {
  width: 15%;
  display: inline-block;
  margin: 0 10px;
}

.radio-input {
  opacity: 0;
  display: none;
}

.radio-input + label {
  padding-left: 20px;
  position: relative;
  margin-right: 10px;
}

.radio-input + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #836900;
  border-radius: 50%;
}

.radio-input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 3px;
  width: 9px;
  height: 9px;
  background: #836900;
  border-radius: 50%;
}

body,
button,
input,
select,
textarea {
  color: #000000;
  font-family: "Zen Old Mincho", serif;
  font-size: 13px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  margin: 0;
  font-weight: 300;
}

p {
  margin: 0;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.4;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
}

/* ライブラリ */

/* コンポーネント */

/* 共通レイアウト(header, footer, etc.) */

.l-footer {
  background-color: #000000;
  padding: 12px 15px;
}

.l-footer__copyright {
  color: #ffffff;
  text-align: center;
}

.pagetop {
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  font-weight: bold;
  bottom: 10px;
  right: 10px;
  text-align: center;
  color: #f00578;
  font-size: 16px;
  line-height: 0;
  opacity: 1;
  z-index: 10;
  padding-top: 7px;
}

.pagetop:hover,
.pagetop:focus,
.pagetop:active {
  color: #f00578;
}

.pagetop i {
  color: #f00578;
}

.l-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}

.l-header__inner {
  position: relative;
}

.nav {
  position: fixed;
  right: -320px;
  /* 右から出てくる */
  top: 0;
  width: 300px;
  /* スマホに収まるサイズ */
  padding-top: 77px;
  padding-bottom: 55px;
  background-color: #f7fc56;
  transition: all .6s;
  z-index: 200;
  overflow-y: scroll;
  /* メニューが多くなったらスクロールできるように */
  max-height: 100%;
}

.nav__item {
  text-align: center;
}

.nav__item a {
  font-size: 19px;
  display: block;
  margin-bottom: 25px;
  text-decoration: none;
  color: #f00578;
}

.nav .sns {
  margin-top: 42px;
}

.nav .sns__item {
  width: 47px;
}

.nav .sns__item a {
  color: #f00578;
  font-size: 10px;
  font-weight: 900;
}

.nav .sns__item figure {
  width: 42px;
  margin: 0 auto;
}

.hamburger {
  position: absolute;
  right: 0px;
  top: 0;
  width: 58px;
  /* クリックしやすい幅 */
  height: 58px;
  /* クリックしやすい高さ */
  cursor: pointer;
  background-color: #f7fc56;
  z-index: 300;
}

.hamburger_border {
  position: absolute;
  left: 14px;
  width: 30px;
  height: 4px;
  background-color: #f00578;
  transition: all .6s;
}

.hamburger_border_top {
  top: 20px;
}

.hamburger_border_center {
  top: 29px;
}

.hamburger_border_bottom {
  top: 38px;
}

.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 120vh;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  display: none;
  transition: all .6s;
  cursor: pointer;
}

/* 表示された時用のCSS */

.nav-open .nav {
  right: 0;
}

.nav-open .black-bg {
  opacity: 1;
  visibility: visible;
  display: block;
}

.nav-open .hamburger_border_top {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  top: 29px;
}

.nav-open .hamburger_border_center {
  width: 0;
  left: 50%;
}

.nav-open .hamburger_border_bottom {
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
  top: 29px;
}

.l-wrapper {
  margin: 0 auto;
}

.l-container {
  margin: 0 auto;
  padding: 0 14px;
}

.l-container:after {
  content: "";
  clear: both;
  display: block;
}

/* ページごとのスタイル */

.body {
  background-color: #ffffff;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

.fv {
  -webkit-animation: topanimation 2s ease 0s 1 normal;
  animation: topanimation 2s ease 0s 1 normal;
  overflow-x: hidden;
  background: linear-gradient(#000 0%, #1d1b1d 100%);
  padding-bottom: 65px;
}

.fv .pc {
  display: none;
}

.fv__title {
  position: absolute;
  top: 43px;
  padding: 0 45px;
}

.fv__cast {
  margin-top: 15px;
}

.sns {
  margin-top: 40px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sns__item {
  width: 50px;
  margin: 0 13px;
}

.sns__item figure {
  margin: 0 auto;
}

.sns__item figcaption {
  padding-top: 5px;
}

.sns__item a {
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 12px;
}

.intro {
  overflow-x: hidden;
  background-image: url(../images/bg_yellow@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
  padding: 86px 0 77px;
  margin-top: -25px;
}

.intro__wrap {
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
  padding: 0 15px;
}

.intro__title {
  color: #f00578;
  font-weight: 900;
  letter-spacing: -.04em;
  font-size: 30px;
  margin-top: 40px;
}

.intro__textbox {
  margin-top: 40px;
}

.intro__text {
  letter-spacing: .02em;
  font-size: 16px;
  margin-top: 28px;
}

.intro__cc {
  color: #f00578;
  font-weight: 700;
  font-size: 17px;
}

.intro__name {
  font-size: 28px;
  margin-top: 25px;
}

.orchestra {
  overflow-x: hidden;
  background-image: url(../images/img01_sp.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  padding: 90px 0;
}

.orchestra__title {
  color: #ffffff;
  background-color: #000000;
  display: inline-block;
  font-weight: 700;
  font-size: 24px;
}

.orchestra__textbox {
  max-width: 914px;
  margin: 40px auto 0;
}

.orchestra__text {
  color: #ffffff;
  font-size: 15px;
  margin-top: 20px;
}

.pic-box {
  position: relative;
}

.pic-box img {
  width: 87%;
}

.pic-box__inner {
  position: relative;
}

.pic-box__cc {
  position: absolute;
  left: 8%;
  top: 15px;
}

.pic-box__cc img {
  max-width: 20px;
  width: 80%;
}

.story {
  overflow-x: hidden;
  background-image: url(../images/bg_illust_sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 56px 0 220px;
  background-color: #ffffff;
  position: relative;
}

.story__wrap {
  max-width: 714px;
  margin: 30px auto 0;
}

.story__title {
  font-weight: 700;
  font-size: 18px;
}

.story__textbox {
  margin-top: 20px;
}

.story__text {
  font-size: 15px;
  margin-top: 15px;
}

.story__text span {
  display: inline-block;
  margin-top: 10px;
}

.cast {
  overflow-x: hidden;
  background-image: url(../images/bg_cast@2x.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 50px 0;
  position: relative;
}

.cast .sec-title {
  padding: 0 14px;
}

.cast .l-container {
  padding: 0;
}

.cast__wrap {
  background-color: #ffffff;
  margin-top: 20px;
  padding: 50px 15px;
}

.cast__inner {
  max-width: 860px;
  margin: auto;
}

.cast__lists {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cast__item {
  margin-top: 35px;
  width: calc(50% - 30px / 2);
  margin-right: 30px;
  position: relative;
}

.cast__item:nth-child(even) {
  margin-right: 0;
}

.cast__item img {
  width: 100%;
}

.cast__name {
  font-weight: 700;
  position: absolute;
  left: 0;
  bottom: 10px;
  background-color: #ffffff;
  font-size: 13px;
  padding: 2px;
  letter-spacing: -.1em;
}

.cast__name span {
  font-size: 10px;
}

.m-cast__pic {
  width: 78%;
  max-width: 482px;
}

.m-cast__textbox {
  background-color: #ffffff;
  width: 85%;
  margin-left: auto;
  margin-top: -30px;
  position: relative;
  padding: 20px 5px 20px 15px;
}

.m-cast__name {
  font-weight: 700;
  font-size: 17px;
}

.m-cast__name span {
  font-size: 14px;
}

.m-cast__icon {
  color: #ffffff;
  letter-spacing: .01em;
  display: inline-block;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 2px;
  margin-top: 15px;
  font-size: 11px;
}

.m-cast__icon::after {
  border-top: 1px solid #000000;
  content: "";
  width: 100%;
  margin-left: 10px;
}

.m-cast__icon span {
  background-color: #000000;
  padding: 0 3px;
}

.m-cast__detail {
  line-height: 1.8;
  font-size: 12px;
  margin-top: 10px;
}

.m-cast:not(:first-child) {
  margin-top: 40px;
}

.staff {
  overflow-x: hidden;
  background-color: #ffffff;
  position: relative;
  padding: 50px 0 50px;
}

.staff__name {
  width: 100%;
  margin-top: 45px;
}

.staff__name img {
  width: 100%;
}

.staff .sec-title {
  text-align: center;
}

.director {
  margin-top: 35px;
}

.director__pic {
  max-width: 410px;
  margin: auto;
}

.director__name {
  font-weight: 900;
  font-size: 30px;
  text-align: center;
  margin-top: 20px;
}

.director__name span {
  font-weight: 700;
  display: block;
  font-size: 20px;
}

.director__detail {
  font-size: 15px;
  margin-top: 30px;
}

.music {
  overflow-x: hidden;
  position: relative;
  background-color: #f00578;
  padding: 50px 0;
}

.music__wrap {
  background-color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
  padding: 20px 15px;
}

.music__intro {
  padding: 0 15px;
}

.music__jacket {
  max-width: 269px;
  margin: auto;
}

.music__info {
  text-align: center;
  margin-top: 30px;
}

.music__title {
  font-weight: 900;
  display: inline-block;
  font-size: 28px;
}

.music__name {
  font-weight: 900;
  display: inline-block;
  font-size: 20px;
  margin-top: 10px;
}

.music__belong {
  font-weight: 900;
  margin-top: 10px;
}

.music__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 15px;
}

.music__link {
  width: 48%;
  max-width: 196px;
}

.music__link i {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.music__link i img {
  width: 25px;
  height: 25px;
}

.music__link a {
  font-size: 12px;
  font-weight: 900;
  border-radius: 30px;
  color: #ffffff;
  background-color: #000000;
  display: block;
  text-decoration: none;
  padding: 5px 2px;
}

.music__detail {
  background-color: #ffffff;
  padding: 15px 20px;
  margin-top: 20px;
}

.music__text {
  margin-top: 15px;
}

.music__text:first-child {
  margin-top: 0;
}

.comment {
  background-color: #000000;
  color: #ffffff;
  margin-top: 20px;
  padding: 30px 40px;
}

.comment__text {
  font-weight: 700;
  font-size: 15px;
}

.comment__name {
  text-align: center;
  font-weight: 900;
  font-size: 19px;
  margin-top: 20px;
}

.trailer {
  overflow-x: hidden;
  position: relative;
  background-image: url(../images/trailer_bg@2x.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 50px 0;
}

.trailer__embed {
  margin-top: 30px;
  position: relative;
  padding-bottom: 56.25%;
  /* アスペクト比16:9の場合 */
  height: 0;
  overflow: hidden;
}

.trailer__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.topic {
  overflow-x: hidden;
  background-color: #ffffff;
  position: relative;
  background-image: url(../images/news_bg@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 50px 0;
}

.topic .l-container {
  padding: 0;
}

.theatre__wrap {
  background-color: #000000;
  color: #ffffff;
  padding: 30px 15px;
  margin-top: 20px;
}

.theatre__dl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 15px;
}

.theatre__dl--detail {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "HiraKakuProN-W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
  margin-top: 15px;
  font-size: 14px;
}

.theatre__place {
  border-bottom: 1px solid #ffffff;
  width: 15%;
  margin-right: 5%;
  padding-bottom: 10px;
}

.theatre__name {
  border-bottom: 1px solid #ffffff;
  width: 55%;
  margin-right: 5%;
  padding-bottom: 10px;
}

.theatre__name a {
  color: #ffffff;
}

.theatre__name a:hover,
.theatre__name a:active {
  color: #ffffff;
}

.theatre__time {
  border-bottom: 1px solid #ffffff;
  width: 20%;
  padding-bottom: 10px;
}

.news {
  margin-top: 50px;
}

.news__wrap {
  background-color: #000000;
  margin-top: 15px;
  padding: 30px 15px;
}

.release {
  overflow-x: hidden;
  position: relative;
  background-image: url(../images/title_bg@2x.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.release__title {
  width: 103%;
}

.release__day {
  color: #ffffff;
  font-weight: 900;
  text-align: center;
  font-size: 60px;
}

.release__day span {
  font-size: 35px;
}

.release .sns {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 10px;
}

.sec-title {
  font-size: 24px;
}

.sec-title__min {
  display: block;
  font-weight: 400;
  font-size: 22px;
}

.sec-title--center {
  text-align: center;
}

.sec-title--white {
  color: #ffffff;
}

.sec-title--bold {
  font-weight: 900;
}

.index .modaal-close {
  top: 33px;
  right: 40px;
  width: 42px;
  height: 42px;
}

.index .modaal-close::after,
.index .modaal-close::before {
  width: 1px;
  border-radius: 0;
  height: 42px;
  top: 0;
  left: 20px;
}

.index .modaal-close:focus,
.index .modaal-close:hover {
  background: transparent;
}

.index .modaal-close:focus::after,
.index .modaal-close:focus::before,
.index .modaal-close:hover::after,
.index .modaal-close:hover::before {
  background-color: #ffffff;
}

.index .modaal-video-wrap {
  margin: auto 0;
}

.is-fadeIn {
  transition: 1s;
  opacity: 0;
}

.is-fadeIn.animated {
  opacity: 1;
}

.js-sticky__wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

/* ユーティリティ(color, size, spacing, etc.) */

.u-ta-l {
  text-align: left !important;
}

.u-ta-c {
  text-align: center !important;
}

.u-ta-r {
  text-align: right !important;
}

.u-ta-j {
  text-align: justify !important;
  -ms-text-justify: inter-ideograph !important;
  text-justify: inter-ideograph !important;
}

.u-bc-lightgray {
  background-color: #f7f7f7 !important;
}

.u-bc-blue {
  background-color: #57C4F9 !important;
}

.u-bc-white {
  background-color: #ffffff;
}

.u-bc--salmon {
  background-color: #feb38a;
}

.u-bc--skyblue {
  background-color: #a9dee4;
}

.u-bdr-t {
  border-top: 1px solid !important;
}

.u-bdr-b {
  border-bottom: 1px solid !important;
}

.u-bdr-l {
  border-left: 1px solid !important;
}

.u-bdr-r {
  border-right: 1px solid !important;
}

.u-bdr-n {
  border: none !important;
}

.u-c-black {
  color: #000 !important;
}

.u-c-white {
  color: white !important;
}

.u-c-red {
  color: #b01717 !important;
}

.u-c-green {
  color: #badf6a !important;
}

.u-c-blue {
  color: #7186b9;
}

.u-c-pink {
  color: #f00578;
}

.u-cs-a {
  cursor: auto;
}

.u-cs-p {
  cursor: pointer;
}

.u-sp-hide {
  display: none !important;
}

.u-sp-hide-b {
  display: none !important;
}

.u-d-i {
  display: inline !important;
}

.u-d-ib {
  display: inline-block !important;
}

.u-d-b {
  display: block !important;
}

.u-fs-8 {
  font-size: 8px !important;
}

.u-fs-9 {
  font-size: 9px !important;
}

.u-fs-10 {
  font-size: 10px !important;
}

.u-fs-11 {
  font-size: 11px !important;
}

.u-fs-12 {
  font-size: 12px !important;
}

.u-fs-13 {
  font-size: 13px !important;
}

.u-fs-14 {
  font-size: 14px !important;
}

.u-fs-15 {
  font-size: 15px !important;
}

.u-fs-16 {
  font-size: 16px !important;
}

.u-fs-17 {
  font-size: 17px !important;
}

.u-fs-18 {
  font-size: 18px !important;
}

.u-fs-19 {
  font-size: 19px !important;
}

.u-fs-20 {
  font-size: 20px !important;
}

.u-fs-21 {
  font-size: 21px !important;
}

.u-fs-22 {
  font-size: 22px !important;
}

.u-fs-23 {
  font-size: 23px !important;
}

.u-fs-24 {
  font-size: 24px !important;
}

.u-fs-25 {
  font-size: 25px !important;
}

.u-fs-26 {
  font-size: 26px !important;
}

.u-fs-27 {
  font-size: 27px !important;
}

.u-fs-28 {
  font-size: 28px !important;
}

.u-fs-29 {
  font-size: 29px !important;
}

.u-fs-30 {
  font-size: 30px !important;
}

.u-fs-31 {
  font-size: 31px !important;
}

.u-fs-32 {
  font-size: 32px !important;
}

.u-fs-33 {
  font-size: 33px !important;
}

.u-fs-34 {
  font-size: 34px !important;
}

.u-fs-35 {
  font-size: 35px !important;
}

.u-fs-36 {
  font-size: 36px !important;
}

.u-fs-37 {
  font-size: 37px !important;
}

.u-fs-38 {
  font-size: 38px !important;
}

.u-fs-39 {
  font-size: 39px !important;
}

.u-fs-40 {
  font-size: 40px !important;
}

.f-s-small {
  font-size: 12px;
}

.u-mt-0 {
  margin-top: 0px !important;
}

.u-mt-5 {
  margin-top: 5px !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-mt-15 {
  margin-top: 15px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mt-25 {
  margin-top: 25px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-mt-35 {
  margin-top: 35px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mt-45 {
  margin-top: 45px !important;
}

.u-mt-50 {
  margin-top: 50px !important;
}

.u-mt-55 {
  margin-top: 55px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-mt-65 {
  margin-top: 65px !important;
}

.u-mt-70 {
  margin-top: 70px !important;
}

.u-mt-75 {
  margin-top: 75px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mt-85 {
  margin-top: 85px !important;
}

.u-mt-90 {
  margin-top: 90px !important;
}

.u-mt-95 {
  margin-top: 95px !important;
}

.u-mt-100 {
  margin-top: 100px !important;
}

.u-mb-0 {
  margin-bottom: 0px !important;
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mb-25 {
  margin-bottom: 25px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mb-35 {
  margin-bottom: 35px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mb-45 {
  margin-bottom: 45px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-mb-55 {
  margin-bottom: 55px !important;
}

.u-mb-60 {
  margin-bottom: 60px !important;
}

.u-mb-65 {
  margin-bottom: 65px !important;
}

.u-mb-70 {
  margin-bottom: 70px !important;
}

.u-mb-75 {
  margin-bottom: 75px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-mb-85 {
  margin-bottom: 85px !important;
}

.u-mb-90 {
  margin-bottom: 90px !important;
}

.u-mb-95 {
  margin-bottom: 95px !important;
}

.u-mb-100 {
  margin-bottom: 100px !important;
}

.u-pt-0 {
  padding-top: 0px !important;
}

.u-pt-5 {
  padding-top: 5px !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-pt-15 {
  padding-top: 15px !important;
}

.u-pt-20 {
  padding-top: 20px !important;
}

.u-pt-25 {
  padding-top: 25px !important;
}

.u-pt-30 {
  padding-top: 30px !important;
}

.u-pt-35 {
  padding-top: 35px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pt-45 {
  padding-top: 45px !important;
}

.u-pt-50 {
  padding-top: 50px !important;
}

.u-pt-55 {
  padding-top: 55px !important;
}

.u-pt-60 {
  padding-top: 60px !important;
}

.u-pt-65 {
  padding-top: 65px !important;
}

.u-pt-70 {
  padding-top: 70px !important;
}

.u-pt-75 {
  padding-top: 75px !important;
}

.u-pt-80 {
  padding-top: 80px !important;
}

.u-pt-85 {
  padding-top: 85px !important;
}

.u-pt-90 {
  padding-top: 90px !important;
}

.u-pt-95 {
  padding-top: 95px !important;
}

.u-pt-100 {
  padding-top: 100px !important;
}

.u-pb-0 {
  padding-bottom: 0px !important;
}

.u-pb-5 {
  padding-bottom: 5px !important;
}

.u-pb-10 {
  padding-bottom: 10px !important;
}

.u-pb-15 {
  padding-bottom: 15px !important;
}

.u-pb-20 {
  padding-bottom: 20px !important;
}

.u-pb-25 {
  padding-bottom: 25px !important;
}

.u-pb-30 {
  padding-bottom: 30px !important;
}

.u-pb-35 {
  padding-bottom: 35px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-pb-45 {
  padding-bottom: 45px !important;
}

.u-pb-50 {
  padding-bottom: 50px !important;
}

.u-pb-55 {
  padding-bottom: 55px !important;
}

.u-pb-60 {
  padding-bottom: 60px !important;
}

.u-pb-65 {
  padding-bottom: 65px !important;
}

.u-pb-70 {
  padding-bottom: 70px !important;
}

.u-pb-75 {
  padding-bottom: 75px !important;
}

.u-pb-80 {
  padding-bottom: 80px !important;
}

.u-pb-85 {
  padding-bottom: 85px !important;
}

.u-pb-90 {
  padding-bottom: 90px !important;
}

.u-pb-95 {
  padding-bottom: 95px !important;
}

.u-pb-100 {
  padding-bottom: 100px !important;
}

.u-fs-o {
  font-style: oblique !important;
}

.u-td-u {
  text-decoration: underline !important;
}

.u-fw-n {
  font-weight: normal !important;
}

.u-fw-b {
  font-weight: bold !important;
}

@media screen and (min-width: 735px) {
  img {
    width: auto;
  }

  .flex-col {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .flex-col_2 > li {
    width: 50%;
  }

  .flex-col_3 > li {
    width: 33.3333%;
  }

  .flex-col_4 > li {
    width: 25%;
  }

  .flex-col_5 > li {
    width: 20%;
  }

  .flex-col-sp_2 > li {
    width: 100%;
  }

  .flex-col-sp_2_nmargin > li {
    width: 100%;
  }

  .flex-col_pc {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .link-arrow::after {
    margin-left: 10px;
  }

  .link-arrow__left::before {
    margin-top: -3px;
    margin-right: 10px;
    font-size: 16px;
  }

  .viewlinks {
    font-size: 16px;
  }

  .table {
    display: table;
    margin-top: 30px;
    text-align: left;
    border-collapse: collapse;
  }

  .table dl {
    display: table-row;
  }

  .table dl dt {
    display: table-cell;
    padding: 10px 25px;
    border: 1px solid #363636;
  }

  .table dl dd {
    display: table-cell;
    padding: 10px 25px;
    border: 1px solid #363636;
  }

  .table--min {
    width: 500px;
  }

  .table--min dl dt {
    width: 170px;
  }

  .table--default {
    margin: 0;
  }

  .table--default dt {
    width: 180px;
    vertical-align: middle;
  }

  .table .table-note {
    padding-left: 1.5em;
    font-size: 13px;
  }

  .table .table-note::before {
    position: absolute;
    top: 0px;
    left: 0;
  }

  .table-ordered {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .table-ordered > li {
    width: calc(50% - 10px);
    margin-bottom: 20px;
    min-height: 140px;
  }

  .table-ordered > li .table-ordered__num {
    width: 50px;
    font-size: 23px;
  }

  .table-ordered > li .table-ordered__txt {
    padding: 30px 20px;
  }

  .table-ordered > li .table-ordered__txt .table-ordered__title {
    font-size: 18px;
  }

  .table-ordered > li .table-ordered__txt .table-ordered__txt--last {
    font-size: 23px;
  }

  .form-submit {
    width: 200px;
    margin-left: 296px;
    border-radius: 0 4px 4px 0;
    font-size: 16px;
  }

  .form-submit:hover {
    opacity: 0.6;
  }

  .submit-btn {
    margin-top: 30px;
  }

  .submit-btn:after {
    left: 480px;
    right: 0;
    font-size: 16px;
    font-weight: bold;
  }

  .section-confirmation input[type="submit"],
  .section-confirmation input[type="button"] {
    font-size: 16px;
  }

  .section-confirmation .input-submit {
    width: 200px;
    display: inline-block;
    margin: 0 20px 0 100px;
  }

  .section-confirmation .input-button {
    width: 200px;
    display: inline-block;
  }

  .form-btn {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 480px;
    margin: 60px auto 30px;
  }

  .form-btn .form-reset,
  .form-btn .form-submit {
    width: calc(50% - 15px);
    margin-left: 0;
    font-size: 18px;
  }

  body,
  button,
  input,
  select,
  textarea {
    font-size: 16px;
  }

  .l-container {
    padding: 0 15px;
    max-width: 1059px;
  }

  .orchestra {
    background-image: url(../images/img01@2x.jpg);
    padding: 89px 0 113px;
  }

  .cast .sec-title {
    padding: 0;
  }

  .cast .l-container {
    padding: 0 15px;
  }

  .staff .sec-title {
    text-align: left;
  }

  .topic .l-container {
    padding: 0 15px;
  }

  .u-pc-hide {
    display: none !important;
  }

  .u-sp-hide {
    display: inline !important;
  }

  .u-sp-hide-b {
    display: block !important;
  }

  .f-s-small {
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) {
  .tel-link {
    pointer-events: none;
  }

  select {
    width: 290px;
  }

  textarea {
    width: 400px;
    height: 180px;
  }

  input[type="text"].input__min,
  input[type="email"].input__min {
    width: 180px;
  }

  input[type="text"].input__min2,
  input[type="email"].input__min2 {
    width: 140px;
  }

  input[type="text"].middle-width,
  input[type="email"].middle-width {
    width: 340px;
  }

  input[type="text"].full-width,
  input[type="email"].full-width {
    width: 100%;
  }

  input[type="text"].full-width--670,
  input[type="email"].full-width--670 {
    width: 670px;
  }

  .input-birth input[type="text"] {
    float: inherit;
  }

  input.input-year {
    width: 113px;
  }

  input.input-month {
    width: 52px;
  }

  input.input-day {
    width: 52px;
  }

  input[type="text"].input--inline {
    display: inline-block;
    width: 90%;
  }

  .l-footer__copyright {
    font-size: 14px;
  }

  .pagetop {
    padding-top: 0;
    width: 39px;
    height: 39px;
    bottom: 20px;
    right: 36px;
    line-height: 39px;
  }

  .l-header__inner {
    padding: 12px 0;
    background-color: #f7fc56;
  }

  .nav {
    position: static;
    width: 100%;
    padding: 0;
    overflow: auto;
  }

  .nav__list {
    text-align: center;
  }

  .nav__item {
    display: inline-block;
    padding: 0 25px;
  }

  .nav__item a {
    font-size: 16px;
    margin-bottom: 0;
  }

  .nav .sns {
    display: none;
  }

  .hamburger {
    display: none;
  }

  .fv {
    margin-top: 5px;
    position: relative;
    padding-bottom: 40px;
  }

  .fv .sp {
    display: none;
  }

  .fv .pc {
    display: block;
    width: 100%;
  }

  .fv__cast {
    margin-top: 22px;
  }

  .fv .sns {
    position: absolute;
    bottom: 160px;
    right: 15%;
  }

  .sns__item {
    width: 66px;
    margin: 0 20px;
  }

  .sns__item figcaption {
    padding-top: 10px;
  }

  .sns__item a {
    font-size: 14px;
  }

  .intro {
    padding: 211px 0 147px;
    margin-top: -40px;
  }

  .intro__wrap {
    padding: 0 50px;
  }

  .intro__title {
    font-size: 52px;
    margin-top: 55px;
  }

  .intro__textbox {
    margin-top: 0;
  }

  .intro__text {
    font-size: 19px;
    margin-top: 48px;
  }

  .intro__cc {
    font-size: 24px;
  }

  .intro__name {
    font-size: 36px;
    margin-top: 33px;
  }

  .orchestra__title {
    font-size: 30px;
    padding: 0 15px;
  }

  .orchestra__textbox {
    margin: 85px auto 0;
  }

  .orchestra__text {
    font-size: 20px;
    margin-top: 35px;
  }

  .pic-box img {
    width: 87%;
  }

  .pic-box__cc {
    padding: 0 15px;
    max-width: 1059px;
    margin: auto;
    width: 100%;
    top: 60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .pic-box__cc img {
    max-width: 40px;
  }

  .story {
    background-image: url(../images/bg_illust@2x.png);
    padding: 121px 0 294px;
  }

  .story__wrap {
    margin: 48px auto 0;
  }

  .story__title {
    font-size: 22px;
  }

  .story__textbox {
    margin-top: 41px;
  }

  .story__text {
    font-size: 17px;
    margin-top: 26px;
  }

  .cast {
    padding: 92px 0 99px;
  }

  .cast__wrap {
    margin-top: 28px;
    padding: 106px 15px;
  }

  .cast__item {
    margin-top: 62px;
    width: calc(50% - 105px / 2);
    margin-right: 105px;
  }

  .cast__name {
    font-size: 20px;
    padding: 3px 8px;
    bottom: 16px;
    letter-spacing: 0;
  }

  .cast__name span {
    font-size: 16px;
  }

  .m-cast {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .m-cast__pic {
    width: 413px;
  }

  .m-cast__textbox {
    width: 100%;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 35px;
    margin-left: -56px;
    padding: 37px 11px 28px 26px;
  }

  .m-cast__name {
    font-size: 20px;
  }

  .m-cast__name span {
    font-size: 16px;
  }

  .m-cast__icon {
    margin-top: 18px;
    font-size: 13px;
  }

  .m-cast__detail {
    font-size: 13px;
    margin-top: 14px;
  }

  .m-cast:not(:first-child) {
    margin-top: 57px;
  }

  .staff {
    padding: 92px 0 150px;
  }

  .staff__name {
    margin-top: 77px;
    width: 979px;
  }

  .director {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 48px;
  }

  .director__pic {
    width: 410px;
    margin-right: 55px;
  }

  .director__textbox {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .director__name {
    font-size: 40px;
    text-align: left;
  }

  .director__name span {
    font-size: 25px;
  }

  .director__detail {
    font-size: 18px;
    margin-top: 40px;
  }

  .music {
    padding: 103px 0 100px;
  }

  .music .l-container {
    max-width: 858px;
  }

  .music__wrap {
    margin-top: 36px;
    padding: 48px 71px;
  }

  .music__intro {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 0;
  }

  .music__jacket {
    width: 230px;
    margin-right: 19px;
  }

  .music__info {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 0;
  }

  .music__title {
    font-size: 34px;
    background-color: #ffffff;
  }

  .music__name {
    font-size: 24px;
    margin-top: 15px;
    background-color: #ffffff;
  }

  .music__list {
    margin-top: 24px;
  }

  .music__link {
    width: 196px;
  }

  .music__link i {
    width: 30px;
    height: 30px;
    margin-right: 15px;
  }

  .music__link i img {
    width: 30px;
    height: 30px;
  }

  .music__link a {
    font-size: 16px;
    padding: 12px 10px;
  }

  .music__detail {
    padding: 24px 30px;
    margin-top: 41px;
  }

  .music__text {
    margin-top: 25px;
  }

  .comment {
    margin-top: 44px;
    padding: 46px 106px;
  }

  .comment__text {
    font-size: 18px;
  }

  .comment__name {
    font-size: 25px;
    margin-top: 31px;
  }

  .trailer {
    padding: 100px 0;
  }

  .topic {
    padding: 100px 0;
  }

  .theatre__wrap {
    max-width: 667px;
    margin: 30px auto 0;
    padding: 52px 32px;
  }

  .theatre__dl {
    font-size: 18px;
  }

  .theatre__dl--detail {
    margin-top: 22px;
    font-size: 16px;
  }

  .theatre__place {
    width: 88px;
    margin-right: 35px;
    padding-bottom: 20px;
  }

  .theatre__name {
    width: 318px;
    margin-right: 33px;
    padding-bottom: 20px;
  }

  .theatre__time {
    width: 126px;
    padding-bottom: 20px;
  }

  .news {
    margin-top: 100px;
  }

  .news__wrap {
    max-width: 667px;
    margin: 21px auto 0;
    padding: 66px 99px;
  }

  .release__title {
    width: 100%;
  }

  .release__day {
    font-size: 92px;
  }

  .release__day span {
    font-size: 60px;
  }

  .release .sns {
    padding: 22px 15px;
  }

  .sec-title {
    font-size: 28px;
  }

  .sec-title__min {
    font-size: 26px;
    margin-bottom: -3px;
  }

  .index .modaal-video-wrap {
    margin: auto 50px;
  }

  .js-sticky__wrap {
    top: 48px;
  }
}

@media screen and (max-width: 900px) {
  ol > li:before {
    left: 10px;
  }
}