/*------------------------------------------------------------------------------
  common
------------------------------------------------------------------------------*/
:root {
  /* ===== カラーパレット ===== */
  /* プリミティブカラー */
  --blue01: #3054a6;
  --blue02: #8fa3d1;
  --blue03: #eaf0fb;
  --blue04: #1f3872;
  --black: #1a1c21;
  --white: #ffffff;
  --gray01: #efeeea;
  --gray02: #6f6e6c;
  --yellow: #f2d402;
  --orange: #f08c1f;
  --red: #ff0000;

  /* セマンティックカラー */
  --button-primary: var(--blue01);
  --button-secondary: var(--white);

  --text-default: var(--black);
  --text-subtle: var(--gray02);
  --text-subtle2: var(--white);
  --text-subtle3: var(--blue04);
  --text-accent: var(--blue02);

  --bg-default: var(--white);
  --bg-subtle: var(--gray01);
  --bg-accent: var(--blue03);
  --bg-footer: var(--blue01);

  --icon-primary: var(--blue01);
  --icon-secondary: var(--black);
  --icon-accent: var(--yellow);
  --icon-required: var(--red);

  --border-default: var(--gray02);
  --border-subtle: var(--blue01);
  --border-subtle2: var(--white);
  --border-accent: var(--yellow);

  /* ===== タイポグラフィ ===== */
  --font-ja: "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Noto Sans JP", sans-serif;
  --font-en: "Ubuntu", "Roboto", "Helvetica Neue", Arial, sans-serif;

  /* ===== スペーシング ===== */
  --space-0: 2px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;
  --space-40: 160px;
  --space-48: 192px;
  --space-56: 224px;
  --space-64: 256px;

  /* ===== ボーダーラディウス ===== */
  --radius-none: 0px;
  --radius-sm: 2px;
  --radius-base: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-2xl: 16px;
  --radius-3xl: 32px;
  --radius-4xl: 48px;
  --radius-full: 9999px;

  /* ===== シャドウ ===== */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-base: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
  font-family: var(--font-ja);
  line-height: 1.6;
  color: var(--text-default);
  margin: 0;
  padding: 0;
}

.u-sp-br {
  display: none;
}

.main-button,
.sub-button {
  all: unset;
  box-sizing: border-box;
  display: flex;
  min-width: 160px;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 8px 30px;
  background-color: var(--button-primary);
  border-radius: 8px;
  border: 1px solid;
  border-color: var(--border-subtle);
  transition: all var(--transition-base);
}

.sub-button {
  background-color: var(--button-secondary);
  border-color: var(--border-subtle);
  padding-left: var(--space-4);
}

.main-button span,
.sub-button span {
  color: var(--text-subtle2);
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: normal;
}

.sub-button span {
  color: var(--text-subtle3);
}

.main-button:hover {
  background-color: var(--bg-default);
  box-shadow: var(--shadow-md);
}

.main-button:hover span {
  color: var(--text-subtle3);
}

.sub-button:hover {
  background-color: var(--bg-accent);
  box-shadow: var(--shadow-md);
}

/*------------------------------------------------------------------------------
  header
------------------------------------------------------------------------------*/
.header {
  width: 100%;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: all var(--transition-base);
}
@media screen and (max-width: 1000px) {
  .header-inner {
    max-width: clamp(600px, 85%, 700px);
  }
}

/* スクロール時のヘッダースタイル */
.header.scrolled {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: saturate(160%) blur(6px);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
}
@media screen and (max-width: 1440px) {
  .header-inner {
    max-width: clamp(800px, 85%, 1200px);
  }
}
@media screen and (max-width: 1200px) {
  .header-inner {
    max-width: clamp(700px, 90%, 850px);
  }
}
@media screen and (max-width: 1000px) {
  .header-inner {
    max-width: clamp(600px, 85%, 700px);
  }
}
@media screen and (max-width: 768px) {
  .header-inner {
    max-width: 100%;
    padding: var(--space-2) var(--space-5);
    padding-left: var(--space-6);
  }
}

