@charset "UTF-8";
/**
 * Breakpoints
==================== */
/**
 * Design Sizes
==================== */
/**
 * Spacing Units
==================== */
/**
 * Font sizes
==================== */
/**
 * Font Families
==================== */
/**
 * Media Query Mixin
==================== */
/**
 * VW Function
==================== */
/**
 * Em Function
==================== */
/**
 * Spacing Function
==================== */
.header {
  width: 100%;
  background: #F3F4F6;
  position: relative;
  position: fixed; /* ここに注目! */
  top: 0;
  z-index: 1000;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6666666667vw 8.3333333333vw;
  max-width: 100vw;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .header__inner {
    padding: 3.0769230769vw 2.0512820513vw;
  }
}
.header__logo img {
  width: 17.9166666667vw;
  height: 2.7777777778vw;
  display: block;
}
@media (max-width: 767px) {
  .header__logo img {
    width: 39.7435897436vw;
    height: 6.1538461538vw;
  }
}
.header__right {
  display: flex;
  align-items: center;
  gap: 2.7777777778vw;
}
@media (max-width: 767px) {
  .header__right {
    display: none;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 1.1111111111vw;
}
@media (max-width: 767px) {
  .header__nav {
    gap: 0.8333333333vw;
  }
}
.header__nav-link {
  font-weight: 400;
  font-size: 0.9722222222vw;
  line-height: 1.2;
  color: #1A1A1A;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .header__nav-link {
    font-size: 0.9027777778vw;
  }
}
.header__nav-link:hover {
  opacity: 0.7;
}
.header__nav-separator {
  font-weight: 400;
  font-size: 0.9722222222vw;
  line-height: 1.2;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .header__nav-separator {
    font-size: 0.9027777778vw;
  }
}
.header__cta {
  display: flex;
  align-items: center;
  gap: 0.8333333333vw;
  padding: 0.8333333333vw 1.6666666667vw;
  background: linear-gradient(90deg, #00b1b2 0%, #0076ff 40%, #0076ff 100%);
  border-radius: 1.3888888889vw;
  text-decoration: none;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767px) {
  .header__cta {
    gap: 0.6944444444vw;
    padding: 0.6944444444vw 1.3888888889vw;
    border-radius: 1.25vw;
  }
}
.header__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #142376;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.header__cta:hover::before {
  opacity: 1;
}
.header__cta-icon {
  width: 1.7152777778vw;
  height: 1.1388888889vw;
  display: block;
}
@media (max-width: 767px) {
  .header__cta-icon {
    width: 1.3888888889vw;
    height: 0.9027777778vw;
  }
}
.header__cta-text {
  font-weight: 500;
  font-size: 1.1111111111vw;
  line-height: 1.2;
  color: #ffffff;
}
@media (max-width: 767px) {
  .header__cta-text {
    font-size: 0.9722222222vw;
  }
}
.header__hamburger {
  display: none;
}
@media (max-width: 767px) {
  .header__hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: -1.0256410256vw;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .header__hamburger-icon {
    width: 8.2051282051vw;
    height: 8.2051282051vw;
    display: block;
  }
}
@media (max-width: 767px) {
  .header__hamburger-text {
    font-weight: 500;
    font-size: 2.5641025641vw;
    line-height: 1.2;
    color: #1A1A1A;
    text-align: center;
  }
}
.header__menu {
  display: none;
}
@media (max-width: 767px) {
  .header__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 66.6666666667vw;
    height: 100%;
    background: #1A1A1A;
    z-index: 9999;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  .header__menu.is-open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@media (max-width: 767px) {
  .header__menu-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 2.0512820513vw;
    align-self: flex-end;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header__menu-close-icon {
  width: 8.2051282051vw;
  height: 4.1025641026vw;
  display: block;
}
@media (max-width: 767px) {
  .header__menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    gap: 20.5128205128vw;
    padding: 20.5128205128vw 5.1282051282vw 0;
  }
}
@media (max-width: 767px) {
  .header__menu-nav {
    display: flex;
    flex-direction: column;
    gap: 10.2564102564vw;
    align-items: center;
    width: 100%;
    max-width: 46.3333333333vw;
  }
}
@media (max-width: 767px) {
  .header__menu-link {
    font-weight: 400;
    font-size: 4.1025641026vw;
    line-height: 1;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    display: block;
    width: 100%;
    transition: opacity 0.3s ease;
  }
  .header__menu-link:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .header__menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.0769230769vw;
    padding: 3.0769230769vw 6.1538461538vw;
    background: linear-gradient(90deg, #00b1b2 0%, #0076ff 40%, #0076ff 100%);
    border-radius: 5.1282051282vw;
    text-decoration: none;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
    width: 100%;
    max-width: 46.3333333333vw;
  }
  .header__menu-cta:hover {
    opacity: 0.9;
  }
}
@media (max-width: 767px) {
  .header__menu-cta-icon {
    width: 6.3333333333vw;
    height: 4.2051282051vw;
    display: block;
  }
}
@media (max-width: 767px) {
  .header__menu-cta-text {
    font-weight: 500;
    font-size: 4.1025641026vw;
    line-height: 1.2;
    color: #ffffff;
  }
}
.header-sub {
  background: #ffffff;
  padding: 1.6666666667vw 2.7777777778vw;
}
@media (max-width: 767px) {
  .header-sub {
    padding: 6.1538461538vw 5.1282051282vw;
  }
}
.header-sub__container {
  display: flex;
  align-items: center;
  gap: 0.6944444444vw;
}
@media (max-width: 767px) {
  .header-sub__container {
    gap: 2.5641025641vw;
  }
}
.header-sub__logo {
  width: 9.7222222222vw;
  height: 2.4305555556vw;
  object-fit: contain;
}
@media (max-width: 767px) {
  .header-sub__logo {
    width: 35.8974358974vw;
    height: 8.9743589744vw;
  }
}

.top-mv {
  position: relative;
  width: 100%;
  height: 51.9444444444vw;
  margin-bottom: 5.5555555556vw;
  overflow: hidden;
}
@media (max-width: 767px) {
  .top-mv {
    height: 159.7435897436vw;
    margin-bottom: 10.2564102564vw;
  }
}
.top-mv__inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.top-mv__content {
  position: absolute;
  left: 5.5555555556vw;
  top: 13.3333333333vw;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.6666666667vw;
  width: 42.9861111111vw;
}
@media (max-width: 767px) {
  .top-mv__content {
    left: 0;
    top: 93.0769230769vw;
    gap: 4.1025641026vw;
    width: 100%;
  }
}
.top-mv__catchcopy {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #ffffff;
  border-radius: 0.8333333333vw;
  padding: 0.2777777778vw 0 0.2777777778vw 1.1111111111vw;
}
@media (max-width: 767px) {
  .top-mv__catchcopy {
    width: 89.7435897436vw;
    border-radius: 0 3.0769230769vw 3.0769230769vw 0;
    padding: 2.0512820513vw 0 3.0769230769vw 6.1538461538vw;
  }
}
.top-mv__catchcopy-text {
  font-size: 4.8611111111vw;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: 0.7291666667vw;
  padding: 0.5555555556vw;
  white-space: nowrap;
  position: relative;
  background: linear-gradient(90deg, rgba(0, 118, 255, 0.9) 0%, #0076FF 40%, #00A2C5 50%, #00B1B2 60%, #0064C9 70%, #0041D3 80%, #0039D6 90%, #0037D7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  backdrop-filter: blur(1px);
}
@media (max-width: 767px) {
  .top-mv__catchcopy-text {
    font-size: 9.2307692308vw;
    line-height: 125%;
    padding: 0;
  }
  .top-mv__catchcopy-text:first-child {
    letter-spacing: 0.9230769231vw;
  }
  .top-mv__catchcopy-text:last-child {
    letter-spacing: 1.3846153846vw;
  }
}
.top-mv__description {
  padding-left: 2.2222222222vw;
}
@media (max-width: 767px) {
  .top-mv__description {
    padding-left: 8.2051282051vw;
  }
}
.top-mv__description p {
  font-size: 1.1111111111vw;
  font-weight: 400;
  line-height: 1.85;
  color: #1A1A1A;
  margin: 0;
}
@media (max-width: 767px) {
  .top-mv__description p {
    font-size: 3.5897435897vw;
    line-height: 1.85;
  }
}
.top-mv__image-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  width: 67.3611111111vw;
  height: 51.9444444444vw;
  z-index: 1;
}
@media (max-width: 767px) {
  .top-mv__image-wrapper {
    left: 12.8205128205vw;
    right: auto;
    top: 0;
    width: 173.0769230769vw;
    height: 127.4358974359vw;
  }
}
.top-mv__image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2.7777777778vw 0 0 2.7777777778vw;
}
@media (max-width: 767px) {
  .top-mv__image-container {
    border-radius: 10.2564102564vw 0 0 10.2564102564vw;
  }
}
.top-mv__bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 67.3611111111vw;
  height: 51.9444444444vw;
}
.top-mv__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}
@media (max-width: 767px) {
  .top-mv__bg-image {
    width: 173.0769230769vw;
    height: 127.4358974359vw;
  }
  .top-mv__bg-image img {
    width: 87.1794871795vw;
    height: 115.3846153846vw;
  }
}
.top-mv__pen-decoration {
  position: absolute;
  right: 16.9444444444vw;
  bottom: 1.9166666667vw;
  z-index: 5;
  pointer-events: none;
}
@media (max-width: 767px) {
  .top-mv__pen-decoration {
    left: 4.358974359vw;
    right: auto;
    top: 61.7948717949vw;
    bottom: auto;
  }
}
.top-mv__pen-decoration picture {
  display: block;
}
.top-mv__pen-line {
  width: 78.125vw;
  height: 22.3611111111vw;
  object-fit: contain;
  display: block;
}
@media (max-width: 767px) {
  .top-mv__pen-line {
    width: 80.7692307692vw;
    height: 22.0512820513vw;
  }
}

