@charset "UTF-8";
* {
  box-sizing: border-box;
}
/*=============================================
* body
*=============================================*/
body {
  color: #727171;
  font-family: 'Noto Sans JP';
  font-size: 18px;
  line-height: 37px;
  letter-spacing: 0;
  background: #fff;
  min-width: inherit;
  min-height: inherit;
  max-height: 100%;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 13px;
    line-height: 22px;
  }
}

@media only screen and (max-width: 767px) {
  :root {
    --app-height: 100%;
  }
  html.open,
  body.menu-open {
    padding: 0;
    margin: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    height: var(--app-height);
  }
}
/*=============================================
* <main>
*=============================================*/
main {
  clear: both;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.wrap {
  max-width: 1260px;
  width: 100%;
  padding: 0 30px;
}

a:hover {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

a, img {
  transition: 0.3s all ease-in-out;
}

.img--white {
  filter: brightness(0) invert(1);
}

.object-cover {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: 50%;
}

.db {
  display: block;
}

.df {
  display: flex;
}

.jcfs {
  justify-content: flex-start;
}

.jcc {
  justify-content: center;
}

.jcsb {
  justify-content: space-between;
}

.jcfe {
  justify-content: flex-end;
}

.aifs {
  align-items: flex-start;
}

.aic {
  align-items: center;
}

.aife {
  align-items: flex-end;
}

.sp {
  display: block;
}

.pc {
  display: none;
}

@media screen and (max-width: 767px) {
  .wrap {
    padding: 0 8vw;
  }
}

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

/*=============================================
* <header>
*=============================================*/
body.nav--opened,
body.nav--opened *,
body.nav--opened *:hover,
body.nav--opened *:focus,
body.nav--opened *:active {
  /*    cursor: none !important;*/
  touch-action: none !important;
  pointer-events: none !important;
}

body.nav--opened header .box .logo,
body.nav--opened header .box .logo *,
body.nav--opened #menu-toggle,
body.nav--opened #menu-toggle *,
body.nav--opened .hamburger {
  touch-action: auto !important;
  pointer-events: visible !important;
}

.nav--opened {
  overflow: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  touch-action: none !important;
  pointer-events: none !important;
}

.nav--opened #menu-toggle {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
  overflow: auto;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 100px;
  z-index: 9999;
  transition: 0.5s all ease;
  padding: 0 20px;
}

header .inner {
  display: flex;
  justify-content: center;
  gap: 26px;
}

header .box {
  max-width: 1235px;
  width: calc(100% - 358px);
  height: 78px;
  background: #fff;
  border-radius: 40px;
  padding: 0 96px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .box .logo {
  width: 234px;
  position: relative;
  z-index: 999;
}

header .box ul {
  display: flex;
  justify-content: flex-end;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #898989;
}

header .box ul li + li {
  margin-left: 47px;
}

header .box ul li a:hover {
  color: #005dad;
}

header .request-btn {
  width: 202px;
}

header .request-btn a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 78px;
  border-radius: 40px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: #ddbc44;
}

header .request-btn a:hover {
  background: #002a70;
}

header .hamburger {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  padding: 19px 29px;
  cursor: pointer;
  position: relative;
  z-index: 99;
}

header .hamburger:before {
  content: '';
  background: #005dad;
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -2;
  transition: all 2s ease-in, all 1s ease-out;
}

header .hamburger:after {
  content: '';
  background: #005dad;
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  transition: 0.3s all ease;
}

header .hamburger:hover:after {
  background: #002a70;
}

@media screen and (max-width: 1180px) {
  header .box {
    padding: 0 30px;
  }
  header .box ul li + li {
    margin-left: 40px;
  }
}

@media screen and (max-width: 1080px) {
  header .box {
    padding: 0 30px 0 20px;
  }
  header .box .logo {
    width: 200px;
  }
  header .box ul li + li {
    margin-left: 25px;
  }
}

@media screen and (max-width: 980px) {
  header .inner {
    gap: 15px;
  }
  header .box {
    width: calc(100% - 260px);
  }
  header .box .logo {
    width: 135px;
  }
  header .box ul {
    font-size: 15px;
  }
  header .box ul li + li {
    margin-left: 15px;
  }
  header .request-btn {
    width: 140px;
  }
  header .request-btn a {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  header {
    padding: 0 10px;
    top: 10px;
  }
  header .inner {
    justify-content: flex-end;
    gap: 13px;
  }
  header .box {
    max-width: none;
    width: 117px;
    padding: 0;
    border-radius: 0;
    display: block;
    background: transparent;
    position: absolute;
    left: 10px;
    top: 4px;
  }
  header .box .logo {
    width: 100%;
  }
  header .box ul {
    display: none;
  }
  header .request-btn {
    width: 101px;
  }
  header .request-btn a {
    font-size: 13px;
    height: 39px;
  }
  header .hamburger {
    width: 39px;
    height: 39px;
    padding: 6px 14px;
  }
}

.has-nav header {
  top: 10px;
}

.menu-toggle {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  width: 100%;
  top: 200px;
  right: 0;
  bottom: 0;
  padding: 125px 0 100px;
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  z-index: 999;
  color: #fff;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.menu-toggle .wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.menu-toggle .menu-logo {
  width: 234px;
  margin-bottom: 160px;
}

.menu-toggle .row-navi {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto 37px;
  padding: 0 30px;
  display: flex;
  align-items: flex-start;
}

.menu-toggle .row-navi .ttl {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: center;
  transform: translateY(10px);
  transition: 0.2s all ease-in-out;
  transition-delay: 0.6s;
}

.menu-toggle .row-navi ul {
  max-width: 170px;
  width: 100%;
  margin: 0 auto;
  font-size: 23px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.menu-toggle .row-navi ul a {
  opacity: 0.5;
}

.menu-toggle .row-navi ul a:hover {
  opacity: 1;
}

.menu-toggle .row-navi .col {
  position: relative;
}

.menu-toggle .row-navi .col:before {
  content: '';
  height: 278px;
  border-left: 1px dashed #fff;
  position: absolute;
  left: 0;
  top: 15px;
}

.menu-toggle .row-navi .col-service {
  width: 22%;
}

.menu-toggle .row-navi .col-service:before {
  display: none;
}

.menu-toggle .row-navi .col-service ul {
  max-width: none;
}

.menu-toggle .row-navi .col-service .ttl {
  text-align: left;
}

.menu-toggle .row-navi .col-content {
  width: 28%;
}

.menu-toggle .row-navi .col-content ul {
  max-width: 203px;
}

.menu-toggle .row-navi .col-about {
  width: 24%;
}

.menu-toggle .row-navi .col-news {
  width: 26%;
}

.menu-toggle .row-navi .col-news:before {
  height: 136px;
  bottom: auto;
}

.menu-toggle .row-navi .col-news .ttl {
  padding-right: 20px;
}

.menu-toggle .row-navi .contact-box {
  max-width: 297px;
  margin-top: 40px;
  background: #fff;
  color: #005dad;
  border-radius: 20px;
  padding: 18px 28px 30px;
  font-weight: 700;
}

.menu-toggle .row-navi .contact-box .sttl {
  font-size: 36px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 22px;
}

.menu-toggle .row-navi .contact-box dd {
  width: 148px;
  font-size: 17px;
  letter-spacing: 0.12em;
  line-height: 24px;
}

.menu-toggle .row-navi .contact-box dd a {
  display: block;
  position: relative;
}

.menu-toggle .row-navi .contact-box dd a:after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("../img/shared/icon_right@2x.png");
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.menu-toggle .row-navi .contact-box dd a + a {
  margin-top: 19px;
}

.menu-toggle .row-navi .contact-box dd a:hover {
  opacity: 0.8;
}

.menu-toggle .row-banner {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.menu-toggle .row-banner p + p {
  margin-top: 30px;
}

@media screen and (max-width: 1180px) {
  .menu-toggle .row-navi .ttl {
    font-size: 46px;
  }
}

@media screen and (max-width: 1080px) {
  .menu-toggle .row-navi .ttl {
    font-size: 40px;
  }
}

@media screen and (max-width: 980px) {
  .menu-toggle .row-navi .ttl {
    font-size: 30px;
  }
  .menu-toggle .row-navi ul {
    max-width: 113px;
    font-size: 18px;
  }
  .menu-toggle .row-navi .col-content ul {
    max-width: 157px;
  }
  .menu-toggle .row-navi .contact-box {
    padding: 18px 20px 30px;
  }
  .menu-toggle .row-navi .contact-box .sttl {
    font-size: 28px;
  }
  .menu-toggle .row-navi .contact-box dd {
    width: 135px;
    font-size: 15px;
  }
}

@media screen and (max-width: 767px) {
  .menu-toggle {
    top: 80px;
    padding: 0px 0 100px;
  }
  .menu-toggle .wrapper {
    padding: 0 2vw;
  }
  .menu-toggle .row-navi {
    padding: 0 7.2vw 28vw;
    margin-bottom: 4vw;
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;
  }
  .menu-toggle .row-navi .ttl {
    text-align: left;
    font-size: 6.7vw;
    margin-bottom: 3vw;
  }
  .menu-toggle .row-navi .col {
    position: static;
  }
  .menu-toggle .row-navi .col:before {
    display: none;
  }
  .menu-toggle .row-navi .col ul {
    font-size: 3.5vw;
    line-height: 8.8vw;
    max-width: none !important;
  }
  .menu-toggle .row-navi .col-news,
  .menu-toggle .row-navi .col-about,
  .menu-toggle .row-navi .col-content,
  .menu-toggle .row-navi .col-service {
    width: 50%;
    padding-left: 4vw;
  }
  .menu-toggle .row-navi .col-service {
    margin-bottom: 9vw;
  }
  .menu-toggle .row-navi .col-news {
    margin-top: -20vw;
  }
  .menu-toggle .row-navi .contact-box {
    max-width: none;
    width: auto;
    height: 21vw;
    margin: 0;
    position: absolute;
    left: 7.2vw;
    right: 7.2vw;
    bottom: 0;
    border-radius: 4vw;
    padding: 3vw 4vw 0px;
  }
  .menu-toggle .row-navi .contact-box .sttl {
    font-size: 4.8vw;
    margin-bottom: 2vw;
  }
  .menu-toggle .row-navi .contact-box dd {
    width: 100%;
    display: flex;
    font-size: 3.5vw;
    line-height: 1.2;
    column-gap: 12vw;
  }
  .menu-toggle .row-navi .contact-box dd a {
    padding-right: 6vw;
  }
  .menu-toggle .row-navi .contact-box dd a:after {
    width: 3.2vw;
    height: 3.2vw;
    top: 0.5vw;
  }
  .menu-toggle .row-navi .contact-box dd a + a {
    margin-top: 0;
  }
  .menu-toggle .row-banner {
    padding: 0;
  }
  .menu-toggle .row-banner p + p {
    margin-top: 4vw;
  }
}

.menu-toggle::-webkit-scrollbar {
  display: none;
}

.menu-toggle > * {
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
  transition-delay: 0.6s;
}

.nav--opened header {
  top: 100px;
}

.nav--opened header .box ul,
.nav--opened header .request-btn {
  opacity: 0;
  visibility: hidden;
}

.nav--opened header .box {
  background: transparent;
}

.nav--opened header .box .logo img {
  filter: brightness(0) invert(1);
}

.nav--opened header .hamburger {
  padding: 15px 29px;
}

.nav--opened header .hamburger:before {
  transform: scale(57);
}

.nav--opened header .hamburger:after {
  background: #ddbc44;
}

.nav--opened header .hamburger:hover:after {
  background: #002a70;
}

.nav--opened .menu-toggle > * {
  opacity: 1;
}

.nav--opened .menu-toggle .row-navi .ttl {
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  .nav--opened header {
    top: 10px;
  }
  .nav--opened header .hamburger {
    padding: 4px 14px;
  }
  .nav--opened header .hamburger:hover:after {
    background: #ddbc44;
  }
}

.btn-common {
  max-width: 516px;
  width: 100%;
  margin: 0 auto;
}

.btn-common a {
  display: block;
  background: #ddbc44;
  color: #fff;
  text-align: center;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 37px;
  padding: 15px;
  border-radius: 50px;
}

.btn-common a span:after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("../img/shared/icon_right3@2x.png");
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  margin-left: 16px;
  position: relative;
  top: 3px;
}

.btn-common a:hover {
  background: #002a70;
}

.btn-common.navi a {
  background: #002a70;
}

.btn-common.navi a:hover {
  background: #ddbc44;
}

@media screen and (max-width: 767px) {
  .btn-common {
    max-width: none;
    width: auto;
    margin: 0 -6vw;
  }
  .btn-common a {
    background: linear-gradient(0deg, #d4af00 0%, #edc300 100%);
    font-size: 5.3vw;
    line-height: 8.8vw;
    padding: 2vw;
    border-radius: 6.7vw;
    position: relative;
  }
  .btn-common a span:after {
    width: 6.3vw;
    height: auto;
    margin-left: 0;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 50%;
    position: absolute;
    right: 6.4vw;
    top: 0;
    bottom: 0;
  }
  .btn-common.navi a {
    background: linear-gradient(0deg, black 0%, #002a70 35%);
  }
}

/*=============================================
* <footer>
*=============================================*/
.footer-structure {
  background-image: url("../img/shared/footer_bg@2x.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  padding: 100px 0 115px;
}

.footer-structure h2 {
  color: #1479b7;
  font-size: 73px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  opacity: 0.2;
  margin-bottom: 22px;
}

.footer-structure .btxt {
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 33px;
}

.footer-structure .txt {
  font-size: 22px;
  line-height: 55px;
  letter-spacing: 0.12em;
  margin-bottom: 80px;
}

.footer-structure .btn-line {
  max-width: 600px;
  width: 100%;
  margin: 0 auto 54px;
  border-bottom: 1px solid #002a70;
  color: #002a70;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding-bottom: 9px;
}

@media screen and (max-width: 980px) {
  .footer-structure h2 {
    font-size: 68px;
  }
  .footer-structure .btxt {
    font-size: 30px;
  }
  .footer-structure .txt {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .footer-structure {
    padding: 14vw 0 19vw;
    background-image: url("../img/shared/footer_bg_sp@2x.jpg");
  }
  .footer-structure h2 {
    font-size: 5.3vw;
    margin-bottom: 6vw;
  }
  .footer-structure .btxt {
    font-size: 5.3vw;
    line-height: 8vw;
    margin: 0 -4vw 3vw;
  }
  .footer-structure .txt {
    color: #4f4d4d;
    font-size: 13px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0em;
    margin-bottom: 15vw;
  }
  .footer-structure .btn-line {
    max-width: none;
    width: 77vw;
    margin: 0 auto 15vw;
    border-bottom: 1px solid #727171;
    color: #727171;
    font-size: 4vw;
    padding-bottom: 1vw;
  }
  .footer-structure .btn-common a {
    font-size: 4.7vw;
  }
}

.footer-content {
  padding: 86px 0 7px;
}

.footer-content .wrap {
  max-width: 1530px;
}

.footer-content .row {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  margin-bottom: 143px;
}

.footer-content .row .col-navi {
  display: flex;
  justify-content: flex-end;
  column-gap: 39px;
  margin: 8px 0 0 121px;
}

.footer-content .row .col-navi .ttl {
  color: #002a70;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 42px;
  margin-bottom: -9px;
}

.footer-content .row .col-navi ul {
  font-size: 17px;
  line-height: 42px;
  letter-spacing: 0.12em;
  color: #727171;
}

.footer-content .row .col-navi ul li a {
  text-decoration: underline;
}

.footer-content .row .col-navi ul li a:hover {
  text-decoration: none;
}

.footer-content .row .col-left .logo {
  width: 346px;
  margin: 0 0 46px 8px;
}

.footer-content .row .col-left .txt {
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 0.12em;
}

.footer-content .row .col-left .txt br.tab {
  display: none;
}

.footer-content address {
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.12em;
  line-height: 55px;
}

@media screen and (max-width: 1440px) {
  .footer-content .row {
    justify-content: space-between;
  }
  .footer-content .row .col-navi {
    margin-left: 0;
  }
}

@media screen and (max-width: 1350px) {
  .footer-content .row .col-navi {
    column-gap: 30px;
  }
}

@media screen and (max-width: 1280px) {
  .footer-content .row .col-left .txt br.tab {
    display: block;
  }
}

@media screen and (max-width: 1180px) {
  .footer-content .row .col-navi {
    column-gap: 20px;
  }
  .footer-content .row .col-left .logo {
    width: 310px;
  }
  .footer-content .row .col-left .txt {
    font-size: 20px;
  }
}

@media screen and (max-width: 1080px) {
  .footer-content .row {
    display: block;
  }
  .footer-content .row .col-navi {
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .footer-content .row .col-left .txt {
    font-size: 22px;
  }
  .footer-content .row .col-left .txt br.tab {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .footer-content {
    padding: 40px 0 29vw;
  }
  .footer-content .row {
    display: block;
    margin-bottom: 25px;
  }
  .footer-content .row .col-navi {
    display: block;
    margin: 0 0 45px;
  }
  .footer-content .row .col-navi .ttl {
    font-size: 18px;
    line-height: 33px;
    margin-bottom: 0px;
  }
  .footer-content .row .col-navi ul {
    font-size: 13px;
    line-height: 33px;
  }
  .footer-content .row .col-navi .col + .col {
    margin-top: 25px;
  }
  .footer-content .row .col-left .logo {
    width: 173px;
    margin: 0 0 20px 0px;
  }
  .footer-content .row .col-left .txt {
    font-size: 11px;
    line-height: 16px;
  }
  .footer-content .row .col-left .txt br.tab {
    display: none;
  }
  .footer-content .row .col-left .txt span {
    font-size: 13px;
  }
  .footer-content address {
    font-size: 11px;
    line-height: 25px;
  }
}

.ft-fixed-btn {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 9;
  transition: 0.5s;
}

.ft-fixed-btn a:hover img {
  opacity: 1 !important;
}

@media screen and (max-width: 767px) {
  .ft-fixed-btn {
    left: 10px;
  }
  .ft-fixed-btn .close {
    display: block;
    width: 3.5vw;
    position: absolute;
    top: -2vw;
    right: -1vw;
    transition: all 0.3s;
  }
}

@media screen and (min-width: 768px) {
  .ft-fixed-btn li {
    max-width: 570px;
    position: relative;
  }
  .ft-fixed-btn li.ai a {
    display: inline-block;
  }
  .ft-fixed-btn li.ai a:hover {
    animation: shake 0.4s ease;
    opacity: 1;
  }
  .ft-fixed-btn .close {
    display: block;
    width: 26px;
    position: absolute;
    top: 31px;
    right: -1px;
    cursor: pointer;
    transition: all 0.3s;
  }
}

.ft-fixed-btn.close {
  transform: translateY(112%);
}

@media screen and (max-width: 767px) {
  .ft-fixed-btn.close .close {
    transform: rotate(-45deg);
    top: -10vw;
  }
}

@media screen and (min-width: 768px) {
  .ft-fixed-btn.close {
    transform: translateX(110%);
  }
  .ft-fixed-btn.close .close {
    transform: rotate(-45deg);
    right: 110%;
  }
}

@keyframes shake {
  0% {
    transform: rotate(0);
  }
  16% {
    transform: rotate(12deg);
  }
  32% {
    transform: rotate(-10deg);
  }
  48% {
    transform: rotate(8deg);
  }
  64% {
    transform: rotate(-6deg);
  }
  80% {
    transform: rotate(4deg);
  }
  96% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* --------------------------------------------------------------------- */
/* ef */
/* --------------------------------------------------------------------- */
@-webkit-keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-delay: 0.3s;
}

#main-title {
  background-image: url("../img/shared/h1_bg@2x.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  padding: 210px 20px 0;
  height: 537px;
}

#main-title .title-box {
  max-width: 1196px;
  width: 100%;
  height: 260px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px 30px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

#main-title .title-box h1 {
  font-weight: 700;
  letter-spacing: 0.08em;
}

#main-title .title-box h1 span {
  display: block;
}

#main-title .title-box h1 .jp {
  color: #595757;
  font-size: 40px;
  margin-bottom: 20px;
}

#main-title .title-box h1 .eng {
  color: #005e36;
  opacity: 0.1;
  font-size: 46px;
  letter-spacing: 0.1em;
}

.breadcrum {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto 49px;
  display: flex;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: #898989;
}

.breadcrum li {
  margin-right: 25px;
  position: relative;
}

.breadcrum li:after {
  content: '＞';
  color: #005dad;
  position: absolute;
  top: 0;
  right: -22px;
}

.breadcrum li:last-child {
  margin-right: 0;
}

.breadcrum li:last-child:after {
  display: none;
}

.breadcrum a {
  color: #005dad;
}

.breadcrum a:hover {
  color: #ddbc44;
}

@media screen and (max-width: 767px) {
  #main-title {
    background-image: url("../img/shared/h1_bg_sp@2x.jpg");
    padding: 0 8.5vw;
    height: 53.3vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  #main-title .title-box {
    max-width: none;
    height: 33.3vw;
    border-radius: 2vw 2vw 0 0;
    padding-top: 3vw;
  }
  #main-title .title-box h1 .jp {
    font-size: 5.3vw;
    margin-bottom: 2vw;
  }
  #main-title .title-box h1 .eng {
    font-size: 6.1vw;
  }
  .breadcrum {
    display: none;
  }
}

#banner-contact {
  padding: 180px 30px 50px;
}

#banner-contact .banner-box {
  max-width: 1207px;
  width: 100%;
  margin: 0 auto;
  background-image: url("../img/top/banner_bg@2x.png");
  background-size: cover;
  background-position: 50%;
  border-radius: 30px;
  color: #fff;
  position: relative;
  padding: 79px 87px 57px;
}

