@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; }

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 80px; }

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 80px; }

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.075s; }

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(270deg);
    transition-delay: 0.075s; }

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -80px;
      top: -80px;
      transform: translate3d(80px, 80px, 0) rotate(45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -80px;
      top: -80px;
      transform: translate3d(-80px, 80px, 0) rotate(-45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -80px;
      top: 80px;
      transform: translate3d(80px, -80px, 0) rotate(-45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -80px;
      top: 80px;
      transform: translate3d(-80px, -80px, 0) rotate(45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 2px; }
  .hamburger--slider .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider .hamburger-inner::after {
    top: 20px; }

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 2px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 20px; }

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(90deg); }

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/* argument */
/* site style */
/* [ opacity ]
-------------------------------------------------*/
/* [ display style ]
-------------------------------------------------*/
/* [ background-image ]
-------------------------------------------------*/
/* [ writing-mode ]
-------------------------------------------------*/
/* [ illustrator & photoshop letter spacing ]
-------------------------------------------------*/
/* [ easy breakpoint ]
-------------------------------------------------*/
/* [ easy transform ]
-------------------------------------------------*/
/* [ writing-mode ]
-------------------------------------------------*/
#contact {
  /* dislay */
  /* contact */ }
  #contact .errMsg {
    margin-left: 1em;
    padding-bottom: 1px;
    display: block;
    line-height: 1.4;
    text-indent: -.9em; }
  #contact .formError {
    padding-bottom: 13px;
    display: block; }
  #contact .fixed {
    padding-bottom: 0px; }
  #contact .formError .formErrorClose {
    border: solid #252525 2px;
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: -4px;
    right: -4px;
    color: #efefef;
    background: #333;
    font-weight: bold;
    text-align: center;
    line-height: middle;
    cursor: pointer;
    z-index: 2;
    -webkit-border-radius: 9px 9px 9px 9px;
    -moz-border-radius: 9px 9px 9px 9px;
    -ms-border-radius: 9px 9px 9px 9px;
    -o-border-radius: 9px 9px 9px 9px;
    border-radius: 9px 9px 9px 9px;
    -webkit-box-shadow: 1px -1px 3px #888;
    -moz-box-shadow: 1px -1px 3px #888;
    -ms-box-shadow: 1px -1px 3px #888;
    -o-box-shadow: 1px -1px 3px #888;
    box-shadow: 1px -1px 3px #888; }
  #contact .formError .formErrorClose:hover {
    background: #666; }
  #contact .fixed .formErrorClose {
    display: none; }
  #contact .formError .formErrorContent {
    padding: 6px 10px;
    width: 180px;
    position: relative;
    color: #fff;
    background: #252525;
    font-family: "Lucida Sans Unicode", "Lucida Grande", Arial, Helvetica, "ヒラギノ丸ゴ Pro W4", HiraMaruPro-W4, "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, Osaka, sans-serif;
    font-size: 11px;
    margin: 0 0;
    z-index: 1;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 6px #888;
    -moz-box-shadow: 0px 0px 6px #888;
    -ms-box-shadow: 0px 0px 6px #888;
    -o-box-shadow: 0px 0px 6px #888;
    box-shadow: 0px 0px 6px #888; }
  #contact .fixed .formErrorContent {
    margin-top: .5em;
    background: #f60;
    margin: 0 0 30px 0;
    -webkit-border-radius: none;
    -moz-border-radius: none;
    -ms-border-radius: none;
    -o-border-radius: none;
    border-radius: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none; }
  #contact .fadeOut {
    opacity: .2;
    filter: alpha(opacity=20); }
  #contact .formError .formErrorArrow {
    width: 15px;
    height: 15px;
    position: absolute;
    bottom: 0;
    left: 20px;
    margin: 0 0 30px 0;
    z-index: 0; }
  #contact .fixed .formErrorArrow {
    display: none; }
  #contact .formError .formErrorArrowBottom {
    margin: -6px;
    top: 0; }
  #contact .fixed .formErrorArrowBottom {
    display: none; }
  #contact .formError .formErrorArrow div {
    margin: 0 auto;
    display: block;
    height: 1px;
    background: #252525;
    line-height: 0px;
    font-size: 0px;
    -webkit-box-shadow: 0px 2px 3px #888;
    -moz-box-shadow: 0px 2px 3px #888;
    -ms-box-shadow: 0px 2px 3px #888;
    -o-box-shadow: 0px 2px 3px #888;
    box-shadow: 0px 2px 3px #888; }
  #contact .formError .formErrorArrowBottom div {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none; }
  #contact .formError .formErrorArrow .line10 {
    width: 19px; }
  #contact .formError .formErrorArrow .line9 {
    width: 17px; }
  #contact .formError .formErrorArrow .line8 {
    width: 15px; }
  #contact .formError .formErrorArrow .line7 {
    width: 13px; }
  #contact .formError .formErrorArrow .line6 {
    width: 11px; }
  #contact .formError .formErrorArrow .line5 {
    width: 9px; }
  #contact .formError .formErrorArrow .line4 {
    width: 7px; }
  #contact .formError .formErrorArrow .line3 {
    width: 5px; }
  #contact .formError .formErrorArrow .line2 {
    width: 3px; }
  #contact .formError .formErrorArrow .line1 {
    width: 1px; }
  #contact .hid_url {
    display: none; }
  #contact form p.test {
    position: relative;
    color: #C1C0BC; }
  #contact form p.test label {
    position: absolute;
    top: 3px;
    left: 10px;
    font-weight: normal; }
  #contact form p.test br {
    display: none; }
  #contact .formBlock {
    max-width: 890px;
    margin: auto; }
  #contact .txtContact {
    text-align: left;
    font-size: 16px;
    margin: 70px auto 50px; }
  #contact .txtContact01 {
    font-size: 14px;
    margin-bottom: 50px; }
  #contact .tableContact em,
  #contact .txtContact em {
    color: #fb2a2a;
    font-style: normal; }
  #contact .tableContact {
    border-top: #8f8f8f solid 1px;
    border-bottom: #8f8f8f solid 1px;
    width: 100%;
    margin: 30px 0 50px;
    font-size: 15px;
    text-align: left; }
    #contact .tableContact td,
    #contact .tableContact th {
      border-bottom: #8f8f8f solid 1px;
      padding: 20px;
      vertical-align: top; }
    #contact .tableContact th {
      background: #ededed;
      width: 210px;
      font-weight: normal; }
    #contact .tableContact td {
      position: relative; }
    #contact .tableContact input[type="text"],
    #contact .tableContact input[type="email"],
    #contact .tableContact input[type="number"],
    #contact .tableContact input[type="url"] {
      width: 300px;
      height: 23px;
      color: #1a1a1a; }
    #contact .tableContact input[type="text"],
    #contact .tableContact textarea {
      border: #8f8f8f solid 1px; }
    #contact .tableContact .size01 input[type="text"] {
      width: 160px; }
    #contact .tableContact .size02 input[type="text"],
    #contact .tableContact textarea {
      width: 100%; }
    #contact .tableContact textarea {
      height: 150px; }
  #contact .stepImg {
    margin: 30px 0; }
    #contact .stepImg img {
      display: block;
      width: 100%; }
  #contact .stepImg {
    margin: 30px 0; }
  #contact .tabForm {
    margin: 50px auto 0; }
  #contact .tabForm ul {
    font-size: 0;
    letter-spacing: 0;
    margin: 0;
    border-bottom: 2px solid #000; }
  #contact .tabForm ul li {
    display: inline-block;
    width: 50%;
    padding: 0; }
  #contact .tabForm ul li input {
    position: absolute;
    opacity: 0; }
  #contact .tabForm ul li label {
    display: block;
    line-height: 60px;
    text-align: center;
    font-size: 20px; }
  #contact .tabForm ul li input:checked ~ label {
    background: #000;
    color: #fff; }
  #contact .tabForm ul li label:hover {
    opacity: 1;
    background: #555;
    color: #fff; }
  #contact .tableContact input[type="text"],
  #contact .tableContact input[type="url"],
  #contact .tableContact input[type="email"],
  #contact .tableContact textarea {
    padding: 10px;
    height: auto;
    border: 1px solid #aaa; }
  #contact .tableContact select {
    -webkit-appearance: none;
    border: 1px solid #aaa;
    padding: 10px; }
  #contact .tableContact .pRadio {
    display: inline-block;
    vertical-align: middle; }
  #contact .tableContact .pRadio input {
    position: absolute;
    opacity: 0; }
  #contact .tableContact .pRadio label {
    display: inline-block;
    margin: 0 5px 0 0;
    border: 1px solid #aaa;
    padding: 10px 20px; }
  #contact .tableContact .pRadio input:checked ~ label {
    background: #555;
    border-color: #555;
    color: #fff; }
  #contact button {
    height: 60px;
    margin: 20px auto;
    padding: 0 100px;
    background: #eee; }

@media only screen and (max-width: 767px) {
  .pc {
    display: none !important; } }

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