.header .logo-link {
  display: flex;
  align-items: center;
}

.header .logo {
  position: relative;
  flex: 0 0 auto;
  height: clamp(
    2.375rem,
    1.518rem + 1.79vw,
    3.125rem
  ); /* min38px max50px, min768px max1440px  */
  z-index: 101;
}
@media screen and (max-width: 1440px) {
  .header .logo {
    height: 42px;
  }
}
@media screen and (max-width: 1200px) {
  .header .logo {
    height: 36px;
  }
}
@media screen and (max-width: 768px) {
  .header .logo {
    height: 24px;
  }
}

.header .navigation-wrapper {
  height: 60px;
  padding: 0px var(--space-10);
  background-color: var(--white);
  border-radius: 100px;
  box-shadow: 0px 0px 10px rgba(48, 84, 166, 0.15);
  display: inline-flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .header .navigation-wrapper {
    padding: 0px var(--space-5);
  }
}
@media screen and (max-width: 1000px) {
  .header .navigation-wrapper {
    display: none;
  }
}

.header .navigation {
  gap: 24px;
  display: inline-flex;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}
@media screen and (max-width: 1200px) {
  .header .navigation {
    gap: 16px;
  }
}

.header .menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  text-decoration: none;
  color: var(--text-default);
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: normal;
  transition: all var(--transition-fast);
}

.header .menu:hover {
  color: var(--text-subtle3);
  text-decoration: underline;
}

/* ハンバーガーメニュー */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 36px;
  height: 36px;
  background: var(--bg-default);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  padding: 9px;
  z-index: 101;
}
@media screen and (max-width: 1000px) {
  .hamburger-menu {
    display: flex;
  }
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--button-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

/* ハンバーガーメニューがアクティブ時のスタイル */
.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* モバイルナビゲーション */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-footer);
  z-index: 100;
  padding-top: 100px;
  padding-inline: var(--space-5);
  transform: translateX(-100%);
  transition: transform var(--transition-base);
}
@media screen and (max-width: 1000px) {
  .mobile-nav {
    display: block;
  }
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav .mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.mobile-nav .mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px solid var(--border-subtle2);
}

.mobile-nav .mobile-nav-item:first-child {
  border-top: 1px solid var(--border-subtle2);
}

.mobile-nav-item.mobile-nav-item--button {
  border-bottom: none;
  margin-top: var(--space-8);
  width: fit-content;
  margin-inline: auto;
}

.mobile-nav img {
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
  position: absolute;
  z-index: 10;
  top: 50%;
  right: var(--space-3);
  transform: translateY(-50%);
}

.mobile-nav .mobile-nav-link {
  display: block;
  color: var(--text-subtle2);
  text-decoration: none;
  text-align: start;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.7px;
  padding: var(--space-4) var(--space-3);
  width: 100%;
}

.mobile-nav .mobile-nav-link:hover {
  text-decoration: underline;
}

/*------------------------------------------------------------------------------
  fv
------------------------------------------------------------------------------*/
.fv {
  width: 100%;
  height: 892px;
  background-color: var(--bg-default);
  margin-top: -92px;
  z-index: 1;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .fv {
    height: 580px;
    margin-top: 0;
  }
}

.fv .fv__bg {
  position: absolute;
  width: 326px;
  height: 1400px;
  top: 0;
  left: 0;
  background-color: var(--bg-footer);
  border-radius: 0px 0px var(--radius-4xl) 0px;
  z-index: 0;
}
@media screen and (max-width: 1000px) {
  .fv .fv__bg {
    width: 200px;
    height: 680px;
    border-radius: 0px 0px var(--radius-3xl) 0px;
  }
}

