@charset "UTF-8";
html {
  scroll-behavior: smooth; }

body {
  background-color: #000;
  line-height: 1.8em;
  font-size: 14px;
  font-family: "Yu Gothic", YuGothic, Meiryo, "M+ 1p", sans-serif;
  display: block;
  overflow-x: hidden; }

#wrap {
  overflow: hidden; }

.inner {
  width: 1000px;
  margin: 0 auto; }
  @media screen and (max-width: 640px) {
    .inner {
      width: 100%;
      padding: 0 10px; } }
  @media screen and (max-width: 768px) {
    .inner {
      width: 100%;
      padding: 0 10px; } }

img {
  max-width: 100%; }
  @media screen and (max-width: 767px) {
    img {
      width: 100%; } }

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

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

/* =============================================
- COMMON
================================================ */
/* =============================================
- HEADER
================================================ */
/*-----------------------------------------------------------------
	header
----------------------------------------------------------------- */
/*-----------------------------------------------------------------
	navigation
----------------------------------------------------------------- */
#navigation {
  width: 400px;
  height: 100%;
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 999;
  background: rgba(229, 0, 18, 0.9);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  visibility: hidden;
  overflow-y: hidden;
  overflow-x: hidden; }
  #navigation .inner_top {
    background: #000;
    width: 400px;
    height: 100px; }
    #navigation .inner_top .nv_logo {
      width: 250px;
      display: block;
      margin: 0 auto;
      position: relative;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
  #navigation .nav-ttl {
    background-color: #333;
    padding: .4em 0 .2em;
    margin-bottom: 1.5em; }
    #navigation .nav-ttl img {
      width: 90%;
      display: block;
      margin: auto; }

.open #navigation {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  opacity: 1; }

@media screen and (max-width: 640px) {
  #navigation {
    width: 100%; }
    #navigation .inner_top {
      width: 100vw;
      height: 70px; }
      #navigation .inner_top .nv_logo {
        width: 55%;
        padding-top: 5px; } }

/*-----------------------------------------------------------------
	navigation Nav
----------------------------------------------------------------- */
#navigation #nav {
  position: relative;
  font-family: "Yu Gothic", YuGothic, Meiryo, "M+ 1p", sans-serif;
  font-weight: 900;
  width: 400px; }
  #navigation #nav > ul {
    padding: 0px 40px; }
    #navigation #nav > ul li {
      position: relative; }
      #navigation #nav > ul li span {
        display: block;
        text-align: center; }
      #navigation #nav > ul li small {
        font-size: 14px; }
    #navigation #nav > ul a {
      color: #000;
      font-weight: bold;
      display: block;
      padding: 13px 20px;
      font-size: 18px;
      cursor: pointer;
      text-align: center;
      letter-spacing: 0.05em;
      -webkit-transition: all 0.2s ease-in-out;
      -moz-transition: all 0.2s ease-in-out;
      -ms-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
      #navigation #nav > ul a:hover {
        color: #fff; }
      @media screen and (max-width: 640px) {
        #navigation #nav > ul a {
          font-size: 16px; } }
      @media screen and (max-width: 375px) {
        #navigation #nav > ul a {
          font-size: 14px;
          line-height: 1.5em; } }
  #navigation #nav .language {
    margin-top: 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    #navigation #nav .language li a {
      padding: 10px 10px;
      font-size: 14px;
      white-space: nowrap; }
      @media screen and (min-width: 375px) {
        #navigation #nav .language li a {
          font-size: 16px; } }
    #navigation #nav .language li + li a {
      position: relative;
      padding-left: 20px; }
      #navigation #nav .language li + li a:before {
        content: "/";
        position: absolute;
        top: 50%;
        left: 0px;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0);
        color: #000 !important; }
  #navigation #nav .sns {
    margin-top: 50px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    #navigation #nav .sns li {
      width: 35px;
      height: 35px; }
      #navigation #nav .sns li + li {
        margin-left: 25px; }
      #navigation #nav .sns li a {
        display: inline-block;
        padding: 0px; }
    #navigation #nav .sns .svg {
      width: 35px;
      height: 35px; }
  #navigation #nav .line_btn {
    display: block;
    text-align: center;
    margin-top: 1em;
    width: 112.77px;
    margin: 2.5em auto; }

@media screen and (max-width: 640px) {
  #navigation #nav {
    width: 100%;
    font-weight: 900 !important; }
    #navigation #nav > ul {
      padding: 0px 40px 20px; }
      #navigation #nav > ul a {
        padding: 10px 20px;
        font-size: 16px; }
    #navigation #nav .sns {
      margin-top: 30px; } }

@media screen and (max-width: 375px) {
  #navigation #nav {
    width: 100%;
    font-weight: 900; }
    #navigation #nav > ul {
      padding: 0; }
      #navigation #nav > ul a {
        font-size: 14px;
        line-height: 1.5em; }
    #navigation #nav .sns {
      margin-top: 20px; } }

/*-----------------------------------------------------------------
	nav btn
----------------------------------------------------------------- */
#navBtn {
  width: 60px;
  height: 55px;
  position: fixed;
  z-index: 99999;
  top: 0px;
  right: 0px;
  background-color: #e50012;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }
  #navBtn span {
    width: 32px;
    height: 3px;
    background-color: #fff;
    display: block;
    position: absolute;
    top: 45%;
    left: 50%;
    margin-left: -16px;
    margin-top: -1px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in; }
    #navBtn span:after, #navBtn span:before {
      content: "";
      width: 32px;
      height: 3px;
      background-color: #fff;
      display: block;
      position: absolute;
      right: 0px;
      -webkit-transition: all 0.2s ease-in;
      -moz-transition: all 0.2s ease-in;
      -ms-transition: all 0.2s ease-in;
      -o-transition: all 0.2s ease-in;
      transition: all 0.2s ease-in; }
    #navBtn span:after {
      top: -10px; }
    #navBtn span:before {
      bottom: -10px; }
  #navBtn.active span {
    background-color: rgba(0, 0, 0, 0); }
    #navBtn.active span:after {
      top: 0px;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
    #navBtn.active span:before {
      top: 0px;
      -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
      transform: rotate(135deg); }

.open #navBtn {
  right: 400px;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  opacity: 1; }

@media screen and (max-width: 640px) {
  #navBtn {
    width: 40px;
    height: 37px; }
    #navBtn span {
      width: 27px;
      height: 3px;
      left: 55%; }
      #navBtn span:after, #navBtn span:before {
        content: "";
        width: 27px;
        height: 3px; }
      #navBtn span:after {
        top: -8px; }
      #navBtn span:before {
        bottom: -8px; }
  .open #navBtn {
    right: calc(100% - 40px);
    top: 3px;
    background: transparent; } }

