@charset "UTF-8";
/* 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;
}

html {
  overflow-y: scroll;
}

img,
object,
embed,
input, select {
  vertical-align: middle;
}

*, :after, :before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.3rem;
}

.cf:after, .clearfix:after, #content:after {
  content: "";
  clear: both;
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/**
 * Swiper 4.4.2
 * 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: November 1, 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 {
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -ms-flex-align: start;
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  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 {
  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: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  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: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  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'%23007aff'%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'%23007aff'%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;
  transition: 300ms opacity;
  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 {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  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;
  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: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  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%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  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: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: 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%;
  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;
  transform-origin: 50%;
  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");
}
@keyframes swiper-preloader-spin {
  100% {
    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 {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  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;
  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 {
  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;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="50" /></filter></svg>#filter');
  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;
}

/* ==============================================
 BASE STYLE
============================================== */
html, body {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  background: #fff;
  color: #090e13;
  font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
  font-weight: 300;
  text-align: center;
  min-width: 320px;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  /* menu オープン時などfixedに */
}
body.fixed {
  position: fixed;
  left: 0;
  top: 0;
}

a {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.5);
}
a:link {
  color: #22a9ff;
}
a:visited {
  color: #22a9ff;
}
a:hover {
  text-decoration: none;
  color: #22a9ff;
}
a:active {
  color: #22a9ff;
}

a:link, a:visited, a:hover, a:active {
  color: #090e13;
}

/* layout parts
---------------------------------------------------------- */
#wrapper {
  position: relative;
  width: 100%;
  line-height: 1.714;
  text-align: left;
  /* 基本テキストサイズ */
}
@media (max-width: 896px) {
  #wrapper {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media (min-width: 897px) {
  #wrapper {
    font-size: 14px;
    font-size: 1.4rem;
    background: url(/assets/images/common/bg_main_full.png) 50% 50% repeat;
    background-size: contain;
  }
}
@media (min-width: 1441px) {
  #wrapper {
    font-size: 14px;
    font-size: 1.4rem;
    background: url(/assets/images/common/bg_main_full.png) center top repeat;
  }
}

#content {
  position: relative;
  width: 100%;
  word-wrap: break-word;
}
/* common parts
---------------------------------------------------------- */
@media (max-width: 896px) {
  .cPC {
    display: none !important;
  }

  .cSP {
    display: inline-block !important;
  }

  .cTitle {
    position: relative;
    font-family: "Montserrat", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 700;
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 1;
    display: inline-block;
    margin-bottom: 30px;
  }
  .cTitle::before {
    position: absolute;
    left: -30px;
    top: 0;
    width: 10px;
    height: 100%;
    content: "";
    background: #30d1e4;
  }

  .cTitle02 {
    font-family: "Montserrat", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 20px;
    line-height: 1;
  }

  .cTitleRL {
    position: relative;
    font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 300;
    font-size: 45px;
    font-size: 4.5rem;
    line-height: 1;
    padding-bottom: 25px;
    margin-bottom: 24px;
  }
  .cTitleRL::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 0.6em;
    height: 4px;
    background: #30d1e4;
  }

  .cLiner {
    font-family: "Montserrat", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 300;
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 30px;
    line-height: 1;
  }

  .cTtl {
    font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 300;
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 15px;
    line-height: 1;
  }
  .cTtl span {
    font-size: 12px;
    font-size: 1.2rem;
    display: block;
    margin-top: 0.4em;
  }

  .cBtn1 a {
    position: relative;
    width: 100%;
    height: 60px;
    font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2.667;
    text-align: center;
    background: #090e13;
    color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    overflow: hidden;
  }
  .cBtn1 a::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #30d1e4;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .cBtn1 a span {
    position: relative;
    z-index: 1;
  }
  .cBtn1 a::after {
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 15px;
    height: 15px;
    content: "";
    background: url(/assets/images/common/ico_link.svg) center top no-repeat;
    background-size: contain;
  }
  .isPC .hoverable .cBtn1 a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  .isSP .cBtn1 a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }

  .cBtn2 a {
    width: 180px;
    font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 400;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 2.2;
    text-align: center;
    border: 1px solid #cececc;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .isPC .hoverable .cBtn2 a:hover {
    color: #fff;
    border: 1px solid #30d1e4;
    background: #30d1e4;
  }
  .isSP .cBtn2 a:hover {
    color: #fff;
    border: 1px solid #30d1e4;
    background: #30d1e4;
  }
}
@media (min-width: 897px) {
  .cPC {
    display: inline-block !important;
  }

  .cSP {
    display: none !important;
  }

  .cTitle {
    position: relative;
    font-family: "Montserrat", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 700;
    font-size: 48px;
    font-size: 4.8rem;
    line-height: 1;
    display: inline-block;
    margin-bottom: 40px;
  }
  .cTitle::before {
    position: absolute;
    left: -66px;
    top: 0;
    width: 45px;
    height: 45px;
    content: "";
    background: url(/assets/images/top/ico_title.svg) center top no-repeat;
    background-size: contain;
  }

  .cTitle02 {
    font-family: "Montserrat", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 30px;
    line-height: 1;
  }

  .cTitleRL {
    position: relative;
    font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 300;
    font-size: 60px;
    font-size: 6rem;
    line-height: 1;
    padding-bottom: 30px;
    margin-bottom: 24px;
  }
  .cTitleRL::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 0.6em;
    height: 4px;
    background: #30d1e4;
  }

  .cLiner {
    font-family: "Montserrat", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 300;
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 30px;
    line-height: 1;
  }

  .cTtl {
    font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 300;
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 30px;
    line-height: 1;
  }
  .cTtl span {
    font-size: 12px;
    font-size: 1.2rem;
    display: block;
    margin-top: 0.4em;
  }

  .cBtn1 a {
    position: relative;
    width: 33.3333333333%;
    height: 90px;
    font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2.667;
    text-align: center;
    background: #090e13;
    color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    overflow: hidden;
  }
  .cBtn1 a::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #30d1e4;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .cBtn1 a span {
    position: relative;
    z-index: 1;
  }
  .cBtn1 a::after {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 15px;
    height: 15px;
    content: "";
    background: url(/assets/images/common/ico_link.svg) center top no-repeat;
    background-size: contain;
  }
  .isPC .hoverable .cBtn1 a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  .isSP .cBtn1 a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }

  .cBtn2 a {
    width: 180px;
    font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 700;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 2.667;
    text-align: center;
    border: 1px solid #cececc;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .isPC .hoverable .cBtn2 a:hover {
    color: #fff;
    border: 1px solid #30d1e4;
    background: #30d1e4;
  }
  .isSP .cBtn2 a:hover {
    color: #fff;
    border: 1px solid #30d1e4;
    background: #30d1e4;
  }
}
/* layout parts */
/* 固定ヘッダ分のパディングを持ったw100%のセクション */
.cSection {
  position: relative;
  width: 100%;
  text-align: center;
  font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
  font-weight: 300;
}

