@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");
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700,900&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;
  }
}

.pages-tit {
     display: block;
     font-family: "Lato", sans-serif;
     font-weight: 900;
     font-size: 170px;
     font-size: 17.0rem;
     margin: 55px 0;
     color: rgba(86,154,210,0.1);
     line-height: 1;
}
@media screen and (max-width: 834px) {
  .pages-tit {
     font-size: 130px;
     font-size: 13.0rem;
     margin: 20px 0 0;
     color: rgba(86,154,210,0.07);
}
}

@media screen and (max-width: 640px) {
  .pages-tit {
     font-size: 100px;
     font-size: 10.0rem;
     margin:  0;
}
}

@media screen and (max-width: 480px) {
   .pages-tit {
     font-size: 60px;
     font-size: 6.0rem;
     font-weight: 800;
}
}


.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: 22px;
  font-size: 2.2rem;
  line-height: 1.6;
  margin-bottom: 33px;
  font-weight: 600;
}

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

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

.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: 63%;
  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;
  }
}

.lg {
  display: block;
}

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


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

.sec-page {
  margin-bottom: 213px;
}

@media screen and (max-width: 1024px) {
  .sec-page {
    margin-bottom: 100px;
  }
}

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

.sec-page a {
    color: #18273e;
}
.sec-page .image {
      display: block;
      width: 100%;
      text-align: center;
}

.sec-page .image img {
      width: 100%;
      height: auto;
}

.sec-page .mb200 {
      margin-bottom: 200px;
}

@media screen and (max-width: 834px) {
.sec-page .mb200 {
      margin-bottom: 100px;
}
}

@media screen and (max-width: 640px) {
.sec-page .mb200 {
      margin-bottom: 50px;
}
}


/***BRANCH***/

.box-6 {
     position: relative;
     display: block;
     margin: 0 auto;
}

.box-6 .room {
      position: relative;
      display: flex;
  justify-content: center;
  align-items: center;
}


.box-6 .room .left {
     width: 40%;
     float: left;
     padding: 0 50px;
}

.box-6 .room .right {
     width: 60%;
     float: right;
     margin-top: 50px;
     
}

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

