:root {
  --color-primary: #009087;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-beige: #b1acba;
  --color-navy: #2a3f54;
  --color-mist-green: #e0f0ee;
  --color-gray: #e7ecec;
  --color-text-gray: #6aad65;
  --color-border-gray: #d6dee6;
  --color-fv-bg: #1e1e1e;
  --color-fv-shadow: #00615c;
  --color-fv-badge-bg: #2a2a2a;
  --color-fv-gold: #b1ac8a;
  --color-fv-border-gray: #e2e8f0;
  --color-text-black: #1e1e1e;
  --color-cta-bg: #007a72;

  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-num: "Roboto", "Helvetica Neue", Arial, sans-serif;
  --font-family-cabin: "Cabin", "Noto Sans JP", sans-serif;

  --header-height-pc: 80px;
  --header-height-sp: 64px;
  --header-padding-pc: 40px;
  --header-padding-sp: 16px;

  --bp-sp: 768px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family-base);
  color: var(--color-black);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

/* ============================
   scroll-reveal animations
   ============================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

[data-reveal-children] > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal-children].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-children].is-visible > *:nth-child(1) {
  transition-delay: 0s;
}
[data-reveal-children].is-visible > *:nth-child(2) {
  transition-delay: 0.1s;
}
[data-reveal-children].is-visible > *:nth-child(3) {
  transition-delay: 0.2s;
}
[data-reveal-children].is-visible > *:nth-child(4) {
  transition-delay: 0.3s;
}
[data-reveal-children].is-visible > *:nth-child(5) {
  transition-delay: 0.4s;
}
[data-reveal-children].is-visible > *:nth-child(6) {
  transition-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-children] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================
   utility: PC/SP visibility
   ============================ */
.is-sp-only,
.is-sp-only-block,
.is-sp-only-flex {
  display: none;
}
@media (max-width: 768px) {
  .is-pc-only,
  .is-pc-only-block,
  .is-pc-only-flex {
    display: none;
  }
  .is-sp-only {
    display: inline;
  }
  .is-sp-only-block {
    display: block;
  }
  .is-sp-only-flex {
    display: flex;
  }
}

/* ============================
   01_header
   ============================ */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: var(--header-height-pc);
  background-color: var(--color-white);
  transition:
    box-shadow 0.4s ease,
    background-color 0.4s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--header-padding-pc);
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
}

.site-header__logo img {
  width: 160px;
  height: 32px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header__cta {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 275px;
  height: 59px;
  padding: 16px 32px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-radius: 8px;
  transition: opacity 0.2s ease;
}

.site-header__cta:hover {
  opacity: 0.85;
}

.site-header__cta-label {
  line-height: 1;
  font-size: 18px;
}

.site-header__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--color-white);
  color: var(--color-primary);
  border-radius: 50%;
}

.site-header__menu {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
}

.site-header__menu-bar {
  display: block;
  width: 100%;
  height: 3.75px;
  background-color: var(--color-primary);
  border-radius: 999px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ============================
   nav-drawer (PC/SP モーダル)
   ============================ */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.nav-drawer.is-open {
  display: flex;
}

.nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 22, 30, 0.72);
}

.nav-drawer__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  padding: 56px 64px 48px;
  background-color: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
  text-align: center;
}

.nav-drawer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-primary);
  transition: opacity 0.2s ease;
}

.nav-drawer__close:hover {
  opacity: 0.7;
}

.nav-drawer__nav {
  margin-bottom: 32px;
}

.nav-drawer__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 320px;
  width: 100%;
}

.nav-drawer__item {
  border-bottom: 1px solid var(--color-border-gray);
}

.nav-drawer__item:first-child {
  border-top: 1px solid var(--color-border-gray);
}

.nav-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
  transition: color 0.2s ease;
}

.nav-drawer__link:hover {
  color: var(--color-primary);
}

.nav-drawer__link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.nav-drawer__cta {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  padding-top: 20px;
}

.nav-drawer__cta .cta__tooltip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  padding: 6px 20px 7px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  border-radius: 16px;
  background-color: var(--color-black);
  color: var(--color-white);
  white-space: nowrap;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

.nav-drawer__cta .cta__tooltip::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 7px;
  background-color: var(--color-black);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.nav-drawer__cta .cta__button {
  width: 380px;
  max-width: 100%;
  min-height: 0;
  height: 76px;
  padding: 0 16px 0 12px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 0 #00615c;
  gap: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.nav-drawer__cta .cta__button-badge {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  padding: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72' fill='none'%3E%3Cpath d='M35.9983 72C32.8809 72 30.1654 69.2741 27.2905 68.5017C24.3187 67.705 20.6056 68.6818 18.0009 67.1717C15.3962 65.6615 14.364 61.9241 12.2199 59.7801C10.0759 57.6361 6.3559 56.6351 4.8284 53.9957C3.30091 51.3564 4.29153 47.6814 3.49488 44.706C2.72593 41.8312 0 39.1156 0 36.0017C0 32.8878 2.72593 30.1689 3.49488 27.294C4.29153 24.3221 3.31823 20.609 4.8284 18.0043C6.33858 15.3996 10.0759 14.364 12.2199 12.22C14.364 10.0759 15.3615 6.35934 18.0009 4.82838C20.6402 3.29743 24.3187 4.29503 27.2905 3.49837C30.1654 2.72597 32.8809 0 35.9983 0C39.1156 0 41.8311 2.72597 44.706 3.49837C47.6779 4.29503 51.391 3.32167 53.9957 4.82838C56.6004 6.33509 57.6326 10.0794 59.7766 12.2234C61.9206 14.3675 65.6372 15.365 67.1681 18.0043C68.6991 20.6437 67.7015 24.3221 68.5017 27.294C69.2706 30.1689 71.9965 32.8844 71.9965 36.0017C71.9965 39.119 69.2706 41.8312 68.4982 44.706C67.7015 47.6814 68.6783 51.391 67.1681 53.9957C65.658 56.6004 61.9206 57.6361 59.7766 59.7801C57.6326 61.9241 56.635 65.6407 53.9922 67.1717C51.3494 68.7026 47.6779 67.705 44.706 68.5017C41.8311 69.2741 39.1121 72 35.9983 72Z' fill='white'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: var(--color-primary);
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: center;
  justify-items: center;
  column-gap: 1px;
  line-height: 1;
}

.nav-drawer__cta .cta__button-badge-label {
  grid-column: 1 / -1;
  position: static;
  transform: none;
  margin: 7px 0 -10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--color-primary);
}

.nav-drawer__cta .cta__button-badge strong {
  grid-row: 2;
  grid-column: 1;
  align-self: baseline;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-primary);
  margin-top: 2px;
}

.nav-drawer__cta .cta__button-badge-unit {
  grid-row: 2;
  grid-column: 2;
  align-self: baseline;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-left: 1px;
  color: var(--color-primary);
}

.nav-drawer__cta .cta__button-label {
  flex: 1;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: var(--color-white);
  text-align: center;
  white-space: nowrap;
}

.nav-drawer__cta .cta__button-arrow {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background-color: var(--color-white);
  color: var(--color-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-drawer__cta .cta__button-arrow svg {
  width: 22px;
  height: 22px;
}

.nav-drawer__cta:hover .cta__button {
  transform: translateY(6px);
  box-shadow: 0 0 0 #00615c;
  opacity: 1;
}

.nav-drawer__cta:hover .cta__tooltip {
  transform: translateX(-50%) translateY(6px);
}

.nav-drawer__close-text {
  font-size: 14px;
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s ease;
}

.nav-drawer__close-text:hover {
  opacity: 0.7;
}

body.is-nav-open {
  overflow: hidden;
}

/* ============================
   01_header - SP
   ============================ */
@media (max-width: 768px) {
  .site-header {
    height: auto;
  }

  .site-header__inner {
    padding: 16px 12px;
  }

  .site-header__logo img {
    width: 100px;
    height: 20px;
  }

  .site-header__actions {
    gap: 12px;
  }

  .site-header__cta {
    flex-shrink: 0;
    width: 180px;
    height: 40px;
    padding: 0 10px;
    gap: 6px;
    border-radius: 4px;
  }

  .site-header__cta-label {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }

  .site-header__cta-arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
  }

  .site-header__menu {
    flex-shrink: 0;
    width: 24px;
    height: 22px;
  }

  .nav-drawer {
    padding: 16px;
  }

  .nav-drawer__panel {
    padding: 48px 20px 32px;
    border-radius: 16px;
  }

  .nav-drawer__close {
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
  }

  .nav-drawer__link {
    padding: 16px 4px;
    font-size: 14px;
  }

  .nav-drawer__nav {
    margin-bottom: 24px;
  }

  .nav-drawer__close-text {
    font-size: 13px;
  }
}

/* ============================
   02_fv
   ============================ */
.fv {
  position: relative;
  min-height: 740px;
  background-color: #0d0d0d;
  background-image: url("../assets/images/img_hero_bg.webp");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  color: var(--color-white);
  overflow: hidden;
}

.fv__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px 64px;
}

.fv__content {
  max-width: 600px;
}

.fv__tag {
  margin: 0 0 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: var(--color-white);
}

.fv__title {
  margin: 0 0 32px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.fv__title-line {
  display: inline-block;
  padding: 0 0.2em;
  background-color: #009087;
  color: var(--color-white);
}

.fv__title-small {
  font-size: 48px;
  color: #e0f0ee;
}

.fv__title-large {
  font-size: 56px;
}

.fv__badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.fv__badge-emblem {
  width: 20px;
  height: auto;
  flex-shrink: 0;
}

.fv__badge-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fv__badge-text {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-white);
  text-align: left;
}

.fv__badge-number {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #b1ac8a;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.fv__badge-number-strong {
  font-size: 48px;
  line-height: 1;
  margin-left: 2px;
  color: #b1ac8a;
}

.fv__lead {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}