/* =============================================
- FOOTER
================================================ */
/*-----------------------------------------------------------------
	footer
----------------------------------------------------------------- */
#footer {
  position: relative;
  background-color: #333; }
  #footer .inner {
    padding: 45px 0 5px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    #footer .inner .ftLogo img {
      width: 300px; }
    #footer .inner .ftLinks ul {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; }
      #footer .inner .ftLinks ul li {
        font-size: 18px;
        font-weight: bold;
        line-height: 1em; }
        #footer .inner .ftLinks ul li + li {
          margin-left: 1em; }
        #footer .inner .ftLinks ul li a {
          color: #fff; }
          #footer .inner .ftLinks ul li a span {
            font-size: 14px;
            margin-right: .7em; }
  #footer .operating {
    color: #fff;
    width: 100%;
    text-align: center;
    margin-top: 1.5em; }
  #footer .sns {
    margin-top: 20px; }
    #footer .sns ul {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
      #footer .sns ul li {
        width: 30px;
        height: 30px; }
        #footer .sns ul li + li {
          margin-left: 30px; }
    #footer .sns .svg {
      width: 30px;
      height: 30px; }
      #footer .sns .svg path, #footer .sns .svg circle {
        fill: #fff; }
  #footer .totop {
    height: 70px;
    background-color: #000; }
    #footer .totop a {
      margin: 0 auto;
      padding: 1em 0;
      width: 60px;
      height: 60px;
      display: block;
      fill: #fff; }

/*  #footer end */
@media screen and (max-width: 768px) {
  #footer {
    padding: 0; }
    #footer .inner {
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-flex-direction: vertical;
      -moz-flex-direction: vertical;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column; }
      #footer .inner .ftLogo {
        margin: 0 auto; }
        #footer .inner .ftLogo img {
          width: 250px; }
      #footer .inner .ftLinks {
        margin: 15px auto 5px; }
        #footer .inner .ftLinks ul {
          -webkit-flex-direction: vertical;
          -moz-flex-direction: vertical;
          -ms-flex-direction: column;
          -webkit-flex-direction: column;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          flex-direction: column;
          -webkit-justify-content: center;
          -moz-justify-content: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center; }
          #footer .inner .ftLinks ul li {
            font-size: 16px;
            line-height: 2em; }
            #footer .inner .ftLinks ul li + li {
              margin-left: 0; }
            #footer .inner .ftLinks ul li a span {
              font-size: 12px; }
    #footer .sns {
      margin: 20px auto; }
    #footer .totop {
      height: 55px; }
      #footer .totop a {
        width: 40px;
        height: 40px;
        display: block;
        fill: #fff; } }

@media screen and (max-width: 640px) {
  #footer {
    padding: 0; }
    #footer .inner {
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-flex-direction: vertical;
      -moz-flex-direction: vertical;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column; }
      #footer .inner .ftLogo {
        margin: 0 auto; }
        #footer .inner .ftLogo img {
          width: 250px; }
      #footer .inner .ftLinks {
        margin: 15px auto 5px; }
        #footer .inner .ftLinks ul {
          -webkit-flex-direction: vertical;
          -moz-flex-direction: vertical;
          -ms-flex-direction: column;
          -webkit-flex-direction: column;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          flex-direction: column;
          -webkit-justify-content: center;
          -moz-justify-content: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center; }
          #footer .inner .ftLinks ul li {
            font-size: 16px;
            line-height: 2em; }
            #footer .inner .ftLinks ul li + li {
              margin-left: 0; }
            #footer .inner .ftLinks ul li a span {
              font-size: 12px; }
    #footer .sns {
      margin: 20px auto; }
    #footer .totop {
      height: 75px; }
      #footer .totop a {
        width: 40px;
        height: 40px;
        display: block;
        fill: #fff; }
        #footer .totop a img {
          margin-top: 5px; } }

/* =============================================
- HOVER
================================================ */
@media screen and (min-width: 768px) {
  #footer .ftLogo a {
    display: inline-block;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    #footer .ftLogo a:hover {
      opacity: 0.8; }
  #footer .ftLinks a {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    #footer .ftLinks a:hover {
      color: #e50012; }
  #footer .Language a {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    #footer .Language a:hover {
      color: #e50012; }
  #footer .banner a {
    display: inline-block;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    #footer .banner a:hover {
      opacity: 0.8; }
  #footer .svg {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    #footer .svg path, #footer .svg circle {
      -webkit-transition: all 0.2s ease-in-out;
      -moz-transition: all 0.2s ease-in-out;
      -ms-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
    #footer .svg:hover path, #footer .svg:hover circle {
      fill: #e50012; } }

/* =============================================
- PARTS
================================================ */
/* =============================================
- PAGE
================================================ */
/*
    mainVisual
----------------------------------------------------------------- */
#mainVisual {
  width: 100%;
  height: 100vh;
  background-image: url(../img/mainvisual01.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 1900px;
  background-color: #000;
  font-family: "Yu Gothic", YuGothic, Meiryo, "M+ 1p", sans-serif;
  position: relative; }
  #mainVisual .inner {
    position: relative;
    width: 1200px;
    height: 100vh; }
    #mainVisual .inner .mv_box {
      position: absolute;
      top: 33%;
      right: 0;
      width: 38%; }
      #mainVisual .inner .mv_box .mv_lead {
        margin-top: 5%; }
        #mainVisual .inner .mv_box .mv_lead h2 {
          color: #fff;
          font-size: 25px;
          font-weight: bold;
          text-align: center;
          margin: 1.2em 0 2.5em; }
        #mainVisual .inner .mv_box .mv_lead p {
          font-size: 16px;
          font-weight: bold;
          color: #fff;
          line-height: 1.9em;
          text-align: center; }

/*  #mainVisual end */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #mainVisual {
    background-image: url(../img/mainvisual01.jpg);
    background-size: 150%; }
    #mainVisual .inner {
      width: 100%; }
      #mainVisual .inner .mv_box {
        position: absolute;
        top: 35%;
        right: 3%;
        width: 45%; }
        #mainVisual .inner .mv_box img {
          max-width: 350px;
          display: block;
          margin: auto; }
        #mainVisual .inner .mv_box .mv_lead {
          margin-top: 5%; }
          #mainVisual .inner .mv_box .mv_lead h2 {
            color: #fff;
            font-size: 20px;
            font-weight: bold;
            text-align: center;
            margin: 1.2em 0 2.5em; }
          #mainVisual .inner .mv_box .mv_lead p {
            font-size: 14px;
            font-weight: bold;
            color: #fff;
            line-height: 1.9em;
            text-align: center; } }

@media screen and (max-width: 768px) {
  #mainVisual {
    background-size: 150%; }
    #mainVisual .inner {
      width: 100%; }
      #mainVisual .inner .mv_box {
        top: 30%;
        width: 48%; }
        #mainVisual .inner .mv_box img {
          max-width: 280px; }
        #mainVisual .inner .mv_box .mv_lead h2 {
          font-size: 20px;
          margin: .8em 0 2em; }
        #mainVisual .inner .mv_box .mv_lead p {
          font-size: 13px; } }

@media screen and (max-width: 640px) {
  #mainVisual {
    background-position: center;
    background-size: cover;
    background-position: center;
    background-image: url(../img/mainvisual01_sp.jpg); }
    #mainVisual .inner {
      width: 100%; }
      #mainVisual .inner .mv_box {
        top: 5%;
        right: auto;
        left: auto;
        width: 95%; }
        #mainVisual .inner .mv_box .mv_logo {
          max-width: 250px;
          display: block;
          margin: auto; }
        #mainVisual .inner .mv_box .mv_lead h2 {
          font-size: 20px;
          margin: .8em 0; }
        #mainVisual .inner .mv_box .mv_lead p {
          font-size: 13px;
          line-height: 1.9em;
          padding: 0 10px; } }