#banner-contact .banner-box .img {
  width: 653px;
  position: absolute;
  left: -34px;
  top: 10px;
}

#banner-contact .banner-box .col-text {
  width: 440px;
  position: relative;
  margin-left: auto;
}

#banner-contact .banner-box .col-text h2 {
  font-size: 35px;
  line-height: 1.14;
  letter-spacing: 0.15em;
  margin-bottom: 18px;
}

#banner-contact .banner-box .col-text .deco {
  width: 170px;
  position: absolute;
  right: -78px;
  top: -74px;
}

#banner-contact .banner-box .col-text .txt {
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 16px;
}

#banner-contact .banner-box .col-text ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 44px;
}

#banner-contact .banner-box .col-text ul li {
  color: #005dad;
  background: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 27px;
  border-radius: 15px;
}

#banner-contact .banner-box .col-text ul li:nth-child(odd) {
  width: calc(45% - 3px);
}

#banner-contact .banner-box .col-text ul li:nth-child(even) {
  width: calc(55% - 3px);
}

#banner-contact .banner-box .col-text .btn {
  max-width: 366px;
  width: 100%;
  margin: 0 auto;
}

#banner-contact .banner-box .col-text .btn a {
  display: block;
  color: #fff;
  background: #005e36;
  text-align: center;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 38px;
  padding: 15px;
  border-radius: 40px;
}