.fv__desc {
  margin: 0 0 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.fv__note {
  margin: 0;
  display: flex;
  gap: 0.3em;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.fv__note-mark {
  flex-shrink: 0;
}

/* ============================
   02_fv - SP
   ============================ */
@media (max-width: 768px) {
  .fv {
    min-height: auto;
    background-image: none;
    background-color: #1e1e1e;
    color: var(--color-white);
    overflow: hidden;
  }

  .fv::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 320px;
    background-image: url("../assets/images/img_hero_bg_sp.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
  }

  .fv__inner {
    position: relative;
    z-index: 1;
    margin-top: 260px;
    padding: 24px 20px;
  }

  .fv__content {
    max-width: none;
  }

  .fv__tag {
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: var(--color-white);
  }

  .fv__title {
    margin-bottom: 24px;
    gap: 8px;
    line-height: 1.35;
    letter-spacing: 3.6px;
  }

  .fv__title-small {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 3.6px;
    font-feature-settings: "palt";
  }

  .fv__title-large {
    font-size: 36px;
    line-height: 1.35;
    letter-spacing: 3.6px;
    font-feature-settings: "palt";
  }

  .fv__lead {
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--color-white);
  }

  .fv__desc {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.85;
    color: var(--color-white);
  }

  .fv__content > .fv__badge,
  .fv__content > .fv__note {
    display: none;
  }
}

/* ============================
   02_fv-cta (between FV and About, overlapping)
   ============================ */
.fv-cta {
  position: relative;
  z-index: 5;
  padding: 0;
  background-color: transparent;
  display: flex;
  justify-content: center;
  margin: -63px 0;
}

.fv-cta__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.fv-cta__caption {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-white);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.75;
  font-feature-settings: "palt";
}

.fv-cta__bracket {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

.fv-cta__caption-text {
  display: inline-flex;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.75;
  color: #ffffff;
}

.fv-cta .cta__button {
  width: 440px;
  max-width: 100%;
  height: 88px;
  padding: 24px 24px 24px 32px;
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 3px solid var(--color-white);
  border-radius: 12px;
  box-shadow: 0 8px 0 #00615c;
  gap: 12px;
}

.fv-cta .cta__button-label {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .fv-cta {
    margin: -1px 0 0;
    padding: 16px 16px 32px;
    background-color: #1e1e1e;
  }

  .fv-cta__inner {
    gap: 8px;
  }

  .fv-cta__caption {
    font-size: 14px;
    color: var(--color-white);
  }

  .fv-cta__bracket {
    font-size: 14px;
    color: var(--color-white);
  }

  .fv-cta__caption-text {
    color: var(--color-white);
    width: auto;
    height: auto;
  }

  .fv-cta .cta__button {
    width: 100%;
    max-width: 335px;
    height: 76px;
    padding: 0 16px 0 12px;
    background-color: var(--color-white);
    color: var(--color-primary);
    border: none;
    border-radius: 12px;
    box-shadow: 0 6px 0 #00615c;
    gap: 12px;
  }

  .fv-cta .cta__button-label {
    width: auto;
    height: auto;
    margin: 0;
    flex: 1;
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 700;
  }

  .fv-cta .cta__button-badge {
    width: 56px;
    height: 56px;
    padding: 5px 0 0;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72' fill='none'%3E%3Cpath d='M35.9983 72C32.8809 72 30.1654 69.2741 27.2905 68.5017C24.3187 67.705 20.6056 68.6818 18.0009 67.1717C15.3962 65.6615 14.364 61.9241 12.2199 59.7801C10.0759 57.6361 6.3559 56.6351 4.8284 53.9957C3.30091 51.3564 4.29153 47.6814 3.49488 44.706C2.72593 41.8312 0 39.1156 0 36.0017C0 32.8878 2.72593 30.1689 3.49488 27.294C4.29153 24.3221 3.31823 20.609 4.8284 18.0043C6.33858 15.3996 10.0759 14.364 12.2199 12.22C14.364 10.0759 15.3615 6.35934 18.0009 4.82838C20.6402 3.29743 24.3187 4.29503 27.2905 3.49837C30.1654 2.72597 32.8809 0 35.9983 0C39.1156 0 41.8311 2.72597 44.706 3.49837C47.6779 4.29503 51.391 3.32167 53.9957 4.82838C56.6004 6.33509 57.6326 10.0794 59.7766 12.2234C61.9206 14.3675 65.6372 15.365 67.1681 18.0043C68.6991 20.6437 67.7015 24.3221 68.5017 27.294C69.2706 30.1689 71.9965 32.8844 71.9965 36.0017C71.9965 39.119 69.2706 41.8312 68.4982 44.706C67.7015 47.6814 68.6783 51.391 67.1681 53.9957C65.658 56.6004 61.9206 57.6361 59.7766 59.7801C57.6326 61.9241 56.635 65.6407 53.9922 67.1717C51.3494 68.7026 47.6779 67.705 44.706 68.5017C41.8311 69.2741 39.1121 72 35.9983 72Z' fill='%23009087'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    align-items: center;
    justify-content: center;
    justify-items: center;
    column-gap: 1px;
    flex-shrink: 0;
    line-height: 1;
  }

  .fv-cta .cta__button-badge-label {
    grid-column: 1 / -1;
    position: static;
    transform: none;
    margin: 0 0 -8px;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-white);
  }

  .fv-cta .cta__button-badge strong {
    grid-row: 2;
    grid-column: 1;
    align-self: baseline;
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--color-white);
  }

  .fv-cta .cta__button-badge-unit {
    grid-row: 2;
    grid-column: 2;
    align-self: baseline;
    margin: 0;
    font-size: 10px;
    font-weight: 700;
    color: var(--color-white);
  }

  .fv-cta .cta__button-arrow {
    width: 28px;
    height: 28px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .fv-cta .cta__button-arrow svg {
    width: 14px;
    height: 14px;
  }
}

.fv-trust {
  display: none;
}

@media (max-width: 768px) {
  .fv-trust {
    display: block;
    margin-top: -1px;
    background-color: #2a2a2a;
    color: var(--color-white);
    padding: 16px;
  }

  .fv-trust__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .fv-trust__badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }

  .fv-trust__emblem {
    width: 28px;
    height: auto;
    flex-shrink: 0;
  }

  .fv-trust__badge-inner {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .fv-trust__badge-text {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    color: var(--color-white);
    text-align: left;
  }

  .fv-trust__badge-number {
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    color: #b1ac8a;
  }

  .fv-trust__badge-number-strong {
    font-family: "Roboto", sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
    margin-left: 2px;
    color: #b1ac8a;
  }

  .fv-trust__note {
    margin: 0;
    display: flex;
    gap: 0.3em;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    align-self: stretch;
  }

  .fv-trust__note-mark {
    flex-shrink: 0;
  }
}

/* ============================
   03_about
   ============================ */