.fv .fv__inner {
  position: relative;
  width: 95%;
  height: 100%;
  margin: 0 auto;
  margin-right: 0;
  background-color: var(--bg-accent);
  border-radius: 0px 0px 0px var(--radius-4xl);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .fv .fv__inner {
    width: 100%;
    margin-left: var(--space-5);
  }
}

.fv .fv__content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
}
@media screen and (max-width: 1000px) {
  .fv .fv__content {
    padding: 0 var(--space-20) 0 var(--space-12);
    flex-direction: column;
  }
}
@media screen and (max-width: 500px) {
  .fv .fv__content {
    align-items: flex-start;
  }
}

.fv .fv__catch {
  font-family: var(--font-ja);
  color: var(--text-default);
  font-size: clamp(1.5rem, -1.357rem + 5.95vw, 4rem); /* 24-64,768-1440 */
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3.2px;
  white-space: nowrap;
  margin-bottom: var(--space-6);
}
@media screen and (max-width: 1000px) {
  .fv .fv__catch {
    font-size: 40px;
  }
}
@media screen and (max-width: 540px) {
  .fv .fv__catch .u-sp-br {
    display: block;
  }
}

.fv .fv__marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.fv .fv__marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 80px;
  padding-left: 100vw;
  will-change: transform;
  animation: fv-marquee 40s linear infinite;
}

.fv .fv__subtitle {
  font-family: var(--font-en);
  color: var(--text-subtle2);
  font-size: 120px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 6px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .fv .fv__subtitle {
    font-size: 64px;
    letter-spacing: 3.2px;
  }
}

@keyframes fv-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.fv .fv__image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -50px;
}
@media screen and (max-width: 768px) {
  .fv .fv__image {
    margin-left: 0;
  }
}

.fv svg {
  position: relative;
  width: clamp(18.75rem, -0.536rem + 40.18vw, 35.625rem);
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .fv svg {
    max-width: 300px;
    width: 100%;
  }
}

.fv__image svg path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation-fill-mode: forwards;
}

@keyframes drawToZero {
  to {
    stroke-dashoffset: 0;
  }
}

/*------------------------------------------------------------------------------
  section common
------------------------------------------------------------------------------*/
.section-title {
  text-align: center;
  margin-bottom: var(--space-24);
}
@media screen and (max-width: 768px) {
  .section-title {
    margin-bottom: var(--space-12);
  }
}

.section-title .en-title {
  font-family: var(--font-en);
  color: var(--text-default);
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.8px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .section-title .en-title {
    font-size: 36px;
    letter-spacing: 1.8px;
  }
}

.section-title .ja-title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-title .ja-title .icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .section-title .ja-title .icon {
    width: 18px;
    height: 18px;
  }
}

.section-title .ja-title .ja {
  font-family: var(--font-ja);
  color: var(--text-default);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  .section-title .ja-title .ja {
    font-size: 14px;
    letter-spacing: 0.7px;
  }
}

/*------------------------------------------------------------------------------
  about-us
------------------------------------------------------------------------------*/
.about-us {
  width: 100%;
  padding: var(--space-40) 0;
  padding-bottom: var(--space-24);
}
@media screen and (max-width: 768px) {
  .about-us {
    padding-top: var(--space-48);
    padding-bottom: 0;
    padding-inline: var(--space-5);
  }
}

.about-us__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-20);
}
@media screen and (max-width: 768px) {
  .about-us__inner {
    margin: 0;
    padding: 0;
  }
}

.about-us .container {
  display: flex;
  gap: var(--space-16);
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .about-us .container {
    flex-direction: column;
    row-gap: var(--space-8);
    align-items: center;
  }
}

.about-us__image {
  flex: 1;
  display: flex;
  justify-content: center;
  z-index: 2;
  position: sticky;
  top: 140px;
  align-self: flex-start;
}
@media screen and (max-width: 1000px) {
  .about-us__image {
    position: static;
    width: 100%;
  }
}