@media screen and (max-width: 980px) {
.box-6 .room .left {
     width: 50%;
     padding: 0 20px;
}
.box-6 .room .right {
     width: 50%;
     margin-top: 30px;     
}
}
@media screen and (max-width: 640px) {
  .box-6 .room.even {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media screen and (max-width: 640px) {
.box-6 .room {
      display: block;
}
.box-6 .room .left {
     width: 100%;
     padding: 20px;
     float: none;
}
.box-6 .room .right {
     width: 100%;
     margin-top: 0;     
    float: none;
}
}


/***FORM***/

.box-list {
  max-width: 1095px;
  margin: 0 auto;
}


@media screen and (max-width: 834px) {
  .box-list {
  margin: 20px auto 0;
}
}

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

input[type="submit"],
input[type="button"] {
  /*border-radius: 0;*/
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}


input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}



.form {
  position: relative;
  width: 100%;
  /*font-family: 'Noto Sans JP', sans-serif;*/
  text-align: center;
  margin: 0 auto;
}
 p.title {
   display: block;
   text-align: center;
   padding: 0 0 30px;
   font-weight: bold;
}

    
@media screen and (max-width: 768px) {
p.title {
   display: block;
   line-height: 1.5;
   padding: 0 0 20px;
}
}




/* ==========================================
   FORM
   ========================================== */

p.small {
   margin-top: 5px;
   font-size: 1.3rem;
}

.form .txt{
  font-size: 1.6rem;
}
.form .txt.fsL{
  font-size: 2rem;
}
.form .btn{
  margin-top: 30px;
  width: 100%;
  text-align: center;
}

table{
  /*margin-top: 10px;*/
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  font-size: 16px;
  line-height: 1.6;
}
table th {
  width: 240px;
  padding: 30px 20px;
  border: 1px solid #fff;
  border-right: none;
  background: rgba(160,160,160,0.7);
  color: #fff;
  vertical-align: middle;
  text-align : right;
  font-weight: bold;
}
table .vat{
  vertical-align: center;
}

table em {
  display: inline-block;
  margin-left: 10px;
  font-size: 1.2rem;
  padding: 1px 5px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  background: #fff;
  color: #666;
  font-weight: normal;
  font-style: normal;
}

table td {
  padding: 20px;
  border: 1px solid #f0f0f0;
  border-left: none;
  background: rgba(255,255,255,1.0);
  vertical-align: middle;
  text-align : left;
}

table .ttl{
  display: block;
  text-align: left;
  margin: 5px 0;
}

.box_input {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.box_input ul { 
     position: relative;
     width: 100%;
}

.box_input li {
  position: relative;
    display: inline-block;
    margin-right: 50px;
    padding-left: 25px;
    text-align: left;
    float: left;
}
 


.box_input li input[type="checkbox"]{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;  
    height: 100%;
    background : #fff;
}



label {
        display: inline-block;
}



input {
	width: 70%;
	height : auto;
        line-height: 1.8;
	padding : 3px 10px;
	border : 1px solid #cccccc;
	border-radius : 3px;
	background : #fff;
	font-size : 16px;
        float: left;
	background : #fff;
        color: #2f2f2f;
}


input:focus,
textarea:focus{
	box-shadow : 0px 0px 5px #55ccff;
	border : 1px solid #55ccff;
	background : #fff;
}



select{
	font-size : 100%;
	font-family : inherit;
	margin-top : 10px;
       
}

textarea{
	display : block;
	width : 100%;
	height : 200px;
	padding : 10px;
	resize : vertical;
	border : 1px solid #cccccc;
	border-radius : 3px;
	background : #fff;
	-webkit-appearance : none;
	font-size : 100%;
	font-family : inherit;
        color: #2f2f2f;
}

span.error_m {
    font-size: 16px;
    font-weight: normal;
    color: #FF4040;
    display: block;
    margin: 0;
clear: both;
}


ul{
	list-style-type : none;
}

ul li label:hover{
	cursor : pointer;
}



@media screen and (max-width: 768px) {


/* ==========================================
   FORM
   ========================================== */
.form{
  /*margin: 20px auto 0;
  padding-bottom: 40px;*/
  width: 100%;
}

.form .txt{
  font-size: 16px;
}

table{
  width: 100%;
  font-size: 16px;
}

table th {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 5px 10px;
  font-weight: bold;
  text-align : left;
  border-left: none;
  border-bottom: none;
}
table td {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  *zoom: 1;
  display: block;
  width: 100%;
  padding: 10px;
  border-right: none;
  border-bottom: none;
}
table em {
  float: left;
  font-size: 1.1rem;
  margin-right: 10px;
  margin-left: 0;
  padding: 2px 5px;
}



.box_input li {
   width: 100%;
   position: relative;
    display: inline-block;
    margin-right: 0;
    padding-left: 0;
    text-align: left;
    float: none;
}



.box_input li label {
    display: block;
    margin-left: 25px;
    padding: 0;
    font-size: 1.6rem;
}

.radio_box p{
  float: left;
  width: 50%;
  margin: 20px 0 0 0;
}

input.txt{
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 40px;
  padding: 0 10px;
}
input.txt.size_m{width: 100%;}

textarea{
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

.box_input{
  margin-top: 5px;
}


.box_input p{
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  width: 49%;
  margin: 2% 0 0 2%;
}

.box_input p:nth-child(odd){
  margin-left: 0;
}

.box_input ul li {
   margin-bottom: 10px!important;
}

table.tbl{
  margin-top: 20px;
  margin-bottom: 30px;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  line-height: 1.6;
}
table.tbl th {
   -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
           box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: none;
  border-left: none;
}
table.tbl th.vat{vertical-align: top;}
table.tbl td {
   -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
           box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 10px;
  border-right: none;
  overflow: hidden;
}

}




#base_n { 
   position: relative; 
   margin: 60px auto;
   padding: 0; 
   width: 80%; 
   max-width: 900px; 
   text-align: center;  
}

@media screen and (max-width:768px) {
#base_n { 
   margin: 30px auto;
   padding: 0; 
   width: 96%; 
}
}


.action {
  display: block;
  width: 340px;
  height: 60px;
  line-height: 60px;
  padding: 0;
  margin: 50px auto 0;
  border: none;
  font-size: 1.7rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #5e5e5e;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  box-shadow: 0 0 4px #DBDBDB;
  letter-spacing: 0.08em; 
  transition: 0.3s ease-in-out;
  float: none;
}

.action:hover {
  background: #999;
}


a.top_btn {
  display: block;
  width: 340px;
  height: 60px;
  line-height: 60px;
  padding: 0;
  margin: 50px auto;
  border: none;
  font-size: 1.7rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #5e5e5e;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  box-shadow: 0 0 4px #DBDBDB;
  letter-spacing: 0.08em; 
  transition: 0.3s ease-in-out;
  float: none;
}


.top_btn:hover {
  background: #999;
}

.resetbtn {
  display: block;
  width: 340px;
  height: 60px;
  line-height: 60px;
  padding: 0;
  margin: 50px auto 0;
  border: none;
  font-size: 1.7rem;
  font-weight: bold;
  background: #dcdcdc;
  text-align: center;
  color: #555;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  box-shadow: 0 0 4px #DBDBDB;
  letter-spacing: 0.08em; 
  transition: 0.3s ease-in-out;
  float: none;
}


.resetbtn:hover {
  background: #f0f0f0;
}


@media screen and (max-width:768px) {
.action {
  width: 300px;
  margin: 50px auto;
}

a.top_btn {
  width: 300px;
  margin: 50px auto;
}


.resetbtn {
  width: 300px;
}
}



select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  margin: 0;
  padding: 2px;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  box-sizing: content-box;
  font-size: 16px;
  line-height: 1.8;
}

.cp_ipselect {
	overflow: hidden;
	width: 50%;
	/*margin: 2em auto;
	text-align: center;*/
}
.cp_ipselect select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
        padding-left: 10px;
}
.cp_ipselect select::-ms-expand {
    display: none;
}
.cp_ipselect.cp_sl02 {
	position: relative;
	border: 1px solid #bbbbbb;
	border-radius: 2px;
	background: #ffffff;
}
.cp_ipselect.cp_sl02::before {
	position: absolute;
	top: 0.8em;
	right: 0.9em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 8px solid #999;
	pointer-events: none;
}
.cp_ipselect.cp_sl02:after {
	position: absolute;
	top: 0;
	right: 2.5em;
	bottom: 0;
	width: 1px;
	content: '';
	border-left: 1px solid #bbbbbb;
}

@media screen and (max-width:768px) {
 .cp_ipselect {
	overflow: hidden;
	width: 80%;
	/*margin: 2em auto;
	text-align: center;*/
}
}

.links {
     display: block;
     padding-top: 50px;
     text-align: right;
     font-weight: bold;
}
.links i {
      padding-right: 5px;
}

@media screen and (max-width:768px) {
.links {
     padding-top: 25px;
     text-align: center;
}
}




