@charset "UTF-8";

/* ============================================================
   AGA top_2026 — style.css
   Design: Figma【AGA】node 549:2694 (sp_design / 375px base)
   Responsive: SP → PC (max 1280px), breakpoint 768px
   ============================================================ */

/* ----------------------------------------------------------
   CSS Variables
---------------------------------------------------------- */
:root {
  --gold:       #bba171;
  --gold-dk:    #9e8045;
  --gold-btn:   #a17114;
  --gold-lt:    #d4b98a;
  --black:      #1a1714;
  --dark:       #2c2c2c;
  --brown:      #3e3a39;
  --gray:       #666666;
  --beige:      #e0d8ce;
  --cream:      #f8f6f3;
  --cream-deep: #fffbf4;
  --white:      #ffffff;
  --blue:       #0077e1;
  --border:     #e0d8ce;
  --radius:     8px;
  --shadow:     0 2px 16px rgba(0,0,0,.08);
  --font:       "din-2014", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --inner:      343px;
  --section-px: 16px;
}

/* ----------------------------------------------------------
   Reset / Base
---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--dark);
  background: #fff;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ----------------------------------------------------------
   PC wrapper
---------------------------------------------------------- */
@media (min-width: 768px) {
  body {
    background: #fff;
  }
  #ft_breadcrumb .inner,
  .plan_sp,
  .pickup_sp,
  .reason_sp > *,
  .approach_sp > *,
  .case_sp > *,
  .confidence_sp > *,
  .faq_sp > *,
  .footer_bnr > *,
  .campaign-h2,
  .campaign-list,
  .site-footer .inner {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
  .sp_header-inner {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
  }
  #ft_breadcrumb li:first-child {
    padding-left: 0;
  }
}

/* ----------------------------------------------------------
   1. HEADER  (sp_header)
---------------------------------------------------------- */
.sp_header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 60px;
  background: #000;
}
.sp_header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 12.5px;
  height: 60px;
  background: #000;
}
.logo_mark {
  display: flex;
  align-items: flex-end;
  height: 100%;
  max-width: 62px;
  flex-shrink: 0;
}
.logo_mark img { width: auto; height: 36px; max-width: 100%; object-fit: contain; }

.h_nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.h_nav .btn-toggle-menu { order: 99; }
.switch-pc { display: none; }
.switch-sp {
  display: flex;
  align-items: center;
}
.menu_iconsp {
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu_iconsp li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.img-svg { width: 20px; height: 20px; object-fit: contain; }
.menu_iconsp .img-svg { width: 20px; height: 20px; }
.mail-icon-svg { display: block; flex-shrink: 0; }

.btn-toggle-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.btn-toggle-menu .line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.btn-toggle-menu.is-active .line-1 {
  transform: translateY(7px) rotate(45deg);
}
.btn-toggle-menu.is-active .line-2 {
  opacity: 0;
  transform: scaleX(0);
}
.btn-toggle-menu.is-active .line-3 {
  transform: translateY(-7px) rotate(-45deg);
}

/* ハンバーガーメニュー (g_navi) */
.g_navi {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  background: #000;
  border-top: 1px solid rgba(187,161,113,0.3);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 99;
  padding: 0;
}
.g_navi.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.g_navi-overlay {
  position: fixed;
  inset: 60px 0 0 0;
  background: rgba(0,0,0,0.4);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.g_navi-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.g_navi-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 16px 12px;
  height: 44px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}
.g_navi-cta:hover,
.g_navi-cta:focus-visible {
  background: var(--gold-dk);
}

.g_navi-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.g_navi-item {
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.g_navi-item--accordion.is-open > .g_navi-toggle {
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}
.g_navi-link {
  display: block;
  padding: 14px 16px;
  color: var(--white);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.g_navi-link:hover,
.g_navi-link:focus-visible {
  background: rgba(187,161,113,0.12);
  color: var(--gold);
  outline: none;
}
.g_navi-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  background: none;
  border: none;
  border-left: 2px solid transparent;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, padding-left 0.2s ease;
}
.g_navi-toggle:hover,
.g_navi-toggle:focus-visible {
  color: var(--gold);
  outline: none;
}
.g_navi-toggle-icon {
  position: relative;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.g_navi-toggle-icon::before,
.g_navi-toggle-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform 0.2s ease;
}
.g_navi-toggle-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}
.g_navi-toggle-icon::after {
  top: 0;
  left: 50%;
  width: 1.5px;
  height: 100%;
  transform: translateX(-50%);
}
.g_navi-item--accordion.is-open .g_navi-toggle-icon::after {
  transform: translateX(-50%) scaleY(0);
}
.g_navi-sublist {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.09);
  transition: max-height 0.25s ease;
}
.g_navi-item--accordion.is-open .g_navi-sublist {
  max-height: 600px;
}
.g_navi-sublink {
  display: block;
  padding: 12px 16px 12px 28px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s ease, color 0.2s ease;
}
.g_navi-sublink:hover,
.g_navi-sublink:focus-visible {
  background: rgba(187,161,113,0.12);
  color: var(--gold);
  outline: none;
}
.g_navi-sublist li:last-child .g_navi-sublink {
  border-bottom: none;
}
/* パンくず（フッター直上・現行TOP /operation/aga/ と同スタイル） */
#ft_breadcrumb {
  height: 40px;
  background-color: #000;
}
#ft_breadcrumb ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#ft_breadcrumb li {
  float: left;
  padding: 12px 0 12px 15px;
  font-size: 10px;
  color: #cecece;
}
#ft_breadcrumb li a {
  display: block;
  color: #cecece;
}
#ft_breadcrumb li a:after {
  display: inline-block;
  margin-left: 15px;
  font-family: "icomoon" !important;
  font-size: 12px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  content: "\e902";
  vertical-align: middle;
  text-transform: none;
  color: #646464;
  speak: never;
}