/* セクション内のコンテンツ挿入部分 */
.cInnerArea {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
@media (max-width: 896px) {
  .cInnerArea {
    padding: 60px 0 30px;
    margin: 0 30px;
  }
}
@media (min-width: 897px) {
  .cInnerArea {
    width: 75%;
    max-width: 1100px;
    padding: 120px 0 0;
  }
}
@media (min-width: 1441px) {
  .cInnerArea {
    max-width: 1100px;
    padding: 120px 10px 0;
  }
}

/* aタグ用 */
.isPC .hoverable .cAlpha {
  text-decoration: none;
}
.isPC .hoverable .cAlpha:hover {
  opacity: 0.6;
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.isSP .cAlpha {
  text-decoration: none;
}
.isSP .cAlpha:hover {
  opacity: 0.5;
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* -------------- noscript ---------------- */
#browserMessage {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10003;
  transform: translate(-50%, -50%);
  width: 90%;
  padding: 20px;
  border: #090e13 4px solid;
  background-color: #fff;
  color: #252525;
  text-align: center;
  line-height: 1.8;
}
#browserMessage dt {
  color: #090e13;
  font-size: 18px;
  font-size: 1.8rem;
}
#browserMessage dd {
  margin-top: 4px;
  font-size: 14px;
  font-size: 1.4rem;
}

/* header parts
---------------------------------------------------------- */
#menu {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#menu .scrollBox {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  /* Optional but highly reccomended: enables momentum scrolling on iOS */
  -webkit-overflow-scrolling: touch;
}
#menu .gnavi > li > a {
  position: relative;
  display: inline-block;
  color: #090e13;
  text-decoration: none;
}
.isPC #menu .gnavi > li > a:hover {
  color: #30d1e4;
}
.isSP #menu .gnavi > li > a.hover {
  color: #30d1e4;
}
#menu .snavi > li > a {
  position: relative;
  display: inline-block;
  color: #090e13;
  text-decoration: none;
}
.isPC #menu .snavi > li > a:hover {
  color: #30d1e4;
}
.isSP #menu .snavi > li > a.hover {
  color: #30d1e4;
}
@media (max-width: 896px) {
  #menu {
    transform: translateY(-100%);
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.8;
    transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: 10000;
  }
  #menu.opened {
    transform: translateY(0);
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .isLegacy #menu {
    display: none;
  }
  #menu.fixed {
    position: fixed;
    left: 0px;
    top: 0px;
  }
  #menu.opened {
    position: fixed;
  }
  #menu .scrollBox {
    width: 100%;
    background: #fff;
  }
  #menu .inner1 {
    position: relative;
    padding-left: 59px;
  }
  #menu .gnavi {
    position: relative;
    padding-top: 113px;
    padding-bottom: 27.5px;
    font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 700;
    font-size: 32px;
    font-size: 3.2rem;
    text-align: left;
    line-height: 1;
  }
  #menu .gnavi li {
    margin-bottom: 12px;
  }
  #menu .gnavi::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 90px;
    height: 1px;
    background: #cececc;
  }
  #menu .snavi {
    position: relative;
    padding-top: 23px;
    padding-bottom: 16px;
    font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    font-size: 1.6rem;
    text-align: left;
    line-height: 1;
  }
  #menu .snavi li {
    margin-bottom: 13.5px;
  }
  #menu .logo {
    width: 97px;
    padding-bottom: 46px;
  }
  #menu .logo img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 897px) {
  #menu {
    width: 100%;
    height: 80px;
    transform: translateY(-80px);
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid #cececc;
    transition: background 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    position: fixed;
    left: 0px;
    top: 0px;
  }
  #menu.shown {
    background: #fff;
    transform: translateY(0);
    opacity: 1;
  }
  #menu.hold {
    background: #fff;
    transform: translateY(0);
    opacity: 1;
    transition: none;
  }
  .isLegacy #menu {
    display: none;
  }
  #menu .scrollBox {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
  }
  #menu .inner1 {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
  }
  #menu .naviWrapper {
    display: -ms-flexbox;
    display: flex;
    max-width: 798px;
    -ms-flex: 3 0 auto;
        flex: 3 0 auto;
  }
  #menu .gnavi {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex: 1.25 0 auto;
        flex: 1.25 0 auto;
    max-width: 416px;
    height: 80px;
    font-size: 16px;
    font-size: 1.6rem;
    font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 500;
    padding-right: 20px;
    line-height: 1.2;
  }
  #menu .gnavi li {
    white-space: nowrap;
  }
  #menu .gnavi::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 1;
    width: 1px;
    height: 20px;
    background: #cececc;
    transform: translateY(-50%);
  }
  #menu .snavi {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    max-width: 332px;
    height: 80px;
    font-size: 16px;
    font-size: 1.6rem;
    font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 400;
    margin: 0 20px;
    line-height: 1.2;
  }
  #menu .snavi li {
    white-space: nowrap;
  }
  #menu .logo {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    height: 80px;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    padding: 0 3.6363636364vw;
  }
}

