@charset "UTF-8";
/* ====================================================
reset style
==================================================== */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700&subset=japanese");
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,500,600,700,900&display=swap&subset=japanese');
@import url("https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i&display=swap");
html {
  overflow-y: scroll;
  overflow-x: hidden;
  font-size: 10px;
  /* Base font size, change to 14px or 16px if needed */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

address, caption, cite, code, dfn, var {
  font-style: normal;
  font-weight: normal;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

h3 span {
    display: block;
    border-top: 1px solid #18273e;
    margin-top: 15px;
    padding-top: 15px;
    font-size: 80%;
}
.color7 {
      color: #707070;
      display: block;
      padding: 0 0 30px;
      font-weight: bold;
}

@media screen and (max-width: 834px) {
.color7 {
      color: #777;
      padding: 0 0 15px;
}
}
q:before, q:after {
  content: '';
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/*to enable resizing for IE*/
input, textarea, select {
  *font-size: 100%;
}

/*because legend doesn't inherit in IE */
legend {
  color: #000;
}

del, ins {
  text-decoration: none;
}

main {
  display: block;
}

section {
  position: relative;
}

/* ====================================================
Font
==================================================== */
/* ====================================================
Media Quary
==================================================== */
body {
  color: #18273e;
  font-family: "Noto Serif JP", YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  font-weight: 500;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
  overflow-x: hidden;
}

#header {
  position: relative;
  z-index: 99;
  padding: 19px 55px 23px;
}

@media screen and (max-width: 1300px) {
  #header {
    padding: 19px 20px 23px;
  }
}

@media screen and (max-width: 834px) {
  #header {
    padding: 15px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
  }
  #header.fixed {
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  }
  #header .logo img {
    max-width: 200px;
  }
}

#header .mobile-icon {
  width: 26px;
  height: 26px;
  -webkit-transition: background .5s;
  -o-transition: background .5s;
  transition: background .5s;
  position: absolute;
  right: 20px;
  top: 55%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 12;
  display: none;
}

@media screen and (max-width: 1024px) {
  #header .mobile-icon {
    right: 0;
    display: block;
  }
}

#header .mobile-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 100%;
  height: 2px;
  margin-top: -2px;
  background-color: #0074d3;
  font-size: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  border-radius: 3px;
}

#header .mobile-icon span:before, #header .mobile-icon span:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0074d3;
  content: '';
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  border-radius: 3px;
}

#header .mobile-icon span:before {
  -webkit-transform: translateY(-250%);
  -ms-transform: translateY(-250%);
      transform: translateY(-250%);
  top: -4px;
}

#header .mobile-icon span:after {
  -webkit-transform: translateY(250%);
  -ms-transform: translateY(250%);
      transform: translateY(250%);
  bottom: -4px;
}

#header .mobile-icon.mobile-close span {
  background-color: transparent;
}

#header .mobile-icon.mobile-close span:before, #header .mobile-icon.mobile-close span:after {
  width: 100%;
  background: #0074d3;
}

#header .mobile-icon.mobile-close span:before {
  -webkit-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
      transform: translateY(0) rotate(45deg);
  top: 2px;
}

#header .mobile-icon.mobile-close span:after {
  -webkit-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
      transform: translateY(0) rotate(-45deg);
  bottom: -2px;
}

#header .flex-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

#header .flex-header .logo {
  width: 353px;
}

@media screen and (max-width: 1200px) {  #header .flex-header .logo {
    width: 25%;
  }
}

@media screen and (max-width: 834px) {
  #header .flex-header .logo {
    width: auto;
  }
}

#header .flex-header .nav-menu {
  width: calc(100% - 353px);
  padding-right: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1200px) {
  #header .flex-header .nav-menu {
    width: 70%;
    padding-right: 0;
  }
}

@media screen and (max-width: 1024px) {
  #header .flex-header .nav-menu {
    background: #ffffff;
    position: absolute;
    top: calc(100% - 1px);
    left: -30px;
    width: calc(100% + 60px);
    padding: 30px 0 30px;
    height: 100vh;
    overflow-x: scroll;
    display: none;
    z-index: 999;
  }
}