/* ----------------------------------------------------------
   2. MAIN VISUAL  (mv_sp)
---------------------------------------------------------- */
.mv_sp {
  position: relative;
  width: 100%;
  /* コンテンツの実高でMVが決まる構成（FVをMVが埋め尽くさないため） */
  height: auto;
  overflow: hidden;
  background: var(--black);
}
.div_mv-bg {
  position: absolute;
  inset: 0;
}
.div_mv-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position はカルーセル側（.div_mv-bg-carousel-img）で指定 */
}
/* SPも2枚スライド表示（PCと同じカルーセル画像を流用） */
.div_mv-bg-carousel {
  display: block;
  position: absolute;
  inset: 0;
}
.div_mv-bg-carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* SPは<picture>でSP専用トリミング画像（sp_mv_01/02.jpg）に切り替わるため中央基準 */
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.div_mv-bg-carousel-img.is-active { opacity: 1; }
.div_mv-bg-overlay {
  position: absolute;
  inset: 0;
  /* SP: 写真の上にテキストが重なるため全体を減光（上下やや濃く） */
  background: linear-gradient(180deg,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.50) 55%,
    rgba(0,0,0,0.66) 100%);
}
.div_mv-content {
  position: relative;
  padding: 44px 24px 28px;
  display: flex;
  flex-direction: column;
}

/* タグ */
.p_mv-tag-wrap { margin-bottom: 16px; }
.p_mv-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2.2px;
  line-height: 18.7px;
  text-transform: uppercase;
}

/* キャッチ */
.h1_mv-catch-wrap { margin-bottom: 20px; }
.h1_mv-catch {
  /* 15文字を1行で収める: SPは可変、PCはコンテンツ幅472pxに収まる31px上限 */
  font-size: clamp(18px, calc((100vw - 44px) / 15), 31px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.32px;
  white-space: nowrap;
}
.span_line2 {
  display: none;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  line-height: 28px;
  letter-spacing: 0.1px;
}

/* サブコピー */
.p_mv-sub-wrap { margin-bottom: 28px; }
.p_mv-sub {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  line-height: 22px;
}
.p_mv-sub-strong {
  font-weight: 500;
}

/* CTAボタン群 */
.div_mv-cta-group-wrap { margin-bottom: 0; }
.div_mv-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-mv-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  height: 48px;
  padding: 0 16px;
  background: var(--blue);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.52px;
  white-space: nowrap;
}
.btn-mv-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 192px;
  height: 59px;
  padding: 0 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid var(--white);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.52px;
  position: relative;
  white-space: nowrap;
}
.btn-mv-secondary-min {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
  margin-left: 8px;
}
.btn-mv-secondary-num {
  font-size: 20px;
  font-weight: 600;
}
/* 「AGA」の欧文が和文より小さく見えるため相対的に拡大（PC/SP共通） */
.txt-aga {
  font-size: 1.2em;
  font-weight: inherit;
  letter-spacing: 0.02em;
}

/* 実績数値（USP: CTA直下のフロー配置） */
.div_mv-stats {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 25px;
  padding-top: 29px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.div_mv-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.span_mv-stat-val {
  display: block;
  color: var(--gold);
  height: 22px;
}
.span_mv-stat-val .stat-num {
  font-size: 30px;
  font-weight: 600;
  line-height: 22px;
}
.span_mv-stat-val .stat-unit {
  font-size: 11px;
  font-weight: 900;
  vertical-align: baseline;
}
.span_mv-stat-val .stat-text {
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
}
.span_mv-stat-label {
  display: block;
  font-size: 10px;
  color: var(--white);
  letter-spacing: 0.66px;
  line-height: 15.4px;
  white-space: nowrap;
}
.div_mv-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   3. PLAN  (plan_sp)
---------------------------------------------------------- */
.pickup_sp,
.campaign_sp,
.approach_sp,
.case_sp,
.confidence_sp,
.flow_sp,
.faq_sp,
.knowledge_sp {
  margin-top: 0;
}

.plan_sp {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 40px var(--section-px);
  background: var(--white);
}

/* H2 */
.plan-h2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
  width: 100%;
}
.plan-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  line-height: 25.2px;
}
.plan-heading {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  line-height: 32px;
}
.plan-statement {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  line-height: 24px;
}
.plan-statement-now { color: var(--gold); }