#menuBtn {
  position: fixed;
  left: 4px;
  top: 8px;
  z-index: 10001;
}
#menuBtn a {
  display: block;
  width: 48px;
  height: 48px;
  text-decoration: none;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#menuBtn a span {
  width: 24px;
  height: 1px;
  display: block;
  background: #090e13;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -12px;
  border-radius: 2px;
  transition: all 0.3s;
  text-indent: -9999px;
}
#menuBtn a .middle {
  transform: translateX(0px);
}
#menuBtn a .top {
  transform: translateY(-5.5px);
}
#menuBtn a .bottom {
  transform: translateY(5.5px);
}
.isPC #menuBtn a:hover {
  transform: scale(1.2);
}
.isPC #menuBtn a:hover:before {
  box-shadow: none;
}
.isPC #menuBtn a:hover:after {
  opacity: 1;
}
.isSP #menuBtn a.hover {
  transform: scale(1.2);
}
.isSP #menuBtn a.hover:before {
  box-shadow: none;
}
.isSP #menuBtn a.hover:after {
  opacity: 1;
}
#menuBtn.opened a:before {
  background: transparent;
  border: 1px solid #090e13;
}
#menuBtn.opened .middle {
  display: none;
}
#menuBtn.opened .top {
  transform: rotate(-45deg) translateY(0px);
}
#menuBtn.opened .bottom {
  transform: rotate(45deg) translateY(0px);
}
@media (max-width: 896px) {
  #menuBtn {
    display: block;
  }
}
@media (min-width: 897px) {
  #menuBtn {
    display: none;
  }
}
/*============================
#footer
============================*/
@media (max-width: 896px) {
  #footer {
    position: relative;
    z-index: 1;
    background: #f3f3f3;
  }
  #footer .cInnerArea {
    padding: 58px 10px 62px;
  }
  #footer .cInnerArea .box {
    width: 100%;
    text-align: left;
  }
  #footer .cInnerArea .box .cTtl {
    margin-bottom: 20px;
  }
  #footer .cInnerArea #subscribe .subscribe-container {
    width: 100%;
    padding: 4px 0 0;
    border-bottom: 1px solid #cececc;
    margin-bottom: 29px;
  }
  #footer .cInnerArea #subscribe .subscribe-container .subscribe-input {
    display: -ms-flexbox;
    display: flex;
  }
  #footer .cInnerArea #subscribe .subscribe-container input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 0;
    padding: 1px 12px;
    background-color: white;
    width: calc(100% - 120px);
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    font-size: 1.6rem;
    font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 300;
    font-size: 14px;
    font-size: 1.4rem;
  }
  #footer .cInnerArea #subscribe .subscribe-btn {
    position: relative;
    text-align: center;
    width: 120px;
    background: #090e13;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-align: center;
    font-size: 12px;
    font-size: 1.2rem;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    transition: 0.5s;
    color: #fff;
    background: #090e13;
    border: none;
    text-decoration: none;
    overflow: hidden;
  }
  #footer .cInnerArea #subscribe .subscribe-btn::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 130%;
    height: 100%;
    background: #30d1e4;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  #footer .cInnerArea #subscribe .subscribe-btn span {
    position: relative;
    z-index: 1;
  }
  #footer .cInnerArea #subscribe .subscribe-btn:hover {
    color: #fff;
  }
  #footer .cInnerArea #subscribe .subscribe-btn:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  #footer .cInnerArea #subscribe .subscribe-sendmsg {
    font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 700;
    padding: 15px 0;
  }
  #footer .cInnerArea #outline {
    padding-top: 60px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 2;
  }
  #footer .cInnerArea #outline .address {
    padding: 15px 0 77px;
  }
  #footer .cInnerArea .sns {
    display: -ms-flexbox;
    display: flex;
  }
  #footer .cInnerArea .sns li {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
  }
  #footer .cInnerArea .sns li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #cececc;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  #footer .cInnerArea .sns li a img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
  }
  .isPC .hoverable #footer .cInnerArea .sns li a:hover {
    background: #30d1e4;
  }
  .isSP #footer .cInnerArea .sns li a:hover {
    background: #30d1e4;
  }
  #footer .cInnerArea #copyright {
    margin-top: 60px;
    font-size: 9px;
    font-size: 0.9rem;
  }
}
@media (min-width: 897px) {
  #footer {
    position: relative;
    z-index: 1;
    background: #f3f3f3;
  }
  #footer .cInnerArea {
    display: -ms-flexbox;
    display: flex;
    padding: 90px 10px 82px;
  }
  #footer .cInnerArea .box {
    max-width: 540px;
    width: 50%;
    text-align: left;
  }
  #footer .cInnerArea .box .cTtl {
    margin-bottom: 40px;
  }
  #footer .cInnerArea #subscribe .subscribe-container {
    width: 66.6666666667%;
    min-width: 290px;
    padding: 4px 0 0;
    border-bottom: 1px solid #cececc;
    margin-bottom: 59px;
  }
  #footer .cInnerArea #subscribe .subscribe-container .subscribe-input {
    display: -ms-flexbox;
    display: flex;
  }
  #footer .cInnerArea #subscribe .subscribe-container input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 12px;
    background-color: white;
    width: calc(100% - 120px);
    height: 29px;
    line-height: 29px;
    font-size: 16px;
    font-size: 1.6rem;
    font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 300;
    font-size: 14px;
    font-size: 1.4rem;
  }
  #footer .cInnerArea #subscribe .subscribe-btn {
    position: relative;
    text-align: center;
    width: 120px;
    background: #090e13;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-align: center;
    font-size: 12px;
    font-size: 1.2rem;
    display: inline-block;
    height: 29px;
    line-height: 29px;
    transition: 0.5s;
    color: #fff;
    background: #090e13;
    border: none;
    text-decoration: none;
    overflow: hidden;
  }
  #footer .cInnerArea #subscribe .subscribe-btn::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 130%;
    height: 100%;
    background: #30d1e4;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  #footer .cInnerArea #subscribe .subscribe-btn span {
    position: relative;
    z-index: 1;
  }
  #footer .cInnerArea #subscribe .subscribe-btn:hover {
    color: #fff;
  }
  #footer .cInnerArea #subscribe .subscribe-btn:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  #footer .cInnerArea #subscribe .subscribe-sendmsg {
    font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 700;
    padding: 30px 0 30px;
  }
  #footer .cInnerArea #outline .address {
    padding: 44px 0 84px;
  }
  #footer .cInnerArea .sns {
    display: -ms-flexbox;
    display: flex;
  }
  #footer .cInnerArea .sns li {
    margin-right: 14px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
  }
  #footer .cInnerArea .sns li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #cececc;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  #footer .cInnerArea .sns li a img {
    position: relative;
    z-index: 2;
  }
  .isPC .hoverable #footer .cInnerArea .sns li a:hover {
    background: #30d1e4;
  }
  .isSP #footer .cInnerArea .sns li a:hover {
    background: #30d1e4;
  }
  #footer .cInnerArea #copyright {
    margin-top: 60px;
    font-size: 9px;
    font-size: 0.9rem;
  }
}
#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  width: 100%;
  min-width: 960px;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
#overlay.pt1 {
  background-color: #030028;
  opacity: 0.902;
}
#overlay.pt2 {
  background-color: #280000;
  opacity: 0.902;
}

/*============================
modal for video
============================*/
#modal {
  display: none;
  opacity: 0;
  z-index: 10002;
  position: fixed;
  top: 100px;
  left: 50%;
  width: 85.3333333333%;
  transform: translateX(-50%);
  max-width: 640px;
}

#videoArea {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

#videoArea iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#modal .imgArea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#modal .imgArea .thumbnail {
  background: #fff;
}
#modal .imgArea .thumbnail img {
  width: 100%;
  height: auto;
  transition: 600ms all cubic-bezier(0.165, 0.84, 0.44, 1);
}
#modal .imgArea .cIcoPlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  transition: 600ms all cubic-bezier(0.165, 0.84, 0.44, 1);
}
#modal .imgArea .cIcoPlay:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -6px;
  border: 6px solid transparent;
  border-left: 12px solid #ff0048;
  transition: 600ms all cubic-bezier(0.165, 0.84, 0.44, 1);
}
.isPC #modal .imgArea:hover img {
  opacity: 0.8;
}
.isPC #modal .imgArea:hover .cIcoPlay {
  transform: translate(-50%, -50%) scale(1.1);
}
.isSP #modal .imgArea.hover img {
  opacity: 0.8;
}
.isSP #modal .imgArea.hover .cIcoPlay {
  transform: translate(-50%, -50%) scale(1.1);
}