.about {
  position: relative;
  padding: 146px 0 96px;
  background-image: url("../assets/images/img_second_bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: var(--color-text-black);
}

.about__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.about__title {
  margin: 0;
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
}

.about__title-line {
  display: block;
}

.about__title-green {
  color: var(--color-primary);
}

.about__title-black {
  color: var(--color-text-black);
}

.about__kv {
  margin: 0;
  width: 100%;
  max-width: 1080px;
}

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

.about__cards {
  list-style: none;
  margin: 0 0 -130px;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: clamp(16px, 3vw, 48px);
  width: 100%;
  max-width: 988px;
  position: relative;
  z-index: 2;
}

.about__card {
  position: relative;
  flex: 0 0 211px;
  width: 211px;
  height: 208px;
}

.about__card-icon-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  background-color: var(--color-white);
  border: 4px solid #009087;
  border-radius: 50%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

.about__card-icon {
  width: 120px;
  max-width: none;
  height: auto;
  flex-shrink: 0;
  display: block;
  position: relative;
  top: 0;
}

.about__card-body {
  position: absolute;
  left: 0;
  right: 0;
  top: 53px;
  bottom: 0;
  background-color: var(--color-primary);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 12px 16px;
}

.about__card-label {
  margin: 0;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.05em;
  text-align: center;
  font-feature-settings: "palt";
}

.about__summary {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0;
  padding: 56px 80px 56px clamp(200px, 35vw, 400px);
  background-color: transparent;
  border-radius: 24px;
  min-height: 381px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.about__summary::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60px;
  right: -60px;
  background-color: var(--color-white);
  border-radius: 24px;
  z-index: -1;
}

.about__summary-figure {
  position: absolute;
  left: 32px;
  bottom: 0;
  width: clamp(200px, 28vw, 340px);
  height: auto;
  margin: 0;
  z-index: 2;
  pointer-events: none;
}

.about__summary-image {
  width: 100%;
  height: auto;
  display: block;
}

.about__summary-text {
  position: relative;
  left: -90px;
  bottom: -20px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.about__summary-sub {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.1em;
  color: var(--color-text-black);
  font-feature-settings: "palt";
  white-space: nowrap;
}

.about__summary-tri {
  display: block;
  width: 0;
  height: 0;
  border-left: 38px solid transparent;
  border-right: 38px solid transparent;
  border-top: 24px solid var(--color-mist-green);
}

.about__summary-main {
  margin: 0;
  padding: 8px 32px;
  background-color: var(--color-mist-green);
  color: var(--color-primary);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  white-space: nowrap;
}

/* ============================
   03_about - SP
   ============================ */
@media (max-width: 768px) {
  .about {
    padding: 80px 20px 64px;
    background-image: url("../assets/images/img_second_bg_sp.webp");
  }

  .about__inner {
    padding: 0;
    gap: 8px;
  }

  .about__title {
    font-size: 26px;
    letter-spacing: 0.08em;
    line-height: 1.5;
  }

  .about__title-line {
    display: inline;
  }

  .about__title-green {
    display: block;
    font-size: inherit;
    letter-spacing: inherit;
  }

  .about__title-black {
    font-size: 0.7em;
    letter-spacing: inherit;
  }

  .about__kv {
    margin-top: 0;
    max-width: 100%;
  }

  .about__cards {
    max-width: 350px;
    gap: 8px;
    flex-direction: column;
  }

  .about__card {
    flex: 0 0 auto;
    width: 100%;
    height: 64px;
    padding: 0 16px 0 72px;
    border-radius: 999px;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .about__card-icon-wrap {
    position: absolute;
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background-color: var(--color-white);
    border-radius: 50%;
    z-index: 2;
  }

  .about__card-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
  }

  .about__card-body {
    position: static;
    width: 100%;
    height: auto;
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about__card-label {
    font-size: 15px;
    line-height: 1.4;
  }

  .about__card-label br {
    display: none;
  }

  .about__summary {
    max-width: 350px;
    padding: 43px 20px;
    min-height: 268px;
  }

  .about__summary-figure {
    left: -41px;
    top: 112px;
    width: 182px;
    height: 172px;
  }

  .about__summary-sub {
    font-size: 24px;
    margin-bottom: 8px;
    white-space: normal;
  }

  .about__summary-tri {
    border-left-width: 24px;
    border-right-width: 24px;
    border-top-width: 14px;
    margin-bottom: 12px;
  }

  .about__summary-main {
    font-size: 26px;
    padding: 2px 16px;
    letter-spacing: 0.08em;
    white-space: normal;
  }
}

/* ============================
   03_about - SP (WHAT'S DIFFERENT)
   ============================ */
@media (max-width: 768px) {
  .about {
    padding: 40px 20px 48px;
  }

  .about__sp-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .about__sp-title {
    margin: 0;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.04em;
    text-align: center;
    font-feature-settings: "palt";
  }

  .about__sp-title-green {
    display: inline-block;
    font-size: 28px;
    color: var(--color-primary);
  }

  .about__sp-title-sub {
    display: inline-block;
    margin-top: 4px;
    font-size: 24px;
    color: var(--color-black);
  }

  .about__sp-kv {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
  }

  .about__sp-kv picture,
  .about__sp-kv img {
    display: block;
    width: 100%;
    height: auto;
  }

  .about__sp-cards {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .about__sp-card {
    position: relative;
    width: 100%;
    height: 60px;
    background-color: var(--color-primary);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about__sp-card:nth-child(odd),
  .about__sp-card:nth-child(even) {
    padding: 0 72px;
  }

  .about__sp-card-icon-wrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: #fff;
    border: 4px solid var(--color-primary);
    border-radius: 50%;
    z-index: 2;
  }

  .about__sp-card:nth-child(odd) .about__sp-card-icon-wrap {
    left: 0;
  }

  .about__sp-card:nth-child(even) .about__sp-card-icon-wrap {
    right: 0;
  }

  .about__sp-card-icon {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    max-width: none;
    object-fit: contain;
  }

  .about__sp-card-label {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.04em;
    color: var(--color-white);
    font-feature-settings: "palt";
    text-align: center;
  }

  .about__sp-summary {
    position: relative;
    width: 100%;
    padding: 43px 16px 43px;
    background-color: var(--color-white);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    min-height: 220px;
  }

  .about__sp-summary-figure {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0;
    width: 156px;
    height: 156px;
    border-radius: 0;
    overflow: visible;
  }

  .about__sp-summary-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom left;
    display: block;
  }

  .about__sp-summary-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .about__sp-summary-sub {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 700;
    line-height: 135%;
    letter-spacing: 0.05em;
    color: var(--color-black);
    font-feature-settings: "palt";
  }

  .about__sp-summary-tri {
    display: block;
    width: 56px;
    height: 18px;
    flex-shrink: 0;
    aspect-ratio: 28 / 9;
    background-color: var(--color-mist-green);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    margin-bottom: 8px;
  }

  .about__sp-summary-main {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-feature-settings: "palt";
  }

  .about__sp-summary-main-line {
    display: inline-block;
    padding: 0px 20px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 2.36px;
    color: var(--color-primary);
    background-color: var(--color-mist-green);
  }
}

/* ============================
   04_service
   ============================ */
.service {
  padding: 100px 0;
  background-color: var(--color-white);
  overflow: hidden;
}

.service__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  font-family: "Cabin", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.35;
  color: #b1ac8a;
}

.service__eyebrow span {
  width: 32px;
  height: 1px;
  background-color: #b1ac8a;
}

.service__logo {
  margin: 0 0 32px;
}

.service__logo img {
  width: 220px;
  height: auto;
}

.service__title {
  margin: 0 0 32px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--color-primary);
}

.service__desc {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--color-black);
}

.service__sp-subtitle,
.service__sp-desc,
.service__sp-cta,
.service__sp-link {
  display: none;
}

.service__media {
  position: relative;
}

.service__media::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: -80px;
  height: 172px;
  left: 120px;
  right: -100vw;
  background-color: #e0f0ee;
  z-index: 0;
}

.service__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .service {
    padding: 80px 0 56px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    margin-top: -24px;
    position: relative;
    z-index: 2;
  }

  .service__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 20px;
    align-items: stretch;
  }

  .service__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .service__eyebrow {
    font-family: "Cabin", "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.35;
    color: #b1ac8a;
    margin: 0;
    gap: 12px;
  }

  .service__eyebrow span {
    width: 32px;
    background-color: #b1ac8a;
  }

  .service__logo {
    margin: 0;
  }

  .service__logo img {
    width: 240px;
    height: 48px;
  }

  .service__title {
    display: block;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.04em;
    color: var(--color-primary);
    font-feature-settings: "palt";
  }

  .service__desc {
    display: block;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.95;
    color: var(--color-black);
  }

  .service__sp-subtitle,
  .service__sp-desc,
  .service__sp-cta,
  .service__sp-link {
    display: none;
  }

  .service__media {
    margin-top: 8px;
    position: relative;
    width: 100%;
    overflow: visible;
  }

  .service__media::after {
    content: "";
    position: absolute;
    top: auto;
    left: auto;
    right: -20px;
    bottom: -48px;
    width: 289px;
    height: 172px;
    background-color: var(--color-mist-green);
    z-index: 0;
  }

  .service__media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
  }
}

/* ============================
   05_youragent
   ============================ */
.youragent {
  position: relative;
  padding: 56px 0 64px;
  background-color: var(--color-white);
  overflow: hidden;
}

.youragent__inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.youragent__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 0 40px;
}

.youragent__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}

.youragent__title-black {
  color: var(--color-text-black);
}

.youragent__title-green {
  color: var(--color-primary);
}

.youragent__desc {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text-black);
}

.youragent__desc strong {
  font-weight: 700;
}

.youragent__hero {
  position: relative;
  width: 100%;
  margin: 0 0 56px;
  padding: 0;
}

.youragent__watermark {
  position: relative;
  margin: 0 0 16px;
  padding-left: 0;
  font-family: var(--font-family-cabin);
  font-style: italic;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--color-mist-green);
  opacity: 0.85;
  pointer-events: none;
}

.youragent__hero-image {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 0 0 -20px;
  max-width: calc(100% + 20px);
}

.youragent__hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

.youragent__statement {
  position: relative;
  z-index: 1;
  margin: -160px -20px 0 0;
  padding: 200px 28px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background-color: var(--color-primary);
  background-image: url("../assets/images/img_youragent_bg_sp.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  top: 40px !important;
}

.youragent__statement-lead {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: var(--color-white);
  font-feature-settings: "palt";
}

.youragent__statement-main {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: var(--color-white);
  font-feature-settings: "palt";
}

.youragent__statement-row {
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: var(--color-white);
  font-feature-settings: "palt";
}

.youragent__mark {
  display: inline-block;
  padding: 0 4px;
  background-color: var(--color-white);
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.youragent__br-sp {
  display: inline;
}

.youragent__statement-suffix {
  margin-left: 3px;
  color: var(--color-white);
}

.youragent__note {
  margin: 20px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-gray);
}

.youragent__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.youragent__item {
  padding: 0 16px 24px;
  border-bottom: 1px solid var(--color-mist-green);
}

.youragent__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.youragent__num {
  margin: 0 0 8px;
  font-family: var(--font-family-num);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--color-primary);
}

.youragent__item-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: var(--color-text-black);
  font-feature-settings: "palt";
}

.youragent__item-desc {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: #888888;
}

@media (min-width: 769px) {
  .youragent {
    padding: 0 0 96px;
    overflow: hidden;
  }

  .youragent__inner {
    position: relative;
    max-width: 1440px;
    padding: 88px 0 0;
  }

  .youragent__watermark {
    position: absolute;
    top: 33px;
    left: 35px;
    margin: 0;
    padding: 0;
    font-size: 64px;
    line-height: 1;
    z-index: 0;
  }

  .youragent__top {
    display: flex;
    align-items: flex-start;
    gap: clamp(32px, 5vw, 80px);
    margin: 0;
  }

  .youragent__photo {
    position: relative;
    z-index: 2;
    flex: 0 0 50%;
    width: 50%;
    margin: 0 0 0 -75px;
  }

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

  .youragent__head {
    flex: 1 1 auto;
    max-width: 487px;
    margin: 0;
    gap: 24px;
    align-items: flex-start;
  }

  .youragent__title {
    font-size: 36px;
    line-height: 1.4;
    gap: 8px;
  }

  .youragent__title-line {
    color: var(--color-text-black);
  }

  .youragent__desc {
    font-size: 15px;
    line-height: 1.9;
  }

  .youragent__hero {
    position: relative;
    z-index: 1;
    width: auto;
    max-width: none;
    margin: -163px -75px 56px;
    padding: 0px 75px 74px;
    display: flex;
    align-items: flex-start;
    gap: clamp(32px, 5vw, 80px);
    min-height: 206px;
    background-image: url("../assets/images/img_youragent_bg.webp");
    background-size: calc(75% + 60px) 100%;
    background-position: right;
    background-repeat: no-repeat;
  }

  .youragent__hero::before {
    content: "";
    flex: 0 0 50%;
    margin-left: -75px;
  }

  .youragent__hero-image {
    display: none;
  }

  .youragent__statement {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    max-width: none;
    margin: 0;
    padding: 16px 0;
    gap: 4px;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    background-color: transparent;
    background-image: none;
    transform: none;
  }

  .youragent__statement-lead {
    font-size: 20px;
    line-height: 1.5;
  }

  .youragent__statement-row {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 20px;
    line-height: 1.3;
  }

  .youragent__br-sp {
    display: none;
  }

  .youragent__statement-prefix,
  .youragent__statement-suffix {
    color: var(--color-white);
    font-size: 20px;
  }

  .youragent__mark {
    padding: 0 4px;
    font-size: 20px;
  }

  .youragent__note {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-white);
    opacity: 0.9;
  }

  .youragent__items {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .youragent__item {
    padding: 0 32px;
    border-bottom: none;
    border-right: 1px solid var(--color-mist-green);
  }

  .youragent__item:first-child {
    padding-left: 0;
  }

  .youragent__item:last-child {
    padding-right: 0;
    border-right: none;
  }

  .youragent__num {
    font-size: 40px;
    margin-bottom: 16px;
  }

  .youragent__item-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .youragent__item-desc {
    font-size: 13px;
    line-height: 1.85;
  }
}