/* ----------------------------------------------------------
   2.8. PICKUP  (pickup_sp)
---------------------------------------------------------- */
.pickup_sp {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 40px var(--section-px);
  background: var(--white);
}
.pickup-h2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
  width: 100%;
}
.pickup-subtitle {
  display: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  line-height: 25.2px;
}
.pickup-heading {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  line-height: 32px;
}
.pickup-bnr {
  display: block;
  width: 80%;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}
.pickup-bnr img {
  display: block;
  width: 100%;
  height: auto;
}

/* 3ヶ月コードカード */
.month3-card {
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 21px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}

/* 期間限定バッジ */
.div_cp-card-heading-wrap { width: 100%; }
.div_cp-card-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.p_cp-limit-tag-wrap {
  width: 65px;
  height: 35px;
  position: relative;
  flex-shrink: 0;
}
.p_cp-limit-tag {
  position: absolute;
  top: 5px;
  left: 0;
  display: inline-block;
  padding: 4px 10px;
  background: #cb4f4f;
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  border-radius: 2px;
  white-space: nowrap;
  letter-spacing: 1px;
  line-height: 17px;
}
.h3_cp-card-name {
  font-size: 17px;
  font-weight: 700;
  color: #333;
  line-height: 22.1px;
  letter-spacing: 1px;
}

/* 価格 */
.div_cp-price-num-wrap { width: 100%; }
.div_cp-price-num {
  display: flex;
  align-items: flex-end;       /* 非対応ブラウザ用フォールバック */
  align-items: last baseline;  /* 「円/3か月分」の下端を価格「8,500」の下端(ベースライン)に合わせる */
  justify-content: center;
  gap: 6px;
}
.span_cp-val { color: var(--gold); line-height: 46px; }
.cp-val-num {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -1.12px;
  line-height: 46px;
}
.cp-val-comma { font-size: 28px; }
.div_cp-unit {
  display: flex;
  flex-direction: column;
  height: 52.78px;
  justify-content: flex-end;
  padding-bottom: 0;
}
.span_cp-unit-tax,
.span_cp-unit-term {
  font-size: 12px;
  color: #333;
  line-height: 20.4px;
  display: block;
}

/* 月あたり */
.p_cp-per-month {
  border-top: 1px solid #e0d8ce;
  height: 45.3px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  width: 100%;
}
.per-month-label { font-size: 12px; color: #333; line-height: 22.1px; }
.per-month-price { font-size: 19px; font-weight: 700; color: var(--gold); line-height: 32.3px; }
.per-month-comma { font-size: 11px; }
.per-month-yen { font-size: 14px; font-weight: 700; }

/* 特徴リスト */
.features_sp {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.div_cp-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.div_cp-feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(187,161,112,0.12);
  border-radius: 20px;
}
.div_cp-feature-body { flex: 1; }
.p_cp-feature-title {
  font-size: 14px;
  font-weight: 700;
  color: #3e3a39;
  line-height: 19.6px;
  margin-bottom: 2px;
}
.p_cp-feature-text {
  font-size: 11px;
  color: #333;
  line-height: 20.4px;
}
.feature-gold { color: var(--gold); }

/* CTAボタン */
.plan-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 300px;
  height: 45px;
  background: var(--blue);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.52px;
  white-space: nowrap;
  align-self: center;
}
.plan-cta-btn svg { flex-shrink: 0; }

/* コネクター */
.connect_sp {
  display: none;
  align-items: center;
  justify-content: center;
  height: 29px;
  position: relative;
  width: 100%;
}
.connect_sp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  right: 0;
  height: 1px;
  background: #e0d8ce;
}
.span_cpc-connector-label {
  font-size: 12px;
  font-weight: 700;
  color: #333;
  padding: 4px 14px;
  border: 1px solid #e0d8ce;
  border-radius: 20px;
  white-space: nowrap;
  background: var(--white);
  position: relative;
  z-index: 1;
}