.top-about {
  padding-left: 8.3333333333vw;
  padding-bottom: 5.5555555556vw;
}
@media (max-width: 767px) {
  .top-about {
    padding-left: 10.2564102564vw;
    padding-right: 0;
    padding-bottom: 0;
  }
}
.top-about__container {
  position: relative;
  width: 100%;
  height: 43.3333333333vw;
  background-color: #ffffff;
  border-radius: 2.7777777778vw 0 0 2.7777777778vw;
  box-shadow: 0px 0px 2.7777777778vw 0px rgba(151, 159, 186, 0.1);
  overflow: hidden;
}
@media (max-width: 767px) {
  .top-about__container {
    width: 89.7435897436vw;
    height: auto;
    padding: 10.2564102564vw;
    display: flex;
    flex-direction: column;
    gap: 6.1538461538vw;
    overflow: visible;
  }
}
.top-about__images {
  position: relative;
}
@media (max-width: 767px) {
  .top-about__images {
    position: static;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-right: 5.1282051282vw;
    order: 2;
  }
}
.top-about__image-main {
  position: absolute;
  left: 4.7916666667vw;
  top: 4.9305555556vw;
  width: 25.6944444444vw;
  height: 23.0555555556vw;
  border-radius: 2.7777777778vw;
  box-shadow: 0.6944444444vw 1.3888888889vw 0.3472222222vw 0px rgba(151, 159, 186, 0.25);
  overflow: hidden;
}
@media (max-width: 767px) {
  .top-about__image-main {
    position: relative;
    width: 55.3846153846vw;
    height: 64.1025641026vw;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    margin-right: -5.1282051282vw;
    flex-shrink: 0;
  }
}
.top-about__image-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(calc(-50% + 0.7638888889vw), -50%);
  width: 36.8055555556vw;
  height: 24.5833333333vw;
  pointer-events: none;
}
@media (max-width: 767px) {
  .top-about__image-overlay {
    left: 0;
    top: 0;
    transform: none;
    width: 55.3846153846vw;
    height: 53.0769230769vw;
    border-radius: 10.2564102564vw;
    box-shadow: 1.2820512821vw 2.5641025641vw 1.2820512821vw 0px rgba(151, 159, 186, 0.25);
    overflow: hidden;
  }
}
.top-about__image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
@media (max-width: 767px) {
  .top-about__image-overlay img {
    position: absolute;
    left: -16.1538461538vw;
    top: -4.6153846154vw;
    width: 87.4358974359vw;
    height: 57.6923076923vw;
  }
}
.top-about__image-sub {
  position: absolute;
  left: 27.9166666667vw;
  top: 22.9166666667vw;
  width: 12.5694444444vw;
  height: 15.1388888889vw;
  border-radius: 1.6666666667vw;
  box-shadow: 0.6944444444vw 1.3888888889vw 0.3472222222vw 0px rgba(151, 159, 186, 0.25);
  overflow: hidden;
}
@media (max-width: 767px) {
  .top-about__image-sub {
    position: static;
    width: 25.1282051282vw;
    height: 30.2564102564vw;
    border-radius: 3.3028205128vw;
    box-shadow: 1.2820512821vw 2.5641025641vw 1.2820512821vw 0px rgba(151, 159, 186, 0.25);
    margin-right: -5.1282051282vw;
    flex-shrink: 0;
  }
}
.top-about__image-sub img {
  position: absolute;
  left: -6.9444444444vw;
  top: -0.8333333333vw;
  width: 26.1111111111vw;
  height: 17.4305555556vw;
  object-fit: cover;
  object-position: 50% 50%;
}
@media (max-width: 767px) {
  .top-about__image-sub img {
    left: 44.1025641026vw;
    top: 35.8974358974vw;
    width: 25.1282051282vw;
    height: 28.2051282051vw;
    border-radius: 3.3076923077vw;
  }
}
.top-about__content {
  position: absolute;
  left: 44.7916666667vw;
  top: 4.9305555556vw;
  display: flex;
  flex-direction: column;
  gap: 0.5555555556vw;
}
@media (max-width: 767px) {
  .top-about__content {
    position: static;
    gap: 0;
    display: contents;
  }
}
.top-about__header {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .top-about__header {
    order: 1;
  }
}
.top-about__title-group {
  display: flex;
  align-items: flex-end;
  gap: 1.9444444444vw;
}
@media (max-width: 767px) {
  .top-about__title-group {
    gap: 2.0512820513vw;
  }
}
.top-about__title {
  font-family: "Futura", sans-serif;
  font-size: 5.5555555556vw;
  font-weight: 500;
  letter-spacing: -0.2777777778vw;
  line-height: normal;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .top-about__title {
    font-size: 14.358974359vw;
    letter-spacing: -0.7179487179vw;
  }
}
.top-about__title-blue {
  color: #0071BC;
}
.top-about__subtitle {
  font-size: 1.1111111111vw;
  font-weight: 400;
  color: #1A1A1A;
  margin: 0;
  padding-bottom: 1.6666666667vw;
}
@media (max-width: 767px) {
  .top-about__subtitle {
    font-size: 3.5897435897vw;
    padding-bottom: 3.0769230769vw;
  }
}
.top-about__heading {
  font-size: 2.2222222222vw;
  font-weight: 400;
  line-height: 1.5;
  color: #142376;
  margin: 0;
}
@media (max-width: 767px) {
  .top-about__heading {
    font-size: 6.1538461538vw;
    line-height: 1.5;
  }
}
.top-about__text {
  margin-top: 0;
}
@media (max-width: 767px) {
  .top-about__text {
    order: 3;
  }
}
.top-about__text p {
  font-size: 0.9722222222vw;
  font-weight: 400;
  line-height: 2;
  color: #1A1A1A;
  margin: 0;
}
@media (max-width: 767px) {
  .top-about__text p {
    font-size: 3.0769230769vw;
    line-height: 1.75;
  }
}