html {
  font-size: 62.5%;
  font-family: "dnp-shuei-gothic-gin-std",  sans-serif;
  font-feature-settings: "palt" 1;
  background: #F6F6F6;
  color: #0A0A0A; }

* {
  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;
  outline: none; }

body {
  opacity: 0; }

.wrap {
  overflow: hidden; }

.inner {
  padding: 0 80px;
  margin: 0 auto; }
  @media only screen and (max-width: 1280px) {
    .inner {
      padding: 0 6.25vw; } }
  @media only screen and (max-width: 767px) {
    .inner {
      padding: 0 30px; } }

.inner2 {
  padding: 0 120px;
  margin: 0 auto; }
  @media only screen and (max-width: 1280px) {
    .inner2 {
      padding: 0 9.375vw; } }
  @media only screen and (max-width: 767px) {
    .inner2 {
      padding: 0 30px; } }

.inner3 {
  padding: 0 160px;
  margin: 0 auto; }
  @media only screen and (max-width: 1280px) {
    .inner3 {
      padding: 0 12.5vw; } }
  @media only screen and (max-width: 767px) {
    .inner3 {
      padding: 0 30px; } }

.slick-slide:focus {
  outline: none; }

.footer {
  background: #222222;
  color: #858585; }
  @media only screen and (max-width: 1024px) {
    .footer {
      padding: 100px 0 60px; } }
  @media only screen and (max-width: 767px) {
    .footer {
      padding-bottom: 40px; } }
  .footer a {
    transition: 0.3s; }
    .footer a:hover {
      opacity: 0.7; }
  .footer .inner3 {
    position: relative;
    padding-top: 502px; }
    @media only screen and (max-width: 1024px) {
      .footer .inner3 {
        padding: 0 30px; } }
  .footer__logo {
    width: 240px;
    position: absolute;
    top: 160px;
    left: 160px; }
    @media only screen and (max-width: 1024px) {
      .footer__logo {
        position: static;
        width: 140px; } }
  .footer .box {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-end;
    align-items: flex-end; }
    @media only screen and (max-width: 1024px) {
      .footer .box {
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: flex-start;
        align-items: flex-start; } }
    @media only screen and (max-width: 1024px) {
      .footer .box .text {
        order: 1;
        margin: 50px 0 0;
        margin-left: auto; } }
    .footer .box .text small {
      color: #fff;
      font-size: 18px;
      font-size: 1.8rem;
      font-family: "new-spirit-condensed", serif;
      font-weight: 400;
      display: block;
      margin: 0 0 34px; }
      @media only screen and (max-width: 1024px) {
        .footer .box .text small {
          font-size: 14px;
          font-size: 1.4rem;
          margin: 0 0 20px; } }
    .footer .box .text strong em {
      display: inline-block;
      transition: .5s ease-out;
      opacity: 0;
      -webkit-transform: translate(0, 100%);
      -moz-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
      -o-transform: translate(0, 100%);
      transform: translate(0, 100%); }
    .footer .box .text strong .em2 {
      transition-delay: 0.1s; }
    .footer .box .text strong .em3 {
      transition-delay: 0.1s; }
    .footer .box .text strong.is-active em {
      opacity: 1;
      -webkit-transform: translate(0, 2%);
      -moz-transform: translate(0, 2%);
      -ms-transform: translate(0, 2%);
      -o-transform: translate(0, 2%);
      transform: translate(0, 2%); }
    .footer .box .text p {
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 2;
      font-feature-settings: normal;
      margin: 56px 0 0;
      font-weight: 500; }
      @media only screen and (max-width: 1024px) {
        .footer .box .text p {
          font-size: 12px;
          font-size: 1.2rem;
          line-height: 1.8333;
          margin: 30px 0 0; } }
    .footer .box .link {
      display: -webkit-flex;
      display: flex;
      font-family: "neue-haas-grotesk-text", sans-serif;
      font-weight: 400; }
      @media only screen and (max-width: 1024px) {
        .footer .box .link {
          order: 2;
          margin: 48px 0 0;
          display: block; } }
      .footer .box .link ul {
        margin-right: 40px; }
        @media only screen and (max-width: 1024px) {
          .footer .box .link ul {
            margin: 0 0 26px; } }
        .footer .box .link ul li {
          font-size: 12px;
          font-size: 1.2rem;
          line-height: 1.666;
          letter-spacing: .05em; }
          @media only screen and (max-width: 1024px) {
            .footer .box .link ul li {
              font-size: 10px;
              font-size: 1rem;
              line-height: 1.8; } }

.footer {
  background: #222222;
  color: #858585; }
  @media only screen and (max-width: 1024px) {
    .footer {
      padding: 90px 0 60px; } }
  @media only screen and (max-width: 767px) {
    .footer {
      padding-bottom: 30px; } }
  .footer a {
    transition: 0.3s; }
    .footer a:hover {
      opacity: 0.7; }
  .footer .inner3 {
    position: relative;
    padding-top: 270px; }
    @media only screen and (max-width: 1024px) {
      .footer .inner3 {
        padding: 0 30px; } }
  .footer__logo {
    width: 220px;
    position: absolute;
    top: 160px;
    left: 160px; }
    @media only screen and (max-width: 1024px) {
      .footer__logo {
        position: static;
        width: 120px; } }
  .footer .box {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-end;
    align-items: flex-end; }
    @media only screen and (max-width: 1024px) {
      .footer .box {
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: flex-start;
        align-items: flex-start; } }
    @media only screen and (max-width: 1024px) {
      .footer .box .text {
        order: 1;
        margin: 50px 0 0;
        margin-left: auto; } }
    @media only screen and (max-width: 767px) {
      .footer .box .text {
        width: 150px;
        margin: -76px 0 0 auto; } }
    .footer .box .text small {
      color: #fff;
      font-size: 14px;
      font-size: 1.4rem;
      font-family: "new-spirit-condensed", serif;
      font-weight: 400;
      display: block;
      margin: 0 0 28px;
      color: #D6D6D6; }
      @media only screen and (max-width: 1024px) {
        .footer .box .text small {
          font-size: 14px;
          font-size: 1.4rem;
          margin: 0 0 20px; } }
      @media only screen and (max-width: 767px) {
        .footer .box .text small {
          margin: 0 0 20px;
          font-size: 11px;
          font-size: 1.1rem; } }
    .footer .box .text strong {
      width: 220px;
      height: 30px;
      overflow: hidden;
      margin: 0 0 23px;
      display: inline-block; }
      @media only screen and (max-width: 1024px) {
        .footer .box .text strong {
          height: 30px; } }
      @media only screen and (max-width: 767px) {
        .footer .box .text strong {
          height: 17px;
          margin: 0 0 14px; } }
      .footer .box .text strong em {
        display: inline-block;
        transition: .5s ease-out;
        opacity: 0;
        -webkit-transform: translate(0, 100%);
        -moz-transform: translate(0, 100%);
        -ms-transform: translate(0, 100%);
        -o-transform: translate(0, 100%);
        transform: translate(0, 100%); }
        @media only screen and (max-width: 767px) {
          .footer .box .text strong em img {
            height: 17px; } }
      .footer .box .text strong .em2 {
        transition-delay: 0.1s; }
      .footer .box .text strong .em3 {
        transition-delay: 0.1s; }
      .footer .box .text strong.is-active em {
        opacity: 1;
        -webkit-transform: translate(0, 2%);
        -moz-transform: translate(0, 2%);
        -ms-transform: translate(0, 2%);
        -o-transform: translate(0, 2%);
        transform: translate(0, 2%); }
      .footer .box .text strong .txt01 {
        width: 166px; }
      .footer .box .text strong .txt02 {
        width: 220px; }
      .footer .box .text strong .txt03 {
        width: 80px; }
    .footer .box .text p {
      font-size: 12px;
      font-size: 1.2rem;
      line-height: 2;
      font-feature-settings: normal;
      margin: 34px 0 0;
      font-weight: 500; }
      @media only screen and (max-width: 1024px) {
        .footer .box .text p {
          font-size: 12px;
          font-size: 1.2rem;
          line-height: 1.8333;
          margin: 30px 0 0; } }
      @media only screen and (max-width: 767px) {
        .footer .box .text p {
          margin: 4px 0 0;
          font-size: 10px;
          font-size: 1rem; } }
    .footer .box .link {
      display: -webkit-flex;
      display: flex;
      font-family: "neue-haas-grotesk-text", sans-serif;
      font-weight: 400;
      position: relative;
      top: 6px; }
      @media only screen and (max-width: 1024px) {
        .footer .box .link {
          order: 2;
          margin: 48px 0 0;
          display: block; } }
      @media only screen and (max-width: 767px) {
        .footer .box .link {
          margin: 45px 0 0 auto;
          width: 150px;
          top: auto;
          position: static; } }
      .footer .box .link ul {
        margin-right: 40px; }
        @media only screen and (max-width: 1024px) {
          .footer .box .link ul:nth-of-type(1) {
            margin: 0 0 0px; } }
        .footer .box .link ul li {
          font-size: 12px;
          font-size: 1.2rem;
          line-height: 1.666;
          letter-spacing: .05em; }
          @media only screen and (max-width: 1024px) {
            .footer .box .link ul li {
              font-size: 10px;
              font-size: 1rem;
              line-height: 1.8; } }
  .footer .copyright {
    margin: 78px 0 0;
    padding: 60px 0 97px;
    border-top: 1px solid #3D3D3D;
    font-size: 10px;
    font-size: 1rem;
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-weight: 400;
    letter-spacing: 0em;
    color: #585858; }
    @media only screen and (max-width: 1024px) {
      .footer .copyright {
        margin: 30px 0 0;
        padding: 30px 0 0; } }
    @media only screen and (max-width: 767px) {
      .footer .copyright {
        -webkit-flex-direction: column;
        flex-direction: column; } }
    @media only screen and (max-width: 767px) {
      .footer .copyright p {
        order: 2;
        width: 100%;
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -ms-transform: scale(0.8);
        -o-transform: scale(0.8);
        transform: scale(0.8);
        margin-left: -31px; } }
    .footer .copyright p:nth-of-type(1) {
      width: auto;
      font-weight: 500;
      letter-spacing: 0.08em;
      font-family: "ryo-gothic-plusn",  sans-serif;
      color: #858585;
      margin: 0 0 14px; }
      @media only screen and (max-width: 767px) {
        .footer .copyright p:nth-of-type(1) {
          order: 1;
          margin: 0px 0 20px 0px;
          font-size: 3px;
          font-size: 0.3rem;
          -webkit-transform: scale(1);
          -moz-transform: scale(1);
          -ms-transform: scale(1);
          -o-transform: scale(1);
          transform: scale(1);
          line-height: 1.8; } }

.header {
  padding: 40px 0 0;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .header {
      padding: 30px 0 0; } }
  .header .inner {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative; }
  .header__logo {
    width: 75px; }
    @media only screen and (max-width: 767px) {
      .header__logo {
        width: 47px;
        position: relative;
        top: -5px; } }
  .header__sns {
    padding: 16px 0 0;
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-weight: 400;
    letter-spacing: 0em; }
    @media only screen and (max-width: 767px) {
      .header__sns {
        padding: 0; } }
    .header__sns li a {
      font-size: 12px;
      font-size: 1.2rem;
      line-height: 1.5;
      width: 71px;
      height: 18px;
      overflow: hidden;
      display: block; }
      @media only screen and (max-width: 767px) {
        .header__sns li a {
          font-size: 10px;
          font-size: 1rem;
          line-height: 1.6;
          width: 80px;
          height: 16px; } }
      .header__sns li a span {
        display: inline-block;
        -webkit-transform: translate(0, 100%);
        -moz-transform: translate(0, 100%);
        -ms-transform: translate(0, 100%);
        -o-transform: translate(0, 100%);
        transform: translate(0, 100%);
        transition: .8s;
        width: 100%; }
    .header__sns li:nth-of-type(2) a span {
      transition-delay: 0.1s; }
    .header__sns li:nth-of-type(3) a span {
      transition-delay: 0.2s; }
    .header__sns.is-active li a span {
      -webkit-transform: translate(0, 0);
      -moz-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      -o-transform: translate(0, 0);
      transform: translate(0, 0); }
  .header__center {
    font-size: 12px;
    font-size: 1.2rem;
    position: absolute;
    top: 20px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 100px;
    height: 12px;
    overflow: hidden;
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-weight: 400;
    letter-spacing: 0em; }
    @media only screen and (max-width: 767px) {
      .header__center {
        font-size: 10px;
        font-size: 1rem;
        top: 2px;
        margin-left: 12px; } }
    .header__center em {
      display: inline-block;
      -webkit-transform: translate(0, 100%);
      -moz-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
      -o-transform: translate(0, 100%);
      transform: translate(0, 100%);
      transition: .8s; }
    .header__center.is-active em {
      -webkit-transform: translate(0, 0);
      -moz-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
      -o-transform: translate(0, 0);
      transform: translate(0, 0); }
  .header__menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    border: 1px solid #D8D8D8;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    font-size: 10px;
    font-size: 1rem;
    z-index: 99;
    position: fixed;
    top: 40px;
    left: calc(50vw + 480px);
    transition: transform 0.1s; }
    .header__menu:not(.is-over) {
      transition: transform 0.7s; }
    .header__menu .close {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      transition: .3s;
      opacity: 0;
      visibility: hidden; }
    .header__menu.is-active .menu {
      opacity: 0;
      visibility: hidden; }
    .header__menu.is-active .close {
      opacity: 1;
      visibility: visible; }
  .header .menu-wrapper {
    width: 100px;
    height: 100px;
    position: fixed;
    top: 30px;
    right: 70px;
    transition: width 0.4s, height 0.4s, transform 0.1s;
    z-index: 99; }
    @media only screen and (max-width: 767px) {
      .header .menu-wrapper {
        width: 80px;
        height: 80px;
        top: 5px;
        right: 15px; } }
    .header .menu-wrapper:hover .menu-outer {
      transform: translate(-50%, -50%) scale(1); }
      @media only screen and (max-width: 767px) {
        .header .menu-wrapper:hover .menu-outer {
          transform: translate(-50%, -50%) scale(1); } }
      .header .menu-wrapper:hover .menu-outer .menu-border circle {
        animation-name: drawCircle;
        animation-duration: 1.5s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
    .header .menu-wrapper.is-over {
      width: 120px;
      height: 120px; }
      @media only screen and (max-width: 767px) {
        .header .menu-wrapper.is-over {
          width: 100px;
          height: 100px; } }
    .header .menu-wrapper .menu-outer {
      width: 80px;
      height: 80px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-transform: uppercase;
      font-size: 12px;
      font-weight: 700;
      color: #c3c3c3;
      cursor: pointer;
      position: relative;
      transition: transform 0.3s; }
      @media only screen and (max-width: 767px) {
        .header .menu-wrapper .menu-outer {
          width: 60px;
          height: 60px;
          font-size: 10px; } }
    .header .menu-wrapper .menu-border,
    .header .menu-wrapper .menu-border-bg {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0; }
    .header .menu-wrapper .menu-inner {
      position: relative; }
      .header .menu-wrapper .menu-inner__menu {
        opacity: 1;
        transition: .3s;
        color: #000;
        font-family: "neue-haas-grotesk-text", sans-serif;
        font-weight: 400;
        font-feature-settings: normal;
        font-size: 10px;
        font-size: 1rem; }
      .header .menu-wrapper .menu-inner__close {
        opacity: 0;
        transition: .3s;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
    .header .menu-wrapper .menu-border-bg circle {
      fill: none;
      stroke: rgba(10, 10, 10, 0.1); }
    .header .menu-wrapper .menu-border circle {
      transform-origin: 50% 50%;
      fill: none;
      stroke: #444;
      stroke-opacity: 1;
      stroke-dasharray: 251.33px 251.33px;
      stroke-dashoffset: 251.33px;
      stroke-width: 1px;
      visibility: 0;
      transition: visibility 0s 1.5s;
      animation-name: undrawCircle;
      animation-duration: 1.5s;
      animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
      @media only screen and (max-width: 767px) {
        .header .menu-wrapper .menu-border circle {
          stroke-dasharray: 188.4px 188.4px;
          stroke-dashoffset: 188.4px; } }
    .header .menu-wrapper.is-active .menu-outer .menu-inner__menu {
      opacity: 0; }
    .header .menu-wrapper.is-active .menu-outer .menu-inner__close {
      opacity: 1; }
    .header .menu-wrapper.is-active .menu-outer .menu-border-bg circle {
      stroke: #3D3D3D; }
    .header .menu-wrapper.is-active .menu-outer .menu-border circle {
      stroke: #F6F6F6; }

@keyframes drawCircle {
  0% {
    transform: rotateZ(-90deg); }
  to {
    transform: rotateZ(90deg);
    stroke-dashoffset: 0; } }

@keyframes undrawCircle {
  0% {
    transform: rotate(90deg);
    stroke-dashoffset: 0; }
  to {
    transform: rotate(270deg);
    stroke-dashoffset: -251.33px; } }
  .header.is-active .header__sns {
    opacity: 0; }
  .header.is-active .header__logo {
    opacity: 0; }
  .header.is-active .header__center {
    opacity: 0; }

.gnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #222222;
  padding: 184px 0 50px 0px;
  z-index: 98;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  transition: .3s; }
  @media only screen and (max-width: 767px) {
    .gnav {
      padding: 164px 0 50px; } }
  .gnav a {
    transition: 0.3s; }
    .gnav a:hover {
      opacity: 0.6; }
  @media only screen and (max-width: 767px) {
    .gnav .inner {
      padding: 0 30px 0 50px; } }
  .gnav.is-active {
    opacity: 1;
    visibility: visible; }
  .gnav .left {
    position: fixed;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 37vw;
    text-align: center;
    color: #3D3D3D; }
    .gnav .left .number-box {
      width: auto;
      height: auto;
      margin: 0 0 30px; }
      .gnav .left .number-box small {
        font-size: 10px;
        font-size: 1rem;
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -ms-transform: scale(0.8);
        -o-transform: scale(0.8);
        transform: scale(0.8);
        display: block;
        margin: 0 0 10px; }
      .gnav .left .number-box strong {
        font-size: 120px;
        font-size: 12rem; }
        .gnav .left .number-box strong:after {
          background: #3D3D3D; }
    .gnav .left .sub {
      font-size: 70px;
      font-size: 7rem;
      font-family: "new-spirit-condensed", serif;
      line-height: 0.9; }
    .gnav .left .des {
      font-size: 10px;
      font-size: 1rem;
      display: block;
      line-height: 2;
      margin: 8px 0 55px; }
    .gnav .left .logo {
      width: 60px;
      margin: 0 auto; }
  .gnav .right {
    width: calc(58.92% + 100px);
    margin-left: auto;
    padding-right: 100px; }
    @media only screen and (max-width: 767px) {
      .gnav .right {
        width: 100%;
        padding: 0; } }
    .gnav .right .title {
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: flex-end;
      align-items: flex-end;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      color: #D6D6D6;
      border-bottom: 1px solid #585858;
      padding: 0 0 24px;
      margin: 0 0 50px; }
      @media only screen and (max-width: 767px) {
        .gnav .right .title {
          padding: 0 0 18px;
          margin: 0 0 40px; } }
      .gnav .right .title h2 {
        font-size: 30px;
        font-size: 3rem;
        font-weight: 700; }
        @media only screen and (max-width: 767px) {
          .gnav .right .title h2 {
            font-size: 22px;
            font-size: 2.2rem;
            line-height: 1.3636;
            width: calc(94% - 60px); } }
      .gnav .right .title .number-box {
        width: auto;
        height: auto; }
        .gnav .right .title .number-box small {
          font-size: 10px;
          font-size: 1rem;
          -webkit-transform: scale(0.8);
          -moz-transform: scale(0.8);
          -ms-transform: scale(0.8);
          -o-transform: scale(0.8);
          transform: scale(0.8);
          display: block;
          margin: 0 0 12px; }
          @media only screen and (max-width: 767px) {
            .gnav .right .title .number-box small {
              margin: 0 0 7px; } }
        .gnav .right .title .number-box strong {
          font-size: 70px;
          font-size: 7rem; }
          @media only screen and (max-width: 767px) {
            .gnav .right .title .number-box strong {
              font-size: 60px;
              font-size: 6rem; } }
          .gnav .right .title .number-box strong:after {
            content: none; }
    .gnav .right .list ul li {
      margin: 0 0 30px; }
      @media only screen and (max-width: 767px) {
        .gnav .right .list ul li {
          margin: 0 0 40px; } }
      .gnav .right .list ul li:last-of-type {
        margin: 0 0 50px; }
        @media only screen and (max-width: 767px) {
          .gnav .right .list ul li:last-of-type {
            margin: 0 0 50px; } }
      .gnav .right .list ul li a {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between; }
        .gnav .right .list ul li a .thum {
          width: 50px;
          height: 72px; }
        .gnav .right .list ul li a .text {
          width: calc(100% - 80px); }
          @media only screen and (max-width: 767px) {
            .gnav .right .list ul li a .text {
              width: calc(100% - 70px); } }
          .gnav .right .list ul li a .text h3 {
            font-size: 22px;
            font-size: 2.2rem;
            margin: -4px 0 10px;
            font-weight: 700;
            line-height: 1.4; }
            @media only screen and (max-width: 767px) {
              .gnav .right .list ul li a .text h3 {
                font-size: 17px;
                font-size: 1.7rem;
                line-height: 1.4;
                margin: -4px 0 9px; } }
          .gnav .right .list ul li a .text small {
            font-size: 11px;
            font-size: 1.1rem;
            color: #858585;
            font-weight: 500;
            line-height: 1.4; }
            @media only screen and (max-width: 767px) {
              .gnav .right .list ul li a .text small {
                font-size: 10px;
                font-size: 1rem;
                line-height: 1.4;
                -webkit-transform: scale(0.9);
                -moz-transform: scale(0.9);
                -ms-transform: scale(0.9);
                -o-transform: scale(0.9);
                transform: scale(0.9);
                display: inline-block;
                margin: -2px 0 0 -10px; } }

.ttl03 {
  text-align: center; }
  .ttl03 span {
    font-size: 8.59vw;
    display: block;
    font-family: "new-spirit-condensed", serif;
    font-weight: 400;
    margin: 0 0 10px;
    width: 100%;
    height: 8vw;
    overflow: hidden;
    letter-spacing: -0.02em; }
    @media only screen and (max-width: 767px) {
      .ttl03 span {
        font-size: 15.9vw;
        height: 15.9vw;
        margin: 0 0 8px; } }
    .ttl03 span em {
      -webkit-transform: translate(0, 100%);
      -moz-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
      -o-transform: translate(0, 100%);
      transform: translate(0, 100%);
      opacity: 0;
      display: inline-block;
      transition: .8s; }
  .ttl03 small {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 600; }
    @media only screen and (max-width: 1280px) {
      .ttl03 small {
        font-size: 0.93vw; } }
    @media only screen and (max-width: 767px) {
      .ttl03 small {
        font-size: 12px;
        font-size: 1.2rem; } }
  .ttl03.is-active span em {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1; }

.number-box {
  text-align: center;
  width: 160px;
  height: 161px;
  overflow: hidden; }
  @media only screen and (max-width: 1280px) {
    .number-box {
      width: 12.5vw;
      height: 12.57vw; } }
  @media only screen and (max-width: 767px) {
    .number-box {
      height: 102px; } }
  .number-box.is-active strong em {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1; }
  .number-box.is-active strong:after {
    width: 97%; }
  .number-box small {
    font-size: 12px;
    font-size: 1.2rem;
    display: block;
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-weight: 400;
    margin: 0 0 22px; }
    @media only screen and (max-width: 1280px) {
      .number-box small {
        font-size: 0.93vw;
        margin: 0 0 1.71vw; } }
    @media only screen and (max-width: 767px) {
      .number-box small {
        font-size: 10px;
        font-size: 1rem;
        margin: 0 0 12px; } }
  .number-box strong {
    font-size: 170px;
    font-size: 17rem;
    display: inline-block;
    line-height: 0.82;
    font-family: "new-spirit-condensed", serif;
    font-weight: 400;
    transition: .8s; }
    @media only screen and (max-width: 1280px) {
      .number-box strong {
        font-size: 13.28vw; } }
    @media only screen and (max-width: 767px) {
      .number-box strong {
        font-size: 100px;
        font-size: 10rem; } }
    .number-box strong em {
      -webkit-transform: translate(0, 100%);
      -moz-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
      -o-transform: translate(0, 100%);
      transform: translate(0, 100%);
      opacity: 0;
      display: inline-block;
      transition: .8s ease-in-out;
      transition-delay: 0s; }
    .number-box strong:after {
      content: "";
      width: 0px;
      height: 3px;
      display: block;
      background: #000;
      margin: 0;
      transition: .4s ease-in-out;
      position: relative;
      left: 3px; }

.recommends {
  padding: 200px 0 100px; }
  @media only screen and (max-width: 767px) {
    .recommends {
      padding: 120px 0 60px; } }
  .recommends .nav {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    margin: 30px 0 40px; }
    @media only screen and (max-width: 1280px) {
      .recommends .nav {
        margin: 2.34vw 0 3.125vw; } }
    @media only screen and (max-width: 767px) {
      .recommends .nav {
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-align-items: flex-end;
        align-items: flex-end;
        margin: 50px 0 20px; } }
    .recommends .nav .number {
      font-size: 12px;
      font-size: 1.2rem;
      display: block;
      margin-right: 30px;
      font-family: "neue-haas-grotesk-text", sans-serif;
      font-weight: 400; }
      @media only screen and (max-width: 1280px) {
        .recommends .nav .number {
          font-size: 0.9375vw;
          margin-right: 2.34vw; } }
      @media only screen and (max-width: 767px) {
        .recommends .nav .number {
          font-size: 12px;
          font-size: 1.2rem;
          margin-right: 30px; } }
    .recommends .nav #arrows {
      position: relative; }
      .recommends .nav #arrows .slick-prev {
        display: inline-block;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        position: relative;
        left: auto;
        top: auto;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0); }
        .recommends .nav #arrows .slick-prev:before {
          content: "";
          width: 16px;
          height: 5px;
          display: block;
          background: url(../images/common/arrow.svg) center center/cover no-repeat;
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%) rotate(180deg);
          -moz-transform: translate(-50%, -50%) rotate(180deg);
          -ms-transform: translate(-50%, -50%) rotate(180deg);
          -o-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg); }
        .recommends .nav #arrows .slick-prev:hover .arrow-border circle {
          animation-name: drawCircle;
          animation-duration: 2.5s;
          animation-iteration-count: 1;
          animation-fill-mode: forwards;
          animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
        .recommends .nav #arrows .slick-prev .arrow-border-bg {
          position: absolute;
          width: 100%;
          height: 100%;
          top: 0;
          left: 0; }
          .recommends .nav #arrows .slick-prev .arrow-border-bg circle {
            fill: none;
            stroke: rgba(10, 10, 10, 0.1); }
        .recommends .nav #arrows .slick-prev .arrow-border {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0; }
          .recommends .nav #arrows .slick-prev .arrow-border circle {
            transform-origin: 50% 50%;
            fill: none;
            stroke: #444;
            stroke-opacity: 1;
            stroke-dasharray: 251.33px 251.33px;
            stroke-dashoffset: 251.33px;
            stroke-width: 1px;
            visibility: 0;
            transition: visibility 0s 1.5s;
            animation-name: undrawCircle;
            animation-duration: 1.5s;
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
      .recommends .nav #arrows .slick-next {
        display: inline-block;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        position: relative;
        margin-left: 10px;
        right: auto;
        top: auto;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0); }
        .recommends .nav #arrows .slick-next:before {
          content: "";
          width: 16px;
          height: 5px;
          display: block;
          background: url(../images/common/arrow.svg) center center/cover no-repeat;
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -moz-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
        .recommends .nav #arrows .slick-next:hover .arrow-border circle {
          animation-name: drawCircle;
          animation-duration: 2.5s;
          animation-iteration-count: 1;
          animation-fill-mode: forwards;
          animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
        .recommends .nav #arrows .slick-next .arrow-border-bg {
          position: absolute;
          width: 100%;
          height: 100%;
          top: 0;
          left: 0; }
          .recommends .nav #arrows .slick-next .arrow-border-bg circle {
            fill: none;
            stroke: rgba(10, 10, 10, 0.1); }
        .recommends .nav #arrows .slick-next .arrow-border {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0; }
          .recommends .nav #arrows .slick-next .arrow-border circle {
            transform-origin: 50% 50%;
            fill: none;
            stroke: #444;
            stroke-opacity: 1;
            stroke-dasharray: 251.33px 251.33px;
            stroke-dashoffset: 251.33px;
            stroke-width: 1px;
            visibility: 0;
            transition: visibility 0s 1.5s;
            animation-name: undrawCircle;
            animation-duration: 1.5s;
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .recommends__slider {
    -webkit-transform: translate(250px, 0px);
    -moz-transform: translate(250px, 0px);
    -ms-transform: translate(250px, 0px);
    -o-transform: translate(250px, 0px);
    transform: translate(250px, 0px);
    transition: .8s;
    opacity: 0;
    padding-left: 12.5vw; }
    @media only screen and (max-width: 767px) {
      .recommends__slider {
        padding-left: 30px; } }
    .recommends__slider.is-active {
      -webkit-transform: translate(0px, 0px);
      -moz-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
      -o-transform: translate(0px, 0px);
      transform: translate(0px, 0px);
      opacity: 1; }
    .recommends__slider .slick-list {
      padding-right: 3.12vw; }
    .recommends__slider .slick-slide:focus {
      outline: none; }
    .recommends__slider .slick-slide {
      outline: none;
      margin-right: 5.46vw; }
      @media only screen and (max-width: 767px) {
        .recommends__slider .slick-slide {
          margin-right: 14px; } }
    .recommends__slider .slide {
      width: 200px;
      display: block; }
      @media only screen and (max-width: 1280px) {
        .recommends__slider .slide {
          width: 15.62vw; } }
      .recommends__slider .slide:hover .img-wrap .img {
        -webkit-transform: translate(-50%, -50%) scale(0.95);
        -moz-transform: translate(-50%, -50%) scale(0.95);
        -ms-transform: translate(-50%, -50%) scale(0.95);
        -o-transform: translate(-50%, -50%) scale(0.95);
        transform: translate(-50%, -50%) scale(0.95); }
        .recommends__slider .slide:hover .img-wrap .img img {
          -webkit-transform: translate(-50%, -50%) scale(1.05);
          -moz-transform: translate(-50%, -50%) scale(1.05);
          -ms-transform: translate(-50%, -50%) scale(1.05);
          -o-transform: translate(-50%, -50%) scale(1.05);
          transform: translate(-50%, -50%) scale(1.05); }
        .recommends__slider .slide:hover .img-wrap .img .imgimg {
          -webkit-transform: translate(-50%, -50%) scale(1.1);
          -moz-transform: translate(-50%, -50%) scale(1.1);
          -ms-transform: translate(-50%, -50%) scale(1.1);
          -o-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1); }
      .recommends__slider .slide:hover .title {
        opacity: 0.7; }
      .recommends__slider .slide:hover .author {
        opacity: 0.7; }
      .recommends__slider .slide:hover p {
        opacity: 0.7; }
      .recommends__slider .slide .img-wrap {
        margin: 0 0 28px;
        padding-top: 100%;
        position: relative; }
        @media only screen and (max-width: 1280px) {
          .recommends__slider .slide .img-wrap {
            margin: 0 0 2.18vw; } }
        @media only screen and (max-width: 767px) {
          .recommends__slider .slide .img-wrap {
            margin: 0 0 24px; } }
        .recommends__slider .slide .img-wrap .img {
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -moz-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          width: 100%;
          height: 100%;
          overflow: hidden;
          transition: .3s; }
          .recommends__slider .slide .img-wrap .img img {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            transition: .3s; }
          .recommends__slider .slide .img-wrap .img .imgimg {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            transition: .3s; }
      .recommends__slider .slide .title {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.6;
        transition: .3s;
        font-weight: 600;
        min-height: 66px;
        display: block;
        letter-spacing: 0.03em; }
        @media only screen and (max-width: 1280px) {
          .recommends__slider .slide .title {
            font-size: 1.09vw; } }
        @media only screen and (max-width: 767px) {
          .recommends__slider .slide .title {
            width: calc(100% - 14px);
            display: block;
            font-size: 14px;
            font-size: 1.4rem;
            min-height: 110px; } }
      .recommends__slider .slide .author {
        display: -webkit-flex;
        display: flex;
        margin: 28px 0 16px;
        transition: .3s;
        height: 48px; }
        @media only screen and (max-width: 1280px) {
          .recommends__slider .slide .author {
            margin: 2.18vw 0 1.25vw; } }
        @media only screen and (max-width: 767px) {
          .recommends__slider .slide .author {
            margin: 10px 0 10px;
            width: calc(100% - 14px);
            min-height: 62px; } }
        .recommends__slider .slide .author i {
          display: inline-block;
          width: 34px;
          margin-right: 10px;
          border-radius: 50%; }
          @media only screen and (max-width: 1280px) {
            .recommends__slider .slide .author i {
              width: 2.65vw;
              margin-right: 0.78vw; } }
          @media only screen and (max-width: 767px) {
            .recommends__slider .slide .author i {
              width: 34px;
              margin-right: 10px; } }
          .recommends__slider .slide .author i img {
            border-radius: 50%; }
        .recommends__slider .slide .author__text {
          width: calc(100% - 44px); }
          @media only screen and (max-width: 1280px) {
            .recommends__slider .slide .author__text {
              width: calc(100% - 3.43vw); } }
          @media only screen and (max-width: 767px) {
            .recommends__slider .slide .author__text {
              width: calc(100% - 44px); } }
          .recommends__slider .slide .author__text span {
            font-size: 12px;
            font-size: 1.2rem;
            display: block;
            line-height: 1.7;
            font-weight: 600; }
          .recommends__slider .slide .author__text small {
            font-size: 10px;
            font-size: 1rem;
            font-weight: 500;
            -webkit-transform: scale(0.8);
            -moz-transform: scale(0.8);
            -ms-transform: scale(0.8);
            -o-transform: scale(0.8);
            transform: scale(0.8);
            display: block;
            margin-left: -11%;
            line-height: 1.4; }
      .recommends__slider .slide p {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 1.8;
        letter-spacing: 0;
        text-align: justify;
        font-weight: 500;
        transition: .3s; }
        @media only screen and (max-width: 767px) {
          .recommends__slider .slide p {
            width: calc(100% - 14px);
            font-feature-settings: "palt"; } }