/*
    topics
----------------------------------------------------------------- */
#topics {
  width: 700px;
  bottom: 5%;
  margin: auto; }
  #topics .topics_in {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
    #topics .topics_in h2 {
      width: 180px;
      fill: #fff;
      margin-right: 2em; }
    #topics .topics_in .newsColumn dl {
      color: #fff;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; }
      #topics .topics_in .newsColumn dl dd {
        font-size: 0.9rem;
        margin-left: 1em;
        overflow: hidden;
        white-space: nowrap;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis; }
      #topics .topics_in .newsColumn dl a {
        color: #fff;
        display: block;
        height: 25px;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -ms-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        transition: all 0.2s ease; }
        #topics .topics_in .newsColumn dl a:hover {
          opacity: 0.5; }
      #topics .topics_in .newsColumn dl:last-child {
        padding-bottom: 10px; }

/*  #topics end */
@media screen and (max-width: 640px) {
  #topics {
    position: inherit;
    background-color: #000;
    width: 100%;
    padding: 5%; }
    #topics .topics_in {
      display: inline; }
      #topics .topics_in h2 {
        width: 150px;
        margin-right: 2e0; }
      #topics .topics_in .newsColumn {
        width: 95%;
        margin: auto; }
        #topics .topics_in .newsColumn dl {
          display: inline;
          -webkit-transition: all 0.2s ease;
          -moz-transition: all 0.2s ease;
          -ms-transition: all 0.2s ease;
          -o-transition: all 0.2s ease;
          transition: all 0.2s ease; }
          #topics .topics_in .newsColumn dl dd {
            margin-left: 0; }
          #topics .topics_in .newsColumn dl:last-child {
            padding-bottom: 10px; } }

/*
    movie
----------------------------------------------------------------- */
#movie {
  text-align: center;
  padding: 20px 0; }
  #movie iframe {
    width: 1000px;
    height: 630px; }

/*  #movie end */
@media screen and (max-width: 768px) {
  #movie iframe {
    width: 90%;
    height: 380px; } }

@media screen and (max-width: 640px) {
  #movie {
    width: 100%; }
    #movie iframe {
      width: 95%;
      height: 230px; } }

/*
    technology
----------------------------------------------------------------- */
#technology {
  background-image: url(../img/technology_bg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain; }
  #technology .ttl {
    height: 250px;
    background-repeat: no-repeat;
    background-position: center; }
    #technology .ttl h2 {
      position: relative;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
      #technology .ttl h2 .tec {
        width: 245px;
        display: block;
        margin: 0 auto; }
  #technology .inner {
    padding: 55px 33px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-direction: vertical;
    -moz-flex-direction: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    #technology .inner .box {
      font-size: 16px;
      width: 440px;
      margin-left: auto; }
      #technology .inner .boxTtl {
        font-size: 23px;
        font-weight: bold;
        color: red;
        margin-bottom: 1.5em; }
      #technology .inner .boxTxt {
        color: #fff; }
      #technology .inner .box:nth-child(2) {
        margin-top: 2em;
        margin-bottom: 2em; }

/*  #technology end */
@media screen and (max-width: 768px) {
  #technology {
    background-image: url(../img/technology_bg.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    padding-bottom: 180px;
    background-size: 160%; }
    #technology .ttl {
      height: 180px;
      background-size: 120%; }
      #technology .ttl h2 {
        top: 40%; }
    #technology .inner {
      padding: 20px; }
      #technology .inner .box {
        width: 48%;
        font-size: 13px; }
        #technology .inner .box h3 {
          margin: .5em 0 .6em; }
        #technology .inner .box:nth-child(2) {
          margin-top: 2em;
          margin-bottom: 2em; }
          #technology .inner .box:nth-child(2) a {
            color: #000; }
            #technology .inner .box:nth-child(2) a:hover {
              color: red; }
          #technology .inner .box:nth-child(2) img {
            width: 85%; }
          #technology .inner .box:nth-child(2) .ad {
            margin-top: 1em;
            line-height: 1.5em; }
          #technology .inner .box:nth-child(2) .numplate {
            margin-top: 2em; }
        #technology .inner .box:nth-child(4) {
          margin-top: 2em; }
          #technology .inner .box:nth-child(4) img {
            position: inherit;
            left: 0; } }

@media screen and (max-width: 640px) {
  #technology {
    background-size: 120%;
    padding-bottom: 160px; }
    #technology .ttl {
      height: 120px;
      background-image: url(../img/technology_bg_sp.png); }
      #technology .ttl h2 {
        top: 35%; }
        #technology .ttl h2 .tec {
          width: 245px; }
    #technology .inner {
      padding: 25px; }
      #technology .inner .box {
        font-size: 14px;
        width: 100%;
        margin: 0 auto; }
        #technology .inner .box h3 {
          font-size: 22px;
          letter-spacing: -2px; } }

/*
    lineup
----------------------------------------------------------------- */
#lineup .ttl {
  height: 150px; }
  #lineup .ttl h2 {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
    #lineup .ttl h2 .tec {
      width: 141px;
      display: block;
      margin: 0 auto; }

#lineup .swiper-container {
  height: auto;
  min-height: 400px;
  width: 100%; }
  #lineup .swiper-container .swiper-wrapper .list {
    color: #fff;
    padding: 10px;
    margin-bottom: 50px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px; }
    #lineup .swiper-container .swiper-wrapper .list_img {
      width: 100%; }
    #lineup .swiper-container .swiper-wrapper .list_name {
      font-size: 18px;
      font-weight: bold;
      line-height: 1.3em;
      margin-top: 1em;
      margin-bottom: 1em; }
    #lineup .swiper-container .swiper-wrapper .list .price strong {
      font-size: 30px;
      color: #e50012;
      font-weight: bold; }
    #lineup .swiper-container .swiper-wrapper .list .go-contact {
      font-size: 18px;
      width: 100%;
      color: #fff;
      display: table-caption;
      padding: .5em 1em;
      margin-top: 2.5em;
      border: 1px #fff solid; }

#lineup .swiper-button-prev,
#lineup .swiper-button-next {
  width: 41px;
  height: 81px;
  background-size: 41px 81px; }

#lineup .swiper-button-prev {
  background-image: url(../img/swiper-prev.png);
  left: 0; }

#lineup .swiper-button-next {
  background-image: url(../img/swiper-next.png);
  right: 0; }

#lineup .swiper-scrollbar {
  height: 10px;
  background-color: #fff; }

#lineup .swiper-scrollbar-drag {
  background-color: #e50012;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px; }