.top-gallery {
  display: flex;
  align-items: flex-start;
  gap: 1.3888888889vw;
  padding-bottom: 5.5555555556vw;
  padding-left: 8.3333333333vw;
}
@media (max-width: 767px) {
  .top-gallery {
    padding-top: 10.2564102564vw;
    padding-left: 10.2564102564vw;
    padding-bottom: 10.2564102564vw;
  }
}
.top-gallery__left {
  display: flex;
  align-items: flex-start;
}
.top-gallery__title-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.1111111111vw;
  font-weight: 400;
  letter-spacing: -0.0555555556vw;
  color: #1A1A1A;
  line-height: normal;
  writing-mode: vertical-rl;
}
@media (max-width: 767px) {
  .top-gallery__title-vertical {
    font-size: 3.5897435897vw;
    letter-spacing: -0.1794871795vw;
  }
}
.top-gallery__title-rotate {
  width: 7.3611111111vw;
  height: 17.5694444444vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .top-gallery__title-rotate {
    width: 18.9743589744vw;
    height: 45.3846153846vw;
  }
}
.top-gallery__title {
  font-family: "Futura", sans-serif;
  font-size: 5.5555555556vw;
  font-weight: 500;
  letter-spacing: -0.2777777778vw;
  line-height: normal;
  color: #1A1A1A;
  margin: 0;
  white-space: nowrap;
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  .top-gallery__title {
    font-size: 14.358974359vw;
    letter-spacing: -0.7179487179vw;
  }
}
.top-gallery__title-blue {
  color: #0071BC;
}
.top-gallery__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.3888888889vw;
  overflow: hidden;
  padding-left: 1.3888888889vw;
}
@media (max-width: 767px) {
  .top-gallery__right {
    gap: 5.1282051282vw;
    padding-left: 4.1025641026vw;
  }
}
.top-gallery__navigation {
  display: flex;
  align-items: center;
  gap: 1.6666666667vw;
  padding-right: 8.3333333333vw;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .top-gallery__navigation {
    gap: 4.1025641026vw;
    padding-right: 4.1025641026vw;
  }
}
.top-gallery__nav-btn {
  width: 2.7777777778vw;
  height: 2.7777777778vw;
  border-radius: 2.7777777778vw;
  background-color: #142376;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
@media (max-width: 767px) {
  .top-gallery__nav-btn {
    width: 8.2051282051vw;
    height: 8.2051282051vw;
    border-radius: 8.2051282051vw;
  }
}
.top-gallery__nav-btn svg {
  width: 1.0416666667vw;
  height: 0.6944444444vw;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .top-gallery__nav-btn svg {
    width: 3.8461538462vw;
    height: 2.5641025641vw;
  }
}
.top-gallery__nav-btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.top-gallery__nav-btn.swiper-button-disabled:hover svg {
  transform: translateX(0);
}
.top-gallery__nav-next:hover svg {
  transform: translateX(0.2777777778vw);
}
.top-gallery__nav-prev:hover svg {
  transform: translateX(-0.2777777778vw);
}
.top-gallery__slider {
  width: 100%;
  overflow: visible;
}
.top-gallery__slider .swiper {
  width: 100%;
  overflow: visible;
}
.top-gallery__slider .swiper-wrapper {
  display: flex;
  align-items: flex-start;
}
.top-gallery__slider .swiper-slide {
  width: 19.4444444444vw;
  height: auto;
}
@media (max-width: 767px) {
  .top-gallery__slider .swiper-slide {
    width: 34.8717948718vw;
  }
}
.top-gallery__item {
  width: 19.4444444444vw;
  height: 24.3055555556vw;
  border-radius: 1.6666666667vw;
  overflow: hidden;
  box-shadow: 0.6944444444vw 1.3888888889vw 0.3472222222vw 0px rgba(151, 159, 186, 0.25);
  position: relative;
}
@media (max-width: 767px) {
  .top-gallery__item {
    width: 34.8717948718vw;
    height: 43.5897435897vw;
    border-radius: 3.0769230769vw;
    box-shadow: 1.2820512821vw 2.5641025641vw 1.2820512821vw 0px rgba(151, 159, 186, 0.25);
  }
}
.top-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.top-service {
  position: relative;
  padding-bottom: 5.5555555556vw;
}
@media (max-width: 767px) {
  .top-service {
    padding-bottom: 0;
  }
}
.top-service__container {
  position: relative;
  width: 100%;
}
.top-service__content {
  background-color: #ffffff;
  border-radius: 8.3333333333vw;
  padding: 5.5555555556vw 8.3333333333vw 5.9027777778vw;
  margin: 0 auto;
  max-width: 100%;
}
@media (max-width: 767px) {
  .top-service__content {
    border-radius: 18.4615384615vw;
    padding: 10.2564102564vw;
  }
}
.top-service__intro {
  display: flex;
  flex-direction: column;
  gap: 2.7777777778vw;
  margin: 0 auto;
  margin-bottom: 5.9027777778vw;
}
@media (max-width: 767px) {
  .top-service__intro {
    gap: 6.1538461538vw;
    margin-bottom: 12.3076923077vw;
  }
}
.top-service__header {
  display: flex;
  flex-direction: column;
  width: 62.5vw;
  margin: 0 auto;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .top-service__header {
    width: 100%;
  }
}
.top-service__title-group {
  display: flex;
  align-items: flex-end;
  gap: 1.9444444444vw;
}
@media (max-width: 767px) {
  .top-service__title-group {
    gap: 7.1794871795vw;
  }
}
.top-service__title {
  font-family: "Futura", sans-serif;
  font-size: 5.5555555556vw;
  font-weight: 500;
  letter-spacing: -0.2777777778vw;
  line-height: normal;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .top-service__title {
    font-size: 14.358974359vw;
    letter-spacing: -0.7179487179vw;
  }
}
.top-service__title-blue {
  color: #0071BC;
}
.top-service__subtitle {
  font-size: 1.1111111111vw;
  font-weight: 400;
  color: #1A1A1A;
  margin: 0;
  padding-bottom: 1.6666666667vw;
}
@media (max-width: 767px) {
  .top-service__subtitle {
    font-size: 3.5897435897vw;
    padding-bottom: 6.1538461538vw;
  }
}
.top-service__description {
  font-size: 1.1111111111vw;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.0555555556vw;
  color: #1A1A1A;
  margin: 0;
}
@media (max-width: 767px) {
  .top-service__description {
    font-size: 3.5897435897vw;
    letter-spacing: -0.1794871795vw;
  }
}
.top-service__card {
  display: flex;
  flex-direction: column;
  background-color: #F3F4F6;
  border-radius: 1.6666666667vw;
  box-shadow: 0.6944444444vw 1.3888888889vw 0.3472222222vw 0px rgba(151, 159, 186, 0.25);
  overflow: hidden;
  width: 62.5vw;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .top-service__card {
    width: 100%;
    box-shadow: 1.2820512821vw 2.5641025641vw 1.2820512821vw 0px rgba(151, 159, 186, 0.25);
    border-radius: 6.1538461538vw;
  }
}
.top-service__card-image {
  width: 100%;
  height: 24.4444444444vw;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .top-service__card-image {
    height: 51.2820512821vw;
  }
}
.top-service__card-image img {
  width: 100%;
  height: 35vw;
  object-fit: cover;
  object-position: 50% 50%;
  position: absolute;
  top: -3.9583333333vw;
  left: 0;
}
@media (max-width: 767px) {
  .top-service__card-image img {
    width: 104.6153846154vw;
    height: 58.7179487179vw;
    top: 0;
    left: -14.6153846154vw;
  }
}
.top-service__card-content {
  display: flex;
  flex-direction: column;
  position: relative;
}
.top-service__card-body {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
  width: 47.9166666667vw;
  margin: 0 auto;
  padding: 2.2222222222vw 0 0.6944444444vw;
}
@media (max-width: 767px) {
  .top-service__card-body {
    width: 100%;
    gap: 4.6153846154vw;
    padding: 8.2051282051vw 5.1282051282vw 0;
  }
}
.top-service__card-title {
  font-size: 1.3888888889vw;
  font-weight: 400;
  letter-spacing: 0.1944444444vw;
  text-align: center;
  color: #142376;
  margin: 0;
}
@media (max-width: 767px) {
  .top-service__card-title {
    font-size: 4.6153846154vw;
    letter-spacing: 0.6461538462vw;
  }
}
.top-service__card-text {
  font-size: 1.1111111111vw;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: #1A1A1A;
  margin: 0;
}
@media (max-width: 767px) {
  .top-service__card-text {
    font-size: 3.5897435897vw;
    line-height: 1.5;
  }
}
.top-service__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1111111111vw;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .top-service__tags {
    gap: 2.0512820513vw 1.0256410256vw;
  }
}
.top-service__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1388888889vw 1.6666666667vw;
  background-color: #EAECEF;
  border: 1px solid #142376;
  border-radius: 1.1111111111vw;
  font-size: 0.9722222222vw;
  font-weight: 400;
  line-height: 1.5;
  color: #142376;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .top-service__tag {
    font-size: 3.5897435897vw;
    padding: 0.5128205128vw 6.1538461538vw;
    border-radius: 4.1025641026vw;
  }
}
.top-service__card-arrow {
  height: 2.9861111111vw;
  position: relative;
  overflow: hidden;
  width: 3.8194444444vw;
  display: flex;
  margin: 0 0 0 auto;
}
@media (max-width: 767px) {
  .top-service__card-arrow {
    width: 10.2564102564vw;
    height: 11.0256410256vw;
  }
}
.top-service__arrow-circle {
  position: absolute;
  right: -1.0416666667vw;
  top: 0;
  width: 4.8611111111vw;
  height: 4.8611111111vw;
  border-radius: 2.7777777778vw;
  background-color: #142376;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 767px) {
  .top-service__arrow-circle {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
    right: -3.0769230769vw;
    top: 0.7692307692vw;
    border-radius: 10.2564102564vw;
  }
}
.top-service__arrow-circle img {
  position: absolute;
  top: 1.3888888889vw;
  left: 1.3888888889vw;
  width: 1.0416666667vw;
  height: 0.6944444444vw;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .top-service__arrow-circle img {
    top: 4.1025641026vw;
    left: 3.0769230769vw;
    width: 3.8461538462vw;
    height: 2.5641025641vw;
  }
}
.top-service__arrow-circle:hover img {
  transform: translateX(0.2777777778vw);
}
.top-service__channels {
  background-color: #F3F4F6;
  border-radius: 1.6666666667vw;
  padding: 3.3333333333vw;
  display: flex;
  flex-direction: column;
  gap: 1.1111111111vw;
  max-width: 62.5vw;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .top-service__channels {
    max-width: 100%;
    gap: 4.1025641026vw;
    border-radius: 6.1538461538vw;
    padding: 12.3076923077vw 4.1025641026vw;
  }
}
.top-service__channels-title {
  font-size: 1.3888888889vw;
  font-weight: 400;
  letter-spacing: 0.1944444444vw;
  text-align: center;
  color: #142376;
  margin: 0;
}
@media (max-width: 767px) {
  .top-service__channels-title {
    font-size: 4.6153846154vw;
    letter-spacing: 0.6461538462vw;
  }
}
.top-service__channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1111111111vw;
}
@media (max-width: 767px) {
  .top-service__channels-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5384615385vw;
    width: 71.2820512821vw;
    margin: 0 auto;
  }
}
.top-service__channel {
  background-color: #ffffff;
  border-radius: 1.3888888889vw;
  box-shadow: 0px 0px 1.1111111111vw 0px rgba(151, 159, 186, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.9722222222vw 2.0138888889vw;
}
@media (max-width: 767px) {
  .top-service__channel {
    width: 22.5641025641vw;
    padding: 0 2.0512820513vw 2.0512820513vw;
    border-radius: 5.1282051282vw;
  }
}
.top-service__channel-icon {
  width: 6.25vw;
  height: 5.8333333333vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .top-service__channel-icon {
    width: 18.4615384615vw;
    height: 17.3228205128vw;
  }
}
.top-service__channel-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.top-service__channel-name {
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: #142376;
  margin: 0;
}
@media (max-width: 767px) {
  .top-service__channel-name {
    font-size: 3.0769230769vw;
    line-height: 1.5;
  }
}
.top-service__bottom {
  position: relative;
  z-index: -1;
  top: -6.3888888889vw;
}
@media (max-width: 767px) {
  .top-service__bottom {
    top: -7.6923076923vw;
  }
}
.top-service__bottom img {
  width: 100vw;
  height: 38.6111111111vw;
  object-fit: cover;
  object-position: 50% 50%;
}
@media (max-width: 767px) {
  .top-service__bottom img {
    width: 100.5128205128vw;
    height: 48.2051282051vw;
  }
}
.top-service__bottom-text {
  position: absolute;
  left: 50%;
  top: 25.9027777778vw;
  transform: translate(-50%, -50%);
  font-size: 2.5vw;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.125vw;
  text-align: center;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .top-service__bottom-text {
    top: calc(50% + 11.7948717949vw);
    font-size: 3.5897435897vw;
    font-weight: 500;
    letter-spacing: 0.1794871795vw;
  }
}

.top-strength {
  padding: 0 8.3333333333vw;
  padding-bottom: 5.5555555556vw;
}
@media (max-width: 767px) {
  .top-strength {
    padding: 0 10.2564102564vw;
    padding-bottom: 10.2564102564vw;
  }
}
.top-strength__container {
  display: flex;
  align-items: center;
  gap: 2.2222222222vw;
}
@media (max-width: 767px) {
  .top-strength__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8.2051282051vw;
  }
}
.top-strength__label {
  background-color: #ffffff;
  border-radius: 1.1111111111vw;
  padding: 0 2.7777777778vw;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 14.4444444444vw;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .top-strength__label {
    padding: 0 10.2564102564vw;
    border-radius: 4.1025641026vw;
    height: auto;
  }
}
.top-strength__label-text {
  font-size: 1.6666666667vw;
  font-weight: 400;
  line-height: 1.66;
  color: #142376;
  text-align: center;
  white-space: nowrap;
  margin: 0;
}
@media (max-width: 767px) {
  .top-strength__label-text {
    font-size: 4.1025641026vw;
    line-height: 1.66;
  }
}
.top-strength__content {
  display: flex;
  flex: 1;
  gap: 1.3888888889vw;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .top-strength__content {
    flex-direction: column;
    gap: 5.1282051282vw;
    width: 100%;
  }
}
.top-strength__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8333333333vw;
}
@media (max-width: 767px) {
  .top-strength__item {
    gap: 3.0769230769vw;
    width: 100%;
  }
}
.top-strength__item-header {
  display: flex;
  align-items: center;
  gap: 1.5277777778vw;
}
@media (max-width: 767px) {
  .top-strength__item-header {
    gap: 5.641025641vw;
  }
}
.top-strength__icon {
  width: 5.8333333333vw;
  height: 5.625vw;
  background-color: #ffffff;
  border-radius: 4.1666666667vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .top-strength__icon {
    width: 21.5384615385vw;
    height: 20.7692307692vw;
    border-radius: 15.3846153846vw;
  }
}
.top-strength__icon img {
  max-width: 5.8333333333vw;
  max-height: 4.2361111111vw;
  object-fit: contain;
}
@media (max-width: 767px) {
  .top-strength__icon img {
    max-width: 21.5384615385vw;
    max-height: 15.641025641vw;
  }
}
.top-strength__item-title {
  flex: 1;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.5;
  color: #142376;
  margin: 0;
}
@media (max-width: 767px) {
  .top-strength__item-title {
    font-size: 4.6153846154vw;
    line-height: 1.5;
  }
}
.top-strength__item-text {
  width: 100%;
}
.top-strength__item-text p {
  font-size: 0.9722222222vw;
  font-weight: 400;
  line-height: 1.66;
  color: #1A1A1A;
  margin: 0;
}
@media (max-width: 767px) {
  .top-strength__item-text p {
    font-size: 3.5897435897vw;
    line-height: 1.66;
  }
}
.top-strength__item-text p:not(:last-child) {
  margin-bottom: 0.5555555556vw;
}
@media (max-width: 767px) {
  .top-strength__item-text p:not(:last-child) {
    margin-bottom: 0;
  }
}
.top-strength__item-text p strong {
  font-weight: 700;
}
.top-strength__divider {
  height: 11.2847222222vw;
  border-left: 1px dotted #142376;
}
@media (max-width: 767px) {
  .top-strength__divider {
    display: none;
  }
}

