@charset "UTF-8";
/*================
共通
==================*/
body {
  color: #222222;
  background-color: #f0eee9;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif, "Prompt";
}

.page {
  background-color: #faf8f3;
}

a:hover {
  opacity: 0.6;
}

.inner {
  max-width: calc(100% - 60px);
  max-width: 1400px;
  width: 80%;
  margin: 0 auto;
}

.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: inline-block;
  }
}

.section-ttl {
  font-size: 80px;
  font-weight: 600;
  line-height: 1.2;
  color: #222222;
  text-transform: uppercase;
  font-family: "Prompt", sans-serif;
}
@media screen and (max-width: 1440px) {
  .section-ttl {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .section-ttl {
    font-size: 48px;
  }
}

.section-ttl--small {
  font-size: 20px;
  line-height: 1.2;
  color: #222222;
}
@media screen and (max-width: 1440px) {
  .section-ttl--small {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .section-ttl--small {
    font-size: 16px;
  }
}

.content__text--bold {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.6;
  color: #222222;
  padding-top: 4px;
}
@media screen and (max-width: 1440px) {
  .content__text--bold {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .content__text--bold {
    font-size: 18px;
  }
}

.content__text {
  font-size: 18px;
  line-height: 1.8;
  color: #222222;
}
@media screen and (max-width: 1440px) {
  .content__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .content__text {
    font-size: 14px;
  }
}

.text-blue {
  color: #064066;
}

.bg-blue {
  background-color: #064066;
  color: #fff;
}

.bg-white {
  background-color: #fff;
  color: #0F75B7;
}

.bg-block {
  background-color: #222222;
  color: #fff;
}

.bg-yellow {
  background-color: #FEED99;
  color: #0F75B7;
}

.bg-gray {
  background-color: #D9D9D9;
  color: #064066;
}

.link-btn {
  width: 220px;
  height: 56px;
  padding: 20px 22px;
  display: inline-block;
  line-height: 1;
  border-radius: 8px;
  text-align: center;
  position: relative;
  font-size: 16px;
  background-color: #222222;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1), height 0.8s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.6s ease, margin 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1), height 0.8s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.6s ease, margin 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.link-btn:hover::after {
  -webkit-transform: translateY(-50%) translateX(10px) rotate(45deg);
          transform: translateY(-50%) translateX(10px) rotate(45deg);
}
.link-btn::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  position: absolute;
  top: 50%;
  right: 22px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .link-btn::after {
    width: 8px;
    height: 8px;
    right: 15px;
  }
}

.link-btn__outline {
  border: 1px solid #fff;
  color: #fff;
  width: 230px;
  height: 56px;
  font-size: 16px;
  padding: 16px 0;
  line-height: 1;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .link-btn__outline {
    font-size: 14px;
    padding: 20px 0;
  }
}
.link-btn__outline::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 1440px) {
  .link-btn__outline::after {
    right: 10px;
  }
}
.link-btn__outline:hover {
  background-color: #fff;
  color: #222222;
}

.under-line {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0F75B7), to(#0F75B7));
  background-image: linear-gradient(#0F75B7, #0F75B7);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 3px;
  -webkit-transition: background-size 0.8s ease;
  transition: background-size 0.8s ease;
}

.under-line.is-show {
  background-size: 100% 3px;
}

.text-fix {
  margin-bottom: 32px;
}

.br {
  margin-right: 20px;
}

.page .js-fade {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.page .js-fade.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.page .js-fade-card {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

.page .js-fade-card.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-content__body {
  display: grid;
  grid-template-columns: 51% 1fr;
}
@media screen and (max-width: 1440px) {
  .c-content__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-content__ttl {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1440px) {
  .c-content__ttl {
    font-size: 40px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .c-content__ttl {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .c-content__ttl {
    font-size: 20px;
  }
}

.c-content__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 1440px) {
  .c-content__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .c-content__text {
    font-size: 15px;
  }
}

/*================
下層FV
==================*/
.page-fv {
  height: 515px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .page-fv {
    height: 320px;
  }
}
.page-fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/page_fv.webp) no-repeat center/cover;
  z-index: -1;
}

.page-fv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-fv__ttl {
  font-size: 77px;
  padding-top: 65px;
  margin-bottom: 16px;
  font-family: "Prompt", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 1440px) {
  .page-fv__ttl {
    font-size: 64px;
  }
}
@media screen and (max-width: 1023px) {
  .page-fv__ttl {
    font-size: 48px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-fv__ttl {
    padding-top: 0;
    font-size: 38px;
  }
}
.page-fv__ttl span {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#064066), to(#0F75B7));
  background: linear-gradient(to right, #064066 0%, #0F75B7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-fv__text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 1440px) {
  .page-fv__text {
    font-size: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .page-fv__text {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .page-fv__text {
    font-size: 16px;
  }
}

/*================
下層セクションタイトル
==================*/
.c-sec-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
  padding-left: 3px;
}
@media screen and (max-width: 1440px) {
  .c-sec-ttl {
    margin-bottom: 32px;
  }
}

.c-sec-ttl__icon {
  width: 26px;
  height: 26px;
  border: 3px solid #064066;
  border-radius: 50%;
  position: relative;
  margin-top: 4px;
}
@media screen and (max-width: 1440px) {
  .c-sec-ttl__icon {
    width: 24px;
    height: 24px;
    margin-top: 2px;
  }
}
@media screen and (max-width: 1023px) {
  .c-sec-ttl__icon {
    width: 20px;
    height: 20px;
  }
}
.c-sec-ttl__icon::after {
  content: "";
  position: absolute;
  inset: 1px;
  background-color: #064066;
  border-radius: 50%;
}

.c-sec-ttl__en {
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: "Prompt", sans-serif;
}
@media screen and (max-width: 1440px) {
  .c-sec-ttl__en {
    font-size: 28px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1023px) {
  .c-sec-ttl__en {
    font-size: 24px;
  }
}

.c-sec-ttl__ja {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: #064066;
}
@media screen and (max-width: 1440px) {
  .c-sec-ttl__ja {
    font-size: 16px;
  }
}

/*================
下層共通セクション
==================*/
.page-contact-cta {
  background-color: #faf8f3;
  padding-bottom: 160px;
}

/*================
header
==================*/
header#header {
  display: none!important;
}

header.header {
  width: 100%;
  height: 112px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 48px 40px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 1440px) {
  header.header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 30px;
  }
}
@media screen and (max-width: 1023px) {
  header.header {
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  header.header {
    padding: 0 15px;
  }
}

@media screen and (max-width: 1440px) {
  .logo img {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .logo img {
    width: 140px;
  }
}

.nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .nav-wrap {
    display: none;
  }
}

.nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
  height: 64px;
  padding: 22px 34px;
  border-radius: 60px;
  gap: 32px;
  font-size: 15px;
}
@media screen and (max-width: 1440px) {
  .nav__items {
    height: 50px;
    padding: 16px 30px;
  }
}
@media screen and (max-width: 1440px) {
  .nav__items a {
    font-size: 15px;
    text-decoration: none;
    color: #222222;
  }
}

.nav__item {
  line-height: 1;
  letter-spacing: 0;
    font-size: 15px;
    text-decoration: none;
    color: #222222;
}

.contact-btn__wrap {
  width: 160px!important;
  /* height: 64px; */

  padding: 0px !important;
  text-align: center;
  border-radius: 8px;
  display: inline-block;
  position: relative;
  top: 0;
  z-index: 110;
}

.contact-btn__wrap-label {
  position: relative;
  width: 100%;
  height: 64px;
  padding: 20px 0;
  text-align: center;
  border-radius: 8px;
  display: inline-block;
  background-color: #064066;
  color: #fff;
  z-index: 111;
  position: relative;
  font-size: 15px;
}
.contact__btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  /* height: 64px; */
  padding: 20px 0;
  margin: 0;
  text-align: center;
  border-radius: 0px;
  display: inline-block;
  font-size: 14px;
  background: #024;
  color: #fff;
  transform: scaleY(20%);
  transition: .3s;
  z-index: 109;
}
.contact__btn:nth-of-type(1) {
  /* width: 160px; */
  /* height: 74px; */
  padding: 40px 0 20px;
  margin: -10px 0 0 0;
}
.contact-btn__wrap:hover  {

  & >.contact__btn:nth-of-type(1) {
    position: absolute;
    top: 54px;
    transform: scaleY(100%);
    color: #fff;
    text-decoration: none;
  }
  & >.contact__btn:nth-of-type(2) {
    top: 144px;
    left: 0;
    width: 100%;
    transform: scaleY(100%);
        color: #fff;
    text-decoration: none;
  }


}
.contact__btn:hover {
  background: rgb(54, 90, 125);
  opacity: 1;
  color: #fff;

}

.contact__btn:last-of-type {
  border-radius: 0 0 8px 8px;
}

@media screen and (max-width: 1440px) {
  .contact__btn {
    /* width: 120px; */
    /* height: 50px; */
    font-size: 14px;
    padding: 14px;
  }
}

.menu-bar {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1100;
  width: 28px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .menu-bar {
    display: none;
  }
}
.menu-bar__icon {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #222;
  border-radius: 2px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.menu-bar.is-active .menu-bar__icon:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}
.menu-bar.is-active .menu-bar__icon:nth-child(2) {
  opacity: 0;
}
.menu-bar.is-active .menu-bar__icon:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}

.drower-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 999;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.drower-nav__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.drower-nav__link {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: #222;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.drower-nav__link:hover {
  color: #064066;
}
.drower-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/*================
footer
==================*/
footer#footer {
  display: none;
}

footer {
  background-color: #faf8f3;
}

@media screen and (max-width: 767px) {
  .footer-logoWrap img {
    width: 160px;
  }
}

.footer-body {
  padding: 80px 0 83px;
  margin: 0 auto;
  max-width: 1400px;
  width: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1440px) {
  .footer-body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 48px;
  }
}
@media screen and (max-width: 1023px) {
  .footer-body {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .footer-body {
    padding: 60px 0;
  }
}

.footer-nav__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 74.4%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 1440px) {
  .footer-nav__wrap {
    width: 100%;
    gap: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .footer-nav__wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 1023px) {
  .footer-nav {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav {
    width: 100%;
    font-size: 14px;
    gap: 12px;
  }
}
.footer-nav li {
  font-weight: 500;
  line-height: 1.6;
  font-size: 15px;
}
.footer-nav li a:link,
.footer-nav li a:visited {
  text-decoration: none;
  color: #222222;

}


.footer-link__lower {
  line-height: 1.6;
  font-weight: 400;

}

.footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: flex-start;
  gap: 36px;
  width: 18.6%;
}
@media screen and (max-width: 1440px) {
  .footer-info {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .footer-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
  }
}

.footer-logo__text {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .footer-logo__text {
    font-size: 14px;
  }
}

.footer-info__add-text {
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .footer-info__add-text {
    font-size: 12px;
  }
}

.footer-copy {
  background-color: #222222;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .footer-copy {
    padding: 10px 0;
  }
}

.footer-copy__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
}
@media screen and (max-width: 767px) {
  .footer-copy__text {
    font-size: 10px;
  }
}

/*================
contact-cta
==================*/
.contact-cta {
  width: 100%;
  background: url(../../top_img/bg_img001.jpg) no-repeat center/cover;
  height: 597px;
}
@media screen and (max-width: 1440px) {
  .contact-cta {
    height: 500px;
  }
}
@media screen and (max-width: 1023px) {
  .contact-cta {
    height: 440px;
  }
}
@media screen and (max-width: 767px) {
  .contact-cta {
    height: auto;
  }
}

.contact-cta__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  padding-top: 106px;
}
@media screen and (max-width: 767px) {
  .contact-cta__inner {
    gap: 32px;
    padding: 60px 0;
  }
}

