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

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

@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: 44px;
}

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

#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: 15px;
    font-size: 1.5rem;
  }
}

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

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

@media screen and (max-width: 834px) {
  .ttlcomp-02 {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
}

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

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

.menu-block {
  width: 22.7%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1024px) {
  .menu-block .logo {
    display: none;
  }
}

.menu-block .nav-menu {
  margin-top: 80px;
  padding-left: 4px;
}

@media screen and (max-width: 1450px) {
  .menu-block .nav-menu {
    margin-top: 30px;
    padding-left: 0;
  }
}

@media screen and (max-width: 1024px) {
  .menu-block .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 12;
    margin: 0;
    padding-top: 60px;
    display: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .menu-block .nav-menu.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.menu-block .nav-menu .show-menu .item {
  margin-bottom: 26px;
}

@media screen and (max-width: 1450px) {
  .menu-block .nav-menu .show-menu .item {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 834px) {
  .menu-block .nav-menu .show-menu .item {
    text-align: center;
  }
}

.menu-block .nav-menu .show-menu .item:last-child {
  margin-bottom: 0;
}

.menu-block .nav-menu .show-menu .item a {
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  color: #1c2637;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 1px;
}

.menu-block .nav-menu .show-menu .item.recruit a {
  background: #18273e;
  color: white;
  margin-top: 15px;
  padding: 23px 0;
  text-align: center;
  width: 143px;
}

@media screen and (max-width: 834px) {
  .menu-block .nav-menu .show-menu .item.recruit a {
    padding: 10px 0;
  }
}

.menu-block .nav-menu .show-menu .item.recruit a:hover {
  background: #0074d3;
  opacity: 1;
}

.menu-block .nav-menu .show-menu .item.recruit a span {
  display: block;
}

.menu-block .nav-menu .show-menu .item.recruit a span.en {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 10px;
  letter-spacing: 0;
}

.mv-block {
  width: 77.3%;
  height: calc(100vh - 174px);
  position: relative;
}

@media screen and (max-width: 1024px) {
  .mv-block {
    width: 100%;
    height: calc(100vh - 115px);
  }
}

.mv-block:after {
  content: "";
  background: #0074d3;
  position: absolute;
  top: -85px;
  right: -81px;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 834px) {
  .mv-block:after {
    top: -15px;
    right: -15px;
  }
}

.mv-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  bottom: 0;
  z-index: 9;
  overflow: hidden;
}

.mv-slider .slick-list, .mv-slider .slick-track {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
}

@media screen and (max-width: 834px) {
  .mv-slider {
    position: relative;
    height: calc(100vh - 115px);
  }
}

.mv-slider .item {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  clip: rect(0, 100vw, 100vh, 100vw);
  opacity: 1 !important;
}

.mv-slider .item .img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  visibility: hidden;
}

.mv-slider .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv-slider .item.slick-active {
  -webkit-animation-name: kv-c;
          animation-name: kv-c;
  -webkit-animation-duration: 2.8s;
          animation-duration: 2.8s;
  -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
          animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  z-index: 30;
}

.mv-slider .item.slick-active img {
  -webkit-animation-name: kv-translate;
          animation-name: kv-translate;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
  -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
          animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.mv-slider .item.slick-active .img {
  -webkit-animation-name: kv-c2;
          animation-name: kv-c2;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: cubic-bezier(0.48, 0.04, 0.52, 0.96);
          animation-timing-function: cubic-bezier(0.48, 0.04, 0.52, 0.96);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  visibility: visible;
}

.mv-note {
  background: white;
  position: absolute;
  bottom: 0;
  right: 0;
  font-weight: 600;
  color: #18273e;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.83;
  z-index: 10;
  padding: 51px 65px 37px 65px;
}

@media screen and (max-width: 834px) {
  .mv-note {
    font-size: 20px;
    font-size: 2rem;
    padding: 20px 20px 30px;
    line-height: 1.6;
  }
}

.about-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 75px 0 146px;
  max-width: 1330px;
  margin: 0 auto;
}

@media screen and (max-width: 834px) {
  .about-block {
    padding: 7vw 0 50px;
  }
}

.about-block--heading {
  width: 37.9%;
  padding-right: 15px;
}

@media screen and (max-width: 640px) {
  .about-block--heading {
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }
}

.about-block--heading .ttl {
  display: block;
  line-height: 1.73;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 34px;
}

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

.about-block--txt {
  width: 62.1%;
}

@media screen and (min-width: 835px) {
  .about-block--txt {
    padding: 7px 0 0 0;
    line-height: 1.88;
  }
}

@media screen and (max-width: 640px) {
  .about-block--txt {
    width: 100%;
  }
}

.service-block {
  position: relative;
  max-width: 89%;
  padding: 82px 0 60px;
}

@media screen and (max-width: 1024px) {
  .service-block {
    max-width: 100%;
  }
}

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

.service-block:after {
  content: "";
  width: 150%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: -288px;
  background: #0074d3 url(../img/index/item.png) no-repeat;
  background-position: top right;
  background-size: 28vw;
}

@media screen and (max-width: 834px) {
  .service-block:after {
    bottom: -100px;
    right: -15px;
  }
}

.service-block .txt-basic {
  position: relative;
  z-index: 1;
  color: white;
}

@media screen and (min-width: 835px) {
  .service-block .txt-basic {
    line-height: 1.78;
  }
}

.service-block .ttl {
  display: block;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 21px;
}

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

.service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.service-item .item {
  width: 50%;
}

@media screen and (max-width: 640px) {
  .service-item .item {
    width: 100%;
  }
}

.service-item .item a {
  display: block;
  position: relative;
  overflow: hidden;
}

.service-item .item a .link {
  position: absolute;
  bottom: 37px;
  left: 0;
  color: white;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 600;
  padding: 0 52px;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

@media screen and (max-width: 1200px) {
  .service-item .item a .link {
    font-size: 20px;
    font-size: 2rem;
    padding: 0 15px;
    bottom: 15px;
  }
}

@media screen and (max-width: 834px) {
  .service-item .item a .link {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.service-item .item a .link i {
  margin-right: 10px;
}

.service-item .item a img {
  width: 100%;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1);
  -webkit-transition: 5s cubic-bezier(0.08, 0.92, 0.35, 1);
  -o-transition: 5s cubic-bezier(0.08, 0.92, 0.35, 1);
  transition: 5s cubic-bezier(0.08, 0.92, 0.35, 1);
}

.service-item .item a:hover {
  opacity: 1;
}

.service-item .item a:hover .link {
  opacity: 0.7;
}

.service-item .item a:hover img {
  -webkit-transform: translate3d(0, 0, 0) scale(1.1);
          transform: translate3d(0, 0, 0) scale(1.1);
}

.spec-block {
  padding: 68px 0 78px;
  position: relative;
}

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

.spec-block .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 115px;
}

@media screen and (max-width: 1024px) {
  .spec-block .inner {
    position: static;
    padding-top: 0;
  }
}

@media screen and (min-width: 0\0) {
  .spec-block .inner {
    width: 1530px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 0\0) and (max-width: 1530px) {
  .spec-block .inner {
    width: 100%;
  }
}

.spec-block .inner:before {
  content: "";
  background: #f1f4f7;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
}

.spec-block .inner:after {
  content: "";
  background: #f1f4f7;
  position: absolute;
  top: 0;
  left: 99%;
  bottom: 0;
  width: 50%;
}

.spec-list {
  width: 62.7%;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1800px) {
  .spec-list img {
    height: 705px;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover';
  }
}

@media screen and (max-width: 1024px) {
  .spec-list img {
    height: auto;
  }
}

@media screen and (max-width: 1024px) {
  .spec-list {
    width: 100%;
  }
}

.spec-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.spec-item .slick-list, .spec-item .slick-track {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
}

.spec-item .item {
  outline: none !important;
  opacity: 1 !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  overflow: hidden;
}

.spec-item .item .img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.spec-item .item.slick-active .img {
  -webkit-animation-name: kv-c2;
          animation-name: kv-c2;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  z-index: 30;
}

.spec-item .item.slick-active .img img {
  -webkit-animation-name: kv-translate2;
          animation-name: kv-translate2;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
  -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
          animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.spec-item .slick-arrow {
  width: 54px;
  height: 54px;
  z-index: 9;
  bottom: 0;
  top: auto;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-backface-visibility: hidden;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.spec-item .slick-arrow:hover {
  opacity: 0.7;
}

.spec-item .slick-arrow:before {
  display: none;
}

.spec-item .slick-arrow.slick-prev {
  background: url("../img/common/arrow-left.png") no-repeat;
  background-size: 100%;
  left: auto;
  right: 30px;
}

@media screen and (max-width: 1024px) {
  .spec-item .slick-arrow.slick-prev {
    right: 57px;
  }
}

.spec-item .slick-arrow.slick-next {
  background: url("../img/common/arrow-right.png") no-repeat;
  background-size: 100%;
  right: -27px;
}

@media screen and (max-width: 1024px) {
  .spec-item .slick-arrow.slick-next {
    right: 0;
  }
}

.spec-note {
  z-index: 1;
  width: 42%;
  background: white;
  padding: 112px 60px 0 12%;
}

@media screen and (max-width: 1024px) {
  .spec-note {
    position: static;
    width: 100%;
    padding: 15px;
  }
}

.spec-note .ttl {
  display: block;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 28px;
  line-height: 1.4;
}

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

.spec-note .txt-basic {
  margin-bottom: 44px;
}

.connect-block {
  background: url(../img/index/img-06.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  color: white;
  text-align: center;
  padding: 157px 0 150px;
}

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

.connect-block .txt-basic {
  margin-bottom: 86px;
}

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

.recruit-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -10px 50px;
}

@media screen and (max-width: 834px) {
  .recruit-item {
    margin: 0 -7px 30px;
  }
}

@media screen and (max-width: 640px) {
  .recruit-item {
    margin-bottom: 5px;
  }
}

.recruit-item .item {
  padding: 0 10px;
  width: 20%;
}

@media screen and (max-width: 834px) {
  .recruit-item .item {
    padding: 0 7px;
  }
}

@media screen and (max-width: 640px) {
  .recruit-item .item {
    width: 33.333%;
    margin-bottom: 15px;
  }
}

.recruit-note {
  max-width: 835px;
  margin: 0 auto;
}

.recruit-note .ttl {
  display: block;
  font-size: 30px;
  font-size: 3rem;
  margin-bottom: 32px;
  font-weight: 500;
}

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

.recruit-note p {
  text-align: left;
}

@media screen and (min-width: 835px) {
  .recruit-note p {
    margin-bottom: 43px;
  }
}

.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-about .banner {
  position: relative;
}

.sec-about .banner .inner {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 834px) {
  .sec-about .banner .inner {
    padding: 0;
  }
}

.sec-about .banner .ttl-img {
  position: absolute;
  bottom: -4.8vw;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  padding: 0 15px;
  -o-transition: ease 1.5s !important;
  -webkit-transition: ease 1.5s !important;
  transition: ease 1.5s !important;
}

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

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

.sec-spec {
  padding: 155px 0 108px;
}

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

.sec-recruit {
  padding: 90px 0 102px;
}

@media screen and (max-width: 834px) {
  .sec-recruit {
    padding: 20px 0 30px;
  }
}

.sec-recruit:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 687px;
  background: #0074d3;
}

@media screen and (max-width: 1200px) {
  .sec-recruit:after {
    height: 50vw;
  }
}

@media screen and (max-width: 834px) {
  .sec-recruit:after {
    height: 43vw;
  }
}

@media screen and (max-width: 640px) {
  .sec-recruit:after {
    height: 120vw;
  }
}

.sec-recruit .inner {
  position: relative;
  z-index: 1;
}

@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: 50px;
  }
}

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

.sec-profile .ttl-img {
  margin-bottom: 73px;
}

@media screen and (max-width: 834px) {
  .sec-profile .ttl-img {
    max-width: 70%;
    margin-bottom: 30px;
    margin-right: 0;
    margin-left: auto;
  }
}

.sec-profile .ttl-history {
  margin-bottom: 69px;
}

@media screen and (max-width: 834px) {
  .sec-profile .ttl-history {
    margin-bottom: 30px;
    margin-right: auto;
    margin-left: 0;
  }
}

.sec-profile .box-profile {
  margin-bottom: 213px;
}

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

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

.sec-profile .box-history {
  margin-bottom: 200px;
}

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

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

.sec-message {
  padding-bottom: 333px;
}

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

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

.sec-message .img {
  position: relative;
  margin-bottom: 73px;
}

@media screen and (max-width: 834px) {
  .sec-message .img {
    margin-bottom: 30px;
  }
}

.sec-message .img img {
  min-height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.sec-message .txt-message {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
          text-orientation: mixed;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 90px;
  font-size: 9rem;
  line-height: 1;
  color: #18273e;
  position: absolute;
  left: 46px;
  top: calc(100% - 56px);
}

@media screen and (max-width: 990px) {
  .sec-message .txt-message {
    left: 10px;
  }
}

@media screen and (max-width: 834px) {
  .sec-message .txt-message {
    font-size: 60px;
    font-size: 6rem;
  }
}

.sec-message .box-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 834px) {
  .sec-message .box-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-left: 80px;
  }
}

.sec-message .box-content .content-left {
  width: 46.71%;
  font-family: YuMincho, "游明朝", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Sawarabi Mincho", "Yu Mincho", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  font-weight: 600;
  font-size: 30px;
  font-size: 3rem;
  color: #18273e;
  line-height: 1.75;
  padding-left: 15%;
}

@media screen and (max-width: 1300px) {
  .sec-message .box-content .content-left {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 834px) {
  .sec-message .box-content .content-left {
    width: 100%;
    font-size: 20px;
    font-size: 2rem;
    padding-left: 0;
    line-height: 1.5;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 374px) {
  .sec-message .box-content .content-left {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.sec-message .box-content .content-right {
  width: 53.29%;
  padding-right: 70px;
  padding-top: 4px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #18273e;
  line-height: 1.9;
}

@media screen and (max-width: 1200px) {
  .sec-message .box-content .content-right {
    padding-right: 0;
    padding-left: 20px;
    padding-top: 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 834px) {
  .sec-message .box-content .content-right {
    padding-right: 0;
    padding-left: 0;
    width: 100%;
    line-height: 1.5;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 374px) {
  .sec-message .box-content .content-right {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.sec-message .box-content .content-right span {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #18273e;
  display: block;
  text-align: right;
  margin-top: 33px;
  margin-right: 7px;
}

@media screen and (max-width: 1200px) {
  .sec-message .box-content .content-right span {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 834px) {
  .sec-message .box-content .content-right span {
    margin-top: 15px;
    margin-right: 0;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

@media screen and (max-width: 374px) {
  .sec-message .box-content .content-right span {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

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

/*# sourceMappingURL=maps/styles.css.map */