.top-news {
  display: flex;
  flex-direction: column;
  padding-bottom: 5.5555555556vw;
  max-width: 83.3333333333vw;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .top-news {
    max-width: 100%;
    padding: 0 10.2564102564vw 10.2564102564vw;
  }
}
.top-news__header {
  display: flex;
  align-items: flex-end;
  gap: 1.9444444444vw;
  margin-bottom: 2.7777777778vw;
}
@media (max-width: 767px) {
  .top-news__header {
    gap: 7.1794871795vw;
    margin-bottom: 6.1538461538vw;
  }
}
.top-news__title {
  font-family: "Futura", sans-serif;
  font-size: 5.5555555556vw;
  font-weight: 500;
  letter-spacing: -0.2777777778vw;
  line-height: normal;
  color: #1A1A1A;
  margin: 0;
}
@media (max-width: 767px) {
  .top-news__title {
    font-size: 14.358974359vw;
    letter-spacing: -0.7179487179vw;
  }
}
.top-news__title-blue {
  color: #0071BC;
}
.top-news__subtitle {
  font-size: 1.1111111111vw;
  font-weight: 400;
  line-height: normal;
  color: #1A1A1A;
  margin: 0;
  padding-bottom: 1.6666666667vw;
}
@media (max-width: 767px) {
  .top-news__subtitle {
    font-size: 3.5897435897vw;
    padding-bottom: 6.1538461538vw;
  }
}
.top-news__list {
  display: flex;
  flex-direction: column;
  gap: 1.1111111111vw;
  width: 100%;
}
@media (max-width: 767px) {
  .top-news__list {
    gap: 4.1025641026vw;
  }
}
.top-news__item {
  display: flex;
  align-items: center;
  gap: 2.2222222222vw;
  background-color: #ffffff;
  border-radius: 2.2222222222vw;
  padding: 0.8333333333vw 4.4444444444vw;
  width: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .top-news__item {
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
    gap: 3.0769230769vw;
    border-radius: 4.1025641026vw;
    padding: 4.1025641026vw;
  }
}
.top-news__item-header {
  display: flex;
  align-items: center;
  gap: 2.2222222222vw;
}
@media (max-width: 767px) {
  .top-news__item-header {
    gap: 4.1025641026vw;
  }
}
.top-news__date {
  font-size: 0.9722222222vw;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.0486111111vw;
  color: #1A1A1A;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .top-news__date {
    font-size: 3.5897435897vw;
    letter-spacing: 0.1794871795vw;
    color: #919191;
  }
}
.top-news__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1680555556vw 2.0166666667vw;
  background-color: #EAECEF;
  border: 0.0840277778vw solid #142376;
  border-radius: 1.3444444444vw;
  font-size: 1.1763888889vw;
  font-weight: 400;
  line-height: 1.5;
  color: #142376;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .top-news__tag {
    font-size: 3.0769230769vw;
    padding: 0.6205128205vw 7.4461538462vw;
    border: 0.3102564103vw solid #142376;
    border-radius: 4.9641025641vw;
  }
}
.top-news__text {
  font-size: 1.1111111111vw;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.0555555556vw;
  color: #1A1A1A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
@media (max-width: 767px) {
  .top-news__text {
    font-size: 3.5897435897vw;
    letter-spacing: 0.1794871795vw;
    line-height: 1.5;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    width: 100%;
  }
}

.top-company {
  padding-left: 8.3333333333vw;
  padding-bottom: 5.5555555556vw;
}
@media (max-width: 767px) {
  .top-company {
    padding-left: 10.2564102564vw;
    padding-right: 0;
    padding-bottom: 0;
  }
}
.top-company__container {
  background-color: #ffffff;
  border-radius: 2.7777777778vw 0 0 2.7777777778vw;
  box-shadow: 0px 0px 2.7777777778vw 0px rgba(151, 159, 186, 0.1);
  padding: 4.4444444444vw 8.3333333333vw 4.4444444444vw 4.3055555556vw;
  display: flex;
  flex-direction: column;
  gap: 3.3333333333vw;
}
@media (max-width: 767px) {
  .top-company__container {
    padding: 10.2564102564vw 6.1538461538vw;
    gap: 6.1538461538vw;
    border-radius: 10.2564102564vw 0 0 10.2564102564vw;
    box-shadow: 0 0 10.2564102564vw 0 rgba(151, 159, 186, 0.25);
    margin-bottom: 10.2564102564vw;
  }
}
.top-company__header {
  display: flex;
  align-items: flex-end;
  gap: 1.9444444444vw;
}
@media (max-width: 767px) {
  .top-company__header {
    gap: 2.0512820513vw;
  }
}
.top-company__title {
  font-family: "Futura", sans-serif;
  font-size: 5.5555555556vw;
  font-weight: 500;
  letter-spacing: -0.2777777778vw;
  line-height: normal;
  color: #1A1A1A;
  margin: 0;
}
@media (max-width: 767px) {
  .top-company__title {
    font-size: 14.358974359vw;
    letter-spacing: -0.7179487179vw;
  }
}
.top-company__title-blue {
  color: #0071BC;
}
.top-company__subtitle {
  font-size: 1.1111111111vw;
  font-weight: 400;
  line-height: normal;
  color: #1A1A1A;
  margin: 0;
  padding-bottom: 1.6666666667vw;
}
@media (max-width: 767px) {
  .top-company__subtitle {
    font-size: 3.5897435897vw;
    padding-bottom: 3.0769230769vw;
  }
}
.top-company__cards {
  display: flex;
  justify-content: space-between;
  gap: 1.6666666667vw;
  width: 100%;
}
@media (max-width: 767px) {
  .top-company__cards {
    flex-direction: column;
    gap: 3.0769230769vw;
    width: 68.7179487179vw;
  }
}
.top-company__card {
  position: relative;
  width: 24.4444444444vw;
  height: 19.5833333333vw;
  border-radius: 1.3888888889vw;
  overflow: hidden;
  flex-shrink: 0;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .top-company__card {
    width: 68.7179487179vw;
    height: 34.358974359vw;
    border-radius: 5.1282051282vw;
  }
}
.top-company__card:hover .top-company__card-bg {
  transform: scale(1.1);
}
.top-company__card:hover .top-company__card-arrow img {
  transform: translateX(0.2777777778vw);
}
.top-company__card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  object-fit: cover;
  object-position: center;
}
.top-company__card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-company__card-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.3888888889vw;
  font-weight: 400;
  line-height: normal;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  margin: 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .top-company__card-title {
    font-size: 5.1282051282vw;
    left: calc(50% - 10.2564102564vw);
    transform: translateY(-50%);
  }
}
.top-company__card-arrow {
  position: absolute;
  right: -1.0416666667vw;
  bottom: -1.25vw;
  width: 4.8611111111vw;
  height: 4.8611111111vw;
  border-radius: 2.7777777778vw;
  background-color: #142376;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
@media (max-width: 767px) {
  .top-company__card-arrow {
    right: -4.358974359vw;
    bottom: -5.8974358974vw;
    width: 15.3846153846vw;
    height: 15.3846153846vw;
    border-radius: 10.2564102564vw;
  }
}
.top-company__card-arrow img {
  position: absolute;
  top: 1.6666666667vw;
  left: 1.6666666667vw;
  width: 1.0416666667vw;
  height: 0.6944444444vw;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .top-company__card-arrow img {
    top: 4.1025641026vw;
    left: 4.1025641026vw;
    width: 3.8461538462vw;
    height: 2.5641025641vw;
  }
}

.footer {
  width: 100%;
}
.footer__cta {
  position: relative;
  width: 100%;
  height: 34.0277777778vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.footer__cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/img_contact-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.footer__cta-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.7);
}
.footer__cta-content {
  position: relative;
  z-index: 1;
  max-width: 35.9027777778vw;
  display: flex;
  flex-direction: column;
  gap: 1.1111111111vw;
  align-items: center;
  text-align: center;
}
.footer__cta-text {
  display: flex;
  flex-direction: column;
  gap: 0.8333333333vw;
}
.footer__cta-title {
  font-family: "Futura", sans-serif;
  font-size: 5.5555555556vw;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.2222222222vw;
  margin: 0;
}
.footer__cta-title--primary {
  color: #0071BC;
}
.footer__cta-title--white {
  color: #ffffff;
}
.footer__cta-subtitle {
  font-size: 1.3888888889vw;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: normal;
}
.footer__cta-description {
  font-size: 0.9722222222vw;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.75;
}
.footer__cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1.1111111111vw;
  align-items: center;
  width: 100%;
}
.footer__cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6666666667vw;
  padding: 1.3888888889vw 4.4444444444vw;
  background: linear-gradient(90deg, #02B1B2 0%, #0176FE 100%);
  border-radius: 694.4444444444vw;
  font-size: 1.25vw;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}