/*  #lineup end */
@media screen and (max-width: 768px) {
  .swiper-container .swiper-wrapper .list {
    padding: 10px;
    margin-bottom: 50px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px; }
    .swiper-container .swiper-wrapper .list_img {
      width: 100%; }
    .swiper-container .swiper-wrapper .list_name {
      font-weight: bold;
      line-height: 1.3em;
      margin-top: 1em;
      margin-bottom: .5em; }
    .swiper-container .swiper-wrapper .list .price strong {
      font-size: 30px;
      color: #e50012;
      font-weight: bold; }
    .swiper-container .swiper-wrapper .list .go-contact {
      position: relative;
      width: 100%;
      color: #000;
      display: inline-block;
      text-align: right;
      padding-right: .5em;
      margin-top: 4.5em; }
      .swiper-container .swiper-wrapper .list .go-contact span {
        width: 15px;
        height: 1px;
        background-color: #000;
        display: block;
        position: absolute;
        bottom: 12px;
        left: calc(100% - 4em);
        margin-left: -16px;
        margin-top: -1px;
        -webkit-transition: all 0.2s ease-in;
        -moz-transition: all 0.2s ease-in;
        -ms-transition: all 0.2s ease-in;
        -o-transition: all 0.2s ease-in;
        transition: all 0.2s ease-in; }
        .swiper-container .swiper-wrapper .list .go-contact span:after {
          content: "";
          width: 15px;
          height: 1px;
          background-color: #000;
          display: block;
          position: absolute;
          right: 0px;
          -webkit-transition: all 0.2s ease-in;
          -moz-transition: all 0.2s ease-in;
          -ms-transition: all 0.2s ease-in;
          -o-transition: all 0.2s ease-in;
          transition: all 0.2s ease-in; }
        .swiper-container .swiper-wrapper .list .go-contact span:after {
          -webkit-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
          transform: rotate(90deg); }
  .swiper-button-prev,
  .swiper-button-next {
    width: 41px;
    height: 81px;
    background-size: 41px 81px; }
  .swiper-button-prev {
    background-image: url(../img/swiper-prev.png);
    left: 0; }
  .swiper-button-next {
    background-image: url(../img/swiper-next.png);
    right: 0; }
  .swiper-scrollbar {
    height: 10px;
    background-color: #fff; }
  .swiper-scrollbar-drag {
    background-color: #e50012;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px; } }

/*
    insta
----------------------------------------------------------------- */
#insta .ttl {
  height: 150px; }
  #insta .ttl h2 {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
    #insta .ttl h2 .tec {
      width: 205px;
      display: block;
      margin: 0 auto; }

#insta img {
  width: 1000px;
  margin: auto;
  height: auto; }

#insta .gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: distribute;
  align-content: space-around;
  margin: 0;
  padding: 0; }

#insta .gallery-item {
  margin: .7em;
  width: 145px; }

/*  #insta end */
@media screen and (max-width: 768px) {
  #insta .gallery {
    width: 90%;
    margin: auto; } }

@media screen and (max-width: 640px) {
  #insta .gallery {
    width: 94%;
    -ms-flex-line-pack: justify;
    align-content: space-between; }
  #insta .gallery-item {
    width: 44%; } }

/*
    btnArea
----------------------------------------------------------------- */
#btnArea {
  margin-bottom: 5em; }
  #btnArea .inner {
    text-align: center;
    position: relative; }
    #btnArea .inner:after {
      content: "Â© 2019 SAMURAI SOUL";
      color: #000;
      display: block;
      text-align: right; }
  #btnArea .btn {
    background-color: #e50012;
    text-align: center;
    padding: 20px 50px;
    display: table;
    margin: 0 auto;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5em;
    color: #fff; }
    #btnArea .btn span {
      display: inline-block; }
  #btnArea .fbTimeline {
    display: block;
    margin: 5em auto; }
  #btnArea ._1drm._1ds4 {
    display: none !important; }

/*  #btnArea end */
@media screen and (max-width: 640px) {
  #btnArea .btn {
    font-size: 18px;
    padding: 15px 25px; }
    #btnArea .btn a span {
      display: inline-block; }
  #btnArea .fbTimeline {
    display: block;
    margin: 5em auto; }
  #btnArea ._1drm._1ds4 {
    display: none !important; } }

/*
    dealer
----------------------------------------------------------------- */
#dealer {
  height: auto;
  background-color: #000;
  color: #fff;
  padding-top: 150px; }
  #dealer .ttl .svg {
    width: 150px;
    margin: auto;
    display: block; }
  #dealer .ttl p {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-top: 1.5em; }
  #dealer .dealer_info {
    width: 70%;
    margin: 100px auto 60px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    #dealer .dealer_info img {
      width: 316px;
      height: 220px; }
    #dealer .dealer_infoIn {
      font-size: 16px;
      margin-left: 30px; }
      #dealer .dealer_infoIn dl {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
        #dealer .dealer_infoIn dl dt:before {
          content: "◎";
          margin-right: .5em; }
        #dealer .dealer_infoIn dl dd {
          display: block;
          margin-left: 4.5em; }
      #dealer .dealer_infoIn a {
        color: #fff; }
        #dealer .dealer_infoIn a:hover {
          opacity: .6; }

@media screen and (max-width: 640px) {
  #dealer {
    padding-top: 100px; }
    #dealer .ttl .svg {
      fill: #fff; }
    #dealer .ttl p {
      font-size: 20px; }
    #dealer .dealer_info {
      width: 95%;
      margin: 50px auto 60px;
      -webkit-flex-direction: vertical;
      -moz-flex-direction: vertical;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column; }
      #dealer .dealer_info img {
        width: 100%;
        height: auto; }
      #dealer .dealer_infoIn {
        margin-top: 20px;
        margin-left: 0; } }

/*
    g-map (google map)
----------------------------------------------------------------- */
#g-map {
  padding-bottom: 150px; }
  #g-map .map {
    width: 1000px;
    height: 600px; }

@media screen and (max-width: 640px) {
  #g-map {
    padding-bottom: 150px; }
    #g-map .map {
      width: 100%;
      height: 300px; } }

/*
    privacy
----------------------------------------------------------------- */
.CONFIRM,
.SUCCESS,
.FINISH {
  background-color: #000; }

/*
    contact
----------------------------------------------------------------- */
#contact {
  color: #fff;
  padding-top: 150px; }
  #contact .ttl {
    width: 750px;
    margin-left: auto;
    margin-right: 0; }
    #contact .ttl .svg {
      fill: #fff;
      width: 150px;
      margin: auto;
      display: block; }
    #contact .ttl p {
      font-size: 24px;
      font-weight: bold;
      text-align: center;
      margin-top: 1.5em; }
  #contact .form_area {
    font-size: 18px;
    padding-top: 50px; }
    #contact .form_area .input_name,
    #contact .form_area .input_address,
    #contact .form_area .input_email,
    #contact .form_area .input_email_confirm,
    #contact .form_area .input_phone,
    #contact .form_area .input_detail {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      margin-bottom: 2em; }
      #contact .form_area .input_name label,
      #contact .form_area .input_address label,
      #contact .form_area .input_email label,
      #contact .form_area .input_email_confirm label,
      #contact .form_area .input_phone label,
      #contact .form_area .input_detail label {
        width: 30%;
        padding-top: .5em; }
    #contact .form_area .input_alpha_num,
    #contact .form_area .input_num_only {
      font-size: 18px;
      width: 750px;
      height: 2.4em;
      padding: 10px;
      background-color: #ccc; }
    #contact .form_area .input_detail .input_alpha_num {
      min-height: 500px; }
  #contact .ctrl_btn_area {
    width: 750px;
    margin-left: auto;
    margin-right: 0;
    padding-bottom: 150px; }
    #contact .ctrl_btn_area #btn_submit {
      color: #fff;
      font-size: 20px;
      font-weight: bold;
      background-color: #e50012;
      width: 30%;
      margin: auto;
      padding: 10px;
      display: block; }
  #contact .err_wrap {
    display: none;
    font-size: 14px;
    color: #e50012; }

