@charset "UTF-8";
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  min-height: 60px;
  padding: 0 27px;
  border-radius: 100px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.btn--outline {
  background: #192125;
  border: 1px solid #787878;
  color: #fff;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}
.btn--outline:hover {
  opacity: 1;
  background: #fff;
  border-color: #fff;
  color: #0f0f0f;
}
.btn--primary {
  background: #192125;
  border: 1px solid transparent;
  color: #fff;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}
.btn--primary:hover {
  opacity: 1;
  background: #fff;
  border-color: #fff;
  color: #0f0f0f;
}
.btn--lg {
  min-width: 292px;
}
.btn--center {
  margin-inline: auto;
}
.btn__icon {
  color: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
}

.section-en {
  font-family: "Jost", sans-serif;
  font-size: clamp(48px, 6.2vw, 76px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.02em;
}
.section-en--dark {
  color: #0f0f0f;
}
.section-en--light {
  color: #fff;
}

.section-ja {
  font-size: 24px;
  font-weight: 700;
  color: #b2b2b2;
}

.breadcrumb {
  margin: 0 0 28px;
}
.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.breadcrumb__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
.breadcrumb__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 4px;
  height: 7px;
  background: currentColor;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  opacity: 0.45;
}
.breadcrumb__link {
  color: #9a9a9a;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.breadcrumb__link:hover {
  opacity: 0.72;
}
.breadcrumb__current {
  color: #0f0f0f;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding-top: 36px;
  will-change: transform, opacity;
  padding-left: 70px;
  padding-right: 70px;
}
@media screen and (max-width: 1024px) {
  .site-header {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.site-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.site-header__logo {
  display: block;
  line-height: 0;
}
.site-header__logo-image {
  display: block;
  width: 157px;
  height: auto;
}
.site-header__logo-image--primary {
  display: none;
}
.site-header.is-light .site-header__logo-image--white {
  display: none;
}
.site-header.is-light .site-header__logo-image--primary {
  display: block;
}
.site-header.is-light .site-header__menu a {
  color: #0f0f0f;
}
.site-header.is-light .site-header__plus::before, .site-header.is-light .site-header__plus::after {
  background: #0f0f0f;
}
.site-header.is-light .site-header__toggle span {
  background: #0f0f0f;
}
.site-header__toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  width: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.site-header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
}
.site-header__close {
  display: none;
}
.site-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.site-header__menu a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
.site-header__plus {
  position: relative;
  width: 14px;
  height: 14px;
}
.site-header__plus::before, .site-header__plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.site-header__plus::before {
  width: 14px;
  height: 2.5px;
}
.site-header__plus::after {
  width: 2.5px;
  height: 14px;
}

@media screen and (max-width: 1024px) {
  .site-header__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .site-header__logo-image {
    width: 110px;
  }
  .site-header__nav {
    position: fixed;
    inset: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: rgba(0, 0, 0, 0.92);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.35s ease, visibility 0.35s ease;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  .site-header__nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-header__close {
    position: absolute;
    top: 36px;
    right: 24px;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  .site-header__close span {
    position: relative;
    width: 24px;
    height: 24px;
  }
  .site-header__close span::before, .site-header__close span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background: #fff;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .site-header__close span::after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
  .site-header__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.site-footer {
  background: #000;
  color: #fff;
}
.site-footer__cta {
  padding-top: 120px;
  padding-left: 70px;
  padding-right: 70px;
}
@media screen and (max-width: 1024px) {
  .site-footer__cta {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.site-footer__cta-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(40px, 6vw, 80px);
  max-width: 1400px;
  margin-inline: auto;
  padding: 75px clamp(32px, 6vw, 95px);
  border-radius: 24px;
  background: #e4e4e4;
  color: #0f0f0f;
}
.site-footer__cta-card .btn--lg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 290px;
  min-width: 0;
}
.site-footer__cta-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
.site-footer__cta-en {
  margin: 0 0 8px;
  font-family: "Jost", sans-serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
}
.site-footer__cta-ja {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
}
.site-footer__cta-desc {
  margin: 0;
  max-width: 520px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
}
.site-footer__middle {
  padding: 100px 0 120px;
  padding-left: 70px;
  padding-right: 70px;
}
@media screen and (max-width: 1024px) {
  .site-footer__middle {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.site-footer__middle {
  color: #fff;
}
.site-footer__middle p,
.site-footer__middle span,
.site-footer__middle h1,
.site-footer__middle h2,
.site-footer__middle h3,
.site-footer__middle h4,
.site-footer__middle h5,
.site-footer__middle h6,
.site-footer__middle li,
.site-footer__middle time,
.site-footer__middle address {
  color: inherit;
}
.site-footer__middle a:not(.btn):not(.about__btn) {
  color: inherit;
}
.site-footer__middle-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(48px, 8vw, 100px);
  max-width: 1400px;
  margin-inline: auto;
}
.site-footer__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
}
.site-footer__block .btn {
  margin-top: auto;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.site-footer__block-en {
  margin: 0 0 8px;
  font-family: "Jost", sans-serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
}
.site-footer__block-ja {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 800;
}
.site-footer__block-desc {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 0 0 32px;
  font-size: 14px;
  line-height: 1.85;
}
.site-footer__divider {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1px;
          flex: 0 0 1px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  width: 1px;
  background: #787878;
}
.site-footer__bottom {
  background: #192125;
  padding: 80px 0 40px;
  padding-left: 70px;
  padding-right: 70px;
}
@media screen and (max-width: 1024px) {
  .site-footer__bottom {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.site-footer__bottom {
  color: #fff;
}
.site-footer__bottom p,
.site-footer__bottom span,
.site-footer__bottom h1,
.site-footer__bottom h2,
.site-footer__bottom h3,
.site-footer__bottom h4,
.site-footer__bottom h5,
.site-footer__bottom h6,
.site-footer__bottom li,
.site-footer__bottom time,
.site-footer__bottom address {
  color: inherit;
}
.site-footer__bottom a:not(.btn):not(.about__btn) {
  color: inherit;
}
.site-footer__bottom-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr auto;
  gap: 48px;
  max-width: 1400px;
  margin-inline: auto;
  margin: 0 auto 48px;
}
.site-footer__company-name {
  margin: 24px 0 12px;
  font-size: 14px;
  font-weight: 600;
}
.site-footer__location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  margin: 0 0 16px;
}
.site-footer__address {
  margin: 0;
  font-size: 12px;
  line-height: 1.66;
}
.site-footer__map {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.site-footer__map::after {
  content: "↗";
}
.site-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
}
.site-footer__nav a {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}
.site-footer__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
.site-footer__nav-sub a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}
.site-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.site-footer__sns-link {
  display: grid;
  place-items: center;
  width: 53px;
  height: 53px;
  border: 1px solid #787878;
  border-radius: 50%;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.site-footer__sns-link:hover {
  opacity: 0.72;
}
.site-footer__sns-link img {
  display: block;
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-footer__copyright {
  max-width: 1400px;
  margin-inline: auto;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid #787878;
  font-size: 14px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .site-footer__cta-card,
  .site-footer__middle-inner,
  .site-footer__bottom-inner {
    grid-template-columns: 1fr;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .site-footer__cta-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 40px 32px;
  }
  .site-footer__cta-card .btn--lg {
    width: 100%;
    max-width: 290px;
  }
  .site-footer__middle {
    padding: 80px 56px 100px;
  }
  .site-footer__middle-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .site-footer__block {
    width: 100%;
  }
  .site-footer__divider {
    width: 100%;
    min-height: 1px;
  }
  .site-footer__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 32px;
  }
}/*# sourceMappingURL=style.css.map */