/* Z-INDEX */
.formError {
  z-index: 990; }

.formError .formErrorContent {
  z-index: 991; }

.formError .formErrorArrow {
  z-index: 996; }

.ui-dialog .formError {
  z-index: 5000; }

.ui-dialog .formError .formErrorContent {
  z-index: 5001; }

.ui-dialog .formError .formErrorArrow {
  z-index: 5006; }

.inputContainer {
  position: relative;
  float: left; }

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left; }

.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block; }

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none; }

.formError .formErrorContent {
  width: 100%;
  background: #ee0101;
  position: relative;
  color: #fff;
  min-width: 120px;
  font-size: 11px;
  border: 2px solid #ddd;
  box-shadow: 0 0 6px #000;
  -moz-box-shadow: 0 0 6px #000;
  -webkit-box-shadow: 0 0 6px #000;
  -o-box-shadow: 0 0 6px #000;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px; }

.formError.inline .formErrorContent {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0; }

.greenPopup .formErrorContent {
  background: #33be40; }

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative; }

body[dir='rtl'] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0; }

.formError .formErrorArrowBottom {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px; }

.formError .formErrorArrow div {
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  box-shadow: 0 2px 3px #444;
  -moz-box-shadow: 0 2px 3px #444;
  -webkit-box-shadow: 0 2px 3px #444;
  -o-box-shadow: 0 2px 3px #444;
  font-size: 0px;
  height: 1px;
  background: #ee0101;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block; }

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none; }

.greenPopup .formErrorArrow div {
  background: #33be40; }

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF; }

.formError .formErrorArrow .line10 {
  width: 13px;
  border: none; }

.formError .formErrorArrow .line9 {
  width: 11px;
  border: none; }

.formError .formErrorArrow .line8 {
  width: 11px; }

.formError .formErrorArrow .line7 {
  width: 9px; }

.formError .formErrorArrow .line6 {
  width: 7px; }

.formError .formErrorArrow .line5 {
  width: 5px; }

.formError .formErrorArrow .line4 {
  width: 3px; }

.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd; }

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd; }

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd; }

body.index main .top {
  padding: 60px 0 0px; }
  @media only screen and (max-width: 767px) {
    body.index main .top {
      padding: 52px 0 0; } }
  body.index main .top__logo {
    width: 253px;
    height: 269px;
    margin: 0 auto;
    overflow: hidden; }
    @media only screen and (max-width: 1280px) {
      body.index main .top__logo {
        width: 19.76vw;
        height: 21vw; } }
    @media only screen and (max-width: 767px) {
      body.index main .top__logo {
        width: 150px;
        height: 159px; } }
  body.index main .top .number-box {
    margin-left: auto;
    margin-top: -100px;
    width: 160px;
    height: 206px; }
    @media only screen and (max-width: 1280px) {
      body.index main .top .number-box {
        width: 12.5vw;
        height: 16vw; } }
    @media only screen and (max-width: 767px) {
      body.index main .top .number-box {
        width: 74px;
        height: 105px;
        margin: 10px 0 0 auto; } }
    body.index main .top .number-box small {
      margin: 0 0 9px; }
    @media only screen and (min-width: 768px) {
      body.index main .top .number-box strong {
        font-size: 220px;
        font-size: 22rem; } }
    @media only screen and (max-width: 1280px) {
      body.index main .top .number-box strong {
        font-size: 17.18vw; } }
    @media only screen and (max-width: 767px) {
      body.index main .top .number-box strong {
        font-size: 100px;
        font-size: 10rem; } }
    body.index main .top .number-box strong:after {
      height: 4px; }
  @media only screen and (max-width: 767px) {
    body.index main .top .mv-wrap {
      margin: 10px 0 0; } }
  body.index main .top .mv-wrap span {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.6666;
    display: block;
    margin: 0 0 10px;
    width: 100%;
    height: 29px;
    overflow: hidden;
    font-weight: 700; }
    @media only screen and (max-width: 1280px) {
      body.index main .top .mv-wrap span {
        font-size: 1.4vw;
        height: 2.26vw; } }
    @media only screen and (max-width: 767px) {
      body.index main .top .mv-wrap span {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.428;
        height: 38px; } }
    body.index main .top .mv-wrap span em {
      transition: .8s;
      opacity: 0;
      display: inline-block;
      -webkit-transform: translate(0, 100%);
      -moz-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
      -o-transform: translate(0, 100%);
      transform: translate(0, 100%); }
    body.index main .top .mv-wrap span.is-active em {
      opacity: 1;
      -webkit-transform: translate(0, 0%);
      -moz-transform: translate(0, 0%);
      -ms-transform: translate(0, 0%);
      -o-transform: translate(0, 0%);
      transform: translate(0, 0%); }
  body.index main .top .mv-wrap__img {
    height: 121vw;
    position: relative; }
    @media only screen and (max-width: 1280px) {
      body.index main .top .mv-wrap__img {
        height: 121vw; } }
    @media only screen and (max-width: 767px) {
      body.index main .top .mv-wrap__img {
        height: 490px; } }
    body.index main .top .mv-wrap__img .mv01 {
      width: 82.14%;
      height: 113.2vw;
      position: relative;
      color: #fff;
      padding: 30.46vw 6.25vw 9.375vw;
      z-index: +1;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      flex-direction: column;
      -webkit-justify-content: flex-end;
      justify-content: flex-end; }
      @media only screen and (max-width: 1280px) {
        body.index main .top .mv-wrap__img .mv01 {
          height: 113.2vw;
          padding: 30.46vw 6.25vw 9.375vw; } }
      @media only screen and (max-width: 767px) {
        body.index main .top .mv-wrap__img .mv01 {
          width: 81.9%;
          height: 460px;
          padding: 0px 0px 80px 30px; } }
      body.index main .top .mv-wrap__img .mv01 h2 {
        font-size: 54px;
        font-size: 5.4rem;
        line-height: 1.206;
        position: relative;
        font-weight: 700;
        letter-spacing: 0.0185em; }
        @media only screen and (max-width: 1280px) {
          body.index main .top .mv-wrap__img .mv01 h2 {
            font-size: 4.218vw; } }
        @media only screen and (max-width: 767px) {
          body.index main .top .mv-wrap__img .mv01 h2 {
            font-size: 24px;
            font-size: 2.4rem;
            line-height: 1.25; } }
      body.index main .top .mv-wrap__img .mv01 p {
        font-size: 17px;
        font-size: 1.7rem;
        line-height: 2;
        position: relative;
        margin: 65px 0 85px;
        font-weight: 500; }
        @media only screen and (max-width: 1280px) {
          body.index main .top .mv-wrap__img .mv01 p {
            font-size: 1.328vw;
            margin: 5vw 0 6.64vw; } }
      body.index main .top .mv-wrap__img .mv01 .logo {
        width: 150px;
        position: relative; }
        @media only screen and (max-width: 1280px) {
          body.index main .top .mv-wrap__img .mv01 .logo {
            width: 11.71vw; } }
      body.index main .top .mv-wrap__img .mv01 .character {
        width: 278px;
        position: absolute;
        right: -200px;
        bottom: -125px; }
        @media only screen and (max-width: 1280px) {
          body.index main .top .mv-wrap__img .mv01 .character {
            width: 21.71vw;
            right: -15.62vw;
            bottom: -9.76vw; } }
        @media only screen and (max-width: 767px) {
          body.index main .top .mv-wrap__img .mv01 .character {
            width: 105px;
            right: -70px;
            bottom: -4px; } }
      body.index main .top .mv-wrap__img .mv01 .img-wrap {
        overflow: hidden;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
      body.index main .top .mv-wrap__img .mv01 .img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
      body.index main .top .mv-wrap__img .mv01 small {
        position: absolute;
        color: #000;
        font-size: 10px;
        font-size: 1rem;
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
        left: -152px;
        bottom: 126px;
        font-family: "neue-haas-grotesk-text", sans-serif;
        font-feature-settings: normal;
        white-space: nowrap; }
        @media only screen and (max-width: 767px) {
          body.index main .top .mv-wrap__img .mv01 small {
            left: -142px;
            bottom: 75px;
            -webkit-transform: rotate(-90deg) scale(0.6);
            -moz-transform: rotate(-90deg) scale(0.6);
            -ms-transform: rotate(-90deg) scale(0.6);
            -o-transform: rotate(-90deg) scale(0.6);
            transform: rotate(-90deg) scale(0.6); } }
    body.index main .top .mv-wrap__img .mv02 {
      width: 57.14%;
      height: 113.2vw;
      position: absolute;
      right: 0;
      bottom: 0; }
      @media only screen and (max-width: 1280px) {
        body.index main .top .mv-wrap__img .mv02 {
          height: 113.2vw; } }
      @media only screen and (max-width: 767px) {
        body.index main .top .mv-wrap__img .mv02 {
          width: 56.49%;
          height: 460px; } }
      body.index main .top .mv-wrap__img .mv02 .img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 45%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
  body.index main .top .mv-wrap .sp-text {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 2;
    text-align: center;
    margin: 50px 0 0; }

body.index main .read {
  padding: 125px 0 100px; }
  @media only screen and (max-width: 767px) {
    body.index main .read {
      padding: 100px 0 50px; } }
  @media only screen and (min-width: 768px) {
    body.index main .read .inner {
      padding: 0;
      max-width: none; } }
  body.index main .read__title-box {
    text-align: center;
    position: relative; }
    body.index main .read__title-box .number-box {
      z-index: +1;
      position: relative;
      margin: 0 auto 134px; }
      @media only screen and (min-width: 768px) {
        body.index main .read__title-box .number-box {
          height: 163px; } }
      @media only screen and (max-width: 1280px) {
        body.index main .read__title-box .number-box {
          height: 13vw;
          margin: 0 auto 10.46vw; } }
      @media only screen and (max-width: 767px) {
        body.index main .read__title-box .number-box {
          width: 88px;
          margin: 0 auto 58px;
          height: 88px; } }
      @media only screen and (max-width: 767px) {
        body.index main .read__title-box .number-box strong {
          font-size: 80px;
          font-size: 8rem; } }
      body.index main .read__title-box .number-box small {
        margin: 0 0 9px; }
    body.index main .read__title-box h2 {
      font-size: 13.28vw;
      z-index: +1;
      position: relative;
      font-family: "new-spirit-condensed", serif;
      font-weight: 400;
      letter-spacing: -0.03em;
      width: 100%;
      height: 11.7vw;
      overflow: hidden; }
      @media only screen and (max-width: 767px) {
        body.index main .read__title-box h2 {
          font-size: 17.6vw;
          height: 16.18vw;
          letter-spacing: -0.03em;
          white-space: nowrap; } }
      body.index main .read__title-box h2 span {
        opacity: 0;
        transition: .8s;
        -webkit-transform: translate(0, 100%);
        -moz-transform: translate(0, 100%);
        -ms-transform: translate(0, 100%);
        -o-transform: translate(0, 100%);
        transform: translate(0, 100%);
        display: inline-block;
        white-space: nowrap;
        width: 100%; }
      body.index main .read__title-box h2.is-active span {
        opacity: 1;
        -webkit-transform: translate(0, 0%);
        -moz-transform: translate(0, 0%);
        -ms-transform: translate(0, 0%);
        -o-transform: translate(0, 0%);
        transform: translate(0, 0%); }
    body.index main .read__title-box .jp-box {
      margin-left: 71.87vw;
      margin-top: 36px;
      width: 197px;
      text-align: left;
      z-index: +1;
      position: relative; }
      @media only screen and (max-width: 1280px) {
        body.index main .read__title-box .jp-box {
          width: 15.39vw;
          margin-top: 2.81vw; } }
      @media only screen and (max-width: 767px) {
        body.index main .read__title-box .jp-box {
          margin: 108px auto 0;
          width: 100%;
          text-align: center; } }
      body.index main .read__title-box .jp-box small {
        font-size: 12px;
        font-size: 1.2rem;
        font-weight: 500; }
        @media only screen and (max-width: 1280px) {
          body.index main .read__title-box .jp-box small {
            font-size: 0.93vw; } }
        @media only screen and (max-width: 767px) {
          body.index main .read__title-box .jp-box small {
            font-size: 10px;
            font-size: 1rem; } }
      body.index main .read__title-box .jp-box span {
        font-size: 22px;
        font-size: 2.2rem;
        line-height: 1.272;
        display: block;
        margin: 10px 0 0;
        font-weight: 700; }
        @media only screen and (max-width: 1280px) {
          body.index main .read__title-box .jp-box span {
            font-size: 1.71vw;
            margin: 0.78vw 0; } }
        @media only screen and (max-width: 767px) {
          body.index main .read__title-box .jp-box span {
            font-size: 14px;
            font-size: 1.4rem;
            line-height: 1.285;
            margin: 8px 0 0; } }
    body.index main .read__title-box .img-area {
      position: absolute;
      left: 50%;
      top: 118px;
      width: 360px;
      height: 530px;
      -webkit-transform: translate(-50%, 0);
      -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      -o-transform: translate(-50%, 0);
      transform: translate(-50%, 0); }
      @media only screen and (max-width: 1280px) {
        body.index main .read__title-box .img-area {
          top: 9.2vw;
          width: 28.12vw;
          height: 41.4vw; } }
      @media only screen and (max-width: 767px) {
        body.index main .read__title-box .img-area {
          width: 100%;
          height: 234px;
          top: 64px; } }
      body.index main .read__title-box .img-area .img-wrap {
        position: relative;
        height: 530px; }
        @media only screen and (max-width: 1280px) {
          body.index main .read__title-box .img-area .img-wrap {
            height: 41.4vw; } }
        @media only screen and (max-width: 767px) {
          body.index main .read__title-box .img-area .img-wrap {
            height: 234px; } }
        body.index main .read__title-box .img-area .img-wrap .img {
          position: absolute;
          width: 280px; }
          @media only screen and (max-width: 1280px) {
            body.index main .read__title-box .img-area .img-wrap .img {
              width: 21.87vw; } }
          @media only screen and (max-width: 767px) {
            body.index main .read__title-box .img-area .img-wrap .img {
              width: 124px; } }
        body.index main .read__title-box .img-area .img-wrap .img01 {
          top: 0;
          left: 50%;
          -webkit-transform: translate(-50%, 0);
          -moz-transform: translate(-50%, 0);
          -ms-transform: translate(-50%, 0);
          -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
          z-index: +2; }
        body.index main .read__title-box .img-area .img-wrap .img02 {
          top: 30px;
          left: 0;
          z-index: +1;
          -webkit-transform: translate(-50%, 0);
          -moz-transform: translate(-50%, 0);
          -ms-transform: translate(-50%, 0);
          -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0); }
          @media only screen and (max-width: 1280px) {
            body.index main .read__title-box .img-area .img-wrap .img02 {
              top: 2.34vw; } }
          @media only screen and (max-width: 767px) {
            body.index main .read__title-box .img-area .img-wrap .img02 {
              top: 14px; } }
        body.index main .read__title-box .img-area .img-wrap .img03 {
          top: 70px;
          right: 0;
          -webkit-transform: translate(50%, 0);
          -moz-transform: translate(50%, 0);
          -ms-transform: translate(50%, 0);
          -o-transform: translate(50%, 0);
          transform: translate(50%, 0); }
          @media only screen and (max-width: 1280px) {
            body.index main .read__title-box .img-area .img-wrap .img03 {
              top: 5.46vw; } }
          @media only screen and (max-width: 767px) {
            body.index main .read__title-box .img-area .img-wrap .img03 {
              top: 32px; } }
  body.index main .read h3 {
    text-align: center;
    font-size: 48px;
    font-size: 4.8rem;
    line-height: 1.25;
    margin: 180px 0 65px;
    font-weight: 700; }
    @media only screen and (max-width: 1280px) {
      body.index main .read h3 {
        font-size: 3.75vw;
        margin: 14vw 0 5vw; } }
    @media only screen and (max-width: 767px) {
      body.index main .read h3 {
        font-size: 28px;
        font-size: 2.8rem;
        line-height: 1.357;
        margin: 55px 0 45px; } }
  body.index main .read p {
    text-align: center;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 2;
    font-weight: 500; }
    @media only screen and (max-width: 1280px) {
      body.index main .read p {
        font-size: 1.32vw; } }
    @media only screen and (max-width: 767px) {
      body.index main .read p {
        font-size: 15px;
        font-size: 1.5rem; } }

body.index main .index {
  padding: 100px 0; }
  @media only screen and (max-width: 767px) {
    body.index main .index {
      padding: 50px 0; } }
  body.index main .index .inner3 {
    padding: 0 0 0; }
    @media only screen and (max-width: 767px) {
      body.index main .index .inner3 {
        padding: 0 20px; } }
  body.index main .index__line {
    font-size: 4.218vw;
    max-width: 67vw;
    margin: 78px auto 0;
    line-height: 85px;
    vertical-align: middle;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    font-weight: 700; }
    @media only screen and (max-width: 767px) {
      body.index main .index__line {
        font-size: 6.28vw;
        max-width: 100%;
        margin: 50px auto 0; } }
    body.index main .index__line .img {
      display: inline-block;
      width: 7.8vw;
      height: 5.46vw;
      background-position: center center;
      background-size: cover;
      vertical-align: middle;
      line-height: 70px;
      margin: 0 1.7vw;
      margin-bottom: 1.5vw; }
      @media only screen and (max-width: 767px) {
        body.index main .index__line .img {
          width: 10.86vw;
          height: 7.72vw;
          margin: 0 2.89vw 16px; } }
    body.index main .index__line .number {
      display: inline-block;
      vertical-align: middle;
      font-family: "neue-haas-grotesk-text", sans-serif;
      width: 6.5vw;
      height: 5vw;
      overflow: hidden;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      flex-direction: column;
      margin-bottom: 1.5vw; }
      @media only screen and (max-width: 767px) {
        body.index main .index__line .number {
          width: 9.17vw;
          height: 6.76vw;
          margin-bottom: 15px; } }
      body.index main .index__line .number span {
        vertical-align: middle;
        display: inline-block;
        -webkit-transform: translate(0, 100%);
        -moz-transform: translate(0, 100%);
        -ms-transform: translate(0, 100%);
        -o-transform: translate(0, 100%);
        transform: translate(0, 100%);
        transition: .8s;
        line-height: 1;
        font-weight: 500; }
      body.index main .index__line .number.is-active span {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0); }
    body.index main .index__line p {
      display: inline-block;
      position: relative;
      vertical-align: middle;
      overflow: hidden;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      flex-direction: column;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-align-items: flex-start;
      align-items: flex-start;
      margin-bottom: 1.5vw;
      white-space: nowrap; }
      @media only screen and (max-width: 767px) {
        body.index main .index__line p {
          margin: 0 0 20px; } }
      body.index main .index__line p:before {
        content: "";
        width: 0;
        height: 1px;
        display: block;
        background: #000;
        position: absolute;
        left: 0;
        bottom: 0;
        transition: .8s; }
      body.index main .index__line p:after {
        content: "";
        width: 0;
        height: 1px;
        display: block;
        background: #000;
        position: absolute;
        left: 0;
        bottom: 0;
        transition: .8s;
        transition-delay: .8s; }
      body.index main .index__line p span {
        vertical-align: middle;
        display: inline-block;
        -webkit-transform: translate(0, 100%);
        -moz-transform: translate(0, 100%);
        -ms-transform: translate(0, 100%);
        -o-transform: translate(0, 100%);
        transform: translate(0, 100%);
        transition: .8s;
        line-height: 1; }
      body.index main .index__line p.is-active:after {
        width: 100%; }
      body.index main .index__line p.is-active span {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0); }
      body.index main .index__line p:hover:before {
        width: 100%;
        transition-delay: .8s; }
      body.index main .index__line p:hover:after {
        left: auto;
        right: 0;
        width: 0;
        transition-delay: 0s; }
    body.index main .index__line .text01 {
      width: 32vw;
      height: 5vw; }
      @media only screen and (max-width: 767px) {
        body.index main .index__line .text01 {
          width: 47vw;
          height: 6.76vw; } }
    body.index main .index__line .text02 {
      width: 41.5vw;
      height: 5vw; }
      @media only screen and (max-width: 767px) {
        body.index main .index__line .text02 {
          width: 60.2vw;
          height: 6.76vw; } }
    body.index main .index__line .text03 {
      width: 41.5vw;
      height: 5vw; }
      @media only screen and (max-width: 767px) {
        body.index main .index__line .text03 {
          width: 61.5vw;
          height: 6.76vw; } }
    body.index main .index__line .text04 {
      width: 21.5vw;
      height: 5vw; }
      @media only screen and (max-width: 767px) {
        body.index main .index__line .text04 {
          width: 31.5vw;
          height: 6.76vw; } }
    body.index main .index__line .text05 {
      width: 8.5vw;
      height: 5vw; }
      @media only screen and (max-width: 767px) {
        body.index main .index__line .text05 {
          width: 12.56vw;
          height: 6.76vw; } }
    body.index main .index__line .text06 {
      width: 25.5vw;
      height: 5vw; }
      @media only screen and (max-width: 767px) {
        body.index main .index__line .text06 {
          width: 37.2vw;
          height: 6.76vw; } }

