@charset "UTF-8";
:root {
  --font-size-base: 18px;
  --font-weight-base: 500;
  --line-height-base: 2.78;
  --font-family-base: "M PLUS 1", sans-serif;
  --font-family-accent-ja: "Noto Serif JP", serif;
  --font-family-accent-en: "Times New Roman", Times, serif;
  --font-color-black: #000;
  --font-color-black2: #1a1a1a;
  --font-color-gray: #555;
  --font-color-white: #fff;
  --logo-color-gray: #686d71;
  --logo-color-white: #fff;
  --theme-color-blue: #2c4198;
  --invalid-border-color: #ff0000;
  --invalid-bg-color: #ffdede;
  --bg-color-green: #00a29a;
  --bg-color-gray: #eeeceb;
  --bg-color-black: #000;
  --bg-color-white: #fff;
  --inner-width: 50px;
}
@media not screen and (min-width: 768px) {
  :root {
    --inner-width: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  :root {
    --inner-width: 20px;
  }
}
:root {
  --header-height: 106px;
}
@media not screen and (min-width: 768px) {
  :root {
    --header-height: 66px;
  }
}

/* ===========================================
共通設定
=========================================== */
body {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--font-color-black);
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-base);
  position: relative;
}

.main {
  position: relative;
  z-index: 10;
}
.main.is-drawer-open {
  -webkit-filter: blur(2px);
          filter: blur(2px);
}

.footer.is-drawer-open {
  -webkit-filter: blur(2px);
          filter: blur(2px);
}

.inline-block {
  display: inline-block;
  font-weight: inherit;
}