@media screen and (max-width: 768px) {
  #contact {
    padding-top: 150px; }
    #contact .ttl {
      width: 100%; }
      #contact .ttl .svg {
        fill: #fff;
        width: 150px;
        margin: auto;
        display: block; }
      #contact .ttl p {
        font-size: 24px;
        font-weight: bold;
        text-align: center;
        margin-top: 1.5em; }
    #contact .form_area {
      width: 95%;
      margin: auto; }
      #contact .form_area .input_name,
      #contact .form_area .input_address,
      #contact .form_area .input_email,
      #contact .form_area .input_email_confirm,
      #contact .form_area .input_phone,
      #contact .form_area .input_detail {
        -webkit-flex-direction: vertical;
        -moz-flex-direction: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column; }
        #contact .form_area .input_name label,
        #contact .form_area .input_address label,
        #contact .form_area .input_email label,
        #contact .form_area .input_email_confirm label,
        #contact .form_area .input_phone label,
        #contact .form_area .input_detail label {
          width: 90%;
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex; }
          #contact .form_area .input_name label .err_wrap,
          #contact .form_area .input_address label .err_wrap,
          #contact .form_area .input_email label .err_wrap,
          #contact .form_area .input_email_confirm label .err_wrap,
          #contact .form_area .input_phone label .err_wrap,
          #contact .form_area .input_detail label .err_wrap {
            margin-left: 1em; }
      #contact .form_area .input_alpha_num,
      #contact .form_area .input_num_only {
        width: 100%;
        height: 2.4em;
        padding: 10px;
        background-color: #ccc; }
    #contact .ctrl_btn_area {
      width: 100%; }
    #contact .err_wrap {
      display: none;
      font-size: 14px;
      color: #e50012; } }

@media screen and (max-width: 640px) {
  #contact {
    padding-top: 100px; }
    #contact label {
      -webkit-flex-direction: vertical;
      -moz-flex-direction: vertical;
      -ms-flex-direction: column;
      -webkit-flex-direction: column;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column; }
      #contact label .err_wrap {
        margin-left: 0em !important; }
    #contact .ctrl_btn_area {
      width: 100%; }
      #contact .ctrl_btn_area #btn_submit {
        width: 60%; } }

/*
    内容確認画面
----------------------------------------------------------------- */
.SUCCESS #contact {
  position: relative;
  height: auto;
  min-height: 100vh; }
  .SUCCESS #contact .ttl {
    width: 1000px;
    margin: auto; }
  .SUCCESS #contact .form_area .confirm_name,
  .SUCCESS #contact .form_area .confirm_address,
  .SUCCESS #contact .form_area .confirm_email,
  .SUCCESS #contact .form_area .confirm_phone,
  .SUCCESS #contact .form_area .confirm_detail {
    width: 80%;
    margin: auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-bottom: 2em; }
    .SUCCESS #contact .form_area .confirm_name label,
    .SUCCESS #contact .form_area .confirm_address label,
    .SUCCESS #contact .form_area .confirm_email label,
    .SUCCESS #contact .form_area .confirm_phone label,
    .SUCCESS #contact .form_area .confirm_detail label {
      width: 25%;
      padding-top: .5em; }
  .SUCCESS #contact .form_area #name,
  .SUCCESS #contact .form_area #address,
  .SUCCESS #contact .form_area #email,
  .SUCCESS #contact .form_area #phone,
  .SUCCESS #contact .form_area #detail {
    width: 600px;
    font-size: 18px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
    resize: none; }
  .SUCCESS #contact .form_area #detail {
    min-height: 500px; }
  .SUCCESS #contact .ctrl_btn_area {
    width: 1000px;
    margin: auto; }

@media screen and (max-width: 768px) {
  .SUCCESS #contact .ttl {
    width: 100%;
    margin: auto; }
  .SUCCESS #contact .form_area .confirm_name,
  .SUCCESS #contact .form_area .confirm_address,
  .SUCCESS #contact .form_area .confirm_email,
  .SUCCESS #contact .form_area .confirm_phone,
  .SUCCESS #contact .form_area .confirm_detail {
    width: 90%; }
  .SUCCESS #contact .form_area #name,
  .SUCCESS #contact .form_area #address,
  .SUCCESS #contact .form_area #email,
  .SUCCESS #contact .form_area #phone,
  .SUCCESS #contact .form_area #detail {
    width: 480px; }
  .SUCCESS #contact .form_area #detail {
    min-height: 330px; }
  .SUCCESS #contact .ctrl_btn_area {
    width: 100%; } }

/*
    送信後画面
----------------------------------------------------------------- */
.FINISH #contact {
  position: relative;
  height: auto;
  min-height: 100vh; }
  .FINISH #contact .ttl {
    width: 1000px;
    margin: auto; }
  .FINISH #contact .success_wrap {
    font-size: 18px;
    text-align: center;
    margin-top: 80px; }
    .FINISH #contact .success_wrap span {
      display: inline-block; }

.FINISH .back_btn a {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  background-color: #e50012;
  width: 30%;
  margin: 3em auto;
  padding: 10px;
  display: block; }

@media screen and (max-width: 768px) {
  .FINISH #contact .ttl {
    width: 100%; } }

.privacy_page {
  background-color: #000; }

/*
    privacy
----------------------------------------------------------------- */
#privacy {
  padding: 70px 20px 40px 20px;
  color: #fff; }
  #privacy p {
    font-size: 14px;
    line-height: 1.9em; }
    #privacy p a {
      color: #fff;
      text-decoration: underline; }
    #privacy p .phone {
      text-decoration: none; }
  #privacy .privacy_ttl {
    font-size: 26px;
    text-align: center;
    position: relative;
    display: block;
    margin-bottom: 2em; }
    #privacy .privacy_ttl::before {
      content: '';
      position: absolute;
      bottom: -15px;
      display: inline-block;
      width: 60px;
      height: 3px;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      background-color: #e50012; }
  #privacy .headtext {
    margin-bottom: 25px; }
  #privacy .textArea {
    font-family: "Yu Gothic", YuGothic, Meiryo, "M+ 1p", sans-serif; }
  #privacy .column + .column {
    margin-top: 25px; }
  #privacy .column h3 {
    font-size: 20px;
    margin-bottom: 0.3em; }
  #privacy .column p + p {
    margin-top: 0.8em; }
  #privacy .column .text {
    padding-left: 0.8em; }
  #privacy .column ul {
    margin: 0.8em 0px; }
    #privacy .column ul li {
      padding-left: 1em; }
      #privacy .column ul li + li {
        margin-top: 3px; }
  #privacy .column ol {
    margin: 0.8em 0px; }
    #privacy .column ol li {
      padding-left: 2em; }
      #privacy .column ol li + li {
        margin-top: 3px; }