.about-us-img {
  width: 100%;
  max-width: 578px;
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 1000px) {
  .about-us-img {
    margin: auto;
  }
}

.about-us__content {
  flex: 1.5;
}

.about-us__lead {
  font-family: var(--font-ja);
  font-weight: 600;
  color: var(--text-subtle3);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
  margin-bottom: var(--space-16);
}
@media screen and (max-width: 768px) {
  .about-us__lead {
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: var(--space-6);
  }
}

.about-us__text,
.about-us__text-blue {
  font-family: var(--font-ja);
  color: var(--text-default);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.8px;
  margin-bottom: var(--space-8);
}
@media screen and (max-width: 768px) {
  .about-us__text,
  .about-us__text-blue {
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0.7px;
    margin-bottom: var(--space-4);
  }
}

.about-us__text--blue {
  color: var(--text-subtle3);
  font-weight: 700;
}

.about-us__slogan {
  font-family: var(--font-ja);
  color: var(--text-subtle3);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 1.2px;
  margin-bottom: var(--space-8);
}
@media screen and (max-width: 768px) {
  .about-us__slogan {
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 1px;
    margin-bottom: var(--space-4);
  }
}

.no-spacing {
  margin-bottom: 0;
}

/*------------------------------------------------------------------------------
  services
------------------------------------------------------------------------------*/
.services {
  width: 100%;
  padding: var(--space-24) 0;
}
@media screen and (max-width: 768px) {
  .services {
    padding-inline: var(--space-5);
    padding-top: var(--space-24);
    padding-bottom: 0;
  }
}

.services__inner {
  width: 100%;
  max-width: 1728px;
  margin-inline: auto;
}

.service__item {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: fit-content;
  margin-left: 0;
  margin-right: auto;
}

.service__item--reverse {
  flex-direction: row-reverse;
  margin-left: auto;
  margin-right: 0;
  margin-top: var(--space-24);
}

@media screen and (max-width: 768px) {
  .service__item,
  .service__item--reverse {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-inline: 0;
  }
  .service__item--reverse {
    margin-top: var(--space-12);
  }
}

.service-content {
  max-width: 1000px;
  padding: 60px 120px 60px 180px;
  border-radius: 0 32px 32px 0;
  background: var(--bg-accent);
}

.service__item--reverse .service-content {
  padding: 60px 180px 60px 120px;
  border-radius: var(--radius-3xl) 0 0 var(--radius-3xl);
}

@media screen and (min-width: 1440px) {
  .service-content,
  .service__item--reverse .service-content {
    border-radius: var(--radius-3xl);
  }
}
@media screen and (max-width: 1440px) {
  .service-content,
  .service__item--reverse .service-content {
    padding-inline: var(--space-32);
  }
}
@media screen and (max-width: 1000px) {
  .service-content,
  .service__item--reverse .service-content {
    padding-inline: var(--space-12);
  }
}
@media screen and (max-width: 768px) {
  .service-content,
  .service__item--reverse .service-content {
    max-width: 100%;
    padding: 30px var(--space-3);
    border-radius: 24px 24px 0 0;
  }
}

.service-title {
  font-family: var(--font-ja);
  color: var(--text-subtle3);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
  margin-bottom: var(--space-16);
}
@media screen and (max-width: 768px) {
  .service-title {
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: var(--space-6);
  }
}

.service__text {
  font-family: var(--font-ja);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.8px;
  margin-bottom: var(--space-8);
}
@media screen and (max-width: 768px) {
  .service__text {
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0.7px;
    margin-bottom: var(--space-6);
  }
}

.service-details {
  margin-bottom: var(--space-8);
  display: flex;
  flex-direction: column;
  row-gap: var(--space-6);
}
@media screen and (max-width: 768px) {
  .service-details {
    margin-bottom: var(--space-6);
    row-gap: var(--space-4);
  }
}

.service-details__title {
  font-family: var(--font-ja);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  .service-details__title {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}

.service-details__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  list-style: none;
  padding: 0;
  margin: 0;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .service-details__list {
    width: 100%;
  }
}

