@charset "UTF-8";
* {
  font-family: 'Noto Sans JP','メイリオ', 'Meiryo','YuGothic','Yu Gothic','ヒラギノ角ゴシック','Hiragino Sans','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
  color: #333; }

.sp {
  display: none; }
  @media (max-width: 1024px) {
    .sp {
      display: block; } }

@media (max-width: 1024px) {
  .pc {
    display: none; } }

.gray-out {
  pointer-events: none;
  opacity: .4; }

.top-section-ttl {
  text-align: center;
  color: #004982;
  font-size: 40px;
  font-weight: bold; }
  @media (max-width: 1024px) {
    .top-section-ttl {
      font-size: 24px; } }

.top-section-ttl-en {
  height: 23px;
  display: block;
  margin: 10px auto 0 auto; }
  @media (max-width: 1024px) {
    .top-section-ttl-en {
      height: 18px; } }

.top-section-txt {
  font-size: 20px;
  text-align: center;
  margin-top: 36px; }
  @media (max-width: 1024px) {
    .top-section-txt {
      font-size: 16px; } }

.page-ttl-wrap {
  margin-top: 80px;
  padding: 80px 0;
  background-color: #004982;
  text-align: center;
  background-size: cover; }
  @media (max-width: 480px) {
    .page-ttl-wrap {
      padding: 40px 0; } }

.page-ttl {
  font-size: 48px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px; }
  @media (max-width: 480px) {
    .page-ttl {
      font-size: 30px;
      margin-bottom: 10px; } }

.page-wrap {
  padding: 80px 20px 120px 20px;
  margin: 0 auto; }

.section-ttl-wrap {
  margin-bottom: 32px; }

.section-ttl {
  color: #004982;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px; }

header {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  position: fixed;
  top: 0;
  background: #fff;
  z-index: 9999;
  width: 100%; }
  @media (max-width: 768px) {
    header {
      padding: 0 20px; } }

.header-logo {
  width: 80px; }

.header-nav-pc {
  display: flex; }
  @media (max-width: 1024px) {
    .header-nav-pc {
      display: none; } }

.header-nav-sp {
  text-align: center;
  margin-top: 56px; }

.header-nav-btn {
  color: #050d39;
  margin-right: 40px;
  position: relative; }
  @media (max-width: 1024px) {
    .header-nav-btn {
      display: block;
      margin: 0 0 40px 0; } }
  .header-nav-btn::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    content: '';
    width: 100%;
    height: 4px;
    background: #004982;
    opacity: 0;
    visibility: hidden;
    transition: .3s; }
    @media (max-width: 1024px) {
      .header-nav-btn::after {
        display: none; } }
  .header-nav-btn:hover::after {
    bottom: -6px;
    opacity: 1;
    visibility: visible; }

.header-nav-contact {
  color: #fff;
  background: #00a95f;
  padding: 9px 21px;
  font-weight: bold;
  border-radius: 23px;
  border: 2px solid #00a95f;
  transition: .3s; }
  @media (max-width: 1024px) {
    .header-nav-contact {
      display: inline-block; } }
  .header-nav-contact:hover {
    color: #00a95f;
    background: #fff; }
  .header-nav-contact i {
    color: inherit; }

#nav-drawer {
  display: none;
  position: relative; }
  @media (max-width: 1024px) {
    #nav-drawer {
      display: block; } }

/*チェックボックス等は非表示に*/
.nav-unshown {
  display: none; }

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 40px;
  height: 30px;
  vertical-align: middle; }

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;
  /*線の太さ*/
  width: 40px;
  /*長さ*/
  border-radius: 3px;
  background: #004982;
  display: block;
  content: '';
  cursor: pointer; }

#nav-open span:before {
  bottom: -13px; }