.footer__cta-button:hover .footer__cta-button-icon {
  transform: translateX(0.2777777778vw);
}
.footer__cta-button-icon {
  width: 1.6666666667vw;
  height: 1.6666666667vw;
  transition: transform 0.3s ease;
}
.footer__cta-hours {
  font-size: 0.9722222222vw;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .footer__cta {
    height: 128.2051282051vw;
  }
  .footer__cta-content {
    max-width: 100%;
    gap: 6.1538461538vw;
    padding: 0 5.1282051282vw;
  }
  .footer__cta-text {
    gap: 4.1025641026vw;
  }
  .footer__cta-title {
    font-size: 16.4102564103vw;
    letter-spacing: 0.6564102564vw;
  }
  .footer__cta-subtitle {
    font-size: 5.1282051282vw;
    font-weight: 500;
    line-height: 1.75;
  }
  .footer__cta-description {
    font-size: 3.5897435897vw;
  }
  .footer__cta-actions {
    gap: 4.1025641026vw;
    padding: 0 5.1282051282vw;
  }
  .footer__cta-button {
    width: 100%;
    gap: 6.1538461538vw;
    padding: 5.1282051282vw 16.4102564103vw;
    border-radius: 2564.1025641026vw;
    font-size: 4.6153846154vw;
  }
  .footer__cta-button-icon {
    width: 6.1538461538vw;
    height: 6.1538461538vw;
  }
  .footer__cta-hours {
    font-size: 3.5897435897vw;
  }
}
.footer__content {
  display: flex;
  width: 100%;
}
.footer__content-left {
  display: flex;
  gap: 5.9722222222vw;
  align-items: flex-start;
  background-color: #333333;
  padding: 4.1666666667vw 5.5555555556vw;
  flex: 1;
  max-width: 65.4166666667vw;
}
.footer__content-info {
  display: flex;
  flex-direction: column;
  gap: 1.1111111111vw;
}
.footer__content-logo {
  width: 17.9166666667vw;
  height: 2.7777777778vw;
}
.footer__content-description {
  font-size: 1.1111111111vw;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.75;
}
.footer__content-description p {
  margin: 0;
}
.footer__content-copyright {
  font-size: 0.8333333333vw;
  font-weight: 700;
  color: rgba(151, 159, 186, 0.4);
  letter-spacing: 0.0833333333vw;
  margin: 0;
  line-height: 1.75;
}
.footer__content-divider {
  width: 0.1388888889vw;
  height: 11.9444444444vw;
  background: #565656;
  align-self: center;
}
.footer__content-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2777777778vw;
  width: 13.4722222222vw;
}
.footer__content-nav-title {
  font-size: 1.1111111111vw;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  margin: 0 0 0.2777777778vw 0;
}
.footer__content-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2777777778vw;
}
.footer__content-nav-item {
  margin: 0;
}
.footer__content-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9722222222vw;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.75;
  transition: opacity 0.3s;
  opacity: 0.7;
}
.footer__content-nav-link:hover {
  opacity: 1;
}
.footer__content-nav-link span {
  flex: 1;
}
.footer__content-nav-arrow {
  width: 1.1111111111vw;
  height: 1.1111111111vw;
  flex-shrink: 0;
}
.footer__content-right {
  display: flex;
  background-color: #1A1A1A;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 34.5833333333vw;
}
.footer__content-company {
  display: flex;
  flex-direction: column;
  gap: 1.1111111111vw;
  padding: 0 8.3333333333vw;
}
.footer__content-company-title {
  font-size: 1.1111111111vw;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  margin: 0 0 0.2777777778vw 0;
}
.footer__content-company-info {
  font-size: 0.9722222222vw;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 0.2777777778vw;
}
.footer__content-company-info span {
  font-size: 0.8333333333vw;
  font-weight: 700;
}
.footer__content-company-info p {
  padding-left: 0.4166666667vw;
}
.footer__content-company-info a {
  padding-left: 0.4166666667vw;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  transition: opacity 0.3s;
}
.footer__content-company-info a::before {
  content: "";
  position: absolute;
  right: -1.1111111111vw;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1111111111vw;
  height: 1.1111111111vw;
  background-image: url("../img/icons_link.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.footer__content-company-info a:hover {
  opacity: 0.7;
}
.footer__content-company--sp {
  display: none;
}
.footer__content-copyright-sp {
  font-size: 3.0769230769vw;
  font-weight: 700;
  color: rgba(151, 159, 186, 0.4);
  letter-spacing: 0.3076923077vw;
  margin: 0;
  line-height: 1.75;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__content {
    flex-direction: column;
    gap: 6.1538461538vw;
  }
  .footer__content-left {
    flex-direction: column;
    gap: 6.1538461538vw;
    align-items: center;
    padding: 12.3076923077vw 5.1282051282vw;
    max-width: 100%;
  }
  .footer__content-info {
    gap: 4.1025641026vw;
    align-items: center;
    text-align: center;
  }
  .footer__content-logo {
    width: 66.1538461538vw;
    height: 10.2564102564vw;
  }
  .footer__content-description {
    font-size: 4.1025641026vw;
  }
  .footer__content-copyright {
    display: none;
  }
  .footer__content-divider {
    width: 100%;
    height: 0.5128205128vw;
  }
  .footer__content-nav {
    width: 100%;
    gap: 2.5641025641vw;
  }
  .footer__content-nav-title {
    font-size: 4.1025641026vw;
    margin: 0;
  }
  .footer__content-nav-list {
    gap: 2.5641025641vw;
  }
  .footer__content-nav-link {
    font-size: 3.5897435897vw;
  }
  .footer__content-nav-arrow {
    width: 4.1025641026vw;
    height: 4.1025641026vw;
  }
  .footer__content-right {
    display: none;
  }
  .footer__content-company {
    display: flex;
    flex-direction: column;
    gap: 3.0769230769vw;
    padding: 4.1025641026vw 6.1538461538vw;
    background-color: #1A1A1A;
    border-radius: 2.0512820513vw;
  }
  .footer__content-company-title {
    font-size: 4.1025641026vw;
    margin: 0;
  }
  .footer__content-company-info {
    font-size: 3.5897435897vw;
    display: flex;
    flex-direction: column;
    gap: 1.0256410256vw;
  }
  .footer__content-company span {
    font-size: 3.0769230769vw;
    font-weight: 700;
  }
  .footer__content-company p {
    padding-left: 1.0256410256vw;
  }
  .footer__content-company a {
    padding-left: 1.0256410256vw;
    width: fit-content;
  }
  .footer__content-company a::before {
    width: 4.1025641026vw;
    height: 4.1025641026vw;
    right: -5.1282051282vw;
  }
  .footer__content-company--sp {
    display: flex;
    width: 100%;
  }
}

.breadcrumbs {
  padding: 1.3888888889vw 8.3333333333vw;
}
@media (max-width: 767px) {
  .breadcrumbs {
    padding: 5.1282051282vw 4.1025641026vw;
  }
}
.breadcrumbs__container {
  display: flex;
  align-items: center;
  gap: 0.2777777778vw;
}
@media (max-width: 767px) {
  .breadcrumbs__container {
    gap: 1.0256410256vw;
  }
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 0.2777777778vw;
}
@media (max-width: 767px) {
  .breadcrumbs__item {
    gap: 1.0256410256vw;
  }
}
.breadcrumbs__text {
  font-size: 0.8333333333vw;
  font-weight: 400;
  line-height: 1.5;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .breadcrumbs__text {
    font-size: 2.5641025641vw;
  }
}
.breadcrumbs__link {
  font-size: 0.8333333333vw;
  font-weight: 400;
  line-height: 1.5;
  color: #1A1A1A;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .breadcrumbs__link {
    font-size: 2.5641025641vw;
  }
}
.breadcrumbs__link:hover {
  opacity: 0.6;
}
.breadcrumbs__separator {
  width: 1.1111111111vw;
  height: 1.1111111111vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .breadcrumbs__separator {
    width: 4.1025641026vw;
    height: 4.1025641026vw;
  }
}
.breadcrumbs__separator svg {
  width: 100%;
  height: 100%;
  fill: #1A1A1A;
}
.breadcrumbs__current {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.8333333333vw;
  font-weight: 500;
  line-height: 1.5;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .breadcrumbs__current {
    font-size: 2.5641025641vw;
  }
}

/* 拡大 */
.-zoomIn {
  animation-name: zoomInAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.-zoomInTrigger {
  opacity: 0;
}

@keyframes zoomInAnime {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* その場で */
.-fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.-fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上から */
/* 左から */
.-fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.-fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.-delay-time02 {
  animation-delay: 0.2s;
}

.-delay-time04 {
  animation-delay: 0.4s;
}

.-delay-time06 {
  animation-delay: 0.6s;
}

.-delay-time08 {
  animation-delay: 0.8s;
}

.-delay-time10 {
  animation-delay: 1s;
}

.-delay-time12 {
  animation-delay: 1.2s;
}

.-delay-time14 {
  animation-delay: 1.4s;
}

.-delay-time16 {
  animation-delay: 1.6s;
}

.contact {
  background: #ffffff;
  padding: 7.2222222222vw 8.3333333333vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.7777777778vw;
}
@media (max-width: 767px) {
  .contact {
    margin-top: 10.2564102564vw;
    padding: 10.2564102564vw 4.1025641026vw;
  }
}
.contact__container {
  width: 100%;
  max-width: 100vw;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .contact__container {
    max-width: 100%;
  }
}
.contact__wrapper {
  width: 100%;
  max-width: 77.7777777778vw;
  background: #ffffff;
  padding: 0 5.5555555556vw;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .contact__wrapper {
    max-width: 100%;
    padding: 0;
  }
}
.contact__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.4444444444vw;
  width: 100%;
  max-width: 22.2222222222vw;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .contact__steps {
    max-width: 100%;
    gap: 20.5128205128vw;
  }
}
.contact__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 4.4444444444vw;
  position: relative;
}
@media (max-width: 767px) {
  .contact__step {
    width: 12.3076923077vw;
  }
}
.contact__step--active .contact__step-number {
  background: #0076ff;
  border-color: #0076ff;
}
.contact__step--active .contact__step-number span {
  color: #ffffff;
}
.contact__step::before {
  content: "";
  position: absolute;
  top: 2.2222222222vw;
  right: -4.4444444444vw;
  width: 100%;
  height: 1px;
  background: #919191;
}
@media (max-width: 767px) {
  .contact__step::before {
    top: 6.1538461538vw;
    right: -20.5128205128vw;
    width: 20.5128205128vw;
  }
}
.contact__step:last-child::before {
  display: none;
}
.contact__step-number {
  width: 4.4444444444vw;
  height: 4.4444444444vw;
  border-radius: 3.0555555556vw;
  background: #ffffff;
  border: 1px solid #919191;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .contact__step-number {
    width: 12.3076923077vw;
    height: 12.3076923077vw;
    border-radius: 11.2820512821vw;
  }
}
.contact__step-number span {
  font-weight: 500;
  font-size: 1.3888888889vw;
  line-height: 1.75;
  color: #919191;
}
@media (max-width: 767px) {
  .contact__step-number span {
    font-size: 3.8461538462vw;
  }
}
.contact__step-label {
  font-weight: 400;
  font-size: 0.9722222222vw;
  line-height: 1.75;
  color: #575757;
}
@media (max-width: 767px) {
  .contact__step-label {
    font-size: 2.8205128205vw;
  }
}
.contact__description {
  display: flex;
  flex-direction: column;
  gap: 1.1111111111vw;
  width: 100%;
  max-width: 52.7777777778vw;
  margin: 1.6666666667vw auto 3.8888888889vw;
}
@media (max-width: 767px) {
  .contact__description {
    gap: 4.1025641026vw;
    max-width: 100%;
    margin: 3.3333333333vw auto 12.3076923077vw;
  }
}
.contact__description-main {
  font-weight: 400;
  font-size: 1.25vw;
  line-height: 1.75;
  color: #1A1A1A;
  letter-spacing: -0.4395px;
}
@media (max-width: 767px) {
  .contact__description-main {
    font-size: 4.1025641026vw;
  }
}
.contact__description-sub {
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 1.75;
  color: #575757;
  letter-spacing: -0.3125px;
}
@media (max-width: 767px) {
  .contact__description-sub {
    font-size: 3.5897435897vw;
  }
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 2.2222222222vw;
  width: 100%;
  max-width: 52.7777777778vw;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .contact__form {
    gap: 8.2051282051vw;
    max-width: 100%;
  }
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.5555555556vw;
}
@media (max-width: 767px) {
  .contact__field {
    gap: 2.0512820513vw;
  }
}
.contact__label-wrapper {
  display: flex;
  align-items: center;
  gap: 0.6944444444vw;
}
@media (max-width: 767px) {
  .contact__label-wrapper {
    gap: 2.0512820513vw;
  }
}
.contact__label {
  font-weight: 600;
  font-size: 1.1111111111vw;
  line-height: 1.6;
  color: #333333;
}
@media (max-width: 767px) {
  .contact__label {
    font-size: 4.1025641026vw;
  }
}
.contact__badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.1388888889vw 0.6944444444vw;
  border-radius: 0.2777777778vw;
  font-weight: 700;
  font-size: 0.8333333333vw;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .contact__badge {
    padding: 0.5128205128vw 2.5641025641vw;
    border-radius: 1.0256410256vw;
    font-size: 3.0769230769vw;
  }
}
.contact__badge--required {
  background: rgba(0, 113, 188, 0.2);
  color: #0071BC;
}
.contact__badge--optional {
  background: #F5F5F5;
  color: #333333;
}
.contact__hint {
  font-weight: 400;
  font-size: 0.8333333333vw;
  line-height: 1.5;
  color: #757575;
}
@media (max-width: 767px) {
  .contact__hint {
    font-size: 3.0769230769vw;
  }
}
.contact__link {
  color: #142376;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-position: from-font;
  transition: all 0.3s ease;
}
.contact__link:hover {
  opacity: 0.8;
}
.contact__input {
  width: 100%;
  padding: 0.8333333333vw 1.1111111111vw;
  border: 1px solid #e1e1e1;
  border-radius: 0.5555555556vw;
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 1.7;
  color: #333333;
  background: #ffffff;
  min-width: 16.6666666667vw;
}
.contact__input::placeholder {
  color: #b3b3b3;
}
.contact__input:focus {
  outline: none;
  border-color: #0071BC;
}
@media (max-width: 767px) {
  .contact__input {
    padding: 3.0769230769vw 4.1025641026vw;
    border-radius: 2.0512820513vw;
    font-size: 4.1025641026vw;
    min-width: 61.5384615385vw;
  }
}
.contact__input--phone {
  max-width: 17.7777777778vw;
}
@media (max-width: 767px) {
  .contact__input--phone {
    max-width: 100%;
  }
}
.contact__textarea {
  width: 100%;
  min-height: 5.5555555556vw;
  padding: 0.8333333333vw 1.1111111111vw;
  border: 1px solid #e1e1e1;
  border-radius: 0.5555555556vw;
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 1.7;
  color: #333333;
  background: #ffffff;
  resize: vertical;
  min-width: 16.6666666667vw;
}
.contact__textarea::placeholder {
  color: #b3b3b3;
}
.contact__textarea:focus {
  outline: none;
  border-color: #0071BC;
}
@media (max-width: 767px) {
  .contact__textarea {
    min-height: 20.5128205128vw;
    padding: 3.0769230769vw 4.1025641026vw;
    border-radius: 2.0512820513vw;
    font-size: 3.5897435897vw;
    min-width: 61.5384615385vw;
  }
}
.contact__radio {
  display: flex;
  flex-direction: column;
  gap: 0.8333333333vw;
}
.contact__radio .wpcf7-list-item label {
  cursor: pointer;
  display: flex;
  gap: 0.8333333333vw;
}
@media (max-width: 767px) {
  .contact__radio .wpcf7-list-item label {
    gap: 3.0769230769vw;
  }
}
@media (max-width: 767px) {
  .contact__radio {
    gap: 3.0769230769vw;
  }
}
.contact__radio input[type=radio] {
  position: relative;
}
.contact__radio input[type=radio]:checked + .contact__radio-custom {
  background: #e6e6e6;
  border-color: #1A1A1A;
}
.contact__radio input[type=radio]:checked + .contact__radio-custom::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.contact__radio input[type=radio]:checked::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.contact__radio input[type=radio]::before {
  content: "";
  width: 1.1111111111vw;
  height: 1.1111111111vw;
  border: 1px solid #757575;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  flex-shrink: 0;
  transition: all 0.2s ease;
}
@media (max-width: 767px) {
  .contact__radio input[type=radio]::before {
    width: 4.1025641026vw;
    height: 4.1025641026vw;
  }
}
.contact__radio input[type=radio]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 0.5555555556vw;
  height: 0.5555555556vw;
  border-radius: 50%;
  background: #1A1A1A;
  opacity: 0;
  transition: all 0.2s ease;
}
@media (max-width: 767px) {
  .contact__radio input[type=radio]::after {
    width: 2.0512820513vw;
    height: 2.0512820513vw;
  }
}
.contact__radio-text {
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 1.7;
  color: #1A1A1A;
  flex: 1;
}
@media (max-width: 767px) {
  .contact__radio-text {
    font-size: 4.1025641026vw;
  }
}
.contact__checkbox label {
  display: flex;
  align-items: center;
  gap: 0.8333333333vw;
  cursor: pointer;
  width: fit-content;
}
@media (max-width: 767px) {
  .contact__checkbox label {
    gap: 3.0769230769vw;
  }
}
.contact__checkbox input[type=checkbox] {
  position: relative;
}
.contact__checkbox input[type=checkbox]:checked + .contact__checkbox-custom {
  background: #1A1A1A;
  border-color: #1A1A1A;
}
.contact__checkbox input[type=checkbox]:checked + .contact__checkbox-custom::after {
  opacity: 1;
}
.contact__checkbox input[type=checkbox]:checked::after {
  border-color: #1A1A1A;
  opacity: 1;
}
.contact__checkbox input[type=checkbox]:checked::before {
  background: #1A1A1A;
}
.contact__checkbox input[type=checkbox]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.1111111111vw;
  height: 1.1111111111vw;
  border: 1px solid #e1e1e1;
  border-radius: 0.2777777778vw;
  background: #ffffff;
  flex-shrink: 0;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .contact__checkbox input[type=checkbox]::before {
    width: 4.1025641026vw;
    height: 4.1025641026vw;
    border-radius: 1.0256410256vw;
  }
}
.contact__checkbox input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.1111111111vw;
  height: 1.1111111111vw;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.3334 4L6.00002 11.3333L2.66669 8' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
