/* ============================================================
   FIT STAGE — index.css  (トップページ専用)
   ============================================================ */

/* ---- ユーティリティ ---- */
.pc-only { display: inline; }
.sp-only { display: none; }

/* ============================================================
   ① HERO（左テキスト・右カルーセル 分割レイアウト）
   ============================================================ */
.top-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
}

/* --- 左：テキスト列 --- */
.top-hero__text-col {
  background: var(--color-background-primary, #fff);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px;
}

.top-hero__text-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.top-hero__eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--color-text-secondary, #888);
  margin: 0 0 20px;
  text-transform: uppercase;
}

.top-hero__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 2.8vw, 40px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .03em;
  color: var(--color-text-primary, #111);
  margin: 0 0 22px;
}

.top-hero__lead {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(13px, 1.3vw, 15px);
  line-height: 1.9;
  color: var(--color-text-secondary, #555);
  margin: 0 0 28px;
}

.top-hero__checks {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.top-hero__checks li {
  font-size: clamp(12px, 1.2vw, 13px);
  color: var(--color-text-secondary, #444);
  padding-left: 20px;
  position: relative;
}

.top-hero__checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-text-primary, #111);
  opacity: .3;
}

.top-hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}


/* --- 右：画像カルーセル列 --- */
.top-hero__img-col {
  position: relative;
  overflow: hidden;
}

.top-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.top-hero__slide.is-active { opacity: 1; }

.top-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 画像上のスタッツ */
.top-hero__stats {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 3;
  display: flex;
  gap: 0;
  background: rgba(8, 6, 2, 0.56);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 0.5px solid rgba(212, 175, 55, 0.28);
  border-top: 1.5px solid rgba(212, 175, 55, 0.65);
  border-radius: 8px;
  padding: 14px 0;
}

.top-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 22px;
}

.top-hero__stat:not(:last-child) {
  border-right: 0.5px solid rgba(212, 175, 55, 0.2);
}

.top-hero__stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: #D4AF37;
  line-height: 1;
  letter-spacing: .02em;
}

.top-hero__stat-num small { font-size: .6em; }

.top-hero__stat-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9.5px;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ドット */
.top-hero__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.top-hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .3s, transform .3s;
}

.top-hero__dot.is-active {
  background: #fff;
  transform: scale(1.4);
}

/* ============================================================
   ② 2大サービス
   ============================================================ */