.contact-cta__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .contact-cta__body {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .contact-cta__body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.contact-cta__item {
  max-width: 638px;
  height: 312px;
  width: 45.6%;
  background-color: rgba(15, 117, 183, 0.6);
  color: #fff;
  border-radius: 24px 24px 0 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  will-change: transform;
  -webkit-transition: background-color 0.4s ease, -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: background-color 0.4s ease, -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s ease;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s ease, -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 1440px) {
  .contact-cta__item {
    height: 240px;
  }
}
@media screen and (max-width: 1023px) {
  .contact-cta__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 45%;
            flex: 1 1 45%;
    max-width: none;
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .contact-cta__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    max-width: 400px;
    border-radius: 24px;
  }
}

.contact-cta__item:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  background-color: #0F75B7;
  z-index: 10;
}

.contact-cta__text {
  margin-top: -13px;
  padding: 0 40px 0 80px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.6;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  color: inherit;
  font-family: "Prompt", sans-serif;
}
@media screen and (max-width: 1440px) {
  .contact-cta__text {
    padding: 40px;
    font-size: 38px;
  }
}
@media screen and (max-width: 1023px) {
  .contact-cta__text {
    padding: 20px;
    font-size: 32px;
  }
}
.contact-cta__text:hover {
  opacity: unset;
}

.contact-cta__text::after {
  content: "";
  width: 20px;
  height: 20px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: right 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: right 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 1023px) {
  .contact-cta__text::after {
    right: 30px;
  }
}

.contact-cta__text--small {
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 1440px) {
  .contact-cta__text--small {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023px) {
  .contact-cta__text--small {
    font-size: 14px;
  }
}

/*================
service
==================*/
.service {
  padding: 110px 0 130px;
}
@media screen and (max-width: 767px) {
  .service {
    padding: 60px 0;
  }
}

.service-ttl__wrap {
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .service-ttl__wrap {
    margin-bottom: 32px;
  }
}

.service__body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 32px;
  -webkit-column-gap: 28px;
     -moz-column-gap: 28px;
          column-gap: 28px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-transition: grid-template-columns 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition: grid-template-columns 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition: grid-template-columns 1s cubic-bezier(0.25, 1, 0.5, 1), -ms-grid-columns 1s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 1023px) {
  .service__body {
    grid-template-columns: 1fr !important;
    row-gap: 20px;
  }
}