@media (max-width: 767px) {
  .contact__checkbox input[type=checkbox]::after {
    width: 4.1025641026vw;
    height: 4.1025641026vw;
  }
}
.contact__checkbox .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.8333333333vw;
}
@media (max-width: 767px) {
  .contact__checkbox .wpcf7-list-item {
    gap: 3.0769230769vw;
  }
}
.contact__checkbox-custom {
  width: 1.1111111111vw;
  height: 1.1111111111vw;
  border: 1px solid #e1e1e1;
  border-radius: 0.2777777778vw;
  background: #ffffff;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .contact__checkbox-custom {
    width: 4.1025641026vw;
    height: 4.1025641026vw;
    border-radius: 1.0256410256vw;
  }
}
.contact__checkbox-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.1111111111vw;
  height: 1.1111111111vw;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.3334 4L6.00002 11.3333L2.66669 8' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
@media (max-width: 767px) {
  .contact__checkbox-custom::after {
    width: 4.1025641026vw;
    height: 4.1025641026vw;
  }
}
.contact__checkbox-text {
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 1.7;
  color: #333333;
  flex: 1;
}
@media (max-width: 767px) {
  .contact__checkbox-text {
    font-size: 3.5897435897vw;
  }
}
.contact__submit-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6666666667vw;
  width: 100%;
  margin-top: 1.6666666667vw;
}
@media (max-width: 767px) {
  .contact__submit-wrapper {
    gap: 3.0769230769vw;
    margin-top: 4.1025641026vw;
  }
}
.contact__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1111111111vw 3.3333333333vw;
  background: linear-gradient(90deg, #00b1b2 0%, #0076ff 39.909%, #0076ff 100%);
  border: none;
  border-radius: 69.375vw;
  font-weight: 400;
  font-size: 1.25vw;
  line-height: 1.3;
  color: #ffffff;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: filter 0.3s ease;
}
.contact__submit:hover {
  filter: brightness(1.2) saturate(1.3);
}
@media (max-width: 767px) {
  .contact__submit {
    width: 100%;
    padding: 4.1025641026vw 8.2051282051vw;
    border-radius: 256.1538461538vw;
    font-size: 4.1025641026vw;
  }
}
.contact__submit.disabled {
  background: #e1e1e1;
  cursor: not-allowed;
}
.contact__submit.disabled:hover {
  filter: none;
}
.contact__submit-back {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1111111111vw 3.3333333333vw;
  background: #ffffff;
  border: 1px solid #142376;
  border-radius: 69.375vw;
  font-weight: 400;
  font-size: 1.25vw;
  line-height: 1.3;
  color: #142376;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  text-decoration: none;
}
@media (max-width: 767px) {
  .contact__submit-back {
    width: 100%;
    padding: 4.1025641026vw 8.2051282051vw;
    border-radius: 256.1538461538vw;
    font-size: 4.1025641026vw;
  }
}
.contact__submit-back:hover {
  background: #142376;
  color: #ffffff;
}
.contact__confirm-radio {
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 1.7;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .contact__confirm-radio {
    font-size: 4.1025641026vw;
  }
}
.contact__confirm-text {
  padding: 0.8333333333vw 0;
}
@media (max-width: 767px) {
  .contact__confirm-text {
    padding: 3.0769230769vw 0;
  }
}
.contact__confirm-text p {
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 1.7;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .contact__confirm-text p {
    font-size: 4.1025641026vw;
  }
}
.contact__complete {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1111111111vw;
  width: 100%;
  max-width: 52.7777777778vw;
  margin: 4.1666666667vw auto 3.3333333333vw;
}
@media (max-width: 767px) {
  .contact__complete {
    margin: 3.3333333333vw auto 8.2051282051vw;
    gap: 4.1025641026vw;
  }
}
.contact__complete-title {
  font-weight: 500;
  font-size: 1.6666666667vw;
  line-height: 1.75;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .contact__complete-title {
    font-size: 5.1282051282vw;
  }
}
.contact__complete-text {
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 175%;
  color: #1A1A1A;
  text-align: center;
}
@media (max-width: 767px) {
  .contact__complete-text {
    font-size: 3.5897435897vw;
  }
}

.wpcf7 .wpcf7-not-valid-tip {
  font-size: 0.8333333333vw;
  color: #dc3232;
  margin-top: 0.2777777778vw;
}
@media (max-width: 767px) {
  .wpcf7 .wpcf7-not-valid-tip {
    font-size: 3.0769230769vw;
    margin-top: 1.0256410256vw;
  }
}
.wpcf7 .wpcf7-not-valid {
  border-color: #dc3232 !important;
}
.wpcf7 .wpcf7-response-output {
  display: none !important;
}
.wpcf7 .wpcf7-spinner {
  display: none;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
  display: block;
}
.wpcf7 form.sent .wpcf7-response-output {
  display: block;
}
.wpcf7 .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .wpcf7-form-control-wrap {
  position: relative;
  display: block;
  width: 100%;
}
.wpcf7 .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: block;
  width: 100%;
}
.wpcf7 .wpcf7-list-item {
  margin-left: 0;
  margin-right: 0;
}
.wpcf7 p {
  display: inline;
}

