@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: "Hiragino Sans", "ヒラギノ角ゴ Pro", "游ゴシック", YuGothic, "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  background: #000; }

* {
  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: 1150px;
  padding: 0 30px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner {
      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; }

.footer {
  background: #1c1c1c;
  padding: 120px 0 20px;
  text-align: center; }
  @media only screen and (max-width: 767px) {
    .footer {
      padding: 80px 0 20px; } }
  .footer__official {
    text-align: center;
    margin-bottom: 24px; }
    .footer__official a span {
      font-size: 17px;
      font-size: 1.7rem;
      font-family: "Inter", sans-serif;
      letter-spacing: 0.03em;
      font-weight: 300;
      color: #fff; }
  .footer__links {
    text-align: center;
    margin-top: 42px; }
    .footer__links a {
      font-size: 12px;
      font-size: 1.2rem;
      color: #9B9B9B; }
  @media only screen and (max-width: 767px) {
    .footer__inner {
      padding: 0 20px; } }
  .footer__inner ul {
    text-align: center; }
    .footer__inner ul li {
      display: inline-block;
      vertical-align: middle;
      margin: 0 10px; }
      .footer__inner ul li a {
        display: block; }
        .footer__inner ul li a img {
          height: 34px;
          width: auto;
          display: block; }
  .footer__inner p {
    padding-top: 80px;
    font-weight: 600;
    font-size: 12px;
    line-height: 37px;
    text-align: center;
    color: #9B9B9B; }
    @media only screen and (max-width: 767px) {
      .footer__inner p {
        padding-top: 50px;
        font-size: 12px;
        line-height: 1.4; } }
  .footer__inner small {
    margin-top: 12px;
    display: block;
    font-size: 11px;
    line-height: 2;
    text-align: center;
    color: #CDCDCD;
    font-family: "Nanum Myeongjo", serif; }
    @media only screen and (max-width: 767px) {
      .footer__inner small {
        font-size: 10px; } }
  .footer__pagetop {
    position: fixed;
    right: 40px;
    bottom: 40px;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 60px;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); }
    @media only screen and (max-width: 767px) {
      .footer__pagetop {
        right: 20px;
        width: 40px;
        height: 40px; } }
    .footer__pagetop a {
      display: block;
      width: 100%;
      height: 100%; }
      .footer__pagetop a span {
        width: 8px;
        height: 8px;
        border-bottom: 1px solid #1c1c1c;
        border-right: 1px solid #1c1c1c;
        -webkit-transform: translate(-50%, -50%) rotate(-135deg);
        -moz-transform: translate(-50%, -50%) rotate(-135deg);
        -ms-transform: translate(-50%, -50%) rotate(-135deg);
        -o-transform: translate(-50%, -50%) rotate(-135deg);
        transform: translate(-50%, -50%) rotate(-135deg);
        position: absolute;
        left: 50%;
        top: 54%; }

.about {
  position: relative;
  z-index: 1;
  padding-bottom: 140px;
  background-image: url(../images/bg01.png);
  background-size: cover;
  background-position: left center;
  text-align: center; }
  @media only screen and (max-width: 767px) {
    .about {
      padding-bottom: 80px; } }
  .about__inner p {
    font-weight: 600;
    font-size: 17px;
    line-height: 2;
    text-align: center;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    padding-top: 300px;
    max-width: 1150px;
    padding-right: 30px;
    padding-left: 30px;
    margin: auto; }
    @media only screen and (max-width: 767px) {
      .about__inner p {
        padding: 0 20px;
        padding-top: 180px;
        font-size: 15px;
        text-align: left; } }
  .about__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -92px; }
    @media only screen and (max-width: 767px) {
      .about__logo {
        width: 80%;
        top: -40px; } }
    .about__logo img {
      width: 651px;
      height: auto;
      display: block;
      margin: auto; }
  .about__image01 {
    position: absolute;
    top: -140px;
    left: -73px; }
    @media only screen and (max-width: 767px) {
      .about__image01 {
        display: none; } }
    .about__image01 img {
      width: auto;
      height: 421px; }
  .about__image02 {
    position: absolute;
    right: 0;
    bottom: -50px; }
    @media only screen and (max-width: 767px) {
      .about__image02 {
        display: none; } }
    .about__image02 img {
      width: auto;
      height: 421px; }

.comming {
  background: #000;
  background-image: url(../images/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%; }
  @media only screen and (max-width: 767px) {
    .comming {
      height: 100svh; } }
  .comming svg {
    display: block;
    margin: auto;
    width: 600px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
    @media only screen and (max-width: 767px) {
      .comming svg {
        width: 89%; } }

.interview {
  background: #fff;
  padding-bottom: 144px; }
  @media only screen and (max-width: 767px) {
    .interview {
      padding-bottom: 80px; } }
  .interview__head > div {
    width: 100%; }
    @media only screen and (max-width: 767px) {
      .interview__head > div {
        width: 100%;
        padding-top: 32px; } }
    .interview__head > div h2 {
      text-align: center; }
      .interview__head > div h2 strong, .interview__head > div h2 span {
        display: block; }
      .interview__head > div h2 strong {
        font-family: "Nanum Myeongjo", serif;
        font-size: 54px;
        color: #222222; }
        @media only screen and (max-width: 767px) {
          .interview__head > div h2 strong {
            font-size: 32px; } }
      .interview__head > div h2 span {
        font-family: "Nanum Myeongjo", serif;
        font-size: 20px;
        text-align: center;
        margin-top: 12px;
        color: #AB8359; }
        @media only screen and (max-width: 767px) {
          .interview__head > div h2 span {
            font-size: 17px; } }
  .interview__content {
    padding-top: 0px; }
    @media only screen and (max-width: 767px) {
      .interview__content {
        padding-top: 1px; } }
    .interview__content p {
      font-weight: 300;
      font-size: 17px;
      line-height: 2.6;
      color: #222222; }
      @media only screen and (max-width: 767px) {
        .interview__content p {
          font-size: 14px;
          line-height: 2; } }
  .interview__boxes {
    padding-left: 60px; }
    @media only screen and (max-width: 767px) {
      .interview__boxes {
        padding-left: 0; } }
  .interview__toggle {
    font-family: "Nanum Myeongjo", serif;
    font-size: 22px;
    letter-spacing: 0.11em;
    position: relative;
    cursor: pointer;
    color: #222;
    border-bottom: 1px solid #666;
    padding-bottom: 18px;
    padding-top: 20px; }
    .interview__toggle:before {
      content: "";
      position: absolute;
      right: 12px;
      top: 0px;
      bottom: 0;
      margin: auto;
      width: 8px;
      height: 8px;
      border-right: 2px solid #666;
      border-bottom: 2px solid #666;
      transform: rotate(45deg); }
      @media only screen and (max-width: 767px) {
        .interview__toggle:before {
          top: -3px; } }
    @media only screen and (max-width: 767px) {
      .interview__toggle {
        font-size: 16px;
        margin-top: 6px; } }
  .interview__text {
    padding: 40px 0;
    display: none; }
    .interview__text > strong {
      display: block;
      font-size: 20px;
      padding-bottom: 24px;
      color: #AB8359; }
    .interview__text > p {
      font-size: 15px;
      color: #666;
      line-height: 1.65;
      padding-bottom: 32px;
      border-bottom: 1px dashed #ddd; }
      .interview__text > p > b {
        margin-top: 12px;
        display: block;
        color: #999;
        font-size: 12px;
        text-align: right; }
    .interview__text__main.interview__text__main__small > p {
      padding-left: 80px; }
    .interview__text__main > small {
      display: block;
      font-size: 14px;
      color: #999;
      margin-top: 48px;
      line-height: 1.5; }
      @media only screen and (min-width: 768px) {
        .interview__text__main > small {
          margin-top: 60px; } }
    .interview__text__main > em {
      margin-top: 50px;
      display: block;
      color: #999;
      font-size: 12px;
      text-align: right; }
    .interview__text__main p {
      font-size: 15px;
      line-height: 1.7;
      position: relative;
      padding-left: 50px;
      margin-top: 24px; }
      @media only screen and (max-width: 767px) {
        .interview__text__main p {
          font-size: 14px; } }
      .interview__text__main p > span {
        position: absolute;
        left: 0;
        top: 0; }
      .interview__text__main p.type01 span {
        color: pink; }
      .interview__text__main p.type02 span {
        color: orange; }
      .interview__text__main p.type03 span {
        color: red; }
      .interview__text__main p.type04 span {
        color: #000539; }
      .interview__text__main p.type05 span {
        color: blue; }
      .interview__text__main p.type06 span {
        color: green; }
      .interview__text__main p.type07 span {
        color: #2ec0d6; }
      .interview__text__main p.type08 span {
        color: #c1c1c1; }
    .interview__text__main > div {
      text-align: center;
      color: #AB8359;
      text-decoration: underline;
      font-size: 15px;
      margin-top: 42px; }

.kv {
  position: relative; }
  .kv__image {
    background-image: url(../images/main01.jpg);
    background-position: center;
    background-size: cover;
    height: 720px; }
    @media only screen and (max-width: 767px) {
      .kv__image {
        height: 0;
        padding-top: 70%;
        background-image: url(../images/main01_sp.jpg); } }

.links {
  background: #FAFAFA;
  padding: 110px 0; }
  @media only screen and (max-width: 767px) {
    .links {
      padding: 80px 0; } }
  .links .inner h2 {
    text-align: center;
    position: relative;
    padding-bottom: 70px; }
    .links .inner h2:before {
      content: "";
      height: 40px;
      width: 1px;
      background: #AB8359;
      position: absolute;
      left: 0;
      bottom: 0;
      right: 0;
      margin: auto; }
    .links .inner h2 span {
      font-size: 50px;
      letter-spacing: 0.11em;
      color: #222222;
      font-family: "Nanum Myeongjo", serif; }
      @media only screen and (max-width: 767px) {
        .links .inner h2 span {
          font-size: 32px; } }
  .links .inner > div {
    background: #FFFFFF;
    box-shadow: 0px 3px 20px rgba(132, 132, 132, 0.2);
    margin-top: 60px;
    padding: 0 40px 32px; }
    @media only screen and (max-width: 767px) {
      .links .inner > div {
        padding: 20px; } }
    .links .inner > div ul {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      padding: 32px 0; }
      @media only screen and (max-width: 767px) {
        .links .inner > div ul {
          padding: 0; } }
      .links .inner > div ul li {
        margin-top: 23px;
        font-weight: 600;
        font-size: 14px;
        line-height: 1.7;
        color: #222222; }
        .links .inner > div ul li:nth-child(odd) {
          width: 40%; }
          @media only screen and (max-width: 767px) {
            .links .inner > div ul li:nth-child(odd) {
              width: 100%; } }
        .links .inner > div ul li:nth-child(even) {
          width: 60%; }
          @media only screen and (max-width: 767px) {
            .links .inner > div ul li:nth-child(even) {
              width: 100%; } }
        @media only screen and (max-width: 767px) {
          .links .inner > div ul li {
            font-size: 12px; } }
        .links .inner > div ul li span {
          display: block; }
        .links .inner > div ul li a {
          text-decoration: underline; }
          @media only screen and (max-width: 767px) {
            .links .inner > div ul li a {
              font-size: 12px;
              word-wrap: break-word; } }

.live {
  background: #fff;
  padding-top: 130px; }
  .live .inner h2 {
    text-align: center;
    position: relative;
    padding-bottom: 70px; }
    .live .inner h2:before {
      content: "";
      height: 40px;
      width: 1px;
      background: #AB8359;
      position: absolute;
      left: 0;
      bottom: 0;
      right: 0;
      margin: auto; }
    .live .inner h2 strong, .live .inner h2 small {
      display: block; }
    .live .inner h2 strong {
      font-family: "Nanum Myeongjo", serif;
      font-size: 54px;
      color: #222222; }
      @media only screen and (max-width: 767px) {
        .live .inner h2 strong {
          font-size: 32px; } }
    .live .inner h2 small {
      font-family: "Nanum Myeongjo", serif;
      font-size: 18px;
      text-align: center;
      margin-top: 12px;
      color: #AB8359; }
      @media only screen and (max-width: 767px) {
        .live .inner h2 small {
          font-size: 16px; } }
  .live__box {
    background: #FFFFFF;
    border: 4px solid #DEC7AF;
    box-shadow: 0px 13px 20px rgba(87, 50, 11, 0.07);
    margin-top: 60px;
    padding: 35px 30px; }
    @media only screen and (max-width: 767px) {
      .live__box {
        padding: 40px 20px; } }
    .live__box h3 {
      font-weight: 700;
      font-size: 18px;
      letter-spacing: 0.02em;
      color: #B08B63;
      padding-bottom: 18px;
      border-bottom: 1px solid #DEC7AF; }
      @media only screen and (max-width: 767px) {
        .live__box h3 {
          font-size: 16px; } }
    .live__box h4 {
      font-weight: 700;
      font-size: 17px;
      letter-spacing: 0.02em;
      color: #222222;
      margin-top: 32px; }
      @media only screen and (max-width: 767px) {
        .live__box h4 {
          font-size: 14px; } }
    .live__box__row {
      padding-top: 12px; }
    .live__box__col {
      padding-top: 18px;
      padding-bottom: 18px;
      border-bottom: 1px dashed #DEC7AF;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      font-size: 15px;
      line-height: 1.6; }
      .live__box__col > div:nth-child(1) {
        width: 20%; }
        @media only screen and (max-width: 767px) {
          .live__box__col > div:nth-child(1) {
            width: 100%; } }
      .live__box__col > div:nth-child(2) {
        width: 40%; }
        @media only screen and (max-width: 767px) {
          .live__box__col > div:nth-child(2) {
            width: 100%; } }
      .live__box__col > div:nth-child(3) {
        width: 40%; }
        @media only screen and (max-width: 767px) {
          .live__box__col > div:nth-child(3) {
            width: 100%; } }
  .live__ticket {
    background-color: #000000;
    position: relative;
    background-image: url(../images/bg02.png);
    background-position: center right;
    background-size: auto 100%;
    background-repeat: no-repeat;
    margin-top: 80px; }
    .live__ticket__button {
      margin-top: 32px; }
      .live__ticket__button a {
        background: linear-gradient(90deg, #FDB86F 0%, #FFB66A 100%);
        border-radius: 60px;
        display: block;
        text-align: center;
        font-size: 14px;
        padding: 12px 8px;
        width: 240px; }
        @media only screen and (max-width: 767px) {
          .live__ticket__button a {
            width: 100%; } }
    .live__ticket__inner {
      max-width: 1160px;
      margin: auto;
      padding: 0 30px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        .live__ticket__inner {
          padding: 0 20px; } }
    .live__ticket__row {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      align-items: center; }
      .live__ticket__row > div:nth-child(1) {
        display: none; }
        .live__ticket__row > div:nth-child(1) img {
          width: 480px;
          position: relative;
          margin-top: -60px; }
          @media only screen and (max-width: 767px) {
            .live__ticket__row > div:nth-child(1) img {
              width: 150%;
              max-width: calc(100% + 20px); } }
      .live__ticket__row > div:nth-child(2) {
        width: 100%;
        padding: 40px 0; }
        @media only screen and (max-width: 767px) {
          .live__ticket__row > div:nth-child(2) {
            width: 100%; } }
        @media only screen and (max-width: 767px) {
          .live__ticket__row > div:nth-child(2) {
            padding-top: 32px; } }
        .live__ticket__row > div:nth-child(2) h3 {
          font-family: "Nanum Myeongjo", serif;
          font-style: normal;
          font-weight: 600;
          font-size: 30px;
          letter-spacing: 0.11em;
          color: #DEC7AF; }
          @media only screen and (max-width: 767px) {
            .live__ticket__row > div:nth-child(2) h3 {
              font-size: 22px; } }
        .live__ticket__row > div:nth-child(2) h4 {
          font-size: 11px;
          line-height: 1.8;
          color: #FFFFFF;
          margin-top: 20px; }
          @media only screen and (max-width: 767px) {
            .live__ticket__row > div:nth-child(2) h4 {
              padding-bottom: 32px; } }
    .live__ticket__content {
      margin-top: 30px; }
      .live__ticket__content > div {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px dashed rgba(222, 199, 175, 0.7);
        padding: 12px 0; }
        .live__ticket__content > div p {
          font-style: normal;
          font-weight: 400;
          font-size: 14px;
          line-height: 1.5;
          color: #FFFFFF;
          width: calc(100% - 110px);
          padding-right: 12px; }
          @media only screen and (max-width: 767px) {
            .live__ticket__content > div p {
              font-size: 13px;
              width: 100%; } }
        .live__ticket__content > div > div {
          width: 110px; }
          @media only screen and (max-width: 767px) {
            .live__ticket__content > div > div {
              width: 180px;
              margin: 0 0 auto;
              margin-top: 12px; } }
          .live__ticket__content > div > div a {
            background: linear-gradient(90deg, #FDB86F 0%, #FFB66A 100%);
            border-radius: 60px;
            display: block;
            text-align: center;
            font-size: 12px;
            padding: 8px; }

.movie {
  background: #FAFAFA;
  padding: 116px 0; }
  .movie .inner h2 {
    text-align: center;
    position: relative;
    padding-bottom: 70px; }
    .movie .inner h2:before {
      content: "";
      height: 40px;
      width: 1px;
      background: #AB8359;
      position: absolute;
      left: 0;
      bottom: 0;
      right: 0;
      margin: auto; }
    .movie .inner h2 span {
      font-size: 50px;
      letter-spacing: 0.11em;
      color: #222222;
      font-family: "Nanum Myeongjo", serif; }
      @media only screen and (max-width: 767px) {
        .movie .inner h2 span {
          font-size: 32px; } }
  .movie__video {
    margin-top: 48px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .movie__video {
        margin-top: 32px; } }
    .movie__video > div {
      width: 32%;
      margin-top: 40px; }
      @media only screen and (max-width: 767px) {
        .movie__video > div {
          width: 100%; } }
      .movie__video > div iframe {
        height: 200px;
        width: 100%; }
        @media only screen and (max-width: 767px) {
          .movie__video > div iframe {
            height: 230px; } }
      .movie__video > div p {
        text-align: center;
        font-size: 14px;
        font-weight: bold;
        padding: 18px 0 0;
        line-height: 1.4; }
  .movie__box {
    background: #FFFFFF;
    border: 1px solid #DEC7AF;
    margin-top: 60px;
    padding: 35px 30px; }
    @media only screen and (max-width: 767px) {
      .movie__box {
        padding: 20px;
        margin-top: 40px; } }
    .movie__box h3 {
      font-weight: 700;
      font-size: 18px;
      letter-spacing: 0.02em;
      color: #B08B63;
      padding-bottom: 24px; }
      @media only screen and (max-width: 767px) {
        .movie__box h3 {
          font-size: 15px;
          padding-bottom: 18px; } }
    .movie__box ul {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      .movie__box ul li {
        width: 50%;
        padding-left: 20px;
        position: relative;
        font-size: 15px;
        line-height: 1.5;
        color: #222222;
        margin-top: 4px; }
        @media only screen and (max-width: 767px) {
          .movie__box ul li {
            width: 100%;
            font-size: 13px;
            padding-left: 16px; } }
        .movie__box ul li:before {
          content: "・";
          position: absolute;
          left: 0;
          top: 0; }

.products {
  background: #fff;
  padding-top: 120px;
  padding-bottom: 124px; }
  .products .inner h2 {
    text-align: center;
    position: relative;
    padding-bottom: 70px; }
    .products .inner h2:before {
      content: "";
      height: 40px;
      width: 1px;
      background: #AB8359;
      position: absolute;
      left: 0;
      bottom: 0;
      right: 0;
      margin: auto; }
    .products .inner h2 span {
      font-size: 50px;
      letter-spacing: 0.11em;
      color: #222222;
      font-family: "Nanum Myeongjo", serif; }
      @media only screen and (max-width: 767px) {
        .products .inner h2 span {
          font-size: 32px; } }
  .products__row:nth-child(2) .products__col01 {
    border-top: none; }
  .products__col01 {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 42px;
    padding-top: 42px;
    border-top: 1px dashed #BCBCBC; }
    .products__col01 > img {
      width: 24.0909091%;
      border: 1px solid #E0E0E0; }
      @media only screen and (max-width: 767px) {
        .products__col01 > img {
          width: 100%; } }
    .products__col01 > div {
      width: 70.9090909%; }
      @media only screen and (max-width: 767px) {
        .products__col01 > div {
          width: 100%;
          padding-top: 24px; } }
      .products__col01 > div h3 {
        font-weight: 700;
        font-size: 22px;
        line-height: 2.1;
        letter-spacing: 0.02em;
        color: #222222;
        font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif; }
      .products__col01 > div b {
        font-weight: bold;
        display: block;
        margin-bottom: 12px; }
      .products__col01 > div > p {
        font-weight: 300;
        font-size: 15px;
        line-height: 1.8;
        letter-spacing: 0.02em;
        color: #222222; }
      .products__col01 > div blockquote {
        background: #F5F5F5;
        padding: 25px;
        margin-top: 20px; }
        .products__col01 > div blockquote p {
          font-size: 15px;
          line-height: 1.8;
          letter-spacing: 0.02em;
          color: #222222; }
        .products__col01 > div blockquote ol {
          display: -webkit-flex;
          display: flex;
          -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-justify-content: space-between;
          justify-content: space-between;
          margin-bottom: 20px; }
          .products__col01 > div blockquote ol li {
            font-size: 15px;
            line-height: 1.8;
            letter-spacing: 0.02em;
            color: #222222;
            width: 48%; }
            @media only screen and (max-width: 767px) {
              .products__col01 > div blockquote ol li {
                font-size: 14px;
                width: 100%; } }
      .products__col01 > div ul {
        font-size: 0; }
        .products__col01 > div ul p {
          font-size: 15px;
          text-align: center;
          line-height: 2;
          padding: 5px 0; }
          @media only screen and (max-width: 767px) {
            .products__col01 > div ul p {
              font-size: 14px; } }
        .products__col01 > div ul li {
          display: inline-block;
          vertical-align: middle;
          width: 16%;
          border: 1px solid #eee;
          margin-right: 12px;
          margin-top: 12px; }
          @media only screen and (max-width: 767px) {
            .products__col01 > div ul li {
              width: 30%; } }
  .products__special {
    margin-top: 60px;
    border: 4px solid #DEC7AF;
    box-shadow: 0px 13px 20px rgba(87, 50, 11, 0.07); }
    .products__special__inner {
      padding: 50px 40px; }
      @media only screen and (max-width: 767px) {
        .products__special__inner {
          padding: 32px 20px; } }
      .products__special__inner h3 {
        font-weight: 700;
        font-size: 20px;
        line-height: 1.3;
        letter-spacing: 0.02em;
        color: #AB8359; }
        @media only screen and (max-width: 767px) {
          .products__special__inner h3 {
            font-size: 17px; } }
      .products__special__inner h4 {
        font-weight: 700;
        font-size: 18px;
        line-height: 1.6;
        letter-spacing: 0.02em;
        color: #222222;
        margin-top: 32px; }
        @media only screen and (max-width: 767px) {
          .products__special__inner h4 {
            font-size: 15px;
            margin-top: 24px; } }
      .products__special__inner > p {
        font-weight: 300;
        font-size: 15px;
        line-height: 2;
        color: #222222;
        margin-top: 17px; }
        @media only screen and (max-width: 767px) {
          .products__special__inner > p {
            font-size: 13px; } }
      .products__special__inner > small {
        display: block;
        font-weight: 300;
        font-size: 12px;
        line-height: 2;
        color: #555;
        margin-top: 24px; }
        @media only screen and (max-width: 767px) {
          .products__special__inner > small {
            font-size: 11px;
            margin-top: 20px; } }
      .products__special__inner h5 {
        font-weight: 700;
        font-size: 18px;
        line-height: 1.6;
        letter-spacing: 0.02em;
        color: #222222;
        margin-top: 32px;
        border-top: 1px dashed #BCBCBC;
        padding-top: 32px; }
        @media only screen and (max-width: 767px) {
          .products__special__inner h5 {
            font-size: 15px;
            margin-top: 24px;
            padding-top: 24px; } }
    .products__special__row02 {
      margin-top: 32px; }
      .products__special__row02 figure {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        align-items: center; }
        .products__special__row02 figure > a {
          width: 40%; }
          @media only screen and (max-width: 767px) {
            .products__special__row02 figure > a {
              width: 100%;
              order: 2;
              margin-top: 22px; } }
          .products__special__row02 figure > a div {
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            padding-top: 100%;
            border: 1px solid #ccc; }
          .products__special__row02 figure > a p {
            text-align: center;
            padding-top: 15px;
            font-size: 14px;
            line-height: 1.7;
            font-weight: normal; }
        .products__special__row02 figure figcaption {
          width: 60%;
          padding-left: 60px;
          line-height: 1.7;
          padding-top: 15px;
          font-size: 14px;
          font-weight: normal; }
          @media only screen and (max-width: 767px) {
            .products__special__row02 figure figcaption {
              width: 100%;
              padding-left: 0;
              order: 1;
              padding-top: 0;
              font-size: 14px; } }
    .products__special__row {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      align-items: flex-start; }
      .products__special__row.full > div {
        width: 31%;
        display: block; }
        @media only screen and (max-width: 767px) {
          .products__special__row.full > div {
            width: 100%; } }
        .products__special__row.full > div img {
          width: 100%; }
        .products__special__row.full > div div {
          text-align: center;
          margin: 0;
          padding: 0;
          width: 100%; }
          .products__special__row.full > div div p {
            padding-top: 15px;
            font-size: 14px;
            font-weight: normal; }
      .products__special__row__button {
        padding-bottom: 24px;
        margin-top: 32px; }
        .products__special__row__button a {
          display: block;
          width: 100%;
          border-radius: 50px;
          border: 1px solid #AB8359;
          text-align: center;
          padding: 18px 0; }
          @media only screen and (min-width: 768px) {
            .products__special__row__button a {
              transition: all .3s; }
              .products__special__row__button a span {
                transition: all .3s; }
              .products__special__row__button a:hover {
                background: #AB8359; }
                .products__special__row__button a:hover span {
                  color: #fff; } }
          .products__special__row__button a span {
            font-weight: 700;
            font-size: 16px;
            text-align: center;
            color: #AB8359;
            display: block; }
      .products__special__row > div {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        align-items: center;
        width: 49%;
        margin-top: 32px; }
        @media only screen and (max-width: 767px) {
          .products__special__row > div {
            width: 100%;
            margin-top: 24px; } }
        .products__special__row > div > a {
          width: 40%;
          display: block; }
        .products__special__row > div img {
          width: 100%;
          border: 1px solid #E0E0E0; }
          @media only screen and (max-width: 767px) {
            .products__special__row > div img {
              width: 100%; } }
        .products__special__row > div div {
          width: 60%;
          padding-left: 36px; }
          @media only screen and (max-width: 767px) {
            .products__special__row > div div {
              padding-left: 24px; } }
          @media only screen and (max-width: 767px) {
            .products__special__row > div div {
              width: 100%;
              padding-left: 0;
              padding-top: 20px;
              text-align: center; } }
          .products__special__row > div div p {
            font-weight: 700;
            font-size: 15px;
            line-height: 1.6;
            color: #222222; }
            @media only screen and (max-width: 767px) {
              .products__special__row > div div p {
                font-size: 14px;
                text-align: center; } }
          .products__special__row > div div a {
            display: block;
            width: 110px;
            border-radius: 50px;
            border: 1px solid #AB8359;
            text-align: center;
            padding: 7px 0;
            margin-top: 10px; }
            @media only screen and (max-width: 767px) {
              .products__special__row > div div a {
                margin: auto;
                margin-top: 10px; } }
            @media only screen and (min-width: 768px) {
              .products__special__row > div div a {
                transition: all .3s; }
                .products__special__row > div div a span {
                  transition: all .3s; }
                .products__special__row > div div a:hover {
                  background: #AB8359; }
                  .products__special__row > div div a:hover span {
                    color: #fff; } }
            .products__special__row > div div a span {
              font-weight: 700;
              font-size: 14px;
              text-align: center;
              color: #AB8359;
              display: block; }

.special {
  background: #fff;
  position: relative; }
  .special__cont01 {
    padding-top: 157px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .special__cont01 {
        padding-top: 80px; } }
    .special__cont01 > span {
      position: absolute;
      right: 0;
      top: 250px; }
      .special__cont01 > span img {
        display: block;
        width: 112px;
        height: auto; }
  .special__cont02 {
    background: #F7F3EE;
    position: relative;
    padding-top: 242px;
    padding-bottom: 248px; }
    @media only screen and (max-width: 767px) {
      .special__cont02 {
        padding-top: 90px;
        padding-bottom: 80px; } }
    .special__cont02 > span {
      position: absolute;
      left: 0;
      top: 0; }
      .special__cont02 > span img {
        display: block;
        height: 80px; }
        @media only screen and (max-width: 767px) {
          .special__cont02 > span img {
            height: 40px; } }
    .special__cont02 > div > h3 {
      font-family: "Nanum Myeongjo", serif;
      font-size: 50px;
      letter-spacing: 0.11em;
      color: #222222;
      margin-top: 0; }
      @media only screen and (max-width: 767px) {
        .special__cont02 > div > h3 {
          font-size: 32px; } }
    .special__cont02 > div > p {
      margin-top: 50px;
      font-weight: 300;
      font-size: 17px;
      line-height: 2.6;
      color: #222222; }
      @media only screen and (max-width: 767px) {
        .special__cont02 > div > p {
          font-size: 14px;
          line-height: 2; } }
  .special__inner > h2 {
    text-align: center; }
    .special__inner > h2 strong, .special__inner > h2 small {
      display: block; }
    .special__inner > h2 strong {
      font-family: "Nanum Myeongjo", serif;
      font-size: 50px;
      letter-spacing: 0.11em;
      color: #222222; }
      @media only screen and (max-width: 767px) {
        .special__inner > h2 strong {
          font-size: 32px; } }
    .special__inner > h2 small {
      font-family: "Nanum Myeongjo", serif;
      font-size: 20px;
      color: #AB8359;
      margin-top: 12px; }
      @media only screen and (max-width: 767px) {
        .special__inner > h2 small {
          font-size: 16px; } }
  .special__inner > h3 {
    font-family: "Nanum Myeongjo", serif;
    font-size: 26px;
    letter-spacing: 0.11em;
    color: #AB8359;
    margin-top: 60px;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #AB8359;
    padding-bottom: 20px; }
    .special__inner > h3.none {
      cursor: inherit;
      pointer-events: none;
      border-bottom: none; }
      @media only screen and (max-width: 767px) {
        .special__inner > h3.none {
          padding-bottom: 0; } }
      .special__inner > h3.none:before {
        content: none; }
    .special__inner > h3:before {
      content: "";
      position: absolute;
      right: 12px;
      top: -5px;
      bottom: 0;
      margin: auto;
      width: 10px;
      height: 10px;
      border-right: 2px solid #AB8359;
      border-bottom: 2px solid #AB8359;
      transform: rotate(45deg); }
      @media only screen and (max-width: 767px) {
        .special__inner > h3:before {
          top: -24px; } }
    @media only screen and (max-width: 767px) {
      .special__inner > h3 {
        font-size: 20px;
        margin-top: 32px; } }
  .special__row {
    display: none; }
  .special__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;
    margin-top: 40px; }
    @media only screen and (max-width: 767px) {
      .special__col {
        margin-top: 40px; } }
    .special__col > div:nth-child(1) {
      width: 34.8623853%;
      display: none; }
      @media only screen and (max-width: 767px) {
        .special__col > div:nth-child(1) {
          width: 100%; } }
    .special__col > div:nth-child(2) {
      width: 100%; }
      @media only screen and (max-width: 767px) {
        .special__col > div:nth-child(2) {
          width: 100%;
          padding-top: 23px; } }
      .special__col > div:nth-child(2) h3 {
        font-weight: 700;
        font-size: 18px;
        line-height: 47px;
        letter-spacing: 0.02em;
        color: #222222;
        font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
        position: relative;
        text-align: right;
        margin-top: 17px; }
        @media only screen and (max-width: 767px) {
          .special__col > div:nth-child(2) h3 {
            font-size: 15px; } }
      .special__col > div:nth-child(2) p {
        font-style: normal;
        font-weight: 300;
        font-size: 16px;
        line-height: 2.5;
        letter-spacing: 0.02em;
        color: #222222; }
        @media only screen and (max-width: 767px) {
          .special__col > div:nth-child(2) p {
            font-size: 15px;
            line-height: 2;
            margin-top: 12px; } }
        .special__col > div:nth-child(2) p b {
          display: block;
          font-weight: bold;
          font-size: 18px; }
          @media only screen and (max-width: 767px) {
            .special__col > div:nth-child(2) p b {
              font-size: 16px; } }
        .special__col > div:nth-child(2) p small {
          display: block;
          font-size: 13px;
          color: #555; }
          @media only screen and (max-width: 767px) {
            .special__col > div:nth-child(2) p small {
              font-size: 11px; } }

.track-list {
  background: #FAFAFA;
  padding-top: 113px;
  padding-bottom: 140px; }
  @media only screen and (max-width: 767px) {
    .track-list {
      padding-top: 80px;
      padding-bottom: 80px; } }
  .track-list__button {
    padding-bottom: 24px;
    margin-top: 32px; }
    .track-list__button a {
      display: block;
      width: 100%;
      border-radius: 50px;
      border: 1px solid #AB8359;
      text-align: center;
      padding: 18px 0; }
      @media only screen and (min-width: 768px) {
        .track-list__button a {
          transition: all .3s; }
          .track-list__button a span {
            transition: all .3s; }
          .track-list__button a:hover {
            background: #AB8359; }
            .track-list__button a:hover span {
              color: #fff; } }
      .track-list__button a span {
        font-weight: 700;
        font-size: 16px;
        text-align: center;
        color: #AB8359;
        display: block; }
  .track-list .inner h2 {
    text-align: center;
    position: relative;
    padding-bottom: 70px; }
    .track-list .inner h2:before {
      content: "";
      height: 40px;
      width: 1px;
      background: #AB8359;
      position: absolute;
      left: 0;
      bottom: 0;
      right: 0;
      margin: auto; }
    .track-list .inner h2 span {
      font-size: 50px;
      letter-spacing: 0.11em;
      color: #222222;
      font-family: "Nanum Myeongjo", serif; }
      @media only screen and (max-width: 767px) {
        .track-list .inner h2 span {
          font-size: 32px; } }
  .track-list__box {
    background: #FFFFFF;
    box-shadow: 0px 3px 20px rgba(132, 132, 132, 0.2);
    margin-top: 40px; }
    .track-list__box__inner {
      padding: 62px; }
      @media only screen and (max-width: 767px) {
        .track-list__box__inner {
          padding: 20px; } }
      .track-list__box__inner > h3 {
        font-size: 18px;
        line-height: 2;
        color: #AB8359;
        position: relative;
        padding-top: 20px;
        padding-bottom: 20px; }
        .track-list__box__inner > h3:before {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          bottom: 0;
          margin: auto;
          width: 100%;
          height: 1px;
          background: #AB8359; }
        .track-list__box__inner > h3 span {
          background: #fff;
          display: inline-block;
          position: relative;
          z-index: 1;
          padding-right: 20px; }
    .track-list__box__upper {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      .track-list__box__upper > div {
        width: 49%; }
        @media only screen and (max-width: 767px) {
          .track-list__box__upper > div {
            width: 100%; } }
        .track-list__box__upper > div ul {
          display: -webkit-flex;
          display: flex;
          -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-justify-content: space-between;
          justify-content: space-between;
          text-align: left;
          padding-bottom: 14px; }
          .track-list__box__upper > div ul li {
            line-height: 1.7; }
            .track-list__box__upper > div ul li:nth-child(1) {
              color: #AB8359;
              font-size: 18px;
              font-weight: bold;
              width: 44px; }
              @media only screen and (max-width: 767px) {
                .track-list__box__upper > div ul li:nth-child(1) {
                  font-size: 16px; } }
            .track-list__box__upper > div ul li:nth-child(2) {
              width: calc(100% - 44px); }
              .track-list__box__upper > div ul li:nth-child(2) span, .track-list__box__upper > div ul li:nth-child(2) small {
                display: block;
                font-weight: 600;
                font-size: 18px;
                color: #222; }
                @media only screen and (max-width: 767px) {
                  .track-list__box__upper > div ul li:nth-child(2) span, .track-list__box__upper > div ul li:nth-child(2) small {
                    font-size: 16px; } }
              .track-list__box__upper > div ul li:nth-child(2) small {
                font-size: 14px; }
                @media only screen and (max-width: 767px) {
                  .track-list__box__upper > div ul li:nth-child(2) small {
                    font-size: 12px; } }

/**

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