@media (max-width: 768px) {
  .youragent {
    overflow: hidden;
  }

  .youragent__inner {
    display: flex;
    flex-direction: column;
  }

  .youragent__top {
    display: contents;
  }

  .youragent__hero {
    display: contents;
  }

  .youragent__head {
    order: 1;
    margin: 0 0 32px;
  }

  .youragent__watermark {
    order: 2;
    position: relative;
    z-index: 2;
    margin: 0 0 -5px;
    padding: 0;
  }

  .youragent__photo {
    order: 3;
    position: relative;
    z-index: 2;
    margin: 0 0 0 -20px;
  }

  .youragent__photo img {
    display: block;
    width: 100%;
    height: 233px;
    max-width: none;
    object-fit: cover;
  }

  .youragent__hero-image {
    display: none;
  }

  .youragent__statement {
    order: 4;
    position: relative;
    z-index: 1;
    margin: -350px -20px 80px;
    padding: 320px 10px 70px 25px;
    gap: 4px;
    background-image: url("../assets/images/img_youragent_bg_sp.webp");
    background-size: calc(100% - 20px) calc(100% - 142px);
    background-position: 20px 142px;
    background-repeat: no-repeat;
    background-color: transparent;
    align-items: flex-start;
    text-align: left;
  }

  .youragent__statement-row {
    display: block;
    font-size: 18px;
    text-align: left;
    padding-left: 25px;
  }

  .youragent__statement-prefix,
  .youragent__statement-suffix {
    font-size: 20px;
  }

  .youragent__mark {
    padding: 0 4px;
    margin-top: 4px;
    font-size: 20px;
  }

  .youragent__statement-lead {
    margin-top: 16px;
    padding-left: 25px;
  }

  .youragent__note {
    padding-left: 25px;
  }

  .youragent__items {
    order: 5;
  }

  .youragent__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 12px;
  }

  .youragent__num {
    margin: 0;
  }

  .youragent__item-title {
    flex: 1;
    min-width: 0;
    margin: 0;
  }

  .youragent__item-desc {
    flex-basis: 100%;
    margin-top: 12px;
  }
}

/* ============================
   06_media
   ============================ */
.media {
  padding: 48px 20px;
  background-color: var(--color-mist-green);
}

@media (max-width: 768px) {
  .media {
    margin: 16px;
    background-image: url("../assets/images/img_media_bg_sp.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
  }
}

.media__inner {
  max-width: 880px;
  margin: 0 auto;
}

.media__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  text-align: center;
}

.media__eyebrow {
  margin: 0;
  font-family: var(--font-family-cabin);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary);
  line-height: 1;
}

.media__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}

.media__title-black {
  color: var(--color-text-black);
}

.media__title-mark {
  color: var(--color-primary);
}

.media__desc {
  margin: 0 0 24px;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-text-black);
  text-align: center;
}

.media__card {
  background-color: var(--color-white);
  padding: 24px 16px;
  border-top: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}

.media__hero {
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

@media (min-width: 769px) {
  .media__hero img.media__hero-sp-bottom {
    display: none;
  }
}

.media__logos {
  list-style: none;
  margin: 0;
  padding: 20px 8px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  row-gap: 20px;
  align-items: center;
  justify-items: center;
}

.media__logos img {
  max-width: 92px;
  width: 100%;
  height: auto;
}

@media (min-width: 769px) {
  .media {
    padding: 80px 40px;
  }

  .media__head {
    gap: 8px;
    margin-bottom: 32px;
  }

  .media__desc {
    margin-bottom: 32px;
  }

  .media__eyebrow {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .media__title {
    gap: 4px;
    font-size: 40px;
    letter-spacing: 0.2em;
  }

  .media__desc {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.18em;
  }

  .media__card {
    padding: 48px 80px;
  }

  .media__hero {
    margin: 0 0 32px;
  }

  .media__logos {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 48px;
    row-gap: 0;
    padding: 0 24px;
    height: 180px;
    align-content: center;
  }

  .media__logos img {
    max-width: 160px;
  }
}

/* ============================
   07_price
   ============================ */
.price {
  padding: 96px 20px;
  background-color: var(--color-white);
}

.price__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}

.price__eyebrow {
  margin: 0;
  font-family: "Cabin", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary);
  text-align: center;
}

.price__title {
  margin: 8px 0 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: var(--color-black);
  font-feature-settings: "palt";
  text-align: center;
}

.price__desc {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: #1e1e1e;
  text-align: center;
}

.price__desc b {
  font-weight: 700;
}

.price__callout {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 32px 20px;
  background: linear-gradient(to right, #eff9f8, #dcf1ee);
  border-radius: 24px;
  overflow: hidden;
}

.price__callout-image {
  position: absolute;
  left: -66px;
  bottom: 0;
  width: 191px;
  height: 180px;
}

.price__callout-image-pc {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.price__callout-image-sp {
  display: none;
}

.price__callout-text {
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.price__callout-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  font-feature-settings: "palt";
}

.price__callout-note {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-black);
}

.price__callout-note b {
  font-weight: 700;
}

.price__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: transparent;
  text-align: center;
  font-size: 9px;
  filter: drop-shadow(0 1.981px 7.431px rgba(0, 0, 0, 0.1));
}

.price__table th,
.price__table td {
  height: 27.245px;
  padding: 4px 2px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--color-black);
  vertical-align: middle;
}

.price__table thead th {
  height: 30px;
}

.price__table th:nth-child(1),
.price__table td:nth-child(1) {
  width: 124px;
  background-color: #f5f7f7;
}

.price__table thead th:nth-child(1) {
  border-top-left-radius: 12px;
}
.price__table thead th:nth-child(3) {
  color: #fff;
}
.price__table tbody tr:last-child td:nth-child(1) {
  border-bottom-left-radius: 12px;
}

.price__table th:nth-child(2),
.price__table td:nth-child(2) {
  width: 112px;
  background-color: var(--color-white);
}

.price__table thead th:nth-child(2) {
  background-color: var(--color-gray);
}

.price__th--accent {
  width: 112px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-top-right-radius: 12px;
}

.price__cell--accent {
  width: 112px;
  background-color: var(--color-mist-green);
  color: var(--color-primary);
}

.price__table td.price__cell--accent {
  color: var(--color-primary);
}

.price__cell-sub {
  color: var(--color-primary);
  font-weight: 700;
}

.price__th-logo {
  display: inline-block;
  width: 50px;
  height: auto;
  vertical-align: middle;
}

.price__cell-circle {
  display: inline-block;
  width: 11px;
  height: 11px;
  vertical-align: middle;
}

.price__br-pc {
  display: none;
}

.price__br-sp {
  display: inline;
}

.price__table tbody tr:last-child td.price__cell--accent {
  border-bottom-right-radius: 12px;
}

.price__row--unique td:nth-child(1) {
  background-color: var(--color-mist-green);
  color: var(--color-primary);
  font-weight: 700;
}

.price__row--unique td.price__cell--accent {
  font-weight: 900;
  color: var(--color-primary);
}