@media screen and (min-width: 768px) {
  #privacy {
    padding: 80px 20px 60px 20px; }
    #privacy .inner {
      max-width: 800px;
      margin: 0 auto; }
    #privacy p {
      font-size: 15px;
      line-height: 2.0em; } }

@media screen and (min-width: 1400px) {
  #privacy {
    padding: 100px 20px 80px 20px; } }

/*
    privacy
----------------------------------------------------------------- */
#error {
  height: 100vh;
  background-color: #000;
  padding: 250px 20px 40px 20px;
  color: #fff; }
  #error p {
    font-size: 16px;
    text-align: center;
    line-height: 1.9em; }
  #error .error_ttl {
    font-size: 33px;
    font-weight: bold;
    text-align: center;
    position: relative;
    display: block;
    margin-bottom: 2em; }
    #error .error_ttl::before {
      content: '';
      position: absolute;
      bottom: -15px;
      display: inline-block;
      width: 60px;
      height: 3px;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      background-color: #e50012; }
  #error .back_btn a {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    background-color: #e50012;
    width: 30%;
    margin: 3em auto;
    padding: 10px;
    display: block; }

@media screen and (min-width: 768px) {
  #privacy {
    padding: 80px 20px 60px 20px; }
    #privacy .inner {
      max-width: 800px;
      margin: 0 auto; }
    #privacy p {
      font-size: 15px;
      line-height: 2.0em; } }

@media screen and (min-width: 1400px) {
  #privacy {
    padding: 100px 20px 80px 20px; } }

/* =============================================
- LANGUAGE
================================================ */
#mainVisual .mv_box {
  opacity: 0; }
  #mainVisual .mv_box.on {
    -webkit-animation: fadeInUp 1.5s ease-in-out forwards;
    -moz-animation: fadeInUp 1.5s ease-in-out forwards;
    animation: fadeInUp 1.5s ease-in-out forwards;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both; }

#topics .topics_in,
#topics .newsColumn,
#technology .ttl h2,
#lineup .ttl h2,
#lineup .swiper-container,
#insta .ttl,
#insta .timeline {
  opacity: 0; }
  #topics .topics_in.on,
  #topics .newsColumn.on,
  #technology .ttl h2.on,
  #lineup .ttl h2.on,
  #lineup .swiper-container.on,
  #insta .ttl.on,
  #insta .timeline.on {
    -webkit-animation: fadeInUp 1.5s ease-in-out forwards;
    -moz-animation: fadeInUp 1.5s ease-in-out forwards;
    animation: fadeInUp 1.5s ease-in-out forwards;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10%);
    transform: translateY(10%); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%); } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10%);
    transform: translateY(10%); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%); } }

#technology .box img,
#technology .box dl {
  opacity: 0;
  -webkit-transform: translateY(20%);
  -ms-transform: translateY(20%);
  transform: translateY(20%); }

#technology .box .boxTtl,
#technology .box .boxTxt {
  opacity: 0;
  -webkit-transform: translateX(-20%);
  -ms-transform: translateX(-20%);
  transform: translateX(-20%); }

#technology.on .box img,
#technology.on .box dl {
  -webkit-animation: fadeInUp 1.5s ease-in-out forwards;
  -moz-animation: fadeInUp 1.5s ease-in-out forwards;
  animation: fadeInUp 1.5s ease-in-out forwards;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both; }

#technology.on .box .boxTtl,
#technology.on .box .boxTxt {
  -webkit-animation: fadeInLeft 1.5s ease-in-out forwards;
  -moz-animation: fadeInLeft 1.5s ease-in-out forwards;
  animation: fadeInLeft 1.5s ease-in-out forwards;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-5%);
    transform: translateX(-5%); }
  to {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%); } }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-5%);
    transform: translateX(-5%); }
  to {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%); } }

#shop .box {
  opacity: 0; }

#shop.on .box {
  -webkit-animation: fadeInUp 1.5s ease-in-out forwards;
  -moz-animation: fadeInUp 1.5s ease-in-out forwards;
  animation: fadeInUp 1.5s ease-in-out forwards;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both; }
  #shop.on .box:nth-child(1) {
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s; }
  #shop.on .box:nth-child(2) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s; }
  #shop.on .box:nth-child(3) {
    -webkit-animation-delay: 0.75s;
    animation-delay: 0.75s; }
  #shop.on .box:nth-child(4) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s; }
  #shop.on .box:nth-child(5) {
    -webkit-animation-delay: 1.25s;
    animation-delay: 1.25s; }
  #shop.on .box:nth-child(6) {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s; }
  #shop.on .box:nth-child(7) {
    -webkit-animation-delay: 1.75s;
    animation-delay: 1.75s; }
  #shop.on .box:nth-child(8) {
    -webkit-animation-delay: 2s;
    animation-delay: 2s; }
  #shop.on .box:nth-child(9) {
    -webkit-animation-delay: 2.25s;
    animation-delay: 2.25s; }
  #shop.on .box:nth-child(10) {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(5%);
    transform: translateX(5%); }
  to {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%); } }

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(5%);
    transform: translateX(5%); }
  to {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%); } }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

#splashVisual {
  width: 100%;
  height: 100vh;
  background: #000;
  -webkit-transition: height 0.3s ease-in-out, opacity 0.5s ease-in-out;
  -o-transition: height 0.3s ease-in-out, opacity 0.5s ease-in-out;
  transition: height 0.3s ease-in-out, opacity 0.5s ease-in-out;
  overflow: hidden; }
  #splashVisual.ended {
    opacity: 0;
    -webkit-transition-delay: 4s;
    -o-transition-delay: 4s;
    transition-delay: 4s;
    overflow: hidden; }