#banner-contact .banner-box .col-text .btn a span:after {
  content: '';
  width: 22px;
  height: 22px;
  background-image: url("../img/shared/icon_right3@2x.png");
  background-repeat: no-repeat;
  background-size: 100%;
  display: inline-block;
  margin-left: 10px;
  position: relative;
  top: 2px;
}

#banner-contact .banner-box .col-text .btn a:hover {
  background: #ddbc44;
}

@media screen and (max-width: 1220px) {
  #banner-contact .banner-box {
    padding: 79px 50px 57px;
  }
  #banner-contact .banner-box .col-text .deco {
    right: -47px;
  }
}

@media screen and (max-width: 1180px) {
  #banner-contact .banner-box {
    padding: 79px 4% 57px;
  }
  #banner-contact .banner-box .img {
    width: 55%;
    left: -3%;
    top: 4%;
  }
  #banner-contact .banner-box .col-text .deco {
    width: 145px;
    top: -67px;
    right: -29px;
  }
}

@media screen and (max-width: 1080px) {
  #banner-contact .banner-box .col-text {
    width: 47%;
  }
  #banner-contact .banner-box .col-text .deco {
    width: 30%;
    top: -19%;
    right: -6%;
  }
}

@media screen and (max-width: 980px) {
  #banner-contact .banner-box {
    padding: 20px 0 57px;
  }
  #banner-contact .banner-box .img {
    width: 653px;
    position: relative;
    left: auto;
    top: auto;
    margin: 0 auto 30px;
  }
  #banner-contact .banner-box .col-text {
    width: 100%;
    padding: 0 80px;
  }
  #banner-contact .banner-box .col-text .deco {
    width: 145px;
    right: calc(50% - 210px);
    top: -36px;
  }
}