@media (min-width: 769px) {
  .price {
    padding: 120px 20px;
  }

  .price__inner {
    max-width: 1080px;
    gap: 40px;
  }

  .price__eyebrow {
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .price__title {
    margin-top: 4px;
    font-size: 40px;
    line-height: 1.35;
    letter-spacing: 0.08em;
  }

  .price__desc {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }

  .price__br-pc {
    display: inline;
  }

  .price__br-sp {
    display: none;
  }

  .price__callout {
    width: 640px;
    margin: 0 auto;
    padding: 32px 88px 32px 248px;
    justify-content: center;
    border-radius: 616px;
    background: linear-gradient(
      115.78deg,
      rgb(220, 241, 238) 22.774%,
      rgb(239, 249, 248) 77.226%
    );
    overflow: visible;
  }

  .price__callout-image {
    left: 43px;
    bottom: auto;
    top: -45.45px;
    width: 210px;
    height: 198px;
  }

  .price__callout-text {
    padding-left: 0;
    gap: 8px;
  }

  .price__callout-title {
    font-size: 24px;
    line-height: 1.35;
    letter-spacing: 1.2px;
  }

  .price__callout-note {
    font-size: 13px;
    line-height: 24.7px;
    letter-spacing: 0.02em;
  }

  .price__table {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    font-size: clamp(14px, 1.5vw, 18px);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
  }

  .price__table th,
  .price__table td {
    height: 59px;
    padding: 0 16px;
    letter-spacing: 0.05em;
  }

  .price__table thead th {
    height: 60px;
    font-size: 20px;
  }

  .price__table th:nth-child(1),
  .price__table td:nth-child(1) {
    width: 33.3%;
  }

  .price__table thead th:nth-child(1) {
    border-top-left-radius: 24px;
  }

  .price__table tbody tr:last-child td:nth-child(1) {
    border-bottom-left-radius: 24px;
  }

  .price__table th:nth-child(2),
  .price__table td:nth-child(2) {
    width: 33.3%;
  }

  .price__th--accent {
    width: 33.3%;
    border-top-right-radius: 24px;
  }

  .price__cell--accent {
    width: 360px;
  }

  .price__table tbody tr:last-child td.price__cell--accent {
    border-bottom-right-radius: 24px;
  }

  .price__th-logo {
    width: 105px;
  }

  .price__cell-circle {
    width: 20px;
    height: 20px;
  }

  .price__table tbody tr td {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
}

@media (max-width: 768px) {
  .price {
    padding: 96px 20px;
  }

  .price__inner {
    max-width: 100%;
  }

  .price__callout {
    padding: 0;
    background: none;
    border-radius: 24px;
    overflow: hidden;
  }

  .price__callout-image {
    position: relative;
    left: 0;
    bottom: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 350 / 174;
  }

  .price__callout-image-pc {
    display: none;
  }

  .price__callout-image-sp {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .price__callout-text {
    position: absolute;
    inset: 24px 16px auto auto;
    padding: 0;
    width: 65%;
    text-align: left;
    z-index: 1;
  }

  .price__callout-title {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }

  .price__callout-note {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* ============================
   08_think
   ============================ */
.think {
  padding: 64px 20px;
  background-color: var(--color-primary);
  background-image: url("../assets/images/img_thinkwith_bg_sp.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  color: var(--color-white);
}

.think__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}

.think__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.think__eyebrow {
  margin: 0;
  font-family: "Cabin", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-white);
}

.think__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.1em;
  color: var(--color-white);
  font-feature-settings: "palt";
}

.think__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.think__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.05));
}

.think__item-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  color: var(--color-white);
}

.think__item-desc {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-gray);
}

@media (max-width: 768px) {
  .think__sp-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .think__sp-head {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
  }

  .think__sp-eyebrow {
    margin: 0;
    font-family: "Cabin", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white);
  }

  .think__sp-title {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.05em;
    text-align: center;
    color: var(--color-white);
    font-feature-settings: "palt";
  }

  .think__sp-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .think__sp-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
  }

  .think__sp-item-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
    color: var(--color-white);
    font-feature-settings: "palt";
  }

  .think__sp-item-desc {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--color-white);
  }

  .think__sp-item-desc b {
    font-weight: 700;
  }
}

@media (min-width: 769px) {
  .think {
    padding: 96px 20px;
  }
  .think__inner {
    max-width: 1080px;
    gap: 32px;
  }
  .think__head {
    gap: 16px;
  }
  .think__eyebrow {
    font-size: 12px;
    letter-spacing: 0.05em;
  }
  .think__title {
    font-size: 40px;
    line-height: 1.35;
    letter-spacing: 0.08em;
  }
  .think__items {
    flex-direction: row;
    gap: 32px;
    align-items: stretch;
  }
  .think__item {
    flex: 1 1 0;
    padding: 30px;
    gap: 16px;
  }
  .think__item-title {
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: 0.05em;
  }
  .think__item-desc {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}

/* ============================
   09_fitfor
   ============================ */
.fitfor {
  padding: 80px 20px 96px;
  background-color: var(--color-white);
}

.fitfor__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}

.fitfor__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.fitfor__eyebrow {
  margin: 0;
  font-family: "Cabin", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.fitfor__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: var(--color-black);
  font-feature-settings: "palt";
}

.fitfor__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.fitfor__item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px;
  background-color: var(--color-mist-green);
  border-radius: 20px;
}

.fitfor__icon {
  flex-shrink: 0;
  width: 100px;
  height: 80px;
  object-fit: contain;
}

.fitfor__item-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  flex: 1 0 0;
  min-width: 0;
}

.fitfor__item-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--color-black);
}

.fitfor__item-desc {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #1e1e1e;
}

.fitfor__item-accent {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}

@media (min-width: 769px) {
  .fitfor {
    padding: 120px 20px;
  }
  .fitfor__inner {
    max-width: 1128px;
    gap: 56px;
  }
  .fitfor__head {
    gap: 16px;
  }
  .fitfor__eyebrow {
    font-size: 12px;
    letter-spacing: 0.05em;
  }
  .fitfor__title {
    font-size: 40px;
    line-height: 1.35;
    letter-spacing: 0.08em;
  }
  .fitfor__items {
    flex-direction: row;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
  }
  .fitfor__item {
    flex-direction: column;
    flex: 1 1 0;
    max-width: 270px;
    padding: 20px 16px;
    gap: 12px;
    align-items: center;
    text-align: center;
    background-color: var(--color-mist-green);
  }
  .fitfor__icon {
    width: 120px;
    height: 116px;
    margin-top: -48px;
  }
  .fitfor__item-body {
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .fitfor__item-title {
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: 0.05em;
  }
  .fitfor__item-desc {
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 0.03em;
  }
  .fitfor__item-accent {
    display: block;
    margin-top: 4px;
    margin-bottom: 4px;
    font-size: 14px;
  }
}

/* ============================
   10a_agent
   ============================ */
.agent {
  position: relative;
  padding: 56px 0 152px;
  background-color: transparent;
  border-top-right-radius: 24px;
  overflow: hidden;
}

.agent::before {
  content: "";
  position: absolute;
  inset: 0 20px 0 0;
  background-image: url("../assets/images/img_agent_bg_sp.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top-right-radius: 24px;
  z-index: 0;
  pointer-events: none;
}

.agent__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}

.agent__top {
  display: contents;
}

.agent__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 auto;
  order: 1;
  margin-bottom: 32px;
}

.agent__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.agent__eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: #b1ac8a;
}

.agent__eyebrow {
  margin: 0;
  font-family: "Cabin", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #b1ac8a;
  font-feature-settings: "palt";
}

.agent__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: var(--color-black);
  font-feature-settings: "palt";
}

.agent__desc {
  margin: 0;
  max-width: 331px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  font-feature-settings: "palt";
}

.agent__carousel {
  position: relative;
  order: 2;
}

.agent__cards {
  list-style: none;
  margin: 0 -24px;
  padding: 0 calc((100vw - 288px) / 2);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 288px;
  gap: 14.4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.agent__cards::-webkit-scrollbar {
  display: none;
}

.agent__card {
  scroll-snap-align: center;
  width: 288px;
  max-width: 320px;
  height: 360px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color-gray);
}

.agent__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.agent__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: var(--color-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background-color 0.2s ease;
}

.agent__nav:hover {
  background-color: var(--color-mist-green);
}

.agent__nav--prev {
  left: -26px;
}

.agent__nav--next {
  right: -26px;
}

.agent__nav-icon {
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  display: inline-block;
}

.agent__nav--prev .agent__nav-icon {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.agent__nav--next .agent__nav-icon {
  transform: rotate(45deg);
  margin-right: 4px;
}

.agent__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

.agent__dots {
  display: flex;
  gap: 8px;
}

.agent__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: var(--color-border-gray);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.agent__dot.is-active {
  background-color: var(--color-primary);
}

.agent__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #1e1e1e;
  text-decoration: underline;
  font-feature-settings: "palt";
  order: 3;
  align-self: flex-end;
  margin-top: 24px;
  margin-right: 20px;
  transition: opacity 0.25s ease;
}

.agent__more:hover {
  opacity: 0.7;
}

.agent__more-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #1e1e1e;
  border-right: 1.5px solid #1e1e1e;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.agent__more:hover .agent__more-arrow {
  transform: rotate(45deg) translate(2px, -2px);
}

/* ============================
   10b_case
   ============================ */
.case {
  position: relative;
  padding: 0px 24px;
  margin-left: 20px;
  margin-top: -100px;
  margin-bottom: -100px;
  z-index: 1;
  background-color: #1e1e1e;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  overflow: hidden;
  color: var(--color-white);
}

.case::before {
  content: "";
  position: absolute;
  left: 0;
  top: 444px;
  width: 240px;
  height: 924px;
  background-color: var(--color-primary);
  pointer-events: none;
}

.case__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.case__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
  background-image: url("../assets/images/img_case_bg_sp.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 444px;
  padding: 270px 24px 32px;
  margin: 0 -24px;
}

.case__body {
  background-image: url("../assets/images/img_case_bg2_sp.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 24px;
  margin: 0 -24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.case__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.case__eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: #b1ac8a;
}

.case__eyebrow {
  margin: 0;
  font-family: "Cabin", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #b1ac8a;
  font-feature-settings: "palt";
}

.case__title-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.case__title-mark {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-mist-green);
  color: var(--color-primary);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  padding: 0 12px;
  font-feature-settings: "palt";
}

.case__title-sub {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-white);
  font-feature-settings: "palt";
}

.case__desc {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-gray);
  font-feature-settings: "palt";
}

.case__cards {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.case__card {
  position: relative;
  background-color: var(--color-white);
  border-radius: 13.5px;
  overflow: hidden;
  color: #1e1e1e;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.case__card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.case__card-media {
  width: 100%;
  aspect-ratio: 1200 / 675;
  overflow: hidden;
}

.case__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case__card-body {
  position: relative;
  padding: 12px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-height: 190px;
}

.case__card-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5.5px;
}

.case__card-tag {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-mist-green);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 2px;
  font-feature-settings: "palt";
}

.case__card-meta {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  font-feature-settings: "palt";
}

.case__card-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  font-feature-settings: "palt";
}

.case__card-text {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #1e1e1e;
  font-feature-settings: "palt";
}