body.index main .intro {
  padding: 100px 0 220px;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.index main .intro {
      padding: 50px 0 120px; } }
  body.index main .intro .inner3 {
    padding: 0;
    max-width: none; }
  @media only screen and (max-width: 767px) {
    body.index main .intro .ttl03 span {
      letter-spacing: -0.04em; } }
  body.index main .intro__img {
    padding: 80px 0 0; }
    @media only screen and (max-width: 767px) {
      body.index main .intro__img {
        padding: 50px 0 0; } }
    body.index main .intro__img .img-manga {
      width: 71vw;
      margin: 0 auto; }
      @media only screen and (max-width: 767px) {
        body.index main .intro__img .img-manga {
          width: 100%; } }
      body.index main .intro__img .img-manga img {
        width: 100%; }
  body.index main .intro .container {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    white-space: nowrap; }
    @media only screen and (max-width: 767px) {
      body.index main .intro .container {
        display: block; } }
    body.index main .intro .container .wrapper {
      padding: 0 12.5vw;
      display: -webkit-flex;
      display: flex; }
      @media only screen and (max-width: 767px) {
        body.index main .intro .container .wrapper {
          padding: 0 30px;
          display: block; } }
    body.index main .intro .container .img {
      margin-right: 3.9vw;
      vertical-align: top; }
      @media only screen and (max-width: 767px) {
        body.index main .intro .container .img {
          margin: 0 auto 30px; } }
      body.index main .intro .container .img:last-child {
        margin-right: 0; }
    body.index main .intro .container .img01 {
      width: 35.31vw; }
      @media only screen and (max-width: 767px) {
        body.index main .intro .container .img01 {
          width: 100%; } }
    body.index main .intro .container .img02 {
      width: 34.6vw;
      margin-top: -0.7vw; }
      @media only screen and (max-width: 767px) {
        body.index main .intro .container .img02 {
          width: 100%; } }
    body.index main .intro .container .img03 {
      width: 44.29vw;
      margin-top: -1.79vw; }
      @media only screen and (max-width: 767px) {
        body.index main .intro .container .img03 {
          width: calc(100% + 26px);
          margin: 0 -11px 0 -15px; } }
  body.index main .intro .progress-bar {
    width: calc(100% - 25vw);
    max-width: 1280px;
    margin: 100px auto 0;
    background-color: #D6D6D6;
    height: 2px;
    overflow: hidden;
    position: relative; }
    body.index main .intro .progress-bar span {
      width: 300px;
      height: 2px;
      background-color: #000;
      display: block;
      position: absolute;
      right: calc(100% - 300px); }

