@charset "UTF-8";
.js__fadeIn {
  opacity: 0;
  translate: 0 5px;
  -webkit-transition: opacity 0.6s ease, translate 0.5s ease;
  transition: opacity 0.6s ease, translate 0.5s ease;
}
.js__fadeIn.js-show {
  opacity: 1;
  translate: 0 0;
}

.js__fadeIn-right {
  opacity: 0;
  translate: 5px 0px;
  -webkit-transition: opacity 0.8s ease, translate 0.5s ease;
  transition: opacity 0.8s ease, translate 0.5s ease;
}
.js__fadeIn-right.js-show {
  opacity: 1;
  translate: 0 0;
}

.animated__colorBox {
  position: relative;
  white-space: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
.animated__colorBox::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(#1DA8FF), to(#0067AE));
  background: linear-gradient(to right, #1DA8FF, #0067AE);
  background: -webkit-linear-gradient(to right, #1DA8FF, #0067AE);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  pointer-events: none;
}
.animated__colorBox.js-show {
  -webkit-animation: 0.8s forwards ease textView;
          animation: 0.8s forwards ease textView;
}
.animated__colorBox.js-show::after {
  -webkit-animation: 0.8s forwards ease colorBox;
          animation: 0.8s forwards ease colorBox;
}

@-webkit-keyframes textView {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}

@keyframes textView {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes colorBox {
  0%, 50% {
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
  }
  60%, 100% {
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
  60% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes colorBox {
  0%, 50% {
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
  }
  60%, 100% {
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
  60% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
.animated__clipView {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: -webkit-clip-path 0.8s ease;
  transition: -webkit-clip-path 0.8s ease;
  transition: clip-path 0.8s ease;
  transition: clip-path 0.8s ease, -webkit-clip-path 0.8s ease;
}
.animated__clipView.js-show {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

/* fv__image: 画像拡大->縮小 */
.fv__image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/* fv__cover: 初期状態 */
.fv__cover {
  opacity: 0;
  -webkit-transform: translateX(-2%);
          transform: translateX(-2%); /* 要素を右側に完全に隠す */
}

.fv__copy {
  overflow: hidden;
  padding: 10px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

/* fv__copy: 下からフェードイン */
.header {
  position: fixed;
  z-index: 990;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 15px 40px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 15px 25px;
  }
}

.header.js-active {
  background: rgba(255, 255, 255, 0.8);
}
.header.js-active .header__list-item {
  color: #3C3C3C;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
@media (any-hover: hover) {
  .header.js-active .header__list-item:hover {
    color: #1882CC;
    opacity: 1;
  }
}

.header__inner {
  display: grid;
  grid-template-columns: min(13.89vw, 200px) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .header__inner {
    grid-template-columns: 145px 1fr;
  }
}

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

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.header__list-item {
  color: #3c3c3c;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  font-size: 18px;
  font-size: clamp(16px, 1.59vw, 18px);
}
@media (any-hover: hover) {
  .header__list-item:hover {
    color: #1882CC;
  }
}

.drawer__icon {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  width: 58px;
  height: 58px;
  padding: 20px 15px;
  background: -webkit-gradient(linear, left top, right top, from(#1DA8FF), to(#1799eb));
  background: linear-gradient(to right, #1DA8FF, #1799eb);
  background: -webkit-linear-gradient(to right, #1DA8FF, #4abaff);
  display: none;
}
@media screen and (max-width: 767px) {
  .drawer__icon {
    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;
  }
}

.drawer__icon--bar {
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 8px;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -10px;
}

.drawer {
  position: fixed;
  z-index: 998;
  top: 0;
  right: 0;
  width: 290px;
  max-width: 100%;
  height: 100svh;
  height: 100vh;
  background: #fff;
  overflow-y: scroll;
  translate: 101%;
  -webkit-transition: translate 0.4s ease;
  transition: translate 0.4s ease;
}
.drawer.js-show {
  translate: 0;
}

.drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 100px 100px;
  padding-inline: 20px;
}

.drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.drawer__list li {
  text-align: center;
  font-weight: bold;
  color: #333C62;
}

.drawer__button {
  margin-top: 30px;
  text-align: center;
}

.drawer__tel {
  margin-top: 30px;
  text-align: center;
}

.drawer__tel-number {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #1882CC;
}

.drawer__tel-text {
  font-size: 10px;
  color: #1882CC;
}

.drawer-bg {
  position: fixed;
  z-index: 990;
  top: 0px;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100svh;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.drawer-bg.js-show {
  opacity: 1;
  visibility: visible;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: clamp(16px, 1.39vw, 20px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: #3C3C3C;
}
body.is-checked {
  overflow: hidden;
}

.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.inner {
  padding-left: 35px;
  padding-right: 35px;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.container {
  max-width: 1310px;
  margin-left: auto;
  margin-right: auto;
}

.container-s {
  max-width: 1070px;
  margin-left: auto;
  margin-right: auto;
}

.section-title--en {
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  font-weight: bold;
  color: #1882CC;
  line-height: 1.4;
}
.section-title--en.--white {
  color: #fff;
}

.section-title--ja {
  font-size: 20px;
  font-weight: 500;
  color: #333C62;
}
.section-title--ja.--cta-contact {
  color: #004781;
}

a {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
}
@media (any-hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

button {
  cursor: pointer;
}

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

.table-list__item {
  position: relative;
  padding-left: 1.5rem;
}
.table-list__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.main {
  overflow: hidden;
}

.header-button {
  padding: 13px 35px;
  background: #1882CC;
  color: #fff;
  font-weight: 500;
  border: 2px solid #1882CC;
  position: relative;
  z-index: 2;
}
.header-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  scale: 0 1;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: scale 0.4s ease;
  transition: scale 0.4s ease;
  z-index: 1;
}
.header-button span {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (any-hover: hover) {
  .header-button:hover {
    color: #1882CC;
    border: 2px solid #1882CC;
  }
  .header-button:hover::after {
    scale: 1 1;
  }
  .header-button:hover span {
    color: #1882CC;
  }
}

.button-type1 {
  display: inline-block;
  width: 300px;
  max-width: 100%;
  font-size: 20px;
  font-weight: bold;
  color: #1882CC;
  text-align: center;
  background: #fff;
  padding: 17px 10px;
  border: 2px solid #1882CC;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .button-type1 {
    padding: 10px 10px;
    font-size: 16px;
  }
}
.button-type1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #1882CC;
  scale: 0 1;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: scale 0.4s ease;
  transition: scale 0.4s ease;
  z-index: 1;
}
.button-type1 span {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (any-hover: hover) {
  .button-type1:hover {
    color: #fff;
    border: 2px solid #1882CC;
  }
  .button-type1:hover::after {
    scale: 1 1;
  }
  .button-type1:hover span {
    color: #fff;
  }
}

.button-type2 {
  display: inline-block;
  font-size: 16px;
  color: #1882CC;
  padding: 5px 5px 7px 5px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .button-type2 {
    font-size: 14px;
  }
}
.button-type2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #DEE8EF;
}
.button-type2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #1882CC;
  scale: 0 0;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
  z-index: 2;
}
@media (any-hover: hover) {
  .button-type2:hover {
    opacity: 0.7;
  }
  .button-type2:hover::after {
    scale: 1 1;
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}

.footer {
  background: #004781;
  color: #fff;
  padding: 52px 100px 35px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 30px 25px 30px;
  }
}

.footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 50px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__contents {
    -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;
  }
}
@media screen and (max-width: 767px) {
  .footer__contents {
    -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;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__left {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .footer__left {
    text-align: center;
  }
}

.footer__company-name {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .footer__company-name {
    font-size: 16px;
  }
}

.footer__company-address {
  margin-top: 27px;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .footer__company-address {
    margin-top: 20px;
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__right {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .footer__right {
    display: none;
  }
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(9.09vw, 40px);
}

.footer__nav-item {
  font-size: 18px;
}

.footer__privacy {
  margin-top: 10px;
  font-size: 12px;
  text-align: right;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__privacy {
    margin-top: 20px;
    font-size: 10px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .footer__privacy {
    margin-top: 20px;
    font-size: 10px;
    text-align: center;
  }
}
.footer__privacy a {
  display: inline-block;
  text-decoration: underline;
}

.footer__copyright {
  margin-top: 45px;
  text-align: center;
  font-size: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__copyright {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 10px;
  }
}

.page {
  margin-top: 91px;
}
@media screen and (max-width: 767px) {
  .page {
    margin-top: 57px;
  }
}

.page__head-bg {
  background: url(../img/page__head-bg.jpg) no-repeat center right/cover;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 8.26vw 9.79vw;
  padding-top: min(8.26vw, 119px);
  padding-bottom: min(9.79vw, 141px);
  min-height: 320px;
  margin-left: calc(50% - 50vw + 10%);
  margin-right: calc(50% - 50vw);
  padding-inline: calc(50vw - 50% + 70px);
  width: 100vw;
  position: relative;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .page__head-bg {
    padding-inline: 25px;
    padding-block: 30px 30px;
    min-height: auto;
    margin-left: calc(50% - 50vw);
    overflow-x: hidden;
  }
}
.page__head-bg:before {
  content: "";
  position: absolute;
  background: url(../img/page__head-bg-wave.png) no-repeat center center/contain;
  bottom: 0;
  left: calc(50% - 50vw);
  left: 0;
  width: 39.65%;
  max-width: 600px;
  height: auto;
  aspect-ratio: 571/251;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: -webkit-clip-path 2s ease;
  transition: -webkit-clip-path 2s ease;
  transition: clip-path 2s ease;
  transition: clip-path 2s ease, -webkit-clip-path 2s ease;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page__head-bg:before {
    width: 240px;
    height: 106px;
  }
}
.page__head-bg.js-show:before {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.page__head-title--en {
  font-size: 40px;
  font-weight: bold;
  color: #1882CC;
}
@media screen and (max-width: 767px) {
  .page__head-title--en {
    font-size: clamp(20px, 6.93vw, 24px);
  }
}

.page__head-title--ja {
  font-size: 20px;
  font-weight: bold;
  color: #333C62;
}
@media screen and (max-width: 767px) {
  .page__head-title--ja {
    font-size: 14px;
  }
}

.page-section-title--ja {
  font-size: clamp(30px, 3.47vw, 50px);
  font-weight: bold;
  color: #1882CC;
  line-height: 1.4;
  letter-spacing: 0.15em;
}

.page-section-title--en {
  font-size: clamp(12px, 4.8vw, 14px);
  font-weight: bold;
  color: #333C62;
}

.breadcrumb {
  padding-bottom: 10px;
}

.breadcrumb .inner {
  overflow-x: scroll;
  word-break: keep-all;
  white-space: nowrap;
}
.breadcrumb .inner::-webkit-scrollbar {
  display: none;
}

.breadcrumb__list-item {
  position: relative;
}
.breadcrumb__list-item:first-of-type a {
  font-weight: 500;
  font-size: 12px;
  text-decoration: underline;
}
.breadcrumb__list-item:nth-child(n+2) {
  margin-left: 20px;
  font-size: 13px;
}
.breadcrumb__list-item a {
  color: #333333;
  font-size: 12px;
  font-weight: 500;
}

.breadcrumb__list-item + .breadcrumb__list-item::after {
  content: ">";
  position: absolute;
  top: 50%;
  left: -14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .breadcrumb__list-item + .breadcrumb__list-item::after {
    font-size: 10px;
  }
}

.fv {
  position: relative;
  overflow: hidden;
}

.fv__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 47.22%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .fv__cover {
    width: 100%;
    -webkit-clip-path: polygon(0 0, 84% 0, 0 65%, 0% 100%);
            clip-path: polygon(0 0, 84% 0, 0 65%, 0% 100%);
  }
}

.fv__image {
  height: 100vh;
  height: 100svh;
  position: relative;
  overflow: hidden;
}
.fv__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}
.fv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.fv__slider {
  height: 100vh;
  height: 100svh;
}

.fv__swiper {
  height: 100vh;
  height: 100svh;
}

.fv__swiper-slide {
  height: 100%;
}
.fv__swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.fv__swiper-slide.--3 img {
  -o-object-position: 60% center;
     object-position: 60% center;
}

.fv__copy {
  position: absolute;
  top: 60%;
  left: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .fv__copy {
    top: 50%;
    left: 1%;
  }
}

.fv__copy-text-wrap {
  -webkit-filter: drop-shadow(4px 4px 0px #496799);
          filter: drop-shadow(4px 4px 0px #496799);
}
.fv__copy-text-wrap:nth-of-type(2) {
  margin-top: 11px;
}

.fv__copy-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 35px;
  font-size: clamp(25px, 3.47vw, 50px);
  line-height: 1.4;
  font-weight: 500;
  font-weight: bold;
  background: #fff;
  -webkit-clip-path: polygon(3% 0, 100% 0, 97% 100%, 0% 100%);
          clip-path: polygon(3% 0, 100% 0, 97% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .fv__copy-text {
    font-size: clamp(25px, 9.6vw, 36px);
    padding: 10px 25px;
  }
}
.fv__copy-text span {
  background: -webkit-gradient(linear, left top, left bottom, from(#1DA8FF), to(#0067AE));
  background: linear-gradient(to bottom, #1DA8FF, #0067AE);
  background: -webkit-linear-gradient(to bottom, #1DA8FF, #0067AE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top-about {
  position: relative;
}
.top-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/1707;
  background: url(../img/top__section-bg.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top-about::before {
    background: url(../img/top__section-bg-sp.png) no-repeat center center/cover;
    aspect-ratio: 375/1514;
  }
}

.top-about__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 42px;
}
@media screen and (max-width: 767px) {
  .top-about__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.top-about__image {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .top-about__image {
    width: 100%;
    margin-inline: calc(50% - 50vw);
    width: 100vw;
  }
}

.top-about__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 415px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-about__right {
    width: 100%;
    min-width: 100%;
  }
}
.top-about__right::after {
  content: "";
  position: absolute;
  top: 12%;
  right: -1%;
  width: 30vw;
  max-width: 500px;
  height: auto;
  aspect-ratio: 518/468;
  background: url(../img/svg__japan-map.svg) no-repeat center center/contain;
  z-index: -1;
}

.top-about__right-title {
  font-size: clamp(20px, 1.81vw, 26px);
  font-weight: bold;
  color: #1882CC;
}
@media screen and (max-width: 767px) {
  .top-about__right-title {
    text-align: center;
  }
}

.top-about__right-text {
  margin-top: 33px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-about__right-text {
    text-align: center;
  }
}

.top-about__button {
  margin-top: 59px;
}
@media screen and (max-width: 767px) {
  .top-about__button {
    margin-top: 30px;
    text-align: center;
  }
}

.top-service {
  padding-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-service {
    padding-bottom: 60px;
  }
}
.top-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#F2F6F7));
  background: linear-gradient(to bottom, #ffffff, #F2F6F7);
  z-index: -11;
}

.top-service__head {
  text-align: center;
}

.top-service__contents {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 115px;
}
@media screen and (max-width: 767px) {
  .top-service__contents {
    gap: 90px;
  }
}

.top-service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(3.15vw, 39px);
}
@media screen and (max-width: 767px) {
  .top-service__item {
    -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: start;
    gap: 0;
    position: relative;
  }
}
.top-service__item:nth-of-type(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .top-service__item:nth-of-type(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-service__item-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 327px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-service__item-left {
    display: contents;
  }
}

.top-service__item-number {
  position: absolute;
  top: -60px;
  left: 0;
  font-family: "Oswald", sans-serif;
  font-size: 100px;
  font-weight: bold;
  color: #DEE8EF;
  line-height: 1;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top-service__item-number {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 75px;
    top: -50px;
  }
}

.top-service__item-title {
  font-size: 26px;
  font-size: clamp(20px, 1.81vw, 26px);
  font-weight: bold;
  color: #1882CC;
}
@media screen and (max-width: 767px) {
  .top-service__item-title {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    font-size: 20px;
  }
}

.top-service__item-text {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .top-service__item-text {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-top: 20px;
  }
}

.top-service__item-image {
  width: 48.39%;
}
@media screen and (max-width: 767px) {
  .top-service__item-image {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 20px;
  }
}

.top-service__item-button {
  margin-top: 30px;
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-service__item-button {
    margin-top: 20px;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    text-align: center;
  }
}

.top-service__button {
  margin-top: min(11.83vw, 100px);
  text-align: center;
}

.top-recruit {
  background: #fff;
}

.top-recruit__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .top-recruit__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-recruit__head {
  text-align: center;
}

.top-recruit__image {
  width: 52vw;
  -webkit-clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
  margin-left: calc((50vw - 50%) * -1);
}
@media screen and (max-width: 767px) {
  .top-recruit__image {
    width: 100vw;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
  }
}
.top-recruit__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
}

.top-recruit__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-line-pack: center;
      align-content: center;
  padding-top: 60px;
  padding-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .top-recruit__left {
    margin-top: -34%;
    position: relative;
    z-index: 2;
    background: #fff;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    padding: 20px 20px 45px;
  }
}

.top-recruit__body {
  margin-top: 30px;
}

.top-recruit__left-h3 {
  text-align: center;
  font-size: clamp(20px, 1.81vw, 26px);
  font-weight: bold;
  color: #333C62;
}
@media screen and (max-width: 767px) {
  .top-recruit__left-h3 {
    font-size: clamp(16px, 5.33vw, 20px);
  }
}

.top-recruit__left-text {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-recruit__left-text {
    margin-top: 25px;
    text-align: left;
  }
}

.top-recruit__button {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-recruit__button {
    margin-top: 30px;
  }
}

.cta-contact {
  background: url(../img/top__contact-bg.jpg) no-repeat center center/cover;
  padding-block: 56px;
  color: #fff;
  padding-block: 60px;
  overflow: hidden;
}

.cta-contact__inner {
  position: relative;
}
.cta-contact__inner::after {
  content: "";
  position: absolute;
  bottom: -14%;
  right: 7%;
  width: 414px;
  height: auto;
  aspect-ratio: 414/374;
  background: url(../img/svg__japan-map.svg) no-repeat center center/contain;
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
  opacity: 40%;
}
@media screen and (max-width: 767px) {
  .cta-contact__inner::after {
    bottom: 14%;
    width: 200px;
    max-width: 100%;
    opacity: 20%;
  }
}

.cta-contact__head {
  color: #fff;
  text-align: center;
}

.cta-contact__text1 {
  margin-top: 50px;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cta-contact__text1 {
    margin-top: 25px;
    font-size: 20px;
  }
}

.cta-contact__text2 {
  margin-top: 5px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cta-contact__text2 {
    display: none;
  }
}

.cta-contact__button {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cta-contact__button {
    margin-top: 30px;
  }
}

.company-motto {
  margin-top: -70px;
}
@media screen and (max-width: 767px) {
  .company-motto {
    margin-top: -20px;
  }
}

.company-motto__box {
  background: #EDF2F6;
  padding: 80px 100px;
  -webkit-box-shadow: 5px 4px 5px rgba(51, 60, 98, 0.25);
          box-shadow: 5px 4px 5px rgba(51, 60, 98, 0.25);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .company-motto__box {
    padding: 30px 20px;
  }
}
.company-motto__box::after {
  content: "";
  position: absolute;
  top: -106px;
  right: 107px;
  width: 286px;
  height: 150%;
  aspect-ratio: 286/691;
  background: rgba(255, 255, 255, 0.4);
  -webkit-transform: rotate(22deg);
          transform: rotate(22deg);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .company-motto__box::after {
    width: 200px;
    right: 66px;
  }
}

.company-motto__title {
  font-size: clamp(20px, 1.81vw, 26px);
  font-weight: bold;
  color: #333C62;
  text-align: center;
  position: relative;
  z-index: 2;
}

.company-motto__text {
  margin-top: 50px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .company-motto__text {
    margin-top: 25px;
  }
}

.greeting__head {
  text-align: center;
}

.greeting__contents {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .greeting__contents {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .greeting__image {
    width: 90%;
    width: calc(100% - 20px);
  }
}

.greeting__box {
  margin-top: -50px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding: 21px;
  background: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .greeting__box {
    margin-top: -7%;
    margin-right: 0;
    max-width: calc(100% - 20px);
  }
}

.greeting__box-title {
  font-size: clamp(20px, 1.81vw, 26px);
  font-weight: bold;
  color: #333C62;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .greeting__box-title {
    font-size: 16px;
  }
}

.greeting__box-text {
  margin-top: 50px;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .greeting__box-text {
    margin-top: 25px;
    font-size: 14px;
  }
}

.greeting__box-ownername {
  display: block;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .greeting__box-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.greeting__box-image {
  margin-top: 50px;
  width: clamp(100px, 29.21vw, 250px);
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .greeting__box-image {
    float: none;
    margin-top: 25px;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 0;
    width: 60%;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .greeting__box-image::after {
    content: "";
    position: absolute;
    top: -43%;
    left: 0;
    width: 100vw;
    height: auto;
    aspect-ratio: 375/131;
    background: #DEE8EF;
    opacity: 0.4;
    margin-left: calc(50% - 50vw);
    margin-left: -84vw;
    z-index: -1;
  }
}

.aboutCompany-to-history__container {
  background: url(../img/page-company__section-bg.jpg) no-repeat center center/cover;
}

.aboutCompany {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .aboutCompany {
    padding-top: 60px;
  }
}

.aboutCompany__head {
  text-align: center;
}

.aboutCompany__contents {
  margin-top: 60px;
  padding: 60px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .aboutCompany__contents {
    margin-top: 30px;
    padding: 20px;
  }
}

.aboutCompany__table {
  width: 759px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .aboutCompany__table {
    width: 100%;
  }
}
.aboutCompany__table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: min(5.27vw, 135px);
  border-bottom: 1px solid #D6D6D6;
}
@media screen and (max-width: 767px) {
  .aboutCompany__table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .aboutCompany__table tr:first-of-type {
    padding-top: 0;
  }
}
.aboutCompany__table tr:first-of-type th, .aboutCompany__table tr:first-of-type td {
  padding-top: 0;
}
.aboutCompany__table th, .aboutCompany__table td {
  font-size: 18px;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .aboutCompany__table th, .aboutCompany__table td {
    font-size: 16px;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.aboutCompany__table th {
  width: 110px;
  font-weight: bold;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .aboutCompany__table th {
    width: 100%;
  }
}
.aboutCompany__table td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .aboutCompany__table td {
    width: 100%;
    font-size: 14px;
  }
}

.history {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .history {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.history__head {
  text-align: center;
}

.history__contents {
  margin-top: 60px;
  padding: 60px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .history__contents {
    margin-top: 30px;
    padding: 20px;
  }
}

.history__table {
  width: 908px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .history__table {
    width: 100%;
  }
}
.history__table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(5.27vw, 114px);
  border-bottom: 1px solid #D6D6D6;
}
@media screen and (max-width: 767px) {
  .history__table tr {
    -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: start;
    gap: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .history__table tr:first-of-type {
    padding-top: 0;
  }
}
.history__table tr:first-of-type th, .history__table tr:first-of-type td {
  padding-top: 0;
}
.history__table th, .history__table td {
  font-size: 18px;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .history__table th, .history__table td {
    font-size: 16px;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.history__table th {
  width: 150px;
  font-weight: bold;
  text-align: left;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .history__table th {
    padding-left: 0;
  }
}
.history__table td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .history__table td {
    font-size: 14px;
  }
}

.gallery {
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .gallery {
    padding-bottom: 5px;
  }
}

.gallery__slider.--2 {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .gallery__slider.--2 {
    margin-top: 5px;
  }
}

.gallery__swiper-slide img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery__swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

.recruit-message {
  padding-top: 90px;
}
@media screen and (max-width: 767px) {
  .recruit-message {
    padding-top: 50px;
  }
}

.recruit-message__inner {
  position: relative;
}

.recruit-message__image {
  width: 93.63%;
  margin-left: auto;
}

.recruit-message__box {
  margin-top: -117px;
  width: 721px;
  max-width: 93.63%;
  padding: 82px 55px;
  background: #EDF2F6;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .recruit-message__box {
    margin-top: -60px;
    padding: 25px;
  }
}

.recruit-message__box-text {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .recruit-message__box-text {
    font-size: 16px;
  }
}

.merit {
  padding-top: 60px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .merit {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.merit__inner {
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
}

.merit__head {
  text-align: center;
}

.merit__contents {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
}
@media screen and (max-width: 767px) {
  .merit__contents {
    margin-top: 30px;
    gap: 83px;
  }
}

.merit-item:nth-of-type(2n) .merit-item__image {
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .merit-item:nth-of-type(2n) .merit-item__image {
    width: 100%;
    padding-left: 15px;
    padding-bottom: 15px;
  }
}
.merit-item:nth-of-type(2n) .merit-item__image::after {
  left: auto;
  right: -30%;
}
@media screen and (max-width: 767px) {
  .merit-item:nth-of-type(2n) .merit-item__image::after {
    bottom: 0;
    left: 0;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    aspect-ratio: 335/188;
  }
}
.merit-item:nth-of-type(2n) .merit-item__contents {
  position: relative;
  bottom: 0;
  left: auto;
  right: 7.55%;
  margin-top: -12%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .merit-item:nth-of-type(2n) .merit-item__contents {
    position: static;
    margin-top: 20px;
  }
}

.merit-item__image {
  width: 76.79%;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .merit-item__image {
    width: 100%;
    aspect-ratio: 4/3;
    padding-left: 15px;
    padding-bottom: 15px;
  }
}
.merit-item__image::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30%;
  width: 900px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 900/250;
  background: #DEE8EF;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .merit-item__image::after {
    bottom: 0;
    left: 0;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    aspect-ratio: 335/188;
  }
}
.merit-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.merit-item__contents {
  position: relative;
  margin-top: -12%;
  left: 7.55%;
  padding: 41px 35px;
  width: 432px;
  max-width: 76.79%;
  background: #fff;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .merit-item__contents {
    position: static;
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.merit-item__title {
  font-size: 20px;
  font-weight: bold;
  color: #1882CC;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .merit-item__title {
    font-size: 18px;
  }
}

.merit-item__text {
  margin-top: 25px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .merit-item__text {
    margin-top: 20px;
    font-size: 16px;
  }
}

.guideline {
  background: #EDF2F6;
  padding-top: 60px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .guideline {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.guideline__head {
  text-align: center;
}

.guideline__contents {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .guideline__contents {
    margin-top: 30px;
  }
}

.guideline-tabs__contents {
  margin-top: 30px;
  padding: 60px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .guideline-tabs__contents {
    margin-top: 20px;
    padding: 20px;
  }
}

.guideline__table {
  width: 759px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .guideline__table {
    width: 100%;
  }
}
.guideline__table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: min(5.27vw, 114px);
  border-bottom: 1px solid #D6D6D6;
}
@media screen and (max-width: 767px) {
  .guideline__table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .guideline__table tr:first-of-type {
    padding-top: 0;
  }
}
.guideline__table tr:first-of-type th, .guideline__table tr:first-of-type td {
  padding-top: 0;
}
.guideline__table th, .guideline__table td {
  font-size: 18px;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .guideline__table th, .guideline__table td {
    font-size: 16px;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.guideline__table th {
  width: 145px;
  font-weight: bold;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .guideline__table th {
    width: 100%;
  }
}
.guideline__table td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .guideline__table td {
    width: 100%;
    font-size: 14px;
  }
}

.guideline-tabs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .guideline-tabs__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
}

.guideline-tabs__item {
  display: block;
  padding: 10px 30px;
  border-radius: 999px;
  font-size: clamp(20px, 2.02vw, 25px);
  font-weight: 500;
  letter-spacing: 0.1em;
  border: 2px solid #1882CC;
  background: #fff;
  color: #1882CC;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .guideline-tabs__item {
    font-size: clamp(16px, 4.8vw, 18px);
    font-size: 16px;
    width: 100%;
  }
}
@media (any-hover: hover) {
  .guideline-tabs__item:hover {
    border: 2px solid #1882CC;
    background: #1882CC;
    color: #fff;
  }
}
.guideline-tabs__item[aria-selected=true] {
  border: 2px solid #1882CC;
  background: #1882CC;
  color: #fff;
}

.guideline-tabs__content-wrap {
  opacity: 0;
  visibility: hidden;
  height: 0;
  -webkit-transition: opacity 0.9s ease;
  transition: opacity 0.9s ease;
}
.guideline-tabs__content-wrap.js-show {
  opacity: 1;
  visibility: visible;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.truck {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .truck {
    padding-block: 60px;
  }
}

.truck__inner {
  max-width: 1166px;
  margin-left: auto;
  margin-right: auto;
}

.truck__head {
  text-align: center;
}

.truck__contents {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-areas: "A A A B B B" "C C D D E E" "F F G G H H";
  gap: 50px 30px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .truck__contents {
    margin-top: 30px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "A B" "C D" "E F" "G H";
    gap: 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  .truck__contents {
    margin-top: 30px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: "A" "B" "C" "D" "E" "F" "G" "H";
    gap: 20px 20px;
  }
}

.truck-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: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.truck-item.--1 {
  grid-area: A;
}
.truck-item.--2 {
  grid-area: B;
}
.truck-item.--3 {
  grid-area: C;
}
.truck-item.--4 {
  grid-area: D;
}
.truck-item.--5 {
  grid-area: E;
}
.truck-item.--6 {
  grid-area: F;
}
.truck-item.--7 {
  grid-area: G;
}
.truck-item.--8 {
  grid-area: H;
}

.truck-item__body {
  background: #EDF2F6;
  padding: 20px 20px;
}
@media screen and (max-width: 767px) {
  .truck-item__body {
    padding: 20px 15px;
  }
}

.truck-item__title {
  font-size: clamp(16px, 1.82vw, 20px);
  font-weight: bold;
  color: #333C62;
  position: relative;
  padding-left: 20px;
}
.truck-item__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #1882CC;
}

.contact-top {
  padding-top: 100px;
  padding-bottom: 50px;
  max-width: 764px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .contact-top {
    padding-top: 60px;
    padding-bottom: 25px;
  }
}

.contact-top__text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-top__text {
    text-align: left;
  }
}

.contact-title {
  font-size: 40px;
  font-size: clamp(24px, 3.05vw, 40px);
  font-weight: bold;
  color: #333C62;
}
@media screen and (max-width: 767px) {
  .contact-title {
    font-size: clamp(20px, 6.4vw, 24px);
  }
}

.contact-tell {
  padding-block: 50px;
}
@media screen and (max-width: 767px) {
  .contact-tell {
    padding-block: 25px;
  }
}

.contact-tell__head {
  text-align: center;
}

.contact-tell__contents {
  margin-top: 30px;
}

.contact-tell__table {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-collapse: separate;
  border-spacing: 10px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact-tell__table tbody {
    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;
  }
}
@media screen and (max-width: 767px) {
  .contact-tell__table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
}
.contact-tell__table th, .contact-tell__table td {
  background: #F6F6F6;
  padding: 20px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .contact-tell__table th, .contact-tell__table td {
    padding: 10px;
  }
}
.contact-tell__table th {
  width: 30%;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contact-tell__table th {
    width: 100%;
  }
}
.contact-tell__table td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-tell__table td {
    width: 100%;
  }
}
.contact-tell__table th span {
  display: block;
  font-size: 14px;
  text-align: center;
}

.contact-tell__number {
  display: block;
  font-size: 50px;
  font-size: clamp(26px, 3.82vw, 40px);
  font-weight: bold;
  color: #1882CC;
  line-height: 1.4;
}

.contact-tell__info {
  font-size: 16px;
  font-size: 12px;
  color: #1882CC;
}
@media screen and (max-width: 767px) {
  .contact-tell__info {
    font-size: clamp(10px, 3.2vw, 12px);
  }
}

.contact-form {
  padding-top: 40px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .contact-form {
    padding-top: 20px;
  }
}

.contact-form__head {
  text-align: center;
}

.contact-form__contents {
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.Form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .Form {
    gap: 25px;
  }
}

.Form-Item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.Form-Item-Label {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .Form-Item-Label {
    font-size: 18px;
  }
}

.Form-Item-Label-Required {
  margin-left: 22px;
  background: #1882CC;
  padding: 4px 14px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
}

.wpcf7-form-control-wrap {
  display: block;
}

input[type=text],
input[type=tel],
input[type=email] {
  width: 100%;
  padding: 15px 15px;
  font-size: 16px;
  background: #fff;
  border: 1px solid #A4A4A4;
}
input[type=text]:-webkit-autofill,
input[type=tel]:-webkit-autofill,
input[type=email]:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
          box-shadow: 0 0 0 1000px #fff inset;
}

textarea {
  width: 100%;
  padding: 15px 15px;
  font-size: 16px;
  resize: vertical;
  min-height: 300px;
  background: #fff;
  border: 1px solid #A4A4A4;
}
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
          box-shadow: 0 0 0 1000px #fff inset;
}
textarea::-webkit-input-placeholder {
  font-size: 16px;
  font-weight: 400 !important;
}
textarea::-moz-placeholder {
  font-size: 16px;
  font-weight: 400 !important;
}
textarea:-ms-input-placeholder {
  font-size: 16px;
  font-weight: 400 !important;
}
textarea::-ms-input-placeholder {
  font-size: 16px;
  font-weight: 400 !important;
}
textarea::placeholder {
  font-size: 16px;
  font-weight: 400 !important;
}

.wpcf7-list-item:has(:focus-visible) .wpcf7-list-item-label::before {
  outline: auto oklch(60% 0.4 240deg);
  outline-offset: 4px;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

input[type=radio] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

input[type=radio]:checked + .wpcf7-list-item-label::before {
  border: 1px solid #1882CC;
}
input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/* チェック前のボタン */
input[type=radio] + .wpcf7-list-item-label {
  position: relative;
  padding-left: 36px;
  font-size: 16px;
}
input[type=radio] + .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #333;
  border-radius: 50%;
  background: #fff;
}
input[type=radio] + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1882CC;
  opacity: 0;
}

[data-name=acceptance] {
  text-align: center;
}
@media screen and (max-width: 767px) {
  [data-name=acceptance] {
    text-align: left;
  }
}

.wpcf7-form-control.wpcf7-acceptance {
  display: block;
  text-align: center;
}
.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-form-control.wpcf7-acceptance.wpcf7-list-item {
  margin-left: 0;
}

input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/* チェック前のボタン */
input[type=checkbox] + .wpcf7-list-item-label {
  position: relative;
  padding-left: 36px;
}
input[type=checkbox] + .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #333;
  background: #fff;
}
input[type=checkbox] + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 6px;
  width: 8px;
  height: 14px;
  rotate: 45deg;
  border-right: 1.5px solid #000;
  border-bottom: 1.5px solid #000;
  opacity: 0;
}

.wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 20px;
}

.button-wrap {
  text-align: center;
}

input[type=submit] {
  display: inline-block;
  background: #000;
  width: 300px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 18px;
  color: #fff;
  font-weight: bold;
  border: 1px solid #000;
  cursor: pointer;
}

.wpcf7-submit:disabled {
  background: #999;
  border: 1px solid #999;
}

span.wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid-tip {
  font-size: 10px;
}

/*reCAPTCHAのバッジを非表示に*/
.grecaptcha-badge {
  visibility: hidden;
}

.contact-form__reCAPTCHA {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-form__reCAPTCHA {
    font-size: 10px;
  }
}
.contact-form__reCAPTCHA a {
  text-decoration: underline;
}

.policy__top {
  margin-top: 100px;
  text-align: center;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .policy__top {
    margin-top: 60px;
    padding-bottom: 60px;
  }
}

.policy__contents {
  text-align: left;
  line-height: 2.2;
  letter-spacing: 0.1em;
}
.policy__contents strong {
  font-weight: bold;
}
.policy__contents p {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .policy__contents p {
    font-size: 12px;
  }
}
.policy__contents p + p {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .policy__contents p + p {
    margin-top: 30px;
  }
}
.policy__contents a {
  text-decoration: underline;
}

.service-items {
  background: url(../img/page-service__section-bg.jpg) no-repeat center center/cover;
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .service-items {
    background: url(../img/page-service__section-bg-sp.jpg) no-repeat center center/cover;
    padding-block: 60px;
  }
}

.service-item {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .service-item {
    padding-top: 60px;
  }
}
.service-item:first-of-type {
  padding-top: 0;
}
.service-item:nth-of-type(2n) .service-item__flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .service-item:nth-of-type(2n) .service-item__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.service-item__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .service-item__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.service-item__flex-contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 60px 50px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .service-item__flex-contents {
    width: 100%;
    padding: 20px 15px;
  }
}

.service-item__flex-number {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 50px;
  line-height: 1;
  position: relative;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .service-item__flex-number {
    font-size: 40px;
  }
}
.service-item__flex-number::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #1882CC;
}

.service-item__flex-title {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #1882CC;
}
@media screen and (max-width: 767px) {
  .service-item__flex-title {
    font-size: 18px;
    margin-top: 15px;
  }
}

.service-item__flex-text {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .service-item__flex-text {
    font-size: 16px;
    margin-top: 15px;
  }
}

.service-item__flex-image {
  width: 48.39%;
  aspect-ratio: 600/300;
  max-height: 500px;
}
@media screen and (max-width: 767px) {
  .service-item__flex-image {
    width: 100%;
    aspect-ratio: 4/3;
  }
}
.service-item__flex-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-item__case {
  margin-top: 72px;
}
@media screen and (max-width: 767px) {
  .service-item__case {
    margin-top: 50px;
  }
}

.service-case__inner {
  max-width: 1210px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 35px;
  padding-right: 35px;
}
@media screen and (max-width: 767px) {
  .service-case__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.service-case__box {
  padding: 50px 20px;
  position: relative;
  border: 3px solid #1882CC;
  /* 代わりにlinear-gradient()で実装 */
  border-top: none;
  /*  caption用空間を持った枠線を作る calc(captionの左上位置 + captionの幅) */
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #1882CC), color-stop(#1882CC), color-stop(transparent), color-stop(transparent), color-stop(#1882CC), to(#1882CC)) 0 0/100% 3px;
  background: linear-gradient(to right, #1882CC 0, #1882CC calc(50% - 8em), transparent calc(50% - 8em), transparent calc(50% + 8rem), #1882CC calc(50% + 8rem), #1882CC 100%) 0 0/100% 3px; /* 右端 */
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .service-case__box {
    background: -webkit-gradient(linear, left top, right top, color-stop(0, #1882CC), color-stop(#1882CC), color-stop(transparent), color-stop(transparent), color-stop(#1882CC), to(#1882CC)) 0 0/100% 3px;
    background: linear-gradient(to right, #1882CC 0, #1882CC calc(50% - 4em), transparent calc(50% - 4em), transparent calc(50% + 4rem), #1882CC calc(50% + 4rem), #1882CC 100%) 0 0/100% 3px;
    background-repeat: no-repeat;
  }
}

.service-case__box-title {
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  color: #3C3C3C;
}
@media screen and (max-width: 767px) {
  .service-case__box-title {
    top: -15px;
    font-size: 18px;
  }
}

.service-case__contents {
  max-width: 888px;
  margin-left: auto;
  margin-right: auto;
}

.service-case__box-company {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  color: #1882CC;
}
@media screen and (max-width: 767px) {
  .service-case__box-company {
    font-size: 18px;
  }
}
.service-case__box-company span {
  font-size: 20px;
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  .service-case__box-company span {
    font-size: 14px;
  }
}

.service-case__box-text {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .service-case__box-text {
    margin-top: 20px;
  }
}