#mdlClose {
  text-indent: -9999px;
}
@media (max-width: 896px) {
  #mdlClose {
    position: absolute;
    right: 0;
    top: -34px;
    width: 30px;
    height: 30px;
  }
  #mdlClose a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }
  #mdlClose a .cross {
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(-45deg);
    display: inline-block;
    padding: 0;
    width: 30px;
    height: 30px;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    text-indent: -9999px;
  }
  #mdlClose a .cross::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 2.5px;
    margin-top: -3px;
    background: #fff;
    transition: transform 0.2s ease;
  }
  #mdlClose a .cross::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 2.5px;
    margin-top: -3px;
    background: #fff;
    transition: transform 0.2s ease;
    transform: rotate(-90deg);
  }
  .isPC #mdlClose a:hover .cross {
    opacity: 0.8;
    transform: rotate(-45deg) scale(1.2);
  }
  .isSP #mdlClose a.hover .cross {
    opacity: 0.8;
    transform: rotate(-45deg) scale(1.2);
  }
}
@media (min-width: 897px) {
  #mdlClose {
    position: absolute;
    right: -34px;
    top: -34px;
    width: 30px;
    height: 30px;
  }
  #mdlClose a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }
  #mdlClose a .cross {
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(-45deg);
    display: inline-block;
    padding: 0;
    width: 30px;
    height: 30px;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    text-indent: -9999px;
  }
  #mdlClose a .cross::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 2.5px;
    margin-top: -3px;
    background: #fff;
    transition: transform 0.2s ease;
  }
  #mdlClose a .cross::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 2.5px;
    margin-top: -3px;
    background: #fff;
    transition: transform 0.2s ease;
    transform: rotate(-90deg);
  }
  .isPC #mdlClose a:hover .cross {
    opacity: 0.8;
    transform: rotate(-45deg) scale(1.1);
  }
  .isSP #mdlClose a.hover .cross {
    opacity: 0.8;
    transform: rotate(-45deg) scale(1.1);
  }
}

/*============================
modal for contentDetail
============================*/
#modal2 {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10002;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #fff;
  transform: translateX(-100%);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#modal2.opened {
  transform: translateX(0);
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.isLegacy #modal2 {
  display: none;
}
#modal2.fixed {
  position: fixed;
  left: 0px;
  top: 0px;
}
#modal2 img {
  width: 100%;
  height: auto;
}
#modal2 .scrollBox {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  /* Optional but highly reccomended: enables momentum scrolling on iOS */
  -webkit-overflow-scrolling: touch;
}
#modal2 #mDetailArea {
  width: 100%;
  max-width: 764px;
  margin: 0 auto;
}
#modal2 #mDetailArea .chara08 {
  left: 50%;
  top: 310px;
  margin-left: 220px;
  width: 246px;
}
@media (max-width: 896px) {
  #modal2 figure {
    position: absolute;
    left: 0;
    top: 0px;
    z-index: -1;
  }
  #modal2 .lettertext {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 80%;
    height: auto;
  }
  #modal2 .detailArea {
    width: 84%;
    padding-top: 62.4%;
    margin: 0 auto;
  }
  #modal2 .detailArea.letter {
    position: relative;
    width: 98.6666666667%;
    padding-top: 0;
  }
  #modal2 h3 {
    margin: 0 0 25px;
  }
  #modal2 p {
    margin-bottom: 25px;
  }
  #modal2 #detailM {
    position: relative;
    z-index: 9;
  }
  #modal2 #detailM figure {
    top: 100px;
  }
  #modal2 #detail0 h3 {
    width: 73.3333333333%;
  }
  #modal2 #detail1 h3 {
    width: 81.0666666667%;
  }
  #modal2 #detail2 h3 {
    width: 78.9333333333%;
  }
  #modal2 #detail3 h3 {
    width: 85.6%;
  }
}
@media (min-width: 897px) {
  #modal2 .textArea {
    width: 630px;
    margin: 0 auto;
  }
  #modal2 .letter {
    position: relative;
    width: 930px;
    margin: 0 auto;
  }
  #modal2 .letter img {
    width: 100%;
    height: auto;
  }
  #modal2 .letter .lettertext {
    margin-left: -93px;
  }
  #modal2 h3 {
    margin: -98px 0 54px;
  }
  #modal2 p {
    margin-bottom: 35px;
  }
  #modal2 #detailM {
    position: relative;
    padding: 20px 0;
    z-index: 11;
  }
}

#mdlClose2 {
  text-indent: -9999px;
}
@media (max-width: 896px) {
  #mdlClose2 {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 20;
    width: 40px;
    height: 40px;
  }
  #mdlClose2 a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background: #090e13;
    border-radius: 50%;
  }
  #mdlClose2 a .cross {
    position: absolute;
    right: 5px;
    top: 5px;
    transform: rotate(-45deg);
    display: inline-block;
    padding: 0;
    width: 30px;
    height: 30px;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    text-indent: -9999px;
  }
  #mdlClose2 a .cross::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 2.5px;
    margin-top: -3px;
    background: #fff;
    transition: transform 0.2s ease;
  }
  #mdlClose2 a .cross::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 2.5px;
    margin-top: -3px;
    background: #fff;
    transition: transform 0.2s ease;
    transform: rotate(-90deg);
  }
  .isPC #mdlClose2 a:hover {
    transform: scale(1.2);
  }
  .isSP #mdlClose2 a.hover {
    transform: scale(1.2);
  }
}
@media (min-width: 897px) {
  #mdlClose2 {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 20;
    width: 56px;
    height: 56px;
  }
  #mdlClose2 a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background: #090e13;
    border-radius: 50%;
  }
  #mdlClose2 a .cross {
    position: absolute;
    right: 14px;
    top: 14px;
    transform: rotate(-45deg);
    display: inline-block;
    padding: 0;
    width: 28px;
    height: 28px;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    text-indent: -9999px;
  }
  #mdlClose2 a .cross::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 2.5px;
    margin-top: -3px;
    background: #fff;
    transition: transform 0.2s ease;
  }
  #mdlClose2 a .cross::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 2.5px;
    margin-top: -3px;
    background: #fff;
    transition: transform 0.2s ease;
    transform: rotate(-90deg);
  }
  .isPC #mdlClose2 a:hover {
    transform: scale(1.1);
  }
  .isSP #mdlClose2 a.hover {
    transform: scale(1.1);
  }
}