.case__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.case__card-arrow {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  width: 24px;
  height: 24px;
  padding: 5px 0 5px 0;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.case__card-arrow-icon {
  display: block;
  width: 12px;
  height: 12px;
  transform: translateX(1px);
}

.site-header__cta-arrow svg,
.flow__cta-arrow svg,
.cta__button-arrow svg,
.service__sp-cta-arrow svg {
  transform: translateX(1px);
}

.case__card-link:hover .case__card-arrow {
  background-color: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.case__more {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-feature-settings: "palt";
  transition: opacity 0.25s ease;
}

.case__more:hover {
  opacity: 0.7;
}

.case__more-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--color-white);
  border-right: 1.5px solid var(--color-white);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.case__more:hover .case__more-arrow {
  transform: rotate(45deg) translate(2px, -2px);
}

/* ============================
   10c_technology
   ============================ */
.technology {
  padding: 180px 24px 96px;
  background-image: linear-gradient(
    to bottom,
    var(--color-mist-green) 0%,
    var(--color-mist-green) 67%,
    rgba(224, 240, 238, 0) 100%
  );
}

.technology__inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.technology__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.technology__eyebrow {
  margin: 0;
  font-family: "Cabin", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.technology__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: var(--color-black);
  font-feature-settings: "palt";
}

.technology__desc {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #1e1e1e;
  text-align: center;
  font-feature-settings: "palt";
}

.technology__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.technology__card {
  width: 100%;
  max-width: 350px;
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  filter: drop-shadow(0 4px 10px rgba(0, 144, 135, 0.2));
}

.technology__card-media {
  width: 100%;
  aspect-ratio: 324 / 216;
  overflow: hidden;
  border-radius: 8px;
}

.technology__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.technology__card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.technology__card-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: var(--color-primary);
}

.technology__card-tag {
  margin: 0;
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--color-primary);
  text-align: center;
}

.technology__card-name {
  margin: 0;
  width: 100%;
  font-family: "Cabin", "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  text-align: center;
}

.technology__card-desc {
  margin: 0;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: #1e1e1e;
}

.technology__br-pc {
  display: none;
}

.technology__br-sp {
  display: inline;
}

@media (max-width: 768px) {
  .agent {
    padding: 56px 0 152px;
  }

  .agent__inner {
    padding: 0 16px;
  }

  .agent__title {
    font-size: 22px;
  }

  .agent__cards {
    margin: 0 -16px;
    gap: 12px;
  }

  .agent__nav {
    width: 36px;
    height: 36px;
  }

  .agent__nav--prev {
    left: -8px;
  }

  .agent__nav--next {
    right: -8px;
  }
}

@media (min-width: 769px) {
  .agent {
    padding: 96px 0 296px;
    border-top-right-radius: 40px;
  }

  .agent::before {
    inset: 0 clamp(40px, 9vw, 120px) 0 0;
    background-image: url("../assets/images/img_agent_bg.webp");
    border-top-right-radius: 40px;
  }

  .agent__inner {
    position: relative;
    z-index: 1;
    max-width: 1128px;
    padding: 0 40px;
    display: block;
  }

  .agent__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 48px;
  }

  .agent__head {
    gap: 20px;
    padding-right: 0;
    order: unset;
    margin-bottom: 0;
  }

  .agent__carousel {
    order: unset;
  }

  .agent__eyebrow {
    font-size: 14px;
  }

  .agent__title {
    font-size: 40px;
    letter-spacing: 0.08em;
  }

  .agent__desc {
    max-width: none;
    font-size: 16px;
  }

  .agent__cards {
    margin: 0;
    padding: 0;
    grid-auto-columns: 336px;
    gap: 24px;
  }

  .agent__card {
    scroll-snap-align: start;
  }

  .agent__card {
    width: 336px;
    height: 420px;
  }

  .agent__nav {
    width: 56px;
    height: 56px;
  }

  .agent__nav--prev {
    left: -16px;
  }

  .agent__nav--next {
    right: -16px;
  }

  .agent__footer {
    margin-top: 40px;
    justify-content: center;
  }

  .agent__more {
    font-size: 14px;
    order: unset;
    align-self: auto;
    margin-top: 0;
    margin-right: 0;
  }

  .case {
    padding: 0;
    background-color: transparent;
    background-image: none;
    overflow: visible;
    border-radius: 0;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    z-index: auto;
  }

  .case::before {
    display: none;
  }

  .case__inner {
    position: relative;
    z-index: 1;
    max-width: none;
    width: calc(100% - clamp(40px, 9vw, 120px));
    height: 923px;
    margin-top: -100px;
    margin-bottom: -100px;
    margin-left: clamp(40px, 9vw, 120px);
    padding: 0;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    background-color: #1e1e1e;
    background-image:
      linear-gradient(to right, #1e1e1e 0%, rgba(30, 30, 30, 0) 100%),
      url("../assets/images/img_case2_bg.webp");
    background-position:
      520px top,
      left top;
    background-size:
      292px 458px,
      cover;
    background-repeat: no-repeat, no-repeat;
    overflow: hidden;
  }

  .case__inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 444px;
    background-image: url("../assets/images/img_case_bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -1;
  }

  .case__body {
    display: contents;
  }

  .case__head {
    position: absolute;
    left: clamp(40px, 9vw, 120px);
    top: 108px;
    width: 400%;
    gap: 24px;
    margin: 0;
    background-image: none;
    padding: 0;
    min-height: auto;
  }

  .case__eyebrow-row {
    gap: 16px;
  }

  .case__eyebrow-line {
    width: 48px;
  }

  .case__eyebrow {
    font-size: 24px;
    letter-spacing: 0.05em;
  }

  .case__title-block {
    gap: 8px;
  }

  .case__title-mark {
    font-size: 32px;
    letter-spacing: 0.1em;
    padding: 0 12px;
  }

  .case__title-sub {
    font-size: 24px;
    letter-spacing: 0.05em;
  }

  .case__desc {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }

  .case__cards {
    position: absolute;
    left: 50%;
    top: 409px;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 40px;
    width: 712px;
    margin: 0;
  }

  .case__card {
    flex: 0 0 336px;
    width: 336px;
    min-width: 0;
  }

  .case__card-title {
    font-size: 20px;
  }

  .case__more {
    position: absolute;
    top: 811px;
    right: 140px;
    font-size: 13px;
    align-self: auto;
  }

  .technology {
    padding: 200px 40px 96px;
  }

  .technology__inner {
    max-width: 1200px;
    gap: 48px;
  }

  .technology__head {
    gap: 12px;
  }

  .technology__eyebrow {
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .technology__title {
    font-size: 40px;
    line-height: 1.4;
    letter-spacing: 0.08em;
  }

  .technology__br-pc {
    display: inline;
  }

  .technology__br-sp {
    display: none;
  }

  .technology__cards {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 42px;
  }

  .technology__card {
    flex: 0 1 372px;
    max-width: 372px;
    padding: 24px;
    gap: 24px;
  }

  .technology__card-body {
    gap: 24px;
  }

  .technology__card-name {
    line-height: 1.5;
  }
}

/* ============================
   11_flow
   ============================ */
.flow {
  padding: 0px 20px 10px;
  background-color: var(--color-white);
  color: var(--color-black);
  overflow: hidden;
}

.flow__inner {
  max-width: 370px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
}

.flow__media {
  position: relative;
  width: 100%;
  align-self: stretch;
}

.flow__media-band {
  position: absolute;
  left: -20px;
  bottom: -47px;
  width: 300px;
  height: 100px;
  background-color: #e0f0ee;
  z-index: 0;
}

.flow__media-frame {
  position: relative;
  margin-left: -20px;
  width: calc(100% + 20px);
  aspect-ratio: 370 / 247;
  overflow: hidden;
  z-index: 1;
}

.flow__media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flow__head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 40px;
}

.flow__eyebrow {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Cabin", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: #b1ac8a;
  font-feature-settings: "palt" 1;
}

.flow__eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: #b1ac8a;
}

.flow__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: var(--color-black);
  font-feature-settings: "palt" 1;
}

.flow__steps {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.flow__step {
  background-color: var(--color-gray);
  border-radius: 16px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flow__step-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}

.flow__step-badge {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
}

.flow__step-badge::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.flow__step-badge-label {
  position: relative;
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 1.5px;
  color: var(--color-white);
}

.flow__step-badge-num {
  position: relative;
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0;
  line-height: 1;
  margin-top: 0;
  color: var(--color-white);
}

.flow__step-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  justify-content: center;
}

.flow__step-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #1e1e1e;
  font-feature-settings: "palt" 1;
}

.flow__step-time {
  display: inline-block;
  padding: 3px 13px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border-gray);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #888;
}

.flow__step-desc {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0;
  color: #1e1e1e;
  font-feature-settings: "palt" 1;
}

.flow__cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: -8px;
}