/* Gヘアブーストカード */
.newcp_card_sp {
  width: 100%;
  background: #fffbf3;
  border: 1px solid rgba(187,161,113,0.5);
  border-radius: 12px;
  padding: 20px 20px 24px;
  position: relative;
  display: none;
  flex-direction: column;
  gap: 10px;
}
.newcp_stamp_sp {
  position: absolute;
  top: 0;
  right: 20px;
  background: #cb4f4f;
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  padding: 7px 20px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 1.6px;
}
.p_cpc-new-name {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  line-height: 25.3px;
  letter-spacing: -0.22px;
  padding-right: 40px;
}
.p_cpc-new-sub {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.32px;
  line-height: 18.7px;
}
.p_cpc-new-desc {
  font-size: 12px;
  color: #333;
  line-height: 20.4px;
}
.newcp_feature_sp {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid rgba(187,161,112,0.28);
  padding-top: 16px;
}
.div_cpc-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.div_cpc-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #333;
}
.span_cpc-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #9a8258;
  border-radius: 3px;
  margin-top: 6px;
  flex-shrink: 0;
}
.newcp-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 305px;
  height: 45px;
  border: 1px solid #333;
  border-radius: 3px;
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
  color: #333;
  align-self: center;
}
.newcp-cta-btn svg { flex-shrink: 0; }

.plan-price-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 305px;
  height: 45px;
  border: 1px solid #333;
  border-radius: 3px;
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
  color: #333;
  align-self: center;
}
.plan-price-btn svg { flex-shrink: 0; }

.plan-bottom-note {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
}

/* ----------------------------------------------------------
   4. REASON  (reason_sp)
---------------------------------------------------------- */
.reason_sp {
  background: var(--white);
  padding: 40px var(--section-px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0;
}
.reason-h2 {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.reason-heading {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  line-height: 32px;
  text-align: center;
}
.reason-sub {
  font-size: 14px;
  color: var(--gold);
  font-weight: 400;
  line-height: 23.8px;
  text-align: center;
}

.reason-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.reason-card {
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: linear-gradient(118.43deg, #fffbf4 0%, #ffffff 60%);
  overflow: hidden;
  width: 100%;
}
.reason-card-img {
  width: 100%;
  height: 230px;
  overflow: hidden;
}
.reason-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reason-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reason-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 25.2px;
  display: flex;
  flex-direction: column;
}
.reason-card-title-gold {
  color: var(--gold);
}
.reason-card-text {
  font-size: 12px;
  color: #333;
  line-height: 20.4px;
}

.reason-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 300px;
  height: 45px;
  border: 1px solid #333;
  border-radius: 4px;
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.52px;
}
.reason-cta-btn svg { flex-shrink: 0; }

/* ----------------------------------------------------------
   5. APPROACH  (approach_sp)
---------------------------------------------------------- */
.approach_sp {
  background: var(--white);
  padding: 40px var(--section-px);
}
.approach-h2 {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  margin-bottom: 30px;
}
.approach-heading {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  line-height: 32px;
  text-align: center;
}
.approach-sub {
  font-size: 12px;
  color: var(--gold);
  line-height: 20px;
  text-align: center;
}

.approach-card {
  margin-bottom: 40px;
}
.approach-card:last-of-type { margin-bottom: 0; }

.approach-card-img {
  width: 100%;
  aspect-ratio: 344 / 326;
  overflow: hidden;
}
.approach-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-who-banner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  padding: 10px 17px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(167.82deg, #fffbf4 0%, #ffffff 100%);
  border-radius: 0 4px 4px 0;
}
.approach-who-label {
  font-size: 11px;
  font-weight: 700;
  color: #333;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  line-height: 15.3px;
}
.approach-who-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--brown);
  line-height: 18.85px;
}
.approach-who-gold { color: var(--gold); }

.approach-detail {
  padding: 16px 20px 0;
}
.approach-step-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 27.2px;
  font-style: italic;
}
.approach-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
  line-height: 22.1px;
  margin-bottom: 8px;
}
.approach-card-desc {
  font-size: 14px;
  color: #333;
  line-height: 24px;
}

.approach-meta {
  padding: 12px 20px 0;
  font-size: 14px;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 18.7px;
}

.approach-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 305px;
  height: 45px;
  margin: 16px auto 0;
  border: 1px solid #333;
  border-radius: 3px;
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.4px;
}

/* ----------------------------------------------------------
   2.5. CAMPAIGN  (campaign_sp)
---------------------------------------------------------- */
.campaign_sp {
  background: var(--white);
  padding: 40px 0;
  display: none;
  flex-direction: column;
  gap: 20px;
}
.campaign-h2 {
  padding: 0 var(--section-px);
  text-align: center;
}
.campaign-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--brown);
  line-height: 30px;
  text-align: center;
}
.campaign-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.campaign-list {
  display: flex;
  gap: 16px;
  padding: 0 var(--section-px);
  list-style: none;
}
.campaign-item {
  flex: 0 0 240px;
  scroll-snap-align: start;
  border: 1px solid var(--beige);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}
.campaign-img {
  width: 100%;
  aspect-ratio: 240 / 150;
  background: #d9d9d9;
  overflow: hidden;
}
.campaign-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.campaign-title {
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.5;
}

/* ----------------------------------------------------------
   6. CASE  (case_sp)
---------------------------------------------------------- */
.case_sp {
  background: var(--white);
  padding: 40px var(--section-px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.case-h2 { text-align: center; }
.case-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--brown);
  line-height: 32.4px;
  text-align: center;
}

