@charset "UTF-8";


/*!
 * 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: "heisei-kaku-gothic-std", sans-serif;
  background: #1A1818;
  color: #fff; }

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

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

a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: .3s; }
  a:hover {
    color: #fff; }
  a:active {
    color: #fff; }

.inner {
  padding: 0 7.29vw;
  max-width: 1920px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner {
      padding: 0 25px; } }

.sidebar {
  font-family: "DM Sans", sans-serif;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: .2em;
  display: -webkit-flex;
  display: flex;
  position: fixed;
  right: -124px;
  bottom: 205px;
  z-index: 97;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg); }
  .sidebar .summary {
    opacity: 0.5;
    transition: .3s;
    color: #fff; }
    .sidebar .summary.link-current {
      opacity: 1; }
  .sidebar ul {
    display: -webkit-flex;
    display: flex;
    margin-left: 23px; }
    .sidebar ul li {
      margin-right: 15px; }
      .sidebar ul li a {
        color: #fff;
        opacity: 0.5; }
        .sidebar ul li a.link-current {
          opacity: 1; }

.ttl02 {
  font-size: 36px;
  font-size: 3.6rem;
  letter-spacing: .025em;
  line-height: 1.5; }
  @media only screen and (max-width: 767px) {
    .ttl02 {
      font-size: 24px;
      font-size: 2.4rem; } }

.number {
  font-family: "DM Sans", sans-serif;
  font-size: 150px;
  font-size: 15rem;
  letter-spacing: .015em;
  display: inline-block; }
  @media only screen and (max-width: 767px) {
    .number {
      font-size: 80px;
      font-size: 8rem; } }

.ttl03 {
  font-family: "DM Sans", sans-serif;
  font-size: 36px;
  font-size: 3.6rem;
  letter-spacing: .03em;
  margin: 0 0 32px;
  display: block; }
  @media only screen and (max-width: 767px) {
    .ttl03 {
      font-size: 24px;
      font-size: 2.4rem;
      letter-spacing: .015em;
      line-height: 1.2;
      margin: 0 0 15px; } }

.role {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .2em;
  line-height: 1.6;
  text-transform: uppercase;
  display: block;
  margin: 0 0 10px; }
  @media only screen and (max-width: 767px) {
    .role {
      font-size: 14px;
      font-size: 1.4rem;
      margin: 0 0 4px; } }

p {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: .025em;
  line-height: 1.7777;
  text-align: justify; }
  @media only screen and (max-width: 767px) {
    p {
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.769; } }

/* 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 .wrap:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: .6s;
  z-index: 98;
  visibility: hidden; }

body.index .wrap.hide:before {
  opacity: 1;
  visibility: visible; }

body.index main {
  position: relative; }
  body.index main .mv {
    position: relative;
    padding: 19.27vw 0 0; }
    @media only screen and (max-width: 767px) {
      body.index main .mv {
        padding: 45px 0 0; } }
    body.index main .mv__text {
      height: 100vh;
      padding: 5.7vw 0 0;
      position: absolute;
      top: 0;
      left: 7.29vw;
      opacity: 0;
      transition: 0.8s;
      -webkit-transform: translate(0, 50px);
      -moz-transform: translate(0, 50px);
      -ms-transform: translate(0, 50px);
      -o-transform: translate(0, 50px);
      transform: translate(0, 50px); }
      body.index main .mv__text.is-active {
        opacity: 1;
        -webkit-transform: translate(0, 0px);
        -moz-transform: translate(0, 0px);
        -ms-transform: translate(0, 0px);
        -o-transform: translate(0, 0px);
        transform: translate(0, 0px); }
      @media only screen and (max-width: 767px) {
        body.index main .mv__text {
          position: static;
          padding: 0;
          height: auto; } }
      body.index main .mv__text h1 {
        font-size: 74px;
        font-size: 7.4rem;
        font-family: "DM Sans", sans-serif;
        text-transform: uppercase; }
        @media only screen and (max-width: 767px) {
          body.index main .mv__text h1 {
            font-size: 40px;
            font-size: 4rem;
            letter-spacing: .05em; } }
      body.index main .mv__text small {
        font-size: 30px;
        font-size: 3rem;
        letter-spacing: .05em;
        line-height: 1.325;
        display: block;
        margin: 20px 0 25px; }
        @media only screen and (max-width: 767px) {
          body.index main .mv__text small {
            font-size: 21px;
            font-size: 2.1rem;
            letter-spacing: .025em;
            line-height: 1.3;
            margin: 15px 0 20px; } }
      body.index main .mv__text ul {
        display: -webkit-flex;
        display: flex;
        font-family: "DM Sans", sans-serif; }
        body.index main .mv__text ul li {
          color: #fff;
          font-size: 15px;
          font-size: 1.5rem;
          letter-spacing: .2em;
          margin-right: 20px; }
          @media only screen and (max-width: 767px) {
            body.index main .mv__text ul li {
              font-size: 14px;
              font-size: 1.4rem;
              margin-right: 10px; } }
          body.index main .mv__text ul li a {
            color: rgba(255, 255, 255, 0.5); }
    body.index main .mv__img {
      width: 56.6666vw;
      height: 870px;
      margin-left: auto; }
      @media only screen and (max-width: 767px) {
        body.index main .mv__img {
          width: 100%;
          height: 433px;
          margin: 20px 0 0; } }
  body.index main .read {
    margin-top: -142px;
    position: relative;
    padding: 135px 0 490px; }
    @media only screen and (max-width: 767px) {
      body.index main .read {
        margin: 0;
        padding: 34px 0 145px; } }
    body.index main .read .box .img {
      width: 260px;
      height: 260px;
      margin: 0 0 56px; }
      @media only screen and (max-width: 767px) {
        body.index main .read .box .img {
          width: 200px;
          height: 200px;
          margin: 0 0 26px; } }
    body.index main .read .box .text {
      opacity: 0;
      transition: 0.8s;
      -webkit-transform: translate(0, 50px);
      -moz-transform: translate(0, 50px);
      -ms-transform: translate(0, 50px);
      -o-transform: translate(0, 50px);
      transform: translate(0, 50px); }
      body.index main .read .box .text.is-active {
        opacity: 1;
        -webkit-transform: translate(0, 0px);
        -moz-transform: translate(0, 0px);
        -ms-transform: translate(0, 0px);
        -o-transform: translate(0, 0px);
        transform: translate(0, 0px); }
      body.index main .read .box .text p {
        margin: 0 0 16px;
        font-size: 13px;
        font-size: 1.3rem;
        max-width: 414px; }
        @media only screen and (max-width: 767px) {
          body.index main .read .box .text p {
            margin: 0 0 25px; } }
      body.index main .read .box .text a {
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: .025em;
        font-family: "DM Sans", sans-serif; }
        @media only screen and (max-width: 767px) {
          body.index main .read .box .text a {
            font-size: 13px;
            font-size: 1.3rem; } }
    body.index main .read .box.left {
      width: 536px;
      margin-right: auto;
      margin-left: 21.3vw; }
      @media only screen and (max-width: 767px) {
        body.index main .read .box.left {
          width: 250px;
          margin-left: 0; } }
    body.index main .read .box.right {
      width: 674px;
      margin-left: auto;
      margin-top: 256px; }
      @media only screen and (max-width: 767px) {
        body.index main .read .box.right {
          width: 250px;
          margin-top: 120px; } }
      body.index main .read .box.right .text p {
        max-width: none; }
    body.index main .read .text-center {
      margin: 490px auto 0;
      max-width: 812px;
      opacity: 0;
      transition: 0.8s;
      -webkit-transform: translate(0, 50px);
      -moz-transform: translate(0, 50px);
      -ms-transform: translate(0, 50px);
      -o-transform: translate(0, 50px);
      transform: translate(0, 50px); }
      body.index main .read .text-center.is-active {
        opacity: 1;
        -webkit-transform: translate(0, 0px);
        -moz-transform: translate(0, 0px);
        -ms-transform: translate(0, 0px);
        -o-transform: translate(0, 0px);
        transform: translate(0, 0px); }
      @media only screen and (max-width: 767px) {
        body.index main .read .text-center {
          margin: 148px auto 0; } }
      body.index main .read .text-center p {
        font-size: 20px;
        font-size: 2rem;
        letter-spacing: .025em;
        line-height: 1.8;
        text-align: justify; }
        @media only screen and (max-width: 767px) {
          body.index main .read .text-center p {
            font-size: 17px;
            font-size: 1.7rem;
            line-height: 1.82; } }
  body.index main .section {
    margin: 0 0 410px; }
    @media only screen and (max-width: 767px) {
      body.index main .section {
        margin: 0 0 138px; } }
    body.index main .section .img-text {
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        body.index main .section .img-text {
          -webkit-flex-direction: column;
          flex-direction: column; } }
      body.index main .section .img-text .img {
        width: 45.8%; }
        @media only screen and (max-width: 767px) {
          body.index main .section .img-text .img {
            width: 100%; } }
        body.index main .section .img-text .img .img-img {
          padding-top: 66.6666%; }
      body.index main .section .img-text .text {
        width: 49.57%;
        padding-left: 7.29vw; }
        @media only screen and (max-width: 767px) {
          body.index main .section .img-text .text {
            width: 251px;
            padding-left: 0;
            margin-left: auto;
            margin-top: 30px; } }
        body.index main .section .img-text .text .number {
          opacity: 0;
          transition: 0.8s;
          -webkit-transform: translate(0, 50px);
          -moz-transform: translate(0, 50px);
          -ms-transform: translate(0, 50px);
          -o-transform: translate(0, 50px);
          transform: translate(0, 50px); }
          body.index main .section .img-text .text .number.is-active {
            opacity: 1;
            -webkit-transform: translate(0, 0px);
            -moz-transform: translate(0, 0px);
            -ms-transform: translate(0, 0px);
            -o-transform: translate(0, 0px);
            transform: translate(0, 0px); }
        body.index main .section .img-text .text .ttl02 {
          margin-left: -7.29vw;
          margin-bottom: 30px;
          opacity: 0;
          transition: 0.8s;
          -webkit-transform: translate(0, 50px);
          -moz-transform: translate(0, 50px);
          -ms-transform: translate(0, 50px);
          -o-transform: translate(0, 50px);
          transform: translate(0, 50px); }
          body.index main .section .img-text .text .ttl02.is-active {
            opacity: 1;
            -webkit-transform: translate(0, 0px);
            -moz-transform: translate(0, 0px);
            -ms-transform: translate(0, 0px);
            -o-transform: translate(0, 0px);
            transform: translate(0, 0px); }
          @media only screen and (max-width: 767px) {
            body.index main .section .img-text .text .ttl02 {
              margin-left: 0; } }
        body.index main .section .img-text .text p {
          font-size: 15px;
          font-size: 1.5rem;
          letter-spacing: .025em;
          line-height: 1.8;
          margin: 95px 0 0;
          max-width: 552px;
          opacity: 0;
          transition: 0.8s;
          -webkit-transform: translate(0, 50px);
          -moz-transform: translate(0, 50px);
          -ms-transform: translate(0, 50px);
          -o-transform: translate(0, 50px);
          transform: translate(0, 50px); }
          body.index main .section .img-text .text p.is-active {
            opacity: 1;
            -webkit-transform: translate(0, 0px);
            -moz-transform: translate(0, 0px);
            -ms-transform: translate(0, 0px);
            -o-transform: translate(0, 0px);
            transform: translate(0, 0px); }
          @media only screen and (max-width: 767px) {
            body.index main .section .img-text .text p {
              font-size: 15px;
              font-size: 1.5rem;
              line-height: 1.7;
              margin: 40px 0 0; } }
    body.index main .section .top {
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      align-items: center;
      margin: 0 0 70px; }
      @media only screen and (max-width: 767px) {
        body.index main .section .top {
          -webkit-flex-direction: column;
          flex-direction: column;
          -webkit-align-items: flex-start;
          align-items: flex-start; } }
      body.index main .section .top .number {
        margin-right: 50px;
        opacity: 0;
        transition: 0.8s;
        -webkit-transform: translate(0, 50px);
        -moz-transform: translate(0, 50px);
        -ms-transform: translate(0, 50px);
        -o-transform: translate(0, 50px);
        transform: translate(0, 50px); }
        body.index main .section .top .number.is-active {
          opacity: 1;
          -webkit-transform: translate(0, 0px);
          -moz-transform: translate(0, 0px);
          -ms-transform: translate(0, 0px);
          -o-transform: translate(0, 0px);
          transform: translate(0, 0px); }
        @media only screen and (max-width: 767px) {
          body.index main .section .top .number {
            order: 2;
            margin-top: 5px; } }
      body.index main .section .top .ttl02 {
        opacity: 0;
        transition: 0.8s;
        -webkit-transform: translate(0, 50px);
        -moz-transform: translate(0, 50px);
        -ms-transform: translate(0, 50px);
        -o-transform: translate(0, 50px);
        transform: translate(0, 50px); }
        body.index main .section .top .ttl02.is-active {
          opacity: 1;
          -webkit-transform: translate(0, 0px);
          -moz-transform: translate(0, 0px);
          -ms-transform: translate(0, 0px);
          -o-transform: translate(0, 0px);
          transform: translate(0, 0px); }
        @media only screen and (max-width: 767px) {
          body.index main .section .top .ttl02 {
            order: 1;
            width: 300px; } }
    body.index main .section .bottom {
      display: -webkit-flex;
      display: flex; }
      @media only screen and (max-width: 767px) {
        body.index main .section .bottom {
          display: block; } }
      body.index main .section .bottom .text {
        width: 41%;
        margin-right: 3.9vw;
        opacity: 0;
        transition: 0.8s;
        -webkit-transform: translate(0, 50px);
        -moz-transform: translate(0, 50px);
        -ms-transform: translate(0, 50px);
        -o-transform: translate(0, 50px);
        transform: translate(0, 50px); }
        body.index main .section .bottom .text.is-active {
          opacity: 1;
          -webkit-transform: translate(0, 0px);
          -moz-transform: translate(0, 0px);
          -ms-transform: translate(0, 0px);
          -o-transform: translate(0, 0px);
          transform: translate(0, 0px); }
        @media only screen and (max-width: 767px) {
          body.index main .section .bottom .text {
            width: 250px; } }
        body.index main .section .bottom .text p {
          max-width: 552px; }
          @media only screen and (max-width: 767px) {
            body.index main .section .bottom .text p span {
              display: block;
              text-align: left; } }
      body.index main .section .bottom .img {
        width: 41%; }
        @media only screen and (max-width: 767px) {
          body.index main .section .bottom .img {
            width: 100%;
            margin: 25px 0 0; } }
        body.index main .section .bottom .img .img-img {
          padding-top: 70.3%; }
        body.index main .section .bottom .img small {
          font-size: 15px;
          font-size: 1.5rem;
          letter-spacing: .025em;
          line-height: 1.8;
          margin-top: 15px;
          display: block; }
          @media only screen and (max-width: 767px) {
            body.index main .section .bottom .img small {
              font-size: 11px;
              font-size: 1.1rem;
              margin-top: 8px; } }
  body.index main .section03 .ttl02 {
    padding-left: 21.6vw;
    margin: 0 0 75px;
    opacity: 0;
    transition: 0.8s;
    -webkit-transform: translate(0, 50px);
    -moz-transform: translate(0, 50px);
    -ms-transform: translate(0, 50px);
    -o-transform: translate(0, 50px);
    transform: translate(0, 50px); }
    body.index main .section03 .ttl02.is-active {
      opacity: 1;
      -webkit-transform: translate(0, 0px);
      -moz-transform: translate(0, 0px);
      -ms-transform: translate(0, 0px);
      -o-transform: translate(0, 0px);
      transform: translate(0, 0px); }
    @media only screen and (max-width: 767px) {
      body.index main .section03 .ttl02 {
        padding-left: 25px;
        text-align: justify;
        margin: 0 0 5px; } }
  @media only screen and (max-width: 767px) {
    body.index main .section03 .number {
      padding-left: 25px; } }
  body.index main .section03 .img-text {
    -webkit-justify-content: flex-start;
    justify-content: flex-start; }
    @media only screen and (max-width: 767px) {
      body.index main .section03 .img-text {
        margin: 40px 0 0; } }
    body.index main .section03 .img-text .img {
      width: 37.33%;
      margin-right: 4vw; }
      @media only screen and (max-width: 767px) {
        body.index main .section03 .img-text .img {
          width: 275px; } }
      body.index main .section03 .img-text .img .img-img {
        padding-top: 66.72%;
        margin: 0 0 30px; }
    body.index main .section03 .img-text .text {
      width: 50.42%;
      padding: 0;
      opacity: 0;
      transition: 0.8s;
      -webkit-transform: translate(0, 50px);
      -moz-transform: translate(0, 50px);
      -ms-transform: translate(0, 50px);
      -o-transform: translate(0, 50px);
      transform: translate(0, 50px); }
      body.index main .section03 .img-text .text.is-active {
        opacity: 1;
        -webkit-transform: translate(0, 0px);
        -moz-transform: translate(0, 0px);
        -ms-transform: translate(0, 0px);
        -o-transform: translate(0, 0px);
        transform: translate(0, 0px); }
      @media only screen and (max-width: 767px) {
        body.index main .section03 .img-text .text {
          margin-top: 0;
          width: 100%; } }
      body.index main .section03 .img-text .text .number {
        margin-top: -55px; }
      body.index main .section03 .img-text .text p {
        max-width: 675px; }
        @media only screen and (max-width: 767px) {
          body.index main .section03 .img-text .text p {
            margin: 0;
            width: 250px; } }
        body.index main .section03 .img-text .text p.left {
          padding-right: 7.18vw; }
          @media only screen and (max-width: 767px) {
            body.index main .section03 .img-text .text p.left {
              padding-right: 0;
              margin-left: 25px; } }
        body.index main .section03 .img-text .text p.right {
          padding-left: 6.77vw; }
          @media only screen and (max-width: 767px) {
            body.index main .section03 .img-text .text p.right {
              padding-left: 0;
              margin-left: auto;
              margin-top: 48px; } }
  body.index main .section04 {
    position: relative; }
    @media only screen and (min-width: 768px) {
      body.index main .section04 .text-img {
        margin-left: 7.18vw; } }
    @media only screen and (max-width: 767px) {
      body.index main .section04 .text-img {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column; } }
    @media only screen and (max-width: 767px) {
      body.index main .section04 .text-img .text {
        order: 2;
        margin-top: 25px; } }
    body.index main .section04 .text-img .text .ttl02 {
      width: 49.45%;
      opacity: 0;
      transition: 0.8s;
      -webkit-transform: translate(0, 50px);
      -moz-transform: translate(0, 50px);
      -ms-transform: translate(0, 50px);
      -o-transform: translate(0, 50px);
      transform: translate(0, 50px); }
      body.index main .section04 .text-img .text .ttl02.is-active {
        opacity: 1;
        -webkit-transform: translate(0, 0px);
        -moz-transform: translate(0, 0px);
        -ms-transform: translate(0, 0px);
        -o-transform: translate(0, 0px);
        transform: translate(0, 0px); }
      @media only screen and (max-width: 767px) {
        body.index main .section04 .text-img .text .ttl02 {
          width: 267px;
          margin-bottom: 10px; } }
    body.index main .section04 .text-img .text .number {
      margin-left: 6.25vw;
      margin-top: 20px;
      opacity: 0;
      transition: 0.8s;
      -webkit-transform: translate(0, 50px);
      -moz-transform: translate(0, 50px);
      -ms-transform: translate(0, 50px);
      -o-transform: translate(0, 50px);
      transform: translate(0, 50px); }
      body.index main .section04 .text-img .text .number.is-active {
        opacity: 1;
        -webkit-transform: translate(0, 0px);
        -moz-transform: translate(0, 0px);
        -ms-transform: translate(0, 0px);
        -o-transform: translate(0, 0px);
        transform: translate(0, 0px); }
    body.index main .section04 .text-img .text .text-box {
      width: 57.9%;
      margin-left: 14vw;
      margin-top: -78px; }
      @media only screen and (max-width: 767px) {
        body.index main .section04 .text-img .text .text-box {
          margin-top: 35px;
          width: 100%;
          margin-left: 0; } }
      body.index main .section04 .text-img .text .text-box p {
        opacity: 0;
        transition: 0.8s;
        -webkit-transform: translate(0, 50px);
        -moz-transform: translate(0, 50px);
        -ms-transform: translate(0, 50px);
        -o-transform: translate(0, 50px);
        transform: translate(0, 50px); }
        body.index main .section04 .text-img .text .text-box p.is-active {
          opacity: 1;
          -webkit-transform: translate(0, 0px);
          -moz-transform: translate(0, 0px);
          -ms-transform: translate(0, 0px);
          -o-transform: translate(0, 0px);
          transform: translate(0, 0px); }
        @media only screen and (min-width: 768px) {
          body.index main .section04 .text-img .text .text-box p {
            max-width: 35.6vw; } }
        @media only screen and (max-width: 767px) {
          body.index main .section04 .text-img .text .text-box p {
            width: 250px; } }
        body.index main .section04 .text-img .text .text-box p:nth-of-type(1) {
          padding-right: 6.5vw;
          margin-bottom: 78px; }
          @media only screen and (max-width: 767px) {
            body.index main .section04 .text-img .text .text-box p:nth-of-type(1) {
              padding-right: 0;
              margin-bottom: 74px; } }
        body.index main .section04 .text-img .text .text-box p:nth-of-type(2) {
          padding-left: 6.5vw; }
          @media only screen and (max-width: 767px) {
            body.index main .section04 .text-img .text .text-box p:nth-of-type(2) {
              padding-left: 0;
              margin-left: 50px; } }
    body.index main .section04 .text-img .img {
      position: absolute;
      top: 0;
      right: 0;
      width: 39.166vw;
      height: 29vw; }
      @media only screen and (max-width: 767px) {
        body.index main .section04 .text-img .img {
          position: static;
          order: 1;
          width: 100%;
          height: 244px; } }
  body.index main .section05 {
    margin: 0 0 205px; }
    @media only screen and (max-width: 767px) {
      body.index main .section05 {
        margin: 0 0 80px; } }
    body.index main .section05 .img-text .img {
      width: 45.8%; }
      @media only screen and (max-width: 767px) {
        body.index main .section05 .img-text .img {
          width: 250px; } }
      body.index main .section05 .img-text .img .img-img {
        padding-top: 93.35%; }
    body.index main .section05 .img-text .text {
      width: 49.45%;
      padding-right: 7.18vw;
      padding-left: 0;
      opacity: 0;
      transition: 0.8s;
      -webkit-transform: translate(0, 50px);
      -moz-transform: translate(0, 50px);
      -ms-transform: translate(0, 50px);
      -o-transform: translate(0, 50px);
      transform: translate(0, 50px); }
      body.index main .section05 .img-text .text.is-active {
        opacity: 1;
        -webkit-transform: translate(0, 0px);
        -moz-transform: translate(0, 0px);
        -ms-transform: translate(0, 0px);
        -o-transform: translate(0, 0px);
        transform: translate(0, 0px); }
      @media only screen and (max-width: 767px) {
        body.index main .section05 .img-text .text {
          width: 250px;
          padding-right: 0; } }
      body.index main .section05 .img-text .text .ttl02 {
        margin-left: 0;
        margin-right: -7.18vw; }
        @media only screen and (max-width: 767px) {
          body.index main .section05 .img-text .text .ttl02 {
            text-align: justify;
            margin-right: 0; } }
    body.index main .section05 .img-center {
      width: 53.69vw;
      height: 35.78vw;
      margin: 205px auto 0; }
      @media only screen and (max-width: 767px) {
        body.index main .section05 .img-center {
          width: 100%;
          height: 216px;
          margin: 80px auto 0; } }
  body.index main .section06 {
    position: relative; }
    body.index main .section06 .ttl02 {
      opacity: 0;
      transition: 0.8s;
      -webkit-transform: translate(0, 50px);
      -moz-transform: translate(0, 50px);
      -ms-transform: translate(0, 50px);
      -o-transform: translate(0, 50px);
      transform: translate(0, 50px); }
      body.index main .section06 .ttl02.is-active {
        opacity: 1;
        -webkit-transform: translate(0, 0px);
        -moz-transform: translate(0, 0px);
        -ms-transform: translate(0, 0px);
        -o-transform: translate(0, 0px);
        transform: translate(0, 0px); }
    @media only screen and (min-width: 768px) {
      body.index main .section06 .text-img {
        margin-top: 40px; } }
    body.index main .section06 .text-img .text {
      width: 48.29%;
      padding-left: 7.13vw; }
      @media only screen and (max-width: 767px) {
        body.index main .section06 .text-img .text {
          padding-left: 0;
          width: 250px; } }
      body.index main .section06 .text-img .text .number {
        margin-bottom: 90px;
        opacity: 0;
        transition: 0.8s;
        -webkit-transform: translate(0, 50px);
        -moz-transform: translate(0, 50px);
        -ms-transform: translate(0, 50px);
        -o-transform: translate(0, 50px);
        transform: translate(0, 50px); }
        body.index main .section06 .text-img .text .number.is-active {
          opacity: 1;
          -webkit-transform: translate(0, 0px);
          -moz-transform: translate(0, 0px);
          -ms-transform: translate(0, 0px);
          -o-transform: translate(0, 0px);
          transform: translate(0, 0px); }
        @media only screen and (max-width: 767px) {
          body.index main .section06 .text-img .text .number {
            margin: 5px 0 35px; } }
      body.index main .section06 .text-img .text p {
        opacity: 0;
        transition: 0.8s;
        -webkit-transform: translate(0, 50px);
        -moz-transform: translate(0, 50px);
        -ms-transform: translate(0, 50px);
        -o-transform: translate(0, 50px);
        transform: translate(0, 50px); }
        body.index main .section06 .text-img .text p.is-active {
          opacity: 1;
          -webkit-transform: translate(0, 0px);
          -moz-transform: translate(0, 0px);
          -ms-transform: translate(0, 0px);
          -o-transform: translate(0, 0px);
          transform: translate(0, 0px); }
    body.index main .section06 .text-img .img {
      position: absolute;
      top: 275px;
      right: 0;
      width: 46.56vw; }
      @media only screen and (max-width: 767px) {
        body.index main .section06 .text-img .img {
          position: static;
          width: 100%; } }
      body.index main .section06 .text-img .img .img-img {
        height: 31vw; }
        @media only screen and (max-width: 767px) {
          body.index main .section06 .text-img .img .img-img {
            height: 217px;
            margin: 24px 0 0; } }

.bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0; }

#popup-btn {
  cursor: pointer;
  position: relative; }
  #popup-btn i {
    width: 3.28vw;
    position: absolute;
    top: 46%;
    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) {
      #popup-btn i {
        width: 30px;
        top: 50%; } }

.popup {
  position: fixed;
  width: 70%;
  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%);
  opacity: 0;
  transition: .6s;
  z-index: 99;
  visibility: hidden;
  max-width: 1344px; }
  @media only screen and (max-width: 767px) {
    .popup {
      width: 100%; } }
  .popup.is-active {
    opacity: 1;
    visibility: visible; }

body.index.en .wrap {
  font-family: "DM Sans", sans-serif; }
  body.index.en .wrap p {
    text-align: left; }
  body.index.en .wrap .mv__text h1 {
    margin: 0 0 45px; }
    @media only screen and (max-width: 767px) {
      body.index.en .wrap .mv__text h1 {
        margin: 0 0 25px; } }
  @media only screen and (max-width: 767px) {
    body.index.en .wrap p {
      text-align: left; } }
  body.index.en .wrap .read .text-center p {
    text-align: left; }
    @media only screen and (max-width: 767px) {
      body.index.en .wrap .read .text-center p {
        text-align: left; } }
  body.index.en .wrap .section03 .ttl02 {
    max-width: 690px;
    margin-left: 21.6vw;
    padding-left: 0; }
    @media only screen and (max-width: 767px) {
      body.index.en .wrap .section03 .ttl02 {
        text-align: left;
        letter-spacing: .005em;
        margin-left: 0; } }
  body.index.en .wrap .section05 .img-text .text .ttl02 {
    max-width: 674px; }
    @media only screen and (max-width: 767px) {
      body.index.en .wrap .section05 .img-text .text .ttl02 {
        text-align: left;
        letter-spacing: .005em;
        font-feature-settings: "palt";
        white-space: nowrap; } }

/*modify*/
*, *:before, *:after{
  -webkit-font-smoothing: auto;
}
html{
  -webkit-font-feature-settings: normal;
      -moz-font-feature-settings: normal;
      -ms-font-feature-settings: normal;
      -o-font-feature-settings: normal;
      font-feature-settings: normal;
  background: #fff;
}
body.index #wrap{
  color: #fff;
  font-family: "heisei-kaku-gothic-std", sans-serif;
  background: #1a1818
}
body.index #wrap a{
  color: rgba(255,255,255,.5);
}
body.index .sec01{
  background: #fff;
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
}
body.index #wrap .mv__text a.active{
  color: #fff;
  pointer-events: none;
}
.en-page body.index .wrap {
  font-family: "DM Sans", sans-serif !important; }
  .en-page body.index .wrap p {
    text-align: left; }
  .en-page body.index .wrap .mv__text h1 {
    margin: 0 0 45px; }
    @media only screen and (max-width: 767px) {
      .en-page body.index .wrap .mv__text h1 {
        margin: 0 0 25px; } }
  @media only screen and (max-width: 767px) {
    .en-page body.index .wrap p {
      text-align: left; } }
  .en-page body.index .wrap .read .text-center p {
    text-align: left; }
    @media only screen and (max-width: 767px) {
      .en-page body.index .wrap .read .text-center p {
        text-align: left; } }
  .en-page body.index .wrap .section03 .ttl02 {
    max-width: 690px;
    margin-left: 21.6vw;
    padding-left: 0; }
    @media only screen and (max-width: 767px) {
      .en-page body.index .wrap .section03 .ttl02 {
        text-align: left;
        letter-spacing: .005em;
        margin-left: 0; } }
  .en-page body.index .wrap .section05 .img-text .text .ttl02 {
    max-width: 674px; }
    @media only screen and (max-width: 767px) {
      .en-page body.index .wrap .section05 .img-text .text .ttl02 {
        text-align: left;
        letter-spacing: .005em;
        font-feature-settings: "palt";
        white-space: nowrap; } }
@media only screen and (max-width: 767px) {
  body.index .sec01{
    padding-bottom: 50px;
  }
  body.index #footer .footer_menu li{
    line-height: 25px;
  }
}
main section{
  position: relative;
}
body.letter.dgtl::before{
  display: block;
  content: '';
  width: 100%;
  height: 99px;
  background: #fff;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  body.letter.dgtl::before{
    height: 79px;
  }
}