.flow__cta-note {
  margin: 0;
  background-color: var(--color-black);
  border-radius: 16px;
  padding: 8px 24px 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.flow__cta-note span {
  font-size: 12.7px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.flow__cta-note::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 11px;
  height: 6px;
  background-color: var(--color-black);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.flow__cta-button {
  width: 100%;
  max-width: 350px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 24px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 12px;
  border: 2px solid var(--color-primary);
  box-shadow: 0 6px 0 #00615c;
  font-size: 22.27px;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
  text-decoration: none;
  margin-top: -10px;
}

.flow__cta-badge {
  position: relative;
  width: 57px;
  height: 57px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg width='72' height='72' viewBox='0 0 72 72' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M35.9983 72C32.8809 72 30.1654 69.2741 27.2905 68.5017C24.3187 67.705 20.6056 68.6818 18.0009 67.1717C15.3962 65.6615 14.364 61.9241 12.2199 59.7801C10.0759 57.6361 6.3559 56.6351 4.8284 53.9957C3.30091 51.3564 4.29153 47.6814 3.49488 44.706C2.72593 41.8312 0 39.1156 0 36.0017C0 32.8878 2.72593 30.1689 3.49488 27.294C4.29153 24.3221 3.31823 20.609 4.8284 18.0043C6.33858 15.3996 10.0759 14.364 12.2199 12.22C14.364 10.0759 15.3615 6.35934 18.0009 4.82838C20.6402 3.29743 24.3187 4.29503 27.2905 3.49837C30.1654 2.72597 32.8809 0 35.9983 0C39.1156 0 41.8311 2.72597 44.706 3.49837C47.6779 4.29503 51.391 3.32167 53.9957 4.82838C56.6004 6.33509 57.6326 10.0794 59.7766 12.2234C61.9206 14.3675 65.6372 15.365 67.1681 18.0043C68.6991 20.6437 67.7015 24.3221 68.5017 27.294C69.2706 30.1689 71.9965 32.8844 71.9965 36.0017C71.9965 39.119 69.2706 41.8312 68.4982 44.706C67.7015 47.6814 68.6783 51.391 67.1681 53.9957C65.658 56.6004 61.9206 57.6361 59.7766 59.7801C57.6326 61.9241 56.635 65.6407 53.9922 67.1717C51.3494 68.7026 47.6779 67.705 44.706 68.5017C41.8311 69.2741 39.1121 72 35.9983 72Z' fill='white'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: var(--color-primary);
  line-height: 1.1;
  text-align: center;
  font-weight: 700;
}

.flow__cta-badge-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
  margin-bottom: -3px;
}

.flow__cta-badge-num {
  display: inline-flex;
  align-items: baseline;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 22.27px;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.flow__cta-badge-num small {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 0.05em;
  margin-left: 2px;
}

.flow__cta-label {
  flex: 1;
  text-align: center;
  white-space: nowrap;
}

.flow__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25.5px;
  height: 25.5px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-primary);
  flex-shrink: 0;
}

.flow__cta-arrow svg {
  width: 16px;
  height: 16px;
}

/* ============================
   12_faq
   ============================ */
.faq {
  padding: 88px 20px;
  background-color: var(--color-white);
}

.faq__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq__eyebrow {
  margin: 0 0 8px;
  font-family: "Cabin", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
}

.faq__title {
  margin: 0 0 48px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: var(--color-black);
  text-align: center;
  font-feature-settings: "palt" 1;
}

.faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq__item {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 24px;
}

.faq__item:last-child {
  border-bottom: 1px solid #e2e8f0;
}

.faq__details {
  width: 100%;
}

.faq__summary {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  list-style: none;
}

.faq__summary::-webkit-details-marker {
  display: none;
}

.faq__q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  font-family: "Inter", "Cabin", sans-serif;
  line-height: 1;
}

.faq__summary-text {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #1e1e1e;
  font-feature-settings: "palt" 1;
}

.faq__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
  letter-spacing: 0;
}

.faq__icon::before {
  content: "＋";
}

.faq__details[open] .faq__icon::before {
  content: "ー";
}

.faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 24px;
}

.faq__a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--color-mist-green);
  color: var(--color-primary);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  font-family: "Inter", "Cabin", sans-serif;
  line-height: 1;
}

.faq__answer p {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: #1e1e1e;
  flex: 1;
}

@media (min-width: 769px) {
  .flow {
    padding: 96px 40px 120px;
  }

  .flow__inner {
    max-width: 1340px;
    display: grid;
    grid-template-columns: clamp(400px, 55vw, 747px) 1fr;
    grid-template-areas:
      "media head"
      "media steps"
      "cta   cta";
    column-gap: 0;
    row-gap: 24px;
    align-items: start;
    justify-content: center;
  }

  .flow__media {
    grid-area: media;
    width: clamp(420px, 57vw, 779px);
    margin-left: calc(-40px - max(0px, (100vw - 1420px) / 2));
    align-self: start;
  }

  @media (min-width: 1455px) {
    .flow__media {
      margin-left: 0;
    }
  }

  .flow__media-band {
    width: 560px;
    height: 148px;
    left: 0;
    right: auto;
    top: 457px;
    bottom: auto;
  }

  .flow__media-frame {
    aspect-ratio: 779 / 519;
  }

  .flow__media-frame::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 108px;
    height: 100%;
    background: linear-gradient(
      269.65deg,
      #ffffff 1.46%,
      rgba(255, 255, 255, 0) 74.72%
    );
    pointer-events: none;
    z-index: 2;
  }

  .flow__head {
    grid-area: head;
    margin-top: 40px;
    gap: 12px;
    position: relative;
    z-index: 3;
  }

  .flow__eyebrow {
    font-size: 24px;
    gap: 16px;
  }

  .flow__eyebrow-line {
    width: 48px;
  }

  .flow__title {
    font-size: clamp(28px, 3vw, 40px);
    letter-spacing: 0.08em;
    line-height: 1.4;
  }

  .flow__steps {
    grid-area: steps;
    margin-top: 32px;
    gap: 32px;
    position: relative;
    z-index: 3;
    padding-left: 32px;
  }

  .flow__step {
    width: 100%;
    max-width: 480px;
    padding: 24px 40px 24px 64px;
    position: relative;
    gap: 16px;
  }

  .flow__step-head {
    gap: 16px;
    align-items: flex-end;
  }

  .flow__step-badge {
    position: absolute;
    left: -32px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
  }

  .flow__step-badge::before {
    width: 64px;
    height: 64px;
    border-radius: 50%;
  }

  .flow__step-badge-label {
    font-size: 12px;
  }

  .flow__step-badge-num {
    font-size: 24px;
    margin-top: 0;
  }

  .flow__step-info {
    flex-direction: row;
    align-items: flex-end;
    gap: 16px;
  }

  .flow__step-title {
    font-size: 20px;
    letter-spacing: 0.05em;
  }

  .flow__step-time {
    font-size: 10px;
    padding: 4px 11px;
  }

  .flow__step-desc {
    font-size: 15px;
  }

  .flow__cta {
    grid-area: cta;
    margin-top: 32px;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 3;
    width: 100%;
    justify-self: center;
  }

  .flow__cta-note {
    border-radius: 20px;
    padding: 8px 28px 9px;
    align-items: center;
    justify-content: center;
  }

  .flow__cta-note span {
    font-size: 17px;
  }

  .flow__cta-note::after {
    bottom: -7px;
    width: 14px;
    height: 8px;
  }

  .flow__cta-button {
    width: 440px;
    max-width: none;
    height: 88px;
    padding: 0 24px 0 32px;
    font-size: 28px;
    margin-top: -10px;
    border-radius: 12px;
    border-width: 3px;
    box-shadow: 0 8px 0 #00615c;
    letter-spacing: 0.05em;
  }

  .flow__cta-badge {
    width: 72px;
    height: 72px;
  }

  .flow__cta-badge-label {
    font-size: 12px;
    margin-bottom: -3px;
  }

  .flow__cta-badge-num {
    font-size: 28px;
    letter-spacing: -0.05em;
  }

  .flow__cta-badge-num small {
    font-size: 12px;
  }

  .flow__cta-arrow {
    width: 32px;
    height: 32px;
  }

  .flow__cta-arrow svg {
    width: 20px;
    height: 20px;
  }

  .flow__cta-note,
  .flow__cta-button {
    transition:
      transform 0.15s ease,
      box-shadow 0.15s ease;
  }

  .flow__cta:hover .flow__cta-note,
  .flow__cta:hover .flow__cta-button {
    transform: translateY(8px);
  }

  .flow__cta:hover .flow__cta-button {
    box-shadow: 0 0 0 #00615c;
  }

  .faq {
    padding: 88px 40px 120px;
  }

  .faq__inner {
    max-width: 960px;
  }

  .faq__eyebrow {
    margin: 0 0 16px;
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .faq__title {
    margin: 0 0 48px;
    font-size: 40px;
    line-height: 1.35;
    letter-spacing: 0.08em;
  }

  .faq__list {
    max-width: 960px;
    gap: 24px;
  }

  .faq__item {
    padding-bottom: 24px;
  }

  .faq__summary {
    gap: 12px;
  }

  .faq__summary-text {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }

  .faq__answer {
    gap: 12px;
    padding-top: 24px;
  }

  .faq__answer p {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
}

/* ============================
   cta atoms (nav-drawer reuse)
   ============================ */
.cta__tooltip {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 24px 9px;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 12.7px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 16px;
  white-space: nowrap;
  font-feature-settings: "halt" 1;
  line-height: 1.5;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta__tooltip::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 11px;
  height: 6px;
  background-color: var(--color-black);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  border: none;
}

.cta__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10.5px;
  width: 100%;
  min-height: 77px;
  padding: 21px 21px 21px 16px;
  background-color: var(--color-white);
  border: 1.75px solid var(--color-white);
  color: var(--color-primary);
  border-radius: 10.5px;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.cta__button:hover {
  opacity: 0.9;
}

.fv-cta__caption {
  transition: transform 0.15s ease;
}

.fv-cta .cta__button {
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.fv-cta__inner:hover .cta__button,
.fv-cta__inner:hover .fv-cta__caption {
  transform: translateY(8px);
}

.fv-cta__inner:hover .cta__button {
  box-shadow: 0 0 0 #00615c;
  opacity: 1;
}

.cta__button-badge {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: baseline;
  justify-content: center;
  width: 63px;
  height: 63px;
  background-color: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg width='72' height='72' viewBox='0 0 72 72' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M35.9983 72.1914C32.8809 72.1914 30.1654 69.4655 27.2905 68.6931C24.3187 67.8964 20.6056 68.8732 18.0009 67.3631C15.3962 65.8529 14.364 62.1155 12.2199 59.9715C10.0759 57.8275 6.3559 56.8265 4.8284 54.1871C3.30091 51.5478 4.29153 47.8728 3.49488 44.8974C2.72593 42.0226 0 39.307 0 36.1931C0 33.0792 2.72593 30.3603 3.49488 27.4854C4.29153 24.5135 3.31823 20.8004 4.8284 18.1957C6.33858 15.591 10.0759 14.5554 12.2199 12.4114C14.364 10.2673 15.3615 6.55075 18.0009 5.01979C20.6402 3.48883 24.3187 4.48643 27.2905 3.68978C30.1654 2.91737 32.8809 0.191406 35.9983 0.191406C39.1156 0.191406 41.8311 2.91737 44.706 3.68978C47.6779 4.48643 51.391 3.51308 53.9957 5.01979C56.6004 6.5265 57.6326 10.2708 59.7766 12.4148C61.9206 14.5589 65.6372 15.5564 67.1681 18.1957C68.6991 20.8351 67.7015 24.5135 68.5017 27.4854C69.2706 30.3603 71.9965 33.0758 71.9965 36.1931C71.9965 39.3104 69.2706 42.0226 68.4982 44.8974C67.7015 47.8728 68.6783 51.5824 67.1681 54.1871C65.658 56.7918 61.9206 57.8275 59.7766 59.9715C57.6326 62.1155 56.635 65.8321 53.9922 67.3631C51.3494 68.894 47.6779 67.8964 44.706 68.6931C41.8311 69.4655 39.1121 72.1914 35.9983 72.1914Z' fill='%23118780'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: var(--color-white);
  font-size: 10px;
  line-height: 1;
  text-align: center;
  padding-top: 24px;
}

.cta__button-badge-label {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
  color: var(--color-white);
}

.cta__button-badge strong {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--color-white);
}

.cta__button-badge-unit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-left: 2px;
  color: var(--color-white);
}

