@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

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

a img {
  border: none; }

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

/** ----------------------------------------------------- */
/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important; } }

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

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none; }

/**
 * !!! browsersyncのアラートを非表示 !!!
 */
#__bs_notify__ {
  display: none !important; }

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "source-han-serif-japanese", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  --color-primary: #fff;
  --color-secondary: #000;
  --color-tertiary: #1E1E1E;
  --color-sub: #808080; }

.whole.fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden; }

body {
  color: #fff;
  background: var(--color-tertiary); }

* {
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box; }

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

a {
  color: inherit;
  text-decoration: none; }

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none; }

textarea {
  resize: vertical; }

input[type='checkbox'],
input[type='radio'] {
  display: none; }

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer; }

select::-ms-expand {
  display: none; }

.row {
  overflow: hidden;
  *zoom: 1; }

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between; }

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1140px;
  padding: 0 30px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner {
      padding: 0 20px; } }

.inner-big {
  max-width: 1260px;
  padding: 0 30px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner-big {
      padding: 0 20px; } }

[data-trigger] {
  position: relative;
  top: 60px;
  -webkit-transition: top 1s, opacity 1s;
  -moz-transition: top 1s, opacity 1s;
  -o-transition: top 1s, opacity 1s;
  transition: top 1s, opacity 1s;
  opacity: 0; }
  [data-trigger].visible {
    top: 0;
    opacity: 1; }

h2[data-trigger] {
  position: relative;
  top: 60px;
  -webkit-transition: top 1s, opacity 1s;
  -moz-transition: top 1s, opacity 1s;
  -o-transition: top 1s, opacity 1s;
  transition: top 1s, opacity 1s;
  opacity: 0; }
  h2[data-trigger].visible {
    top: 0;
    opacity: .5; }

.footer {
  position: relative;
  background: #fff;
  padding-top: 48px; }
  .footer img {
    display: block;
    width: 100%; }
  .footer p {
    text-align: center;
    font-size: 11px;
    line-height: 180%;
    letter-spacing: 0.02em;
    color: #808080;
    padding-top: 24px;
    padding-bottom: 48px; }

.header {
  position: fixed;
  right: 40px;
  top: 40px;
  z-index: 10; }
  @media only screen and (min-width: 768px) {
    .header {
      mix-blend-mode: difference; } }
  .header ul {
    font-size: 0; }
    .header ul li {
      display: inline-block;
      vertical-align: middle;
      margin-left: 32px; }
      .header ul li:first-child {
        margin-left: 0; }
      .header ul li a span {
        font-family: "garamond-premier-pro-caption", serif;
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 1.2;
        letter-spacing: 0.02em; }
  @media only screen and (max-width: 767px) {
    .header {
      display: none;
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 9;
      background: rgba(0, 0, 0, 0.8); }
      .header ul {
        position: absolute;
        right: 28px;
        top: 50%;
        transform: translateY(-50%); }
        .header ul li {
          display: block;
          text-align: right;
          margin-left: 0;
          padding: 12px 0; } }
  .header__sp {
    position: fixed;
    right: 0px;
    top: -100px;
    z-index: 10;
    transition: top .7s; }
    @media only screen and (max-width: 767px) {
      .header__sp {
        mix-blend-mode: difference; } }
    .header__sp.on {
      top: 0px;
      opacity: 1; }
    .header__sp a {
      display: block;
      width: 60px;
      height: 60px;
      position: relative; }
      .header__sp a span {
        width: 42px;
        height: 1px;
        background-color: #fff;
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        transform: rotate(0deg);
        transition: transform .3s, top .3s; }
        .header__sp a span:nth-child(1) {
          top: -7px; }
        .header__sp a span:nth-child(2) {
          top: 7px; }
      .header__sp a.on span {
        top: 0; }
        .header__sp a.on span:nth-child(1) {
          transform: rotate(-45deg); }
        .header__sp a.on span:nth-child(2) {
          transform: rotate(45deg); }