.case-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.case-item {
  border-radius: 8px;
  overflow: hidden;
}
.case-item--bordered {
  border-radius: 8px;
  overflow: visible;
  padding: 1px;
}

.case-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 180px;
}
.case-img-wrap {
  position: relative;
  overflow: hidden;
  height: 180px;
}
.case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-label {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.8);
  padding: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.88px;
}

.case-info {
  background: var(--cream);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case-dl {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.case-dl-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
}
.case-dl-row dt {
  font-size: 12px;
  font-weight: 700;
  color: #333;
  line-height: 20.4px;
}
.case-dl-row dd {
  font-size: 12px;
  color: #333;
  line-height: 20.4px;
}
.case-risk {
  font-size: 11px;
  color: #333;
  line-height: 16px;
  border-top: 1px solid var(--beige);
  padding-top: 9px;
}

.case-more-wrap {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.case-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 54px;
  border: 1px solid var(--brown);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.6px;
  line-height: 25.5px;
  white-space: nowrap;
}

/* ----------------------------------------------------------
   7. CONFIDENCE  (confidence_sp)
---------------------------------------------------------- */
.confidence_sp {
  background: var(--cream);
  padding: 40px var(--section-px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.confidence-h2 {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 100%;
}
.confidence-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--brown);
  line-height: 32.4px;
  text-align: center;
}
.confidence-sub {
  font-size: 15px;
  color: var(--gold);
  line-height: 25.5px;
  text-align: center;
}

.confidence-card {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 54px 58px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  width: 100%;
  filter: drop-shadow(0px 8px 16px rgba(187,161,112,0.15));
}
.confidence-icon {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}
.confidence-icon img { width: 80px; height: 80px; object-fit: cover; }
.confidence-icon-svg { display: block; }
.confidence-card-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
  text-align: center;
  line-height: 25.2px;
  display: flex;
  flex-direction: column;
}
.confidence-card-heading-line { display: block; }
.confidence-gold { color: var(--gold); font-weight: 900; }
.confidence-card-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 25.2px;
  width: 100%;
  text-align: center;
}

.confidence-accordion {
  border: 1px solid var(--beige);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}
.confidence-accordion-question {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
}
.confidence-accordion-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--brown);
  line-height: 23.8px;
}
.confidence-accordion-icon {
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}
.confidence-accordion-answer {
  display: none;
  background: #fff;
  padding: 20px 24px 28px;
  font-size: 13px;
  color: #333;
  line-height: 22.1px;
}
.confidence-accordion-answer p { margin-bottom: 14px; }
.confidence-accordion-answer p:last-child { margin-bottom: 0; }
.confidence-accordion-item.is-open .confidence-accordion-answer { display: block; }

/* ----------------------------------------------------------
   7.5 FLOW  (flow_sp)
---------------------------------------------------------- */
.flow_sp {
  background: var(--white);
  padding: 40px var(--section-px) 40px;
}
.flow-h2 {
  text-align: center;
  margin-bottom: 32px;
}
.flow-heading {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
}
.flow-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--gold);
  line-height: 19px;
  margin-top: 16px;
}

.flow-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.flow-step {
  position: relative;
  padding: 16px 20px 20px 56px;
  margin-bottom: 12px;
  border: 1px solid var(--beige);
  border-radius: 8px;
}
.flow-step-num {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: var(--gold);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-step-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.flow-step-desc {
  font-size: 12px;
  font-weight: 300;
  color: #333;
  line-height: 18px;
}
/* SPのみ: カードを8px内側に寄せ、左上に飛び出す番号がコンテンツ幅に収まるようにする */
@media (max-width: 767px) {
  /* パンくず（現行TOPのSP指定に合わせる） */
  #ft_breadcrumb {
    position: relative;
    height: 46px;
    border-bottom: 1px solid #666;
  }
  #ft_breadcrumb li {
    padding: 15px 0 15px 15px;
    white-space: nowrap;
  }
  /* 先頭文字を他セクションと同じコンテンツ左端(16px)に揃える */
  #ft_breadcrumb .inner {
    padding: 0 16px;
  }
  #ft_breadcrumb li:first-child {
    padding-left: 0;
  }
  .flow-steps {
    padding-left: 8px;
  }
  .flow-step-num {
    top: -8px;
    left: -8px;
    transform: none;
  }
}

.flow-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 298px;
  height: 60px;
  margin: 24px auto 0;
  background: var(--blue);
  color: var(--white);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
}
.flow-cta-btn svg { flex-shrink: 0; }