.splash-first {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition-delay: 2s;
  -o-transition-delay: 2s;
  transition-delay: 2s;
  overflow: hidden;
  position: relative; }
  .splash-first_image {
    width: 100%;
    height: 100%;
    background: #000 url(../img/bg_splash_first.png) 50% 50% no-repeat;
    background-size: 1900px;
    opacity: 1;
    -webkit-transition: opacity 2s 0.5s;
    -o-transition: opacity 2s 0.5s;
    transition: opacity 2s 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; }
    @media screen and (max-width: 640px) {
      .splash-first_image {
        background-size: 200%; } }
  .splash-first_logo {
    width: 40%;
    background-size: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
    position: absolute;
    top: 30%;
    left: 30%;
    z-index: 2; }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .splash-first_logo {
        width: 55%;
        top: 27%;
        left: 25%; } }
    @media screen and (max-width: 640px) {
      .splash-first_logo {
        width: 65%;
        top: 27%;
        left: 20%; } }
    .splash-first_logo .language {
      margin-top: 50px;
      opacity: 0;
      -webkit-transition: opacity 0.5s;
      -o-transition: opacity 0.5s;
      transition: opacity 0.5s;
      -webkit-transition-delay: 1.5s;
      -o-transition-delay: 1.5s;
      transition-delay: 1.5s;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
      .splash-first_logo .language li a {
        padding: 10px 10px;
        font-size: 14px;
        font-weight: bold;
        white-space: nowrap;
        color: #333; }
        @media screen and (min-width: 640px) {
          .splash-first_logo .language li a {
            font-size: 18px; } }
      .splash-first_logo .language li .active {
        color: #fff; }
      .splash-first_logo .language li + li a {
        position: relative;
        padding-left: 20px; }
        .splash-first_logo .language li + li a:before {
          content: "/";
          color: #fff;
          position: absolute;
          top: 50%;
          left: 0px;
          -webkit-transform: translateY(-50%);
          -moz-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
          color: #FFF !important; }
  .splash-first a {
    color: #fff;
    font-size: 1.2rem;
    z-index: 99;
    margin-bottom: 80px;
    margin-top: auto; }
    .splash-first a span {
      position: absolute;
      width: 24px;
      height: 24px;
      margin-left: 12px;
      border-left: 3px solid #fff;
      border-bottom: 3px solid #fff;
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
      -webkit-animation: sdb 1.5s infinite;
      animation: sdb 1.5s infinite;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0; } }

@keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0; } }
  .splash-first.anime-play .splash-first_logo {
    opacity: 1; }
  .splash-first.anime-play .language {
    opacity: 1; }
  .animated .splash-first {
    opacity: 0;
    z-index: -1; }

@-webkit-keyframes door-open-anime {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes door-open-anime {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.splash-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 30%;
  min-height: 310px;
  width: 600px;
  opacity: 0;
  -webkit-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
  -webkit-transition-delay: 4s;
  -o-transition-delay: 4s;
  transition-delay: 4s;
  text-align: center;
  margin-left: auto; }
  @media screen and (min-width: 1024px) and (max-width: 1400px) {
    .splash-content {
      width: 300px; } }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    .splash-content {
      width: 55%;
      min-height: 250px;
      padding-right: 5%;
      padding-left: 5%; } }
  @media screen and (max-width: 768px) {
    .splash-content {
      width: 50%;
      padding-right: 5%;
      padding-left: 5%; } }
  @media screen and (max-width: 640px) {
    .splash-content {
      width: 60%;
      max-width: 300px;
      padding-right: 5%;
      padding-left: 5%; } }
  .splash-content .splash_img {
    max-width: 435px;
    margin-bottom: 20px;
    overflow: hidden; }
    .splash-content .splash_img img {
      max-width: 435px; }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .splash-content .splash_img {
        max-width: 100%; }
        .splash-content .splash_img img {
          max-width: 435px; } }
    @media screen and (max-width: 768px) {
      .splash-content .splash_img {
        max-width: 100%;
        margin-bottom: 5px; }
        .splash-content .splash_img img {
          max-width: 335px; } }
    @media screen and (max-width: 640px) {
      .splash-content .splash_img {
        margin-bottom: 5px; }
        .door_is_open .splash-content .splash_img {
          margin-bottom: 5px;
          -webkit-transition: margin-bottom 0.5s;
          -o-transition: margin-bottom 0.5s;
          transition: margin-bottom 0.5s; } }
  .splash-content .splash_line {
    width: 80px;
    height: 1px;
    background-color: #fff;
    display: block;
    margin: 2em auto; }
    .door_is_open .splash-content .splash_line {
      opacity: 0; }
    @media screen and (max-width: 768px) {
      .splash-content .splash_line {
        width: 60px;
        margin: 1em auto; } }
    @media screen and (max-width: 640px) {
      .splash-content .splash_line {
        width: 60px;
        margin: 1em auto; } }
  .splash-content .splash_btn {
    margin-bottom: 20px;
    width: 350px; }
    @media screen and (max-width: 640px) {
      .splash-content .splash_btn {
        width: 100%;
        margin-bottom: 5px; } }
    .door_is_open .splash-content .splash_btn {
      -webkit-transition: margin-bottom 0.5s ease 0s;
      -o-transition: margin-bottom 0.5s ease 0s;
      transition: margin-bottom 0.5s ease 0s;
      margin-bottom: 0; }
  .splash-content .splash_logo {
    width: 300px; }
    @media screen and (max-width: 640px) {
      .splash-content .splash_logo {
        width: 100%; } }
    .door_is_open .splash-content .splash_logo {
      margin-bottom: 55px;
      -webkit-transition: margin-bottom 0.5s;
      -o-transition: margin-bottom 0.5s;
      transition: margin-bottom 0.5s; }
  .animated .splash-content {
    opacity: 1; }

.fadeup_box {
  -webkit-transition: -webkit-transform 1s ease-in-out 0.5s;
  transition: -webkit-transform 1s ease-in-out 0.5s;
  -o-transition: transform 1s ease-in-out 0.5s;
  transition: transform 1s ease-in-out 0.5s;
  transition: transform 1s ease-in-out 0.5s, -webkit-transform 1s ease-in-out 0.5s; }
  @media screen and (max-width: 640px) {
    .fadeup_box {
      width: 100%; } }
  .fadeup_box > * {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s cubic-bezier(0.34, 0.07, 0.095, 0.995);
    transition: opacity 0.3s, -webkit-transform 0.3s cubic-bezier(0.34, 0.07, 0.095, 0.995);
    -o-transition: transform 0.3s cubic-bezier(0.34, 0.07, 0.095, 0.995), opacity 0.3s;
    transition: transform 0.3s cubic-bezier(0.34, 0.07, 0.095, 0.995), opacity 0.3s;
    transition: transform 0.3s cubic-bezier(0.34, 0.07, 0.095, 0.995), opacity 0.3s, -webkit-transform 0.3s cubic-bezier(0.34, 0.07, 0.095, 0.995); }
    .anime-play .fadeup_box > * {
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
      opacity: 1; }
    .fadeup_box > *.splash_img {
      -webkit-transition-delay: 1s;
      -o-transition-delay: 1s;
      transition-delay: 1s; }
    .fadeup_box > *.splash_line {
      -webkit-transition-delay: 1.2s;
      -o-transition-delay: 1.2s;
      transition-delay: 1.2s; }
    .fadeup_box > *.splash_btn {
      -webkit-transition-delay: 1.4s;
      -o-transition-delay: 1.4s;
      transition-delay: 1.4s; }
    .fadeup_box > *.splash_logo {
      -webkit-transition-delay: 1.6s;
      -o-transition-delay: 1.6s;
      transition-delay: 1.6s; }
    .fadeup_box > *.splash_lang {
      -webkit-transition: height 0.3s, opacity 0.5s ease 1.6s, -webkit-transform 0.3s cubic-bezier(0.34, 0.07, 0.095, 0.995) 1.6s;
      transition: height 0.3s, opacity 0.5s ease 1.6s, -webkit-transform 0.3s cubic-bezier(0.34, 0.07, 0.095, 0.995) 1.6s;
      -o-transition: height 0.3s, opacity 0.5s ease 1.6s, transform 0.3s cubic-bezier(0.34, 0.07, 0.095, 0.995) 1.6s;
      transition: height 0.3s, opacity 0.5s ease 1.6s, transform 0.3s cubic-bezier(0.34, 0.07, 0.095, 0.995) 1.6s;
      transition: height 0.3s, opacity 0.5s ease 1.6s, transform 0.3s cubic-bezier(0.34, 0.07, 0.095, 0.995) 1.6s, -webkit-transform 0.3s cubic-bezier(0.34, 0.07, 0.095, 0.995) 1.6s; }
  .door_is_open .fadeup_box {
    -webkit-transform: translateY(-60px);
    -ms-transform: translateY(-60px);
    transform: translateY(-60px); }
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      .door_is_open .fadeup_box {
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px); } }
    @media screen and (max-width: 640px) {
      .door_is_open .fadeup_box {
        -webkit-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        transform: translateY(-40px); } }

