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

@font-face {
  font-family: 'Plain';
  src: url("../fonts/Plain-Ultralight.otf") format("opentype");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: 'Plain';
  src: url("../fonts/Plain-Thin.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Plain';
  src: url("../fonts/Plain-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Plain';
  src: url("../fonts/Plain-Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Plain';
  src: url("../fonts/Plain-Bold.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@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: "Plain", "游ゴシック", YuGothic, sans-serif;
}

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

.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}

@media only screen and (max-width: 767px) {
  .header {
    height: auto;
  }
}

.header .logo {
  position: absolute;
  width: 166px;
  position: absolute;
  top: 59px;
  left: 51px;
}

@media only screen and (max-width: 767px) {
  .header .logo {
    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 .gnav-toggle {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  position: fixed;
  top: 44px;
  right: 47px;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .header .gnav-toggle {
    top: 34px;
    right: 28px;
  }
}

.header .gnav-toggle.color-black .hamburger-box .hamburger-inner,
.header .gnav-toggle.color-black .hamburger-box .hamburger-inner:before,
.header .gnav-toggle.color-black .hamburger-box .hamburger-inner:after {
  background: #000;
}

.header .gnav-toggle .hamburger-box {
  width: 38px;
  height: 26px;
}

@media only screen and (max-width: 767px) {
  .header .gnav-toggle .hamburger-box {
    width: 18px;
    height: 8px;
  }
}

.header .gnav-toggle .hamburger-box .hamburger-inner,
.header .gnav-toggle .hamburger-box .hamburger-inner:before,
.header .gnav-toggle .hamburger-box .hamburger-inner:after {
  background: #FFF;
}

.header .gnav-toggle .hamburger-box .hamburger-inner {
  height: 1px;
  width: 38px;
}

@media only screen and (max-width: 767px) {
  .header .gnav-toggle .hamburger-box .hamburger-inner {
    width: 18px;
  }
}

.header .gnav-toggle .hamburger-box .hamburger-inner:before {
  height: 1px;
  width: 38px;
  top: -12px;
}

@media only screen and (max-width: 767px) {
  .header .gnav-toggle .hamburger-box .hamburger-inner:before {
    width: 18px;
    top: -6px;
  }
}

.header .gnav-toggle .hamburger-box .hamburger-inner:after {
  height: 1px;
  width: 38px;
  bottom: -12px;
}

@media only screen and (max-width: 767px) {
  .header .gnav-toggle .hamburger-box .hamburger-inner:after {
    width: 18px;
    bottom: -6px;
  }
}

.header .gnav-toggle.is-active .hamburger-box .hamburger-inner {
  background-color: transparent;
}

.header .gnav-toggle.is-active .hamburger-box .hamburger-inner:before {
  top: 0;
}

.header .gnav-toggle.is-active .hamburger-box .hamburger-inner:after {
  bottom: 0;
}

.gnav {
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  height: 100vh;
  background: #000;
  color: #fff;
  padding: 126px 52px 52px;
  z-index: 98;
  transition: .3s;
  right: -340px;
  opacity: 0;
}

.gnav.is-active {
  right: 0;
  opacity: 1;
}

.gnav ul li {
  font-size: 29px;
  font-size: 2.9rem;
  margin: 0 0 40px;
}

@media only screen and (max-width: 767px) {
  .gnav ul li {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

/* 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.attention .attention-box {
  color: #fff;
  padding: 125px 0 0;
  height: 2094px;
  background: url(../images/footer-bg.jpg) bottom center/100% no-repeat;
  position: relative;
}

body.attention .attention-box:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  body.attention .attention-box {
    padding: 50px 0 0;
    height: 1500px;
  }
}

body.attention .attention-box .inner {
  max-width: 1120px;
  padding: 0 40px;
  margin: 0 auto;
}

body.attention .attention-box .block {
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  body.attention .attention-box .block {
    margin-bottom: 20px;
  }
}

body.attention .attention-box .block h3 {
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: .075em;
  padding: 25px 90px;
  border-top: 1px solid #AC0023;
  border-bottom: 1px solid #AC0023;
  position: relative;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  body.attention .attention-box .block h3 {
    font-size: 11px;
    font-size: 1.1rem;
    padding: 14px 44px;
  }
}

body.attention .attention-box .block h3:before {
  content: "";
  width: 18px;
  height: 1px;
  display: block;
  background: #AC0023;
  position: absolute;
  left: 30px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media only screen and (max-width: 767px) {
  body.attention .attention-box .block h3:before {
    width: 10px;
    left: 10px;
  }
}

body.attention .attention-box .block h3:after {
  content: "";
  width: 18px;
  height: 1px;
  display: block;
  background: #AC0023;
  position: absolute;
  left: 30px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  opacity: 0;
  transition: .3s;
}

@media only screen and (max-width: 767px) {
  body.attention .attention-box .block h3:after {
    width: 10px;
    left: 10px;
  }
}

body.attention .attention-box .block h3.close:after {
  opacity: 1;
  -webkit-transform: translate(0, -50%) rotate(90deg);
  -moz-transform: translate(0, -50%) rotate(90deg);
  -ms-transform: translate(0, -50%) rotate(90deg);
  -o-transform: translate(0, -50%) rotate(90deg);
  transform: translate(0, -50%) rotate(90deg);
}

body.attention .attention-box .block p {
  padding: 24px 80px 0;
  line-height: 1.7em;
}

@media only screen and (max-width: 767px) {
  body.attention .attention-box .block p {
    padding: 20px 0;
    font-size: 13px;
  }
}

body.attention .attention-box .block ul {
  padding: 38px 80px;
}

@media only screen and (max-width: 767px) {
  body.attention .attention-box .block ul {
    padding: 20px 0;
  }
}

body.attention .attention-box .block ul li {
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: .02em;
  line-height: 2.232;
  padding-left: 20px;
}

@media only screen and (max-width: 767px) {
  body.attention .attention-box .block ul li {
    font-size: 10px;
    font-size: 1rem;
    padding-left: 14px;
  }
}

body.attention .attention-box .block ul li:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

body.attention .attention-box .block ul li a {
  color: #a60023;
}

body.attention .attention-box .logo {
  width: 153px;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  bottom: 82px;
  -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: 767px) {
  body.attention .attention-box .logo {
    width: 81px;
  }
}

@media only screen and (max-width: 767px) {
  body.index .wrap {
    overflow: hidden;
  }
}

body.index main .fixed-movie {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

body.index main .fixed-movie.is-front {
  z-index: 1;
}

body.index main .fixed-movie .movie video,
body.index main .fixed-movie .movie 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%);
  height: auto;
  min-width: 100%;
  min-height: 100vh;
  max-width: none;
  max-height: 100%;
}

body.index main .scrollmagic-pin-spacer {
  pointer-events: none;
}

body.index main .scrollmagic-pin-spacer.has-pointer {
  pointer-events: all;
}

body.is-ipad .slider {
  pointer-events: none;
}


body.is-ipad .wrapper {
  pointer-events: none;
}

body.is-ipad .wrapper.has-pointer {
  pointer-events: all;
}

body.is-ipad .products__list li {
  pointer-events: all;
}

body.index main .wrapper {
  width: 100%;
  height: 100%;
  perspective: 1000;
  position: relative;
  z-index: 2;
}

body.index main .wrapper .sections {
  height: 100%;
}

@media only screen and (max-width: 767px) {
  body.index main .wrapper .sections {
    /* padding-top: 100vh; */
    margin-top: calc(100vh - 100px);
  }
}

@media only screen and (min-width: 768px) {
  body.index main .wrapper .sections {
    padding-left: 100vw;
  }
}

body.index main .wrapper .sections .section {
  float: left;
}

@media only screen and (max-width: 767px) {
  body.index main .wrapper .sections .section {
    float: none;
  }
}

body.index main .mv {
  height: 100vh;
  position: relative;
  color: #fff;
  background: #000;
  position: fixed;
  width: 100vw;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 767px) {
  body.index main .mv {
    height: calc(100vh - 100px);
  }
}

body.index main .mv .slider {
  width: 100vw;
}

body.index main .mv .slider .slide {
  width: 100vw;
  height: 100vh;
}

@media only screen and (max-width: 767px) {
  body.index main .mv .slider .slide {
    width: 100%;
    height: calc(100vh - 100px);
  }
}

@media only screen and (max-width: 767px) {
  body.index main .mv__logo {
    width: 166px;
    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 .mv__text {
  position: absolute;
  left: 50px;
  bottom: 47px;
  letter-spacing: .025em;
  width: 100%;
  max-width: calc(100% - 100px);
}

@media only screen and (max-width: 767px) {
  body.index main .mv__text {
    left: 34px;
    bottom: 48px;
    max-width: calc(100% - 68px);
  }
}

body.index main .mv__text h2 {
  font-weight: 400;
  font-size: 29px;
  font-size: 2.9rem;
}

@media only screen and (max-width: 767px) {
  body.index main .mv__text h2 {
    font-size: 19px;
    font-size: 1.9rem;
  }
}

body.index main .mv__text p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.37;
  font-weight: 200;
  margin: 16px 0 42px;
}

@media only screen and (max-width: 767px) {
  body.index main .mv__text p {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.423;
    margin: 12px 0 20px;
  }
}

body.index main .mv__text small {
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: 300;
}

body.index main .mv__text .news {
  opacity: 0;
  transition-delay: 3s;
  transition: 0.9s;
  -webkit-transform: translate(0, 30px);
  -moz-transform: translate(0, 30px);
  -ms-transform: translate(0, 30px);
  -o-transform: translate(0, 30px);
  transform: translate(0, 30px);
}

body.index main .mv__text .news.is-active {
  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);
}

@media only screen and (max-width: 767px) {
  body.index main .mv__text .news {
    margin-top: 36px;
  }
}

body.index main .mv__text .news h3 {
  letter-spacing: .025em;
  position: relative;
  margin: 0 0 10px;
}

@media only screen and (max-width: 767px) {
  body.index main .mv__text .news h3 {
    font-size: 12px;
    font-size: 1.2rem;
    margin: 0 0 10px;
  }
}

@media only screen and (max-width: 767px) {
  body.index main .mv__text .news h3:after {
    content: "";
    width: calc(100% - 45px);
    height: 1px;
    background: #fff;
    position: absolute;
    right: 0;
    top: 5px;
  }
}

body.index main .mv__text .news .news-list {
  overflow: hidden;
  height: 22px;
  max-width: calc(100% - 100px);
}

@media only screen and (max-width: 767px) {
  body.index main .mv__text .news .news-list {
    height: 16px;
    max-width: 100%;
  }
}

body.index main .mv__text .news .news-list li {
  line-height: 22px;
  letter-spacing: .02em;
  font-weight: 100;
  font-feature-settings: "palt";
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  body.index main .mv__text .news .news-list li {
    line-height: 16px;
    font-size: 10px;
    font-size: 1rem;
  }
}

body.index main .mv__products-link {
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: .025em;
  position: absolute;
  right: 48px;
  bottom: 47px;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
}

body.index main .mv__products-link:after {
  content: "";
  display: inline-block;
  background: url(../images/common/arrow.svg) center center/cover no-repeat;
  width: 37px;
  height: 42px;
  margin: 39px 0 0;
}

body.index main .products {
  height: 100vh;
  width: 2547px;
  display: -webkit-flex;
  display: flex;
}

@media only screen and (max-width: 767px) {
  body.index main .products {
    width: 100%;
    height: auto;
    display: block;
  }
}

body.index main .products .read {
  width: 487px;
  height: 100vh;
  background: #000;
  color: #fff;
  position: relative;
}

@media only screen and (max-width: 767px) {
  body.index main .products .read {
    width: 100%;
    height: auto;
  }
}

body.index main .products .read__logo {
  position: absolute;
  top: 37px;
  right: 29px;
  width: 46px;
}

@media only screen and (max-width: 767px) {
  body.index main .products .read__logo {
    position: static;
  }
}

body.index main .products .read__text {
  position: absolute;
  left: 35px;
  bottom: 77px;
  width: 289px;
}

@media only screen and (max-width: 767px) {
  body.index main .products .read__text {
    position: static;
    width: 100%;
    padding: 36px 35px 32px;
  }
}

body.index main .products .read__text h3 {
  letter-spacing: .025em;
  font-size: 24px;
  font-size: 2.4rem;
  margin: 0 0 31px;
}

@media only screen and (max-width: 767px) {
  body.index main .products .read__text h3 {
    font-size: 15px;
    font-size: 1.5rem;
    margin: 0 0 20px;
  }
}

body.index main .products .read__text p {
  letter-spacing: .02em;
  line-height: 1.799;
  font-weight: 100;
  text-align: justify;
  font-feature-settings: "palt";
  font-size: 12px;
  font-size: 1.2rem;
  margin: 0 0 36px;
}

@media only screen and (max-width: 767px) {
  body.index main .products .read__text p {
    font-size: 10px;
    font-size: 1rem;
    margin: 0 0 14px;
  }
}

body.index main .products .read__text p:last-of-type {
  margin: 0 0 0;
}

body.index main .products__list {
  width: 2100px;
}

@media only screen and (max-width: 767px) {
  body.index main .products__list {
    width: 100%;
    height: auto;
    background: #fff;
    position: relative;
  }
}

body.index main .products__list ul {
  display: -webkit-flex;
  display: flex;
}

@media only screen and (max-width: 767px) {
  body.index main .products__list ul {
    display: block;
  }
}

body.index main .products__list ul li {
  background: #fff;
}

@media only screen and (max-width: 767px) {
  body.index main .products__list ul li {
    position: relative;
  }
}

body.index main .products__list ul li .top {
  height: 100vh;
  border-right: 1px solid #808080;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 420px;
  padding: 47px 45px 33px;
}

@media only screen and (max-width: 767px) {
  body.index main .products__list ul li .top {
    width: 100%;
    height: 646px;
    border-right: none;
    display: block;
    padding: 40px 40px 28px;
  }
}

body.index main .products__list ul li .name {
  line-height: 1.3777;
  font-size: 30px;
  font-size: 3rem;
}

@media only screen and (max-width: 767px) {
  body.index main .products__list ul li .name {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

body.index main .products__list ul li .name strong {
  display: block;
  font-weight: 500;
}

body.index main .products__list ul li .name span {
  font-weight: 200;
}

body.index main .products__list ul li .img {
  margin: 0 auto;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  body.index main .products__list ul li .img {
    margin: 25px auto 33px;
  }
}

body.index main .products__list ul li .img img {
  width: auto;
  max-height: 58.8vh;
}

@media only screen and (max-width: 767px) {
  body.index main .products__list ul li .img img {
    max-height: 48vh;
  }
}

body.index main .products__list ul li .short img {
  max-height: 48.48vh;
}

@media only screen and (max-width: 767px) {
  body.index main .products__list ul li .short img {
    max-height: 38vh;
  }
}

@media only screen and (max-width: 767px) {
  body.index main .products__list ul li .short {
    margin: 64px auto 54px;
  }
}

body.index main .products__list ul li .bottom {
  text-align: center;
}

body.index main .products__list ul li .bottom .kana-name {
  display: block;
  letter-spacing: .02em;
  font-feature-settings: "palt";
  font-size: 14px;
  font-size: 1.4rem;
}

body.index main .products__list ul li .bottom .detail-btn {
  display: block;
  background: url(../images/common/btn-more.svg) center center/cover no-repeat;
  width: 27px;
  height: 27px;
  display: block;
  margin: 25px auto 0;
}

@media only screen and (max-width: 767px) {
  body.index main .products__list ul li .bottom .detail-btn {
    width: 23px;
    height: 23px;
    margin: 21px auto 0;
  }
}

body.index main .products__list ul .detail {
  width: 420px;
  height: 100vh;
  background: #000;
  color: #fff;
  padding: 49px 35px 35px;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}

@media only screen and (max-width: 767px) {
  body.index main .products__list ul .detail {
    width: 100%;
    height: auto;
    height: 646px;
    opacity: 0;
    visibility: visible;
    position: absolute;
    top: 0;
    right: -100%;
    transition: .5s;
    padding: 44px 31px 30px;
  }
}

body.index main .products__list ul .detail.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, -100vh);
  -moz-transform: translate(0, -100vh);
  -ms-transform: translate(0, -100vh);
  -o-transform: translate(0, -100vh);
  transform: translate(0, -100vh);
}

@media only screen and (max-width: 767px) {
  body.index main .products__list ul .detail.is-active {
    right: 0;
    -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 .products__list ul .detail p {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: .02em;
  line-height: 1.85;
  font-weight: 200;
  text-align: justify;
}

@media only screen and (max-width: 767px) {
  body.index main .products__list ul .detail p {
    font-size: 10px;
    font-size: 1rem;
  }
}

@media only screen and (max-width: 767px) {
  body.index main .products__list ul .detail .price-box {
    margin: 50px 0;
  }
}

body.index main .products__list ul .detail .price-box .logo {
  display: block;
  width: 128px;
  padding: 6px 8px;
  background: #fff;
  margin: 0 0 20px;
}

@media only screen and (max-width: 767px) {
  body.index main .products__list ul .detail .price-box .logo {
    width: 78px;
    padding: 3px 4px;
    margin: 0 0 12px;
  }
}

body.index main .products__list ul .detail .price-box .logo img {
  display: block;
}

body.index main .products__list ul .detail .price-box .box {
  border-top: 1px solid #fff;
  padding: 28px 12px;
  font-weight: 100;
}

@media only screen and (max-width: 767px) {
  body.index main .products__list ul .detail .price-box .box {
    padding: 16px 5px;
  }
}

body.index main .products__list ul .detail .price-box .box:last-of-type {
  border-bottom: 1px solid #fff;
}

body.index main .products__list ul .detail .price-box .box small {
  display: block;
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: .02em;
  margin: 0 0 16px;
}

@media only screen and (max-width: 767px) {
  body.index main .products__list ul .detail .price-box .box small {
    font-size: 10px;
    font-size: 1rem;
    margin: 0 0 5px;
  }
}

body.index main .products__list ul .detail .price-box .box span {
  font-size: 27px;
  font-size: 2.7rem;
  font-family: "neue-haas-unica", sans-serif;
}

@media only screen and (max-width: 767px) {
  body.index main .products__list ul .detail .price-box .box span {
    font-size: 20px;
    font-size: 2rem;
  }
}

body.index main .products__list ul .detail .bottom {
  display: -webkit-flex;
  display: flex;
}

body.index main .products__list ul .detail .bottom .close-btn {
  font-family: "neue-haas-unica", sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  font-family: "neue-haas-unica", sans-serif;
  padding-bottom: 16px;
  margin-right: 29px;
}

body.index main .products__list ul .detail .bottom .close-btn:before {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../images/common/btn-close.svg) center center/cover no-repeat;
  width: 28px;
  height: 28px;
  margin-right: 11px;
  top: 9px;
}

@media only screen and (max-width: 767px) {
  body.index main .products__list ul .detail .bottom .close-btn:before {
    width: 24px;
    height: 24px;
    top: 7px;
  }
}

body.index main .products__list ul .detail .bottom .custom-btn {
  font-family: "neue-haas-unica", sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
}

body.index main .products__list ul .detail .bottom .custom-btn:before {
  content: "";
  display: inline-block;
  position: relative;
  background: url(../images/common/btn-next.svg) center center/cover no-repeat;
  width: 28px;
  height: 28px;
  margin-right: 11px;
  top: 9px;
}

@media only screen and (max-width: 767px) {
  body.index main .products__list ul .detail .bottom .custom-btn:before {
    width: 24px;
    height: 24px;
    top: 7px;
  }
}

body.index main .simulation {
  height: 100vh;
  width: 842px;
}

@media only screen and (max-width: 767px) {
  body.index main .simulation {
    width: 100%;
    height: auto;
  }
}

body.index main .simulation .wrap01 {
  height: 100vh;
  position: relative;
  width: 842px;
  z-index: +1;
}

@media only screen and (max-width: 767px) {
  body.index main .simulation .wrap01 {
    width: 100%;
    height: 460px;
  }
}

body.index main .simulation__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%);
}

@media only screen and (max-width: 767px) {
  body.index main .simulation__box {
    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 .simulation__box .logo {
  width: 246px;
  border-radius: 29px;
  display: block;
  border: 1px solid #fff;
  background: rgba(66, 0, 8, 0.7);
  padding: 21px 58px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  body.index main .simulation__box .logo {
    width: 160px;
    border-radius: 20px;
    padding: 10px 40px 14px;
  }
}

body.index main .simulation__box h3 {
  color: #fff;
  text-align: center;
  font-family: "neue-haas-unica", sans-serif;
  font-weight: 100;
}

body.index main .simulation__box h3 span {
  display: block;
  font-size: 25px;
  font-size: 2.5rem;
  margin: 25px 0 9px;
}

@media only screen and (max-width: 767px) {
  body.index main .simulation__box h3 span {
    font-size: 20px;
    font-size: 2rem;
    margin: 17px 0 3px;
  }
}

@media only screen and (max-width: 767px) {
  body.index main .simulation__box h3 small {
    font-size: 10px;
    font-size: 1rem;
    letter-spacing: 0.005em;
  }
}

body.index main .service {
  width: 2190px;
  height: 100vh;
  min-height: 764px;
  position: relative;
  display: -webkit-flex;
  display: flex;
  background: #fff;
}

@media only screen and (max-width: 767px) {
  body.index main .service {
    width: 100%;
    height: auto;
    display: block;
  }
}

body.index main .service .read {
  width: 409px;
  height: 100vh;
  position: relative;
}

@media only screen and (max-width: 767px) {
  body.index main .service .read {
    width: 100%;
    height: auto;
    padding: 36px 25px 32px;
  }
}

body.index main .service .read__title {
  top: 47px;
  right: 124px;
  font-size: 53px;
  font-size: 5.3rem;
  letter-spacing: .025em;
  position: absolute;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
}

@media only screen and (max-width: 767px) {
  body.index main .service .read__title {
    position: static;
    writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    font-size: 15px;
    font-size: 1.5rem;
    margin: 0 0 20px;
  }
}

body.index main .service .read__text {
  position: absolute;
  left: 54px;
  bottom: 87px;
}

@media only screen and (max-width: 767px) {
  body.index main .service .read__text {
    position: static;
  }
}

body.index main .service .read__text p {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: .02em;
  line-height: 1.799;
  text-align: justify;
  width: 289px;
  font-weight: 100;
}

@media only screen and (max-width: 767px) {
  body.index main .service .read__text p {
    font-size: 10px;
    font-size: 1rem;
    width: 100%;
  }
}

body.index main .service .img-box {
  padding: 44px 0;
  width: 492px;
  height: 100vh;
}

@media only screen and (max-width: 767px) {
  body.index main .service .img-box {
    width: 100%;
    height: 450px;
    padding: 0 0 44px;
  }
}

body.index main .service .img-box .img {
  height: 100%;
}

body.index main .service__list {
  width: 1289px;
  padding: 46px 128px 46px 75px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  body.index main .service__list {
    width: 100%;
    height: auto;
    padding: 0 46px 0 38px;
  }
}

body.index main .service__list .border {
  width: 0px;
  height: 1px;
  display: block;
  background: #BB0000;
  position: absolute;
  left: 0px;
  top: 50%;
  transition: .8s;
}

body.index main .service__list .border.is-active {
  width: 1300px;
}

body.index main .service__list .border02 {
  width: 0px;
  top: auto;
  left: auto;
  bottom: 375px;
  right: 0;
}

body.index main .service__list .border02.is-active {
  width: 1065px;
}

@media only screen and (max-width: 767px) {
  body.index main .service__list:before {
    content: "";
    width: 1px;
    height: 0;
    display: block;
    background: #808080;
    position: absolute;
    top: 130px;
    left: 54px;
    transition: 1s;
  }
}

@media only screen and (max-width: 767px) {
  body.index main .service__list.is-active:before {
    height: calc(100% - 293px);
  }
}

body.index main .service__list ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  /* opacity: 0;
  transition: opacity 0.4s;
  transition-delay: 1s; */
}

body.index main .service__list ul.is-active {
  /* opacity: 1; */
}

@media only screen and (max-width: 767px) {
  body.index main .service__list ul {
    position: relative;
    transform: none;
    top: auto;
  }
}

body.index main .service__list ul li {
  width: 300px;
  margin-right: 28px;
  position: relative;
  /* background-color: #fff; */
}

@media only screen and (max-width: 767px) {
  body.index main .service__list ul li {
    width: calc(100% - 53px);
    margin: 0 0 41px auto;
  }
}

body.index main .service__list ul li:before {
  content: "";
  width: 1px;
  height: 0px;
  display: block;
  background: #808080;
  position: absolute;
  top: 290px;
  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);
  transition: .8s;
  transition-delay: 0.6s;
  display: none;
}

@media only screen and (max-width: 767px) {
  body.index main .service__list ul li:before {
    display: block;
    width: 0px;
    height: 1px;
    left: -37px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}

body.index main .service__list ul li:after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  border: 1px solid #BB0000;
  border-radius: 50%;
  position: absolute;
  bottom: -40px;
  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);
  transition: .8s;
  transition-delay: .6s;
  display: none;
}

@media only screen and (max-width: 767px) {
  body.index main .service__list ul li:after {
    display: block;
    width: 0;
    height: 0;
    left: -37px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}

body.index main .service__list ul li .box {
  border: 1px solid #BB0000;
  padding: 45px 17px 40px;
  height: 290px;
  border: 1px solid #BB0000;
  -webkit-transition: -webkit-transform 1.2s, opacity 2s;
  -moz-transition: -moz-transform 1.2s, opacity 2s;
  -o-transition: -o-transform 1.2s, opacity 2s;
  transition: transform 1.2s, opacity 2s;
  opacity: 0;
  background: #fff;
}

@media only screen and (max-width: 767px) {
  body.index main .service__list ul li .box {
    height: auto;
    padding: 38px 16px 32px;
  }
}

body.index main .service__list ul li strong {
  font-family: "neue-haas-unica", sans-serif;
  font-weight: 400;
  display: block;
  font-size: 45px;
  font-size: 4.5rem;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #BB0000;
  margin: 0 0 14px;
}

@media only screen and (max-width: 767px) {
  body.index main .service__list ul li strong {
    font-size: 35px;
    font-size: 3.5rem;
    margin: 0 0 17px;
  }
}

body.index main .service__list ul li h4 span {
  font-family: "neue-haas-unica", sans-serif;
  font-weight: 300;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: .025em;
  display: block;
}

@media only screen and (max-width: 767px) {
  body.index main .service__list ul li h4 span {
    font-size: 21px;
    font-size: 2.1rem;
  }
}

body.index main .service__list ul li h4 small {
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: .005em;
  display: block;
  margin: 8px 0 30px;
}

@media only screen and (max-width: 767px) {
  body.index main .service__list ul li h4 small {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

body.index main .service__list ul li p {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: .005em;
  line-height: 1.599;
  text-align: justify;
  font-weight: 300;
  font-feature-settings: "palt";
}

@media only screen and (max-width: 767px) {
  body.index main .service__list ul li p {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.index main .service__list ul li p a {
  text-decoration: underline;
}

body.index main .service__list ul li:nth-of-type(1) .box {
  transition-delay: 0.6s;
  -webkit-transform: translate(200px, 0);
  -moz-transform: translate(200px, 0);
  -ms-transform: translate(200px, 0);
  -o-transform: translate(200px, 0);
  transform: translate(200px, 0);
}

body.index main .service__list ul li:nth-of-type(2) .box {
  transition-delay: 0.7s;
  -webkit-transform: translate(200px, 0);
  -moz-transform: translate(200px, 0);
  -ms-transform: translate(200px, 0);
  -o-transform: translate(200px, 0);
  transform: translate(200px, 0);
}

body.index main .service__list ul li:nth-of-type(3) .box {
  transition-delay: 0.8s;
  -webkit-transform: translate(200px, 0);
  -moz-transform: translate(200px, 0);
  -ms-transform: translate(200px, 0);
  -o-transform: translate(200px, 0);
  transform: translate(200px, 0);
}

body.index main .service__list ul.is-active li .box {
  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 .service__list ul.is-active li:before {
  height: 40px;
}

@media only screen and (max-width: 767px) {
  body.index main .service__list ul.is-active li:before {
    width: 37px;
    height: 1px;
  }
}

body.index main .service__list ul.is-active li:after {
  width: 13px;
  height: 13px;
  bottom: -46px;
}

@media only screen and (max-width: 767px) {
  body.index main .service__list ul.is-active li:after {
    width: 12px;
    height: 12px;
    top: 50%;
    bottom: auto;
    left: -44px;
  }
}

/* body.index main .service__list ul:last-of-type li:before {
  content: "";
  width: 1px;
  height: 0px;
  display: block;
  background: #808080;
  position: absolute;
  top: -40px;
  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);
} */

@media only screen and (max-width: 767px) {
  body.index main .service__list ul:last-of-type li:before {
    width: 0px;
    height: 1px;
    left: -37px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}

/* body.index main .service__list ul:last-of-type li:after {
  content: "";
  width: 0px;
  height: 0px;
  display: block;
  border: 1px solid #BB0000;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  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);
} */

@media only screen and (max-width: 767px) {
  body.index main .service__list ul:last-of-type li:after {
    width: 0;
    height: 0;
    left: -37px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}

body.index main .service__list ul:last-of-type li:nth-of-type(1) .box {
  transition-delay: 0.9s;
}

body.index main .service__list ul:last-of-type li:nth-of-type(2) .box {
  transition-delay: 1s;
}

body.index main .service__list ul:last-of-type li:nth-of-type(3) .box {
  transition-delay: 1.1s;
}

body.index main .service__list ul:last-of-type.is-active li .box {
  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 .service__list ul:last-of-type.is-active li:before {
  height: 40px;
}

@media only screen and (max-width: 767px) {
  body.index main .service__list ul:last-of-type.is-active li:before {
    width: 37px;
    height: 1px;
  }
}

body.index main .service__list ul:last-of-type.is-active li:after {
  width: 13px;
  height: 13px;
  top: -46px;
}

@media only screen and (max-width: 767px) {
  body.index main .service__list ul:last-of-type.is-active li:after {
    width: 12px;
    height: 12px;
    top: 50%;
    bottom: auto;
    left: -44px;
  }
}

body.index main .information {
  width: 2150px;
  height: 100vh;
  display: -webkit-flex;
  display: flex;
  background: #fff;
}

@media only screen and (max-width: 767px) {
  body.index main .information {
    width: 100%;
    height: auto;
    display: block;
  }
}

body.index main .information .aclass {
  display: block;
  color: #fff;
  text-decoration: underline;
  width: 218px;
  margin: 12px auto;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  body.index main .information .aclass {
    margin: 12px auto !important;
    width: auto;
  }
}

body.index main .information__image {
  width: 964px;
  height: 100vh;
  background: url(../images/bg02.jpg) center center/cover no-repeat;
  position: relative;
}


@media only screen and (max-width: 767px) {
  body.index main .information__image {
    width: 100%;
    height: 423px;
  }
}

body.index main .information__image .box {
  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%);
}

body.index main .information__image .logo {
  width: 237px;
  margin: 0 auto 80px;
}

@media only screen and (max-width: 767px) {
  body.index main .information__image .logo {
    width: 134px;
  }
}

body.index main .information__image .btn {
  display: block;
  width: 218px;
  padding: 17px 14px 14px;
  text-align: center;
  font-size: 19px;
  font-size: 1.9rem;
  letter-spacing: .005em;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: 26px;
  border: 1px solid #fff;
  transition: .3s;
}

body.index main .information__image .btn:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 767px) {
  body.index main .information__image .btn {
    width: 132px;
    font-size: 12px;
    font-size: 1.2rem;
    padding: 10px;
    border-radius: 13px;
  }
}

body.index main .information__text {
  width: 639px;
  height: 100vh;
  padding: 105px 56px;
  font-family: "neue-haas-unica", sans-serif;
  font-feature-settings: "palt";
  position: relative;
}

@media only screen and (min-width: 768px) {
  body.index main .information__text>div {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    padding: 105px 56px;
    -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.index main .information__text {
    width: 100%;
    height: auto;
    padding: 42px 43px;
  }
}

body.index main .information__text h3 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 300;
}

@media only screen and (max-width: 767px) {
  body.index main .information__text h3 {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

body.index main .information__text strong {
  display: block;
  font-size: 20px;
  font-size: 2.0rem;
  letter-spacing: 0.05em;
  margin: 66px 0 12px;
  font-weight: 500;
  font-family: "Plain", "游ゴシック", YuGothic, sans-serif;
}

@media only screen and (max-width: 767px) {
  body.index main .information__text strong {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.4;
    margin: 26px 0 10px;
  }
}

body.index main .information__text p {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: .02em;
  line-height: 1.785;
  text-align: justify;
  font-family: "Plain", "游ゴシック", YuGothic, sans-serif;
  font-weight: 300;
}

@media only screen and (max-width: 767px) {
  body.index main .information__text p {
    font-size: 10px;
    font-size: 1rem;
  }
}

body.index main .information__text address {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.785;
  letter-spacing: .02em;
  font-family: "Plain", "游ゴシック", YuGothic, sans-serif;
  font-weight: 300;
  display: block;
  margin-top: 70px;
}

@media only screen and (max-width: 767px) {
  body.index main .information__text address {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.785;
  }
}

/* body.index main .information__text address:before {
  content: "";
  width: 15px;
  height: 1px;
  background: #000;
  display: block;
  margin: 12px 0;
} */

@media only screen and (max-width: 767px) {
  body.index main .information__text address:before {
    margin: 24px 0 18px;
  }
}

.copyright {
  margin-top: 36px;
  font-size: 10px !important;
}