#header .flex-header .nav-menu .show-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  #header .flex-header .nav-menu .show-menu {
    display: block;
    padding: 0;
    width: 100%;
  }
}

#header .flex-header .nav-menu .show-menu li {
  text-align: center;
  margin-left: 30px;
}

@media screen and (max-width: 1200px) {
  #header .flex-header .nav-menu .show-menu li {
    margin-left: 20px;
  }
}

#header .flex-header .nav-menu .show-menu li:first-child {
  margin-left: 0;
}

@media screen and (max-width: 1024px) {
  #header .flex-header .nav-menu .show-menu li {
    margin-left: 0;
  }
}

#header .flex-header .nav-menu .show-menu li a {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  color: #1c2637;
  font-weight: bold;
  font-size: 16px;
  font-size: 1.6rem;
  display: block;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 1200px) {
  #header .flex-header .nav-menu .show-menu li a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 1024px) {
  #header .flex-header .nav-menu .show-menu li a {
    color: #1c2637;
    padding: 15px 20px;
  }
}

#header .flex-header .nav-menu.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#footer {
  padding: 64px 0 35px;
}

@media screen and (max-width: 834px) {
  #footer {
    padding: 30px 0;
  }
}

#footer .share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 33px;
}

@media screen and (max-width: 834px) {
  #footer .share {
    margin-bottom: 15px;
  }
}

#footer .share li {
  margin: 0 10px;
}

#footer .share li i {
  cursor: pointer;
  color: #cccccc;
  font-size: 28px;
  font-size: 2.8rem;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

#footer .share li i:hover {
  opacity: 0.7;
}

#footer .menu-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: 1px solid #dfdfdf;
  padding: 47px 0 43px;
}

@media screen and (max-width: 834px) {
  #footer .menu-footer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 15px 0;
  }
}

#footer .menu-footer li {
  border-right: 1px solid #d0d0d0;
  padding: 0 16px;
}

@media screen and (max-width: 834px) {
  #footer .menu-footer li {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 640px) {
  #footer .menu-footer li {
    width: 100%;
    padding: 10px;
    text-align: center;
    margin-bottom: 0;
  }
}

#footer .menu-footer li:last-child {
  border-right: none;
}

#footer .menu-footer li a {
  font-size: 14px;
  font-size: 1.4rem;
  color: #1c2637;
  line-height: 1;
  font-weight: 500;
}

#footer .copyright {
  font-size: 14px;
  font-size: 1.4rem;
}

.inner {
  display: block;
  max-width: 1550px;
  padding: 0 15px;
  margin: 0 auto;
}

.clearfix {
  *zoom: 1;
}

.clearfix:before {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
  content: "";
  display: table;
}

.cf:before,
.cf:after {
  content: "";
  display: block;
  overflow: hidden; 
}

.cf:after {
  clear: both; 
}

.cf {
  zoom: 1; 
}

ul, li {
  list-style: none; 
}


a {
  text-decoration: none;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 835px) {
  a[href^="tel"] {
    pointer-events: none;
  }
}

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

@media screen and (max-width: 1024px) {
  .pc-ipd {
    display: none !important;
  }
}