.home #content {
  padding-bottom: 75px;
}
@media (min-width: 897px) {
  .home #content {
    padding-bottom: 224px;
  }
}
.home .uText1 {
  margin-bottom: 86px;
}
@media (max-width: 896px) {
  .home .uText1 {
    margin-bottom: 36px;
  }
}
.home .jsSplited {
  display: inline-block;
}
@media (max-width: 896px) {
  .home .cTitle::before {
    transition: width 0.4s, opacity 0.8s;
    width: 100%;
    opacity: 0.2;
    background: #fff;
  }
  .home .cTitle.shown::before {
    width: 10px;
    opacity: 1;
    background: #30d1e4;
  }
}
@media (min-width: 897px) {
  .home .cTitle::before {
    z-index: 1;
    transition: left 0.6s, opacity 0.8s;
    left: 90px;
    opacity: 0;
  }
  .home .cTitle.shown::before {
    left: -66px;
    opacity: 1;
  }
}
.home #opening {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10003;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #fff;
}
@media (max-width: 896px) {
  .home #opening {
    width: 100%;
    height: 100%;
    overflow: scroll;
  }
}
@media (min-width: 897px) {
  .home #opening {
    min-height: 768px;
    height: 100vh;
  }
}
.home #mv {
  position: relative;
  height: 100vh;
}
@media (max-width: 896px) {
  .home #mv {
    background: #fff url(/assets/images/top/mainvisual_sp.jpg) right top/contain no-repeat;
  }
  .home #mv .logo {
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 897px) {
  .home #mv {
    background: #fff url(/assets/images/top/mainvisual.jpg) center center/cover;
  }
  .home #mv .logo {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: calc(100vh - 12.5vw);
  }
}
.home #mv #mvNaviWrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
}
@media (max-width: 896px) {
  .home #mv #mvNaviWrapper {
    display: none;
  }
}
@media (min-width: 897px) {
  .home #mv #mvNaviWrapper {
    width: 50vw;
  }
  .home #mv #mvNaviWrapper .mvNavi1 {
    display: -ms-flexbox;
    display: flex;
    background: #ebebeb;
    overflow: hidden;
    font-size: 16px;
    font-size: 1.6rem;
    font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 700;
  }
  .home #mv #mvNaviWrapper .mvNavi1 li {
    position: relative;
    width: 25%;
    max-width: 180px;
    max-height: 180px;
  }
  .home #mv #mvNaviWrapper .mvNavi1 li::before {
    display: block;
    content: "";
    padding-top: 100%;
  }
  .home #mv #mvNaviWrapper .mvNavi1 li a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    text-decoration: none;
    overflow: hidden;
  }
  .home #mv #mvNaviWrapper .mvNavi1 li a::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 130%;
    height: 100%;
    background: #30d1e4;
    transform-origin: left top;
    transform: skewX(-15deg) scale(0, 1);
    opacity: 0.2;
    transition: transform 0.45s, opacity 0.8s;
  }
  .home #mv #mvNaviWrapper .mvNavi1 li a span {
    position: relative;
    z-index: 1;
  }
  .home #mv #mvNaviWrapper .mvNavi1 li a:hover {
    color: #fff;
  }
  .home #mv #mvNaviWrapper .mvNavi1 li a:hover::before {
    opacity: 1;
    transform: skewX(-15deg) scale(1, 1);
  }
  .home #mv #mvNaviWrapper .mvNavi1 li:nth-of-type(1) a {
    background: #fff;
  }
  .home #mv #mvNaviWrapper .mvNavi1 li:nth-of-type(2) a {
    background: #fafafa;
  }
  .home #mv #mvNaviWrapper .mvNavi1 li:nth-of-type(3) a {
    background: #f5f5f5;
  }
  .home #mv #mvNaviWrapper .mvNavi1 li:nth-of-type(4) a {
    background: #f0f0f0;
  }
  .home #mv #mvNaviWrapper .mvNavi2 {
    position: absolute;
    top: 100%;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    overflow: hidden;
    background: rgba(9, 14, 19, 0.8);
    font-size: 16px;
    font-size: 1.6rem;
    font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 700;
  }
  .home #mv #mvNaviWrapper .mvNavi2 li {
    position: relative;
    width: 25%;
    max-width: 180px;
    max-height: 180px;
  }
  .home #mv #mvNaviWrapper .mvNavi2 li::before {
    display: block;
    content: "";
    padding-top: 50%;
  }
  .home #mv #mvNaviWrapper .mvNavi2 li a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
  }
  .home #mv #mvNaviWrapper .mvNavi2 li a::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 160%;
    height: 100%;
    background: #30d1e4;
    transform-origin: left top;
    transform: skewX(-30deg) scale(0, 1);
    opacity: 0.2;
    transition: transform 0.6s, opacity 0.7s;
  }
  .home #mv #mvNaviWrapper .mvNavi2 li a span {
    position: relative;
    z-index: 1;
  }
  .home #mv #mvNaviWrapper .mvNavi2 li a:hover {
    color: #fff;
  }
  .home #mv #mvNaviWrapper .mvNavi2 li a:hover::before {
    opacity: 1;
    transform: skewX(-30deg) scale(1, 1);
  }
  .home #mv #mvNaviWrapper .mvNavi2 li:nth-of-type(1) a {
    background: #090e13;
  }
  .home #mv #mvNaviWrapper .mvNavi2 li:nth-of-type(2) a {
    background: #161a1f;
  }
  .home #mv #mvNaviWrapper .mvNavi2 li:nth-of-type(3) a {
    background: #21262a;
  }
  .home #mv #mvNaviWrapper .mvNavi2 li:nth-of-type(4) a {
    background: #2e3236;
  }
}
.home #vision {
  position: relative;
}
@media (max-width: 896px) {
  .home #vision::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: calc(100% - 60*0.5px);
    background: #f3f3f3;
  }
  .home #vision .ttlArea {
    text-align: left;
  }
  .home #vision .detailArea {
    margin: 0 -30px;
    text-align: left;
  }
  .home #vision .detailArea li {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    overflow: hidden;
  }
  .home #vision .detailArea li + li {
    margin-top: 30px;
  }
  .home #vision .detailArea .embed-responsive-item {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 897px) {
  .home #vision {
    margin-top: 12.5%;
  }
  .home #vision .cInnerArea {
    padding-top: 0;
  }
  .home #vision::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 50%;
    height: 360px;
    background: #f3f3f3;
  }
  .home #vision .ttlArea {
    padding-top: 58px;
    margin: 0 16.6666666667%;
    text-align: left;
  }
  .home #vision .detailArea {
    margin-left: 16.6666666667%;
    text-align: left;
  }
  .home #vision .detailArea li {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    overflow: hidden;
  }
  .home #vision .detailArea li + li {
    margin-top: 93px;
  }
  .home #vision .detailArea .embed-responsive-item {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
}
.home #about {
  position: relative;
}
@media (max-width: 896px) {
  .home #about .ttlArea {
    text-align: left;
  }
  .home #about .detailArea {
    text-align: left;
  }
  .home #about .detailArea li {
    position: relative;
    width: 100%;
  }
  .home #about .detailArea li figure {
    width: 100%;
  }
  .home #about .detailArea li figure img {
    width: 100%;
    height: auto;
  }
  .home #about .detailArea li dl {
    background: #f3f3f3;
    width: 100%;
    padding: 30px;
  }
  .home #about .detailArea li + li {
    margin-top: 30px;
  }
  .home #about .detailArea .embed-responsive-item {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .home #about .cBtn1 {
    margin-top: 30px;
  }
}
@media (min-width: 897px) {
  .home #about .ttlArea {
    padding-top: 58px;
    width: 66.6666666667%;
    text-align: left;
  }
  .home #about .detailArea {
    text-align: left;
  }
  .home #about .detailArea li {
    position: relative;
    width: 100%;
  }
  .home #about .detailArea li figure {
    width: 83.3333333333%;
    padding-bottom: 60px;
  }
  .home #about .detailArea li figure img {
    width: 100%;
    height: auto;
  }
  .home #about .detailArea li dl {
    position: absolute;
    right: 0;
    top: 62px;
    background: #f3f3f3;
    width: 50%;
    height: 100%;
    padding: 46px 42px;
  }
  .home #about .detailArea li + li {
    margin-top: 120px;
  }
  .home #about .detailArea li:nth-of-type(even) figure {
    margin-left: 16.6666666667%;
  }
  .home #about .detailArea li:nth-of-type(even) dl {
    position: absolute;
    left: 0;
    top: 62px;
    right: auto;
  }
  .home #about .detailArea .embed-responsive-item {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .home #about .cBtn1 {
    padding-bottom: 177px;
  }
  .home #about .cBtn1 a {
    margin: 0 0 0 auto;
  }
}
.home #business {
  position: relative;
}
@media (max-width: 896px) {
  .home #business .bg1 {
    position: absolute;
    right: 0;
    top: 20%;
    width: 100%;
  }
  .home #business .bg1 img {
    width: 100%;
    height: auto;
  }
  .home #business .ttlArea {
    text-align: left;
  }
  .home #business .detailArea {
    text-align: left;
  }
  .home #business .detailArea li {
    position: relative;
    margin-bottom: 60px;
  }
  .home #business .detailArea li + li {
    margin-bottom: 28px;
  }
  .home #business .detailArea li img {
    width: 100%;
    height: auto;
    margin-top: 28px;
  }
  .home #business .fullPicArea img {
    width: 100%;
    height: auto;
    max-width: 630px;
  }
}
@media (min-width: 897px) {
  .home #business .bg1 {
    position: absolute;
    right: 50%;
    top: 0;
    width: 50%;
  }
  .home #business .bg1 img {
    width: 100%;
    height: auto;
  }
  .home #business .mainArea {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    padding: 38px 0 38px;
  }
  .home #business .ttlArea {
    padding-top: 138px;
    width: 50%;
    text-align: left;
  }
  .home #business .detailArea {
    text-align: left;
    width: 33.3333333333%;
  }
  .home #business .detailArea li {
    position: relative;
    width: 100%;
  }
  .home #business .detailArea li img {
    width: 100%;
    height: auto;
    margin-top: 38px;
  }
  .home #business .detailArea li + li {
    margin-top: 45px;
  }
  .home #business .fullPicArea img {
    width: 100%;
    height: auto;
  }
}
.home #roadmap {
  position: relative;
}
@media (max-width: 896px) {
  .home #roadmap .ttlArea {
    text-align: left;
  }
  .home #roadmap .ttlArea .cTitle {
    margin-bottom: 44px;
  }
  .home #roadmap .detailArea {
    text-align: left;
    width: 100%;
  }
  .home #roadmap .detailArea li {
    position: relative;
    width: 100%;
  }
  .home #roadmap .detailArea li figure {
    width: 100%;
  }
  .home #roadmap .detailArea li figure img {
    width: 90.4761904762%;
    height: auto;
    max-width: 570px;
  }
}
@media (min-width: 897px) {
  .home #roadmap .cInnerArea {
    width: 100%;
    max-width: 1440px;
    padding-right: 0;
    padding-left: 0;
  }
  .home #roadmap .detailArea {
    padding-top: 16px;
    text-align: left;
    width: 100%;
  }
  .home #roadmap .detailArea li {
    position: relative;
    width: 100%;
  }
  .home #roadmap .detailArea li figure {
    width: 100%;
  }
  .home #roadmap .detailArea li figure img {
    width: 100%;
    height: auto;
  }
}
.home #media {
  position: relative;
}
.home #media .detailArea {
  border-top: #f3f3f3 20px solid;
  border-bottom: #f3f3f3 20px solid;
  text-align: left;
  width: 100%;
  background: #fff;
  text-align: center;
}
@media (max-width: 896px) {
  .home #media .ttlArea {
    text-align: left;
  }
  .home #media .detailArea {
    text-align: left;
    width: 100%;
  }
  .home #media .detailArea ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .home #media .detailArea li {
    position: relative;
    width: 25%;
    margin: 2.7777777778%;
  }
  .home #media .detailArea li figure {
    width: 100%;
  }
  .home #media .detailArea li figure img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 897px) {
  .home #media .detailArea {
    text-align: left;
    width: calc(100% + 1px);
  }
  .home #media .detailArea ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .home #media .detailArea li {
    position: relative;
    width: 16.6666666667%;
    margin: 1.8518518519%;
  }
  .home #media .detailArea li figure {
    width: 100%;
  }
  .home #media .detailArea li figure img {
    width: 100%;
    height: auto;
  }
}
.home #team {
  position: relative;
}
@media (max-width: 896px) {
  .home #team .bg1 {
    position: absolute;
    right: 0;
    top: 20px;
    z-index: 0;
    max-width: 364px;
    width: 48.5333333333%;
    overflow: hidden;
  }
  .home #team .bg1 img {
    width: 100%;
    height: auto;
    margin-bottom: 800px;
  }
  .home #team .bg2 {
    position: absolute;
    left: 0;
    top: 10%;
    z-index: 0;
    width: 48.5333333333%;
    max-width: 364px;
    overflow: hidden;
  }
  .home #team .bg2 img {
    width: 100%;
    height: auto;
    margin-bottom: 300%;
  }
  .home #team .ttlArea {
    text-align: left;
  }
  .home #team .detailArea {
    text-align: center;
    margin: 0 -30px;
    background-size: 100% auto;
  }
  .home #team .detailArea .memberListRow {
    margin: 0 30px;
  }
  .home #team .detailArea .memberListRow dl {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
  }
  .home #team .detailArea .memberListRow dl figure {
    position: relative;
    width: 43.4782608696%;
    max-width: 300px;
    margin: 0 auto 25px;
  }
  .home #team .detailArea .memberListRow dl figure img {
    width: 100%;
    height: auto;
  }
  .home #team .detailArea .memberListRow dl figure::before {
    content: "";
    position: absolute;
    left: -2px;
    top: -2px;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #fff;
    box-sizing: content-box;
  }
  .home #team .detailArea .memberListRow dl figure::after {
    content: "";
    position: absolute;
    left: -4px;
    top: -4px;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid #30d1e4;
    box-sizing: content-box;
  }
  .home #team .detailArea .memberListRow dl dd {
    text-align: left;
  }
  .home #team .cBtn1 {
    margin: 0 30px;
  }
}
@media (min-width: 897px) {
  .home #team .bg1 {
    position: absolute;
    right: 0;
    top: 20px;
    z-index: 0;
    width: 340px;
    height: auto;
    overflow: hidden;
  }
  .home #team .bg1 img {
    width: 100%;
    height: auto;
  }
  .home #team .bg2 {
    position: absolute;
    left: 0;
    top: 20%;
    z-index: 0;
    width: 370px;
    overflow: hidden;
  }
  .home #team .bg2 img {
    width: 100%;
    height: auto;
  }
  .home #team .ttlArea {
    text-align: left;
  }
  .home #team .detailArea {
    padding-top: 16px;
    text-align: center;
    width: 100%;
  }
  .home #team .detailArea .memberListRow {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 75px;
  }
  .home #team .detailArea .memberListRow dl {
    position: relative;
    width: 33.3333333333%;
    margin-right: 16.6666666667%;
  }
  .home #team .detailArea .memberListRow dl figure {
    position: relative;
    width: 155px;
    height: 155px;
    margin: 0 auto 30px;
    padding: 5px;
    border-radius: 50%;
  }
  .home #team .detailArea .memberListRow dl figure img {
    width: 100%;
    height: auto;
  }
  .home #team .detailArea .memberListRow dl figure::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #30d1e4;
  }
  .home #team .detailArea .memberListRow dl figure .cTtl span {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .home #team .detailArea .memberListRow dl dd {
    text-align: left;
  }
  .home #team .detailArea .memberListRow:nth-of-type(even) dl {
    margin-right: 0;
    margin-left: 16.6666666667%;
  }
  .home #team .detailArea .memberListRow + .memberListRow {
    margin-top: 125px;
  }
  .home #team .cBtn1 {
    margin-left: 16.6666666667%;
  }
  .home #team .cBtn1 a {
    width: 40%;
  }
}
.home #partners {
  position: relative;
}
.home #partners .detailArea {
  border-top: #f3f3f3 20px solid;
  border-bottom: #f3f3f3 20px solid;
  text-align: left;
  width: 100%;
  background: #fff;
  text-align: center;
}
@media (max-width: 896px) {
  .home #partners .ttlArea {
    text-align: left;
  }
  .home #partners .detailArea {
    text-align: left;
    width: 100%;
  }
  .home #partners .detailArea ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .home #partners .detailArea li {
    position: relative;
    width: 25%;
    margin: 2.7777777778%;
  }
  .home #partners .detailArea li figure {
    width: 100%;
  }
  .home #partners .detailArea li figure img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 897px) {
  .home #partners .detailArea {
    text-align: left;
    width: calc(100% + 1px);
  }
  .home #partners .detailArea ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .home #partners .detailArea li {
    position: relative;
    width: 16.6666666667%;
    margin: 1.8518518519%;
  }
  .home #partners .detailArea li figure {
    width: 100%;
  }
  .home #partners .detailArea li figure img {
    width: 100%;
    height: auto;
  }
}