@media not screen and (min-width: 768px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

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

.inner {
  padding-inline: var(--inner-width);
  max-width: calc(1340px + var(--inner-width) * 2);
  margin-inline: auto;
}
@media not screen and (min-width: 768px) {
  .inner {
    padding-inline: 14px;
  }
}

.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
@media not screen and (min-width: 768px) {
  .heading {
    gap: 16px;
  }
}
.heading.heading--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.heading-en {
  font-family: var(--font-family-accent-en);
  color: var(--theme-color-blue);
  font-size: 64px;
  line-height: 1.094;
}
@media not screen and (min-width: 768px) {
  .heading-en {
    font-size: 48px;
  }
}

.heading-ja {
  font-size: 18px;
  font-weight: 500;
  line-height: 2.778;
}
@media not screen and (min-width: 768px) {
  .heading-ja {
    font-size: 16px;
    line-height: 1;
  }
}

.js-fade-in {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
  -webkit-transition-delay: calc(var(--fade-order, 0) * 0.12s);
          transition-delay: calc(var(--fade-order, 0) * 0.12s);
  will-change: opacity, transform;
}
.js-fade-in.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-fade-in {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
}
/* ===========================================
/共通設定
=========================================== */
/* ===========================================
ドロワーメニューを開くボタン
=========================================== */
.nav-button {
  --bars-width: 24px;
  --bars-height: 14px;
  display: none;
  position: fixed;
  z-index: 1100;
  bottom: 30px;
  right: var(--inner-width);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 67px;
  height: 32px;
  background: var(--theme-color-blue);
  border-radius: 100px;
}
@media not screen and (min-width: 768px) {
  .nav-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.nav-button.is-open .nav-button__bar:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.nav-button.is-open .nav-button__bar:nth-of-type(2) {
  opacity: 0;
}
.nav-button.is-open .nav-button__bar:nth-of-type(3) {
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.nav-button__bars {
  position: relative;
  width: var(--bars-width);
  height: var(--bars-height);
}

.nav-button__bar {
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--bg-color-green);
  left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav-button__bar:nth-of-type(1) {
  top: 0;
}
.nav-button__bar:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.nav-button__bar:nth-of-type(3) {
  bottom: 0;
}

/* ===========================================
ドロワーメニュー
=========================================== */
.drawer-nav {
  position: fixed;
  z-index: 1000;
  top: -100dvh;
  left: 0;
  width: 100vw;
  height: 100dvh;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 100px;
  padding-bottom: 100px;
  -webkit-transition: top 0.3s ease-in-out;
  transition: top 0.3s ease-in-out;
}
.drawer-nav.is-open {
  top: 0;
}

.drawer-nav__overlay {
  position: fixed;
  z-index: 999;
  top: -100vh;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-color-green);
  mix-blend-mode: multiply;
  -webkit-transition: top 0.3s ease-in-out;
  transition: top 0.3s ease-in-out;
}

.drawer-nav.is-open ~ .drawer-nav__overlay {
  top: 0;
}

.drawer-nav__content {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.drawer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.drawer-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 19px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--font-color-white);
}

.drawer-nav__link-en {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}
.drawer-nav__link-en::after {
  position: absolute;
  content: "";
  bottom: -11px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 73%;
  height: 1px;
  background: var(--bg-color-white);
}

.drawer-nav__link-ja {
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

.drawer-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.drawer-nav__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 10px;
  padding-bottom: 11px;
  padding-left: 10px;
  padding-right: 10px;
  min-width: 170px;
  background: var(--theme-color-blue);
  border-radius: 200px;
  color: var(--font-color-white);
}

.drawer-nav__button-en {
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.drawer-nav__button-ja {
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

.prevent-scroll {
  overflow: hidden;
}

/* ===========================================
ヘッダー
=========================================== */
.header {
  position: fixed;
  z-index: 1100;
  background: none;
  width: 100%;
  height: var(--header-height);
}
.header.is-drawer-open .header__logo-image {
  color: var(--logo-color-white);
}

.header__inner {
  height: 100%;
}

.header__content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  display: inline-block;
  line-height: 0;
}

.header__logo-link {
  display: inline-block;
}
@media (hover: hover) and (pointer: fine) {
  .header__logo-link:hover .header__logo-image {
    color: var(--theme-color-blue);
  }
}

.header__logo-image {
  display: block;
  max-width: clamp(220px, 57.977vw - 225.261px, 369px);
  width: 100%;
  color: var(--logo-color-gray);
}
@media not screen and (min-width: 768px) {
  .header__logo-image {
    max-width: 220px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header__logo-image {
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
  }
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header-nav {
    gap: 20px;
  }
}

.header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media not screen and (min-width: 768px) {
  .header-nav__list {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header-nav__list {
    gap: 20px;
  }
}

.header-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--font-color-gray);
}
@media (hover: hover) and (pointer: fine) {
  .header-nav__link {
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
  }
  .header-nav__link:hover {
    color: var(--theme-color-blue);
  }
  .header-nav__link:hover .header-nav__link-en::after {
    background-color: var(--theme-color-blue);
  }
}

.header-nav__link-en {
  position: relative;
  font-size: 16px;
  line-height: 1.19;
  font-weight: 600;
}
.header-nav__link-en::after {
  position: absolute;
  content: "";
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--bg-color-black);
}
@media (hover: hover) and (pointer: fine) {
  .header-nav__link-en::after {
    -webkit-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
  }
}

.header-nav__link-ja {
  font-size: 10px;
  line-height: 1.9;
  font-weight: 600;
}

.header__buttons {
  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;
}

.header__button {
  padding-top: 4px;
  padding-bottom: 5px;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  min-width: 170px;
  border-radius: 200px;
  background: var(--theme-color-blue);
  border: 1px solid var(--theme-color-blue);
  color: var(--font-color-white);
}
@media not screen and (min-width: 768px) {
  .header__button {
    padding-top: 2px;
    padding-bottom: 3px;
    padding-left: 10px;
    padding-right: 10px;
    min-width: 110px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header__button {
    -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  }
  .header__button:hover {
    color: var(--theme-color-blue);
    background-color: var(--bg-color-white);
  }
}

.header__button-en {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
@media not screen and (min-width: 768px) {
  .header__button-en {
    display: none;
  }
}

.header__button-ja {
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}
@media not screen and (min-width: 768px) {
  .header__button-ja {
    font-size: 12px;
    line-height: 1.58;
  }
}

/* ===========================================
メインビジュアル
=========================================== */
.mv {
  --mv-pt: 156px;
}
@media not screen and (min-width: 768px) {
  .mv {
    --mv-pt: 105px;
  }
}
.mv {
  --mv-pb: 30px;
}
@media not screen and (min-width: 768px) {
  .mv {
    --mv-pb: 40px;
  }
}

.mv__hero-area {
  padding-top: calc(var(--mv-pt) + var(--header-height));
  padding-bottom: var(--mv-pb);
}

.mv__hero-text {
  font-family: var(--font-family-accent-ja);
  font-size: 80px;
  line-height: 1.375;
}
.mv__hero-text.is-fixed {
  position: fixed;
  z-index: 100;
  margin: 0;
}
.mv__hero-text.is-docked {
  position: absolute;
  z-index: 100;
  margin: 0;
}
@media not screen and (min-width: 768px) {
  .mv__hero-text {
    font-size: clamp(34.8258706468px, 9.9502487562vw, 40px);
    line-height: 1.5;
  }
}

.mv__hero-text-white {
  position: absolute;
  inset: 0;
  color: var(--font-color-white);
  clip-path: inset(100%);
  pointer-events: none;
}

.mv__bg-area {
  position: relative;
}

.mv__bg-text {
  position: absolute;
  z-index: 10;
  top: 22px;
  left: max(var(--inner-width), (100% - 1340px) / 2);
  font-family: var(--font-family-accent-en);
  color: var(--font-color-white);
  font-size: 50px;
  line-height: 1.4;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media not screen and (min-width: 768px) {
  .mv__bg-text {
    top: 30px;
    font-size: clamp(26.1194029851px, 7.4626865672vw, 30px);
    line-height: 1.733;
  }
}

.swiper-slide {
  width: 100%;
  max-height: 769px;
  aspect-ratio: 191/102;
  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;
}
@media not screen and (min-width: 768px) {
  .swiper-slide {
    aspect-ratio: 55/77;
    max-height: 543px;
  }
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.scrollable-mark {
  overflow: hidden;
  position: absolute;
  z-index: 10;
  top: 0;
  right: 124px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100px;
  height: 100px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.scrollable-mark.is-show {
  opacity: 1;
  visibility: visible;
}
@media not screen and (min-width: 768px) {
  .scrollable-mark {
    right: 50px;
    width: 50px;
    height: 50px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .scrollable-mark {
    right: 50px;
    width: 50px;
    height: 50px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 12px;
  }
}
.scrollable-mark::after {
  position: absolute;
  content: "";
  z-index: 11;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 37px;
  height: 70px;
  background: url(../img/arrow-bottom.svg) no-repeat center center/contain;
}
@media not screen and (min-width: 768px) {
  .scrollable-mark::after {
    width: 18px;
    height: 35px;
    background: url(../img/arrow-bottom-sp.svg) no-repeat center center/contain;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .scrollable-mark::after {
    width: 18px;
    height: 35px;
    background: url(../img/arrow-bottom-sp.svg) no-repeat center center/contain;
  }
}

.scrollable-mark__above {
  position: relative;
  z-index: 9;
  width: 100%;
  height: 50%;
  background: var(--bg-color-green);
}

.scrollable-mark__below {
  position: relative;
  z-index: 9;
  width: 100%;
  height: 50%;
  background: var(--theme-color-blue);
}

/* ===========================================
コンセプト
=========================================== */
.concept {
  padding-top: 100px;
  padding-bottom: 181px;
}
@media not screen and (min-width: 768px) {
  .concept {
    padding-top: 39px;
    padding-bottom: 101px;
  }
}

.concept__wrapper {
  display: grid;
  grid-template-columns: 720px 1fr;
  gap: 37px;
}
@media not screen and (min-width: 768px) {
  .concept__wrapper {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .concept__wrapper {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .concept__wrapper {
    grid-template-columns: 1fr;
  }
}

.concept__content {
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media not screen and (min-width: 768px) {
  .concept__content {
    margin-top: 21px;
  }
}

.concept__heading {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.concept__main-text {
  margin-top: 34px;
  font-family: var(--font-family-accent-ja);
  font-size: 80px;
  font-weight: 400;
  line-height: 1.375;
}
.concept__main-text.is-hero-slot {
  visibility: hidden;
}
@media not screen and (min-width: 768px) {
  .concept__main-text {
    margin-top: 38px;
    font-size: clamp(34.8258706468px, 9.9502487562vw, 40px);
    line-height: 1.5;
  }
}

.concept__text {
  margin-top: 57px;
  display: inline-block;
  -ms-flex-item-align: end;
      align-self: flex-end;
  font-size: 20px;
  font-weight: 500;
  line-height: 2.5;
}
@media not screen and (min-width: 768px) {
  .concept__text {
    display: block;
    -ms-flex-item-align: start;
        align-self: start;
    margin-top: 30px;
    font-size: clamp(12.1890547264px, 3.4825870647vw, 14px);
    line-height: 2.14;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .concept__text {
    display: block;
    -ms-flex-item-align: start;
        align-self: start;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .concept__text {
    display: block;
    -ms-flex-item-align: start;
        align-self: start;
  }
}

@media not screen and (min-width: 768px) {
  .concept__image {
    margin-top: 23px;
    text-align: center;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .concept__image {
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .concept__image {
    text-align: center;
  }
}
.concept__image img {
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .concept__image img {
    max-width: 305px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .concept__image img {
    max-width: 480px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .concept__image img {
    max-width: 480px;
  }
}

/* ===========================================
事業概要
=========================================== */
.business {
  padding-top: 121px;
  padding-bottom: 150px;
  background: var(--bg-color-gray);
}
@media not screen and (min-width: 768px) {
  .business {
    padding-top: 108px;
  }
}

.business__cards {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media not screen and (min-width: 768px) {
  .business__cards {
    margin-top: 48px;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 20px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .business__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.business__card:nth-of-type(1) .business-card__text {
  letter-spacing: -0.04em;
}
@media not screen and (min-width: 768px) {
  .business__card:nth-of-type(1) .business-card__text {
    letter-spacing: normal;
  }
}

.business-card {
  overflow: hidden;
  border-top-left-radius: 500px;
  border-top-right-radius: 500px;
  background: var(--bg-color-white);
}

.business-card__image img {
  width: 100%;
}

.business-card__body {
  padding: 20px 15px 34px 15px;
}
@media not screen and (min-width: 768px) {
  .business-card__body {
    padding: clamp(8.7064676617px, 2.4875621891vw, 10px) clamp(7.8358208955px, 2.2388059701vw, 9px) clamp(13.9303482587px, 3.9800995025vw, 16px) clamp(7.8358208955px, 2.2388059701vw, 9px);
  }
}

.business-card__title {
  position: relative;
  text-align: center;
  color: var(--font-color-black2);
  font-size: clamp(20px, 0.964vw + 10.12px, 24px);
  font-weight: 500;
  line-height: 2.08;
}
@media not screen and (min-width: 768px) {
  .business-card__title {
    font-size: clamp(15.671641791px, 4.4776119403vw, 18px);
    line-height: 1.667;
  }
}
.business-card__title::after {
  position: absolute;
  content: "";
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--bg-color-black);
}
@media not screen and (min-width: 768px) {
  .business-card__title::after {
    bottom: -6px;
  }
}

.business-card__text {
  margin-top: 6px;
  text-align: center;
  color: var(--font-color-black2);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.43;
}
.business-card__text .is-ls-small {
  letter-spacing: -0.2em;
}
@media not screen and (min-width: 768px) {
  .business-card__text {
    margin-top: 16px;
    font-size: clamp(12.1890547264px, 3.4825870647vw, 14px);
    line-height: 1.43;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .business-card__text {
    margin-top: 10px;
  }
}

/* ===========================================
会社概要
=========================================== */
.company {
  padding-top: 151px;
  padding-bottom: 151px;
}
@media not screen and (min-width: 768px) {
  .company {
    padding-top: 109px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .company {
    padding-bottom: 0;
  }
}

.company__inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-left: var(--inner-width);
  display: grid;
  grid-template-columns: 583px 1fr;
  gap: 5.5395683453%;
}
@media not screen and (min-width: 768px) {
  .company__inner {
    padding-left: 0;
    grid-template-columns: 1fr;
    gap: 39px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .company__inner {
    padding-left: 0;
    grid-template-columns: 1fr;
    gap: 39px;
  }
}

@media not screen and (min-width: 768px) {
  .company__wrapper {
    padding-inline: var(--inner-width);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .company__wrapper {
    padding-inline: var(--inner-width);
  }
}

.company__list {
  margin-top: 51px;
}
@media not screen and (min-width: 768px) {
  .company__list {
    margin-top: 66px;
  }
}

.company__item {
  display: grid;
  grid-template-columns: 127px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 29px;
  padding-bottom: 30px;
  border-bottom: 1px solid #000;
}
@media not screen and (min-width: 768px) {
  .company__item {
    grid-template-columns: 86px 1fr;
    padding-top: 16px;
    padding-bottom: 15px;
  }
}
.company__item:nth-of-type(1) {
  border-top: 1px solid #000;
}

.company__item-head {
  color: var(--font-color-black2);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.357;
}
@media not screen and (min-width: 768px) {
  .company__item-head {
    font-size: 12px;
    line-height: 1.58;
  }
}

.company__item-body {
  color: var(--font-color-black2);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.222;
}
@media not screen and (min-width: 768px) {
  .company__item-body {
    font-size: 16px;
    line-height: 1.375;
  }
}

.company__image {
  border-top-left-radius: 27.397260274%;
  overflow: hidden;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media not screen and (min-width: 768px) {
  .company__image {
    border-top-left-radius: 24.8756218905%;
  }
}
.company__image img {
  width: 100%;
}

/* ===========================================
お問い合わせ
=========================================== */
.contact {
  position: relative;
  padding-top: 148px;
  padding-bottom: 150px;
  background: var(--bg-color-gray);
}
@media not screen and (min-width: 768px) {
  .contact {
    padding-top: 137px;
  }
}

.contact__inner {
  max-width: 1052px;
  padding-inline: 50px;
  margin-inline: auto;
}
@media not screen and (min-width: 768px) {
  .contact__inner {
    padding-inline: var(--inner-width);
  }
}

.contact__content {
  margin-top: 21px;
}
@media not screen and (min-width: 768px) {
  .contact__content {
    margin-top: 0;
  }
}

.contact__text {
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .contact__text {
    display: none;
  }
}

.contact__form {
  margin-top: 75px;
}
@media not screen and (min-width: 768px) {
  .contact__form {
    margin-top: 76px;
  }
}

.form-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 49px;
}
@media not screen and (min-width: 768px) {
  .form-fields {
    gap: 20px;
  }
}

.form-field {
  display: grid;
  grid-template-columns: 195px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media not screen and (min-width: 768px) {
  .form-field {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
.form-field:has(.form-textarea) {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.form-field:has(.form-textarea) .form-field__head {
  margin-top: 9px;
}
@media not screen and (min-width: 768px) {
  .form-field:has(.form-textarea) .form-field__head {
    margin-top: 0;
  }
}

.form-field__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  cursor: pointer;
}
@media not screen and (min-width: 768px) {
  .form-field__label {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.form-field__label-ja {
  font-size: 16px;
  line-height: 1;
}
@media not screen and (min-width: 768px) {
  .form-field__label-ja {
    line-height: 1.875;
  }
}

.form-field__label-en {
  font-size: 14px;
  line-height: 1;
}
@media not screen and (min-width: 768px) {
  .form-field__label-en {
    line-height: 1.583;
  }
}

.form-text {
  width: 100%;
  border-radius: 10px;
  border: 1px solid transparent;
  background: var(--bg-color-white);
  padding: 4px 20px 1px 20px;
}
@media not screen and (min-width: 768px) {
  .form-text {
    padding: 2px 20px 1px 20px;
  }
}
.form-text::-webkit-input-placeholder {
  opacity: 0.5;
}
.form-text::-moz-placeholder {
  opacity: 0.5;
}
.form-text:-ms-input-placeholder {
  opacity: 0.5;
}
.form-text::-ms-input-placeholder {
  opacity: 0.5;
}
.form-text::placeholder {
  opacity: 0.5;
}
@media not screen and (min-width: 768px) {
  .form-text::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 1;
  }
  .form-text::-moz-placeholder {
    font-size: 16px;
    line-height: 1;
  }
  .form-text:-ms-input-placeholder {
    font-size: 16px;
    line-height: 1;
  }
  .form-text::-ms-input-placeholder {
    font-size: 16px;
    line-height: 1;
  }
  .form-text::placeholder {
    font-size: 16px;
    line-height: 1;
  }
}
.form-text:focus, .form-text:focus-visible {
  outline: none;
  border-color: var(--theme-color-blue);
}
.form-text:invalid {
  outline: none;
  border-color: var(--invalid-border-color);
  background: var(--invalid-bg-color);
}

.form-textarea {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: var(--bg-color-white);
  padding: 4px 20px 1px 20px;
}
@media not screen and (min-width: 768px) {
  .form-textarea {
    height: 300px;
  }
}
.form-textarea::-webkit-input-placeholder {
  opacity: 0.5;
}
.form-textarea::-moz-placeholder {
  opacity: 0.5;
}
.form-textarea:-ms-input-placeholder {
  opacity: 0.5;
}
.form-textarea::-ms-input-placeholder {
  opacity: 0.5;
}
.form-textarea::placeholder {
  opacity: 0.5;
}
.form-textarea:focus, .form-textarea:focus-visible {
  outline: none;
  border-color: var(--theme-color-blue);
}
.form-textarea:invalid {
  outline: none;
  border-color: var(--invalid-border-color);
  background: var(--invalid-bg-color);
}

.privacy-policy {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 195px 1fr;
}
@media not screen and (min-width: 768px) {
  .privacy-policy {
    margin-top: 32px;
    grid-template-columns: 1fr;
  }
}

.privacy-policy__wrapper {
  grid-column: 2/3;
  height: 250px;
  background: var(--bg-color-white);
  padding: 20px 170px 20px 20px;
  border-radius: 10px;
  overflow-y: scroll;
}
@media not screen and (min-width: 768px) {
  .privacy-policy__wrapper {
    grid-column: initial;
    height: 246px;
    padding: 12px 40px 36px 20px;
  }
}
.privacy-policy__wrapper::-webkit-scrollbar {
  width: 20px;
}
.privacy-policy__wrapper::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--theme-color-blue);
}
.privacy-policy__wrapper::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #d9d9d9;
}

.privacy-policy__block {
  margin-top: 20px;
}
.privacy-policy__block a {
  color: #2c4198;
  text-decoration: underline;
}

.privacy-policy__head {
  font-size: 14px;
  line-height: 2.14;
  opacity: 0.5;
}

h5.privacy-policy__head {
  margin-top: 12px;
}

.privacy-policy__text {
  font-size: 14px;
  line-height: 2.14;
  opacity: 0.5;
}

ul.privacy-policy__list {
  list-style: disc;
  list-style-position: inside;
}

.privacy-policy__item {
  font-size: 14px;
  line-height: 2.14;
  opacity: 0.5;
}

.privacy-policy__date {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  line-height: 2.14;
  opacity: 0.5;
}

.privacy-policy__name {
  text-align: center;
  font-size: 14px;
  line-height: 2.14;
  opacity: 0.5;
}

.contact__privacy-wrapper {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 195px 1fr;
}
@media not screen and (min-width: 768px) {
  .contact__privacy-wrapper {
    margin-top: 26px;
    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;
  }
}

.contact__privacy {
  grid-column: 2/3;
}
@media not screen and (min-width: 768px) {
  .contact__privacy {
    grid-column: initial;
  }
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.form-checkbox__input:focus + .wpcf7-list-item-label::before, .form-checkbox__input:focus-visible + .wpcf7-list-item-label::before {
  border-color: var(--theme-color-blue);
}

.form-checkbox__input + .wpcf7-list-item-label {
  --checkbox-width: 25px;
  --checkbox-height: 25px;
  --checkbox-text-gap: 11px;
  position: relative;
  padding-left: calc(var(--checkbox-width) + var(--checkbox-text-gap));
  font-size: 14px;
  line-height: 2;
  cursor: pointer;
}
.form-checkbox__input + .wpcf7-list-item-label::before, .form-checkbox__input + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
}
.form-checkbox__input + .wpcf7-list-item-label::before {
  width: var(--checkbox-width);
  height: var(--checkbox-height);
  background: var(--bg-color-white);
  border: 1px solid transparent;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__input + .wpcf7-list-item-label::after {
  width: 18px;
  height: 11px;
  border-left: 2px solid var(--theme-color-blue);
  border-bottom: 2px solid var(--theme-color-blue);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 4px;
  top: 2px;
  opacity: 0;
}

.contact__buttons {
  margin-top: 91px;
  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;
}
@media not screen and (min-width: 768px) {
  .contact__buttons {
    margin-top: 42px;
  }
}

.contact__button {
  position: relative;
  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;
  gap: 14px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 15px;
  padding-right: 15px;
  min-width: 368px;
  border-radius: 200px;
  color: var(--font-color-white);
  background: var(--theme-color-blue);
  border: 1px solid var(--theme-color-blue);
  cursor: pointer;
}
@media not screen and (min-width: 768px) {
  .contact__button {
    min-width: clamp(320.3980099502px, 91.5422885572vw, 368px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .contact__button {
    -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  }
  .contact__button:hover {
    color: var(--theme-color-blue);
    background-color: var(--bg-color-white);
  }
}

.contact__wpcf7-button {
  position: absolute;
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 200px;
  opacity: 0;
  color: transparent;
  cursor: pointer;
}

.contact__button-icon {
  width: 51px;
  height: 27px;
}
@media not screen and (min-width: 768px) {
  .contact__button-icon {
    width: 50px;
    height: 26px;
  }
}

.contact__button-text {
  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: start;
  gap: 4px;
}

.contact__button-text-ja {
  line-height: 1;
}

.contact__button-text-en {
  font-size: 14px;
  line-height: 1;
}

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

.wpcf7-spinner {
  display: none;
}

/* ===========================================
404ページ
=========================================== */
.not-found {
  padding-top: calc(156px + var(--header-height));
  padding-bottom: 150px;
}
@media not screen and (min-width: 768px) {
  .not-found {
    padding-top: calc(143px + var(--header-height));
    padding-bottom: 287px;
  }
}

@media not screen and (min-width: 768px) {
  .not-found__inner.inner {
    padding-inline: 12px;
  }
}

.not-found__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.not-found__heading-en {
  font-family: var(--font-family-accent-ja);
  font-size: 100px;
  line-height: 1.1;
}

.not-found__heading-ja {
  font-size: 26px;
  line-height: 1.923;
}
@media not screen and (min-width: 768px) {
  .not-found__heading-ja {
    font-size: 24px;
    line-height: 2.08;
  }
}

.not-found__text {
  margin-top: 55px;
  text-align: center;
  color: var(--font-color-black2);
  line-height: 2.22;
}
@media not screen and (min-width: 768px) {
  .not-found__text {
    margin-top: 24px;
    font-size: 14px;
  }
}

.not-found__buttons {
  margin-top: 70px;
  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;
}
@media not screen and (min-width: 768px) {
  .not-found__buttons {
    margin-top: 60px;
  }
}

.not-found__button {
  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;
  gap: 14px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 15px;
  padding-right: 15px;
  min-width: 368px;
  border-radius: 200px;
  color: var(--font-color-white);
  background: var(--theme-color-blue);
  border: 1px solid var(--theme-color-blue);
}
@media not screen and (min-width: 768px) {
  .not-found__button {
    min-width: clamp(320.3980099502px, 91.5422885572vw, 368px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .not-found__button {
    -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  }
  .not-found__button:hover {
    color: var(--theme-color-blue);
    background-color: var(--bg-color-white);
  }
}

.not-found__button-icon {
  width: 51px;
  height: 27px;
}
@media not screen and (min-width: 768px) {
  .not-found__button-icon {
    width: 50px;
    height: 26px;
  }
}

.not-found__button-text {
  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: start;
  gap: 4px;
}

.not-found__button-text-ja {
  line-height: 1;
}

.not-found__button-text-en {
  font-size: 14px;
  line-height: 1;
}

/* ===========================================
フッター
=========================================== */
.footer {
  position: relative;
  padding-top: 150px;
  padding-bottom: 37px;
  background: url(../img/footer-bg.webp) no-repeat center center/cover;
}
@media not screen and (min-width: 768px) {
  .footer {
    padding-bottom: 87px;
  }
}
.footer::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color-blue);
  mix-blend-mode: multiply;
}

.footer__content {
  position: relative;
  z-index: 10;
}

.footer__logo {
  text-align: center;
}
.footer__logo img {
  max-width: 318px;
  width: 100%;
}

.footer__nav {
  margin-top: 82px;
}
@media not screen and (min-width: 768px) {
  .footer__nav {
    margin-top: 52px;
  }
}

.footer-nav__list {
  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;
  gap: 52px;
}
@media not screen and (min-width: 768px) {
  .footer-nav__list {
    gap: 30px;
  }
}

.footer-nav__link {
  color: var(--bg-color-white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.19;
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav__link {
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
  .footer-nav__link:hover {
    opacity: 0.7;
  }
}

.footer__copyright {
  margin-top: 68px;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 34px;
  }
}

.footer__copyright-text {
  color: var(--font-color-white);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.58;
}

.top-button {
  overflow: hidden;
  position: absolute;
  z-index: 10;
  top: 0;
  right: 124px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100px;
  height: 100px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.top-button.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (hover: hover) and (pointer: fine) {
  .top-button:hover .top-button__above,
  .top-button:hover .top-button__below {
    opacity: 0.7;
  }
}
@media not screen and (min-width: 768px) {
  .top-button {
    right: 50px;
    width: 50px;
    height: 50px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top-button {
    right: 50px;
    width: 50px;
    height: 50px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 12px;
  }
}

.top-button__icon {
  position: absolute;
  z-index: 11;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 37px;
  height: 70px;
}
.top-button__icon img {
  vertical-align: baseline;
}
@media not screen and (min-width: 768px) {
  .top-button__icon {
    width: 18px;
    height: 35px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top-button__icon {
    width: 18px;
    height: 35px;
  }
}

.top-button__above {
  position: relative;
  display: block;
  z-index: 10;
  width: 100%;
  height: 50%;
  background: var(--theme-color-blue);
  pointer-events: none;
}

.top-button__below {
  position: relative;
  display: block;
  z-index: 10;
  width: 100%;
  height: 50%;
  background: var(--bg-color-green);
}