@media screen and (max-width: 990px) {
  .pc-lg {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (max-width: 374px) {
  .pc-xs {
    display: none !important;
  }
}

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

@media screen and (min-width: 1024px) {
  .sp-ipd {
    display: none !important;
  }
}

@media screen and (min-width: 991px) {
  .sp-lg {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

.ttlcomp-01 {
  display: block;
  line-height: 1;
  margin-bottom: 55px;
}

@media screen and (max-width: 1024px) {
  .ttlcomp-01 {
    margin-bottom: 25px;
  }
}

.ttlcomp-01 span {
  display: block;
}

.ttlcomp-01 span.en {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 36px;
  font-size: 3.6rem;
  margin-bottom: 17px;
}

@media screen and (max-width: 834px) {
  .ttlcomp-01 span.en {
    font-size: 30px;
    font-size: 3rem;
    margin-bottom: 10px;
  }
}

.ttlcomp-01 span.jp {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
}

.ttlcomp-02 {
  display: block;
  /*text-align: center;*/
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.6;
  margin-bottom: 33px;
  font-weight: 600;
  /*-webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;*/
}

@media screen and (max-width: 834px) {
  .ttlcomp-02 {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}

.ttlcomp-03 {
  display: block;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 60px;
  font-size: 6rem;
  color: white;
  margin-bottom: 68px;
}

@media screen and (max-width: 834px) {
  .ttlcomp-03 {
    font-size: 48px;
    font-size: 4.8rem;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 640px) {
  .ttlcomp-03 {
    font-size: 36px;
    font-size: 3.6rem;
  }
}

.ttlcomp-03 span {
  display: inline-block;
  font-weight: 900;
}

.ttlcomp-03 span.thin {
  font-weight: 100;
  margin-right: 18px;
}

@media screen and (max-width: 834px) {
  .ttlcomp-03 span.thin {
    margin-right: 10px;
  }
}

.ttlcomp-05 {
  display: block;
  font-size: 26px;
  font-size: 2.6rem;
  margin-bottom: 30px;
  line-height: 1.5;
  font-weight: 500;
}

.ttlcomp-05 span {
     display: inline-block;
     font-size: 33px;
  font-size: 3.3rem;
     border: none;
     padding: 0;
     margin: 0;
     font-weight: 600;
}

@media screen and (max-width: 834px) {
  .ttlcomp-05 {
    font-size: 17px;
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
     .ttlcomp-05 span {
     font-size: 20px;
  font-size: 2.0rem;
}
}

.b-ttl {
  display: block;
  line-height: 1.73;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 600;
  padding-bottom: 30px;
  margin-bottom: 34px;
  border-bottom: 1px solid #18273e;
}

@media screen and (max-width: 834px) {
.b-ttl {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }
}

.ttl {
  display: block;
  line-height: 1.73;
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 34px;
  /*-webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;*/
}

@media screen and (max-width: 834px) {
.ttl {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }
}


.sans-serif {
      font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.txt-basic {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.8;
}

@media screen and (max-width: 834px) {
  .txt-basic {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

@media screen and (max-width: 640px) {
  .txt-basic {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.txt-basic p {
  margin-bottom: 38px;
}

@media screen and (max-width: 834px) {
  .txt-basic p {
    margin-bottom: 15px;
  }
}

.txt-basic p:last-child {
  margin-bottom: 0;
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.txt-left {
  text-align: left;
}

.btn {
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "Lato", sans-serif;
  line-height: 1;
  color: white;
  border: 1px solid white;
  position: relative;
  padding: 15px 56px;
  min-width: 267px;
  text-align: center;
}

@media screen and (max-width: 834px) {
  .btn {
    padding: 10px;
    min-width: 200px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
  -webkit-transition: 0.4s cubic-bezier(0.32, 0.95, 0.6, 1);
  -o-transition: 0.4s cubic-bezier(0.32, 0.95, 0.6, 1);
  transition: 0.4s cubic-bezier(0.32, 0.95, 0.6, 1);
}

.btn:hover {
  opacity: 1;
  color: #18273e;
}

.btn:hover:after {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  background: white;
}

.btn.btn-white {
  background: white;
  color: #18273e;
  border: 1px solid #18273e;
}

.btn.btn-white:hover {
  color: white;
}

.btn.btn-white:hover:after {
  background-color: #18273e;
}

.color-white {
  color: white !important;
}

@-webkit-keyframes kv-b {
  0% {
    -webkit-filter: blur(6px);
            filter: blur(6px);
  }
  50% {
    -webkit-filter: blur(6px);
            filter: blur(6px);
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes kv-b {
  0% {
    -webkit-filter: blur(6px);
            filter: blur(6px);
  }
  50% {
    -webkit-filter: blur(6px);
            filter: blur(6px);
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@-webkit-keyframes kv-c {
  0% {
    clip: rect(0, 100vw, 100vh, 100vw);
  }
  50% {
    clip: rect(0, 100vw, 100vh, 0);
  }
  to {
    clip: rect(0, 100vw, 100vh, 0);
  }
}

@keyframes kv-c {
  0% {
    clip: rect(0, 100vw, 100vh, 100vw);
  }
  50% {
    clip: rect(0, 100vw, 100vh, 0);
  }
  to {
    clip: rect(0, 100vw, 100vh, 0);
  }
}

@-webkit-keyframes kv-c2 {
  0% {
    clip: rect(0, 100vw, 100vh, 100vw);
  }
  50% {
    clip: rect(0, 100vw, 100vh, 0);
  }
  to {
    clip: rect(0, 100vw, 100vh, 0);
  }
}

@keyframes kv-c2 {
  0% {
    clip: rect(0, 100vw, 100vh, 100vw);
  }
  50% {
    clip: rect(0, 100vw, 100vh, 0);
  }
  to {
    clip: rect(0, 100vw, 100vh, 0);
  }
}

@-webkit-keyframes kv-translate {
  0% {
    -webkit-transform: scale(1) translate3d(100px, 0, 0);
            transform: scale(1) translate3d(100px, 0, 0);
  }
  50% {
    -webkit-transform: scale(1) translateZ(0);
            transform: scale(1) translateZ(0);
  }
  to {
    -webkit-transform: scale(1) translateZ(0);
            transform: scale(1) translateZ(0);
  }
}

@keyframes kv-translate {
  0% {
    -webkit-transform: scale(1) translate3d(100px, 0, 0);
            transform: scale(1) translate3d(100px, 0, 0);
  }
  50% {
    -webkit-transform: scale(1) translateZ(0);
            transform: scale(1) translateZ(0);
  }
  to {
    -webkit-transform: scale(1) translateZ(0);
            transform: scale(1) translateZ(0);
  }
}

@-webkit-keyframes kv-translate2 {
  0% {
    -webkit-transform: scale(1) translate3d(100px, 0, 0);
            transform: scale(1) translate3d(100px, 0, 0);
  }
  50% {
    -webkit-transform: scale(1) translateZ(0);
            transform: scale(1) translateZ(0);
  }
  to {
    -webkit-transform: scale(1) translateZ(0);
            transform: scale(1) translateZ(0);
  }
}

@keyframes kv-translate2 {
  0% {
    -webkit-transform: scale(1) translate3d(100px, 0, 0);
            transform: scale(1) translate3d(100px, 0, 0);
  }
  50% {
    -webkit-transform: scale(1) translateZ(0);
            transform: scale(1) translateZ(0);
  }
  to {
    -webkit-transform: scale(1) translateZ(0);
            transform: scale(1) translateZ(0);
  }
}



.contact-block {
  display: block;
  position: relative;
  background: #18273e;
  padding: 151px 0 97px;
}

@media screen and (max-width: 834px) {
  .contact-block {
    padding: 30px 0;
  }
}

.contact-block:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
  -webkit-transition: 0.4s cubic-bezier(0.32, 0.95, 0.6, 1);
  -o-transition: 0.4s cubic-bezier(0.32, 0.95, 0.6, 1);
  transition: 0.4s cubic-bezier(0.32, 0.95, 0.6, 1);
}

.contact-block .ttlcomp-01 {
  color: white;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 834px) {
  .contact-block .ttlcomp-01 {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 835px) {
  .contact-block .ttlcomp-01 span.en {
    margin-bottom: 23px;
  }
}

.contact-block:hover:after {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  background: #0074d3;
}

.sec-mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 85px 81px 124px;
}

@media screen and (max-width: 1450px) {
  .sec-mv {
    padding: 85px 15px 124px;
  }
}

@media screen and (max-width: 834px) {
  .sec-mv {
    padding: 15px 15px 50px 0;
  }
}


.sec-connect {
  padding: 0 0 114px;
}

@media screen and (max-width: 834px) {
  .sec-connect {
    padding: 0 0 50px;
  }
}



@media screen and (max-width: 834px) {
  main {
    padding-top: 60px;
  }
}

.mv-page {
  position: relative;
  margin-bottom: 110px;
}

@media screen and (max-width: 834px) {
  .mv-page {
    margin-bottom: 20px;
  }
}

.mv-page .img {
  width: 80.44%;
  margin-right: 0;
  margin-left: auto;
  position: relative;
}

@media screen and (max-width: 834px) {
  .mv-page .img {
    width: 100%;
  }
}

.mv-page .img img {
  display: block;
}

@media screen and (max-width: 990px) {
  .mv-page .img img {
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;";
  }
}

@media screen and (max-width: 834px) {
  .mv-page .img img {
    height: auto;
  }
}

.mv-page__ttl {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 9.8vw;
}

.mv-page__ttl span {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 3.333vw;
  line-height: 1;
  color: #fff;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  white-space: nowrap;
}

@media screen and (max-width: 834px) {
  .mv-page__ttl span {
    font-size: 30px;
    font-size: 3rem;
    margin-right: 0;
    color: #fff;
  }
}

/*****MV-TEXT-COLOR*****/

.mv-page__ttl span:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  content: attr(data-split);
  width: 79%;
  color: #18273e;
  overflow: hidden;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .mv-page__ttl span:before {
    width: 9.5vw;
    top: calc(50% - 4px);
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (max-width: 990px) {
  .mv-page__ttl span:before {
    top: calc(50% - 7px);
  }
}

@supports (-ms-ime-align: auto) {
  .mv-page__ttl span:before {
    width: 9.5vw;
    top: calc(50% - 4px);
  }
}

@supports (-ms-ime-align: auto) and (max-width: 990px) {
  @media screen and (max-width: 990px) {
    .mv-page__ttl span:before {
      top: calc(50% - 7px);
    }
  }
}

@media screen and (max-width: 834px) {
  .mv-page__ttl span:before {
    display: none;
  }
}

.mv-page__ttl small {
  display: block;
  font-size: 0.778vw;
  font-weight: bold;
  color: #18273e;
  position: relative;
  top: 8px;
  left: 4px;
}

@media screen and (max-width: 1450px) {
  .mv-page__ttl small {
    font-size: 1vw;
  }
}

@media screen and (max-width: 1024px) {
  .mv-page__ttl small {
    font-size: 1.778vw;
  }
}

@media screen and (max-width: 834px) {
  .mv-page__ttl small {
    font-size: 15px;
    font-size: 1.5rem;
    color: #fff;
  }
}
.box-list {
  max-width: 1095px;
  margin: 0 auto;
}

.box-list dl {
  border-top: 1px solid #ccc;
  padding: 32px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .box-list dl {
    padding: 35px 0 29px;
  }
}

@media screen and (max-width: 834px) {
  .box-list dl {
    padding: 15px 0;
  }
}

.box-list dl:last-of-type {
  border-bottom: 1px solid #ccc;
}

.box-list dl dt {
  width: 18.5%;
  padding-left: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: bold;
  color: #18273e;
}

@media screen and (max-width: 834px) {
  .box-list dl dt {
    width: 25%;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
    padding-left: 0;
  }
}

@media screen and (max-width: 374px) {
  .box-list dl dt {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.box-list dl dd {
  width: 81.5%;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
  color: #18273e;
  padding-left: 6px;
}

@media screen and (max-width: 834px) {
  .box-list dl dd {
    width: 75%;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
    padding-left: 5px;
  }
}

@media screen and (max-width: 374px) {
  .box-list dl dd {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.box-list dl dd a {
  color: #0074d3;
  margin-left: 15px;
  padding-left: 18px;
  position: relative;
  border-bottom: 1px solid;
  display: inline-block;
  line-height: 1;
}

@media screen and (max-width: 834px) {
  .box-list dl dd a {
    margin-left: 10px;
    padding-left: 10px;
  }
}

.box-list dl dd a:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent #0074d3;
  position: absolute;
  top: 3px;
  left: 6px;
}

@media screen and (max-width: 834px) {
  .box-list dl dd a:before {
    left: 3px;
  }
}

.box-list dl dd a[href^="tel"] {
  border-bottom: none;
  color: #18273e;
  padding-left: 0;
  margin-left: 0;
}

.box-list dl dd a[href^="tel"]:before {
  display: none;
}

.lg {
  display: block;
}

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


/*****PAGES*****/

.sec-driver {
  position: relative;
}

.intro-block {
   position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 75px 0 146px;
  max-width: 1330px;
  margin: 0 auto;
}

@media screen and (max-width: 1170px) {
.intro-block {
   position: relative;
  display: block;
  padding: 0 0 146px;
  width: 100%;
  margin: 0 auto;
}
}
@media screen and (max-width: 834px) {
  .intro-block {
    padding: 10px 0 50px;
  }
}

.intro-block .intro-block--heading {
  width: 40%;
  padding-right: 50px;
  float: left;
}

@media screen and (max-width: 1170px) {
   .intro-block .intro-block--heading {
  width: 100%;
  padding-right: 0;
  padding-bottom: 30px;
  float: none;
}
}
@media screen and (max-width: 640px) {
.intro-block .intro-block--heading {
    padding-bottom: 0;
    margin-bottom: 15px;
    text-align: center;
  }
.intro-block p {
     text-align: left;
}

}



.intro-block .image {
  width: 60%;
  text-align: center;
  float: right;
}
.intro-block .image img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1170px) {
.intro-block .image {
  width: 100%;
  float: none;
}

}

.block-02 {
     position: relative;
     display: block;
     width: 100%;
     background: linear-gradient(180deg,#fff 0%,#fff 10%,#f1f5f8 10%,#f1f5f8 100%);
     padding-bottom: 80px;
}

@media screen and (max-width: 1045px) {
.block-02 {
     background: #f1f5f8;
     padding: 80px 0 1px;
}
}
@media screen and (max-width: 640px) {
.block-02 {
     padding: 40px 0 1px;
}
}

.box1 {
     position: relative;
     display: block;
     width: 90%;
     max-width: 1330px;
     margin: 0 auto 100px;
}

.box1 .image {
  width: 100%;
  margin: 0 auto 40px;
  text-align: center;
}
.box1 .image img {
  width: 100%;
  height: auto;
}

.box1 .left {
     width: 35%;
     padding-left: 20px;
     float: left;
}

.box1 .right {
     width: 65%;
     padding-right: 20px;
     float: right;
}
@media screen and (max-width: 640px) {
.box1 {
     position: relative;
     display: block;
     width: 100%;
     margin: 0 auto 50px;
}

.box1 .image {
  width: 100%;
  margin: 0 auto 20px;
  text-align: center;
}

.box1 .left {
     width: 100%;
     padding: 0 10px;
     float: none;
}

.box1 .right {
     width: 100%;
     padding: 0 10px;
     float: none;
}
}


.boxs-4 {
      display: block;
      position: relative;
      width: 90%;
       max-width: 1330px;
       margin: 0 auto;
}

.boxs-4 .box-in {
        display: block;
        position: relative;
        width: 100%;
        margin: 50px auto;
        padding: 0;
}
@media screen and (max-width: 834px) {
.boxs-4 .box-in {
        display: block;
        width: 100%;
        margin: 30px auto;
}
}


.boxs-4 .box-in .box40, .boxs-4 .box-in .box41 {
        position: relative;
        display: block;
        width: 100%;
        margin: 80px auto 150px;
        
}

.boxs-4 .box-in .box40 .right{
          width: 52%;
          float: right;
}

.boxs-4 .box-in .box40 .right img {
           width: 100%;
           height: auto;
}

 .boxs-4 .box-in .box40 .left {
         position:absolute;
         width: 48%;
         left: 50px;
         bottom: -30px;
          padding: 40px 30px;
          background: #fff;
          float: left;
          border-left: solid 5px #a1c4df;
          webkit-box-shadow: 0 10px 8px -6px #8d8c8c;
    -moz-box-shadow: 0 10px 8px -6px #8d8c8c;
     box-shadow: 0 10px 8px -6px #8d8c8c;
}


.boxs-4 .box-in .box41 .left {
          width: 52%;
          float: left;
}

.boxs-4 .box-in .box41 .left img {
           width: 100%;
           height: auto;
}

.boxs-4 .box-in .box41 .right {
         position:absolute;
         width: 48%;
         right: 50px;
         bottom: -30px;
          padding: 40px 30px;
          background: #fff;
          float: right;
          border-left: solid 5px #a1c4df;
          webkit-box-shadow: 0 10px 8px -6px #8d8c8c;
    -moz-box-shadow: 0 10px 8px -6px #8d8c8c;
     box-shadow: 0 10px 8px -6px #8d8c8c;
}


@media screen and (max-width: 1045px) {
 .boxs-4 .box-in .box40, .boxs-4 .box-in .box41 {
        position: relative;
        display: block;
        width: 100%;
        margin: 50px auto 100px;
        
}

.boxs-4 .box-in .box40 .right{
          width: 100%;
          float: none;
}


 .boxs-4 .box-in .box40 .left {
         position: relative;
        display: block;
         width: 100%;
         left: auto;
         bottom: auto;
         margin: 0 auto;
          padding: 30px 20px;
          background: #fff;
          float: none;
          border-left: solid 3px #a1c4df;
          webkit-box-shadow: 0 10px 8px -6px #8d8c8c;
    -moz-box-shadow: 0 10px 8px -6px #8d8c8c;
     box-shadow: 0 10px 8px -6px #8d8c8c;
}


.boxs-4 .box-in .box41 .left {
          width: 100%;
          float: none;
}


.boxs-4 .box-in .box41 .right {
         position: relative;
        display: block;
         width: 100%;
         right: auto;
         bottom: auto;
         margin: 0 auto;
          padding: 30px 20px;
          background: #fff;
          float: none;
          border-left: solid 3px #a1c4df;
          webkit-box-shadow: 0 10px 8px -6px #8d8c8c;
    -moz-box-shadow: 0 10px 8px -6px #8d8c8c;
     box-shadow: 0 10px 8px -6px #8d8c8c;
}
}

@media screen and (max-width: 768px) {
 .boxs-4 .box-in .box40, .boxs-4 .box-in .box41 {
        position: relative;
        display: block;
        width: 100%;
        margin: 50px auto;
        
}
 .boxs-4 .box-in .box40 .left, .boxs-4 .box-in .box41 .right {
          padding: 20px 15px;
}
}



.icon-img {
     position: absolute; 
     right:  10px;
     top: 10px;
     z-index: 1;
}

@media screen and (max-width: 843px) {
     .icon-img {
       width: 30%;
}

.icon-img img {
       width: 100%;
       height: auto;
}
}

.boxs-4 h3 {
     position: relative;
     z-index: 2;
}

.boxs-4 .sans-serif {
     position: relative;
     z-index: 3;
}

.block-03 {
     position: relative;
     display: block;
     width: 100%;
     margin: 180px auto 200px;
}

@media screen and (max-width: 1045px) {
.block-03 {
     margin: 80px auto;
}
}

@media screen and (max-width: 640px) {
.block-03 {
     margin: 40px auto;
}
}

/***EVEN***/


.box-in {
        display: block;
        width: 90%;
        max-width: 1330px;
        margin: 80px auto;
        padding: 0;
}
@media screen and (max-width: 834px) {
.box-in {
        display: block;
        width: 100%;
        margin: 30px auto;
}
}


.box-in .boxer {
        width: 100%;
        margin: 60px auto;

        display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

 .box-in .boxer .left {
          width: 50%;
          float: left;
          
}

.box-in .boxer .left img {
           width: 100%;
           height: auto;
}

.box-in .boxer .right {
         width: 50%;
          padding: 0 20px;
          float: right;
          
}

.box-in .boxer.even .left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
.box-in .boxer.even .right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1
  }

@media screen and (max-width: 834px) {
 .box-in .boxer.even {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
.box-in .boxer {
        display: block;
}
.box-in .boxer {
        width: 100%;
        margin: 30px auto;
        display: block;
}

.box-in .boxer .left {
          width: 100%;
          float: none;
}

.box-in .boxer .right {
         width: 100%;
          padding: 15px 15px 0;
          float: none
}
}

/* Zoom In #1 */
.hover01 .image img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.hover01 .image:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

/***slick-image-size***/

.multiple .image {
      max-width: 400px;
      text-align: center;
}


.multiple .image img {
      width: 100%;
      height: auto;
}