@media screen and (max-width: 767px) {
  #banner-contact {
    padding: 9vw 8vw 10vw;
  }
  #banner-contact .banner-box {
    background-image: url("../img/top/banner_bg_sp@2x.jpg");
    border-radius: 6vw;
    padding: 1.1vw 13px 7.3vw;
  }
  #banner-contact .banner-box .img {
    width: 58.3vw;
    margin: 0 0 3.3vw 6vw;
  }
  #banner-contact .banner-box .img img {
    margin: 0;
  }
  #banner-contact .banner-box .col-text {
    padding: 0 3vw;
  }
  #banner-contact .banner-box .col-text h2 {
    font-size: 5.3vw;
    line-height: 1.375;
    font-weight: 700;
    margin-bottom: 3vw;
  }
  #banner-contact .banner-box .col-text .deco {
    width: 22.7vw;
    right: -3vw;
    top: -5vw;
  }
  #banner-contact .banner-box .col-text .txt {
    max-width: 231px;
    width: 100%;
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 5vw;
  }
  #banner-contact .banner-box .col-text ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 6vw;
  }
  #banner-contact .banner-box .col-text ul li {
    font-size: 3.2vw;
    line-height: 5.7vw;
  }
  #banner-contact .banner-box .col-text .btn {
    max-width: none;
    width: auto;
    margin: 0 -4vw;
  }
  #banner-contact .banner-box .col-text .btn a {
    font-size: 4.4vw;
    line-height: 10.7vw;
    padding: 0px;
    border-radius: 5.3vw;
    position: relative;
  }
  #banner-contact .banner-box .col-text .btn a span:after {
    width: 5.3vw;
    height: auto;
    background-position: 50%;
    display: block;
    margin-left: 0px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 4.8vw;
  }
}