.top-services {
  border-top: 1px solid var(--color-border, #ddd7cc);
}
.top-services__lead {
  font-size: clamp(14px, 1.5vw, 15px);
  color: var(--color-text-secondary, #666);
  line-height: 1.9;
  margin: 14px 0 0;
}
.top-services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.top-service-card {
  background: #fff;
  border: 1px solid var(--color-border, #ddd7cc);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform .25s ease, box-shadow .25s ease;
}
.top-service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.09); }
.top-service-card__img-wrap {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--color-bg-2, #f7f4ee);
}
.top-service-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.top-service-card:hover .top-service-card__img-wrap img { transform: scale(1.04); }
.top-service-card__img-wrap.is-empty { min-height: 200px; }
.top-service-card__no {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: .14em;
  color: #fff;
  background: rgba(0,0,0,.42);
  padding: 3px 10px;
  border-radius: 100px;
}
.top-service-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.top-service-card__cat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--color-text-secondary, #888);
  margin: 0 0 10px;
  text-transform: uppercase;
}
.top-service-card__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(17px, 1.9vw, 21px);
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 14px;
}
.top-service-card__text {
  font-size: 13px;
  line-height: 1.85;
  color: var(--color-text-secondary, #666);
  margin: 0 0 18px;
  flex: 1;
}
.top-service-card__tags {
  list-style: none;
  padding: 14px 0 0;
  margin: 0 0 22px;
  border-top: 1px solid var(--color-border, #ddd7cc);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.top-service-card__tags li {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  background: var(--color-bg-2, #f7f4ee);
  border-radius: 3px;
  color: var(--color-text-muted, #706b65);
  letter-spacing: .03em;
}
.top-service-card__link { align-self: flex-start; }

.top-service-card__locations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}
.top-svc-loc {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-family: var(--font-ja);
  font-weight: 600;
  letter-spacing: .04em;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1.5px solid var(--color-primary, #C9A84C);
  color: var(--color-primary, #C9A84C);
  background: transparent;
  text-decoration: none;
  transition: background .18s, color .18s, transform .15s;
  line-height: 1;
}
.top-svc-loc:hover {
  background: var(--color-primary, #C9A84C);
  color: #fff;
  transform: translateY(-1px);
}

/* その他のサービス */
.top-services__other-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--color-text-muted, #706b65);
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 10px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border, #ddd7cc);
}

/* サブカード */
.top-services__sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
.top-sub-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--color-bg-2, #f7f4ee);
  border-radius: 10px;
  border: 1px solid var(--color-border, #ddd7cc);
  text-decoration: none;
  color: inherit;
  transition: background .2s, box-shadow .2s;
  min-height: 56px;
}
.top-sub-card:hover { background: var(--color-bg-3, #ede9e1); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.top-sub-card__text-wrap { flex: 1; }
.top-sub-card__title { font-size: 13px; font-weight: 500; margin: 0 0 3px; }
.top-sub-card__text { font-size: 12px; color: var(--color-text-secondary, #888); margin: 0; }
.top-sub-card__arrow { font-size: 15px; color: var(--color-text-tertiary, #bbb); flex-shrink: 0; }

/* ============================================================
   ③ WHY FIT STAGE
   ============================================================ */
.top-unique {
  background: var(--color-bg-2, #f7f4ee);
  border-top: 1px solid var(--color-border, #ddd7cc);
  border-bottom: 1px solid var(--color-border, #ddd7cc);
}
.top-unique__inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: center;
}
.top-unique__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(19px, 2.3vw, 28px);
  font-weight: 700;
  line-height: 1.65;
  margin: 14px 0 36px;
}
.top-unique__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 28px; }
.top-unique__item { display: flex; gap: 18px; align-items: flex-start; }
.top-unique__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--color-border-secondary, rgba(0,0,0,.13));
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}
.top-unique__item-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 700;
  margin: 0 0 7px;
  line-height: 1.4;
}
.top-unique__item-text {
  font-size: 13px;
  line-height: 1.85;
  color: var(--color-text-secondary, #666);
  margin: 0;
}
.top-unique__img-wrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-background-tertiary, #eee);
}
.top-unique__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.top-unique__img-wrap.is-empty { min-height: 360px; }

/* ============================================================
   ④ 実績数字
   ============================================================ */
.top-numbers {
  background: #111;
  color: #fff;
  padding: 72px 0;
}
.top-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.top-numbers__item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.top-numbers__row { margin: 0; display: flex; align-items: baseline; justify-content: center; gap: 3px; }
.top-numbers__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.8vw, 60px);
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.top-numbers__unit {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(13px, 1.5vw, 16px);
  color: rgba(255,255,255,.65);
}
.top-numbers__label {
  font-size: 11px;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  font-family: 'Cormorant Garamond', serif;
}

/* ============================================================
   ⑤ お客様の声
   ============================================================ */
.top-voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.top-voice-card {
  margin: 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--color-border, #ddd7cc);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.top-voice-card__img-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-background-secondary, #f0f0ee);
  flex-shrink: 0;
}
.top-voice-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.top-voice-card__img-wrap.is-empty { display: flex; align-items: center; justify-content: center; }
.top-voice-card__service {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--color-text-secondary, #888);
  margin: 0 0 6px;
  text-transform: uppercase;
}
.top-voice-card__text {
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-text-primary, #222);
  margin: 0;
  flex: 1;
  padding-top: 22px;
  position: relative;
}
.top-voice-card__text::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: -4px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  color: var(--color-border, #ddd7cc);
  line-height: 1;
}
.top-voice-card__footer { border-top: 1px solid var(--color-border, #ddd7cc); padding-top: 14px; }
.top-voice-card__attr { font-size: 11px; color: var(--color-text-secondary, #888); }
.top-voices__more { margin-top: 36px; text-align: center; }

/* ============================================================
   ⑥ ご利用の流れ
   ============================================================ */
.top-flow {
  background: var(--color-bg-2, #f7f4ee);
  border-top: 1px solid var(--color-border, #ddd7cc);
  border-bottom: 1px solid var(--color-border, #ddd7cc);
}
.top-flow__list {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.top-flow__step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 20px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--color-border, #ddd7cc);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  position: relative;
}
.top-flow__step:not(:last-child)::after {
  content: '›';
  position: absolute;
  right: -14px;
  top: 32px;
  font-size: 20px;
  color: var(--color-border, #ddd7cc);
  z-index: 1;
}
.top-flow__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-border-secondary, rgba(0,0,0,.09));
}
.top-flow__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(13px, 1.3vw, 14px);
  font-weight: 700;
  margin: 0;
  line-height: 1.45;
}
.top-flow__text { font-size: 12px; line-height: 1.8; color: var(--color-text-secondary, #666); margin: 0; }

/* ============================================================
   ⑦ FAQ（HOME抜粋）
   ============================================================ */
.top-faq__list { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }
.top-faq__item {
  border-bottom: 1px solid var(--color-border, #ddd7cc);
}
.top-faq__item:first-child { border-top: 1px solid var(--color-border, #ddd7cc); }
.top-faq__q {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(14px, 1.4vw, 15px);
  font-weight: 500;
  padding: 20px 48px 20px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.5;
  color: var(--color-text-primary, #111);
  transition: color .2s;
}
.top-faq__q::-webkit-details-marker { display: none; }
.top-faq__q::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--color-text-secondary, #888);
  transition: transform .25s ease;
  line-height: 1;
}
.top-faq__item[open] .top-faq__q::after { transform: translateY(-50%) rotate(45deg); }
.top-faq__a {
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-secondary, #555);
}
.top-faq__a p { margin: 0; }
.top-faq__more { margin-top: 36px; text-align: center; }

/* ============================================================
   ⑧ ブログ新着
   ============================================================ */
.top-blog {
  background: var(--color-bg-2, #f7f4ee);
  border-top: 1px solid var(--color-border, #ddd7cc);
}
.top-blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.top-blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border, #ddd7cc);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.top-blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.09); }
.top-blog-card__img-wrap {
  display: block;
  aspect-ratio: 5/3;
  overflow: hidden;
  background: var(--color-bg-2, #f7f4ee);
}
.top-blog-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.top-blog-card:hover .top-blog-card__img-wrap img { transform: scale(1.04); }
.top-blog-card__img-wrap.is-empty { min-height: 150px; }
.top-blog-card__body { padding: 18px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.top-blog-card__cat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: .11em;
  color: var(--color-text-secondary, #888);
  text-transform: uppercase;
  margin: 0;
}
.top-blog-card__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(13px, 1.3vw, 14px);
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.top-blog-card__title a { color: inherit; text-decoration: none; }
.top-blog-card__title a:hover { text-decoration: underline; }
.top-blog-card__date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  color: var(--color-text-tertiary, #aaa);
  letter-spacing: .05em;
}
.top-blog__more { margin-top: 36px; text-align: center; }

/* ============================================================
   ⑨ CTA
   ============================================================ */
.top-cta {
  background: #111;
  color: #fff;
  padding: 96px 0;
  text-align: center;
}
.top-cta__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: .25em;
  color: rgba(255,255,255,.38);
  margin: 0 0 22px;
  text-transform: uppercase;
}
.top-cta__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 22px;
  line-height: 1.45;
}
.top-cta__desc {
  font-size: clamp(13px, 1.3vw, 14px);
  line-height: 1.95;
  color: rgba(255,255,255,.6);
  margin: 0 0 44px;
}
.top-cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.top-cta__btn-sub { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.28); }
.top-cta__btn-sub:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.55); }

/* ============================================================
   フェードイン
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   スマートフォン対応 ( ≤ 768px )
   ============================================================ */
@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }

  /* Hero */
  .top-hero { grid-template-columns: 1fr; grid-template-rows: 52vw auto; min-height: unset; }
  .top-hero__img-col { order: -1; }
  .top-hero__stats { display: none; }
  .top-hero__text-col { padding: 40px 24px 48px; justify-content: flex-start; }
  .top-hero__text-inner { justify-content: flex-start; padding-bottom: 32px; }
  .top-hero__title { font-size: clamp(22px, 6.5vw, 28px); }
  .top-hero__lead { font-size: 15px; }
  .top-hero__checks li { font-size: 14px; }
  .top-hero__checks { margin-bottom: 28px; }
  .top-hero__btns { flex-direction: column; align-items: stretch; }
  .top-hero__btns .btn { text-align: center; justify-content: center; width: 100%; }

  /* サービス */
  .top-services__grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .top-services__sub { grid-template-columns: 1fr; }
  .top-services__lead { font-size: 15px; }
  .top-service-card__body { padding: 20px 20px 24px; }
  .top-service-card__title { font-size: 18px; }
  .top-service-card__text { font-size: 15px; }
  .top-sub-card__title { font-size: 15px; }
  .top-sub-card__text { font-size: 13px; }

  /* WHY */
  .top-unique__inner { grid-template-columns: 1fr; gap: 36px; }
  .top-unique__title { font-size: clamp(18px, 5.5vw, 24px); margin-bottom: 28px; }
  .top-unique__item-text { font-size: 15px; }
  .top-unique__img-wrap { aspect-ratio: 16/9; }

  /* 数字 */
  .top-numbers { padding: 52px 0; }
  .top-numbers__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .top-numbers__num { font-size: 44px; }

  /* 声 */
  .top-voices__grid { grid-template-columns: 1fr; gap: 14px; margin-top: 32px; }
  .top-voice-card { flex-direction: row; gap: 16px; padding: 20px; }
  .top-voice-card__img-wrap { width: 48px; height: 48px; flex-shrink: 0; }
  .top-voice-card__text { padding-top: 0; font-size: 15px; }
  .top-voice-card__text::before { display: none; }

  /* 流れ */
  .top-flow__list { grid-template-columns: 1fr; gap: 12px; margin-top: 32px; }
  .top-flow__step { flex-direction: row; align-items: flex-start; gap: 16px; padding: 18px 16px; }
  .top-flow__step::after { display: none; }
  .top-flow__num { font-size: 30px; width: 36px; flex-shrink: 0; }
  .top-flow__body { flex: 1; }
  .top-flow__title { font-size: 15px; }
  .top-flow__text { font-size: 14px; }

  /* FAQ */
  .top-faq__list { margin-top: 32px; }
  .top-faq__q { padding: 18px 40px 18px 0; font-size: 15px; }
  .top-faq__a { font-size: 15px; }

  /* Blog */
  .top-blog__grid { grid-template-columns: 1fr; gap: 14px; margin-top: 32px; }
  .top-blog-card { flex-direction: row; border-radius: 10px; }
  .top-blog-card__img-wrap { aspect-ratio: 1; width: 96px; min-height: unset; flex-shrink: 0; }
  .top-blog-card__body { padding: 12px 14px; }
  .top-blog-card__title { font-size: 14px; }

  /* CTA */
  .top-cta { padding: 64px 0; }
  .top-cta__title { font-size: clamp(20px, 6vw, 28px); }
  .top-cta__btns { flex-direction: column; align-items: stretch; padding: 0 16px; }
  .top-cta__btns .btn { text-align: center; justify-content: center; }
}

/* ============================================================
   タブレット ( 769px 〜 1024px )
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Hero */
  .top-hero__text-col { padding: 100px 40px 48px; }
  .top-hero__title { font-size: clamp(20px, 2.8vw, 32px); }

  .top-unique__inner { grid-template-columns: 1fr 320px; gap: 48px; }
  .top-numbers__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .top-flow__list { grid-template-columns: repeat(2, 1fr); }
  .top-flow__step:nth-child(2)::after { display: none; }
  .top-flow__step:nth-child(4)::after { display: none; }
}