#nav-open span:after {
  bottom: -26px; }

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;
  /*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;
  /*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out; }

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  /*最前面に*/
  width: 90%;
  /*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;
  /*最大幅（調整してください）*/
  height: 100%;
  background: #fff;
  /*背景色*/
  transition: .3s ease-in-out;
  /*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
  /*左に隠しておく*/ }

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;
  /*カバーを表示*/
  opacity: .5; }

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  /*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15); }

.top-visual {
  margin-top: 80px;
  position: relative;
  display: flex; }
  @media (max-width: 1024px) {
    .top-visual {
      display: block; } }

.top-visual-sm {
  width: 32%;
  height: 39.5vw;
  overflow: hidden; }
  @media (max-width: 1024px) {
    .top-visual-sm {
      display: flex;
      width: 100%;
      border-top: 3px solid #fff;
      height: auto; } }
  .top-visual-sm img {
    width: 100%; }

.swiper-container {
  width: 68%;
  border-right: 5px solid #fff; }
  @media (max-width: 1024px) {
    .swiper-container {
      width: 100%;
      border-right: none;
      border-bottom: 3px solid #fff; } }

@media (max-width: 1024px) {
  .slick-wrapper {
    max-width: 1024px;
    width: 100%; } }

.slide-img {
  height: 39.5vw; }
  @media (max-width: 1024px) {
    .slide-img {
      height: 57vw; } }
  .slide-img img {
    width: 100%; }

.top-message {
  position: absolute;
  width: 42%;
  z-index: 2;
  bottom: -58px;
  left: 134px; }
  @media (max-width: 1024px) {
    .top-message {
      position: static;
      width: 100%; } }

.top-visual-sm-img:first-child {
  border-bottom: 5px solid #fff; }
  @media (max-width: 1024px) {
    .top-visual-sm-img:first-child {
      border-bottom: none;
      border-right: 3px solid #fff; } }

.top-service {
  padding: 180px 0 80px 0; }
  @media (max-width: 768px) {
    .top-service {
      padding: 120px 0 80px 0; } }
  @media (max-width: 480px) {
    .top-service {
      padding: 80px 0; } }

.slick-container {
  margin-top: 104px;
  position: relative; }
  @media (max-width: 768px) {
    .slick-container {
      margin-top: 80px; } }
  @media (max-width: 480px) {
    .slick-container {
      margin-top: 40px; } }

.service-info-slider {
  width: 958px;
  height: 532px;
  text-align: right;
  position: relative;
  margin: 0 80px; }
  @media (max-width: 1024px) {
    .service-info-slider {
      width: 100vh; } }

.service-info-wrap {
  width: 463px;
  height: 463px;
  padding: 60px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 10px 8px rgba(0, 9, 80, 0.08);
  position: absolute;
  text-align: left;
  top: 50px;
  left: 0;
  cursor: pointer;
  transition: .3s;
  outline: none; }
  .service-info-wrap:hover, .service-info-wrap:focus {
    top: 45px; }
  @media (max-width: 1024px) {
    .service-info-wrap {
      width: 100%;
      top: inherit;
      bottom: 0;
      height: 50%;
      padding: 30px; }
      .service-info-wrap:hover, .service-info-wrap:focus {
        top: inherit; } }
  @media (max-width: 768px) {
    .service-info-wrap {
      height: auto;
      padding: 30px 30px 10px 30px; } }
  @media (max-width: 480px) {
    .service-info-wrap {
      position: static;
      display: block;
      padding: 20px 20px 10px 20px;
      bottom: 15px;
      box-shadow: none;
      border-right: 1px solid #eee;
      border-left: 1px solid #eee;
      border-bottom: 1px solid #eee; } }

.service-info-ttl {
  color: #004982;
  font-size: 24px;
  line-height: 150%;
  margin-bottom: 40px; }
  @media (max-width: 768px) {
    .service-info-ttl {
      font-size: 18px;
      margin-bottom: 20px; } }
  @media (max-width: 480px) {
    .service-info-ttl {
      font-size: 16px;
      margin-bottom: 10px; } }

.service-info-txt {
  line-height: 27px; }
  @media (max-width: 768px) {
    .service-info-txt {
      margin-bottom: 60px; } }
  @media (max-width: 480px) {
    .service-info-txt {
      font-size: 14px;
      margin-bottom: 30px; } }

.service-info-slider-img {
  width: 800px;
  height: 533px;
  margin: 0 0 0 auto; }
  @media (max-width: 1024px) {
    .service-info-slider-img {
      width: 100%;
      height: auto; } }

@media (max-width: 768px) {
  .service-info-view-more-wrap {
    text-align: right; } }

.service-info-view-more {
  background: #004982;
  color: #fff;
  padding: 15px 42px 15px 18px;
  border-radius: 30px;
  position: absolute;
  bottom: 60px;
  right: 60px; }
  .service-info-view-more::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent #ffffff;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 20px; }
  @media (max-width: 1024px) {
    .service-info-view-more {
      bottom: 30px;
      right: 30px; } }
  @media (max-width: 768px) {
    .service-info-view-more {
      font-size: 14px;
      position: relative;
      right: 0;
      display: inline-block; } }
  @media (max-width: 480px) {
    .service-info-view-more {
      bottom: 10px; } }

.slide-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 5; }
  .slide-arrow:hover, .slide-arrow :focus {
    opacity: .6; }
  @media (max-width: 1024px) {
    .slide-arrow {
      top: 25%;
      bottom: inherit; } }
  @media (max-width: 768px) {
    .slide-arrow {
      top: 8%; } }
  .slide-arrow.prev-arrow {
    left: calc(50% - 582px);
    border-width: 26.5px 46px 26.5px 0;
    border-color: transparent #ccd3db transparent transparent; }
    @media (max-width: 1190px) {
      .slide-arrow.prev-arrow {
        left: 0; } }
    @media (max-width: 1024px) {
      .slide-arrow.prev-arrow {
        border-color: transparent #004982 transparent transparent; } }
    @media (max-width: 480px) {
      .slide-arrow.prev-arrow {
        border-width: 18.5px 30px 18.5px 0; } }
  .slide-arrow.next-arrow {
    right: calc(50% - 582px);
    border-width: 26.5px 0 26.5px 46px;
    border-color: transparent transparent transparent #ccd3db; }
    @media (max-width: 1190px) {
      .slide-arrow.next-arrow {
        right: 0; } }
    @media (max-width: 1024px) {
      .slide-arrow.next-arrow {
        border-color: transparent transparent transparent #004982; } }
    @media (max-width: 480px) {
      .slide-arrow.next-arrow {
        border-width: 18.5px 0 18.5px 30px; } }

.slick-slide {
  outline: none; }
  @media (max-width: 1024px) {
    .slick-slide {
      width: 100vw; } }

@media (max-width: 768px) {
  .slick-wrapper .slick-slide {
    height: auto; } }
@media (max-width: 480px) {
  .slick-wrapper .slick-slide {
    padding: 0 20px; } }

.slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 40px; }
  .slick-dots li {
    border: 2px solid #004982;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 10px; }
    .slick-dots li.slick-active {
      background: #004982; }
    .slick-dots li button {
      display: none; }
  .slick-dots li:first-of-type {
    margin-left: 0; }

.service-info-ttl {
  display: flex; }
  .service-info-ttl .txt-lg {
    font-size: 46px;
    color: #004982; }
    @media (max-width: 768px) {
      .service-info-ttl .txt-lg {
        font-size: 32px; } }
    @media (max-width: 480px) {
      .service-info-ttl .txt-lg {
        font-size: 26px; } }
  .service-info-ttl .txt-ttl {
    margin-top: 10px;
    color: #004982; }
    @media (max-width: 768px) {
      .service-info-ttl .txt-ttl {
        margin-top: 6px; } }
    @media (max-width: 480px) {
      .service-info-ttl .txt-ttl {
        margin-top: 5px; } }

.top-link {
  padding: 120px 20px;
  background: #f2f6f9; }
  @media (max-width: 1024px) {
    .top-link {
      padding: 80px 0 40px 0; } }

.top-link-block {
  display: flex;
  justify-content: center; }
  @media (max-width: 1750px) {
    .top-link-block {
      justify-content: space-around; } }
  @media (max-width: 1024px) {
    .top-link-block {
      flex-direction: column; } }

.top-link-list:not(:last-child) {
  margin-right: 6.0606060606vw; }
  @media (max-width: 1750px) {
    .top-link-list:not(:last-child) {
      margin-right: 0; } }
  @media (max-width: 1750px) and (max-width: 1024px) {
    .top-link-list:not(:last-child) {
      margin: 0 auto; } }

.top-link-list {
  width: 30%;
  max-width: 500px; }
  @media (max-width: 1024px) {
    .top-link-list {
      width: 85%;
      margin: 0 auto; } }

.top-link-btn {
  width: 100%;
  height: 360px;
  display: block;
  position: relative;
  transition: .3s;
  overflow: hidden;
  margin: 0 auto; }
  @media (max-width: 1024px) {
    .top-link-btn {
      margin: 0 auto 40px auto; } }
  @media (max-width: 480px) {
    .top-link-btn {
      height: 220px; } }
  .top-link-btn::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out; }
  .top-link-btn:hover::after {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
  .top-link-btn:hover .top-link-btn-bg {
    background: #fff; }
  .top-link-btn:hover .top-link-btn-txt {
    color: #004982; }
  .top-link-btn.cases:hover .top-link-btn-txt::after {
    background: url(../img/case-on.svg) no-repeat; }
  .top-link-btn.company:hover .top-link-btn-txt::after {
    background: url(../img/company-on.svg) no-repeat; }
  .top-link-btn.mission:hover .top-link-btn-txt::after {
    background: url(../img/mission-on.svg) no-repeat; }

.top-link-btn.cases::after {
  background: url(../img/top-link-case.jpg) no-repeat center center;
  background-size: cover; }
.top-link-btn.cases .top-link-btn-txt::after {
  background: url(../img/case-off.svg) no-repeat; }

.top-link-btn.company::after {
  background: url(../img/top-link-company.jpg) no-repeat center center; }
.top-link-btn.company .top-link-btn-txt::after {
  background: url(../img/company-off.svg) no-repeat;
  width: 80px;
  height: 20px;
  bottom: -25px;
  left: 2px; }

.top-link-btn.mission::after {
  background: url(../img/top-link-mission.jpg) no-repeat center center;
  background-size: cover; }
.top-link-btn.mission .top-link-btn-txt::after {
  background: url(../img/mission-off.svg) no-repeat;
  width: 65px;
  height: 18px;
  bottom: -22px;
  left: 5px; }

.top-link-btn-bg {
  background: #004982;
  padding: 10px 40px 37px 35px;
  width: 100%;
  transition: .3s;
  position: absolute;
  z-index: 1;
  bottom: 0; }
  @media (max-width: 480px) {
    .top-link-btn-bg {
      padding: 8px 40px 31px 30px; } }

.top-link-btn-txt {
  font-size: 24px;
  color: #fff;
  position: relative; }
  .top-link-btn-txt::after {
    content: "";
    position: absolute;
    width: 45px;
    height: 12px;
    bottom: -18px;
    left: 0; }
  @media (max-width: 480px) {
    .top-link-btn-txt {
      font-size: 18px; } }

footer {
  background: url(../img/footer-bg.jpg) no-repeat center center;
  color: #fff; }
  footer .top-section-ttl {
    color: #fff; }
  footer .top-section-ttl-en {
    margin-top: 18px; }

.footer-wrap {
  padding: 80px 0;
  max-width: 1100px;
  margin: 0 auto; }

.footer-logo a {
  margin-left: 40px;
  margin-top: 70px;
  margin-bottom: 24px;
  background: white;
  padding: 10px 14px;
  display: inline-block; }
  @media (max-width: 1024px) {
    .footer-logo a {
      margin-left: 0; } }
.footer-logo img {
  width: 80px; }
@media (max-width: 1024px) {
  .footer-logo {
    margin-left: auto;
    text-align: center; } }

footer .contact-txt {
  margin-top: 24px;
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 150%; }
  @media (max-width: 1024px) {
    footer .contact-txt {
      width: 90%;
      margin: 24px auto 0 auto; } }

.contact-btn-wrap {
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #fff; }
  @media (max-width: 1024px) {
    .contact-btn-wrap {
      flex-direction: column;
      align-items: center; } }

footer .contact-btn {
  width: 340px;
  height: 80px;
  font-size: 22px;
  color: #060d39;
  display: block;
  background: #fff;
  margin: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s; }
  @media (max-width: 1024px) {
    footer .contact-btn {
      margin: 0 auto; } }
  footer .contact-btn i {
    color: #060d39; }
  footer .contact-btn:hover {
    color: #fff;
    background: #060d39;
    transition: .3s; }
    footer .contact-btn:hover i {
      color: #fff; }

.contact-btn.tel {
  font-size: 26px; }
  @media (max-width: 1024px) {
    .contact-btn.tel {
      margin-bottom: 24px; } }

.copyright {
  background: #060d39;
  text-align: center;
  padding: 16px; }
  .copyright p {
    color: #fff; }

.company-info {
  color: #fff;
  width: 378px;
  line-height: 27px; }
  @media (max-width: 1024px) {
    .company-info {
      margin-bottom: 24px; } }
  @media (max-width: 480px) {
    .company-info {
      width: 100%; } }

.footer-company-info-wrap {
  display: flex;
  margin-left: 40px;
  margin-bottom: 24px; }
  @media (max-width: 1024px) {
    .footer-company-info-wrap {
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 0; } }
  @media (max-width: 480px) {
    .footer-company-info-wrap {
      margin-left: 20px;
      margin-right: 20px; } }

.footer-company-info-wrap:last-of-type {
  margin-bottom: 24px; }
  @media (max-width: 1024px) {
    .footer-company-info-wrap:last-of-type {
      margin-bottom: 0; } }

.footer-nav {
  padding-left: 40px;
  margin-right: 40px;
  border-left: 1px solid #fff;
  display: flex;
  align-items: center; }
  @media (max-width: 1024px) {
    .footer-nav {
      display: none; } }

.footer-nav-btn {
  color: #fff;
  display: block;
  margin-bottom: 16px; }
  .footer-nav-btn:hover {
    text-decoration: underline; }
  .footer-nav-btn i {
    color: #fff; }

.footer-flex {
  display: flex;
  justify-content: space-between; }
  @media (max-width: 1024px) {
    .footer-flex {
      justify-content: center; } }

/*company*/
.company .page-wrap {
  max-width: 840px; }
