@charset "UTF-8";
/* ==========================================================================
   component — 再利用パーツ
   ========================================================================== */

/* --------------------------------------------------------------------------
   ナビ項目（英字ラベル + 和文の2段）
   -------------------------------------------------------------------------- */
.c-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-nav__en {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  color: var(--color-nav-en);
  text-align: center;
  white-space: nowrap;
}

.c-nav__ja {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.96px;
  color: #000;
  text-align: center;
  white-space: nowrap;
}

/* ヘッダーの5項目は文字幅を保ち、項目間の余白を均等にする */
.l-header__nav .c-nav__item {
  flex: 0 0 auto;
  min-width: 0;
}

/* フッターのナビ項目（各項目を均等幅にする） */
.l-footer__nav .c-nav__en { color: var(--color-nav-en-ft); }
.l-footer__nav .c-nav__ja { color: #fff; }
.l-footer__nav .c-nav__item {
  width: 100%;
  min-width: 0;
}

/* --------------------------------------------------------------------------
   LINE ボタン（角丸なし・270×64。FV のみ 350×64）
   -------------------------------------------------------------------------- */
.c-btn-line {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 270px;
  height: 64px;
  background-color: var(--color-line);
  filter: var(--shadow-btn);
  transition: opacity 0.3s ease;
}

.c-btn-line__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.c-btn-line__label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  color: #fff;
  white-space: nowrap;
}

/* FV 用（350×64・アイコン 38.5px・テキスト 22px・矢印付き） */
.c-btn-line--fv {
  gap: 16px;
  justify-content: flex-start;
  width: 350px;
  padding-inline: 24px;
}

.c-btn-line--fv .c-btn-line__icon {
  width: 38.509px;
  height: 38.509px;
}

.c-btn-line--fv .c-btn-line__label {
  flex: 1 0 0;
  min-width: 0;
  font-size: 22px;
  line-height: normal;
}

.c-btn-line__arrow {
  flex-shrink: 0;
  width: 20.5px;
  height: 5.5px;
}

/* PC ヘッダー / フッター / CTA の LINE ボタンには矢印なし（カンプ実測） */
.l-header__cta .c-btn-line__arrow {
  display: none;
}

/* TAB ヘッダー（0:2193）— 350×70・FV と同じ内容構成で矢印あり
   SP（〜767）は 42px 角アイコンのため上限・下限の両方でレンジを限定する */
@media (min-width: 768px) and (max-width: 1023px) {
  .l-header__cta {
    gap: 16px;
    justify-content: flex-start;
    width: 350px;
    height: 70px;
    padding-inline: 24px;
  }

  .l-header__cta .c-btn-line__icon {
    width: 38.509px;
    height: 38.509px;
  }

  .l-header__cta .c-btn-line__label {
    flex: 1 0 0;
    min-width: 0;
    font-size: 22px;
    line-height: normal;
  }

  .l-header__cta .c-btn-line__arrow {
    display: block;
  }
}

/* SP ヘッダー（0:1267）— 42px 角のアイコンのみ */
@media (max-width: 767px) {
  .l-header__cta {
    gap: 0;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
  }

  .l-header__cta .c-btn-line__icon {
    width: 28.8px;
    height: 28.8px;
  }

  .l-header__cta .c-btn-line__label,
  .l-header__cta .c-btn-line__arrow {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   ドロワーのお問い合わせボタン（0:1423 / 268×64）
   -------------------------------------------------------------------------- */
.c-btn-contact {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 268px;
  height: 64px;
  border: 1px solid #000;
  box-shadow: 0 4px 19px 0 #d9dcdf;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-text);
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.c-btn-contact img {
  flex-shrink: 0;
  width: 23px;
  height: 19px;
}

/* --------------------------------------------------------------------------
   枠線ボタン「詳しく見る」（380×75 / border 0.5px）
   -------------------------------------------------------------------------- */
.c-btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 380px;
  height: 75px;
  background-color: rgba(255, 255, 255, 0);
  border: 0.5px solid var(--color-btn-outline);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: var(--color-btn-outline);
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

/* SP は 320×50・文字 16px（0:1126） */
@media (max-width: 767px) {
  .c-btn-outline {
    width: min(320px, 100%);
    height: 50px;
    font-size: 16px;
  }
}

/* --------------------------------------------------------------------------
   フォーム CTA ボタン（320×64・LINE ボタンと高さを統一）
   -------------------------------------------------------------------------- */
.c-btn-form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 320px;
  height: 64px;
  padding-inline: 25.833px;
  background-color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 18.083px;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.c-form__submit {
  transition: opacity 0.3s ease;
}

.l-header__menu,
.l-drawer__close {
  transition: opacity 0.3s ease;
}

/* --------------------------------------------------------------------------
   Unified button hover / press / keyboard focus
   -------------------------------------------------------------------------- */
@media (hover: hover) and (pointer: fine) {
  .c-btn-line:hover,
  .c-btn-outline:hover,
  .c-btn-contact:hover,
  .c-btn-form:hover,
  .c-form__submit:hover,
  .l-header__menu:hover,
  .l-drawer__close:hover {
    opacity: 0.72;
  }
}

.c-btn-line:active,
.c-btn-outline:active,
.c-btn-contact:active,
.c-btn-form:active,
.c-form__submit:active,
.l-header__menu:active,
.l-drawer__close:active {
  opacity: 0.55;
  transition-duration: 0.1s;
}

.c-btn-line:focus-visible,
.c-btn-outline:focus-visible,
.c-btn-contact:focus-visible,
.c-btn-form:focus-visible,
.c-form__submit:focus-visible,
.l-header__menu:focus-visible,
.l-drawer__close:focus-visible {
  outline: 2px solid var(--color-nav-en);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .c-btn-line,
  .c-btn-line__icon,
  .c-btn-line__arrow,
  .c-btn-outline,
  .c-btn-contact,
  .c-btn-form,
  .c-form__submit,
  .l-header__menu,
  .l-drawer__close {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   セクション見出し（英字 + 和文サブ）
   -------------------------------------------------------------------------- */
.c-section-title__en {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--color-heading-sub);
}

.c-section-title__ja {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  color: var(--color-muted);
}

/* --------------------------------------------------------------------------
   「こんな方へ」カード（311×306）
   -------------------------------------------------------------------------- */
.c-card-target {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 311px;
  height: 306px;
  background-color: #fff;
  border: 1px solid var(--color-card-border);
  border-radius: 16px;
  filter: var(--shadow-card);
}

.c-card-target__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.c-card-target__icon {
  display: flex;
  flex-shrink: 0;
  width: 145px;
  height: 145px;
  padding: 42px 36px;
  border-radius: 72.5px;
}

/* アイコンの実寸（PC/TAB 共通・Figma 実測） */
.c-card-target__icon img {
  flex-shrink: 0;
  width: 73.46px;
  height: 61.27px;
}

.c-card-target__icon.is-pink img {
  width: 67.43px;
  height: 71.33px;
}

.c-card-target__caption {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  width: 100%;
  font-family: var(--font-display);
  font-weight: 400;
  text-align: center;
}

.c-card-target__title {
  font-size: 24px;
  line-height: normal;
  color: var(--color-heading);
}

.c-card-target__desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-heading-sub);
}