@-webkit-keyframes btn-anime-width {
  0% {
    width: 0; }
  25% {
    width: 100%; }
  90% {
    width: 100%; }
  100% {
    opacity: 0; } }

@keyframes btn-anime-width {
  0% {
    width: 0; }
  25% {
    width: 100%; }
  90% {
    width: 100%; }
  100% {
    opacity: 0; } }

@-webkit-keyframes btn-anime-height {
  0% {
    height: 0; }
  25% {
    height: 100%; }
  90% {
    height: 100%; }
  100% {
    opacity: 0; } }

@keyframes btn-anime-height {
  0% {
    height: 0; }
  25% {
    height: 100%; }
  90% {
    height: 100%; }
  100% {
    opacity: 0; } }

.btn-open {
  display: block;
  width: 50%;
  height: 38px;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
  -webkit-transition: height 0.5s, opacity 0.5s, margin-bottom 0.5s, -webkit-transform 0.3s cubic-bezier(0.34, 0.07, 0.095, 0.995) 1.2s;
  transition: height 0.5s, opacity 0.5s, margin-bottom 0.5s, -webkit-transform 0.3s cubic-bezier(0.34, 0.07, 0.095, 0.995) 1.2s;
  -o-transition: height 0.5s, opacity 0.5s, margin-bottom 0.5s, transform 0.3s cubic-bezier(0.34, 0.07, 0.095, 0.995) 1.2s;
  transition: height 0.5s, opacity 0.5s, margin-bottom 0.5s, transform 0.3s cubic-bezier(0.34, 0.07, 0.095, 0.995) 1.2s;
  transition: height 0.5s, opacity 0.5s, margin-bottom 0.5s, transform 0.3s cubic-bezier(0.34, 0.07, 0.095, 0.995) 1.2s, -webkit-transform 0.3s cubic-bezier(0.34, 0.07, 0.095, 0.995) 1.2s;
  -webkit-tap-highlight-color: transparent; }
  @media screen and (max-width: 640px) {
    .btn-open {
      width: 70%;
      margin-bottom: 5px; } }
  .door_is_open .btn-open {
    height: 0;
    opacity: 0;
    margin-bottom: 0;
    -webkit-transition: height 0.5s, opacity 0.5s, margin-bottom 0.5s, -webkit-transform 0.5s;
    transition: height 0.5s, opacity 0.5s, margin-bottom 0.5s, -webkit-transform 0.5s;
    -o-transition: height 0.5s, opacity 0.5s, margin-bottom 0.5s, transform 0.5s;
    transition: height 0.5s, opacity 0.5s, margin-bottom 0.5s, transform 0.5s;
    transition: height 0.5s, opacity 0.5s, margin-bottom 0.5s, transform 0.5s, -webkit-transform 0.5s; }
  .btn-open::before {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background-color: #e50012;
    -webkit-animation: btn-anime-width 1.5s ease-in-out 0s infinite normal forwards;
    animation: btn-anime-width 1.5s ease-in-out 0s infinite normal forwards;
    position: absolute;
    top: 0;
    left: 0; }
  .btn-open::after {
    content: "";
    display: block;
    width: 1px;
    height: 0;
    background-color: #e50012;
    -webkit-animation: btn-anime-height 1.5s ease-in-out 0s infinite normal forwards;
    animation: btn-anime-height 1.5s ease-in-out 0s infinite normal forwards;
    position: absolute;
    bottom: 0;
    right: 1px; }
  .btn-open:hover::before {
    width: 100%;
    -webkit-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out; }
  .btn-open:hover::after {
    height: 100%;
    -webkit-transition: height 0.3s ease-in-out;
    -o-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out; }
  .btn-open span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%; }
    .btn-open span::before {
      content: "";
      display: block;
      width: 0;
      height: 1px;
      background-color: #e50012;
      -webkit-animation: btn-anime-width 1.5s ease-in-out 0s infinite normal forwards;
      animation: btn-anime-width 1.5s ease-in-out 0s infinite normal forwards;
      position: absolute;
      bottom: 0;
      right: 0; }
    .btn-open span::after {
      content: "";
      display: block;
      width: 1px;
      height: 0;
      background-color: #e50012;
      -webkit-animation: btn-anime-height 1.5s ease-in-out 0s infinite normal forwards;
      animation: btn-anime-height 1.5s ease-in-out 0s infinite normal forwards;
      position: absolute;
      top: 0;
      left: 0; }
    .btn-open span:hover::before {
      width: 100%;
      -webkit-transition: width 0.3s ease-in-out;
      -o-transition: width 0.3s ease-in-out;
      transition: width 0.3s ease-in-out; }
    .btn-open span:hover::after {
      height: 100%;
      -webkit-transition: height 0.3s ease-in-out;
      -o-transition: height 0.3s ease-in-out;
      transition: height 0.3s ease-in-out; }
  .btn-open img {
    max-width: 130px; }
    @media screen and (max-width: 640px) {
      .btn-open img {
        max-width: 75px; } }

.lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 30px 0; }
  @media screen and (max-width: 640px) {
    .lang {
      padding: 5px 0; } }
  .door_is_open .lang {
    height: 0;
    opacity: 0;
    -webkit-transition: opacity 0s;
    -o-transition: opacity 0s;
    transition: opacity 0s;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s; }
  .lang a {
    display: inline-block;
    color: #ffffff;
    font-size: 16px; }
    @media screen and (max-width: 640px) {
      .lang a {
        font-size: 10px; } }
    .lang a::after {
      content: "";
      display: block;
      width: 0;
      height: 1px;
      background-color: #ffffff;
      -webkit-transition: width 0.3s;
      -o-transition: width 0.3s;
      transition: width 0.3s; }
    .lang a:hover::after {
      width: 100%; }
  .lang li {
    color: #ffffff; }
    .lang li:not(:first-child)::before {
      content: "/";
      display: inline-block;
      padding: 0 5px; }
      @media screen and (max-width: 640px) {
        .lang li:not(:first-child)::before {
          font-size: 8px; } }

@media all and (-ms-high-contrast: none) {
  #footer .left .ftLinks .child a:before {
    margin-top: -8px; }
  #footer .Language a:before {
    margin-top: -10px; }
  .mapBtn {
    padding: 0.5em 1em 0.2em 1em; } }

/*# sourceMappingURL=style.css.map */