/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
@font-face {
  font-family: 'Futura Std Medium';
  src: url('../font/FuturaStd-Heavy.otf') format('opentype');
}
/* IE11 fallback */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 600;
  src: local('Oswald SemiBold'), local('Oswald-SemiBold'), url(https://fonts.gstatic.com/s/oswald/v17/TK3hWkUHHAIjg75-xhsTus9E.woff) format('woff');
}
@media only screen and (min-width: 992px) {
  .mobile-only {
    display: none !important;
  }
}
@media only screen and (max-width: 991.98px) {
  .desktop-only {
    display: none !important;
  }
}
.font-gothic {
  font-family: 'Futura Std Medium', 'Oswald', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.text-link-animation {
  position: relative;
  z-index: 2;
  display: inline-block;
  line-height: 1.5;
  padding: 0 0.5em;
  overflow: hidden;
  transition: color 0s linear 0.3s;
}
.text-link-animation:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  bottom: 0;
  z-index: -1;
  display: block;
  background: #bdc0ba;
  transition: none;
}
.text-link-animation:hover {
  text-decoration: none;
}
.text-link-animation:hover:after {
  right: 0;
  transform: translateX(101%);
  transition: right 0.15s cubic-bezier(1, 0, 1, 1) 0s, transform 0.15s cubic-bezier(0, 0, 0, 1) 0.25s;
}
/* Brighten image link on hover */
/* ---------------------------------------------------------------
   Global
   --------------------------------------------------------------- */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  color: #191919;
  background: #191919;
  font-size: 14px;
  line-height: 1.25;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
}
@media only screen and (max-width: 991.98px) {
  body {
    font-size: 13px;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
img.expand {
  width: 100%;
}
a {
  color: #191919;
  text-decoration: none;
  -webkit-backface-visibility: hidden;
}
a,
a:before,
a:after,
button,
button:before,
button:after {
  transition: all 0.1s linear;
}
a,
a:focus,
a:active {
  outline: none;
}
button {
  cursor: pointer;
}
:focus {
  outline: none;
}
.condensed {
  letter-spacing: -0.08em;
}
pre {
  white-space: -moz-pre-wrap;
  /* Mozilla */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  white-space: pre-wrap;
  /* CSS3 */
  word-wrap: break-word;
  /* IE 5.5+ */
}
/* ---------------------------------------------------------------
   Layout
   --------------------------------------------------------------- */
.document-wrapper {
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}
.document-header {
  margin: 0 auto;
  text-align: center;
}
.main-content {
  margin: 0 auto;
  text-align: justify;
}
/**
 * Swiper 4.4.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 19, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23191919'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23191919'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #191919;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #191919;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  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-box {
  width: 45px;
  height: 38px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 45px;
  height: 2px;
  background-color: #FFF;
  border-radius: 0;
  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: -18px;
}
.hamburger-inner::after {
  bottom: -18px;
}
/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}
.hamburger--3dxy .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--3dxy .hamburger-inner::before,
.hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.nav-opened .hamburger--3dxy .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}
.nav-opened .hamburger--3dxy .hamburger-inner::before {
  transform: translate3d(0, 18px, 0) rotate(45deg);
}
.nav-opened .hamburger--3dxy .hamburger-inner::after {
  transform: translate3d(0, -18px, 0) rotate(-45deg);
}
@media only screen and (max-width: 991.98px) {
  .hamburger-box {
    width: 35px;
    height: 30px;
  }
  .hamburger-inner,
  .hamburger-inner::before,
  .hamburger-inner::after {
    width: 35px;
  }
  .hamburger-inner::before {
    top: -14px;
  }
  .hamburger-inner::after {
    bottom: -14px;
  }
  .nav-opened .hamburger--3dxy .hamburger-inner::before {
    transform: translate3d(0, 14px, 0) rotate(45deg);
  }
  .nav-opened .hamburger--3dxy .hamburger-inner::after {
    transform: translate3d(0, -14px, 0) rotate(-45deg);
  }
}
.btn {
  display: inline-block;
  padding: 17px 24px;
  max-width: 100%;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn:hover {
  text-decoration: none;
}
@media only screen and (max-width: 991.98px) {
  .btn {
    font-weight: 400;
    padding: 12px 12px;
  }
}
@media only screen and (max-width: 320px) {
  .btn {
    padding: 10px 10px;
  }
}
/* ---------------------------------------------------------------
   Preload
   --------------------------------------------------------------- */
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: #FFF;
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 1.1s;
}
.pace .pace-progress {
  display: block;
  position: fixed;
  z-index: 2000;
  top: calc(50% - 39px);
  bottom: calc(50% - 39px);
  right: 100%;
  width: 100%;
  background: #bdc0ba;
  pointer-events: none;
  transition: top 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.25s, bottom 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.25s;
}
.preload-done .pace {
  opacity: 0;
}
.preload-done .pace-progress {
  top: 0;
  bottom: 0;
}
.pace:before {
  display: block;
  content: 'DO RIGHT';
  position: fixed;
  left: 0;
  right: 0;
  top: calc(50% - 39px);
  z-index: 3000;
  color: #FFF;
  text-align: center;
  font-size: 40px;
  font-family: 'Futura Std Medium', 'Oswald', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.05em;
  line-height: 78px;
}
.ajax-loader {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 0%;
  min-height: 95px;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
@media only screen and (max-width: 991.98px) {
  .ajax-loader {
    min-height: 60px;
  }
}
body.scrolled .ajax-loader,
body.show-header .ajax-loader,
body.nav-opened .ajax-loader,
body.ajax-loading .ajax-loader {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}
.ajax-loader-progress {
  position: absolute;
  right: 100%;
  width: 100%;
  height: 100%;
  background: #bdc0ba;
  -webkit-transform: translate3d(0%, 0px, 0px);
  transform: translate3d(0%, 0px, 0px);
}
body.ajax-loading .site-header,
body.ajax-loading .site-header-bg,
body.ajax-loading .ajax-loader {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
body.ajax-loading .ajax-loader-progress {
  -webkit-transition: -webkit-transform 0.1s linear 0s;
  transition: transform 0.1s linear 0s;
}
body.ajax-loading .site-header .page-title {
  opacity: 0;
}
.browser-back-loader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background: #bdc0ba;
  display: none;
  opacity: 0;
}
@media (min-width: 998px) {
  .vs-section {
    position: relative;
  }
  .no-touchevents .y-scroll .vs-section {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: auto;
    margin: auto;
    will-change: transform;
  }
  .touchevents .vs-section {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    height: auto;
    margin: auto;
    will-change: transform;
    transform: none !important;
  }
  .touchevents .vs-scroll-view {
    display: none;
  }
}
@media (max-width: 997.98px) {
  .vs-section {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    height: auto;
    margin: auto;
    will-change: transform;
    transform: none !important;
  }
  .vs-scroll-view {
    display: none;
  }
  [data-scroll-in] {
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
  }
  [data-scroll-in-mobile] {
    opacity: 0;
    -webkit-transform: translateY(50%) !important;
    transform: translateY(50%) !important;
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  [data-scroll-in-mobile].scrolled-in {
    opacity: 1;
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
  }
}
@media only screen and (min-width: 992px) {
  .parallax-container {
    position: relative;
    overflow: hidden;
  }
  .parallax-container .parallax-image {
    position: absolute;
    top: -25%;
    left: 0;
    right: 0;
    height: 125%;
    background-position: center center;
    background-size: cover;
    will-change: transform;
  }
  .parallax-container .parallax-image .image {
    background-size: cover !important;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    transition: all 0.8s ease;
  }
}
@media only screen and (max-width: 991.98px) {
  .parallax-container .parallax-image {
    height: 100%;
    -webkit-transform: none !important;
    transform: none !important;
  }
}
.site-header {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 95px;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.site-header .nav-toggle {
  position: absolute;
  right: 24px;
  top: calc(50% - 19px);
  z-index: 2;
  background: none;
  border: none;
}
.site-header-bg {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  height: 95px;
  background: #191919;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
body.scrolled .site-header,
body.show-header .site-header,
body.nav-opened .site-header,
body.ajax-loading .site-header,
body.scrolled .site-header-bg,
body.show-header .site-header-bg,
body.nav-opened .site-header-bg,
body.ajax-loading .site-header-bg {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}
body.hide-header .site-header,
body.hide-header .site-header-bg {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: translateY(100%) !important;
  transform: translateY(100%) !important;
}
@media only screen and (max-width: 991.98px) {
  .site-header {
    height: 60px;
  }
  .site-header .nav-toggle {
    right: 3vw;
    top: calc(50% - 15px);
  }
  .site-header-bg {
    height: 60px;
  }
}
.site-logo {
  position: absolute;
  left: 48px;
  top: 0;
  bottom: 0;
  z-index: 2;
  background: none;
  border: none;
}
body.nav-opened .site-logo {
  z-index: 3;
}
.site-logo a {
  position: relative;
  display: block;
  height: 100%;
  text-align: left;
  line-height: 0;
  padding-top: 28.5px;
}
.site-logo a .compact {
  display: inline-block;
  width: 40.68235294px;
  height: 38px;
  vertical-align: middle;
}
.site-logo a .compact svg {
  fill: #FFF;
}
.site-logo a .expand {
  padding-left: 11.62352941px;
  padding-right: 11.62352941px;
  display: inline-block;
  width: 147.08235294px;
  height: 38px;
  vertical-align: middle;
  overflow: hidden;
}
.site-logo a .expand svg {
  margin-top: 8px;
  fill: #FFF;
  opacity: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media only screen and (min-width: 992px) {
  .site-logo a:hover .expand svg,
  body.nav-opened .site-logo a .expand svg,
  body.ajax-loading .site-logo a .expand svg {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@media only screen and (max-width: 991.98px) {
  .site-logo {
    left: 3vw;
  }
  .site-logo a {
    padding-top: 11px;
  }
  .site-logo a .expand {
    width: 0;
  }
  body.nav-opened .site-logo a .expand,
  body.ajax-loading .site-logo a .expand {
    width: 147.08235294px;
  }
  body.nav-opened .site-logo a .expand svg,
  body.ajax-loading .site-logo a .expand svg {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.site-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
  max-height: calc(100vh - 95px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #191919;
  color: #FFF;
  text-align: center;
  font-size: 40px;
  -webkit-transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.site-nav ul {
  display: inline-block;
  padding: 1em 0;
  text-align: left;
}
.site-nav li {
  margin: 0.5em 0;
}
.site-nav a {
  position: relative;
  z-index: 2;
  display: inline-block;
  line-height: 1.5;
  padding: 0 0.5em;
  overflow: hidden;
  transition: color 0s linear 0.3s;
  font-family: 'Futura Std Medium', 'Oswald', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.05em;
  color: #FFF;
}
.site-nav a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  bottom: 0;
  z-index: -1;
  display: block;
  background: #bdc0ba;
  transition: none;
}
.site-nav a:hover {
  text-decoration: none;
}
.site-nav a:hover:after {
  right: 0;
  transform: translateX(101%);
  transition: right 0.15s cubic-bezier(1, 0, 1, 1) 0s, transform 0.15s cubic-bezier(0, 0, 0, 1) 0.25s;
}
body.nav-opened .site-nav {
  bottom: 95px;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}
@media only screen and (max-width: 991.98px) {
  .site-nav {
    max-height: calc(100vh - 60px);
    font-size: 8vw;
  }
  .site-nav li {
    margin: 0;
  }
  .site-nav a {
    line-height: 2em;
  }
  body.nav-opened .site-nav {
    bottom: 60px;
  }
}
.site-header .page-title {
  position: relative;
  z-index: 2;
  width: 50%;
  margin: 0 auto;
  color: #FFF;
  overflow: hidden;
  font-size: 40px;
  line-height: 95px;
  font-family: 'Futura Std Medium', 'Oswald', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.05em;
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.site-header .page-title a {
  display: block;
  color: inherit;
}
.site-header .page-title a:hover {
  text-decoration: none;
}
.site-header .page-title .scrollspy {
  -webkit-transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.site-header .page-title .scrollspy[data-scrollspy-active="1"] {
  -webkit-transform: translateY(-95px);
  transform: translateY(-95px);
}
.site-header .page-title .scrollspy[data-scrollspy-active="2"] {
  -webkit-transform: translateY(-190px);
  transform: translateY(-190px);
}
.site-header .page-title .scrollspy[data-scrollspy-active="3"] {
  -webkit-transform: translateY(-285px);
  transform: translateY(-285px);
}
.site-header .page-title .scrollspy[data-scrollspy-active="4"] {
  -webkit-transform: translateY(-380px);
  transform: translateY(-380px);
}
.site-header .page-title .scrollspy[data-scrollspy-active="5"] {
  -webkit-transform: translateY(-475px);
  transform: translateY(-475px);
}
.site-header .page-title .scrollspy[data-scrollspy-active="6"] {
  -webkit-transform: translateY(-570px);
  transform: translateY(-570px);
}
.site-header .page-title .scrollspy[data-scrollspy-active="7"] {
  -webkit-transform: translateY(-665px);
  transform: translateY(-665px);
}
.site-header .page-title .scrollspy[data-scrollspy-active="8"] {
  -webkit-transform: translateY(-760px);
  transform: translateY(-760px);
}
.site-header .page-title .scrollspy[data-scrollspy-active="9"] {
  -webkit-transform: translateY(-855px);
  transform: translateY(-855px);
}
body.nav-opened .site-header .page-title {
  opacity: 0;
  pointer-events: none;
}
@media only screen and (max-width: 991.98px) {
  .site-header .page-title {
    font-size: 30px;
    line-height: 60px;
  }
  .site-header .page-title .scrollspy[data-scrollspy-active="1"] {
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
  }
  .site-header .page-title .scrollspy[data-scrollspy-active="2"] {
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
  }
  .site-header .page-title .scrollspy[data-scrollspy-active="3"] {
    -webkit-transform: translateY(-180px);
    transform: translateY(-180px);
  }
  .site-header .page-title .scrollspy[data-scrollspy-active="4"] {
    -webkit-transform: translateY(-240px);
    transform: translateY(-240px);
  }
  .site-header .page-title .scrollspy[data-scrollspy-active="5"] {
    -webkit-transform: translateY(-300px);
    transform: translateY(-300px);
  }
  .site-header .page-title .scrollspy[data-scrollspy-active="6"] {
    -webkit-transform: translateY(-360px);
    transform: translateY(-360px);
  }
  .site-header .page-title .scrollspy[data-scrollspy-active="7"] {
    -webkit-transform: translateY(-420px);
    transform: translateY(-420px);
  }
  .site-header .page-title .scrollspy[data-scrollspy-active="8"] {
    -webkit-transform: translateY(-480px);
    transform: translateY(-480px);
  }
  .site-header .page-title .scrollspy[data-scrollspy-active="9"] {
    -webkit-transform: translateY(-540px);
    transform: translateY(-540px);
  }
}
.site-footer {
  position: fixed;
  bottom: 95px;
  left: 0;
  right: 0;
  z-index: 1;
  display: table;
  height: 30vh;
  width: 100%;
  color: #FFF;
  background: #191919;
  text-align: center;
}
.site-footer .contact {
  display: table-cell;
  vertical-align: middle;
  font-size: 20px;
  font-family: 'Futura Std Medium', 'Oswald', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.05em;
  line-height: 2.2em;
  padding: 0 40px;
}
.site-footer .policy a {
  color: #FFF;
  font-size: 20px;
  font-family: 'Futura Std Medium', 'Oswald', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.05em;
  line-height: 2.2em;
  text-decoration: underline;
}
.vs-section {
  padding-bottom: calc(30vh + 95px);
  z-index: 2;
}
.site-body {
  background: #FFF;
}
@media only screen and (max-width: 991.98px) {
  .site-footer .contact {
    padding: 0 5vw;
    font-size: 4vw;
  }
  .site-footer .policy a {
    font-size: 4vw;
  }
}
.vs-section {
  pointer-events: none;
}
.site-body {
  pointer-events: auto;
}
.page-header {
  height: 95vh;
  display: table;
  width: 100%;
}
.page-header > .section-header {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.site-main {
  min-height: 95vh;
}
@media only screen and (max-width: 991.98px) {
  .site-main {
    min-height: 80vh;
  }
}
.section-header {
  padding: 180px 0;
  text-align: center;
}
.section-title {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 54px;
  font-family: 'Futura Std Medium', 'Oswald', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 78px;
  padding: 0 16px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0);
  transition: color 0s linear 0.5s;
}
.section-title:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: #bdc0ba;
  transition: right 0.3s cubic-bezier(1, 0, 1, 1) 0s, transform 0.3s cubic-bezier(0, 0, 0, 1) 0.55s;
}
@media only screen and (max-width: 991.98px) {
  .section-header {
    padding: 20vw 0;
  }
  .section-title {
    line-height: 1.1;
    word-break: normal;
    font-size: 9vw;
  }
}
.section-subtitle {
  margin-top: 1.5em;
  font-weight: bold;
  letter-spacing: 0.1em;
  min-height: 2em;
  line-height: 2em;
  padding: 0 5vw;
}
.scroll-in .section-title {
  color: #000000;
}
.scroll-in .section-title:before {
  right: 1px;
  transform: translateX(101%);
}
@keyframes AnimationContentNavOn {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}
@keyframes AnimationContentNavOff {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.content-nav {
  display: table;
  table-layout: fixed;
  width: 100%;
  background: #191919;
}
.content-nav a,
.content-nav span {
  position: relative;
  z-index: 2;
  display: table-cell;
  height: 260px;
  padding: 0 5%;
  line-height: 1.7;
  text-align: center;
  vertical-align: middle;
  color: #FFF;
  font-family: 'Futura Std Medium', 'Oswald', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.05em;
  font-size: 18px;
  text-transform: uppercase;
  overflow: hidden;
}
.content-nav a {
  /*
        &:hover {
            text-decoration: none;
            color: @text-color;

            &:after {
                -webkit-transform: translateX(0%);
                transform: translateX(0%);
            }
        }
*/
}
.content-nav a:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: #bdc0ba;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.content-nav a:hover {
  text-decoration: none;
}
.content-nav a.hover {
  color: #191919;
}
.content-nav a.hover:after {
  animation-name: AnimationContentNavOn;
  animation-duration: 0.4s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-direction: normal;
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.content-nav a.off:after {
  animation-name: AnimationContentNavOff;
  animation-duration: 0.4s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-direction: normal;
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media only screen and (max-width: 991.98px) {
  .content-nav a,
  .content-nav span {
    height: 50vw;
    font-size: 12px;
  }
}
.content-blocks {
  padding: 1px 0;
  text-align: justify;
}
.content-blocks em,
.content-blocks strong {
  font-weight: bold;
}
.content-blocks > *[class*="block-"]:first-child {
  margin-top: 0;
}
.block-headline,
.block-paragraph,
.block-image,
.block-grid,
.block-html {
  max-width: 1280px;
  margin: 80px auto;
  padding: 0 5vw;
  box-sizing: content-box;
}
.block-full-image,
.block-full-slider,
.block-template {
  margin: 80px auto;
}
.block-image img,
.block-grid img,
.block-full-image img,
.block-full-slider img {
  width: 100%;
  filter: grayscale(100%);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.block-image.scroll-in img,
.block-grid.scroll-in img,
.block-full-image.scroll-in img,
.block-full-slider.scroll-in img,
.block-image .scroll-in img,
.block-grid .scroll-in img,
.block-full-image .scroll-in img,
.block-full-slider .scroll-in img {
  filter: grayscale(0);
}
.block-headline h2 {
  font-size: 18px;
  font-family: 'Futura Std Medium', 'Oswald', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.block-paragraph p,
.block-grid p {
  margin: -0.6em 0 0.6em;
  line-height: 2.2;
}
.block-grid .grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: -25px 0;
}
.block-grid .col {
  width: calc(50% - 25px);
  padding: 25px 0;
}
.block-html ul {
  list-style: disc;
  line-height: 1.7;
  margin-left: 1.5em;
}
.block-html ol {
  list-style: decimal;
  line-height: 1.7;
  margin-left: 1.5em;
}
.block-html li:not(:first-child) {
  margin-top: 1.7em;
}
.block-full-slider .swiper-container {
  overflow: visible;
}
.block-full-slider .swiper-container-horizontal > .swiper-pagination-bullets {
  position: relative;
  bottom: auto;
  margin: 12px 0 0;
}
.block-full-slider .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 6px;
}
@media only screen and (max-width: 991.98px) {
  .block-headline,
  .block-paragraph,
  .block-image,
  .block-grid,
  .block-html {
    margin: 40px auto;
    padding: 0 5vw;
  }
  .block-full-image,
  .block-full-slider {
    margin: 40px auto;
  }
  .block-headline h2 {
    font-size: 18px;
  }
  .block-paragraph p,
  .block-grid p {
    margin: -0.35em 0;
    line-height: 1.7;
  }
  .block-grid .grid {
    margin: -2.5vw 0;
  }
  .block-grid .col {
    width: calc(50% - 2.5vw);
    padding: 2.5vw 0;
  }
  .block-grid.responsive .grid {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .block-grid.responsive .col {
    width: auto;
  }
}
.pagination {
  margin-top: 90px;
}
@media only screen and (max-width: 991.98px) {
  .pagination {
    margin-top: 40px;
  }
}
.pagination .prev,
.pagination .current,
.pagination .next {
  display: inline-block;
  vertical-align: middle;
}
.pagination .prev,
.pagination .next {
  height: 36px;
}
.pagination .prev a,
.pagination .next a {
  display: inline-block;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background-image: url('data:image/svg+xml;charset=utf-8,<svg%20xmlns%3D"http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg"%20x%3D"0px"%20y%3D"0px"%0D%0A%09%20width%3D"306px"%20height%3D"306px"%20viewBox%3D"0%200%20306%20306"%20style%3D"enable-background%3Anew%200%200%20306%20306%3B"%20xml%3Aspace%3D"preserve">%0D%0A%09<g%20id%3D"chevron-right">%0D%0A%09%09<polygon%20points%3D"94.35%2C0%2058.65%2C35.7%20175.95%2C153%2058.65%2C270.3%2094.35%2C306%20247.35%2C153"%2F>%0D%0A%09<%2Fg>%0D%0A<%2Fsvg>');
  background-size: 18px 18px;
  background-position: center center;
  background-repeat: no-repeat;
}
.pagination .prev a {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.pagination .prev a.disabled,
.pagination .next a.disabled {
  opacity: 0;
  cursor: default;
}
.pagination .current {
  font-size: 20px;
  font-family: 'Futura Std Medium', 'Oswald', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  line-height: 36px;
  width: 2.6em;
}
.page-home .page-header {
  height: 95vh;
}
@media only screen and (max-width: 991.98px) {
  .page-home .page-header {
    height: 80vh;
  }
}
.works-section .works-list {
  position: relative;
  z-index: 2;
  padding: 240px 0 110px;
  background: #FFF;
  transition: background-color 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
}
.works-section .works-list.scroll-in {
  background: #191919;
}
.works-section .works-list .swiper-wrapper {
  transition-timing-function: linear !important;
  will-change: transform;
}
.works-section .works-list .works-item {
  color: #FFF;
}
.works-section .works-item {
  padding: 40px;
  overflow: hidden;
}
.works-section .works-item .thumbnail {
  position: relative;
  padding-top: 177.77777778%;
  overflow: hidden;
}
.works-section .works-item .thumbnail img {
  width: 100%;
}
.works-section .works-item .link {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.works-section .works-item .link img {
  filter: grayscale(100%);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.works-section .works-item .name {
  font-size: 18px;
  font-family: 'Futura Std Medium', 'Oswald', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 1.2em 0 0;
  text-align: left;
}
@media only screen and (min-width: 992px) {
  .works-section .works-item .link:hover img {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
    filter: grayscale(0);
  }
}
@media only screen and (max-width: 991.98px) {
  .works-section .works-list {
    padding: 15vw 0 15vw;
  }
  .works-section .works-item {
    padding: 20px;
  }
  .works-section .works-item .name {
    font-size: 16px;
    margin: 1em 0 0;
  }
  .works-section.scroll-in .works-item .link img {
    filter: grayscale(0);
  }
}
.service-list .service-item {
  position: relative;
  max-width: 1320px;
  margin: 0 auto 40px;
  padding: 0 20px;
  box-sizing: content-box;
}
.service-list .service-item .header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.service-list .service-item .text {
  text-align: left;
  width: 48%;
  padding-right: 8%;
}
.service-list .service-item .text .title {
  font-size: 18px;
  font-family: 'Futura Std Medium', 'Oswald', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.service-list .service-item .text .description {
  margin-top: 4em;
  margin-bottom: 0.5em;
  line-height: 2.2em;
  letter-spacing: 0.1em;
}
.service-list .service-item .image {
  width: 54%;
  overflow: hidden;
}
.service-list .service-item .image img {
  width: 100%;
  will-change: transform;
  filter: grayscale(100%);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
@media only screen and (min-width: 992px) {
  .service-list .service-item:nth-child(even) .text {
    order: 2;
    padding-right: 0;
    padding-left: 3%;
  }
  .service-list .service-item:nth-child(even) .image {
    order: 1;
  }
  .service-list .service-item .link:hover .image img {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
    filter: grayscale(0);
  }
}
@media only screen and (max-width: 991.98px) {
  .service-list .service-item {
    margin: 0;
    padding: 0 5vw;
  }
  .service-list .service-item .header {
    flex-direction: column;
  }
  .service-list .service-item .text {
    order: 2;
    margin: 10vw 0;
    width: auto;
    padding: 0;
  }
  .service-list .service-item .text .description {
    margin-top: 1.7em;
    line-height: 1.7;
  }
  .service-list .service-item .image {
    order: 1;
    width: auto;
    margin: 0 -5vw;
  }
  .service-list .service-item.scroll-in .image img {
    filter: grayscale(0);
  }
}
.journal-section .journal-grid {
  max-width: 1320px;
  margin: -22px auto;
  padding: 0 20px;
  box-sizing: content-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.journal-section .journal-item {
  width: calc(50% - 22px);
  padding: 22px 0;
}
.journal-section .journal-item .link {
  display: block;
}
.journal-section .journal-item .image {
  display: block;
  overflow: hidden;
}
.journal-section .journal-item .image img {
  width: 100%;
  filter: grayscale(100%);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.journal-section .journal-item .category {
  margin: 2em 0 1.2em;
  font-size: 18px;
  font-family: 'Futura Std Medium', 'Oswald', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}
.journal-section .journal-item .title {
  line-height: 2.2em;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 992px) {
  .journal-section .journal-item .link:hover .image img {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
    filter: grayscale(0);
  }
}
@media only screen and (max-width: 991.98px) {
  .journal-section .journal-grid {
    margin: -2vw auto;
    padding: 0 4vw;
  }
  .journal-section .journal-item {
    width: calc(50% - 2vw);
    padding: 2vw 0;
  }
  .journal-section .journal-item .category {
    margin: 1em 0 0.5em;
    font-size: 16px;
  }
  .journal-section .journal-item .title {
    text-align: justify;
    line-height: 1.7em;
  }
  .journal-section .journal-item.scroll-in .image img {
    filter: grayscale(0);
  }
}
.company-section {
  padding-bottom: 100px;
}
.projects-list .project-item {
  position: relative;
  height: 25vw;
  min-height: 300px;
  overflow: hidden;
}
.projects-list .project-item .background {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
.projects-list .project-item .background .image-filter {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  filter: grayscale(100%);
  -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.projects-list .project-item .background .image {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
}
.projects-list .project-item .link {
  display: block;
}
.projects-list .project-item .info {
  position: absolute;
  left: 0;
  bottom: -10px;
  padding-bottom: 10px;
  background: #FFF;
  display: table;
  width: 50%;
  min-width: 600px;
  max-width: 945px;
  -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.projects-list .project-item .info .logo,
.projects-list .project-item .info .description {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  padding: 35px;
}
.projects-list .project-item .info .logo {
  width: 120px;
  padding-left: 70px;
  box-sizing: content-box;
}
.projects-list .project-item .info .description {
  line-height: 2.2em;
  letter-spacing: 0.1em;
}
.projects-list .project-item:nth-child(even) .info {
  left: 100%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
@media only screen and (min-width: 992px) {
  .projects-list .project-item .link:hover .background .image-filter {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
    filter: grayscale(0);
  }
  .projects-list .project-item .link:hover .info {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  .projects-list .project-item:nth-child(even) .link:hover .info {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@media only screen and (max-width: 991.98px) {
  .projects-list .project-item {
    height: 100vw;
  }
  .projects-list .project-item .background .image {
    top: 0;
    bottom: 0;
  }
  .projects-list .project-item .info {
    width: 100%;
    min-width: 0;
  }
  .projects-list .project-item .info .logo,
  .projects-list .project-item .info .description {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    padding: 5vw;
  }
  .projects-list .project-item .info .logo {
    width: 25%;
    padding-right: 0;
    text-align: center;
  }
  .projects-list .project-item .info .description {
    line-height: 1.7em;
  }
  .projects-list .project-item.scroll-in .background .image-filter {
    filter: grayscale(0);
  }
  .projects-list .project-item.scroll-in .info {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  .projects-list .project-item.scroll-in:nth-child(even) .info {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.page-projects-single .projects-article-hero {
  height: 520px;
}
.page-projects-single .projects-article-hero .image {
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.page-projects-single .projects-article-logo {
  margin: 130px 0;
  text-align: center;
}
.page-projects-single .projects-article-logo img {
  width: 150px;
  filter: grayscale(100%);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.page-projects-single .projects-article-logo a.hover img {
  filter: grayscale(0);
}
.page-projects-single .projects-article-info {
  max-width: 1280px;
  margin: 130px auto;
  padding: 0 5vw;
  text-align: left;
}
.page-projects-single .projects-article-meta {
  float: left;
  width: 48%;
  margin-top: 0.6em;
  font-family: 'Futura Std Medium', 'Oswald', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.05em;
  display: table;
}
.page-projects-single .projects-article-meta .row {
  display: table-row;
}
.page-projects-single .projects-article-meta .col {
  display: table-cell;
  padding: 0.2em 0.5em;
  line-height: 1.4;
}
.page-projects-single .projects-article-meta .col:first-child {
  padding-left: 0;
  white-space: nowrap;
  width: 1%;
  text-transform: uppercase;
}
.page-projects-single .projects-article-meta .col:last-child {
  padding-right: 0;
}
.page-projects-single .projects-article-description {
  margin-left: 52%;
}
.page-projects-single .projects-article-description p {
  line-height: 2.2;
  text-align: justify;
}
@media only screen and (max-width: 991.98px) {
  .page-projects-single .projects-article-hero {
    height: 100vw;
  }
  .page-projects-single .projects-article-logo {
    margin: 60px 0;
  }
  .page-projects-single .projects-article-logo.scroll-in img {
    filter: grayscale(0);
  }
  .page-projects-single .projects-article-info {
    margin: 60px auto;
    padding: 0 5vw;
    flex-direction: column;
  }
  .page-projects-single .projects-article-meta {
    width: auto;
    margin-right: 0;
    margin-top: 0;
    float: none;
  }
  .page-projects-single .projects-article-meta .col:first-child {
    width: 10%;
    white-space: nowrap;
  }
  .page-projects-single .projects-article-description {
    margin-left: 0;
    margin-top: 1.7em;
  }
  .page-projects-single .projects-article-description p {
    line-height: 1.7;
  }
}
.page-works .works-grid {
  max-width: 1680px;
  margin: 0 auto;
  padding: 80px 40px;
  box-sizing: content-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-end;
}
.page-works .works-item {
  width: 20%;
  padding: 30px 40px;
}
@media only screen and (max-width: 1199.98px) {
  .page-works .works-item {
    width: 25%;
  }
}
@media only screen and (max-width: 991.98px) {
  .page-works .works-grid {
    padding: 10vw 2.5vw 0;
  }
  .page-works .works-item {
    width: 33.33333%;
    padding: 0 2.5vw 10vw;
  }
  .page-works .works-item.scroll-in img {
    filter: grayscale(0);
  }
}
@media only screen and (max-width: 767.98px) {
  .page-works .works-item {
    width: 50%;
  }
}
.page-works-single .works-article-title {
  padding: 130px 0 0;
  margin: 0 0 130px 0;
  text-align: center;
  font-size: 18px;
  font-family: 'Futura Std Medium', 'Oswald', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.05em;
}
.page-works-single .works-article-title .subtitle {
  display: block;
  margin-top: 0.4em;
  font-size: 14px;
}
.page-works-single .works-article-title a {
  position: relative;
  z-index: 2;
  display: inline-block;
  line-height: 1.5;
  padding: 0 0.5em;
  overflow: hidden;
  transition: color 0s linear 0.3s;
}
.page-works-single .works-article-title a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  bottom: 0;
  z-index: -1;
  display: block;
  background: #bdc0ba;
  transition: none;
}
.page-works-single .works-article-title a:hover {
  text-decoration: none;
}
.page-works-single .works-article-title a:hover:after {
  right: 0;
  transform: translateX(101%);
  transition: right 0.15s cubic-bezier(1, 0, 1, 1) 0s, transform 0.15s cubic-bezier(0, 0, 0, 1) 0.25s;
}
.page-works-single .works-article-info {
  max-width: 1280px;
  margin: 130px auto;
  padding: 0 5vw;
  text-align: left;
}
.page-works-single .works-article-meta {
  float: left;
  width: 48%;
  margin-top: 0.6em;
  font-family: 'Futura Std Medium', 'Oswald', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.05em;
  display: table;
}
.page-works-single .works-article-meta .row {
  display: table-row;
}
.page-works-single .works-article-meta .col {
  display: table-cell;
  padding: 0.2em 0.5em;
  line-height: 1.4;
}
.page-works-single .works-article-meta .col:first-child {
  padding-left: 0;
  white-space: nowrap;
  width: 1%;
  text-transform: uppercase;
}
.page-works-single .works-article-meta .col:last-child {
  padding-right: 0;
}
.page-works-single .works-article-description {
  margin-left: 52%;
}
.page-works-single .works-article-description p {
  line-height: 2.2;
  text-align: justify;
}
@media only screen and (max-width: 991.98px) {
  .page-works-single .works-article-title {
    padding: 60px 0 0;
    margin: 0 0 60px 0;
  }
  .page-works-single .works-article-info {
    margin: 60px auto;
    padding: 0 5vw;
    flex-direction: column;
  }
  .page-works-single .works-article-meta {
    width: auto;
    max-width: none;
    margin-right: 0;
    margin-top: 0;
    float: none;
  }
  .page-works-single .works-article-meta .row {
    width: 100%;
  }
  .page-works-single .works-article-meta .col {
    white-space: normal;
  }
  .page-works-single .works-article-meta .col:first-child {
    width: 10%;
    white-space: nowrap;
  }
  .page-works-single .works-article-description {
    margin-left: 0;
    margin-top: 1.7em;
  }
  .page-works-single .works-article-description p {
    line-height: 1.7;
  }
}
.page-journal .journal-section {
  padding: 0 0 100px;
}
.page-journal .journal-nav {
  max-width: 600px;
  margin: 0 auto;
}
.page-journal .journal-nav ul {
  display: flex;
  justify-content: space-around;
}
.page-journal .journal-nav a {
  position: relative;
  z-index: 2;
  display: inline-block;
  line-height: 1.5;
  padding: 0 0.5em;
  overflow: hidden;
  transition: color 0s linear 0.3s;
  font-family: 'Futura Std Medium', 'Oswald', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.05em;
  font-size: 20px;
  text-transform: uppercase;
}
.page-journal .journal-nav a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  bottom: 0;
  z-index: -1;
  display: block;
  background: #bdc0ba;
  transition: none;
}
.page-journal .journal-nav a:hover {
  text-decoration: none;
}
.page-journal .journal-nav a:hover:after {
  right: 0;
  transform: translateX(101%);
  transition: right 0.15s cubic-bezier(1, 0, 1, 1) 0s, transform 0.15s cubic-bezier(0, 0, 0, 1) 0.25s;
}
@media only screen and (max-width: 991.98px) {
  .page-journal .journal-section {
    padding: 0 0 50px;
  }
  .page-journal .journal-nav {
    padding: 0 5vw;
  }
  .page-journal .journal-nav a {
    font-size: 16px;
  }
}
.page-journal-single .journal-article-hero img {
  width: 100%;
}
.page-journal-single .journal-article-hero .image {
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.page-journal-single .journal-article-title {
  margin: 0;
  padding: 130px 0 0;
  text-align: center;
  font-size: 20px;
}
.page-journal-single .journal-article-category {
  margin: 2em 0 130px 0;
  text-align: center;
  font-family: 'Futura Std Medium', 'Oswald', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 991.98px) {
  .page-journal-single .journal-article-title {
    padding: 80px 5vw 0;
    margin: 0 0 80px 0;
    font-size: 16px;
    line-height: 1.7;
  }
  .page-journal-single .journal-article-category {
    margin: calc(-80px + 1em) 0 80px 0;
  }
}
.page-service .service-image {
  position: relative;
  padding: 130px 5vw;
  box-sizing: content-box;
  background: #FFF;
  transition: background-color 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
}
.page-service .service-image.scroll-in {
  background: #191919;
}
.page-service .service-image-graphic {
  position: relative;
  width: 662px;
  height: 623px;
  margin: 0 auto;
}
.page-service .service-image-graphic .circle {
  display: block;
  border-radius: 100%;
}
.page-service .service-image-graphic .circle .half {
  position: absolute;
  width: 178px;
  height: 356px;
  background: url(../img/service/service_circle.png) no-repeat;
  background-size: auto 100%;
  background-color: #191919;
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  box-sizing: border-box;
}
.page-service .service-image-graphic .circle.hover .half {
  background-color: #FFF;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.page-service .service-image-graphic .circle.hover .label {
  color: #191919;
}
.page-service .service-image-graphic .circle .left {
  border-radius: 356px 0 0 356px;
  background-position: left top;
}
.page-service .service-image-graphic .circle .right {
  margin-left: 178px;
  border-radius: 0 356px 356px 0;
  background-position: right top;
}
.page-service .service-image-graphic .circle-2 .half {
  top: 0;
  left: 153px;
  z-index: 3;
}
.page-service .service-image-graphic .circle-2 .left {
  z-index: 0;
}
.page-service .service-image-graphic .circle-3 .half {
  top: 267px;
  left: 306px;
  z-index: 2;
}
.page-service .service-image-graphic .circle-1 .half {
  top: 267px;
  left: 0;
  z-index: 1;
}
.page-service .service-image-graphic .circle .label {
  position: absolute;
  color: #FFF;
  width: 356px;
  line-height: 356px;
  font-family: 'Futura Std Medium', 'Oswald', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  border-radius: 100%;
}
.page-service .service-image-graphic .circle-2 .label {
  top: 0;
  left: 153px;
  z-index: 3;
}
.page-service .service-image-graphic .circle-3 .label {
  top: 267px;
  left: 306px;
  z-index: 2;
}
.page-service .service-image-graphic .circle-1 .label {
  top: 267px;
  left: 0;
  z-index: 1;
}
.page-service .service-image-description {
  max-width: 1320px;
  margin: 130px auto 0;
}
.page-service .service-image-description p {
  color: #FFF;
  line-height: 2.2;
  text-align: justify;
}
@media only screen and (max-width: 991.98px) {
  .page-service .service-image {
    padding: 10vw 5vw;
  }
  .page-service .service-image-graphic {
    width: auto;
    height: 84vw;
  }
  .page-service .service-image-graphic .circle .half {
    width: 23.73333333vw;
    height: 47.46666667vw;
    background-image: url(../img/service/service_circle_2px.png);
  }
  .page-service .service-image-graphic .circle .left {
    border-radius: 47.46666667vw 0 0 47.46666667vw;
  }
  .page-service .service-image-graphic .circle .right {
    margin-left: 23.73333333vw;
    border-radius: 0 100vw 100vw 0;
  }
  .page-service .service-image-graphic .circle-2 .half {
    top: 0;
    left: 20.4vw;
  }
  .page-service .service-image-graphic .circle-3 .half {
    top: 35.6vw;
    left: 40.8vw;
  }
  .page-service .service-image-graphic .circle-1 .half {
    top: 35.6vw;
    left: 0;
  }
  .page-service .service-image-graphic .circle .label {
    width: 47.46666667vw;
    line-height: 47.46666667vw;
  }
  .page-service .service-image-graphic .circle-2 .label {
    top: 0;
    left: 20.4vw;
  }
  .page-service .service-image-graphic .circle-3 .label {
    top: 35.6vw;
    left: 40.8vw;
  }
  .page-service .service-image-graphic .circle-1 .label {
    top: 35.6vw;
    left: 0;
  }
  .page-service .service-image-description {
    margin-top: 5vw;
  }
}
.page-service .service-list {
  margin-top: 130px;
}
.page-service .service-item .sub-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 -40px;
}
.page-service .service-item .sub-item {
  width: 20%;
  padding: 40px;
  text-align: left;
}
.page-service .service-item .sub-item .sub-title {
  font-family: 'Futura Std Medium', 'Oswald', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.page-service .service-item .sub-item ul {
  margin-top: 2.2em;
}
.page-service .service-item .sub-item li {
  margin: 0.4em 0;
}
.page-service .service-item:nth-child(even) .sub-list {
  justify-content: flex-end;
}
.page-service .service-item.scroll-in .image img {
  filter: grayscale(0);
}
@media only screen and (max-width: 991.98px) {
  .page-service .service-list {
    margin-top: 0;
  }
  .page-service .service-item:not(:first-child) {
    margin-top: 40px;
  }
  .page-service .service-item .sub-list {
    margin: -5vw -5vw 10vw;
    justify-content: flex-start !important;
  }
  .page-service .service-item .sub-item {
    width: 50%;
    padding: 5vw;
  }
}
.page-company .quote-slider {
  margin: 0 auto;
}
@media only screen and (max-width: 991.98px) {
  .page-company .quote-slider {
    margin: 0 auto;
  }
}
.quote-slider {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
  box-sizing: content-box;
}
.quote-slider .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.quote-slider .quote-item {
  text-align: left;
}
.quote-slider .quote-item .title {
  font-size: 18px;
  font-family: 'Futura Std Medium', 'Oswald', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}
.quote-slider .quote-item .description {
  margin: 1.5em 0 3em;
  text-align: left;
  line-height: 2.2em;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 991.98px) {
  .quote-slider {
    padding: 0 10vw;
  }
  .quote-slider .quote-item {
    padding: 0 2vw;
    text-align: left;
  }
  .quote-slider .quote-item .title {
    font-size: 18px;
    font-family: 'Futura Std Medium', 'Oswald', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
  }
  .quote-slider .quote-item .description {
    margin: 1.7em 0 0;
    line-height: 1.7em;
    text-align: justify;
  }
  .quote-slider .swiper-button-prev,
  .quote-slider .swiper-button-next {
    top: calc(50% + 23px);
    width: 16px;
    background-size: 16px 44px;
  }
}
.page-error .error-message {
  max-width: 960px;
  margin: 0 auto;
}
.page-error .error-message p {
  font-size: 16px;
  line-height: 2.2;
}
.page-error .error-message a.back {
  position: relative;
  z-index: 2;
  display: inline-block;
  line-height: 1.5;
  padding: 0 0.5em;
  overflow: hidden;
  transition: color 0s linear 0.3s;
  font-size: 18px;
  font-family: 'Futura Std Medium', 'Oswald', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.page-error .error-message a.back:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  bottom: 0;
  z-index: -1;
  display: block;
  background: #bdc0ba;
  transition: none;
}
.page-error .error-message a.back:hover {
  text-decoration: none;
}
.page-error .error-message a.back:hover:after {
  right: 0;
  transform: translateX(101%);
  transition: right 0.15s cubic-bezier(1, 0, 1, 1) 0s, transform 0.15s cubic-bezier(0, 0, 0, 1) 0.25s;
}