.service-details__list li {
  display: flex;
  width: 220px;
  padding-block: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-accent);
  background: var(--bg-default);

  font-family: var(--font-ja);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 768px) {
  .service-details__list li {
    width: auto;
    font-size: 13px;
    letter-spacing: 0.65px;
  }
}

@media screen and (max-width: 768px) {
  .service-details__list li .u-sp-br {
    display: block;
  }
}

.service__image {
  max-width: 400px;
  max-height: 400px;
  margin-left: -48px;
  flex-shrink: 0;
}

.service__item--reverse .service__image {
  margin-left: 0;
  margin-right: -48px;
  z-index: 1;
}

@media screen and (max-width: 1000px) {
  .service__image {
    max-width: 300px;
    max-height: 300px;
    margin-left: -24px;
  }
  .service__item--reverse .service__image {
    margin-right: -24px;
  }
}

@media screen and (max-width: 850px) {
  .service__image {
    max-width: 240px;
    max-height: 240px;
  }
}

@media screen and (max-width: 768px) {
  .service__image,
  .service__item--reverse .service__image {
    margin: 0;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
  }
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1;
  border-radius: var(--radius-3xl);
}
@media screen and (max-width: 768px) {
  .service-img {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}

/*------------------------------------------------------------------------------
  company
------------------------------------------------------------------------------*/
.company {
  width: 100%;
  padding-block: var(--space-24);
}
@media screen and (max-width: 768px) {
  .company {
    width: 100%;
    padding-inline: var(--space-5);
    padding-top: var(--space-24);
    padding-bottom: var(--space-12);
  }
}

.company__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-5);
}
@media screen and (max-width: 768px) {
  .company__inner {
    max-width: 100%;
    padding: 0;
  }
}

.company__list {
  width: 100%;
}

.company__item {
  display: flex;
  border-top: 1px solid var(--border-default);
  padding: var(--space-6);
}
@media screen and (max-width: 768px) {
  .company__item {
    flex-direction: column;
    row-gap: var(--space-1);
    padding: var(--space-4) var(--space-3);
  }
}

.company__item:last-child {
  border-bottom: 1px solid var(--border-default);
}