body.index main .episode {
  position: relative; }
  body.index main .episode .character {
    position: absolute; }
  @media only screen and (max-width: 767px) {
    body.index main .episode .inner2 {
      padding: 0; } }
  body.index main .episode__thumb {
    width: 37.5%;
    height: 100vh;
    background: #FFC653;
    position: absolute;
    top: 0;
    left: 0; }
    @media only screen and (max-width: 767px) {
      body.index main .episode__thumb {
        width: 100vw;
        position: relative; } }
    body.index main .episode__thumb.right {
      left: auto;
      right: 0; }
      body.index main .episode__thumb.right.fixed {
        left: auto;
        right: 0; }
    body.index main .episode__thumb.fixed {
      position: fixed;
      top: 0;
      left: 0; }
      @media only screen and (max-width: 767px) {
        body.index main .episode__thumb.fixed {
          position: relative; } }
    body.index main .episode__thumb.bottom {
      top: auto;
      bottom: 0; }
    body.index main .episode__thumb .box {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
      body.index main .episode__thumb .box .text {
        text-align: center;
        position: relative;
        z-index: +1; }
        body.index main .episode__thumb .box .text small {
          font-size: 10px;
          font-size: 1rem;
          line-height: 2;
          font-weight: 500; }
        body.index main .episode__thumb .box .text strong {
          display: block;
          font-size: 70px;
          font-size: 7rem;
          margin: 10px 0 0;
          white-space: nowrap;
          font-family: "new-spirit-condensed", serif;
          font-weight: 400;
          line-height: 0.9;
          letter-spacing: -0.03em; }
          @media only screen and (max-width: 1280px) {
            body.index main .episode__thumb .box .text strong {
              font-size: 5.46vw;
              margin: 0.78vw 0 0; } }
          @media only screen and (max-width: 767px) {
            body.index main .episode__thumb .box .text strong {
              font-size: 60px;
              font-size: 6rem;
              letter-spacing: -0.02em;
              line-height: 0.85; } }
      body.index main .episode__thumb .box .img {
        width: 200px;
        margin: -30px auto;
        position: relative; }
        @media only screen and (max-width: 1280px) {
          body.index main .episode__thumb .box .img {
            width: 15.62vw;
            margin: -2.34vw auto; } }
        @media only screen and (max-width: 767px) {
          body.index main .episode__thumb .box .img {
            width: 166px;
            margin: -20px auto; } }
      body.index main .episode__thumb .box .number-box {
        position: relative;
        margin: 0 auto; }
        @media only screen and (max-width: 767px) {
          body.index main .episode__thumb .box .number-box {
            width: 100px;
            height: 86px; } }
        body.index main .episode__thumb .box .number-box strong {
          font-size: 120px;
          font-size: 12rem;
          opacity: 1; }
          @media only screen and (max-width: 1280px) {
            body.index main .episode__thumb .box .number-box strong {
              font-size: 9.375vw; } }
          @media only screen and (max-width: 767px) {
            body.index main .episode__thumb .box .number-box strong {
              font-size: 100px;
              font-size: 10rem; } }
          body.index main .episode__thumb .box .number-box strong:after {
            width: 97%; }
  body.index main .episode #thum02 {
    background: #4D76A4; }
  body.index main .episode #thum03 {
    background: #F39CA5; }
  body.index main .episode__text {
    width: 53.8%;
    padding: 50px 0 0; }
    @media only screen and (min-width: 768px) {
      body.index main .episode__text {
        min-height: 100vh; } }
    @media only screen and (max-width: 1280px) {
      body.index main .episode__text {
        padding: 3.9vw 0 0; } }
    @media only screen and (max-width: 767px) {
      body.index main .episode__text {
        width: 100%;
        padding: 150px 30px 0; } }
    body.index main .episode__text .number-box {
      margin: 0 auto 0;
      height: 136px; }
      @media only screen and (max-width: 1280px) {
        body.index main .episode__text .number-box {
          height: 10.62vw; } }
      @media only screen and (max-width: 767px) {
        body.index main .episode__text .number-box {
          height: 108px;
          width: 90px; } }
      @media only screen and (min-width: 768px) {
        body.index main .episode__text .number-box small {
          margin: 0 0 13px;
          -webkit-transform: scale(0.8);
          -moz-transform: scale(0.8);
          -ms-transform: scale(0.8);
          -o-transform: scale(0.8);
          transform: scale(0.8); } }
      body.index main .episode__text .number-box strong {
        font-size: 120px;
        font-size: 12rem; }
        @media only screen and (max-width: 1280px) {
          body.index main .episode__text .number-box strong {
            font-size: 9.375vw; } }
        @media only screen and (max-width: 767px) {
          body.index main .episode__text .number-box strong {
            font-size: 100px;
            font-size: 10rem; } }
    body.index main .episode__text h4 {
      text-align: center;
      font-size: 48px;
      font-size: 4.8rem;
      line-height: 1.25;
      margin: 44px 0 40px;
      font-weight: 700;
      letter-spacing: 0.02em; }
      @media only screen and (max-width: 1280px) {
        body.index main .episode__text h4 {
          font-size: 3.75vw;
          margin: 3.43vw 0 3.125vw; } }
      @media only screen and (max-width: 767px) {
        body.index main .episode__text h4 {
          font-size: 28px;
          font-size: 2.8rem;
          line-height: 1.357;
          margin: 36px 0 30px; } }
    body.index main .episode__text p {
      text-align: center;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 2.1333;
      max-width: 360px;
      margin: 0 auto;
      font-weight: 500; }
      @media only screen and (max-width: 1280px) {
        body.index main .episode__text p {
          font-size: 1.171vw; } }
      @media only screen and (max-width: 767px) {
        body.index main .episode__text p {
          font-size: 15px;
          font-size: 1.5rem; } }
    body.index main .episode__text .list {
      margin: 95px 0 0; }
      @media only screen and (max-width: 1280px) {
        body.index main .episode__text .list {
          margin: 7.42vw 0 0; } }
      @media only screen and (max-width: 767px) {
        body.index main .episode__text .list {
          margin: 80px 0 0; } }
      body.index main .episode__text .list li {
        border-top: 1px solid #D6D6D6; }
        body.index main .episode__text .list li a {
          padding: 45px 0 50px;
          display: block;
          position: relative;
          z-index: 1; }
          @media only screen and (max-width: 1280px) {
            body.index main .episode__text .list li a {
              padding: 3.5vw 0 3.9vw; } }
          @media only screen and (max-width: 767px) {
            body.index main .episode__text .list li a {
              display: -webkit-flex;
              display: flex;
              -webkit-justify-content: space-between;
              justify-content: space-between;
              padding: 34px 0; } }
          body.index main .episode__text .list li a .text {
            display: -webkit-flex;
            display: flex;
            -webkit-align-items: flex-end;
            align-items: flex-end;
            -webkit-justify-content: space-between;
            justify-content: space-between;
            pointer-events: none;
            position: relative;
            z-index: 1;
            transition: transform 0.4s; }
            @media only screen and (max-width: 767px) {
              body.index main .episode__text .list li a .text {
                width: calc(100% - 82px);
                order: 2;
                -webkit-align-items: flex-start;
                align-items: flex-start; } }
          body.index main .episode__text .list li a .image {
            max-width: 240px;
            max-height: 350px;
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
            pointer-events: none; }
            @media only screen and (max-width: 767px) {
              body.index main .episode__text .list li a .image {
                width: 58px;
                opacity: 1;
                position: static;
                order: 1; } }
            body.index main .episode__text .list li a .image img {
              display: block;
              max-width: 100%;
              max-height: 100%; }
          body.index main .episode__text .list li a.is-active {
            z-index: 2; }
            body.index main .episode__text .list li a.is-active .text {
              -webkit-transform: translate(20px, 0);
              -moz-transform: translate(20px, 0);
              -ms-transform: translate(20px, 0);
              -o-transform: translate(20px, 0);
              transform: translate(20px, 0); }
        body.index main .episode__text .list li .item h5 {
          font-size: 34px;
          font-size: 3.4rem;
          line-height: 1.235;
          max-width: 440px;
          margin: 0 0 16px;
          letter-spacing: 0.029em;
          font-weight: 700; }
          @media only screen and (max-width: 1280px) {
            body.index main .episode__text .list li .item h5 {
              font-size: 2.656vw;
              margin: 0 0 1.25vw; } }
          @media only screen and (max-width: 767px) {
            body.index main .episode__text .list li .item h5 {
              font-size: 20px;
              font-size: 2rem;
              line-height: 1.3;
              margin: 0 0 14px; } }
        body.index main .episode__text .list li .item small {
          font-size: 12px;
          font-size: 1.2rem;
          font-weight: 500;
          line-height: 1.4; }
          @media only screen and (max-width: 1280px) {
            body.index main .episode__text .list li .item small {
              font-size: 0.9375vw;
              display: inline-block;
              margin-right: 20px; } }
          @media only screen and (max-width: 767px) {
            body.index main .episode__text .list li .item small {
              font-size: 10px;
              font-size: 1rem;
              margin: 0; } }
        body.index main .episode__text .list li .vol {
          font-size: 12px;
          font-size: 1.2rem;
          font-family: "neue-haas-grotesk-text", sans-serif;
          font-weight: 500;
          font-feature-settings: normal;
          letter-spacing: .05em; }
          @media only screen and (max-width: 1280px) {
            body.index main .episode__text .list li .vol {
              font-size: 0.9375vw; } }
          @media only screen and (max-width: 767px) {
            body.index main .episode__text .list li .vol {
              display: none; } }
        body.index main .episode__text .list li:last-of-type {
          border-bottom: 1px solid #D6D6D6; }
    body.index main .episode__text.right {
      margin-left: auto; }

body.index main .episode01 .character {
  top: 120px;
  right: 0px;
  width: 194px; }
  @media only screen and (max-width: 1280px) {
    body.index main .episode01 .character {
      top: 9.375vw;
      right: 0;
      width: 15.15vw; } }
  @media only screen and (max-width: 767px) {
    body.index main .episode01 .character {
      top: calc(100vh + 58px);
      width: 130px;
      right: 0px; } }

body.index main .episode02 {
  margin: 200px 0 0; }
  @media only screen and (max-width: 767px) {
    body.index main .episode02 {
      margin: 120px 0 0; } }
  body.index main .episode02 .character {
    top: 120px;
    left: 0px;
    width: 213px; }
    @media only screen and (max-width: 1280px) {
      body.index main .episode02 .character {
        top: 9.375vw;
        width: 16.64vw; } }
    @media only screen and (max-width: 767px) {
      body.index main .episode02 .character {
        top: calc(100vh + 60px);
        width: 140px;
        left: -0px; } }

body.index main .episode03 {
  margin: 200px 0 0; }
  @media only screen and (max-width: 767px) {
    body.index main .episode03 {
      margin: 120px 0 0; } }
  body.index main .episode03 .character {
    top: 90px;
    right: 0px;
    width: 193px; }
    @media only screen and (max-width: 1280px) {
      body.index main .episode03 .character {
        top: 7vw;
        right: 0;
        width: 15vw; } }
    @media only screen and (max-width: 767px) {
      body.index main .episode03 .character {
        top: calc(100vh + 60px);
        width: 140px;
        right: -0px; } }

body.index main .epilogue {
  padding: 100px 0 240px;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.index main .epilogue {
      padding: 60px 0 140px; } }
  body.index main .epilogue .inner3 {
    padding: 0;
    max-width: none; }
  body.index main .epilogue .ttl03 span {
    height: 9.3vw; }
    @media only screen and (max-width: 767px) {
      body.index main .epilogue .ttl03 span {
        height: 16.4vw; } }
  body.index main .epilogue__img {
    padding: 80px 0 0; }
    @media only screen and (max-width: 767px) {
      body.index main .epilogue__img {
        padding: 50px 0 0; } }
    body.index main .epilogue__img .img-manga {
      width: 56.87vw;
      margin: 0 auto; }
      @media only screen and (max-width: 767px) {
        body.index main .epilogue__img .img-manga {
          width: calc(100% - 60px); } }
      body.index main .epilogue__img .img-manga img {
        width: 100%; }
  body.index main .epilogue .container2 {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    white-space: nowrap; }
    @media only screen and (max-width: 767px) {
      body.index main .epilogue .container2 {
        display: block; } }
    body.index main .epilogue .container2 .wrapper2 {
      padding: 0 12.5vw;
      display: -webkit-flex;
      display: flex; }
      @media only screen and (max-width: 767px) {
        body.index main .epilogue .container2 .wrapper2 {
          padding: 0 30px;
          display: block; } }
    body.index main .epilogue .container2 .img {
      margin-right: 3.9vw;
      vertical-align: top; }
      @media only screen and (max-width: 767px) {
        body.index main .epilogue .container2 .img {
          margin: 0 0 30px; } }
      body.index main .epilogue .container2 .img:last-child {
        margin-right: 0; }
    body.index main .epilogue .container2 .img01 {
      width: 35.31vw; }
      @media only screen and (max-width: 767px) {
        body.index main .epilogue .container2 .img01 {
          width: 100%; } }
    body.index main .epilogue .container2 .img02 {
      width: 34.6vw;
      margin-top: -0.7vw; }
      @media only screen and (max-width: 767px) {
        body.index main .epilogue .container2 .img02 {
          width: 100%; } }
    body.index main .epilogue .container2 .img03 {
      width: 44.29vw;
      margin-top: -1.79vw; }
      @media only screen and (max-width: 767px) {
        body.index main .epilogue .container2 .img03 {
          width: calc(100% + 26px);
          margin: 0 -11px 0 -15px; } }
  body.index main .epilogue .progress-bar2 {
    width: calc(100% - 25vw);
    max-width: 1280px;
    margin: 100px auto 0;
    background-color: #D6D6D6;
    height: 2px;
    overflow: hidden;
    position: relative; }
    body.index main .epilogue .progress-bar2 span {
      width: 300px;
      height: 2px;
      background-color: #000;
      display: block;
      position: absolute;
      right: calc(100% - 300px); }

@media all and (-ms-high-contrast: none) {
  body.index main .index__line p span a {
    display: inline-block; }
  body.single main .content-wrap .inner3 .content .link ul li a {
    padding: 22px 25px 14px !important; }
  body.index main .index__line p span {
    position: relative;
    top: 1.8vw; } }

body.index main .top {
  padding: 60px 0 0px; }
  @media only screen and (max-width: 767px) {
    body.index main .top {
      padding: 52px 0 0; } }
  body.index main .top__logo {
    width: 253px;
    height: 269px;
    margin: 0 auto;
    overflow: hidden; }
    @media only screen and (max-width: 1280px) {
      body.index main .top__logo {
        width: 19.76vw;
        height: 21vw; } }
    @media only screen and (max-width: 767px) {
      body.index main .top__logo {
        width: 150px;
        height: 159px; } }
  body.index main .top .number-box {
    margin-left: auto;
    margin-top: -100px;
    width: 160px;
    height: 206px; }
    @media only screen and (max-width: 1280px) {
      body.index main .top .number-box {
        width: 12.5vw;
        height: 16vw; } }
    @media only screen and (max-width: 767px) {
      body.index main .top .number-box {
        width: 74px;
        height: 105px;
        margin: 10px 0 0 auto; } }
    body.index main .top .number-box small {
      margin: 0 0 9px; }
    @media only screen and (min-width: 768px) {
      body.index main .top .number-box strong {
        font-size: 220px;
        font-size: 22rem; } }
    @media only screen and (max-width: 1280px) {
      body.index main .top .number-box strong {
        font-size: 17.18vw; } }
    @media only screen and (max-width: 767px) {
      body.index main .top .number-box strong {
        font-size: 100px;
        font-size: 10rem; } }
    body.index main .top .number-box strong:after {
      height: 4px; }
  @media only screen and (max-width: 767px) {
    body.index main .top .mv-wrap {
      margin: 10px 0 0; } }
  body.index main .top .mv-wrap span {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.6666;
    display: block;
    margin: 0 0 10px;
    width: 100%;
    height: 29px;
    overflow: hidden;
    font-weight: 600; }
    @media only screen and (max-width: 1280px) {
      body.index main .top .mv-wrap span {
        font-size: 1.4vw;
        height: 2.26vw; } }
    @media only screen and (max-width: 767px) {
      body.index main .top .mv-wrap span {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.428;
        height: 38px; } }
    body.index main .top .mv-wrap span em {
      transition: .8s;
      opacity: 0;
      display: inline-block;
      -webkit-transform: translate(0, 100%);
      -moz-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
      -o-transform: translate(0, 100%);
      transform: translate(0, 100%); }
    body.index main .top .mv-wrap span.is-active em {
      opacity: 1;
      -webkit-transform: translate(0, 0%);
      -moz-transform: translate(0, 0%);
      -ms-transform: translate(0, 0%);
      -o-transform: translate(0, 0%);
      transform: translate(0, 0%); }
  body.index main .top .mv-wrap__img {
    height: 121vw;
    position: relative; }
    @media only screen and (max-width: 1280px) {
      body.index main .top .mv-wrap__img {
        height: 121vw; } }
    @media only screen and (max-width: 767px) {
      body.index main .top .mv-wrap__img {
        height: 490px; } }
    body.index main .top .mv-wrap__img .mv01 {
      width: 82.14%;
      height: 113.2vw;
      position: relative;
      color: #fff;
      padding: 30.46vw 6.25vw 9.375vw;
      z-index: +1;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      flex-direction: column;
      -webkit-justify-content: flex-end;
      justify-content: flex-end; }
      @media only screen and (max-width: 1280px) {
        body.index main .top .mv-wrap__img .mv01 {
          height: 113.2vw;
          padding: 30.46vw 6.25vw 9.375vw; } }
      @media only screen and (max-width: 767px) {
        body.index main .top .mv-wrap__img .mv01 {
          width: 81.9%;
          height: 460px;
          padding: 0px 0px 80px 30px; } }
      body.index main .top .mv-wrap__img .mv01 h2 {
        font-size: 54px;
        font-size: 5.4rem;
        line-height: 1.3;
        position: relative;
        font-weight: 600;
        letter-spacing: 0.08em; }
        @media only screen and (max-width: 1280px) {
          body.index main .top .mv-wrap__img .mv01 h2 {
            font-size: 4.218vw; } }
        @media only screen and (max-width: 767px) {
          body.index main .top .mv-wrap__img .mv01 h2 {
            font-size: 24px;
            font-size: 2.4rem;
            line-height: 1.25; } }
      body.index main .top .mv-wrap__img .mv01 p {
        font-size: 17px;
        font-size: 1.7rem;
        line-height: 2;
        position: relative;
        margin: 65px 0 85px;
        font-weight: 500;
        letter-spacing: 0.1em; }
        @media only screen and (max-width: 1280px) {
          body.index main .top .mv-wrap__img .mv01 p {
            font-size: 1.328vw;
            margin: 5vw 0 6.64vw; } }
      body.index main .top .mv-wrap__img .mv01 .logo {
        width: 150px;
        position: relative; }
        @media only screen and (max-width: 1280px) {
          body.index main .top .mv-wrap__img .mv01 .logo {
            width: 11.71vw; } }
      body.index main .top .mv-wrap__img .mv01 .character {
        width: 278px;
        position: absolute;
        right: -200px;
        bottom: -125px; }
        @media only screen and (max-width: 1280px) {
          body.index main .top .mv-wrap__img .mv01 .character {
            width: 21.71vw;
            right: -15.62vw;
            bottom: -9.76vw; } }
        @media only screen and (max-width: 767px) {
          body.index main .top .mv-wrap__img .mv01 .character {
            width: 105px;
            right: -70px;
            bottom: -4px; } }
      body.index main .top .mv-wrap__img .mv01 .img-wrap {
        overflow: hidden;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
      body.index main .top .mv-wrap__img .mv01 .img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
      body.index main .top .mv-wrap__img .mv01 small {
        position: absolute;
        color: #000;
        font-size: 10px;
        font-size: 1rem;
        -webkit-transform: scale(0.8) rotate(-90deg);
        -moz-transform: scale(0.8) rotate(-90deg);
        -ms-transform: scale(0.8) rotate(-90deg);
        -o-transform: scale(0.8) rotate(-90deg);
        transform: scale(0.8) rotate(-90deg);
        left: -148px;
        bottom: 101px;
        font-family: "neue-haas-grotesk-text", sans-serif;
        font-feature-settings: normal;
        white-space: nowrap; }
        @media only screen and (max-width: 767px) {
          body.index main .top .mv-wrap__img .mv01 small {
            left: -142px;
            bottom: 75px;
            -webkit-transform: rotate(-90deg) scale(0.6);
            -moz-transform: rotate(-90deg) scale(0.6);
            -ms-transform: rotate(-90deg) scale(0.6);
            -o-transform: rotate(-90deg) scale(0.6);
            transform: rotate(-90deg) scale(0.6); } }
    body.index main .top .mv-wrap__img .mv02 {
      width: 57.14%;
      height: 113.2vw;
      position: absolute;
      right: 0;
      bottom: 0; }
      @media only screen and (max-width: 1280px) {
        body.index main .top .mv-wrap__img .mv02 {
          height: 113.2vw; } }
      @media only screen and (max-width: 767px) {
        body.index main .top .mv-wrap__img .mv02 {
          width: 56.49%;
          height: 460px; } }
      body.index main .top .mv-wrap__img .mv02 .img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 45%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
  body.index main .top .mv-wrap .sp-text {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 2;
    text-align: center;
    margin: 50px 0 0; }

body.index main .read {
  padding: 125px 0 100px; }
  @media only screen and (max-width: 767px) {
    body.index main .read {
      padding: 100px 0 50px; } }
  @media only screen and (min-width: 768px) {
    body.index main .read .inner {
      padding: 0;
      max-width: none; } }
  body.index main .read__title-box {
    text-align: center;
    position: relative; }
    body.index main .read__title-box .number-box {
      z-index: +1;
      position: relative;
      margin: 0 auto 134px; }
      @media only screen and (min-width: 768px) {
        body.index main .read__title-box .number-box {
          height: 163px; } }
      @media only screen and (max-width: 1280px) {
        body.index main .read__title-box .number-box {
          height: 13vw;
          margin: 0 auto 10.46vw; } }
      @media only screen and (max-width: 767px) {
        body.index main .read__title-box .number-box {
          width: 88px;
          margin: 0 auto 58px;
          height: 88px; } }
      @media only screen and (max-width: 767px) {
        body.index main .read__title-box .number-box strong {
          font-size: 80px;
          font-size: 8rem; } }
      body.index main .read__title-box .number-box small {
        margin: 0 0 9px; }
    body.index main .read__title-box h2 {
      font-size: 13.28vw;
      z-index: +1;
      position: relative;
      font-family: "new-spirit-condensed", serif;
      font-weight: 400;
      letter-spacing: -0.03em;
      width: 100%;
      height: 11.7vw;
      overflow: hidden; }
      @media only screen and (max-width: 767px) {
        body.index main .read__title-box h2 {
          font-size: 17.6vw;
          height: 16.18vw;
          letter-spacing: -0.03em;
          white-space: nowrap; } }
      body.index main .read__title-box h2 span {
        opacity: 0;
        transition: .8s;
        -webkit-transform: translate(0, 100%);
        -moz-transform: translate(0, 100%);
        -ms-transform: translate(0, 100%);
        -o-transform: translate(0, 100%);
        transform: translate(0, 100%);
        display: inline-block;
        white-space: nowrap;
        width: 100%; }
      body.index main .read__title-box h2.is-active span {
        opacity: 1;
        -webkit-transform: translate(0, 0%);
        -moz-transform: translate(0, 0%);
        -ms-transform: translate(0, 0%);
        -o-transform: translate(0, 0%);
        transform: translate(0, 0%); }
    body.index main .read__title-box .jp-box {
      margin-left: 71.87vw;
      margin-top: 7vw;
      width: 197px;
      text-align: left;
      z-index: +1;
      position: relative; }
      @media only screen and (max-width: 1280px) {
        body.index main .read__title-box .jp-box {
          width: 15.39vw;
          margin-top: 7vw; } }
      @media only screen and (max-width: 767px) {
        body.index main .read__title-box .jp-box {
          margin: 108px auto 0;
          width: 100%;
          text-align: center; } }
      body.index main .read__title-box .jp-box small {
        font-size: 12px;
        font-size: 1.2rem;
        font-weight: 600; }
        @media only screen and (max-width: 1280px) {
          body.index main .read__title-box .jp-box small {
            font-size: 0.93vw; } }
        @media only screen and (max-width: 767px) {
          body.index main .read__title-box .jp-box small {
            font-size: 10px;
            font-size: 1rem; } }
      body.index main .read__title-box .jp-box span {
        font-size: 22px;
        font-size: 2.2rem;
        line-height: 1.272;
        display: block;
        margin: 10px 0 0;
        font-weight: 600;
        letter-spacing: 0.1em; }
        @media only screen and (max-width: 1280px) {
          body.index main .read__title-box .jp-box span {
            font-size: 1.71vw;
            margin: 0.78vw 0; } }
        @media only screen and (max-width: 767px) {
          body.index main .read__title-box .jp-box span {
            font-size: 14px;
            font-size: 1.4rem;
            line-height: 1.285;
            margin: 8px 0 0; } }
    body.index main .read__title-box .img-area {
      position: absolute;
      left: 50%;
      top: 118px;
      width: 360px;
      height: 530px;
      -webkit-transform: translate(-50%, 0);
      -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      -o-transform: translate(-50%, 0);
      transform: translate(-50%, 0); }
      @media only screen and (max-width: 1280px) {
        body.index main .read__title-box .img-area {
          top: 9.2vw;
          width: 28.12vw;
          height: 41.4vw; } }
      @media only screen and (max-width: 767px) {
        body.index main .read__title-box .img-area {
          width: 100%;
          height: 234px;
          top: 64px; } }
      body.index main .read__title-box .img-area .img-wrap {
        position: relative;
        height: 530px; }
        @media only screen and (max-width: 1280px) {
          body.index main .read__title-box .img-area .img-wrap {
            height: 41.4vw; } }
        @media only screen and (max-width: 767px) {
          body.index main .read__title-box .img-area .img-wrap {
            height: 234px; } }
        body.index main .read__title-box .img-area .img-wrap .img {
          position: absolute;
          width: 280px; }
          @media only screen and (max-width: 1280px) {
            body.index main .read__title-box .img-area .img-wrap .img {
              width: 21.87vw; } }
          @media only screen and (max-width: 767px) {
            body.index main .read__title-box .img-area .img-wrap .img {
              width: 124px; } }
        body.index main .read__title-box .img-area .img-wrap .img01 {
          top: 0;
          left: 50%;
          -webkit-transform: translate(-50%, 0);
          -moz-transform: translate(-50%, 0);
          -ms-transform: translate(-50%, 0);
          -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
          z-index: +2; }
        body.index main .read__title-box .img-area .img-wrap .img02 {
          top: 30px;
          left: 0;
          z-index: +1;
          -webkit-transform: translate(-50%, 0);
          -moz-transform: translate(-50%, 0);
          -ms-transform: translate(-50%, 0);
          -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0); }
          @media only screen and (max-width: 1280px) {
            body.index main .read__title-box .img-area .img-wrap .img02 {
              top: 2.34vw; } }
          @media only screen and (max-width: 767px) {
            body.index main .read__title-box .img-area .img-wrap .img02 {
              top: 14px; } }
        body.index main .read__title-box .img-area .img-wrap .img03 {
          top: 70px;
          right: 0;
          -webkit-transform: translate(50%, 0);
          -moz-transform: translate(50%, 0);
          -ms-transform: translate(50%, 0);
          -o-transform: translate(50%, 0);
          transform: translate(50%, 0); }
          @media only screen and (max-width: 1280px) {
            body.index main .read__title-box .img-area .img-wrap .img03 {
              top: 5.46vw; } }
          @media only screen and (max-width: 767px) {
            body.index main .read__title-box .img-area .img-wrap .img03 {
              top: 32px; } }
  body.index main .read h3 {
    text-align: center;
    font-size: 48px;
    font-size: 4.8rem;
    line-height: 1.25;
    margin: 180px 0 65px;
    font-weight: 600;
    letter-spacing: 0.05em; }
    @media only screen and (max-width: 1280px) {
      body.index main .read h3 {
        font-size: 3.75vw;
        margin: 14vw 0 5vw; } }
    @media only screen and (max-width: 767px) {
      body.index main .read h3 {
        font-size: 28px;
        font-size: 2.8rem;
        line-height: 1.357;
        margin: 55px 0 45px; } }
  body.index main .read p {
    text-align: center;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 2;
    font-weight: 500;
    letter-spacing: 0.09em;
    color: #222222; }
    @media only screen and (max-width: 1280px) {
      body.index main .read p {
        font-size: 1.32vw; } }
    @media only screen and (max-width: 767px) {
      body.index main .read p {
        font-size: 15px;
        font-size: 1.5rem; } }

body.index main .index {
  padding: 100px 0; }
  @media only screen and (max-width: 767px) {
    body.index main .index {
      padding: 50px 0; } }
  body.index main .index .inner3 {
    padding: 0 0 0; }
    @media only screen and (max-width: 767px) {
      body.index main .index .inner3 {
        padding: 0 20px; } }
  body.index main .index__line {
    font-size: 4.218vw;
    max-width: 67vw;
    margin: 78px auto 0;
    line-height: 85px;
    vertical-align: middle;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    font-weight: 600; }
    @media only screen and (max-width: 767px) {
      body.index main .index__line {
        font-size: 6.28vw;
        max-width: 100%;
        margin: 50px auto 0; } }
    body.index main .index__line .img {
      display: inline-block;
      width: 7.8vw;
      height: 5.46vw;
      background-position: center center;
      background-size: cover;
      vertical-align: middle;
      line-height: 70px;
      margin: 0 1.7vw;
      margin-bottom: 1.5vw; }
      @media only screen and (max-width: 767px) {
        body.index main .index__line .img {
          width: 10.86vw;
          height: 7.72vw;
          margin: 0 2.89vw 16px; } }
    body.index main .index__line .number {
      display: inline-block;
      vertical-align: middle;
      font-family: "neue-haas-grotesk-text", sans-serif;
      width: 6.5vw;
      height: 5vw;
      overflow: hidden;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      flex-direction: column;
      margin-bottom: 1.5vw;
      padding-top: 0.8vw; }
      @media only screen and (max-width: 767px) {
        body.index main .index__line .number {
          width: 9.17vw;
          height: 6.76vw;
          margin-bottom: 15px; } }
      body.index main .index__line .number span {
        vertical-align: middle;
        display: inline-block;
        -webkit-transform: translate(0, 100%);
        -moz-transform: translate(0, 100%);
        -ms-transform: translate(0, 100%);
        -o-transform: translate(0, 100%);
        transform: translate(0, 100%);
        transition: .8s;
        line-height: 1;
        font-weight: 500; }
      body.index main .index__line .number.is-active span {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0); }
    body.index main .index__line p {
      display: inline-block;
      position: relative;
      vertical-align: middle;
      overflow: hidden;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction: column;
      flex-direction: column;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-align-items: flex-start;
      align-items: flex-start;
      margin-bottom: 1.5vw;
      white-space: nowrap;
      letter-spacing: 0.04em; }
      @media only screen and (max-width: 767px) {
        body.index main .index__line p {
          margin: 0 0 20px; } }
      body.index main .index__line p:before {
        content: "";
        width: 0;
        height: 1px;
        display: block;
        background: #000;
        position: absolute;
        left: 0;
        bottom: 0;
        transition: .8s; }
      body.index main .index__line p:after {
        content: "";
        width: 0;
        height: 1px;
        display: block;
        background: #000;
        position: absolute;
        left: 0;
        bottom: 0;
        transition: .8s;
        transition-delay: .8s; }
      body.index main .index__line p span {
        vertical-align: middle;
        display: inline-block;
        -webkit-transform: translate(0, 100%);
        -moz-transform: translate(0, 100%);
        -ms-transform: translate(0, 100%);
        -o-transform: translate(0, 100%);
        transform: translate(0, 100%);
        transition: .8s;
        line-height: 1; }
      body.index main .index__line p.is-active:after {
        width: 100%; }
      body.index main .index__line p.is-active span {
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0); }
    body.index main .index__line .text01 {
      width: 33vw;
      height: 5vw; }
      @media only screen and (max-width: 767px) {
        body.index main .index__line .text01 {
          width: 51vw;
          height: 6.76vw; } }
    body.index main .index__line .text02 {
      width: 41.5vw;
      height: 5vw; }
      @media only screen and (max-width: 767px) {
        body.index main .index__line .text02 {
          width: 63.5vw;
          height: 6.76vw; } }
    body.index main .index__line .text03 {
      width: 42vw;
      height: 5vw; }
      @media only screen and (max-width: 767px) {
        body.index main .index__line .text03 {
          width: 65vw;
          height: 6.76vw; } }
    body.index main .index__line .text04 {
      width: 21.5vw;
      height: 5vw; }
      @media only screen and (max-width: 767px) {
        body.index main .index__line .text04 {
          width: 34vw;
          height: 6.76vw; } }
    body.index main .index__line .text05 {
      width: 8.2vw;
      height: 5vw; }
      @media only screen and (max-width: 767px) {
        body.index main .index__line .text05 {
          width: 13vw;
          height: 6.76vw; } }
    body.index main .index__line .text06 {
      width: 25.7vw;
      height: 5vw; }
      @media only screen and (max-width: 767px) {
        body.index main .index__line .text06 {
          width: 39vw;
          height: 6.76vw; } }

body.index main .intro {
  padding: 100px 0 220px;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.index main .intro {
      padding: 50px 0 120px; } }
  body.index main .intro .inner3 {
    padding: 0;
    max-width: none; }
  @media only screen and (max-width: 767px) {
    body.index main .intro .ttl03 span {
      letter-spacing: -0.04em; } }
  body.index main .intro__img {
    padding: 80px 0 0; }
    @media only screen and (max-width: 767px) {
      body.index main .intro__img {
        padding: 50px 0 0; } }
    body.index main .intro__img .img-manga {
      width: 71vw;
      margin: 0 auto; }
      @media only screen and (max-width: 767px) {
        body.index main .intro__img .img-manga {
          width: 100%; } }
      body.index main .intro__img .img-manga img {
        width: 100%; }
  body.index main .intro .container {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    white-space: nowrap; }
    @media only screen and (max-width: 767px) {
      body.index main .intro .container {
        display: block; } }
    body.index main .intro .container .wrapper {
      padding: 0 12.5vw;
      display: -webkit-flex;
      display: flex; }
      @media only screen and (max-width: 767px) {
        body.index main .intro .container .wrapper {
          padding: 0 30px;
          display: block; } }
    body.index main .intro .container .img {
      margin-right: 3.9vw;
      vertical-align: top; }
      @media only screen and (max-width: 767px) {
        body.index main .intro .container .img {
          margin: 0 auto 30px; } }
      body.index main .intro .container .img:last-child {
        margin-right: 0; }
    body.index main .intro .container .img01 {
      width: 35.31vw; }
      @media only screen and (max-width: 767px) {
        body.index main .intro .container .img01 {
          width: 100%; } }
    body.index main .intro .container .img02 {
      width: 34.6vw;
      margin-top: -0.7vw; }
      @media only screen and (max-width: 767px) {
        body.index main .intro .container .img02 {
          width: 100%; } }
    body.index main .intro .container .img03 {
      width: 44.29vw;
      margin-top: -1.79vw; }
      @media only screen and (max-width: 767px) {
        body.index main .intro .container .img03 {
          width: calc(100% + 26px);
          margin: 0 -11px 0 -15px; } }
  body.index main .intro .progress-bar {
    width: calc(100% - 25vw);
    max-width: 1280px;
    margin: 100px auto 0;
    background-color: #D6D6D6;
    height: 2px;
    overflow: hidden;
    position: relative; }
    body.index main .intro .progress-bar span {
      width: 300px;
      height: 2px;
      background-color: #000;
      display: block;
      position: absolute;
      right: calc(100% - 300px); }

body.index main .episode {
  position: relative; }
  body.index main .episode .character {
    position: absolute; }
  @media only screen and (max-width: 767px) {
    body.index main .episode .inner2 {
      padding: 0; } }
  body.index main .episode__thumb {
    width: 37.5%;
    height: 100vh;
    background: #FFC653;
    position: absolute;
    top: 0;
    left: 0; }
    @media only screen and (max-width: 767px) {
      body.index main .episode__thumb {
        width: 100vw;
        position: relative; } }
    body.index main .episode__thumb.right {
      left: auto;
      right: 0; }
      body.index main .episode__thumb.right.fixed {
        left: auto;
        right: 0; }
    body.index main .episode__thumb.fixed {
      position: fixed;
      top: 0;
      left: 0; }
      @media only screen and (max-width: 767px) {
        body.index main .episode__thumb.fixed {
          position: relative; } }
    body.index main .episode__thumb.bottom {
      top: auto;
      bottom: 0; }
    body.index main .episode__thumb .box {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
      body.index main .episode__thumb .box .text {
        text-align: center;
        position: relative;
        z-index: +1; }
        body.index main .episode__thumb .box .text small {
          font-size: 10px;
          font-size: 1rem;
          line-height: 2;
          font-weight: 600; }
        body.index main .episode__thumb .box .text strong {
          display: block;
          font-size: 70px;
          font-size: 7rem;
          margin: 10px 0 0;
          white-space: nowrap;
          font-family: "new-spirit-condensed", serif;
          font-weight: 400;
          line-height: 0.9;
          letter-spacing: -0.03em; }
          @media only screen and (max-width: 1280px) {
            body.index main .episode__thumb .box .text strong {
              font-size: 5.46vw;
              margin: 0.78vw 0 0; } }
          @media only screen and (max-width: 767px) {
            body.index main .episode__thumb .box .text strong {
              font-size: 60px;
              font-size: 6rem;
              letter-spacing: -0.02em;
              line-height: 0.85; } }
      body.index main .episode__thumb .box .img {
        width: 200px;
        margin: -30px auto;
        position: relative; }
        @media only screen and (max-width: 1280px) {
          body.index main .episode__thumb .box .img {
            width: 15.62vw;
            margin: -2.34vw auto; } }
        @media only screen and (max-width: 767px) {
          body.index main .episode__thumb .box .img {
            width: 166px;
            margin: -20px auto; } }
      body.index main .episode__thumb .box .number-box {
        position: relative;
        margin: 0 auto; }
        @media only screen and (max-width: 767px) {
          body.index main .episode__thumb .box .number-box {
            width: 100px;
            height: 86px; } }
        body.index main .episode__thumb .box .number-box strong {
          font-size: 120px;
          font-size: 12rem;
          opacity: 1; }
          @media only screen and (max-width: 1280px) {
            body.index main .episode__thumb .box .number-box strong {
              font-size: 9.375vw; } }
          @media only screen and (max-width: 767px) {
            body.index main .episode__thumb .box .number-box strong {
              font-size: 100px;
              font-size: 10rem; } }
          body.index main .episode__thumb .box .number-box strong:after {
            width: 97%; }
  body.index main .episode #thum02 {
    background: #4D76A4; }
  body.index main .episode #thum03 {
    background: #F39CA5; }
  body.index main .episode__text {
    width: 53.8%;
    padding: 50px 0 0; }
    @media only screen and (min-width: 768px) {
      body.index main .episode__text {
        min-height: 100vh; } }
    @media only screen and (max-width: 1280px) {
      body.index main .episode__text {
        padding: 3.9vw 0 0; } }
    @media only screen and (max-width: 767px) {
      body.index main .episode__text {
        width: 100%;
        padding: 150px 30px 0; } }
    body.index main .episode__text .number-box {
      margin: 0 auto 0;
      height: 136px; }
      @media only screen and (max-width: 1280px) {
        body.index main .episode__text .number-box {
          height: 10.62vw; } }
      @media only screen and (max-width: 767px) {
        body.index main .episode__text .number-box {
          height: 108px;
          width: 90px; } }
      @media only screen and (min-width: 768px) {
        body.index main .episode__text .number-box small {
          margin: 0 0 13px;
          -webkit-transform: scale(0.8);
          -moz-transform: scale(0.8);
          -ms-transform: scale(0.8);
          -o-transform: scale(0.8);
          transform: scale(0.8); } }
      body.index main .episode__text .number-box strong {
        font-size: 120px;
        font-size: 12rem; }
        @media only screen and (max-width: 1280px) {
          body.index main .episode__text .number-box strong {
            font-size: 9.375vw; } }
        @media only screen and (max-width: 767px) {
          body.index main .episode__text .number-box strong {
            font-size: 100px;
            font-size: 10rem; } }
    body.index main .episode__text h4 {
      text-align: center;
      font-size: 48px;
      font-size: 4.8rem;
      line-height: 1.25;
      margin: 44px 0 40px;
      font-weight: 600;
      letter-spacing: 0.07em; }
      @media only screen and (max-width: 1280px) {
        body.index main .episode__text h4 {
          font-size: 3.75vw;
          margin: 3.43vw 0 3.125vw; } }
      @media only screen and (max-width: 767px) {
        body.index main .episode__text h4 {
          font-size: 28px;
          font-size: 2.8rem;
          line-height: 1.357;
          margin: 36px 0 30px; } }
    body.index main .episode__text p {
      text-align: center;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 2.1333;
      max-width: 380px;
      margin: 0 auto;
      font-weight: 500;
      letter-spacing: 0.09em;
      color: #222222; }
      @media only screen and (max-width: 1280px) {
        body.index main .episode__text p {
          font-size: 1.171vw; } }
      @media only screen and (max-width: 767px) {
        body.index main .episode__text p {
          font-size: 15px;
          font-size: 1.5rem; } }
      @media only screen and (max-width: 767px) {
        body.index main .episode__text p br {
          display: none; } }
    body.index main .episode__text .list {
      margin: 95px 0 0; }
      @media only screen and (max-width: 1280px) {
        body.index main .episode__text .list {
          margin: 7.42vw 0 0; } }
      @media only screen and (max-width: 767px) {
        body.index main .episode__text .list {
          margin: 80px 0 0; } }
      body.index main .episode__text .list li {
        border-top: 1px solid #D6D6D6; }
        body.index main .episode__text .list li a {
          padding: 45px 0 50px;
          display: block;
          position: relative;
          z-index: 1; }
          @media only screen and (max-width: 1280px) {
            body.index main .episode__text .list li a {
              padding: 3.5vw 0 3.9vw; } }
          @media only screen and (max-width: 767px) {
            body.index main .episode__text .list li a {
              display: -webkit-flex;
              display: flex;
              -webkit-justify-content: space-between;
              justify-content: space-between;
              padding: 34px 0; } }
          body.index main .episode__text .list li a .text {
            display: -webkit-flex;
            display: flex;
            -webkit-align-items: flex-end;
            align-items: flex-end;
            -webkit-justify-content: space-between;
            justify-content: space-between;
            pointer-events: none;
            position: relative;
            z-index: 1;
            transition: transform 0.4s; }
            @media only screen and (max-width: 767px) {
              body.index main .episode__text .list li a .text {
                width: calc(100% - 82px);
                order: 2;
                -webkit-align-items: flex-start;
                align-items: flex-start; } }
          body.index main .episode__text .list li a .image {
            max-width: 240px;
            max-height: 350px;
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
            pointer-events: none; }
            @media only screen and (max-width: 767px) {
              body.index main .episode__text .list li a .image {
                width: 58px;
                opacity: 1;
                position: static;
                order: 1; } }
            body.index main .episode__text .list li a .image img {
              display: block;
              max-width: 100%;
              max-height: 100%; }
          body.index main .episode__text .list li a.is-active {
            z-index: 2; }
            body.index main .episode__text .list li a.is-active .text {
              -webkit-transform: translate(20px, 0);
              -moz-transform: translate(20px, 0);
              -ms-transform: translate(20px, 0);
              -o-transform: translate(20px, 0);
              transform: translate(20px, 0); }
        body.index main .episode__text .list li .item h5 {
          font-size: 34px;
          font-size: 3.4rem;
          line-height: 1.235;
          max-width: 460px;
          margin: 0 0 16px;
          letter-spacing: 0.06em;
          font-weight: 600; }
          @media only screen and (max-width: 1280px) {
            body.index main .episode__text .list li .item h5 {
              font-size: 2.656vw;
              margin: 0 0 1.25vw; } }
          @media only screen and (max-width: 767px) {
            body.index main .episode__text .list li .item h5 {
              font-size: 20px;
              font-size: 2rem;
              line-height: 1.3;
              margin: 0 0 14px; } }
        body.index main .episode__text .list li .item small {
          font-size: 12px;
          font-size: 1.2rem;
          font-weight: 500;
          line-height: 1.4;
          letter-spacing: 0.08em;
          color: #222222; }
          @media only screen and (max-width: 1280px) {
            body.index main .episode__text .list li .item small {
              font-size: 0.9375vw;
              display: inline-block;
              margin-right: 20px; } }
          @media only screen and (max-width: 767px) {
            body.index main .episode__text .list li .item small {
              font-size: 10px;
              font-size: 1rem;
              margin: 0; } }
          body.index main .episode__text .list li .item small em {
            font-weight: 500; }
        body.index main .episode__text .list li .vol {
          font-size: 12px;
          font-size: 1.2rem;
          font-family: "neue-haas-grotesk-text", sans-serif;
          font-weight: 500;
          font-feature-settings: normal;
          letter-spacing: .05em;
          color: #222222; }
          @media only screen and (max-width: 1280px) {
            body.index main .episode__text .list li .vol {
              font-size: 0.9375vw; } }
          @media only screen and (max-width: 767px) {
            body.index main .episode__text .list li .vol {
              display: none; } }
        body.index main .episode__text .list li:last-of-type {
          border-bottom: 1px solid #D6D6D6; }
    body.index main .episode__text.right {
      margin-left: auto; }

body.index main .episode01 .character {
  top: 120px;
  right: 0px;
  width: 194px; }
  @media only screen and (max-width: 1280px) {
    body.index main .episode01 .character {
      top: 9.375vw;
      right: 0;
      width: 15.15vw; } }
  @media only screen and (max-width: 767px) {
    body.index main .episode01 .character {
      top: calc(100vh + 58px);
      width: 130px;
      right: 0px; } }

body.index main .episode02 {
  margin: 200px 0 0; }
  @media only screen and (max-width: 767px) {
    body.index main .episode02 {
      margin: 120px 0 0; } }
  body.index main .episode02 .character {
    top: 120px;
    left: 0px;
    width: 213px; }
    @media only screen and (max-width: 1280px) {
      body.index main .episode02 .character {
        top: 9.375vw;
        width: 16.64vw; } }
    @media only screen and (max-width: 767px) {
      body.index main .episode02 .character {
        top: calc(100vh + 60px);
        width: 140px;
        left: -0px; } }

body.index main .episode03 {
  margin: 200px 0 0; }
  @media only screen and (max-width: 767px) {
    body.index main .episode03 {
      margin: 120px 0 0; } }
  body.index main .episode03 .character {
    top: 90px;
    right: 0px;
    width: 193px; }
    @media only screen and (max-width: 1280px) {
      body.index main .episode03 .character {
        top: 7vw;
        right: 0;
        width: 15vw; } }
    @media only screen and (max-width: 767px) {
      body.index main .episode03 .character {
        top: calc(100vh + 60px);
        width: 140px;
        right: -0px; } }

body.index main .recommends {
  padding: 200px 0 100px; }
  @media only screen and (max-width: 767px) {
    body.index main .recommends {
      padding: 120px 0 60px; } }

body.index main .epilogue {
  padding: 100px 0 240px;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.index main .epilogue {
      padding: 60px 0 140px; } }
  body.index main .epilogue .inner3 {
    padding: 0;
    max-width: none; }
  body.index main .epilogue .ttl03 span {
    height: 9.3vw; }
    @media only screen and (max-width: 767px) {
      body.index main .epilogue .ttl03 span {
        height: 16.4vw; } }
  body.index main .epilogue__img {
    padding: 80px 0 0; }
    @media only screen and (max-width: 767px) {
      body.index main .epilogue__img {
        padding: 50px 0 0; } }
    body.index main .epilogue__img .img-manga {
      width: 56.87vw;
      margin: 0 auto; }
      @media only screen and (max-width: 767px) {
        body.index main .epilogue__img .img-manga {
          width: calc(100% - 60px); } }
      body.index main .epilogue__img .img-manga img {
        width: 100%; }
  body.index main .epilogue .container2 {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    white-space: nowrap; }
    @media only screen and (max-width: 767px) {
      body.index main .epilogue .container2 {
        display: block; } }
    body.index main .epilogue .container2 .wrapper2 {
      padding: 0 12.5vw;
      display: -webkit-flex;
      display: flex; }
      @media only screen and (max-width: 767px) {
        body.index main .epilogue .container2 .wrapper2 {
          padding: 0 30px;
          display: block; } }
    body.index main .epilogue .container2 .img {
      margin-right: 3.9vw;
      vertical-align: top; }
      @media only screen and (max-width: 767px) {
        body.index main .epilogue .container2 .img {
          margin: 0 0 30px; } }
      body.index main .epilogue .container2 .img:last-child {
        margin-right: 0; }
    body.index main .epilogue .container2 .img01 {
      width: 35.31vw; }
      @media only screen and (max-width: 767px) {
        body.index main .epilogue .container2 .img01 {
          width: 100%; } }
    body.index main .epilogue .container2 .img02 {
      width: 34.6vw;
      margin-top: -0.7vw; }
      @media only screen and (max-width: 767px) {
        body.index main .epilogue .container2 .img02 {
          width: 100%; } }
    body.index main .epilogue .container2 .img03 {
      width: 44.29vw;
      margin-top: -1.79vw; }
      @media only screen and (max-width: 767px) {
        body.index main .epilogue .container2 .img03 {
          width: calc(100% + 26px);
          margin: 0 -11px 0 -15px; } }
  body.index main .epilogue .progress-bar2 {
    width: calc(100% - 25vw);
    max-width: 1280px;
    margin: 100px auto 0;
    background-color: #D6D6D6;
    height: 2px;
    overflow: hidden;
    position: relative; }
    body.index main .epilogue .progress-bar2 span {
      width: 300px;
      height: 2px;
      background-color: #000;
      display: block;
      position: absolute;
      right: calc(100% - 300px); }

@media all and (-ms-high-contrast: none) {
  body.index main .index__line p span a {
    display: inline-block; }
  body.single main .content-wrap .inner3 .content .link ul li a {
    padding: 22px 25px 14px !important; }
  body.index main .index__line p span {
    position: relative;
    top: 1.8vw; } }

body.single main .top {
  padding: 130px 0 0px; }
  @media only screen and (max-width: 767px) {
    body.single main .top {
      padding: 60px 0 0; } }
  body.single main .top__top {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end; }
    body.single main .top__top .box {
      width: 50vw;
      margin-right: 40px; }
      @media only screen and (max-width: 1280px) {
        body.single main .top__top .box {
          margin-right: 3.125vw; } }
      @media only screen and (max-width: 767px) {
        body.single main .top__top .box {
          margin-right: 0;
          max-width: 284px;
          width: 100%; } }
      body.single main .top__top .box .title {
        font-size: 58px;
        font-size: 5.8rem;
        margin: 0 0 30px;
        font-weight: 600;
        letter-spacing: 0.017em;
        line-height: 1.2; }
        @media only screen and (max-width: 1280px) {
          body.single main .top__top .box .title {
            font-size: 4.53vw;
            margin: 0 0 2.34vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .top__top .box .title {
            font-size: 32px;
            font-size: 3.2rem;
            letter-spacing: -0.02em;
            font-feature-settings: "palt";
            margin: 0 0 20px; } }
        body.single main .top__top .box .title:before {
          content: "";
          width: 76px;
          height: 5px;
          display: inline-block;
          background: #FFC653;
          margin-right: 40px;
          position: relative;
          top: -20px;
          border-radius: 5px; }
          @media only screen and (max-width: 1280px) {
            body.single main .top__top .box .title:before {
              width: 5.93vw;
              margin-right: 3.125vw;
              top: -1.56vw; } }
          @media only screen and (max-width: 767px) {
            body.single main .top__top .box .title:before {
              width: 40px;
              height: 3px;
              margin-right: 20px;
              top: -10px;
              border-radius: 3px; } }
      body.single main .top__top .box small {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 2;
        font-weight: 500; }
        @media only screen and (max-width: 1280px) {
          body.single main .top__top .box small {
            font-size: 1.25vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .top__top .box small {
            font-size: 14px;
            font-size: 1.4rem; } }
  body.single main .top .mv-wrap {
    margin-top: -120px; }
    @media only screen and (max-width: 767px) {
      body.single main .top .mv-wrap {
        margin-top: 34px; } }
    body.single main .top .mv-wrap .number-box {
      display: inline-block;
      margin: 0 0 18px 40px;
      height: 166px;
      width: 126px; }
      @media only screen and (max-width: 1280px) {
        body.single main .top .mv-wrap .number-box {
          margin: 0 0 1.4vw 3.125vw;
          height: 13.96vw;
          width: 9.84vw; } }
      @media only screen and (max-width: 767px) {
        body.single main .top .mv-wrap .number-box {
          margin: 0 0 18px;
          width: 60px;
          height: 90px; } }
      body.single main .top .mv-wrap .number-box small {
        margin: 0 0 12px;
        font-size: 10px;
        font-size: 1rem; }
      @media only screen and (max-width: 767px) {
        body.single main .top .mv-wrap .number-box strong {
          font-size: 80px;
          font-size: 8rem; } }
      body.single main .top .mv-wrap .number-box.no02 {
        width: 145px; }
        @media only screen and (max-width: 1280px) {
          body.single main .top .mv-wrap .number-box.no02 {
            width: 11.32vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .top .mv-wrap .number-box.no02 {
            width: 70px; } }
      body.single main .top .mv-wrap .number-box.no03 {
        width: 145px; }
        @media only screen and (max-width: 1280px) {
          body.single main .top .mv-wrap .number-box.no03 {
            width: 11.32vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .top .mv-wrap .number-box.no03 {
            width: 70px; } }
      body.single main .top .mv-wrap .number-box.no2 {
        width: 148px; }
        @media only screen and (max-width: 1280px) {
          body.single main .top .mv-wrap .number-box.no2 {
            width: 12vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .top .mv-wrap .number-box.no2 {
            width: 75px; } }
    body.single main .top .mv-wrap span {
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 1.6666;
      display: block;
      margin: 0 0 25px 40px;
      width: 100%;
      height: 29px;
      overflow: hidden;
      color: #0A0A0A;
      font-weight: 600; }
      @media only screen and (max-width: 1280px) {
        body.single main .top .mv-wrap span {
          font-size: 1.4vw;
          margin: 0 0 1.95vw 3.125vw;
          height: 2.26vw; } }
      @media only screen and (max-width: 767px) {
        body.single main .top .mv-wrap span {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.428;
          height: 18px;
          margin: 0 0 18px; } }
      body.single main .top .mv-wrap span em {
        transition: .8s;
        opacity: 0;
        display: inline-block;
        -webkit-transform: translate(0, 100%);
        -moz-transform: translate(0, 100%);
        -ms-transform: translate(0, 100%);
        -o-transform: translate(0, 100%);
        transform: translate(0, 100%); }
      body.single main .top .mv-wrap span.is-active em {
        opacity: 1;
        -webkit-transform: translate(0, 0%);
        -moz-transform: translate(0, 0%);
        -ms-transform: translate(0, 0%);
        -o-transform: translate(0, 0%);
        transform: translate(0, 0%); }
    body.single main .top .mv-wrap__img {
      height: 85.15vw;
      position: relative; }
      @media only screen and (max-width: 1280px) {
        body.single main .top .mv-wrap__img {
          height: 85.15vw; } }
      @media only screen and (max-width: 767px) {
        body.single main .top .mv-wrap__img {
          height: 346px; } }
      body.single main .top .mv-wrap__img .mv01 {
        width: 82.14%;
        height: 78.12vw;
        position: relative;
        color: #fff;
        padding: 0 6.25vw 10.15vw;
        z-index: +1;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        -webkit-justify-content: flex-end;
        justify-content: flex-end; }
        @media only screen and (max-width: 1280px) {
          body.single main .top .mv-wrap__img .mv01 {
            height: 78.12vw;
            padding: 0 6.25vw 10.15vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .top .mv-wrap__img .mv01 {
            width: 81.9%;
            height: 316px; } }
        body.single main .top .mv-wrap__img .mv01 p {
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 2;
          position: relative;
          margin: 0 0 40px;
          font-weight: 500;
          width: 25vw; }
          @media only screen and (max-width: 1280px) {
            body.single main .top .mv-wrap__img .mv01 p {
              font-size: 1.25vw;
              margin: 0 0 3.12vw; } }
          @media only screen and (max-width: 767px) {
            body.single main .top .mv-wrap__img .mv01 p {
              font-size: 17px;
              font-size: 1.7rem;
              margin: 0 0 58px; } }
        body.single main .top .mv-wrap__img .mv01 .author {
          position: relative;
          font-size: 12px;
          font-size: 1.2rem;
          color: #fff;
          margin: 0;
          font-weight: 500; }
          @media only screen and (max-width: 1280px) {
            body.single main .top .mv-wrap__img .mv01 .author {
              font-size: 0.9375vw; } }
          @media only screen and (max-width: 767px) {
            body.single main .top .mv-wrap__img .mv01 .author {
              font-size: 12px;
              font-size: 1.2rem; } }
        body.single main .top .mv-wrap__img .mv01 .character {
          width: 278px;
          position: absolute;
          right: -200px;
          bottom: -125px; }
          @media only screen and (max-width: 1280px) {
            body.single main .top .mv-wrap__img .mv01 .character {
              width: 21.71vw;
              right: -15.62vw;
              bottom: -9.76vw; } }
          @media only screen and (max-width: 767px) {
            body.single main .top .mv-wrap__img .mv01 .character {
              width: 105px;
              right: -25px;
              bottom: 20px; } }
        body.single main .top .mv-wrap__img .mv01 .img-wrap {
          overflow: hidden;
          width: 100%;
          height: 100%;
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -moz-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
        body.single main .top .mv-wrap__img .mv01 .img {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -moz-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
          body.single main .top .mv-wrap__img .mv01 .img:after {
            content: "";
            width: 100%;
            height: 100%;
            display: block;
            background: rgba(0, 0, 0, 0.3);
            position: absolute;
            top: 0;
            left: 0; }
        body.single main .top .mv-wrap__img .mv01 small {
          position: absolute;
          color: #000;
          font-size: 10px;
          font-size: 1rem;
          -webkit-transform: scale(0.8) rotate(-90deg);
          -moz-transform: scale(0.8) rotate(-90deg);
          -ms-transform: scale(0.8) rotate(-90deg);
          -o-transform: scale(0.8) rotate(-90deg);
          transform: scale(0.8) rotate(-90deg);
          left: -148px;
          bottom: 101px;
          font-family: "neue-haas-grotesk-text", sans-serif;
          font-feature-settings: normal;
          white-space: nowrap; }
          @media only screen and (max-width: 767px) {
            body.single main .top .mv-wrap__img .mv01 small {
              left: -142px;
              bottom: 75px;
              -webkit-transform: rotate(-90deg) scale(0.6);
              -moz-transform: rotate(-90deg) scale(0.6);
              -ms-transform: rotate(-90deg) scale(0.6);
              -o-transform: rotate(-90deg) scale(0.6);
              transform: rotate(-90deg) scale(0.6); } }
      body.single main .top .mv-wrap__img .mv02 {
        width: 57.14%;
        height: 78.12vw;
        position: absolute;
        right: 0;
        bottom: 0; }
        @media only screen and (max-width: 1280px) {
          body.single main .top .mv-wrap__img .mv02 {
            height: 78.12vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .top .mv-wrap__img .mv02 {
            width: 57%;
            height: 316px; } }
        body.single main .top .mv-wrap__img .mv02 .img {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 40%;
          left: 50%;
          -webkit-transform: translate(-50%, -50%);
          -moz-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
    @media only screen and (max-width: 767px) {
      body.single main .top .mv-wrap .sp-text {
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 2;
        margin: 58px 0 38px; } }
    @media only screen and (max-width: 767px) {
      body.single main .top .mv-wrap .author {
        font-size: 12px;
        font-size: 1.2rem;
        font-weight: 500;
        margin: 0;
        height: auto; } }

body.single main .store {
  padding: 120px 0 0; }
  @media only screen and (max-width: 767px) {
    body.single main .store {
      padding: 78px 0 0; } }
  body.single main .store .inner3 {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end; }
    body.single main .store .inner3:nth-of-type(2) .store__box {
      margin-top: 40px; }
  body.single main .store__box {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 43.75vw; }
    @media only screen and (max-width: 1280px) {
      body.single main .store__box {
        width: 43.75vw; } }
    @media only screen and (max-width: 767px) {
      body.single main .store__box {
        width: 100%; } }
    body.single main .store__box .text {
      width: 57.14%; }
      @media only screen and (max-width: 767px) {
        body.single main .store__box .text {
          width: calc(100% - 124px); } }
      body.single main .store__box .text a {
        text-decoration: underline;
        transition: 0.3s; }
        body.single main .store__box .text a:hover {
          opacity: 0.7; }
        body.single main .store__box .text a:after {
          content: "";
          width: 8px;
          height: 8px;
          display: inline-block;
          background: url(../images/common/arrow02.svg) center center/cover no-repeat;
          margin: -2px 12px 0 7px; }
      body.single main .store__box .text strong {
        display: inline;
        font-size: 20px;
        font-size: 2rem;
        line-height: 1.9;
        padding: 0 0 3px;
        border-bottom: 3px solid #FFC653;
        color: #0A0A0A;
        font-weight: 600; }
        @media only screen and (max-width: 1280px) {
          body.single main .store__box .text strong {
            font-size: 1.56vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .store__box .text strong {
            font-size: 15px;
            font-size: 1.5rem; } }
      body.single main .store__box .text p {
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: -0.03em;
        font-feature-settings: normal;
        line-height: 1.8;
        color: #222222;
        font-weight: 500;
        margin: 28px 0 0; }
        @media only screen and (max-width: 1280px) {
          body.single main .store__box .text p {
            font-size: 1.09vw;
            margin: 2.18vw 0 0; } }
        @media only screen and (max-width: 767px) {
          body.single main .store__box .text p {
            font-size: 12px;
            font-size: 1.2rem;
            line-height: 1.6666;
            margin: 18px 0 0; } }
    body.single main .store__box .img {
      height: 190px;
      width: 12.5vw; }
      @media only screen and (max-width: 1280px) {
        body.single main .store__box .img {
          width: 12.5vw;
          height: 14.84vw; } }
      @media only screen and (max-width: 767px) {
        body.single main .store__box .img {
          width: 94px;
          height: 112px; } }

body.single main .illust {
  padding: 130px 0 0; }
  @media only screen and (max-width: 767px) {
    body.single main .illust {
      padding: 80px 0 0; } }
  body.single main .illust .img-wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      body.single main .illust .img-wrap {
        display: block; } }
    body.single main .illust .img-wrap .img01 {
      width: 47%; }
      @media only screen and (max-width: 767px) {
        body.single main .illust .img-wrap .img01 {
          width: 100%; } }
    body.single main .illust .img-wrap .img02 {
      width: 50.9%;
      margin-top: -20px; }
      @media only screen and (max-width: 767px) {
        body.single main .illust .img-wrap .img02 {
          width: calc(100% +  26px);
          margin: 0 -12px 0 -14px;
          margin-top: 30px; } }

body.single main .content-wrap {
  margin: 65px 0 0; }
  @media only screen and (max-width: 767px) {
    body.single main .content-wrap {
      margin: 45px 0 0; } }
  body.single main .content-wrap .inner3 {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.single main .content-wrap .inner3 {
        -webkit-flex-direction: column;
        flex-direction: column; } }
    body.single main .content-wrap .inner3 .sidebar {
      width: 128px;
      height: 100vh; }
      @media only screen and (max-width: 1280px) {
        body.single main .content-wrap .inner3 .sidebar {
          width: 10vw; } }
      @media only screen and (max-width: 767px) {
        body.single main .content-wrap .inner3 .sidebar {
          order: 2;
          width: 100%;
          height: auto; } }
      body.single main .content-wrap .inner3 .sidebar__wrap {
        width: 128px;
        height: 100vh;
        position: relative;
        padding-top: 50px; }
        @media only screen and (max-width: 1280px) {
          body.single main .content-wrap .inner3 .sidebar__wrap {
            width: 10vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .content-wrap .inner3 .sidebar__wrap {
            width: 100%;
            height: auto;
            text-align: center;
            padding-top: 0; } }
        body.single main .content-wrap .inner3 .sidebar__wrap:before {
          content: "";
          width: 70px;
          height: 2px;
          display: block;
          background: #222222;
          margin: 0 0 18px;
          border-radius: 2px; }
          @media only screen and (max-width: 767px) {
            body.single main .content-wrap .inner3 .sidebar__wrap:before {
              width: 50px;
              margin: 0 auto 8px; } }
        body.single main .content-wrap .inner3 .sidebar__wrap.bottom2 {
          position: absolute;
          top: auto;
          bottom: 0; }
          @media only screen and (max-width: 767px) {
            body.single main .content-wrap .inner3 .sidebar__wrap.bottom2 {
              position: static; } }
        body.single main .content-wrap .inner3 .sidebar__wrap.fixed {
          position: fixed;
          top: 0; }
          @media only screen and (max-width: 767px) {
            body.single main .content-wrap .inner3 .sidebar__wrap.fixed {
              position: static; } }
      body.single main .content-wrap .inner3 .sidebar .share {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 1.5;
        font-family: "neue-haas-grotesk-text", sans-serif;
        font-weight: 400;
        letter-spacing: .05em; }
        @media only screen and (max-width: 1280px) {
          body.single main .content-wrap .inner3 .sidebar .share {
            font-size: 0.9375vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .content-wrap .inner3 .sidebar .share {
            font-size: 10px;
            font-size: 1rem; } }
      body.single main .content-wrap .inner3 .sidebar .sns-list {
        margin: 50px 0 0; }
        @media only screen and (max-width: 767px) {
          body.single main .content-wrap .inner3 .sidebar .sns-list {
            display: -webkit-flex;
            display: flex;
            -webkit-justify-content: center;
            justify-content: center;
            margin: 38px 0 0; } }
        body.single main .content-wrap .inner3 .sidebar .sns-list li {
          width: 24px;
          margin: 0 0 20px; }
          @media only screen and (max-width: 767px) {
            body.single main .content-wrap .inner3 .sidebar .sns-list li {
              margin: 0 25px; } }
          body.single main .content-wrap .inner3 .sidebar .sns-list li a {
            transition: .3s; }
            body.single main .content-wrap .inner3 .sidebar .sns-list li a:hover {
              opacity: 0.7; }
      body.single main .content-wrap .inner3 .sidebar .bottom {
        position: absolute;
        bottom: 150px; }
        body.single main .content-wrap .inner3 .sidebar .bottom__comment {
          margin: 0px 0 15px;
          position: relative;
          z-index: +2; }
          body.single main .content-wrap .inner3 .sidebar .bottom__comment:after {
            content: "";
            width: 100%;
            height: 100%;
            border-radius: 10px;
            background: #222222;
            display: block;
            position: absolute;
            top: 3px;
            left: 3px;
            z-index: -1; }
          body.single main .content-wrap .inner3 .sidebar .bottom__comment p {
            font-size: 10px;
            font-size: 1rem;
            line-height: 1.4;
            text-align: justify;
            background: #fff;
            border-radius: 10px;
            padding: 10px 10px;
            color: #000;
            font-weight: 500; }
        body.single main .content-wrap .inner3 .sidebar .bottom__illust {
          width: 89px;
          position: absolute;
          left: -110px;
          bottom: -10px; }
      body.single main .content-wrap .inner3 .sidebar .bottom-wrap {
        width: 128px; }
        @media only screen and (max-width: 1280px) {
          body.single main .content-wrap .inner3 .sidebar .bottom-wrap {
            width: 10vw; } }
        body.single main .content-wrap .inner3 .sidebar .bottom-wrap .bottom-slide {
          position: absolute;
          bottom: 0px;
          opacity: 0;
          transition: 1s;
          visibility: hidden;
          width: 100%;
          display: block; }
          body.single main .content-wrap .inner3 .sidebar .bottom-wrap .bottom-slide.show {
            opacity: 1;
            visibility: visible; }
      body.single main .content-wrap .inner3 .sidebar strong {
        font-size: 10px;
        font-size: 1rem;
        -webkit-transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        transform: scale(0.9);
        display: block;
        margin-left: -5px;
        color: #000;
        font-weight: 600; }
      body.single main .content-wrap .inner3 .sidebar small {
        font-size: 10px;
        font-size: 1rem;
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
        -o-transform: scale(0.7);
        transform: scale(0.7);
        display: block;
        white-space: nowrap;
        margin-left: -20px;
        margin-top: 5px;
        color: #000;
        font-weight: 500; }
      body.single main .content-wrap .inner3 .sidebar em {
        font-size: 11px;
        font-size: 1.1rem;
        font-weight: 600;
        margin: 18px 0 0;
        display: block; }
        body.single main .content-wrap .inner3 .sidebar em:after {
          content: "";
          width: 10px;
          height: 5px;
          display: inline-block;
          margin-left: 8px;
          position: relative;
          top: -2px;
          background: url(../images/common/arrow_short.svg) center center/cover no-repeat; }
    body.single main .content-wrap .inner3 .content {
      width: calc(100% - 154px);
      padding-left: 109px;
      padding-top: 10vw; }
      @media only screen and (max-width: 1280px) {
        body.single main .content-wrap .inner3 .content {
          width: 56.25vw;
          width: calc(100% - 10vw);
          padding-left: 8.51vw; } }
      @media only screen and (max-width: 767px) {
        body.single main .content-wrap .inner3 .content {
          order: 1;
          width: 100%;
          padding: 0; } }
      body.single main .content-wrap .inner3 .content .manga-nav-wrap {
        position: relative;
        width: 100%;
        height: 12px;
        margin: 45px 0 0; }
      body.single main .content-wrap .inner3 .content .manga-nav {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        display: inline-block;
        width: auto;
        font-family: "neue-haas-grotesk-text", sans-serif;
        font-size: 12px;
        font-size: 1.2rem;
        font-weight: 500; }
      body.single main .content-wrap .inner3 .content #manga-arrows .slick-prev {
        left: 0;
        font-size: 12px;
        font-size: 1.2rem;
        font-weight: 700;
        width: auto;
        color: #000; }
        body.single main .content-wrap .inner3 .content #manga-arrows .slick-prev:before {
          content: "";
          width: 10px;
          height: 5px;
          display: inline-block;
          background: url(../images/common/arrow_short.svg) center center/cover no-repeat;
          -webkit-transform: rotate(180deg);
          -moz-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
          -o-transform: rotate(180deg);
          transform: rotate(180deg);
          margin-right: 10px;
          position: relative;
          top: -2px; }
      body.single main .content-wrap .inner3 .content #manga-arrows .slick-next {
        padding: 0;
        right: 0;
        font-size: 12px;
        font-size: 1.2rem;
        font-weight: 700;
        width: auto;
        color: #000; }
        body.single main .content-wrap .inner3 .content #manga-arrows .slick-next:before {
          content: none; }
        body.single main .content-wrap .inner3 .content #manga-arrows .slick-next:after {
          content: "";
          width: 10px;
          height: 5px;
          display: inline-block;
          background: url(../images/common/arrow_short.svg) center center/cover no-repeat;
          margin-left: 10px;
          position: relative;
          top: -2px; }
      body.single main .content-wrap .inner3 .content .manga-img {
        margin: 0 0 10vw; }
        @media only screen and (max-width: 1280px) {
          body.single main .content-wrap .inner3 .content .manga-img {
            margin: 0 0 10vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .content-wrap .inner3 .content .manga-img {
            margin: 0 0 70px; } }
        body.single main .content-wrap .inner3 .content .manga-img img {
          width: 100%; }
        body.single main .content-wrap .inner3 .content .manga-img__nav {
          display: -webkit-flex;
          display: flex;
          -webkit-justify-content: space-between;
          justify-content: space-between;
          width: 350px;
          margin: 20px auto 0;
          height: 12px;
          position: relative; }
          @media only screen and (max-width: 767px) {
            body.single main .content-wrap .inner3 .content .manga-img__nav {
              width: 250px;
              margin: 20px auto 0; } }
          body.single main .content-wrap .inner3 .content .manga-img__nav a {
            font-size: 12px;
            font-size: 1.2rem;
            font-weight: 700; }
          body.single main .content-wrap .inner3 .content .manga-img__nav .total {
            font-size: 12px;
            font-size: 1.2rem;
            font-family: "neue-haas-grotesk-text", sans-serif;
            font-weight: 500;
            position: absolute;
            left: 50%;
            -webkit-transform: translate(-50%, 0);
            -moz-transform: translate(-50%, 0);
            -ms-transform: translate(-50%, 0);
            -o-transform: translate(-50%, 0);
            transform: translate(-50%, 0); }
          body.single main .content-wrap .inner3 .content .manga-img__nav .prev-arrow {
            left: 0;
            position: absolute; }
            body.single main .content-wrap .inner3 .content .manga-img__nav .prev-arrow:before {
              content: "";
              width: 10px;
              height: 5px;
              display: inline-block;
              background: url(../images/common/arrow_short.svg) center center/cover no-repeat;
              -webkit-transform: rotate(180deg);
              -moz-transform: rotate(180deg);
              -ms-transform: rotate(180deg);
              -o-transform: rotate(180deg);
              transform: rotate(180deg);
              margin-right: 10px;
              position: relative;
              top: -2px; }
          body.single main .content-wrap .inner3 .content .manga-img__nav .next-arrow {
            padding: 0;
            right: 0;
            position: absolute; }
            body.single main .content-wrap .inner3 .content .manga-img__nav .next-arrow:after {
              content: "";
              width: 10px;
              height: 5px;
              display: inline-block;
              background: url(../images/common/arrow_short.svg) center center/cover no-repeat;
              margin-left: 10px;
              position: relative;
              top: -2px; }
      body.single main .content-wrap .inner3 .content h2 {
        font-size: 36px;
        font-size: 3.6rem;
        line-height: 1.3333;
        margin: 0 0 40px;
        position: relative;
        color: #0A0A0A;
        font-weight: 600; }
        @media only screen and (max-width: 1280px) {
          body.single main .content-wrap .inner3 .content h2 {
            font-size: 2.81vw;
            margin: 0 0 3.125vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .content-wrap .inner3 .content h2 {
            font-size: 26px;
            font-size: 2.6rem;
            line-height: 1.3;
            padding-left: 20px;
            margin: 0 0 26px; } }
        body.single main .content-wrap .inner3 .content h2:before {
          content: "";
          width: 26px;
          height: 4px;
          display: block;
          background: #FFC653;
          position: absolute;
          top: 18px;
          left: -50px;
          border-radius: 4px; }
          @media only screen and (max-width: 1280px) {
            body.single main .content-wrap .inner3 .content h2:before {
              width: 2vw;
              top: 1.4vw;
              left: -3.9vw; } }
          @media only screen and (max-width: 767px) {
            body.single main .content-wrap .inner3 .content h2:before {
              width: 16px;
              height: 3px;
              top: 15px;
              left: -8px; } }
      body.single main .content-wrap .inner3 .content h3 {
        font-size: 26px;
        font-size: 2.6rem;
        line-height: 1.46;
        padding-left: 37px;
        font-weight: 600;
        margin: 0 0 45px;
        position: relative;
        color: #0A0A0A; }
        @media only screen and (max-width: 1280px) {
          body.single main .content-wrap .inner3 .content h3 {
            font-size: 2vw;
            padding-left: 2.89vw;
            margin: 0 0 3.51vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .content-wrap .inner3 .content h3 {
            font-size: 20px;
            font-size: 2rem;
            line-height: 1.5;
            padding-left: 30px;
            margin: 0 0 26px; } }
        body.single main .content-wrap .inner3 .content h3:before {
          content: "";
          width: 4px;
          height: 100%;
          display: block;
          background: #FFC653;
          position: absolute;
          left: 0;
          top: 0;
          border-radius: 4px; }
      body.single main .content-wrap .inner3 .content h4 {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 1.44;
        color: #0A0A0A;
        font-weight: 600; }
        @media only screen and (max-width: 1280px) {
          body.single main .content-wrap .inner3 .content h4 {
            font-size: 1.4vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .content-wrap .inner3 .content h4 {
            font-size: 16px;
            font-size: 1.6rem;
            line-height: 1.375; } }
        body.single main .content-wrap .inner3 .content h4:after {
          content: "";
          width: 30px;
          height: 3px;
          display: block;
          background: #FFC653;
          margin: 16px 0 16px;
          border-radius: 3px; }
      body.single main .content-wrap .inner3 .content del {
        text-decoration: line-through; }
      body.single main .content-wrap .inner3 .content p {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 2;
        font-weight: 500;
        margin: 0 0 2em;
        color: #222222; }
        body.single main .content-wrap .inner3 .content p:last-of-type {
          margin: 0 0 6vw; }
          @media only screen and (max-width: 1280px) {
            body.single main .content-wrap .inner3 .content p:last-of-type {
              margin: 0 0 6vw; } }
          @media only screen and (max-width: 767px) {
            body.single main .content-wrap .inner3 .content p:last-of-type {
              margin: 0 0 58px; } }
        @media only screen and (max-width: 1280px) {
          body.single main .content-wrap .inner3 .content p {
            font-size: 1.25vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .content-wrap .inner3 .content p {
            font-size: 15px;
            font-size: 1.5rem; } }
        body.single main .content-wrap .inner3 .content p a {
          text-decoration: underline;
          transition: 0.3s; }
          body.single main .content-wrap .inner3 .content p a:hover {
            opacity: 0.7; }
          body.single main .content-wrap .inner3 .content p a:after {
            content: "";
            width: 8px;
            height: 8px;
            display: inline-block;
            background: url(../images/common/arrow02.svg) center center/cover no-repeat;
            margin: -2px 12px 0 7px; }
        body.single main .content-wrap .inner3 .content p small {
          font-size: 10px;
          font-size: 1rem;
          font-weight: 500; }
      body.single main .content-wrap .inner3 .content ul li {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 2;
        margin: 0 0 20px;
        color: #222222;
        font-weight: 500; }
        @media only screen and (max-width: 1280px) {
          body.single main .content-wrap .inner3 .content ul li {
            font-size: 1.25vw;
            margin: 0 0 1.56vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .content-wrap .inner3 .content ul li {
            font-size: 15px;
            font-size: 1.5rem; } }
        body.single main .content-wrap .inner3 .content ul li:last-of-type {
          margin: 0 0 0; }
      body.single main .content-wrap .inner3 .content strong {
        font-weight: bold;
        color: #0A0A0A;
        font-weight: 600; }
      body.single main .content-wrap .inner3 .content em {
        font-size: 10px;
        font-size: 1rem;
        line-height: 1.6;
        display: block;
        margin: 20px 0 10px;
        color: #222222;
        font-weight: 500; }
        @media only screen and (max-width: 1280px) {
          body.single main .content-wrap .inner3 .content em {
            margin: 1.56vw 0 0.78vw; } }
      body.single main .content-wrap .inner3 .content blockquote {
        font-size: 28px;
        font-size: 2.8rem;
        line-height: 1.428;
        text-align: justify;
        padding: 0 80px;
        position: relative;
        margin: 100px 0 95px;
        color: #585858;
        font-weight: 600; }
        @media only screen and (max-width: 1280px) {
          body.single main .content-wrap .inner3 .content blockquote {
            font-size: 2.18vw;
            padding: 0 6.25vw;
            margin: 7.8vw 0 7.42vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .content-wrap .inner3 .content blockquote {
            font-size: 20px;
            font-size: 2rem;
            line-height: 1.5;
            margin: 70px 0 58px;
            padding: 0 0 0 54px; } }
        body.single main .content-wrap .inner3 .content blockquote:before {
          content: "";
          width: 34px;
          height: 28px;
          display: inline-block;
          background: url(../images/common/ex.svg) center center/cover no-repeat;
          position: absolute;
          top: -4px;
          left: 0; }
          @media only screen and (max-width: 1280px) {
            body.single main .content-wrap .inner3 .content blockquote:before {
              width: 2.656vw;
              height: 2.187vw;
              top: -0.3vw; } }
          @media only screen and (max-width: 767px) {
            body.single main .content-wrap .inner3 .content blockquote:before {
              width: 30px;
              height: 25px; } }
        body.single main .content-wrap .inner3 .content blockquote p {
          font-size: 28px;
          font-size: 2.8rem;
          line-height: 1.428;
          color: #585858;
          font-weight: 500; }
          @media only screen and (max-width: 1280px) {
            body.single main .content-wrap .inner3 .content blockquote p {
              font-size: 2.18vw; } }
          @media only screen and (max-width: 767px) {
            body.single main .content-wrap .inner3 .content blockquote p {
              font-size: 20px;
              font-size: 2rem;
              line-height: 1.5; } }
      body.single main .content-wrap .inner3 .content .pink {
        color: #F39CA5; }
      body.single main .content-wrap .inner3 .content .blue {
        color: #4D76A4; }
      body.single main .content-wrap .inner3 .content .yel {
        color: #FFC653; }
      body.single main .content-wrap .inner3 .content figure figcaption {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 1.6666;
        margin: 16px 0 0;
        font-weight: 500; }
        @media only screen and (max-width: 1280px) {
          body.single main .content-wrap .inner3 .content figure figcaption {
            font-size: 0.9375vw;
            margin: 1.25vw 0 0; } }
        @media only screen and (max-width: 767px) {
          body.single main .content-wrap .inner3 .content figure figcaption {
            font-size: 10px;
            font-size: 1rem;
            margin: 16px 0 0; } }
      body.single main .content-wrap .inner3 .content .img01 {
        margin: 0 0 6vw; }
        @media only screen and (max-width: 1280px) {
          body.single main .content-wrap .inner3 .content .img01 {
            margin: 0 0 6vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .content-wrap .inner3 .content .img01 {
            margin: 0 0 70px; } }
      body.single main .content-wrap .inner3 .content .img-text {
        margin: 0 0 6vw;
        clear: both; }
        @media only screen and (max-width: 1280px) {
          body.single main .content-wrap .inner3 .content .img-text {
            margin: 0 0 6vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .content-wrap .inner3 .content .img-text {
            display: -webkit-flex;
            display: flex;
            -webkit-flex-direction: column;
            flex-direction: column;
            margin: 0 0 22px; } }
        body.single main .content-wrap .inner3 .content .img-text figure {
          width: 38.888%; }
          @media only screen and (max-width: 767px) {
            body.single main .content-wrap .inner3 .content .img-text figure {
              width: 100%;
              order: 2;
              padding: 0 20px; } }
        @media only screen and (max-width: 767px) {
          body.single main .content-wrap .inner3 .content .img-text h3 {
            order: 1; } }
        @media only screen and (max-width: 767px) {
          body.single main .content-wrap .inner3 .content .img-text p {
            order: 3; } }
        body.single main .content-wrap .inner3 .content .img-text.left figure {
          float: left;
          margin: 0 80px 65px 0; }
          @media only screen and (max-width: 1280px) {
            body.single main .content-wrap .inner3 .content .img-text.left figure {
              margin: 0 6.25vw 5vw 0; } }
          @media only screen and (max-width: 767px) {
            body.single main .content-wrap .inner3 .content .img-text.left figure {
              float: none;
              margin: 0 auto 40px; } }
        @media only screen and (min-width: 768px) {
          body.single main .content-wrap .inner3 .content .img-text.left h3 {
            border: none;
            position: relative;
            padding-left: calc(50% + 37px);
            font-weight: 600; }
            body.single main .content-wrap .inner3 .content .img-text.left h3:before {
              content: "";
              width: 3px;
              height: 100%;
              display: inline-block;
              background: #FFC653;
              margin-right: 10px;
              position: absolute;
              top: 0;
              left: 50%;
              border-radius: 3px; } }
        body.single main .content-wrap .inner3 .content .img-text.right figure {
          float: right;
          margin: 0 0px 65px 80px; }
          @media only screen and (max-width: 1280px) {
            body.single main .content-wrap .inner3 .content .img-text.right figure {
              margin: 0 0 5vw 6.25vw; } }
          @media only screen and (max-width: 767px) {
            body.single main .content-wrap .inner3 .content .img-text.right figure {
              float: none;
              margin: 0 auto 40px; } }
      body.single main .content-wrap .inner3 .content .img-text02 {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        margin: 0 0 6vw; }
        @media only screen and (max-width: 767px) {
          body.single main .content-wrap .inner3 .content .img-text02 {
            display: block;
            margin: 0 0 22px; } }
        body.single main .content-wrap .inner3 .content .img-text02 .img-wrap {
          width: 38.888%; }
          @media only screen and (max-width: 767px) {
            body.single main .content-wrap .inner3 .content .img-text02 .img-wrap {
              width: 100%;
              padding: 0 20px;
              margin: 0 0 40px; } }
          body.single main .content-wrap .inner3 .content .img-text02 .img-wrap figure {
            margin: 0 0 58px; }
            @media only screen and (max-width: 1280px) {
              body.single main .content-wrap .inner3 .content .img-text02 .img-wrap figure {
                margin: 0 0 4.53vw; } }
            @media only screen and (max-width: 767px) {
              body.single main .content-wrap .inner3 .content .img-text02 .img-wrap figure {
                margin: 0 0 30px; } }
            body.single main .content-wrap .inner3 .content .img-text02 .img-wrap figure:last-of-type {
              margin: 0 0 0; }
        body.single main .content-wrap .inner3 .content .img-text02 .text {
          width: 50%; }
          @media only screen and (max-width: 767px) {
            body.single main .content-wrap .inner3 .content .img-text02 .text {
              width: 100%; } }
          @media only screen and (min-width: 768px) {
            body.single main .content-wrap .inner3 .content .img-text02 .text p:last-of-type {
              margin: 0 0 0; } }
      body.single main .content-wrap .inner3 .content .movie-wrap {
        margin: 0 0 6vw; }
        @media only screen and (max-width: 1280px) {
          body.single main .content-wrap .inner3 .content .movie-wrap {
            margin: 0 0 6vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .content-wrap .inner3 .content .movie-wrap {
            margin: 0 0 80px; } }
        body.single main .content-wrap .inner3 .content .movie-wrap figure .movie {
          height: 31.64vw; }
          @media only screen and (max-width: 1280px) {
            body.single main .content-wrap .inner3 .content .movie-wrap figure .movie {
              height: 31.64vw; } }
          @media only screen and (max-width: 767px) {
            body.single main .content-wrap .inner3 .content .movie-wrap figure .movie {
              height: 200px; } }
          body.single main .content-wrap .inner3 .content .movie-wrap figure .movie iframe {
            width: 100% !important;
            height: 100% !important; }
      body.single main .content-wrap .inner3 .content .movie-wrap02 {
        margin: 0 0 6vw;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between; }
        @media only screen and (max-width: 1280px) {
          body.single main .content-wrap .inner3 .content .movie-wrap02 {
            margin: 0 0 6vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .content-wrap .inner3 .content .movie-wrap02 {
            display: block;
            padding: 0 20px;
            margin: 0 0 100px; } }
        body.single main .content-wrap .inner3 .content .movie-wrap02 figure {
          width: 44.444%; }
          @media only screen and (max-width: 767px) {
            body.single main .content-wrap .inner3 .content .movie-wrap02 figure {
              width: 100%;
              margin: 0 0 30px; } }
          body.single main .content-wrap .inner3 .content .movie-wrap02 figure .movie {
            height: 14vw; }
            @media only screen and (max-width: 1280px) {
              body.single main .content-wrap .inner3 .content .movie-wrap02 figure .movie {
                height: 14vw; } }
            @media only screen and (max-width: 767px) {
              body.single main .content-wrap .inner3 .content .movie-wrap02 figure .movie {
                height: 176px; } }
            body.single main .content-wrap .inner3 .content .movie-wrap02 figure .movie iframe {
              width: 100% !important;
              height: 100% !important; }
      body.single main .content-wrap .inner3 .content .border {
        height: 1px;
        background: #D6D6D6;
        margin: 120px 0 120px; }
        @media only screen and (max-width: 1280px) {
          body.single main .content-wrap .inner3 .content .border {
            margin: 9.375vw 0; } }
        @media only screen and (max-width: 767px) {
          body.single main .content-wrap .inner3 .content .border {
            margin: 100px 0 100px; } }
      body.single main .content-wrap .inner3 .content .map-wrap {
        margin: 0 0 6vw; }
        @media only screen and (max-width: 1280px) {
          body.single main .content-wrap .inner3 .content .map-wrap {
            margin: 0 0 6vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .content-wrap .inner3 .content .map-wrap {
            margin: 0 0 80px; } }
        body.single main .content-wrap .inner3 .content .map-wrap .map {
          height: 400px; }
          @media only screen and (max-width: 1280px) {
            body.single main .content-wrap .inner3 .content .map-wrap .map {
              height: 31.25vw; } }
          @media only screen and (max-width: 767px) {
            body.single main .content-wrap .inner3 .content .map-wrap .map {
              height: 200px; } }
        body.single main .content-wrap .inner3 .content .map-wrap a {
          display: inline-block;
          transition: .3s; }
          body.single main .content-wrap .inner3 .content .map-wrap a:hover {
            opacity: 0.7; }
          body.single main .content-wrap .inner3 .content .map-wrap a span {
            display: inline-block;
            text-decoration: underline;
            font-size: 12px;
            font-size: 1.2rem;
            margin: 18px 0 0; }
            @media only screen and (max-width: 1280px) {
              body.single main .content-wrap .inner3 .content .map-wrap a span {
                font-size: 0.9375vw;
                margin: 1.4vw 0 0; } }
            @media only screen and (max-width: 767px) {
              body.single main .content-wrap .inner3 .content .map-wrap a span {
                font-size: 11px;
                font-size: 1.1rem;
                margin: 15px 0 0; } }
            body.single main .content-wrap .inner3 .content .map-wrap a span:after {
              content: "";
              width: 10px;
              height: 10px;
              display: inline-block;
              background: url(../images/common/arrow02.svg) center center/cover no-repeat;
              margin-left: 10px; }
              @media only screen and (max-width: 767px) {
                body.single main .content-wrap .inner3 .content .map-wrap a span:after {
                  width: 8px;
                  height: 8px;
                  margin-left: 8px;
                  margin-top: 2px; } }
      body.single main .content-wrap .inner3 .content .text01 {
        margin: 0 0 6vw; }
        @media only screen and (max-width: 1280px) {
          body.single main .content-wrap .inner3 .content .text01 {
            margin: 0 0 6vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .content-wrap .inner3 .content .text01 {
            margin: 0 0 80px; } }
      body.single main .content-wrap .inner3 .content .text02 {
        background: #EEEEEE;
        padding: 90px 80px 90px;
        margin: 0 0 100px; }
        @media only screen and (max-width: 1280px) {
          body.single main .content-wrap .inner3 .content .text02 {
            padding: 7vw 6.25vw;
            margin: 0 0 7.81vw; } }
        @media only screen and (max-width: 767px) {
          body.single main .content-wrap .inner3 .content .text02 {
            padding: 58px 30px 60px;
            margin: 0 0 80px; } }
        body.single main .content-wrap .inner3 .content .text02 h2 {
          padding-left: 46px;
          margin: 0 0 30px;
          font-size: 26px;
          font-size: 2.6rem;
          line-height: 1.38;
          font-weight: 600; }
          @media only screen and (max-width: 1280px) {
            body.single main .content-wrap .inner3 .content .text02 h2 {
              padding-left: 3.59vw;
              margin: 0 0 2.34vw;
              font-size: 2vw; } }
          @media only screen and (max-width: 767px) {
            body.single main .content-wrap .inner3 .content .text02 h2 {
              padding-left: 20px;
              font-size: 20px;
              font-size: 2rem;
              line-height: 1.4;
              margin: 0 0 13px; } }
          body.single main .content-wrap .inner3 .content .text02 h2:before {
            left: 0;
            width: 20px; }
            @media only screen and (max-width: 1280px) {
              body.single main .content-wrap .inner3 .content .text02 h2:before {
                width: 1.56vw; } }
            @media only screen and (max-width: 767px) {
              body.single main .content-wrap .inner3 .content .text02 h2:before {
                width: 12px;
                left: -5px;
                top: 12px; } }
        body.single main .content-wrap .inner3 .content .text02 h3 {
          font-size: 20px;
          font-size: 2rem;
          padding-left: 26px;
          margin: 0 0 25px;
          font-weight: 600; }
          @media only screen and (max-width: 1280px) {
            body.single main .content-wrap .inner3 .content .text02 h3 {
              font-size: 1.56vw;
              padding-left: 2vw;
              margin: 0 0 1.95vw; } }
          @media only screen and (max-width: 767px) {
            body.single main .content-wrap .inner3 .content .text02 h3 {
              font-size: 18px;
              font-size: 1.8rem;
              padding-left: 25px; } }
        body.single main .content-wrap .inner3 .content .text02 h4 {
          font-size: 16px;
          font-size: 1.6rem;
          font-weight: 600; }
          @media only screen and (max-width: 1280px) {
            body.single main .content-wrap .inner3 .content .text02 h4 {
              font-size: 1.25vw; } }
          @media only screen and (max-width: 767px) {
            body.single main .content-wrap .inner3 .content .text02 h4 {
              font-size: 15px;
              font-size: 1.5rem; } }
        body.single main .content-wrap .inner3 .content .text02 p {
          margin: 0 0 65px;
          font-size: 15px;
          font-size: 1.5rem;
          line-height: 1.86666;
          font-weight: 500; }
          @media only screen and (max-width: 1280px) {
            body.single main .content-wrap .inner3 .content .text02 p {
              margin: 0 0 5vw;
              font-size: 1.17vw; } }
          @media only screen and (max-width: 767px) {
            body.single main .content-wrap .inner3 .content .text02 p {
              margin: 0 0 48px;
              font-size: 14px;
              font-size: 1.4rem; } }
          body.single main .content-wrap .inner3 .content .text02 p em {
            margin-top: 20px; }
            @media only screen and (max-width: 1280px) {
              body.single main .content-wrap .inner3 .content .text02 p em {
                margin-top: 1.56vw; } }
            @media only screen and (max-width: 767px) {
              body.single main .content-wrap .inner3 .content .text02 p em {
                margin-top: 20px; } }
          body.single main .content-wrap .inner3 .content .text02 p:last-of-type {
            margin: 0 0 0; }
      body.single main .content-wrap .inner3 .content .link ul {
        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) {
          body.single main .content-wrap .inner3 .content .link ul {
            -webkit-flex-direction: column;
            flex-direction: column;
            -webkit-align-items: center;
            align-items: center; } }
        body.single main .content-wrap .inner3 .content .link ul li {
          max-width: 47.77%;
          margin: 0 0 30px; }
          @media only screen and (max-width: 767px) {
            body.single main .content-wrap .inner3 .content .link ul li {
              max-width: 100%;
              margin: 0 0 16px; } }
          body.single main .content-wrap .inner3 .content .link ul li a {
            display: -webkit-flex;
            display: flex;
            -webkit-align-items: center;
            align-items: center;
            border-radius: 5px;
            color: #fff;
            background: #222222;
            padding: 18px 25px;
            line-height: 1.5;
            font-size: 12px;
            font-size: 1.2rem;
            font-weight: 600; }
            @media only screen and (max-width: 1280px) {
              body.single main .content-wrap .inner3 .content .link ul li a {
                padding: 1.4vw 1.95vw;
                font-size: 0.9375vw; } }
            @media only screen and (max-width: 767px) {
              body.single main .content-wrap .inner3 .content .link ul li a {
                padding: 15px 20px;
                font-size: 12px;
                font-size: 1.2rem; } }
            body.single main .content-wrap .inner3 .content .link ul li a i {
              display: block;
              width: 10px;
              height: 5px;
              position: relative;
              margin-left: 33px; }
              body.single main .content-wrap .inner3 .content .link ul li a i:before {
                content: "";
                display: block;
                width: 10px;
                height: 5px;
                background: url(../images/common/arrow_wht.svg) center center/cover no-repeat;
                position: absolute;
                top: 0;
                left: 0; }

body.single main .illust02 {
  padding: 170px 0 0; }
  @media only screen and (max-width: 767px) {
    body.single main .illust02 {
      padding: 100px 0 0; } }

body.single main .next {
  padding: 200px 0 0; }
  @media only screen and (max-width: 767px) {
    body.single main .next {
      padding: 120px 0 0; } }
  body.single main .next__content a {
    display: block;
    position: relative;
    z-index: 1; }
    body.single main .next__content a:before {
      content: "";
      width: 0;
      height: 3px;
      display: block;
      background: #000;
      position: absolute;
      left: 0;
      bottom: 0;
      transition: .8s; }
    body.single main .next__content a:after {
      content: "";
      width: 100%;
      height: 3px;
      display: block;
      background: #000;
      position: absolute;
      left: 0;
      bottom: 0;
      transition: .8s;
      transition-delay: .8s; }
    body.single main .next__content a.is-active {
      z-index: 2; }
      body.single main .next__content a.is-active .text {
        -webkit-transform: translate(20px, 0);
        -moz-transform: translate(20px, 0);
        -ms-transform: translate(20px, 0);
        -o-transform: translate(20px, 0);
        transform: translate(20px, 0); }
      body.single main .next__content a.is-active:before {
        width: 100%;
        transition-delay: .8s; }
      body.single main .next__content a.is-active:after {
        left: auto;
        right: 0;
        width: 0;
        transition-delay: 0s; }
    body.single main .next__content a .text {
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      -webkit-align-items: center;
      align-items: center;
      padding: 0 0 33px;
      pointer-events: none;
      position: relative;
      z-index: 1;
      transition: transform 0.4s; }
      @media only screen and (max-width: 767px) {
        body.single main .next__content a .text {
          padding: 0 0 24px; } }
    body.single main .next__content a .text__illust {
      width: 43.2vw;
      padding: 0; }
      @media only screen and (max-width: 767px) {
        body.single main .next__content a .text__illust {
          width: 45vw; } }
      body.single main .next__content a .text__illust img {
        width: 100%; }
    body.single main .next__content a .text__detail strong {
      font-size: 110px;
      font-size: 11rem;
      font-family: "new-spirit-condensed", serif;
      letter-spacing: -0.01em;
      display: block; }
      @media only screen and (max-width: 1280px) {
        body.single main .next__content a .text__detail strong {
          font-size: 8.59vw; } }
      @media only screen and (max-width: 767px) {
        body.single main .next__content a .text__detail strong {
          font-size: 15.9vw; } }
      body.single main .next__content a .text__detail strong:after {
        content: "";
        width: 16px;
        height: 6px;
        display: inline-block;
        background: url(../images/common/arrow.svg) center center/cover no-repeat;
        margin: 0px 10px 0 30px;
        position: relative;
        top: -30px; }
        @media only screen and (max-width: 767px) {
          body.single main .next__content a .text__detail strong:after {
            margin: 0px 0px 0 20px;
            top: -14px; } }
    body.single main .next__content a .text__detail small {
      font-size: 12px;
      font-size: 1.2rem;
      font-weight: 600; }
      @media only screen and (max-width: 1280px) {
        body.single main .next__content a .text__detail small {
          font-size: 0.9375vw; } }
      @media only screen and (max-width: 767px) {
        body.single main .next__content a .text__detail small {
          font-size: 12px;
          font-size: 1.2rem;
          display: block;
          margin: 5px 0 0; } }
    body.single main .next__content a .image {
      max-width: 240px;
      max-height: 350px;
      opacity: 0;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      pointer-events: none; }
      body.single main .next__content a .image img {
        display: block;
        max-width: 100%;
        max-height: 100%; }

body.single main .recommends {
  padding: 200px 0 260px; }
  @media only screen and (max-width: 767px) {
    body.single main .recommends {
      padding: 120px 0 140px; } }
  @media only screen and (max-width: 767px) {
    body.single main .recommends .ttl03 span {
      letter-spacing: -0.03em; } }

body.single main .epilogue {
  padding: 100px 0; }
  body.single main .epilogue__img {
    margin: 80px 0 0; }

@media all and (-ms-high-contrast: none) {
  body.single main .top .mv-wrap span.is-active em {
    position: relative;
    top: 0.5vw; } }