.service__description {
  padding: 6.9444444444vw 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6666666667vw;
}
@media (max-width: 767px) {
  .service__description {
    gap: 4.1025641026vw;
    padding: 10.2564102564vw 4.1025641026vw;
  }
}
.service__description-title {
  font-size: 2.2222222222vw;
  font-weight: 400;
  color: #142376;
  text-align: center;
  line-height: 150%;
}
@media (max-width: 767px) {
  .service__description-title {
    font-size: 6.1538461538vw;
  }
}
.service__description-text {
  font-size: 1.25vw;
  font-weight: 400;
  color: #000000;
  line-height: 200%;
  text-align: center;
}
@media (max-width: 767px) {
  .service__description-text {
    font-size: 3.0769230769vw;
  }
}
.service__value {
  background-color: #ffffff;
  border-radius: 8.3333333333vw;
  padding: 5.5555555556vw 8.3333333333vw;
}
@media (max-width: 767px) {
  .service__value {
    border-radius: 10.2564102564vw;
    padding: 12.3076923077vw 4.1025641026vw;
  }
}
.service__value-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.9027777778vw;
}
@media (max-width: 767px) {
  .service__value-container {
    gap: 6.1538461538vw;
  }
}
.service__value-title {
  font-size: 2.2222222222vw;
  font-weight: 400;
  color: #142376;
  text-align: center;
  line-height: normal;
}
@media (max-width: 767px) {
  .service__value-title {
    font-size: 6.1538461538vw;
  }
}
.service__value-items {
  display: flex;
  align-items: flex-start;
  gap: 2.2222222222vw;
  width: 62.5vw;
  max-width: 100%;
}
@media (max-width: 767px) {
  .service__value-items {
    flex-direction: column;
    width: 100%;
    gap: 4.1025641026vw;
  }
}
.service__value-item {
  display: flex;
  flex-direction: column;
  gap: 0.8333333333vw;
  flex: 1 0 0;
}
@media (max-width: 767px) {
  .service__value-item {
    flex-direction: row;
    align-items: center;
    gap: 4.1025641026vw;
  }
}
.service__value-item-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6666666667vw;
}
@media (max-width: 767px) {
  .service__value-item-header {
    gap: 2.0512820513vw;
  }
}
.service__value-icon {
  width: 5.8333333333vw;
  height: 5.8333333333vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service__value-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .service__value-icon {
    width: 21.5384615385vw;
    height: 21.5384615385vw;
  }
}
.service__value-item-title {
  font-size: 1.25vw;
  font-weight: 400;
  color: #142376;
  text-align: center;
  line-height: 1.5;
  white-space: pre-wrap;
  min-width: 100%;
}
@media (max-width: 767px) {
  .service__value-item-title {
    font-size: 3.5897435897vw;
  }
}
.service__value-item-text {
  font-size: 0.9722222222vw;
  font-weight: 400;
  color: #000000;
  line-height: 1.75;
  white-space: pre-wrap;
}
.service__value-item-text strong {
  font-weight: 700;
}
@media (max-width: 767px) {
  .service__value-item-text {
    width: 56.9230769231vw;
    font-size: 3.0769230769vw;
  }
}
.service__value-divider {
  height: 11.2847222222vw;
  border-left: 1px dotted #142376;
}
@media (max-width: 767px) {
  .service__value-divider {
    height: auto;
    width: 100%;
    border-bottom: 1px dotted #142376;
    border-left: none;
  }
}
.service__value-channels {
  background-color: #F3F4F6;
  border-radius: 1.6666666667vw;
  padding: 3.3333333333vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1111111111vw;
  width: 62.5vw;
  max-width: 100%;
}
@media (max-width: 767px) {
  .service__value-channels {
    border-radius: 6.1538461538vw;
    padding: 12.3076923077vw 4.1025641026vw;
    gap: 4.1025641026vw;
    width: 100%;
  }
}
.service__value-channels-title {
  font-size: 1.3888888889vw;
  font-weight: 400;
  color: #142376;
  text-align: center;
  letter-spacing: 0.14em;
  line-height: normal;
  white-space: pre-wrap;
}
@media (max-width: 767px) {
  .service__value-channels-title {
    font-size: 4.6153846154vw;
  }
}
.service__value-channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1111111111vw;
  width: 100%;
}
@media (max-width: 767px) {
  .service__value-channels-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5384615385vw;
  }
}
.service__channel-card {
  background-color: #ffffff;
  border-radius: 1.3888888889vw;
  padding: 0.9722222222vw 2.0138888889vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0px 0px 16px 0px rgba(151, 159, 186, 0.1);
}
@media (max-width: 767px) {
  .service__channel-card {
    border-radius: 5.1282051282vw;
    padding: 0 2.0512820513vw 2.0512820513vw;
  }
}
.service__channel-icon {
  width: 6.25vw;
  height: 5.8333333333vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .service__channel-icon {
    width: 18.4615384615vw;
    height: 17.1794871795vw;
  }
}
.service__channel-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service__channel-name {
  font-size: 1.25vw;
  font-weight: 400;
  color: #142376;
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .service__channel-name {
    font-size: 3.0769230769vw;
  }
}
.service__vision {
  padding: 6.9444444444vw 8.3333333333vw;
}
@media (max-width: 767px) {
  .service__vision {
    padding: 10.2564102564vw 4.1025641026vw;
  }
}
.service__vision-container {
  display: flex;
  gap: 5.5555555556vw;
  align-items: center;
}
@media (max-width: 767px) {
  .service__vision-container {
    flex-direction: column;
    gap: 6.1538461538vw;
  }
}
.service__vision-content {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.6666666667vw;
}
@media (max-width: 767px) {
  .service__vision-content {
    gap: 6.1538461538vw;
  }
}
.service__vision-badge {
  background-color: #1A1A1A;
  color: #ffffff;
  font-size: 0.8333333333vw;
  font-weight: 500;
  line-height: 16px;
  padding: 0.3472222222vw 1.4583333333vw;
  border-radius: 0.8333333333vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}
@media (max-width: 767px) {
  .service__vision-badge {
    font-size: 3.0769230769vw;
    padding: 1.0256410256vw 5.1282051282vw;
    border-radius: 3.0769230769vw;
  }
}
.service__vision-title {
  font-family: "Futura", "Arial", sans-serif;
  font-size: 3.8888888889vw;
  font-weight: 500;
  line-height: normal;
  color: #000000;
  letter-spacing: -0.05em;
}
@media (max-width: 767px) {
  .service__vision-title {
    font-size: 8.2051282051vw;
  }
}
.service__vision-title-highlight {
  color: #0071BC;
}
.service__vision-description {
  font-size: 1.1111111111vw;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.83;
  letter-spacing: -0.0275em;
}
@media (max-width: 767px) {
  .service__vision-description {
    font-size: 3.5897435897vw;
  }
}
.service__vision-features {
  display: flex;
  gap: 1.1111111111vw;
}
@media (max-width: 767px) {
  .service__vision-features {
    flex-direction: column;
    gap: 4.1025641026vw;
  }
}
.service__vision-feature {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6944444444vw;
  padding: 0.2777777778vw 0;
}
@media (max-width: 767px) {
  .service__vision-feature {
    flex-direction: row;
    gap: 2.5641025641vw;
    padding: 0;
  }
}
.service__vision-feature-icon {
  width: 4.4444444444vw;
  height: 4.4444444444vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .service__vision-feature-icon {
    width: 20.5128205128vw;
    height: 16.4102564103vw;
  }
}
.service__vision-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service__vision-feature-content {
  display: flex;
  flex-direction: column;
  gap: 0.5555555556vw;
  width: 100%;
}
@media (max-width: 767px) {
  .service__vision-feature-content {
    gap: 2.0512820513vw;
    align-items: flex-start;
  }
}
.service__vision-feature-title {
  font-size: 1.3888888889vw;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.0156em;
  height: 3.3333333333vw;
}
@media (max-width: 767px) {
  .service__vision-feature-title {
    font-size: 4.6153846154vw;
    height: auto;
  }
}
.service__vision-feature-text {
  font-size: 0.9722222222vw;
  font-weight: 400;
  color: #5E5F62;
  line-height: 1.43;
  text-align: center;
  letter-spacing: -0.0107em;
}
@media (max-width: 767px) {
  .service__vision-feature-text {
    font-size: 3.5897435897vw;
  }
}
.service__vision-image {
  width: 31.7361111111vw;
  height: 31.9444444444vw;
  flex-shrink: 0;
  border-radius: 0.6944444444vw;
  overflow: hidden;
  display: flex;
  align-items: baseline;
  justify-content: center;
  position: relative;
}
@media (max-width: 767px) {
  .service__vision-image {
    width: 100%;
    height: 92.3076923077vw;
    border-radius: 2.5641025641vw;
  }
}
.service__vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service__vision-image .vision-swiper__pagination {
  bottom: -0.1388888889vw !important;
}
@media (max-width: 767px) {
  .service__vision-image .vision-swiper__pagination {
    bottom: -0.2564102564vw !important;
  }
}
.service__vision-image .vision-swiper__pagination .swiper-pagination-bullet {
  width: 0.4166666667vw !important;
  height: 0.4166666667vw !important;
  background-color: #BEBEBE !important;
}
@media (max-width: 767px) {
  .service__vision-image .vision-swiper__pagination .swiper-pagination-bullet {
    width: 1.5384615385vw !important;
    height: 1.5384615385vw !important;
  }
}
.service__vision-image .vision-swiper__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #878787 !important;
}
.service__process {
  padding-left: 8.3333333333vw;
  padding-bottom: 6.9444444444vw;
}
@media (max-width: 767px) {
  .service__process {
    padding-left: 4.1025641026vw;
    padding-bottom: 10.2564102564vw;
  }
}
.service__process-container {
  background-color: #ffffff;
  border-radius: 8.3333333333vw 0 0 8.3333333333vw;
  padding: 5.5555555556vw 8.3333333333vw 5.5555555556vw 5.5555555556vw;
  display: flex;
  flex-direction: column;
  gap: 1.3888888889vw;
}
@media (max-width: 767px) {
  .service__process-container {
    border-radius: 10.2564102564vw 0 0 10.2564102564vw;
    padding: 12.3076923077vw 4.1025641026vw;
    gap: 5.1282051282vw;
  }
}
.service__process-title {
  display: flex;
  gap: 1.9444444444vw;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .service__process-title {
    gap: 7.1794871795vw;
  }
}
.service__process-title-en {
  font-family: "Futura", "Arial", sans-serif;
  font-size: 5.5555555556vw;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.05em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .service__process-title-en {
    font-size: 14.358974359vw;
  }
}
.service__process-title-highlight {
  color: #0071BC;
}
.service__process-title-ja {
  font-size: 1.1111111111vw;
  font-weight: 400;
  color: #000000;
  line-height: normal;
  padding-bottom: 1.6666666667vw;
}
@media (max-width: 767px) {
  .service__process-title-ja {
    font-size: 3.5897435897vw;
    padding-bottom: 6.1538461538vw;
  }
}
.service__process-intro {
  font-size: 1.1111111111vw;
  font-weight: 400;
  color: #444444;
  line-height: 1.8;
  width: 100%;
}
@media (max-width: 767px) {
  .service__process-intro {
    font-size: 3.5897435897vw;
  }
}
.service__process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1111111111vw;
  width: 100%;
}
@media (max-width: 767px) {
  .service__process-steps {
    flex-direction: column;
    gap: 4.1025641026vw;
  }
}
.service__process-step {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1111111111vw;
  padding: 1.3888888889vw;
  width: 100%;
  height: 19.0277777778vw;
}
@media (max-width: 767px) {
  .service__process-step {
    gap: 3.0769230769vw;
    padding: 0;
    flex-direction: row;
    height: auto;
    justify-content: space-between;
  }
}
.service__process-step-header {
  display: flex;
  flex-direction: column;
  gap: 1.1111111111vw;
  align-items: center;
}
@media (max-width: 767px) {
  .service__process-step-header {
    gap: 0;
    width: 21.5384615385vw;
  }
}
.service__process-step-icon {
  width: 4.7222222222vw;
  height: 4.7222222222vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service__process-step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .service__process-step-icon {
    width: 15.3846153846vw;
    height: 15.3846153846vw;
  }
}
.service__process-step-title {
  font-size: 1.6666666667vw;
  font-weight: 700;
  color: #000000;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .service__process-step-title {
    font-size: 4.1025641026vw;
  }
}
.service__process-step-text {
  font-size: 0.9722222222vw;
  font-weight: 500;
  color: #444444;
  line-height: 1.8;
  white-space: pre-wrap;
  width: 100%;
}
@media (max-width: 767px) {
  .service__process-step-text {
    font-size: 3.5897435897vw;
    width: 59.2307692308vw;
    white-space: nowrap;
  }
}
.service__process-arrow {
  width: 1.6666666667vw;
  height: 1.6666666667vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service__process-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .service__process-arrow {
    transform: rotate(90deg);
    width: 6.1538461538vw;
    height: 3.3333333333vw;
  }
}