.cta__button-label {
  margin: 0 auto;
  width: 222px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: #009087;
  font-feature-settings: "palt" 1;
  flex: none;
  flex-grow: 0;
  white-space: nowrap;
}

.cta__button-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-white);
}

.cta__button-arrow svg {
  width: 22px;
  height: 22px;
}

/* ============================
   13_cta (standalone section)
   ============================ */
.cta {
  position: relative;
  background-color: var(--color-cta-bg);
  background-image: url("../assets/images/img_cta_bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: var(--color-white);
  padding: 120px 160px;
  overflow: hidden;
}

.cta__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.cta__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.cta__eyebrow {
  margin: 0;
  font-family: var(--font-family-cabin);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--color-mist-green);
  text-transform: uppercase;
}

.cta__title {
  margin: 0;
  font-family: var(--font-family-base);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  color: var(--color-white);
  font-feature-settings: "palt" 1;
  white-space: nowrap;
}

.cta__br-sp {
  display: none;
}

.cta__chips {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.cta__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 21px 6px 13px;
  border: 1px solid var(--color-mist-green);
  border-radius: 56px;
  color: var(--color-white);
}

.cta__chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.cta__chip-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--color-white);
}

.cta__action {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 400px;
  flex-shrink: 0;
}

/* PC override for shared atoms when inside sec-CTA */
.cta .cta__tooltip {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 24px;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta .cta__tooltip::after {
  bottom: -7px;
  width: 14px;
  height: 8px;
}

.cta .cta__button {
  width: 100%;
  min-width: 260px;
  height: 88px;
  padding: 16px;
  border-width: 2px;
  border-radius: 12px;
  gap: 12px;
}

.cta .cta__button-badge {
  width: 72px;
  height: 72px;
  padding-top: 28px;
}

.cta .cta__button-badge-label {
  top: 14px;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.cta .cta__button-badge strong {
  font-size: 28px;
}

.cta .cta__button-badge-unit {
  font-size: 12px;
}

.cta .cta__button-label {
  margin-left: 0;
}

.cta .cta__button-arrow {
  width: 32px;
  height: 32px;
}

.cta .cta__button-arrow svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 768px) {
  .cta {
    padding: 80px 20px;
    background-image: url("../assets/images/img_cta_bg_sp.webp");
  }

  .cta__inner {
    flex-direction: column;
    gap: 32px;
    max-width: 350px;
  }

  .cta__content {
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .cta__eyebrow {
    font-size: 10px;
    letter-spacing: 0.05em;
  }

  .cta__title {
    font-size: 28px;
    letter-spacing: 0.05em;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }

  .cta__br-sp {
    display: inline;
  }

  .cta__chips {
    justify-content: center;
    gap: 12px;
    margin-top: 4px;
  }

  .cta__chip {
    padding: 6px 21px 6px 13px;
  }

  .cta__action {
    width: 100%;
    max-width: 350px;
    margin-top: 32px;
  }

  .cta .cta__tooltip {
    top: -16px;
    font-size: 14px;
  }

  .cta .cta__button {
    min-height: 77px;
    padding: 21px;
    border-width: 1.75px;
    border-radius: 10.5px;
    gap: 8px;
  }

  .cta .cta__button-badge {
    width: 63px;
    height: 63px;
    padding-top: 24px;
  }

  .cta .cta__button-badge-label {
    top: 13px;
    font-size: 10px;
  }

  .cta .cta__button-badge strong {
    font-size: 24px;
  }

  .cta .cta__button-badge-unit {
    font-size: 10px;
  }

  .cta .cta__button-label {
    width: auto;
    flex: 1;
    font-size: 21px;
    letter-spacing: 0.03em;
    margin-left: 0;
  }

  .cta .cta__button-arrow {
    width: 28px;
    height: 28px;
  }

  .cta .cta__button-arrow svg {
    width: 12px;
    height: 12px;
  }
}

/* ============================
   14_footer
   ============================ */
.footer {
  background-color: #1e1e1e;
  color: var(--color-white);
  padding: 64px 20px 32px;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.footer__sns-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer__bottom {
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer__sns-heading {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-white);
  font-feature-settings: "palt" 1;
  line-height: 1.35;
}

.footer__sns-slash {
  display: inline-block;
  width: 36px;
  height: 2px;
  background-color: var(--color-white);
}

.footer__sns-slash--left {
  transform: rotate(56.31deg);
}

.footer__sns-slash--right {
  transform: rotate(-56.31deg);
}

.footer__sns {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 32px;
}

.footer__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-color: var(--color-white);
  transition: opacity 0.2s ease;
}

.footer__sns a:hover {
  opacity: 0.85;
}

.footer__sns img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer__sub-nav {
  width: 100%;
  max-width: 350px;
}

.footer__sub-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 24px;
  text-align: center;
}

.footer__sub-nav-list a {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #e7ecec;
  transition: opacity 0.2s ease;
}

.footer__sub-nav-list a:hover {
  opacity: 0.75;
}

.footer__copy {
  margin: 0;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #888888;
  text-align: center;
}

@media (max-width: 768px) {
  .footer__sns-heading {
    font-size: 20px;
    letter-spacing: 0.05em;
    gap: 10px;
  }

  .footer__sub-nav-list {
    font-size: 12px;
  }

  .footer__sub-nav-list a {
    font-size: 12px;
  }

  .footer__sns-slash {
    width: 28px;
  }

  .footer__sns a {
    width: 64px;
    height: 64px;
  }

  .footer__sns img {
    width: 34px;
    height: 34px;
  }
}

@media (min-width: 769px) {
  .footer {
    padding: 64px 160px 32px;
  }

  .footer__sub-nav {
    width: 516px;
    max-width: 516px;
  }

  .footer__sub-nav-list {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0;
  }
}

/* ---------- Nav Drawer ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0s linear 0.25s;
}

.nav-drawer.is-open {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.25s ease,
    visibility 0s linear 0s;
}

.nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.nav-drawer__panel {
  position: relative;
  width: 100%;
  max-width: 640px;
  background-color: var(--color-white);
  border-radius: 24px;
  padding: 56px 48px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(8px) scale(0.98);
  transition: transform 0.25s ease;
}

.nav-drawer.is-open .nav-drawer__panel {
  transform: translateY(0) scale(1);
}

.nav-drawer__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.nav-drawer__nav {
  margin-top: 8px;
}

.nav-drawer__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 320px;
  width: 100%;
}

.nav-drawer__item + .nav-drawer__item {
  border-top: 1px solid var(--color-border-gray);
}

.nav-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-black);
  transition: opacity 0.2s ease;
}

.nav-drawer__link:hover {
  opacity: 0.7;
}

.nav-drawer__link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.nav-drawer__close-text {
  display: block;
  margin: 24px auto 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.is-nav-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .nav-drawer {
    padding: 16px;
  }

  .nav-drawer__panel {
    padding: 48px 24px 32px;
    border-radius: 20px;
  }

  .nav-drawer__close {
    top: 16px;
    right: 16px;
  }

  .nav-drawer__link {
    font-size: 15px;
    padding: 18px 4px;
  }
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .fv {
    background-position: center center;
  }
  .about__cards {
    gap: 16px;
  }
  .about__card {
    flex: 180px;
    width: 180px;
  }
  .about__summary-figure {
    left: 0px;
  }
  .about__summary-main {
    font-size: 30px;
  }
}
@media screen and (max-width: 1246px) and (min-width: 768px) {
  .flow__inner {
    grid-template-columns: clamp(260px, 32vw, 520px) 1fr;
  }
  .flow__media-frame {
    width: 70%;
  }
  .flow__media-band {
    top: 200px;
    width: 300px;
  }
}

@media screen and (max-width: 767px) and (min-width: 450px) {
  .price__callout-text {
    inset: 2vh 16px auto auto;
  }
  .price__callout-title {
    font-size: 24px;
  }
  .fv::before {
    height: 420px;
  }
}
@media screen and (max-width: 1350px) and (min-width: 768px) {
  .cta__inner {
    flex-direction: column;
  }
}

@media screen and (max-width: 1350px) and (min-width: 1025px) {
  .youragent__hero {
    margin: -50px -75px 56px;
  }
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .youragent__hero {
    margin: 40px -75px 56px;
  }
  .youragent__title {
    font-size: 30px;
  }
  .youragent__watermark {
    font-size: 40px;
    top: 54px;
  }
}