.company__item-label {
  width: 100%;
  max-width: 200px;

  font-family: var(--font-ja);
  color: var(--text-subtle3);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  .company__item-label {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}

.company__item-content {
  flex: 1 1 auto;
  font-family: var(--font-ja);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 768px) {
  .company__item-content {
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0.7px;
  }
}

.company__item-content a {
  color: var(--text-default);
  text-decoration: none;
}

.company__item-content a:hover {
  color: var(--text-subtle3);
  text-decoration: underline;
}

/*------------------------------------------------------------------------------
  contact
------------------------------------------------------------------------------*/
.contact {
  width: 100%;
  position: relative;
  z-index: 2;
}

.contact__inner {
  padding: var(--space-24) var(--space-5);
  margin-inline: auto;
  background-color: var(--bg-accent);
  border-radius: var(--radius-4xl);
}
@media screen and (max-width: 768px) {
  .contact__inner {
    padding-inline: var(--space-5);
    padding-top: var(--space-24);
    padding-bottom: var(--space-12);
  }
}

.contact__description {
  text-align: center;
  margin-bottom: var(--space-8);
}
@media screen and (max-width: 768px) {
  .contact__description {
    text-align: start;
    margin-bottom: var(--space-5);
  }
}

.contact__lead {
  font-family: var(--font-ja);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.9px;
  margin-bottom: var(--space-8);
}
@media screen and (max-width: 768px) {
  .contact__lead {
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0.7px;
    margin-bottom: var(--space-5);
  }
}

.contact__instruction {
  font-family: var(--font-ja);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 768px) {
  .contact__instruction {
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0.7px;
  }
}

.contact__form {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact__form-group {
  width: 100%;
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .contact__form-group {
    margin-bottom: var(--space-3);
    flex-direction: column;
    align-items: flex-start;
    row-gap: var(--space-1);
  }
}

.contact__form-label {
  width: 100%;
  margin-bottom: var(--space-2);

  font-family: var(--font-ja);
  color: var(--text-subtle3);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  .contact__form-label {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}

.contact__required {
  color: var(--icon-required);
}

.contact__form-input,
.contact__form-textarea {
  width: 100%;
  padding: var(--space-3);
  border-radius: var(--radius-lg);
  border: none;
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.5;
}

.contact__form-input:focus,
.contact__form-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(48, 84, 166, 0.1);
}

.contact__form-input::placeholder,
.contact__form-textarea::placeholder {
  color: var(--text-subtle);
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .contact__form-input,
  .contact__form-textarea {
    font-size: 14px;
    line-height: 1.3;
  }
}

.form-error {
  color: var(--icon-required);
  font-size: 14px;
  margin-top: var(--space-1);
  font-family: var(--font-ja);
  font-weight: 500;
  display: block;
  position: relative;
  z-index: 1;
}

.contact__form-input.error,
.contact__form-textarea.error {
  border-color: var(--icon-required);
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.1);
}

.contact__form-textarea {
  resize: vertical;
  min-height: 260px;
}
@media screen and (max-width: 768px) {
  .contact__form-textarea {
    min-height: 200px;
  }
}

.contact__privacy {
  margin: var(--space-8) 0;
}
@media screen and (max-width: 768px) {
  .contact__privacy {
    margin: var(--space-5) 0;
  }
}

.contact__privacy-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .contact__privacy-label {
    align-items: flex-start;
  }
}

.contact__privacy input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  accent-color: var(--button-primary);
}
@media screen and (max-width: 768px) {
  .contact__privacy input[type="checkbox"] {
    margin-top: 5px;
  }
}

.contact__privacy-text {
  font-family: var(--font-ja);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.8px;
}

.contact__privacy a {
  color: var(--text-subtle3);
  text-decoration: none;
}

.contact__privacy a:hover {
  text-decoration: underline;
}

.contact__form .main-button {
  width: 160px;
}

/*------------------------------------------------------------------------------
  page common
------------------------------------------------------------------------------*/
.page-title {
  width: 100%;
  height: 450px;
  text-align: center;
  background-color: var(--bg-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--space-48);
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .page-title {
    height: 300px;
    text-align: center;
    padding-top: var(--space-32);
  }
}

.page-title .en-title {
  font-family: var(--font-en);
  color: var(--text-default);
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.8px;
  margin: 0;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .page-title .en-title {
    font-size: 36px;
    letter-spacing: 1.8px;
  }
}

.page-title .ja-title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.page-title .ja-title .icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .page-title .ja-title .icon {
    width: 18px;
    height: 18px;
  }
}

.page-title .ja-title .ja {
  font-family: var(--font-ja);
  color: var(--text-default);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 768px) {
  .page-title .ja-title .ja {
    font-size: 14px;
    letter-spacing: 0.7px;
  }
}

.page-title-icon {
  position: absolute;
  top: 0;
  right: 10%;
  max-width: 480px;
  width: 100%;
  object-fit: cover;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .page-title-icon {
    top: auto;
    bottom: 0;
    right: var(--space-5);
    width: 230px;
    object-fit: contain;
  }
}

/*------------------------------------------------------------------------------
  privacy policy
------------------------------------------------------------------------------*/
.policy {
  width: 100%;
  background: var(--bg-default);
}

.policy__inner {
  margin: 0 auto;
}

.policy__content {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  padding-block: var(--space-24);
}
@media screen and (max-width: 768px) {
  .policy__content {
    padding-block: var(--space-12);
    padding-inline: var(--space-5);
    padding-bottom: 0;
  }
}