.docs #content {
  padding-top: 120px;
  padding-bottom: 60px;
}
@media (min-width: 897px) {
  .docs #content {
    padding-top: 260px;
    padding-bottom: 224px;
  }
}
.docs #content .cInnerArea {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 896px) {
  .docs #content .cInnerArea {
    padding: 0 0 30px;
    margin: 0 30px;
  }
}
@media (min-width: 897px) {
  .docs #content .cInnerArea {
    width: 50%;
    max-width: 1100px;
    padding: 0 0 0;
  }
}
@media (min-width: 1441px) {
  .docs #content .cInnerArea {
    max-width: 1100px;
    padding: 0 10px 0;
  }
}
.docs .cTitle {
  margin-bottom: 59px;
}
@media (min-width: 897px) {
  .docs .cTitle {
    margin-bottom: 52px;
  }
}
.docs .cTtl {
  margin-bottom: 21px;
  line-height: 1.15;
}
@media (min-width: 897px) {
  .docs .cTtl {
    margin-bottom: 20px;
  }
}
.docs .docsArea {
  margin-bottom: 50px;
}
@media (min-width: 897px) {
  .docs .docsArea {
    margin-bottom: 46px;
  }
}
.docs .uText1 + .uText1 {
  margin-top: 2em;
}
.docs .uLinks {
  font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
  font-weight: 700;
  margin: 46px 0 0;
  font-size: 16px;
  font-size: 1.6rem;
}
.docs .uLinks li {
  margin-bottom: 1em;
}
@media (min-width: 897px) {
  .docs .uLinks {
    margin: 46px 0 0;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .docs .uLinks li {
    margin-bottom: 1em;
  }
}
.docs .form {
  margin-top: 10px;
}
@media (min-width: 897px) {
  .docs .form {
    margin-top: 53px;
  }
}
.docs #contact .cInnerArea {
  font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
  font-weight: 700;
  padding-top: 55px;
}
@media (min-width: 897px) {
  .docs #contact .cInnerArea {
    padding-top: 92px;
  }
}
.docs #contact .form #sendmessage {
  display: none;
  color: #30d1e4;
  border: 1px solid #30d1e4;
  text-align: center;
  padding: 15px;
  margin-bottom: 30px;
  font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
}
.docs #contact .form #errormessage {
  display: none;
  color: #ff0048;
  border: 1px solid #ff0048;
  text-align: center;
  padding: 15px;
  margin-bottom: 30px;
  font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
}
.docs #contact .form #sendmessage.show, .docs #contact .form #errormessage.show, .docs #contact .form .show {
  display: block;
}
.docs #contact .form .validation {
  color: #ff0048;
  display: none;
  margin: 0.2em 0 0;
  font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
}
.docs .form-group {
  margin-bottom: 28px;
}
.docs .form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-collapse: collapse;
  border: 1px solid #cececc;
  border-radius: 0;
  padding: 6px 12px;
  background-color: white;
  width: 100%;
  font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 1.4rem;
}
@media (min-width: 897px) {
  .docs .form-control--short {
    width: 50%;
    min-width: 300px;
  }
}
.docs textarea.form-control {
  height: 179px;
}
@media (min-width: 897px) {
  .docs textarea.form-control {
    height: auto;
  }
}
.docs .cBtnSendArea {
  margin-top: -4px;
}
.docs .cBtnSend {
  position: relative;
  width: 180px;
  height: 60px;
  line-height: 60px;
  background: #090e13;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: center;
  display: inline-block;
  color: #fff;
  background: #090e13;
  border: none;
  text-decoration: none;
  overflow: hidden;
  font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.667;
}
.docs .cBtnSend::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 130%;
  height: 100%;
  background: #30d1e4;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.docs .cBtnSend span {
  position: relative;
  z-index: 1;
}
.docs .cBtnSend:hover {
  color: #fff;
}
.docs .cBtnSend:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.partner #content {
  padding-top: 120px;
  padding-bottom: 60px;
}
.partner #content .cInnerArea {
  text-align: left;
  padding-top: 0;
}
.partner #content .cTitle {
  margin-bottom: 60px;
}
.partner #content .cBtn1 a {
  margin: 0 auto;
}
@media (min-width: 897px) {
  .partner #content {
    padding-top: 260px;
    padding-bottom: 224px;
  }
  .partner #content .cTitle {
    margin-bottom: 120px;
  }
}
.partner .partnerArea {
  margin-bottom: 60px;
}
.partner .partnerArea .partnerMain {
  background: #f3f3f3;
  overflow: hidden;
}
.partner .partnerArea .partnerMain figure {
  position: relative;
}
.partner .partnerArea .partnerMain figure img {
  width: 100%;
  height: auto;
}
.partner .partnerArea .partnerMain div {
  padding: 30px;
}
.partner .partnerArea .partnerMain div p {
  line-height: 1.714;
}
.partner .partnerArea .partnerSnaps {
  background: #f3f3f3;
  padding: 30px 20px 20px 30px;
}
.partner .partnerArea .partnerSnaps .uSnaps li {
  text-align: center;
  margin: 0 0 10px;
  width: 100%;
}
.partner .partnerArea .partnerSnaps .uSnaps li img {
  width: 100%;
  height: auto;
  max-width: 510px;
}
@media (min-width: 897px) {
  .partner .partnerArea {
    margin-bottom: 60px;
  }
  .partner .partnerArea .partnerMain {
    background: #f3f3f3;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
        align-items: stretch;
    overflow: hidden;
  }
  .partner .partnerArea .partnerMain figure {
    position: relative;
    width: 33.3333333333%;
  }
  .partner .partnerArea .partnerMain figure.figure--01 {
    background: url(/assets/images/partner/img_main1.jpg) center center/cover no-repeat;
  }
  .partner .partnerArea .partnerMain figure.figure--02 {
    background: url(/assets/images/partner/img_main2.jpg) center center/cover no-repeat;
  }
  .partner .partnerArea .partnerMain figure.figure--03 {
    background: url(/assets/images/partner/img_main3.jpg) center center/cover no-repeat;
  }
  .partner .partnerArea .partnerMain figure img {
    display: none;
  }
  .partner .partnerArea .partnerMain div {
    width: 66.6666666667%;
    min-height: 360px;
    text-align: left;
    padding: 60px;
  }
  .partner .partnerArea .partnerSnaps {
    background: #e7e7e7;
    padding: 45px 35px 35px 45px;
  }
  .partner .partnerArea .partnerSnaps .uSnaps {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .partner .partnerArea .partnerSnaps .uSnaps li {
    margin: 0 10px 10px 0;
    width: calc(25% - 10px);
  }
  .partner .partnerArea .partnerSnaps .uSnaps li img {
    width: 100%;
    height: auto;
  }
}




/* //////////////////////////////////////////////////////////190528追加 */

.topbanner {
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 6.25vw;
}
.topbanner a{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6.25vw;
  background-color: #30d1e4;
}
.topbanner img{
  position: absolute;
  left: 0;
  height: 6.25vw;
  width: auto;
  opacity: 1;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}
.topbanner a:hover img {
  opacity: .5;
  left: 5px;
}
.bannertriangle{
  position: absolute;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 1.5vw 6.25vw 0;
  border-color: transparent rgba(100, 0, 0, 0.1) transparent transparent;
  opacity: 1;
}
.bannerPC {
  position: fixed;
  height: 90px;
  width: 320px;
  bottom: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 999;
}
.bannerPC img{
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}
.bannerPC img:hover {
  opacity: .5;
}
.langmenu {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10001;
  text-decoration: none;
}
.langmenumain {
  position: relative;
  width: 80px;
  height: 80px;
  -webkit-transition: .2s ease-out;
  transition: .2s ease-out;
}
.langmenumain img{
  position: absolute;
  right: 28px;
  top: 28px;
  width: 24px;
  height: 24px;
}
.langmenusub {
  position: absolute;
  width: 180px;
  height: 40px;
  margin: 0px;
  padding: 0px;
  top: 70px;
  right: 10px;
  border-top: 1px solid #bfbfbf;
  box-sizing: border-box;
  display: none;
  -webkit-transition: .2s ease-out;
  transition: .2s ease-out;
}
.langmenusub li {
  position: relative;
  width: 180px;
  height: 40px;
  background-color: #fff;
  color: #090e13;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  border-left: 1px solid #bfbfbf;
  box-sizing: border-box;
  display: block;
}
.langmenusub li a {
  display: block;
  width: 178px;
  height: 39px;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}
.langmenusub:after {
  content:"";
  position: absolute;
  right: 20px;
  top: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #bfbfbf transparent;
  /* display: none; */
}
.langmenumain:hover + .langmenusub {
  display: block;
}
.langmenumain:hover {
  opacity: 0.6;
}
.langmenusub:hover {
  display: block;
}
.langmenusub li:hover {
  background-color: #eeeeee;
}
.nolink a {
  background-color: #eeeeee;
  pointer-events: none;
  color: #bbb;
}
.nolink2 a {
  pointer-events: none;
  color: #bbb;
}
.snsmenu {
  position: absolute;
  width: 100vw;
  height: 40px;
  background-color: #e0e0e0;
  top: 80px;
}
.snsmenu ul{
  position: absolute;
  width: 120px;
  right: 28px;
}
.snsmenu img{
  width: 40px;
  height: 40px;
  float: left;
  -webkit-transition: .2s ease-out;
  transition: .2s ease-out;
}
.snsmenu img:hover {
  opacity: .5;
}

@media (max-width: 896px) {
  .bannerPC, .topbanner {
    display: none;
  }
  .bannerSP {
    position: fixed;
    width: 100vw;
    height: 16vw;
    bottom: 0;
    right: 0;
    background-color: #ffffff;
    z-index: 999;
  }
  .bannerSP img{
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
  }
  .bannerSP img:hover {
    opacity: .5;
  }
  .langmenu {
    display: none;
  }
  .snsnavi {
    margin-top: 20px;
    display: -ms-flexbox;
    display: flex;
  }
  .snsnavi::after {
    content: "";
    position: absolute;
    left: 60px;
    bottom: 150px;
    z-index: 1;
    width: 90px;
    height: 1px;
    background: #cececc;
  }
  .snsnavi li {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
  }
  .snsnavi li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #cececc;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .snsnavi li a img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
  }
  .snsnavi li a:hover {
    background: #30d1e4;
  }
  .langnavi {
    margin-top: 40px;
    display: inline-block;
  }
  .langnavi li {
    position: relative;
    float: left;
    margin-right: 20px;
  }
  .langnavi li a {
    text-decoration: none;
  }
  #menu .gnavi {
    position: relative;
    padding-top: 80px;
    padding-bottom: 10px;
    font-family: "Roboto", "游ゴシック", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Verdana, "Droid Sans", sans-serif;
    font-weight: 700;
    font-size: 32px;
    font-size: 3.2rem;
    text-align: left;
    line-height: 1;
  }
  #menu .gnavi::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 90px;
    height: 1px;
    background: #cececc;
  }
  #menu .snavi::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 90px;
    height: 1px;
    background: #cececc;
  }
  #menu .logo {
    margin-top: 30px;
  }
}

@media (min-width: 897px) {
  .bannerSP {
    display: none;
  }
  .snsnavi {
    display: none;
  }
  .langnavi {
    display: none;
  }
  #menu .gnavi {
    position: relative;
    padding-right: 10px;
    height: 80px;
  }
  #menu .snavi {
    margin: 0 60px 0 10px;
    height: 80px;
  }
  #menu {
    height: 120px;
    transform: translateY(-160px);
    border-bottom: none;
  }
  #menu .scrollBox {
    height: 80px;
  }
}

@media (min-width: 1441px) {
}