/* ----------------------------------------------------------
   8. FAQ  (faq_sp)
---------------------------------------------------------- */
.faq_sp {
  background: var(--white);
  padding: 40px var(--section-px) 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-h2 {
  text-align: center;
  padding: 0 82px;
}
.faq-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  line-height: 21.6px;
  text-align: center;
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 264px;
  margin: 0 auto;
}
.faq-category-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 14px;
  border: 1px solid var(--gold);
  border-radius: 14px;
  background: var(--white);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.faq-category-pill.is-active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--beige);
  padding: 16px 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  background: var(--white);
}
.faq-q-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.faq-q-text {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 28px;
}
.faq-toggle {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-answer {
  display: none;
  padding: 8px 0 0 36px;
  font-size: 12px;
  color: #333;
  line-height: 20px;
}
.faq-item.is-open .faq-answer { display: block; }

.faq-item--more { display: none; }
.faq-list.is-expanded .faq-item--more { display: block; }

.faq-show-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px 0;
  margin-top: 4px;
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  cursor: pointer;
}
.faq-show-more-btn.is-hidden { display: none; }

.faq-more-wrap {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}
.faq-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 54px;
  border: 1px solid var(--brown);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.6px;
  line-height: 25.5px;
  white-space: nowrap;
}

/* ----------------------------------------------------------
   8.5 KNOWLEDGE  (knowledge_sp)
---------------------------------------------------------- */
.knowledge_sp {
  background: var(--white);
  padding: 64px var(--section-px) 40px;
}
.knowledge-h2 {
  text-align: center;
  margin-bottom: 24px;
}
.knowledge-heading {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
}
.knowledge-sub {
  font-size: 12px;
  font-weight: 300;
  color: var(--gold);
  line-height: 19px;
  margin-top: 12px;
}
.knowledge-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.knowledge-card {
  display: block;
  border: 1px solid #e8e2d9;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.knowledge-card:hover,
.knowledge-card:active {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.knowledge-card-img {
  aspect-ratio: 320 / 296;
  max-width: 140px;
  margin: 16px auto 0;
  background: #d9d9d9;
  overflow: hidden;
}
.knowledge-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.knowledge-card-body {
  padding: 14px 20px 16px;
}
.knowledge-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.knowledge-card-title::after {
  content: "";
  flex-shrink: 0;
  width: 9px;
  height: 7px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='9' height='7' viewBox='0 0 9 7' fill='none'><path d='M1 3.5h7M5 1l3 2.5L5 6' stroke='%23bba171' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center;
}
.knowledge-card-desc {
  font-size: 12px;
  font-weight: 300;
  color: #333;
  line-height: 20.4px;
}
.knowledge-more-wrap {
  display: flex;
  justify-content: center;
  padding-top: 32px;
}
.knowledge-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 54px;
  border: 1px solid var(--brown);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.6px;
  line-height: 25.5px;
  white-space: nowrap;
}

/* ----------------------------------------------------------
   9. FOOTER BANNER  (footer_bnr)
---------------------------------------------------------- */
.footer_bnr {
  background: #000;
  padding-top: 20px;
}
.inner {
  max-width: 390px;
  margin: 0 auto;
  padding: 0 17px;
}
.inner-fluid {
  max-width: none;
  padding: 0;
}
.footer_bnr .inner a { display: block; }
.footer_bnr .inner img {
  width: 100%;
  height: auto;
}

/* ----------------------------------------------------------
   10. FOOTER  (footer#footer)
---------------------------------------------------------- */
.site-footer {
  background: #000;
  padding-bottom: 8px;
}
.site-footer .inner {
  max-width: 390px;
  margin: 0 auto;
  padding: 0;
}

.ft_nav ul { border-bottom: 1px solid #666; }
.ft_nav > ul > li {
  border-bottom: 1px solid #666;
}
.ft_nav > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 20px;
  font-size: 12px;
  font-weight: 400;
  color: var(--white);
  line-height: 19.2px;
}
.tog_icn {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.tog_icn::before,
.tog_icn::after {
  content: "";
  position: absolute;
  background: #bba171;
  border-radius: 1px;
  top: 50%;
  left: 50%;
}
.tog_icn::before {
  width: 14px;
  height: 1px;
  transform: translate(-50%, -50%);
}
.tog_icn::after {
  width: 1px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.ft_nav li.is-open > a .tog_icn::after,
.ft_search_clinic.is-open .tog_icn::after {
  display: none;
}

.ft_nav .dropdown {
  display: none;
  padding: 0 0 14px 14px;
}
.ft_nav li.is-open > .dropdown {
  display: block;
}
.ft_nav .dropdown li a {
  display: block;
  padding: 10px 0;
  font-size: 12px;
  color: var(--white);
  opacity: .8;
}
.ft_search_clinic .dropdown ul {
  border-bottom: none;
}

@font-face {
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  font-display: block;
  src: url("/operation/aga/common/css/fonts/icomoon.eot?78o7gn");
  src: url("/operation/aga/common/css/fonts/icomoon.eot?78o7gn#iefix") format("embedded-opentype"),
    url("/operation/aga/common/css/fonts/icomoon.ttf?78o7gn") format("truetype"),
    url("/operation/aga/common/css/fonts/icomoon.woff?78o7gn") format("woff"),
    url("/operation/aga/common/css/fonts/icomoon.svg?78o7gn#icomoon") format("svg");
}
[class^="icon-"],
[class*=" icon-"] {
  font-family: "icomoon" !important;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  speak: never;
}
.icon-instagram:before {
  content: "\ea92";
}

.ft_sns ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 92px;
  margin-bottom: 70px;
  padding: 32px 0;
}
.ft_sns li a {
  display: block;
  position: relative;
  width: 23px;
  height: 23px;
}
.icon-tiktok,
.icon-twitter {
  display: block;
  position: relative;
  width: 23px;
  height: 23px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.icon-tiktok {
  background: url(/operation/aga/common/img/tiktok.svg) no-repeat;
  background-size: 100% 100%;
}
.icon-twitter {
  background: url(/operation/aga/common/img/twitter.svg) no-repeat;
  background-size: 100% 100%;
}
.icon-twitter:before {
  display: none;
}
.icon-instagram {
  display: block;
  width: 23px;
  height: 23px;
  font-size: 23px;
  line-height: 1;
  color: var(--white);
  text-align: center;
}

.ft_logo_mark {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}
.ft_logo_mark img {
  width: 65px;
  height: auto;
}

.copyright {
  text-align: center;
  font-size: 10px;
  color: var(--gold);
  line-height: 16px;
  margin-top: 26px;
  padding-bottom: 68px;
}

/* ----------------------------------------------------------
   11. STICKY CTA  (sticky_cta)
---------------------------------------------------------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--white);
  box-shadow: 0px -2px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(100%);
  transition: transform 0.25s ease;
}
.sticky-cta.is-visible {
  transform: translateY(0);
}
.sticky-cta-inner {
  display: flex;
  align-items: stretch;
}
.sticky-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 60px;
  font-size: 14px;
  font-weight: 700;
}
.sticky-cta-btn--tel {
  background: var(--white);
  color: var(--gold-btn);
  border-top: 1px solid var(--beige);
}
.sticky-cta-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.sticky-cta-btn-text small {
  font-size: 10px;
  font-weight: 400;
  color: #666;
}
.sticky-cta-btn--primary {
  background: var(--blue);
  color: var(--white);
}

/* ----------------------------------------------------------
   PC Responsive (768px+)
---------------------------------------------------------- */
@media (min-width: 768px) {
  /* スクロール追従CTA：PCでは非表示（ヘッダーのCTAボタンで代替） */
  .sticky-cta {
    display: none;
  }
  .copyright {
    padding-bottom: 8px;
  }

  .campaign-item {
    flex: 0 0 280px;
  }

  .g_navi-cta {
    width: fit-content;
    padding: 0 24px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ヘッダー高さをPCのみ60pxに変更 */
  .sp_header,
  .sp_header-inner {
    height: 60px;
  }
  .g_navi {
    top: 60px;
    max-height: calc(100vh - 60px);
  }
  .g_navi-overlay {
    inset: 60px 0 0 0;
  }
  .g_navi-overlay.is-open {
    opacity: 0;
    visibility: hidden;
  }

  /* ヘッダーナビ：PC用CTA・アイコンを表示、SP用アイコンを非表示 */
  .switch-pc {
    display: flex;
    align-items: center;
  }
  .switch-sp { display: none; }
  .switch-pc ul {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .h_btn .btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 18px;
    border-radius: 0;
    background: var(--blue);
    color: var(--white);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.3px;
    white-space: nowrap;
  }
  .tb_blog { display: flex; align-items: center; justify-content: center; }
  .switch-pc .ico a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
  }
  .tel_number {
    display: block;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    white-space: nowrap;
  }
  .tel_sm {
    font-size: 10px;
    font-weight: 400;
    color: #fff;
  }

  .reason_sp,
  .plan_sp,
  .pickup_sp,
  .campaign_sp,
  .approach_sp,
  .case_sp,
  .confidence_sp,
  .flow_sp,
  .faq_sp,
  .knowledge_sp {
    margin-top: 60px;
    margin-bottom: 100px;
  }

  .pickup-bnr {
    max-width: 360px;
  }

  .plan_sp,
  .pickup_sp,
  .reason_sp,
  .case_sp,
  .confidence_sp,
  .faq_sp,
  .approach_sp {
    padding-left: 40px;
    padding-right: 40px;
  }

  /* メインビジュアル：カード型（左右余白のみ・上下の黒余白なし） */
  .mv_sp {
    position: relative;
    /* FVで「今月のピックアップ」見出しが見えるよう画面高さに連動（上限640px） */
    height: clamp(480px, calc(100vh - 200px), 640px);
    height: clamp(480px, calc(100svh - 200px), 640px);
    width: 100%;
    display: block;
    padding: 0 max(40px, calc((100% - 1280px) / 2));
  }
  .btn-mv-primary { align-self: flex-start; }
  .div_mv-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: max(40px, calc((100% - 1280px) / 2));
    right: max(40px, calc((100% - 1280px) / 2));
    overflow: hidden;
  }
  .div_mv-bg-carousel-img {
    object-position: right center;
  }
  .div_mv-bg-carousel-img--02 {
    object-position: right bottom;
  }
  .div_mv-bg-overlay {
    display: block;
    background: linear-gradient(100.6deg,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,0.75) 15%,
      rgba(0,0,0,0.35) 35%,
      rgba(0,0,0,0.10) 55%,
      rgba(0,0,0,1) 100%);
  }
  .div_mv-content {
    position: relative;
    inset: auto;
    max-width: 520px;
    padding: 56px 0 0 48px;
  }
  .div_mv-stats {
    margin-top: 24px;
  }

  .month3-card,
  .newcp_card_sp {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .connect_sp,
  .newcp-cta-btn,
  .approach-more-btn {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .plan-price-btn {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .g_navi {
    max-width: 1280px;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding-bottom: 0;
  }
  .g_navi.is-open {
    transform: translateX(-50%) translateY(0);
  }
  .g_navi-overlay {
    inset: 50px 0 0 0;
  }
  .g_navi-list {
    display: flex;
    flex-wrap: wrap;
  }
  .g_navi-item {
    flex: 1 1 33.33%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .g_navi-item--accordion {
    flex: 1 1 100%;
  }

  .reason-cards {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .reason-card { flex: 1 1 280px; }

  .approach-card {
    max-width: 375px;
    margin-left: auto;
    margin-right: auto;
  }
  #stop_sp,
  #strong_sp,
  #grow_sp,
  #clean_sp {
    max-width: 760px;
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: start;
    column-gap: 32px;
  }
  #stop_sp .approach-card-img,
  #strong_sp .approach-card-img,
  #grow_sp .approach-card-img,
  #clean_sp .approach-card-img { grid-column: 1; grid-row: 1 / span 4; }
  #stop_sp .approach-who-banner,
  #stop_sp .approach-detail,
  #stop_sp .approach-meta,
  #stop_sp .approach-more-btn,
  #strong_sp .approach-who-banner,
  #strong_sp .approach-detail,
  #strong_sp .approach-meta,
  #strong_sp .approach-more-btn,
  #grow_sp .approach-who-banner,
  #grow_sp .approach-detail,
  #grow_sp .approach-meta,
  #grow_sp .approach-more-btn,
  #clean_sp .approach-who-banner,
  #clean_sp .approach-detail,
  #clean_sp .approach-meta,
  #clean_sp .approach-more-btn {
    grid-column: 2;
  }
  .approach-who-banner {
    margin-top: 0;
  }

  .case-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 560px));
    gap: 24px;
    justify-content: center;
  }

  .confidence-card {
    max-width: 600px;
    margin: 0 auto;
  }
  .confidence-accordion {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .flow-steps {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .flow-cta-btn {
    width: fit-content;
    max-width: none;
    padding: 0 32px;
    margin-left: auto;
    margin-right: auto;
  }

  .case-label {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    padding: 4px;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    letter-spacing: 0.88px;
  }

  html {
    scrollbar-gutter: stable;
  }

  .faq-h2,
  .faq-categories,
  .faq-more-wrap {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .faq_sp > .faq-list {
    width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .faq-h2 {
    padding: 0;
  }
  .faq-list {
    margin-top: 24px;
  }

  .knowledge-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
  }

  .footer_bnr .inner-fluid {
    max-width: 1120px;
  }

  /* フッター：本番PCレイアウト（ナビ3カラム＋お近くのゴリラクリニックは院名2カラム） */
  .site-footer .inner {
    max-width: 1280px;
    padding-top: 40px;
  }
  .ft_nav {
    display: flex;
    align-items: flex-start;
    gap: 56px;
    padding-bottom: 40px;
  }
  .ft_nav ul { border-bottom: none; }
  .ft_nav_01 { width: 260px; flex-shrink: 0; }
  .ft_nav_02 { width: 180px; flex-shrink: 0; }
  .ft_nav_03 { flex: 1; }
  .ft_nav > ul > li {
    border-bottom: none;
  }
  .ft_nav > ul > li > a {
    padding: 0 0 14px;
    font-size: 13px;
  }
  .tog_icn { display: none; }
  .ft_nav .dropdown {
    padding: 0 0 8px 12px;
  }
  .ft_nav .dropdown li a {
    padding: 6px 0;
  }
  /* PCは.showで常時展開（SPはis-openのトグルで開閉） */
  .ft_nav .dropdown.show {
    display: block;
  }
  .ft_nav > ul > li:has(.dropdown.show) + li > a {
    margin-top: 10px;
  }
  .ft_search_clinic .dropdown {
    display: flex;
    gap: 40px;
    padding: 0;
  }
}