.policy__lead {
  font-family: var(--font-ja);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.8px;
  margin-bottom: var(--space-5);
}
@media screen and (max-width: 768px) {
  .policy__lead {
    font-size: 14px;
    letter-spacing: 0.7px;
    margin-bottom: var(--space-16);
  }
}

.policy__section {
  margin-bottom: var(--space-12);
}
@media screen and (max-width: 768px) {
  .policy__lead {
    margin-bottom: var(--space-8);
  }
}

.policy__heading {
  font-family: var(--font-ja);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
  margin-bottom: var(--space-6);
}
@media screen and (max-width: 768px) {
  .policy__heading {
    font-size: 16px;
    letter-spacing: 0.8px;
    margin-bottom: var(--space-5);
  }
}

.policy__section p,
.policy__section li {
  font-family: var(--font-ja);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 768px) {
  .policy__section p,
  .policy__section li {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.7px;
  }
}

.policy__section a {
  color: var(--text-subtle3);
  font-weight: 700;
}

.policy__section a:hover {
  text-decoration: underline;
}

.policy__list {
  margin: 0;
  margin-left: 1.3em;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .policy__list {
    margin: 0;
    margin-left: 1.3em;
    padding: 0;
  }
}

.policy__list ol,
.policy__list ul {
  margin: 0;
  margin-left: 1.3em;
  padding: 0;
}

.policy__list ul {
  list-style: disc;
}

.policy__list ul li span {
  vertical-align: -0.15em;
}

.policy__list ul li::marker {
  font-size: 10px;
}

.policy__company {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 768px) {
  .policy__company {
    font-size: 14px;
    letter-spacing: 0.7px;
  }
}

/*------------------------------------------------------------------------------
  footer
------------------------------------------------------------------------------*/
.footer {
  width: 100%;
  background-color: var(--bg-footer);
  color: var(--text-subtle2);
  margin-top: -40px;
  z-index: 0;
}

.footer__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-24) var(--space-5) var(--space-16);
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding-top: var(--space-20);
    padding-bottom: var(--space-12);
  }
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-5);
}
@media screen and (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    row-gap: var(--space-4);
    align-items: center;
    margin-bottom: var(--space-4);
  }
}

.footer__logo img {
  height: auto;
  width: 200px;
}
@media screen and (max-width: 768px) {
  .footer__logo img {
    width: 160px;
  }
}

.footer__navigation {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: var(--space-3);
}
@media screen and (max-width: 768px) {
  .footer__navigation {
    align-items: center;
    row-gap: var(--space-2);
  }
}

.footer__nav ul {
  display: flex;
  column-gap: var(--space-6);
  list-style: none;
}
@media screen and (max-width: 768px) {
  .footer__nav ul {
    flex-direction: column;
    align-items: center;
    row-gap: var(--space-2);
  }
}

.footer__nav a {
  color: var(--text-subtle2);
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 768px) {
  .footer__nav a {
    font-size: 14px;
    letter-spacing: 0.7px;
  }
}

.footer__nav a:hover,
.footer__privacy:hover {
  text-decoration: underline;
}

.footer__privacy {
  color: var(--text-subtle2);
  text-decoration: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.7px;
}

.footer__copyright {
  font-family: var(--font-ja);
  color: var(--text-subtle2);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.6px;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.55px;
  }
}

/*------------------------------------------------------------------------------
  reveal animations
------------------------------------------------------------------------------*/
.reveal,
.reveal-up,
.reveal-down,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal {
  transform: translateY(16px);
}

.reveal-up {
  transform: translateY(16px);
}

.reveal-down {
  transform: translateY(-16px);
}

.reveal-left {
  transform: translateX(16px);
}

.reveal-right {
  transform: translateX(-16px);
}

.reveal.is-visible,
.reveal-up.is-visible,
.reveal-down.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-up,
  .reveal-down,
  .reveal-left,
  .reveal-right {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