.casts-section {
  background: #fff;
  padding-top: 68px;
  color: #000000;
  overflow: hidden; }
  .casts-section h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 48px;
    letter-spacing: 0.25em;
    color: #000;
    opacity: 0.5;
    text-align: center; }
  .casts-section .inner h2:nth-child(1) {
    padding-bottom: 0; }
  .casts-section .inner-big:nth-child(3) h2 {
    padding-bottom: 0; }
  .casts-section .inner-big:nth-child(3) .casts-section__row02 {
    padding-top: 48px; }
  .casts-section__row {
    padding-top: 8px; }
  .casts-section__col {
    margin-top: 40px; }
    @media only screen and (min-width: 768px) {
      .casts-section__col {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        align-items: center; } }
    @media only screen and (min-width: 768px) {
      .casts-section__col:nth-child(even) > div:nth-child(1) {
        order: 2; }
        .casts-section__col:nth-child(even) > div:nth-child(1) > div > div {
          right: auto;
          left: 0; }
      .casts-section__col:nth-child(even) > div:nth-child(2) {
        order: 1; } }
    .casts-section__col > div:nth-child(1) {
      width: 47.5%;
      position: relative; }
      @media only screen and (max-width: 767px) {
        .casts-section__col > div:nth-child(1) {
          width: calc(100% + 40px);
          margin-left: -20px; } }
      .casts-section__col > div:nth-child(1):before {
        content: "";
        padding-top: 61.098361%;
        width: 100%;
        display: block; }
      .casts-section__col > div:nth-child(1) > div > div {
        position: absolute;
        right: 0;
        top: 0;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        width: 112.962963%;
        height: 100%; }
        @media only screen and (max-width: 767px) {
          .casts-section__col > div:nth-child(1) > div > div {
            width: 100%; } }
    .casts-section__col > div:nth-child(2) {
      width: 44.4444444%; }
      @media only screen and (max-width: 767px) {
        .casts-section__col > div:nth-child(2) {
          width: 100%;
          padding-top: 16px; } }
      .casts-section__col > div:nth-child(2) > div strong, .casts-section__col > div:nth-child(2) > div small {
        display: inline-block;
        vertical-align: middle; }
      .casts-section__col > div:nth-child(2) > div strong {
        font-size: 22px;
        line-height: 180%;
        letter-spacing: 0.02em; }
        @media only screen and (max-width: 767px) {
          .casts-section__col > div:nth-child(2) > div strong {
            font-size: 20px; } }
      .casts-section__col > div:nth-child(2) > div small {
        font-weight: 400;
        font-size: 15px;
        line-height: 180%;
        letter-spacing: 0.02em;
        margin-left: 10px; }
        @media only screen and (max-width: 767px) {
          .casts-section__col > div:nth-child(2) > div small {
            font-size: 14px;
            margin-left: 8px;
            position: relative;
            top: 2px; } }
      .casts-section__col > div:nth-child(2) p {
        margin-top: 32px;
        font-size: 12px;
        line-height: 200%;
        letter-spacing: 0.02em; }
        @media only screen and (max-width: 767px) {
          .casts-section__col > div:nth-child(2) p {
            margin-top: 16px; } }
  .casts-section__row02 {
    padding-top: 88px; }
    @media only screen and (max-width: 767px) {
      .casts-section__row02 {
        padding-top: 32px; } }
    .casts-section__row02__accordions {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      .casts-section__row02__accordions > div {
        width: 47.5%; }
        @media only screen and (max-width: 767px) {
          .casts-section__row02__accordions > div {
            width: 100%; } }
    .casts-section__row02__accordion {
      border-top: 1px solid #ccc; }
      .casts-section__row02__accordion > div > div {
        cursor: pointer;
        position: relative;
        padding-top: 16px;
        padding-bottom: 24px; }
        .casts-section__row02__accordion > div > div.none {
          pointer-events: none; }
        @media only screen and (min-width: 768px) {
          .casts-section__row02__accordion > div > div:hover span:after {
            transform: rotate(0deg); } }
        .casts-section__row02__accordion > div > div > strong, .casts-section__row02__accordion > div > div > small {
          display: block;
          text-align: center; }
        .casts-section__row02__accordion > div > div > strong {
          font-size: 22px;
          line-height: 200%;
          letter-spacing: 0.02em; }
          @media only screen and (max-width: 767px) {
            .casts-section__row02__accordion > div > div > strong {
              font-size: 20px; } }
        .casts-section__row02__accordion > div > div > small {
          font-size: 15px;
          line-height: 200%;
          letter-spacing: 0.02em; }
        .casts-section__row02__accordion > div > div span {
          position: absolute;
          right: 30px;
          top: 38px;
          width: 32px;
          height: 32px;
          border: 1px solid rgba(128, 128, 128, 0.35); }
          @media only screen and (max-width: 767px) {
            .casts-section__row02__accordion > div > div span {
              right: 0; } }
          .casts-section__row02__accordion > div > div span:before, .casts-section__row02__accordion > div > div span:after {
            content: "";
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            left: 0;
            margin: auto;
            width: 14px;
            height: 1px;
            background: #808080; }
          .casts-section__row02__accordion > div > div span:after {
            transition: transform .3s;
            transform: rotate(90deg); }
        .casts-section__row02__accordion > div > div > div > div {
          text-align: center;
          font-family: "garamond-premier-pro-caption", serif;
          font-size: 16px;
          line-height: 19px;
          letter-spacing: 0.02em;
          color: #808080; }
          .casts-section__row02__accordion > div > div > div > div small, .casts-section__row02__accordion > div > div > div > div strong {
            font-family: "source-han-serif-japanese", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
            display: inline-block;
            vertical-align: middle;
            color: #000; }
          .casts-section__row02__accordion > div > div > div > div small {
            font-size: 15px;
            line-height: 200%;
            letter-spacing: 0.02em; }
          .casts-section__row02__accordion > div > div > div > div strong {
            font-size: 22px;
            line-height: 200%;
            letter-spacing: 0.02em;
            margin-left: 28px; }
            @media only screen and (max-width: 767px) {
              .casts-section__row02__accordion > div > div > div > div strong {
                margin-left: 16px; } }
      .casts-section__row02__accordion > div p {
        padding: 0px 32px 32px 32px;
        font-size: 12px;
        line-height: 200%;
        letter-spacing: 0.02em;
        display: none; }
        @media only screen and (max-width: 767px) {
          .casts-section__row02__accordion > div p {
            padding: 0px 16px 16px 16px; } }
  .casts-section__images {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-top: 64px; }
    @media only screen and (max-width: 767px) {
      .casts-section__images {
        margin-top: 0; } }
    .casts-section__images img {
      width: 28.125%; }
      @media only screen and (max-width: 767px) {
        .casts-section__images img {
          width: 100%;
          margin-top: 16px; } }

.inner-big#staff {
  padding-top: 120px; }
  @media only screen and (max-width: 767px) {
    .inner-big#staff {
      padding-top: 64px; } }

.casts {
  padding-top: 40px;
  padding-top: 3.125vw;
  padding-bottom: 60px;
  padding-bottom: 4.6875vw;
  background: #000000; }
  @media only screen and (max-width: 767px) {
    .casts {
      padding-top: 40px;
      padding-bottom: 64px; } }
  @media only screen and (max-width: 767px) {
    .casts__upper {
      padding: 0 20px; } }
  .casts__upper h4 {
    font-weight: 400;
    font-size: 24px;
    font-size: 1.875vw;
    line-height: 180%;
    text-align: center;
    letter-spacing: 0.02em; }
    @media only screen and (max-width: 767px) {
      .casts__upper h4 {
        font-size: 20px;
        text-align: center;
        letter-spacing: 0.02em; } }
  .casts__upper h3 {
    margin-top: 8px;
    margin-top: 0.625vw;
    font-size: 20px;
    font-size: 1.5625vw;
    line-height: 180%;
    text-align: center;
    letter-spacing: 0.02em; }
    @media only screen and (max-width: 767px) {
      .casts__upper h3 {
        margin-top: 8px;
        font-weight: 400;
        font-size: 14px;
        line-height: 150%; } }
  .casts__upper p {
    margin-top: 24px;
    margin-top: 1.875vw;
    font-size: 10px;
    font-size: 0.78125vw;
    line-height: 180%;
    text-align: center;
    letter-spacing: 0.02em; }
    @media only screen and (max-width: 767px) {
      .casts__upper p {
        margin-top: 24px;
        font-size: 10px;
        line-height: 180%; } }
  .casts__trailer {
    margin-top: 32px;
    margin-top: 2.5vw; }
    @media only screen and (max-width: 767px) {
      .casts__trailer {
        margin-top: 40px; } }
    .casts__trailer h4 {
      font-family: "Montserrat", sans-serif;
      font-size: 16px;
      line-height: 20px;
      text-align: center;
      letter-spacing: 0.25em;
      opacity: .5; }
  .casts .first__buttons {
    opacity: 1; }

.comment {
  background: #fff;
  color: #000;
  padding-top: 120px;
  margin-top: -1px; }
  @media only screen and (max-width: 767px) {
    .comment {
      padding-top: 64px;
      padding-bottom: 80px; } }
  .comment .inner h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 48px;
    letter-spacing: 0.25em;
    color: #000;
    opacity: 0.5;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      .comment .inner h2 {
        padding-bottom: 0; } }
  .comment__row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    .comment__row > div {
      width: 47.2222222%; }
      @media only screen and (max-width: 767px) {
        .comment__row > div {
          width: 100%; } }
      .comment__row > div blockquote {
        margin-top: 48px; }
        .comment__row > div blockquote p {
          font-size: 17px;
          line-height: 200%;
          letter-spacing: 0.02em; }
          @media only screen and (max-width: 767px) {
            .comment__row > div blockquote p {
              font-size: 16px; } }
        .comment__row > div blockquote > span {
          display: block;
          margin-top: 16px;
          position: relative;
          padding-left: 68px;
          background: #000;
          color: #fff;
          padding-top: 4px;
          padding-bottom: 4px; }
          .comment__row > div blockquote > span:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            margin: auto;
            width: 60px;
            height: 1px;
            background: #fff; }
          .comment__row > div blockquote > span span, .comment__row > div blockquote > span small {
            display: inline-block;
            vertical-align: middle; }
          .comment__row > div blockquote > span span {
            font-size: 15px;
            line-height: 180%;
            letter-spacing: 0.02em; }
          .comment__row > div blockquote > span small {
            font-size: 12px;
            line-height: 180%;
            letter-spacing: 0.02em; }

.first {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-tertiary);
  z-index: 1000; }
  .first__over {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
  .first__close {
    position: absolute;
    right: 0;
    top: 0;
    border: 1px solid var(--color-sub);
    width: 60px;
    height: 60px;
    z-index: 2; }
    @media only screen and (min-width: 768px) {
      .first__close:hover span {
        transform: rotate(0) !important; } }
    .first__close span {
      width: 36px;
      height: 1px;
      background: var(--color-sub);
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      left: 0;
      margin: auto;
      transition: transform .3s; }
      .first__close span:nth-child(1) {
        transform: rotate(45deg); }
      .first__close span:nth-child(2) {
        transform: rotate(-45deg); }
  .first__video-box {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 1230px;
    padding: 0 15px;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2; }
  .first__videos {
    margin: 0 auto;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    position: relative;
    opacity: 0;
    transform: scale(0.9); }
    @media only screen and (max-width: 767px) {
      .first__videos {
        padding-top: 62.25%;
        margin-left: -15px;
        width: calc(100% + 30px); } }
    .first__videos > div {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity .3s; }
      .first__videos > div.on {
        opacity: 1; }
      .first__videos > div iframe {
        width: 100%;
        height: 100%; }
  .first__buttons {
    margin-top: 24px;
    opacity: 0; }
    .first__buttons ul {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      width: 528px;
      margin: auto; }
      .first__buttons ul li {
        width: 160px; }
        .first__buttons ul li a {
          display: block;
          width: 100%;
          text-align: center;
          padding: 10px 0;
          border: 1px solid #fff;
          background: transparent;
          overflow: hidden;
          position: relative; }
          .first__buttons ul li a.on:before {
            top: 0; }
          .first__buttons ul li a.on span, .first__buttons ul li a.on small {
            color: var(--color-tertiary); }
          @media only screen and (min-width: 768px) {
            .first__buttons ul li a:hover:before {
              top: 0; }
            .first__buttons ul li a:hover span, .first__buttons ul li a:hover small {
              color: var(--color-tertiary); } }
          .first__buttons ul li a:before {
            content: "";
            position: absolute;
            left: 0;
            top: 100%;
            width: 100%;
            height: 100%;
            background: #fff;
            transition: top .4s; }
          .first__buttons ul li a span, .first__buttons ul li a small {
            display: inline-block;
            vertical-align: middle;
            position: relative;
            z-index: 2;
            transition: color .4s; }
          .first__buttons ul li a span {
            font-weight: 500;
            font-size: 18px;
            line-height: 1.444444444;
            letter-spacing: 0.02em; }
          .first__buttons ul li a small {
            font-weight: 500;
            font-size: 14px;
            line-height: 1.444444444;
            letter-spacing: 0.02em;
            margin-left: 8px; }
            @media only screen and (max-width: 767px) {
              .first__buttons ul {
              width: 160px; }
              .first__buttons ul li {
              margin-bottom: 16px; }
              .first__buttons ul li a small {
                top: 2px; } }

.introduction {
  background: #fff; }
  .introduction .inner {
    padding-top: 88px;
    padding-bottom: 148px; }
    @media only screen and (max-width: 767px) {
      .introduction .inner {
        padding-top: 48px;
        padding-bottom: 64px; } }
  .introduction h3 {
    font-weight: 500;
    font-size: 32px;
    line-height: 200%;
    letter-spacing: 0.02em;
    color: #000; }
    @media only screen and (max-width: 767px) {
      .introduction h3 {
        font-size: 22px;
        line-height: 200%; } }
    .introduction h3 img {
      height: 93px;
      width: auto; }
      @media only screen and (max-width: 767px) {
        .introduction h3 img {
          width: 100%;
          height: auto; } }
  .introduction__row {
    margin-top: 82px; }
    @media only screen and (max-width: 767px) {
      .introduction__row {
        margin-top: 48px; } }
  .introduction__col {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center; }
    .introduction__col:nth-child(2) {
      margin-top: 40px; }
      @media only screen and (min-width: 768px) {
        .introduction__col:nth-child(2) > div:nth-child(1) {
          padding-top: 30px; } }
      @media only screen and (max-width: 767px) {
        .introduction__col:nth-child(2) {
          margin-top: 16px; } }
      .introduction__col:nth-child(2) > div:nth-child(1) {
        order: 2; }
        @media only screen and (max-width: 767px) {
          .introduction__col:nth-child(2) > div:nth-child(1) {
            margin-top: 40px; } }
      .introduction__col:nth-child(2) > div:nth-child(2) {
        order: 1; }
        @media only screen and (max-width: 767px) {
          .introduction__col:nth-child(2) > div:nth-child(2) {
            margin-top: 16px; } }
    .introduction__col > div:nth-child(1) {
      width: 50%; }
      @media only screen and (max-width: 767px) {
        .introduction__col > div:nth-child(1) {
          width: 100%; } }
      .introduction__col > div:nth-child(1) h3 {
        font-family: "Montserrat", sans-serif;
        font-size: 16px;
        line-height: 20px;
        padding-bottom: 40px;
        letter-spacing: 0.25em;
        color: #808080; }
        @media only screen and (max-width: 767px) {
          .introduction__col > div:nth-child(1) h3 {
            padding-bottom: 32px; } }
      .introduction__col > div:nth-child(1) p {
        font-size: 15px;
        line-height: 180%;
        letter-spacing: 0.02em;
        color: #000000; }
        @media only screen and (max-width: 767px) {
          .introduction__col > div:nth-child(1) p {
            font-size: 14px; } }
    .introduction__col > div:nth-child(2) {
      width: 44.4444444%; }
      @media only screen and (max-width: 767px) {
        .introduction__col > div:nth-child(2) {
          width: 100%;
          margin-top: 42px; } }

.kv {
  position: relative; }
  .kv img {
    display: block;
    width: 100%; }
  .kv__catch01 {
    position: absolute;
    left: 102px;
    left: 7.96875vw;
    top: 32px;
    top: 2.5vw;
    font-size: 0; }
    @media only screen and (max-width: 767px) {
      .kv__catch01 {
        left: 70px;
        left: 5.46875vw;
        top: 100px;
        top: 7.8125vw; } }
    .kv__catch01 img {
      display: inline-block;
      vertical-align: top; }
      .kv__catch01 img:nth-child(1) {
        margin-right: 34px;
        margin-right: 2.65625vw;
        width: 56px;
        width: 4.375vw;
        height: 666px;
        height: 52.03125vw;
        opacity: 0;
        transform: translateY(100px); }
        @media only screen and (max-width: 767px) {
          .kv__catch01 img:nth-child(1) {
            margin-right: 50px;
            margin-right: 3.90625vw;
            transform: translateY(40px);
            width: 42px;
            width: 11.2vw;
            height: 497px;
            height: 132.53333vw; } }
      .kv__catch01 img:nth-child(2) {
        width: 56px;
        width: 4.375vw;
        height: 531px;
        height: 41.48438vw;
        opacity: 0;
        transform: translateY(100px); }
        @media only screen and (max-width: 767px) {
          .kv__catch01 img:nth-child(2) {
            transform: translateY(40px);
            width: 37.97px;
            width: 10.12533vw;
            height: auto; } }
  .kv__catch02 {
    position: absolute;
    right: 112px;
    right: 8.75vw;
    top: 180px;
    top: 14.0625vw; }
    @media only screen and (max-width: 767px) {
      .kv__catch02 {
        right: 24px;
        right: 6.4vw;
        top: 400px;
        top: 106.66667vw; } }
    .kv__catch02 img {
      width: 97px;
      width: 7.57812vw;
      height: 371px;
      height: 28.98438vw;
      opacity: 0;
      transform: translateY(100px); }
      @media only screen and (max-width: 767px) {
        .kv__catch02 img {
          transform: translateY(40px);
          width: 55px;
          width: 14.66667vw;
          height: 211px;
          height: 56.26667vw; } }

.news {
  background: #fff;
  position: relative;
  padding-top: 78px;
  padding-bottom: 72px;
  overflow: hidden;
  color: #000; }
  @media only screen and (max-width: 767px) {
    .news {
      padding-bottom: 42px; } }
  .news .inner > div:nth-child(2), .news .inner > div:nth-child(3) {
    padding-top: 56px; }
    .news .inner > div:nth-child(2) ul, .news .inner > div:nth-child(3) ul {
      width: 200px; }
      .news .inner > div:nth-child(2) ul li, .news .inner > div:nth-child(3) ul li {
        width: 100%; }
  .news h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.25em;
    color: #000;
    opacity: 0.5;
    text-align: center; }
  .news ol {
    text-align: center;
    font-size: 0;
    margin-top: 24px; }
    .news ol li {
      display: inline-block;
      vertical-align: middle;
      padding: 0 12px; }
      .news ol li a {
        display: block; }
  .news ul {
    width: 424px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: auto;
    margin-top: 24px; }
    @media only screen and (max-width: 767px) {
      .news ul {
        width: 200px; } }
    .news ul li {
      width: 47.1698113%; }
      @media only screen and (max-width: 767px) {
        .news ul li {
          width: 100%; }
          .news ul li:nth-child(2) {
            margin-top: 24px; } }
      .news ul li a {
        padding: 10px 0;
        display: block;
        border: 1px solid #000000;
        position: relative;
        text-align: center;
        overflow: hidden; }
        @media only screen and (min-width: 768px) {
          .news ul li a:hover:before {
            top: 0; }
          .news ul li a:hover span {
            color: #fff; }
          .news ul li a:hover svg path {
            fill: #fff; } }
        .news ul li a:before {
          content: "";
          position: absolute;
          left: 0;
          top: 100%;
          z-index: 0;
          width: 100%;
          height: 100%;
          background: #000;
          transition: top .3s; }
        .news ul li a span {
          position: relative;
          z-index: 1;
          font-weight: 500;
          font-size: 18px;
          line-height: 26px;
          letter-spacing: 0.02em;
          display: block;
          padding-left: 10px;
          color: #000;
          transition: color .3s; }
        .news ul li a svg {
          z-index: 1; }
          .news ul li a svg path {
            transition: fill .3s; }
          .news ul li a svg:nth-child(1) {
            width: 20px;
            height: auto;
            position: absolute;
            left: 32px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            transform: translateY(-50%); }
          .news ul li a svg:nth-child(3) {
            width: 16px;
            height: auto;
            position: absolute;
            right: 19px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            transform: translateY(-50%); }
      .news ul li:nth-child(2) a svg:nth-child(1) {
        left: 19px; }

.story {
  background-image: url(../images/img03.jpg);
  background-size: cover;
  background-position: center right;
  padding: 9.2% 0; }
  @media only screen and (max-width: 1280px) {
    .story {
      padding: 68px 0; } }
  @media only screen and (max-width: 767px) {
    .story {
      background: #fff;
      color: #000;
      padding: 0; } }
  .story h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 48px;
    letter-spacing: 0.25em;
    color: #fff;
    opacity: 0.5; }
    @media only screen and (max-width: 767px) {
      .story h2 {
        color: #000000;
        padding-top: 48px;
        padding-bottom: 32px; } }
  .story p {
    font-size: 15px;
    line-height: 180%;
    letter-spacing: 0.02em; }
    @media only screen and (max-width: 767px) {
      .story p {
        font-size: 14px; } }

.theater {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 128px; }
  @media only screen and (max-width: 767px) {
    .theater {
      padding-top: 68px; } }
  .theater h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 48px;
    letter-spacing: 0.25em;
    color: #000;
    opacity: 0.5;
    text-align: center; }
  .theater .inner-big > small {
    display: block;
    text-align: center;
    font-size: 12px;
    line-height: 180%;
    text-align: center;
    letter-spacing: 0.02em;
    color: #808080;
    margin-top: 40px; }
  .theater table {
    width: 100%;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      .theater table {
        display: block;
        width: 100%; } }
    .theater table thead {
      letter-spacing: 0.02em;
      font-size: 15px;
      line-height: 180%;
      color: #808080; }
      @media only screen and (max-width: 767px) {
        .theater table thead {
          display: none; } }
      .theater table thead th {
        border-bottom: 1px solid #808080;
        text-align: center;
        padding: 16px 0; }
    .theater table tbody {
      letter-spacing: 0.02em;
      font-size: 15px;
      line-height: 180%;
      color: #000; }
      @media only screen and (max-width: 767px) {
        .theater table tbody {
          display: block;
          width: 100%;
          padding: 0; } }
      @media only screen and (max-width: 767px) {
        .theater table tbody tr {
          display: block;
          width: 100%;
          padding: 24px 0;
          border-bottom: 1px solid #808080; } }
      @media only screen and (max-width: 767px) {
        .theater table tbody tr:nth-child(1) {
          border-top: 1px solid #808080; } }
      .theater table tbody tr:nth-child(1) td {
        padding: 16px 0; }
        @media only screen and (max-width: 767px) {
          .theater table tbody tr:nth-child(1) td {
            display: block;
            width: 100%;
            padding: 8px 0; } }
      .theater table tbody td {
        border-bottom: 1px solid #808080;
        text-align: center;
        padding: 24px 0; }
        @media only screen and (max-width: 767px) {
          .theater table tbody td {
            border: none;
            display: block;
            width: 100%;
            padding: 8px 0; } }
        .theater table tbody td small {
          letter-spacing: 0.02em;
          font-size: 12px;
          line-height: 180%;
          display: block; }
        .theater table tbody td a {
          text-decoration: underline; }

.thumbs {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 104px; }
  .thumbs ul {
    display: -webkit-flex;
    display: flex;
    width: calc((357px * 7)*3);
    height: 180px;
    overflow: hidden; }
    @media only screen and (max-width: 767px) {
      .thumbs ul {
        height: 120px;
        width: calc((238px * 7)*3); } }
    .thumbs ul li {
      padding: 0 12px; }
      @media only screen and (max-width: 767px) {
        .thumbs ul li {
          padding: 0 8px; } }
      .thumbs ul li img {
        display: block;
        height: 100%;
        width: auto; }

/**

 */
body.top {
  height: 100%;
  width: 100%; }