.service__item {
  position: relative;
  overflow: hidden;
  height: 246px;
  padding: 67px 0;
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  color: #fff;
  -webkit-transition: height 1s cubic-bezier(0.25, 1, 0.5, 1), padding 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition: height 1s cubic-bezier(0.25, 1, 0.5, 1), padding 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.service__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 0;
}
.service__item:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.service__item > * {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .service__item {
    height: auto !important;
    min-height: 400px;
    padding: 40px 70px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .service__item {
    padding: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .service__body:has(.grid-2:hover) {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .service__body:has(.grid-3:hover) {
    grid-template-columns: 1fr 2fr 1fr;
  }
  .service__body:has(.grid-4:hover) {
    grid-template-columns: 1fr 1fr 2fr;
  }
  .service__body:has(.grid-2:hover) .service__item:not(.grid-1),
  .service__body:has(.grid-3:hover) .service__item:not(.grid-1),
  .service__body:has(.grid-4:hover) .service__item:not(.grid-1) {
    height: 492px;
  }
}
.grid-1 {
  grid-column: 1/-1;
  height: 246px;
  -webkit-transition: height 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition: height 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.grid-1::before {
  background-image: url(../../top_img/bnr_img001.png);
}
.grid-1.is-open {
  height: 443px;
}
@media screen and (max-width: 1023px) {
  .grid-1 {
    height: auto !important;
    min-height: 200px;
  }
}

.grid-1::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.grid-1:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.grid-2::before {
  background-image: url(../../top_img/bnr_img002.png);
}

.grid-3::before {
  background-image: url(../../top_img/bnr_img003.png);
}

.grid-4::before {
  background-image: url(../../top_img/bnr_img004.png);
}

.service__item__text {
  font-size: 48px;
  font-weight: 500;
  white-space: nowrap;
  font-family: "Prompt", sans-serif;
}
@media screen and (max-width: 1440px) {
  .service__item__text {
    font-size: 38px;
  }
}
@media screen and (max-width: 1023px) {
  .service__item__text {
    font-size: 32px;
    white-space: normal;
    text-align: center;
  }
}

.service__item__text--small {
  font-size: 24px;
  white-space: nowrap;
  margin-bottom: 56px;
}
@media screen and (max-width: 1440px) {
  .service__item__text--small {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .service__item__text--small {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .service__item__text--small {
    margin-bottom: 18px;
  }
}

.service__detail {
  width: calc(100% - 60px);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  text-align: center;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.6s ease, -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.service__item:hover .service__detail, .service__item.is-open .service__detail {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 1023px) {
  .service__detail {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    width: 100%;
    margin-top: 20px;
  }
}

.detail__text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media screen and (max-width: 1440px) {
  .detail__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .detail__text {
    width: 90%;
    text-align: left;
  }
}

.detail-btn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1440px) {
  .detail-btn__wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.c-faq {
  padding-bottom: 10rem;
}

.c-faq__item {
  width: 100%;
  padding-bottom: 40px;
  border-bottom: 2px solid #98C1DB;
  margin-bottom: 40px;
}
.c-faq__item:last-of-type {
  border-bottom: unset;
}

.c-faq__q {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
  padding: 0 45px;
}
@media screen and (max-width: 1023px) {
  .c-faq__q {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-faq__q {
    font-size: 1.1rem;
  }
}
.c-faq__q span {
  font-size: 2rem;
  font-family: "Prompt", sans-serif;
  font-weight: 450;
  line-height: 1;
  position: absolute;
  top: 5px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-faq__q span {
    font-size: 1.5rem;
  }
}
.c-faq__q::before, .c-faq__q::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #064066;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-faq__q::before, .c-faq__q::after {
    top: 15px;
  }
}
.c-faq__q::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.c-faq__item.is-open .c-faq__q::after {
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}

.c-faq__a {
  display: none;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 24px;
  padding: 0 45px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .c-faq__a {
    font-size: 1.05rem;
  }
}
@media screen and (max-width: 767px) {
  .c-faq__a {
    font-size: 1rem;
  }
}
.c-faq__a span {
  font-size: 2rem;
  font-family: "Prompt", sans-serif;
  font-weight: 450;
  line-height: 1;
  position: absolute;
  top: 5px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-faq__a span {
    font-size: 1.5rem;
  }
}

/*================
client
==================*/
.client-area {
  width: 100%;
  height: 108px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .client-area {
    height: 60px;
  }
}

.client {
  background-color: #fff;
}

.client-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;

}
@media screen and (max-width: 1023px) {
  .client-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.client-ttl__wrap .section-ttl {
  font-size: 72px;
}
@media screen and (max-width: 1440px) {
  .client-ttl__wrap .section-ttl {
    font-size: 60px;
  }
}
@media screen and (max-width: 1023px) {
  .client-ttl__wrap .section-ttl {
    font-size: 48px;
  }
}

.client__text {
  width: 520px;
  padding-top: 18px;
}

.client__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.logo-slider .wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px!important;
}

.swiper-slide img {
  /* width: 220px; */
  max-width: initial;
  height: 30px;
}
.logo-slider {
  margin-bottom: 10px;
}

.logo-slider .swiper-slide {
  width: auto;
  flex-shrink: 0;
}

.logo-slider.is-css-loop {
  --logo-gap: 30px;
  overflow: hidden;
}

.logo-slider.is-css-loop .wrapper {
  flex-wrap: nowrap;
  width: max-content;
  gap: var(--logo-gap);
  will-change: transform;
  animation: logo-marquee 20s linear infinite;
}
.logo-slider.is-css-loop:nth-of-type(2) .wrapper {
  animation: logo-marquee 24s linear infinite;
}
.logo-slider.is-css-loop:nth-of-type(3) .wrapper {
  animation: logo-marquee 21s linear infinite;
}
.logo-slider.is-css-loop:nth-of-type(4) .wrapper {
  animation: logo-marquee 34s linear infinite;
}

@keyframes logo-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - (var(--logo-gap) / 2)), 0, 0);
  }
}

.bg-gradation {
  width: 100%;
  height: 128px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#faf8f3));
  background: linear-gradient(180deg, #ffffff 0%, #faf8f3 100%);
}
@media screen and (max-width: 767px) {
  .bg-gradation {
    height: 80px;
  }
}

/*================
fv
==================*/
.fv {
  width: 100%;
  min-height: clamp(560px, 100vh, 900px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: -1;
}
.fv-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .fv-bg-video {
    width: 100vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) and (max-aspect-ratio: 16/9) {
  .fv-bg-video {
    -o-object-position: 44% center;
       object-position: 44% center;
  }
}
.fv-inner,
.fv-scroll,
.fv-news {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .fv {
    height: 850px;
    min-height: unset;
  }
}
@media screen and (max-width: 1023px) {
  .fv {
    height: 560px;
  }
}
@media screen and (max-width: 767px) {
  .fv {
    height: 500px;
  }
}
.fv img {
  margin-top: 88px;
}
@media screen and (max-width: 1440px) {
  .fv img {
    margin-top: 50px;
    width: 630px;
  }
}
@media screen and (max-width: 1023px) {
  .fv img {
    margin-top: 0;
    width: 450px;
  }
}
@media screen and (max-width: 767px) {
  .fv img {
    width: 300px;
  }
}
.fv img:nth-of-type(2) {
  margin-top: 32px;
}
@media screen and (max-width: 1023px) {
  .fv img:nth-of-type(2) {
    margin-top: 18px;
  }
}
@media screen and (max-width: 767px) {
  .fv img:nth-of-type(2) {
    margin-top: 10px;
  }
}

.fv-inner {
  max-width: 1660px;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fv-scroll {
  position: absolute;
  bottom: 70px;
  left: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: scroll-tsuntsun 2.5s infinite;
          animation: scroll-tsuntsun 2.5s infinite;
}
@media screen and (max-width: 767px) {
  .fv-scroll {
    left: 10px;
    bottom: 110px;
  }
}
.fv-scroll p {
  text-transform: uppercase;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 16px;
  font-family: "Prompt", sans-serif;
}
@media screen and (max-width: 1440px) {
  .fv-scroll p {
    font-size: 10px;
  }
}

.border-arrow {
  position: relative;
  width: 20px;
  height: 76px;
}

.border-arrow::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 3px;
  width: 1px;
  height: 72px;
  background: currentColor;
}

.border-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 3px;
  width: 1px;
  height: 12px;
  border-right: 1px solid currentColor;
  -webkit-transform: skewX(-30deg);
          transform: skewX(-30deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}

@-webkit-keyframes scroll-tsuntsun {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  20% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
  35% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes scroll-tsuntsun {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  20% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
  35% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fv-news {
  width: 800px;
  background-color: rgba(34, 34, 34, 0.6);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 18px 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1440px) {
  .fv-news {
    width: 540px;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 1023px) {
  .fv-news {
    width: 520px;
    padding: 8px 16px;
  }
}
@media screen and (max-width: 767px) {
  .fv-news {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 280px;
    padding: 8px 0;
    gap: 10px;
  }
}

.fv-news__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .fv-news__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.fv-news__time {
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .fv-news__time {
    font-size: 12px;
  }
}

.fv-news__ttl {
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  .fv-news__ttl {
    font-size: 12px;
  }
}

.fv-news__link {
  display: inline-block;
  width: 124px;
  height: 30px;
  background-color: #fff;
  color: #222222;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
  padding: 4px 8px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .fv-news__link {
    font-size: 12px;
  }
}
.fv-news__link::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #222222;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 8px;
  z-index: 1;
}
.fv-news__link::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .fv-news__link::before {
    width: 5px;
    height: 5px;
    right: 14px;
  }
}

/*================
solution
==================*/
.solution {
  padding: 128px 0 87px;
}
@media screen and (max-width: 767px) {
  .solution {
    padding: 60px 0;
  }
}

.solution-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 21%;
}
@media screen and (max-width: 1440px) {
  .solution-inner {
    gap: 12%;
  }
}
@media screen and (max-width: 1023px) {
  .solution-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}

.solution-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 63px;
}
@media screen and (max-width: 1023px) {
  .solution-content {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 374px) {
  .solution-content {
    text-align: left;
  }
}

.solution-img {
  width: 486px;
  height: 486px;
  border-radius: 50%;
  border: 5px dashed #B1B1B1;
  position: relative;
  margin-top: 166px;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .solution-img {
    width: 330px;
    height: 330px;
  }
}
@media screen and (max-width: 767px) {
  .solution-img {
    width: 200px;
    height: 200px;
    margin-top: 140px;
  }
}

@media screen and (max-width: 767px) {
  .solution-btn__wrap {
    margin: 0 auto;
  }
}

.circle-box__wrap {
  position: absolute;
}
.circle-box__wrap:nth-of-type(1) {
  top: -158px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1440px) {
  .circle-box__wrap:nth-of-type(1) {
    top: -115px;
  }
}
@media screen and (max-width: 767px) {
  .circle-box__wrap:nth-of-type(1) {
    top: -65px;
  }
}
.circle-box__wrap:nth-of-type(2) {
  bottom: -50px;
  left: -126px;
}
@media screen and (max-width: 1440px) {
  .circle-box__wrap:nth-of-type(2) {
    bottom: -30px;
    left: -85px;
  }
}
@media screen and (max-width: 767px) {
  .circle-box__wrap:nth-of-type(2) {
    bottom: -15px;
    left: -50px;
  }
}
.circle-box__wrap:nth-of-type(3) {
  bottom: -50px;
  right: -128px;
}
@media screen and (max-width: 1440px) {
  .circle-box__wrap:nth-of-type(3) {
    bottom: -30px;
    right: -85px;
  }
}
@media screen and (max-width: 767px) {
  .circle-box__wrap:nth-of-type(3) {
    bottom: -15px;
    right: -50px;
  }
}

.circle__box {
  color: #222222;
  width: 312px;
  height: 312px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px dashed #9F9F9F;
  position: relative;
  background-color: #F5F5F5;
}
@media screen and (max-width: 1440px) {
  .circle__box {
    width: 210px;
    height: 210px;
  }
}
@media screen and (max-width: 767px) {
  .circle__box {
    width: 120px;
    height: 120px;
  }
}
.circle__box::after {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: calc(100% + 28px);
  height: calc(100% + 28px);
  border-radius: 50%;
  background-color: #F5F5F5;
  opacity: 0.9;
  z-index: -1;
}

.circle__text {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 1440px) {
  .circle__text {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .circle__text {
    font-size: 16px;
    font-weight: 400;
  }
}

.circle__text--small {
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 1440px) {
  .circle__text--small {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .circle__text--small {
    font-size: 10px;
    text-align: center;
  }
}

/*================
knowledge
==================*/
.knowledge {
  padding: 100px 0 122px;
  background-color: #faf8f3;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .knowledge {
    padding: 0 0 80px;
  }
}
@media screen and (max-width: 767px) {
  .knowledge {
    padding: 20px 0 60px;
  }
}
.knowledge .content__text {
  padding-bottom: 90px;
}
@media screen and (max-width: 1023px) {
  .knowledge .content__text {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .knowledge .content__text {
    padding-bottom: 40px;
  }
}

.knowledge-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 1440px) {
  .knowledge-inner {
    gap: 150px;
  }
}
@media screen and (max-width: 1023px) {
  .knowledge-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 100px;
  }
}
@media screen and (max-width: 767px) {
  .knowledge-inner {
    gap: 60px;
  }
}

.knowledge__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 28.2%;
}
@media screen and (max-width: 1023px) {
  .knowledge__content {
    width: 100%;
  }
}

@media screen and (max-width: 1023px) {
  .knowledge-ttl__wrap {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .knowledge-ttl__wrap {
    margin-bottom: 20px;
  }
}
.knowledge-ttl__wrap .section-ttl {
  text-transform: none;
  font-size: clamp(3.75rem, -3rem + 7.5vw, 4.5rem);
}
@media screen and (max-width: 1440px) {
  .knowledge-ttl__wrap .section-ttl {
    font-size: 60px;
  }
}
@media screen and (max-width: 1023px) {
  .knowledge-ttl__wrap .section-ttl {
    font-size: 48px;
  }
}

.knowledge__slide {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .knowledge__slide {
    margin-left: calc(50% - 50vw);
  }
}

.card-slider {
  overflow: hidden !important;
  padding-top: 15px;
  margin-top: -15px;
}
@media screen and (max-width: 1023px) {
  .card-slider {
    overflow: visible !important;
  }
}

.swiper-slide {
  width: auto !important;
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.card-item {
  width: 384px;
  height: 454px;
  background-color: #fff;
  border-radius: 24px;
  padding: 24px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .card-item {
    width: 320px;
  }
}
@media screen and (max-width: 767px) {
  .card-item {
    width: 280px;
    height: 300px;
    padding: 20px;
    border-radius: 18px;
  }
}

.card-item a {
  display: inline-block;
  text-decoration: none;
  color: #222;
  width: 100%;
  height: 100%;
}

.card-item:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.card-item img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .card-item img {
    height: 120px;
  }
}

.card-item__content {
  padding-top: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
}
@media screen and (max-width: 767px) {
  .card-item__content {
    padding-top: 8px;
    gap: 10px;
  }
}

.card-item__content time {
  font-size: 16px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .card-item__content time {
    font-size: 14px;
  }
}

.card-item__ttl {
  font-size: 18px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .card-item__ttl {
    font-size: 14px;
  }
}

.card-item__label {
  -ms-flex-item-align: end;
      align-self: flex-end;
  font-size: 14px;
  width: 144px;
  height: 24px;
  padding: 4px 0;
  background-color: #064066;
  border-radius: 16px;
  color: #fff;
  text-align: center;
  line-height: 1;
}
.card-item__label.green {
  background-color: #0b8749;

}
@media screen and (max-width: 767px) {
  .card-item__label {
    width: 100px;
    height: 20px;
    font-size: 12px;
  }
}

/*================
企業情報
==================*/
.company-info {
  padding-bottom: 160px;
  background-color: #faf8f3;
  padding-top: 131px;
}
@media screen and (max-width: 1440px) {
  .company-info {
    padding-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .company-info {
    padding-bottom: 100px;
  }
}

.company-info__content {
  background-color: #fff;
  border-radius: 24px;
  padding: 80px;
}
@media screen and (max-width: 1440px) {
  .company-info__content {
    padding: 60px 40px;
  }
}
@media screen and (max-width: 767px) {
  .company-info__content {
    padding: 30px;
  }
}

.company-info__item {
  display: grid;
  grid-template-columns: 320px 1fr;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 1440px) {
  .company-info__item {
    grid-template-columns: 240px 1fr;
    font-size: 18px;
  }
}
@media screen and (max-width: 1023px) {
  .company-info__item {
    grid-template-columns: 160px 1fr;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .company-info__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 40px;
  }
}

.company-info__term {
  padding: 24px 0;
  color: #064066;
  border-bottom: 1px solid #064066;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .company-info__term {
    padding: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .company-info__term {
    width: 100%;
    text-align: unset;
    padding: 16px 0;
  }
}

.company-info__desc {
  font-weight: 400;
  border-bottom: 1px solid #ddd;
  padding: 24px 0 0 32px;
}
@media screen and (max-width: 1023px) {
  .company-info__desc {
    padding: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .company-info__desc {
    width: 100%;
    padding: 16px 0;
  }
}

/*================
ミッション＆ビジョン＆バリュー
==================*/
.company-content__wrap {
  background-color: #faf8f3;
  padding-bottom: 166px;
}
@media screen and (max-width: 767px) {
  .company-content__wrap {
    padding-bottom: 100px;
  }
}

.company-content {
  margin-bottom: 85px;
}
.company-content:last-of-type {
  margin-bottom: 0;
}

.company-content__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 66px;
}
@media screen and (max-width: 1440px) {
  .company-content__column {
    gap: 20px;
  }
}

.company-content__item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 28px 32px;
}
@media screen and (max-width: 1023px) {
  .company-content__item-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.company-content__item {
  background-color: #fff;
  padding: 40px 46px 47px;
  border-radius: 24px;
  width: 31.8%;
  height: 436px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media screen and (max-width: 1440px) {
  .company-content__item {
    padding: 30px;
    width: 340px;
    height: auto;
  }
}
@media screen and (max-width: 1023px) {
  .company-content__item {
    padding: 50px;
    width: 480px;
  }
}
@media screen and (max-width: 767px) {
  .company-content__item {
    padding: 40px;
  }
}

.company-content__item-ttl {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  color: #064066;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .company-content__item-ttl {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 767px) {
  .company-content__item-ttl {
    font-size: 20px;
  }
}

/*================
アクセス
==================*/
.company-access {
  background-color: #faf8f3;
  padding-bottom: 166px;
}
@media screen and (max-width: 767px) {
  .company-access {
    padding-bottom: 100px;
  }
}

.company-map {
  margin-bottom: 27px;
}
.company-map iframe {
  width: 100%;
}

.company-access__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 1023px) {
  .company-access__text {
    font-size: 16px;
  }
}

.about-concept {
  padding: 133px 0 167px;
}
@media screen and (max-width: 767px) {
  .about-concept {
    padding-bottom: 100px;
  }
}

.about-c-content__wrap {
  margin-bottom: 64px;
}

.about-concept__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
}
@media screen and (max-width: 1023px) {
  .about-concept__step {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.about-concept__step-item {
  background-color: #fff;
  border-radius: 20px;
  width: 32%;
  padding: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}
@media screen and (max-width: 1440px) {
  .about-concept__step-item {
    gap: 18px;
    padding: 32px;
  }
}
@media screen and (max-width: 1023px) {
  .about-concept__step-item {
    width: 340px;
  }
}
@media screen and (max-width: 767px) {
  .about-concept__step-item {
    width: 280px;
    padding: 24px;
    gap: 12px;
  }
}

.about-concept__step-label {
  width: 100%;
  max-width: 352px;
  height: 53px;
  background-color: #064066;
  color: #fff;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.6;
  border-radius: 32px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Prompt", sans-serif;
  padding-top: 5px;
}
@media screen and (max-width: 1440px) {
  .about-concept__step-label {
    height: 40px;
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .about-concept__step-label {
    height: 30px;
    font-size: 20px;
  }
}

.about-concept__step-ttl {
  text-align: center;
  font-size: 32px;
  line-height: 1.6;
  font-weight: 700;
  color: #064066;
}
@media screen and (max-width: 1440px) {
  .about-concept__step-ttl {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .about-concept__step-ttl {
    font-size: 24px;
  }
}

.about-concept__step-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .about-concept__step-text {
    font-size: 15px;
  }
}

/*================
features
==================*/
.about-features {
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .about-features {
    padding-bottom: 100px;
  }
}

.about-features__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  width: 100%;
  padding-top: 16px;
}

.about-features__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 68px;
}
@media screen and (max-width: 1440px) {
  .about-features__item {
    gap: 38px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 1023px) {
  .about-features__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.about-features__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 41px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 1440px) {
  .about-features__content {
    gap: 20px;
  }
}

.about-features__head {
  height: 71px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  border-left: 4px solid #064066;
  padding-left: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1440px) {
  .about-features__head {
    padding-left: 24px;
  }
}
@media screen and (max-width: 767px) {
  .about-features__head {
    gap: 20px;
    padding-left: 20px;
    width: 100%;
  }
}

.about-features__label {
  padding-top: 8px;
}

.about-features__en {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 500;
  font-family: "Prompt", sans-serif;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #064066;
  text-transform: uppercase;
}
@media screen and (max-width: 1440px) {
  .about-features__en {
    margin-bottom: 4px;
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .about-features__en {
    font-size: 8px;
  }
}

.about-features__num {
  font-size: 48px;
  font-weight: 500;
  font-family: "Prompt", sans-serif;
  line-height: 1;
  color: #064066;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1440px) {
  .about-features__num {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .about-features__num {
    font-size: 28px;
  }
}

.about-features__ttl {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 1440px) {
  .about-features__ttl {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .about-features__ttl {
    font-size: 20px;
  }
}

.about-features__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 1440px) {
  .about-features__text {
    font-size: 15px;
  }
}

.about-features__img {
  width: 32%;
}
@media screen and (max-width: 1023px) {
  .about-features__img {
    width: 100%;
    text-align: center;
  }
}

/*================
support
==================*/
.about-support__flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .about-support__flow {
    overflow-x: unset;
  }
}

.about-support__flow-left {
  width: 952px;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .about-support__flow-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    margin-bottom: 0;
  }
}

.about-support__flow-label {
  width: 100%;
  height: 56px;
  padding: 7px 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 32px;
  text-align: center;
  clip-path: polygon(0% 0%, 97% 0, 100% 50%, 97% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .about-support__flow-label {
    width: auto;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    height: 440px;
    font-size: 20px;
    clip-path: polygon(0% 0%, 100% 0, 100% 95%, 50% 100%, 0 95%);
  }
}

.flow-label--min {
  clip-path: polygon(0% 0%, 93% 0, 100% 50%, 93% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .flow-label--min {
    clip-path: polygon(0% 0%, 100% 0, 100% 95%, 50% 100%, 0 95%);
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    padding-top: 20px;
    height: 280px;
  }
}

.about-support__flow-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .about-support__flow-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 240px;
  }
}

.about-support__flow-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  width: 272px;
  grid-template-columns: repeat(2, auto);
}
@media screen and (max-width: 767px) {
  .about-support__flow-head {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.about-support__flow-item--min {
  width: 128px;
  height: 40px;
  border-radius: 8px;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .about-support__flow-item--min {
    font-size: 14px;
    height: 30px;
    width: 100px;
  }
}
.about-support__flow-item--min img {
  -o-object-fit: contain;
     object-fit: contain;
}

.about-support__flow-arrow {
  position: relative;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-left: 17px;
  height: 22px;
  margin-right: 17px;
}
@media screen and (max-width: 767px) {
  .about-support__flow-arrow {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    margin: 0 0 10px;
  }
}
.about-support__flow-arrow::before {
  content: "";
  width: 37px;
  height: 30px;
  background-color: #0F75B7;
  position: absolute;
  top: -6px;
  left: -12px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .about-support__flow-arrow::before {
    width: 30px;
    height: 25px;
    left: -7px;
  }
}
.about-support__flow-arrow::after {
  content: "";
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 25px solid #0F75B7;
  position: absolute;
  top: -13px;
  left: 23px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .about-support__flow-arrow::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    top: 8px;
    left: -5px;
  }
}

.about-support__flow-arrow--min {
  position: relative;
  margin-left: 11px;
  width: 41px;
  height: 30px;
}
@media screen and (max-width: 767px) {
  .about-support__flow-arrow--min {
    margin: 0;
  }
}
.about-support__flow-arrow--min::before {
  content: "";
  width: 15px;
  height: 30px;
  background-color: #0F75B7;
  position: absolute;
  top: -2px;
  left: -4px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .about-support__flow-arrow--min::before {
    width: 26px;
    height: 20px;
    left: 5px;
  }
}
.about-support__flow-arrow--min::after {
  content: "";
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 26px solid #0F75B7;
  position: absolute;
  top: -9px;
  left: 10px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .about-support__flow-arrow--min::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    top: 0px;
    left: 7px;
    border-left: 22px solid #0F75B7;
  }
}

.about-support__flow-right {
  width: 448px;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .about-support__flow-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
  }
}

.about-support__flow-item {
  height: 100px;
  padding: 12px 8px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 168px;
  border-radius: 8px;
  gap: 5px;
  font-size: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .about-support__flow-item {
    font-size: 16px;
    height: 80px;
  }
  .about-support__flow-item img {
    width: 30px;
    height: auto;
  }
}

.about-support__point {
  margin-bottom: 80px;
}

.about-support__point-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-bottom: 16px;
}
@media screen and (max-width: 1023px) {
  .about-support__point-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.about-support__point-item {
  width: 32%;
  background-color: #fff;
  border-radius: 8px;
  border: 2px solid #064066;
  padding: 7px 14px 7px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1440px) {
  .about-support__point-item {
    padding: 10px;
    gap: 18px;
  }
}
@media screen and (max-width: 1023px) {
  .about-support__point-item {
    width: 420px;
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .about-support__point-item {
    width: 100%;
    max-width: 420px;
  }
}
.about-support__point-item:first-of-type img {
  height: 34px;
}

.about-support__point-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #064066;
}
@media screen and (max-width: 1440px) {
  .about-support__point-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .about-support__point-text {
    font-size: 14px;
  }
}
.about-support__point-text span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(68%, transparent), color-stop(68%, #FEED99));
  background: linear-gradient(transparent 68%, #FEED99 68%);
}

.about-support__point-label {
  width: 100%;
  background-color: #98C1DB;
  color: #064066;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  border-radius: 8px;
  height: 56px;
  padding: 7px 0 11px;
}
@media screen and (max-width: 767px) {
  .about-support__point-label {
    font-size: clamp(1.125rem, 1.053rem + 0.31vw, 1.25rem);
    padding: 10px;
  }
}

.point-label {
  clip-path: polygon(0% 0%, 98% 0, 100% 50%, 98% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .point-label {
    clip-path: polygon(0% 0%, 95% 0, 100% 50%, 95% 100%, 0% 100%);
    height: auto;
    padding: 4px;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
  }
}

.about-support__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px 28px;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .about-support__card {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.about-support__card-item {
  width: 48%;
  background-color: #fff;
  border-radius: 24px;
  padding: 40px 32px 40px 40px;
}
@media screen and (max-width: 1440px) {
  .about-support__card-item {
    padding: 36px;
  }
}
@media screen and (max-width: 1023px) {
  .about-support__card-item {
    width: 46%;
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .about-support__card-item {
    width: 100%;
    max-width: 420px;
  }
}

.about-support__card-ttl {
  width: 100%;
  background-color: #064066;
  border-radius: 40px;
  height: 67px;
  margin: 0 auto;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 4px 0;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .about-support__card-ttl {
    font-size: 28px;
    padding-top: 8px;
    height: 60px;
  }
}
@media screen and (max-width: 1023px) {
  .about-support__card-ttl {
    width: 90%;
    height: 40px;
    padding-top: 4px;
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.about-support__card-list {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  color: #064066;
  padding-left: 8px;
}
@media screen and (max-width: 1023px) {
  .about-support__card-list {
    font-size: 16px;
  }
}

.about-support__card-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  padding-left: 8px;
}
@media screen and (max-width: 1023px) {
  .about-support__card-text {
    font-size: 16px;
  }
}

.client-area__about {
  width: 100%;
  height: 145px;
  background: -webkit-gradient(linear, left bottom, left top, from(#FFFFFF), to(#FAF8F3));
  background: linear-gradient(0deg, #FFFFFF 0%, #FAF8F3 100%);
}

/*================
recommend
==================*/
.about-recommend {
  padding: 2px 0 160px;
}

.about-recommend__ttl {
  font-size: clamp(2rem, 1.286rem + 1.12vw, 2.625rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 56px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .about-recommend__ttl {
    font-size: clamp(1.75rem, 1.388rem + 1.54vw, 2.375rem);
  }
}

.about-recommend__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
}
@media screen and (max-width: 1023px) {
  .about-recommend__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.about-recommend__item {
  width: calc((100% - 28px) / 3);
  background-color: #fff;
  border-radius: 20px;
  padding: 42px 48px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .about-recommend__item {
    padding: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .about-recommend__item {
    padding: 2rem 3rem;
    width: 80%;
    max-width: 420px;
  }
}
@media screen and (max-width: 767px) {
  .about-recommend__item {
    padding: 2rem;
    width: 100%;
  }
}

.about-recommend__item-ttl {
  font-size: clamp(1.5rem, 1.67vw, 2rem);
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #064066;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .about-recommend__item-ttl {
    font-size: clamp(1rem, -0.231rem + 1.92vw, 1.5rem);
  }
}
@media screen and (max-width: 1023px) {
  .about-recommend__item-ttl {
    font-size: clamp(1.25rem, 1.105rem + 0.62vw, 1.5rem);
  }
}

.about-recommend__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 1440px) {
  .about-recommend__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .about-recommend__text {
    font-size: 14px;
  }
}

.about-recommend__list {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  color: #064066;
  padding-left: 28px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .about-recommend__list {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .about-recommend__list {
    font-size: 14px;
  }
}
.about-recommend__list::after {
  content: "・";
  position: absolute;
  top: 0;
  left: 4px;
  color: #064066;
}

.about-recommend__item-number {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.1;
}
@media screen and (max-width: 767px) {
  .about-recommend__item-number {
    bottom: 5px;
    right: 5px;
  }
}

.about-recommend__item-en {
  font-size: clamp(1.25rem, 0.536rem + 1.12vw, 1.875rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0F75B7;
  font-family: "Prompt", sans-serif;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .about-recommend__item-en {
    font-size: clamp(1rem, 0.928rem + 0.31vw, 1.125rem);
  }
}

.about-recommend__item-num {
  font-size: clamp(3rem, 0.143rem + 4.46vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  color: #0F75B7;
}
@media screen and (max-width: 1023px) {
  .about-recommend__item-num {
    font-size: clamp(2.5rem, 1.777rem + 3.09vw, 3.75rem);
  }
}

/*================
about
==================*/
.consulting-about {
  padding-top: 128px;
}

.consulting-c-content__wrap {
  padding-bottom: 160px;
}
@media screen and (max-width: 1023px) {
  .consulting-c-content__wrap {
    padding-bottom: 100px;
  }
}

.consulting-about__content {
  text-align: center;
  margin-bottom: 160px;
}

.consulting-about__content-ttl {
  font-size: 2.625rem;
  display: inline-block;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  padding: 8px 32px;
  margin-bottom: 48px;
  border-radius: 100px;
  z-index: 0;
}
@media screen and (max-width: 1440px) {
  .consulting-about__content-ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .consulting-about__content-ttl {
    font-size: clamp(1.25rem, 0.533rem + 3.06vw, 2rem);
    padding: 6px 20px;
  }
}
.consulting-about__content-ttl::after {
  content: "";
  width: 80vw;
  max-width: 1400px;
  height: 4px;
  background-color: #064066;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .consulting-about__content-ttl::after {
    display: none;
  }
}

.consulting-about__content-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1023px) {
  .consulting-about__content-body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.consulting-about__item {
  background-color: #fff;
  border-radius: 20px;
  width: calc((100% - 28px) / 3);
  padding: 2.5rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1440px) {
  .consulting-about__item {
    padding: 2.5rem 1.7rem;
  }
}
@media screen and (max-width: 1023px) {
  .consulting-about__item {
    width: 100%;
    max-width: 460px;
  }
}

.consulting-about__item-ttl {
  font-size: 1.5rem;
  font-weight: 700;
  color: #064066;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .consulting-about__item-ttl {
    font-size: clamp(1rem, 0.641rem + 1.53vw, 1.375rem);
  }
}

.consulting-about__item-ttl--middle {
  font-size: 2rem;
  font-weight: 700;
  color: #064066;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .consulting-about__item-ttl--middle {
    font-size: clamp(1rem, 0.641rem + 1.53vw, 1.375rem);
  }
}

.consulting-about__item-text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .consulting-about__item-text {
    font-size: clamp(0.875rem, 0.636rem + 1.02vw, 1.125rem);
  }
}

/*================
suggestion
==================*/
.consulting-suggestion {
  padding-bottom: 160px;
}
@media screen and (max-width: 1023px) {
  .consulting-suggestion {
    padding-bottom: 100px;
  }
}

.consulting-suggesting__item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px 28px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 56px;
  margin-bottom: 56px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1440px) {
  .consulting-suggesting__item-wrap {
    gap: 20px;
  }
}

.consulting-suggesting__item {
  width: 32%;
  background-color: #fff;
  border-radius: 24px;
  padding: 1.5rem;
  text-align: center;
  min-width: 442px;
}
@media screen and (max-width: 1440px) {
  .consulting-suggesting__item {
    padding: 1, 2rem;
    min-width: 360px;
  }
}
@media screen and (max-width: 1023px) {
  .consulting-suggesting__item {
    width: 48%;
    min-width: unset;
  }
}
@media screen and (max-width: 767px) {
  .consulting-suggesting__item {
    width: 100%;
    max-width: 360px;
  }
}

.consulting-suggesting__item-ttl {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 40px;
  padding: 8px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1440px) {
  .consulting-suggesting__item-ttl {
    font-size: clamp(1.125rem, 0.993rem + 0.56vw, 1.5rem);
  }
}
@media screen and (max-width: 1023px) {
  .consulting-suggesting__item-ttl {
    padding: 6px;
  }
}

.consulting-suggesting__middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  margin-bottom: 56px;
}
@media screen and (max-width: 1023px) {
  .consulting-suggesting__middle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .consulting-suggesting__middle {
    gap: 40px;
  }
}
.consulting-suggesting__middle img {
  width: 41%;
}
@media screen and (max-width: 1023px) {
  .consulting-suggesting__middle img {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .consulting-suggesting__middle img {
    width: 100%;
  }
}

.consulting-suggesting__middle-right {
  width: 54.5%;
}
@media screen and (max-width: 1023px) {
  .consulting-suggesting__middle-right {
    width: 100%;
  }
}

.consulting-suggesting__middle-ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  border-left: 4px solid #064066;
  margin-bottom: 26px;
  padding-left: 32px;
}
@media screen and (max-width: 1023px) {
  .consulting-suggesting__middle-ttl {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .consulting-suggesting__middle-ttl {
    font-size: 1.1rem;
  }
}

.consulting-suggesting__bottom {
  background-color: #fff;
  padding: 3.5rem 4rem;
  border-radius: 20px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .consulting-suggesting__bottom {
    padding: 2.4rem;
  }
}

.consulting-suggesting__bottom-ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  color: #0F75B7;
}
@media screen and (max-width: 1023px) {
  .consulting-suggesting__bottom-ttl {
    font-size: 1.8rem;
  }
}

.consulting-suggesting__bottom-text {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .consulting-suggesting__bottom-text {
    font-size: 1.2rem;
  }
}
.consulting-suggesting__bottom-text span {
  font-size: 18px;
  line-height: 1.5;
  padding-left: 40px;
}
@media screen and (max-width: 1023px) {
  .consulting-suggesting__bottom-text span {
    font-size: 16px;
    padding-left: 0;
  }
}

/*================
process
==================*/
.consulting-process {
  padding-bottom: 160px;
}
@media screen and (max-width: 1023px) {
  .consulting-process {
    padding-bottom: 100px;
  }
}

.consulting-process__item {
  width: 100%;
  background-color: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 62px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .consulting-process__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.consulting-process__item::before {
  content: "";
  position: absolute;
  bottom: -70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-left: 30px solid #0F75B7;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
  .consulting-process__item::before {
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 25px solid #0F75B7;
    bottom: -60px;
  }
}
.consulting-process__item:last-of-type {
  margin-bottom: 0;
}
.consulting-process__item:last-of-type::before {
  display: none;
}

.consulting-process__item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  width: 42%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1023px) {
  .consulting-process__item-left {
    width: 100%;
    margin-bottom: 10px;
  }
}

.consulting-process__item-number {
  text-align: center;
}

.consulting-process__item-en {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Prompt", sans-serif;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #064066;
}
@media screen and (max-width: 1440px) {
  .consulting-process__item-en {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  .consulting-process__item-en {
    font-size: 0.8rem;
  }
}

.consulting-process__item-num {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  color: #064066;
}
@media screen and (max-width: 1440px) {
  .consulting-process__item-num {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .consulting-process__item-num {
    font-size: 2rem;
  }
}

.consulting-process__item-ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 1440px) {
  .consulting-process__item-ttl {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .consulting-process__item-ttl {
    font-size: 0.95rem;
  }
}

.consulting-process__item-right {
  border-left: 1px solid #064066;
  padding-left: 28px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 1023px) {
  .consulting-process__item-right {
    padding-top: 10px;
    padding-left: 0;
    border-left: unset;
    border-top: 1px solid #064066;
  }
}

/*================
feature
==================*/
.consulting-feature {
  padding-bottom: 160px;
}
@media screen and (max-width: 1023px) {
  .consulting-feature {
    padding-bottom: 100px;
  }
}

.consulting-feature__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px 28px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.consulting-feature__item {
  width: 32%;
  background-color: #fff;
  border-radius: 20px;
  padding: 2.625rem 3rem;
  position: relative;
  min-width: 440px;
}
@media screen and (max-width: 1440px) {
  .consulting-feature__item {
    min-width: 420px;
  }
}
@media screen and (max-width: 1023px) {
  .consulting-feature__item {
    padding: 2rem;
    min-width: 280px;
  }
}

.consulting-feature__item-ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 18px;
  text-align: center;
  color: #064066;
}
@media screen and (max-width: 1023px) {
  .consulting-feature__item-ttl {
    font-size: 1.3rem;
  }
}

.consulting-feature__number {
  font-weight: 500;
  line-height: 1;
  color: #0F75B7;
  opacity: 0.1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.consulting-feature__en {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #0F75B7;
  font-family: "Prompt", sans-serif;
}
@media screen and (max-width: 1023px) {
  .consulting-feature__en {
    font-size: 1rem;
  }
}

.consulting-feature__num {
  font-size: 4rem;
}
@media screen and (max-width: 1023px) {
  .consulting-feature__num {
    font-size: 3rem;
  }
}

/*================
related
==================*/
.consulting-related {
  padding-bottom: 160px;
}
@media screen and (max-width: 1023px) {
  .consulting-related {
    padding-bottom: 100px;
  }
}

.consulting-related__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
}
@media screen and (max-width: 1023px) {
  .consulting-related__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.consulting-related__item {
  width: 32%;
}
@media screen and (max-width: 1023px) {
  .consulting-related__item {
    width: 100%;
    max-width: 448px;
    margin-bottom: 40px;
  }
}
.consulting-related__item img {
  margin-bottom: 24px;
}
.consulting-related__item a {
  display: inline-block;
}

.consulting-related__text {
  font-size: clamp(1.125rem, 0.696rem + 0.67vw, 1.5rem);
  font-weight: 500;
  line-height: 1.6;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .consulting-related__text {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .consulting-related__text {
    font-size: 20px;
  }
}
.consulting-related__text::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 12px;
  display: inline-block;
  width: 16px;
  height: 16px;
  border-top: 1px solid #222222;
  border-right: 1px solid #222222;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 8px;
}
@media screen and (max-width: 1440px) {
  .consulting-related__text::before {
    top: 10px;
  }
}

/*================
cta
==================*/
.cta {
  background: url(../../top_img/bg_img002.webp) no-repeat center/cover;
  width: 100%;
  height: 504px;
}

.cta-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .cta-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cta-item {
  width: 50%;
  height: 184px;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1), height 0.8s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.6s ease, margin 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1), height 0.8s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.6s ease, margin 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  backdrop-filter: blur(16px);
}
@media screen and (max-width: 1023px) {
  .cta-item {
    width: 80%;
    max-width: 480px;
  }
}
@media screen and (max-width: 767px) {
  .cta-item {
    width: 100%;
    max-width: 400px;
    height: 160px;
  }
}
.cta-item::after {
  content: "";
  width: 20px;
  height: 20px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  position: absolute;
  top: 50%;
  right: 43px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.6s ease, -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.cta-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 40px;
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  width: 100%;
  height: 100%;
  margin-top: -10px;
  padding-left: 80px;
}
@media screen and (max-width: 1440px) {
  .cta-item a {
    padding-left: 50px;
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .cta-item a {
    padding-left: 20px;
  }
}
.cta-item a:hover {
  opacity: unset;
}
.cta-item:hover {
  background-color: #fff;
}
.cta-item:hover::after {
  -webkit-transform: translateY(-50%) translateX(15px) rotate(45deg);
          transform: translateY(-50%) translateX(15px) rotate(45deg);
}

.cta__text {
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .cta__text {
    font-size: 14px;
  }
}

/*================
ページトップに戻る
==================*/
.pagetop {
  position: fixed;
  right: 80px;
  bottom: 40px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .pagetop {
    right: 40px;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
.pagetop a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 72px;
  height: 72px;
  background-color: #064066;
  border-radius: 50%;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.pagetop a:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.pagetop__icon {
  display: block;
  width: 20px;
  height: 12px;
  margin-bottom: 2px;
}
.pagetop__text {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .pagetop {
    right: 20px;
    bottom: 20px;
  }
  .pagetop a {
    width: 60px;
    height: 60px;
  }
}

/*================
下層共通
==================*//*# sourceMappingURL=style.css.map */


body.contact {


    @media screen and (mix-width: 1024px) {
      header#pageHeader {
        height: 515px!important;
      }
    }
    @media screen and (max-width: 1023px) {
      header#pageHeader {
        height: 320px!important;
      }
    }

  header#pageHeader {

  width: 100%;
  position: relative;

      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      /* height: 100%; */
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;


       


              &:before {
                content: "";
                position: absolute;
                inset: 0;
                background: url(../img/page_fv.webp) no-repeat center/cover;
                z-index: -1;
              }

      @media screen and (max-width: 1023px) {
        .inner {
          padding-top: 0;
        }
      }


    .txt-wrap  {
      font-size: 77px;
      padding-top: 65px;
      margin-bottom: 16px;
      padding-top: 0;
      font-family: "Prompt", sans-serif;
      font-weight: 500;
      @media screen and (max-width: 1440px) {
          font-size: 64px;
      }
      @media screen and (max-width: 1023px) {
          font-size: 48px;
          margin-bottom: 0;
      }
      @media screen and (max-width: 767px) {
          padding-top: 0;
          font-size: 38px;
      }




      p {
        /* color: #0F75B7; */
          display: inline-block;
          background: -webkit-gradient(linear, left top, right top, from(#064066), to(#0F75B7));
          background: linear-gradient(to right, #064066 0%, #0F75B7 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
      }
    }
    .ttl {
      display: block!important;
      margin-left: 0;
      display: block;
      margin-top: 30px;
    }


    &:after {
      content: none;
    }
    
  }
  #pankuzu {
    display: none;
  }

}