.company .page-ttl-wrap {
  background-image: url(../img/company-ttl-bg.jpg); }
.company .page-ttl-en {
  width: 127px; }
  @media (max-width: 480px) {
    .company .page-ttl-en {
      width: 80px; } }
.company .copmany-top-message .section-ttl-en {
  width: 90px; }
.company .company-top-message-txt {
  font-size: 14px;
  line-height: 27px; }
.company .ceo {
  margin-top: 40px;
  text-align: right;
  display: block; }
  .company .ceo img {
    width: 300px; }
.company .company-profile {
  margin-top: 80px; }
  .company .company-profile .section-ttl-en {
    width: 74px; }
.company .company-profile-line {
  display: flex;
  border-top: 1px solid #cdcdcd;
  padding: 24px 0; }
  @media (max-width: 1024px) {
    .company .company-profile-line {
      flex-direction: column;
      padding-left: 20px; } }
.company .company-profile-ttl {
  font-size: 14px;
  font-weight: bold;
  padding-left: 20px;
  width: 220px;
  line-height: 27px; }
  @media (max-width: 1024px) {
    .company .company-profile-ttl {
      padding-left: 0; } }
.company .company-profile-contents {
  font-size: 14px;
  line-height: 27px; }
.company .company-history {
  margin-top: 80px; }
  .company .company-history .section-ttl-en {
    width: 50px; }