.about__info {
  position: relative;
  background-color: #ffffff;
  border-radius: 8.3333333333vw;
  padding: 7.2222222222vw 8.3333333333vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 6.9444444444vw 0 25.4166666667vw;
}
@media (max-width: 767px) {
  .about__info {
    border-radius: 10.2564102564vw;
    padding: 12.3076923077vw 4.1025641026vw;
    margin: 10.2564102564vw 0 35.8974358974vw;
  }
}
.about__info-container {
  width: 100%;
  max-width: 66.6666666667vw;
  display: flex;
  flex-direction: column;
  gap: 5.9027777778vw;
}
@media (max-width: 767px) {
  .about__info-container {
    max-width: 100%;
    gap: 8.2051282051vw;
  }
}
.about__info-table {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.about__info-row {
  display: flex;
  gap: 4.7916666667vw;
  padding: 1.6666666667vw 0;
  border-bottom: 1px solid #E6E9F1;
}
.about__info-row:first-child {
  padding-top: 0;
}
@media (max-width: 767px) {
  .about__info-row {
    flex-direction: column;
    gap: 2.0512820513vw;
    padding: 3.0769230769vw 0;
  }
}
.about__info-label {
  width: 10.2083333333vw;
  flex-shrink: 0;
  font-weight: 500;
  font-size: 1.1111111111vw;
  line-height: 2.7777777778vw;
  letter-spacing: 0.023em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .about__info-label {
    width: 100%;
    font-size: 4.1025641026vw;
    line-height: 4.1025641026vw;
  }
}
.about__info-content {
  flex: 1;
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 2.7777777778vw;
  letter-spacing: 0.023em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .about__info-content {
    font-size: 4.1025641026vw;
    line-height: 3.5897435897vw;
  }
}
.about__info-link {
  color: #142376;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.about__info-link:hover {
  opacity: 0.7;
}
.about__info-map {
  width: 66.6666666667vw;
  height: 22.4305555556vw;
  border-radius: 1.1111111111vw;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about__info-map {
    width: 100%;
    height: 78.2051282051vw;
    border-radius: 3.0769230769vw;
  }
}
.about__info-map img {
  width: 100%;
  height: auto;
  display: block;
}
.about__info-image {
  width: 100%;
  height: 30.3472222222vw;
  object-fit: cover;
  position: absolute;
  bottom: -18.4722222222vw;
  left: 0;
  overflow: hidden;
  z-index: -1;
}
@media (max-width: 767px) {
  .about__info-image {
    height: 51.5384615385vw;
    bottom: -25.641025641vw;
  }
}
.about__info-image img {
  width: 100%;
  height: auto;
  display: block;
}
.about__member {
  background-color: #ffffff;
  border-radius: 8.3333333333vw 8.3333333333vw 0 0;
  padding: 5.5555555556vw 8.3333333333vw;
  display: flex;
  flex-direction: column;
  gap: 5.5555555556vw;
  align-items: center;
}
@media (max-width: 767px) {
  .about__member {
    border-radius: 10.2564102564vw 10.2564102564vw 0 0;
    padding: 12.3076923077vw 4.1025641026vw;
    gap: 8.2051282051vw;
  }
}
.about__member-header {
  width: 100%;
  max-width: 71.1111111111vw;
  display: flex;
  align-items: flex-end;
  gap: 1.9444444444vw;
}
@media (max-width: 767px) {
  .about__member-header {
    max-width: 100%;
    gap: 4.1025641026vw;
    flex-direction: column;
    align-items: flex-start;
  }
}
.about__member-title {
  font-family: "Futura", sans-serif;
  font-weight: 500;
  font-size: 5.5555555556vw;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .about__member-title {
    font-size: 14.358974359vw;
  }
}
.about__member-title-highlight {
  color: #0071BC;
}
.about__member-subtitle {
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 1;
  color: #000000;
  padding-bottom: 1.6666666667vw;
}
@media (max-width: 767px) {
  .about__member-subtitle {
    font-size: 3.5897435897vw;
    padding-bottom: 0;
  }
}
.about__member-list {
  width: 100%;
  max-width: 71.1111111111vw;
  display: flex;
  flex-direction: column;
  gap: 4.4444444444vw;
}
@media (max-width: 767px) {
  .about__member-list {
    max-width: 100%;
    gap: 6.1538461538vw;
  }
}
.about__member-card {
  display: flex;
  gap: 3.3333333333vw;
  align-items: center;
}
@media (max-width: 767px) {
  .about__member-card {
    flex-direction: column;
    gap: 3.0769230769vw;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .about__member-image {
    display: flex;
    align-items: flex-end;
    gap: 3.0769230769vw;
  }
}
.about__member-image picture {
  width: 18.75vw;
  height: 17.3611111111vw;
  border-radius: 1.1111111111vw;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about__member-image picture {
    width: 34.8717948718vw;
    height: 37.4358974359vw;
  }
}
.about__member-image img {
  width: 18.75vw;
  height: 17.3611111111vw;
  border-radius: 1.1111111111vw;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about__member-image img {
    width: 34.8717948718vw;
    height: 37.4358974359vw;
    border-radius: 4.1025641026vw;
  }
}
.about__member-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.6666666667vw;
}
@media (max-width: 767px) {
  .about__member-content {
    gap: 5.1282051282vw;
  }
}
.about__member-info {
  display: flex;
  flex-direction: column;
  gap: 0.6944444444vw;
}
@media (max-width: 767px) {
  .about__member-info {
    display: none;
  }
}
.about__member-position {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 1;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .about__member-position {
    font-size: 3.5897435897vw;
  }
}
.about__member-name {
  font-weight: 400;
  font-size: 1.6666666667vw;
  line-height: 1;
  letter-spacing: 0.023em;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .about__member-name {
    font-size: 5.1282051282vw;
  }
}
.about__member-text {
  display: flex;
  flex-direction: column;
}
.about__member-catchphrase {
  font-weight: 400;
  font-size: 1.6666666667vw;
  line-height: 1.22;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .about__member-catchphrase {
    display: none;
  }
}
.about__member-description {
  padding-top: 0.5555555556vw;
}
@media (max-width: 767px) {
  .about__member-description {
    padding-top: 2.0512820513vw;
  }
}
.about__member-description p {
  font-weight: 400;
  font-size: 1.1111111111vw;
  line-height: 1.75;
  color: #575757;
}
@media (max-width: 767px) {
  .about__member-description p {
    font-size: 4.1025641026vw;
  }
}
.about__member-description p span {
  font-weight: 700;
}
.about__member-sp-info {
  display: none;
}
@media (max-width: 767px) {
  .about__member-sp-info {
    display: flex;
    flex-direction: column;
    gap: 2.0512820513vw;
  }
}
.about__member-sp-info-content {
  display: none;
}
@media (max-width: 767px) {
  .about__member-sp-info-content {
    display: flex;
    flex-direction: column;
    gap: 2.0512820513vw;
  }
}
.about__member-sp-info-catchphrase {
  display: none;
}
@media (max-width: 767px) {
  .about__member-sp-info-catchphrase {
    display: block;
    font-size: 3.5897435897vw;
    line-height: 150%;
    color: #1A1A1A;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: clip;
}

:root {
  --color-white: #ffffff;
}

html, body {
  width: 100%;
  margin-top: 0px !important;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  color: #000000;
  overflow-x: clip;
  background: #F3F4F6;
}

main {
  padding: 0;
  margin: 0;
  padding-top: 6.3888888889vw;
}
@media (max-width: 767px) {
  main {
    padding-top: 16.4102564103vw;
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1440px) {
  .container {
    max-width: 88.8888888889vw;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 96.1538461538vw;
    padding: 0 16px;
  }
}

.js-box {
  visibility: hidden;
  opacity: 0;
  transition: all 1s;
  transform: translateY(75px);
}

.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.js-fade-in {
  visibility: hidden;
  opacity: 0;
  transition: all 1s;
  transform: translateY(75px);
}

.-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

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

.page-sub {
  position: relative;
}
.page-sub::before {
  content: "";
  position: absolute;
  top: 3.6111111111vw;
  right: -2.6083333333vw;
  width: 37.4305555556vw;
  height: 20.3472222222vw;
  background-image: url("../../assets/img/bg_page-sub.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 767px) {
  .page-sub::before {
    top: 26.6666666667vw;
    right: -39.4153846154vw;
    width: 79.7435897436vw;
    height: 43.3333333333vw;
  }
}

.page-title {
  padding: 0 8.3333333333vw;
}
@media (max-width: 767px) {
  .page-title {
    padding: 0 4.1025641026vw;
  }
}
.page-title__container {
  display: flex;
  flex-direction: column;
  gap: 1.1111111111vw;
}
@media (max-width: 767px) {
  .page-title__container {
    gap: 4.1025641026vw;
  }
}
.page-title__main {
  font-family: "Futura", "Arial", sans-serif;
  font-size: 5.5555555556vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -4px;
  color: #000000;
}
@media (max-width: 767px) {
  .page-title__main {
    font-size: 14.358974359vw;
    letter-spacing: -0.7179487179vw;
  }
}
.page-title__initial {
  color: #0071BC;
}
.page-title__subtitle {
  font-size: 1.1111111111vw;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
}
@media (max-width: 767px) {
  .page-title__subtitle {
    font-size: 3.5897435897vw;
  }
}

.page-linear {
  margin-top: 2.7777777778vw;
}
@media (max-width: 767px) {
  .page-linear {
    margin-top: 10.2564102564vw;
  }
}
.page-linear__wrapper {
  transition-timing-function: linear !important;
}
.page-linear__wrapper .swiper-slide {
  width: 25.625vw !important;
  height: 15vw !important;
  margin-right: 1.25vw !important;
}
@media (max-width: 767px) {
  .page-linear__wrapper .swiper-slide {
    width: 70.2564102564vw !important;
    height: 41.0256410256vw !important;
    margin-right: 4.6153846154vw !important;
  }
}
.page-linear__wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