.company .company-history-block {
  position: relative; }
  .company .company-history-block::after {
    content: "";
    width: 1px;
    height: 126px;
    background: #ccc;
    position: absolute;
    top: 20px;
    left: 115px;
    z-index: -1; }
    @media (max-width: 1024px) {
      .company .company-history-block::after {
        display: none; } }
.company .company-history-line {
  display: flex; }
  @media (max-width: 1024px) {
    .company .company-history-line {
      flex-direction: column;
      margin-bottom: 16px; } }
.company .company-history-year {
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  color: #666;
  letter-spacing: 0.5px;
  width: 200px;
  line-height: 42px;
  position: absolute; }
  @media (max-width: 1024px) {
    .company .company-history-year {
      position: static; } }
  .company .company-history-year::after {
    content: "";
    width: 9px;
    height: 9px;
    background: #004982;
    position: absolute;
    border-radius: 50%;
    margin: auto;
    top: 0;
    bottom: 0;
    position: absolute;
    left: 111px; }
    @media (max-width: 1024px) {
      .company .company-history-year::after {
        display: none; } }
.company .company-history-month {
  line-height: 42px;
  padding-left: 200px; }
  @media (max-width: 1024px) {
    .company .company-history-month {
      padding-left: 0; } }

/*contact*/
.contact {
  /* iOSでのデフォルトスタイルをリセット */
  /*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
  /*contact-step2*/ }
  .contact .page-wrap {
    max-width: 1000px;
    padding: 80px 0px 120px 0px; }
  .contact .page-ttl-wrap {
    background: url(../img/contact-ttl-bg.jpg);
    background-size: cover; }
  .contact .page-ttl-en {
    width: 107px; }
  .contact .step-wrap {
    position: relative;
    width: 851px;
    height: 83px;
    margin: 0 auto 32px auto; }
    @media (max-width: 1000px) {
      .contact .step-wrap {
        width: 730px; } }
    @media (max-width: 768px) {
      .contact .step-wrap {
        width: 100%;
        height: 10.8072916667vw;
        margin: 0 auto 4.1666666667vw auto; } }
  .contact .step {
    color: #fff;
    width: 277px;
    height: 83px;
    position: absolute;
    background: #004982;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ccc; }
    @media (max-width: 1000px) {
      .contact .step {
        width: 236px; } }
    @media (max-width: 768px) {
      .contact .step {
        width: 32.08556%;
        height: 10.8072916667vw; } }
    @media (max-width: 500px) {
      .contact .step {
        font-size: 12px; } }
    @media (max-width: 370px) {
      .contact .step {
        font-size: 10px; } }
    .contact .step.on {
      background: #004982; }
  .contact .step1 {
    z-index: 3; }
    .contact .step1::after {
      content: "";
      position: absolute;
      width: 0;
      height: 0;
      right: -32px;
      top: 0;
      border-style: solid;
      border-width: 41.5px 0 41.5px 32px;
      border-color: transparent transparent transparent #ccc; }
      @media (max-width: 768px) {
        .contact .step1::after {
          right: -4.1666666667vw;
          border-width: 5.4036458333vw 0 5.4036458333vw 4.1666666667vw; } }
    .contact .step1.on::after {
      border-color: transparent transparent transparent #004982; }
  .contact .step2 {
    z-index: 2;
    left: 286px; }
    @media (max-width: 1000px) {
      .contact .step2 {
        left: 246px; } }
    @media (max-width: 768px) {
      .contact .step2 {
        left: 33.957219%;
        padding-left: 3%;
        box-sizing: border-box; } }
    .contact .step2::before {
      content: "";
      position: absolute;
      width: 0;
      height: 0;
      left: 0;
      top: 0;
      border-style: solid;
      border-width: 41.5px 0 41.5px 32px;
      border-color: transparent transparent transparent #fff; }
      @media (max-width: 768px) {
        .contact .step2::before {
          border-width: 5.4036458333vw 0 5.4036458333vw 4.1666666667vw; } }
    .contact .step2::after {
      content: "";
      position: absolute;
      width: 0;
      height: 0;
      top: 0;
      right: -32px;
      border-style: solid;
      border-width: 41.5px 0 41.5px 32px;
      border-color: transparent transparent transparent #ccc; }
      @media (max-width: 768px) {
        .contact .step2::after {
          right: -4.1666666667vw;
          border-width: 5.4036458333vw 0 5.4036458333vw 4.1666666667vw; } }
    .contact .step2.on::after {
      border-color: transparent transparent transparent #004982; }
  .contact .step3 {
    z-index: 1;
    left: 572px; }
    @media (max-width: 1000px) {
      .contact .step3 {
        left: 492px; } }
    @media (max-width: 768px) {
      .contact .step3 {
        left: 67.91443850%;
        padding-left: 2%;
        box-sizing: border-box; } }
    .contact .step3::before {
      content: "";
      position: absolute;
      width: 0;
      height: 0;
      left: 0;
      top: 0;
      border-style: solid;
      border-width: 41.5px 0 41.5px 32px;
      border-color: transparent transparent transparent #fff; }
      @media (max-width: 768px) {
        .contact .step3::before {
          border-width: 5.4036458333vw 0 5.4036458333vw 4.1666666667vw; } }
  .contact #formWrap {
    max-width: 1000px;
    padding: 0 10px;
    margin: 0 auto;
    color: #555;
    line-height: 120%;
    font-size: 90%; }
    .contact #formWrap .contact-txt {
      margin-bottom: 40px;
      line-height: 150%;
      text-align: center; }
    .contact #formWrap textarea {
      width: 80%; }
  .contact table.formTable {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    margin-bottom: 40px;
    table-layout: fixed; }
  .contact table.formTable td {
    border: 1px solid #ccc;
    padding: 20px;
    border-right: none;
    border-left: none; }
  .contact table.formTable th {
    width: 30%;
    font-weight: 400;
    background: #f5f5f5;
    text-align: left;
    vertical-align: middle;
    font-size: 16px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-left: none;
    border-right: none;
    padding: 20px; }
  .contact table.formTable td input {
    height: 30px;
    border: 1px solid #ccc;
    margin-right: 7px; }
  .contact table.formTable td textarea {
    border: 1px solid #ccc; }
  .contact table.formTable td select {
    border: 1px solid #ccc; }
  .contact .required {
    color: #fff;
    font-size: 11px;
    background: #e13e01;
    padding: 0 4px;
    line-height: 15px;
    display: inline-block;
    margin-left: 5px; }
  .contact input[type="submit"],
  .contact input[type="button"] {
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box; }
    .contact input[type="submit"]::-webkit-search-decoration,
    .contact input[type="button"]::-webkit-search-decoration {
      display: none; }
    .contact input[type="submit"]::focus,
    .contact input[type="button"]::focus {
      outline-offset: -2px; }
  .contact label, .contact input[type='checkbox'] {
    cursor: pointer; }
  .contact .contact-type {
    display: block; }
  .contact .contact-btn {
    width: 250px;
    padding: 25px;
    font-size: 16px;
    background: #004982;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: .3s; }
    .contact .contact-btn:hover {
      opacity: .6; }
  .contact .ttl01 {
    font-size: 24px;
    text-align: center;
    margin: 80px 0 16px;
    font-weight: bold; }
  .contact .contact-send {
    margin: 80px 0 120px; }
  .contact .privacy-txt {
    text-align: center;
    margin-bottom: 40px; }
    .contact .privacy-txt a {
      text-decoration: underline; }
  .contact select {
    -moz-appearance: menulist;
    -webkit-appearance: menulist; }
  .contact .contact-btn.gray {
    background: #ccc; }
  .contact .contact-btn.block {
    display: block; }
  .contact .error_messe {
    line-height: 200%; }
  .contact .error_messe:first-of-type {
    margin-top: 24px; }
  .contact .contact-thanks {
    line-height: 200%;
    margin: 24px 0 56px; }
  .contact .step3-wrap {
    padding: 0 10px; }
  .contact .contact-flex {
    text-align: center;
    margin-bottom: 120px; }
    @media (max-width: 550px) {
      .contact .contact-flex {
        display: flex;
        flex-direction: column;
        align-items: center; }
        .contact .contact-flex .gray {
          margin-top: 10px; } }
  @media screen and (max-width: 572px) {
    .contact #formWrap {
      margin: 0 auto; }
    .contact table.formTable th, .contact table.formTable td {
      width: auto;
      display: block;
      border: none; }
    .contact table.formTable th {
      margin-top: 5px;
      border-bottom: 0;
      border: none; }
    .contact input[type="text"], .contact textarea {
      width: 80%;
      padding: 5px;
      font-size: 110%;
      display: block; } }
  .contact .contact-notice {
    text-align: center;
    margin: 24px 0; }

/*policy*/
.policy .page-ttl {
  font-size: 24px;
  margin-bottom: 0; }
.policy .page-ttl-wrap {
  padding: 40px 0; }
.policy .page-wrap {
  max-width: 1000px; }
.policy .ttl01 {
  font-size: 24px;
  text-align: center; }
.policy .ttl02 {
  font-size: 16px;
  margin: 56px 0 24px 0;
  font-weight: bold; }
.policy .ttl03 {
  text-align: center;
  font-size: 16px;
  margin: 56px 0 24px 0; }
.policy .center {
  text-align: center; }
.policy #cookie-policy {
  padding: 0 30px;
  padding-top: 80px; }
.policy #cookie-policy p {
  line-height: 150%;
  font-size: 14px; }
.policy #cookie-policy li {
  line-height: 150%;
  font-size: 14px; }
.policy #cookie-policy ol li {
  list-style-type: decimal; }
.policy #cookie-policy a {
  text-decoration: underline; }
.policy #privacy-policy {
  padding: 0 30px;
  padding-bottom: 80px;
  border-bottom: 1px solid #e1e1e1; }
  .policy #privacy-policy a {
    text-decoration: underline; }
.policy #privacy-policy p {
  line-height: 150%;
  font-size: 14px; }
.policy .mt32 {
  margin-top: 32px; }
