/* ==========================================================
   CSS カスタムプロパティ（変数）
   ここを編集するだけでカラーを一括変更できます
   ========================================================== */
:root {
  /* ---- ブランドカラー ---- */
  --c-primary:       #0F2B4C;   /* ディープネイビー */
  --c-primary-l:     #1B4F8A;   /* ネイビー (ライト) */
  --c-accent:        #96702F;   /* 深金 (CTA・小文字も可読 AA 4.51:1) */
  --c-accent-h:      #7C5C25;   /* 深金 hover */
  --c-gold:          #B8935A;   /* 装飾用ゴールド（大面積・罫線のみ） */
  --c-gold-pale:     #EDE4D3;   /* 淡金（背景・枠） */
  --c-sky:           #1B4F8A;   /* 濃紺 (バッジ等) */

  /* ---- 背景 ---- */
  --c-bg:            #FFFFFF;
  --c-bg-gray:       #F7F6F3;   /* セクション交互（温かみのあるオフホワイト） */
  --c-bg-dark:       #0A1929;   /* ダークセクション */
  --c-bg-darker:     #060F18;   /* フッター */

  /* ---- テキスト ---- */
  --c-text:          #111827;
  --c-text-md:       #374151;
  --c-text-muted:    #6B7280;
  --c-text-light:    #9CA3AF;
  --c-text-white:    #FFFFFF;

  /* ---- ボーダー ---- */
  --c-border:        #E7E4DE;
  --c-border-md:     #D1D5DB;

  /* ---- ステータス ---- */
  --c-success:       #059669;
  --c-error:         #DC2626;

  /* ---- フォント ---- */
  --font: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;

  /* ---- フォントサイズ ---- */
  --fs-xs:    0.75rem;
  --fs-sm:    0.875rem;
  --fs-base:  1rem;
  --fs-lg:    1.125rem;
  --fs-xl:    1.25rem;
  --fs-2xl:   1.5rem;
  --fs-3xl:   1.875rem;
  --fs-4xl:   2.25rem;
  --fs-5xl:   3rem;
  --fs-6xl:   3.75rem;
  --fs-7xl:   4.5rem;
  --fs-8xl:   6rem;

  /* ---- ウェイト ---- */
  --fw-r: 400;
  --fw-m: 500;
  --fw-b: 700;
  --fw-k: 900;

  /* ---- ラインハイト ---- */
  --lh-tight:   1.2;
  --lh-snug:    1.4;
  --lh-base:    1.65;
  --lh-loose:   1.85;

  /* ---- スペース ---- */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* ---- ボーダー半径 ---- */
  --r-sm:   2px;
  --r:      4px;
  --r-md:   6px;
  --r-lg:   8px;
  --r-xl:   12px;
  --r-full: 9999px;

  /* ---- シャドウ ---- */
  --sh-xs: 0 1px 2px rgba(15,43,76,0.04);
  --sh-sm: 0 2px 8px rgba(15,43,76,0.05);
  --sh:    0 6px 24px rgba(15,43,76,0.06);
  --sh-md: 0 12px 40px rgba(15,43,76,0.08);
  --sh-lg: 0 20px 56px rgba(15,43,76,0.10);
  --sh-xl: 0 32px 72px rgba(15,43,76,0.12);

  /* ---- トランジション ---- */
  --tr-f: 150ms ease;
  --tr:   260ms ease;
  --tr-s: 420ms cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* ---- レイアウト ---- */
  --max-w:    1200px;
  --px:       clamp(1.25rem, 5vw, 2.5rem);
  --header-h: 72px;
  --sec-py:   clamp(4.5rem, 9vw, 7.5rem);
}

/* ==========================================================
   リセット & ベース
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: var(--fs-base);
  font-weight: var(--fw-r);
  line-height: var(--lh-base);
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--tr-f), opacity var(--tr-f); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
address { font-style: normal; }

/* ==========================================================
   ユーティリティ
   ========================================================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

.section         { padding-block: var(--sec-py); background: var(--c-bg); }
.section--gray   { background: var(--c-bg-gray); }
.section--dark   { background: var(--c-bg-dark); color: var(--c-text-white); }

/* セクションヘッダー共通 */
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section-header--light .section-eyebrow { color: #F97316; }
.section-header--light .section-title   { color: var(--c-text-white); }
.section-header--light .section-desc    { color: rgba(255,255,255,0.65); }

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: var(--fw-m);
  letter-spacing: 0.42em;
  color: var(--c-gold);
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--c-gold);
  opacity: 0.55;
}

.section-title {
  font-size: clamp(var(--fs-3xl), 4.2vw, var(--fs-5xl));
  font-weight: var(--fw-b);
  line-height: 1.35;
  color: var(--c-primary);
  margin-bottom: var(--sp-5);
  letter-spacing: 0.04em;
}

.section-desc {
  font-size: clamp(var(--fs-base), 1.5vw, var(--fs-lg));
  color: var(--c-text-muted);
  line-height: var(--lh-loose);
  max-width: 600px;
  margin-inline: auto;
}

/* ==========================================================
   ボタン
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: var(--fw-b);
  border-radius: var(--r-full);
  transition: background var(--tr), color var(--tr), border-color var(--tr),
              transform var(--tr), box-shadow var(--tr);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.2;
}

.btn--sm  { font-size: var(--fs-sm);  padding: 0.5rem 1.2rem; }
.btn--md  { font-size: var(--fs-base); padding: 0.75rem 1.75rem; }
.btn--lg  { font-size: var(--fs-lg);  padding: 0.875rem 2rem; }
.btn--wide { width: 100%; justify-content: center; }

/* プライマリ (オレンジ) */
.btn--primary {
  background: var(--c-accent);
  color: white;
  box-shadow: 0 4px 20px rgba(150,112,47,0.3);
}
.btn--primary:hover {
  background: var(--c-accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(150,112,47,0.4);
}
.btn--primary:active { transform: translateY(0); }

/* ゴースト (白枠 on dark bg) */
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: white;
  transform: translateY(-2px);
}

/* アウトライン (白背景用) */
.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-border-md);
  font-size: var(--fs-sm);
  padding: 0.5rem 1.2rem;
}
.btn--outline:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  transform: translateY(-1px);
}

/* ==========================================================
   HEADER
   白背景・ダークテキスト
   ========================================================== */
.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  z-index: 1000;
  transition: box-shadow var(--tr);
}

.header.is-scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

/* ロゴ */
.header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: var(--sp-1);
  border-left: 2px solid var(--c-gold);
  padding-left: var(--sp-4);
}
.header__logo-main {
  font-size: 1.02rem;
  font-weight: var(--fw-b);
  color: var(--c-primary);
  line-height: 1;
  letter-spacing: 0.14em;
}
.header__logo-sub {
  font-size: 0.58rem;
  color: var(--c-text-muted);
  line-height: 1;
  letter-spacing: 0.3em;
}

/* ナビ */
.header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.header__nav-link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-m);
  color: var(--c-text-md);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r);
  transition: color var(--tr-f), background var(--tr-f);
}
.header__nav-link:hover {
  color: var(--c-primary);
  background: var(--c-bg-gray);
}

.header__nav-cta {
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-sm);
  font-weight: var(--fw-b);
  color: white !important;
  background: var(--c-accent);
  border-radius: var(--r-full);
  padding: 0.5rem 1.25rem;
  transition: background var(--tr-f), transform var(--tr-f);
}
.header__nav-cta:hover {
  background: var(--c-accent-h);
  transform: translateY(-1px);
}

/* ハンバーガー */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
}
.header__hamburger span {
  display: block;
  height: 2px;
  background: var(--c-primary);
  border-radius: 2px;
  transition: transform var(--tr), opacity var(--tr);
  transform-origin: center;
}
.header__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================
   HERO
   左: テキスト / 右: CSS抽象ビジュアル
   ========================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-color: var(--c-bg-dark);
  background-image: url('../images/myanmar-hero.jpg');
  background-position: center 60%;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: var(--header-h);
}

/* 背景グラデーション（写真の上に重ねて可読性を確保） */
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(27,79,138,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(150,112,47,0.12) 0%, transparent 50%),
    linear-gradient(150deg, rgba(7,17,29,0.92) 0%, rgba(15,43,76,0.88) 50%, rgba(9,26,46,0.92) 100%);
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 30%, transparent 80%);
}

/* 左右レイアウト */
.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-12);
  padding-block: clamp(3.5rem, 8vh, 6rem);
}

/* 左: テキスト */
.hero__content {}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(150,112,47,0.15);
  border: 1px solid rgba(150,112,47,0.35);
  border-radius: var(--r-full);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-xs);
  font-weight: var(--fw-b);
  color: #D9B87C;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-6);
}

.hero__headline {
  font-size: clamp(2.4rem, 5.5vw, var(--fs-7xl));
  font-weight: var(--fw-k);
  line-height: var(--lh-tight);
  color: white;
  margin-bottom: var(--sp-6);
  letter-spacing: -0.02em;
}

.hero__accent {
  font-style: normal;
  color: #D9B87C;
}

.hero__subline {
  font-size: clamp(var(--fs-base), 1.5vw, var(--fs-lg));
  color: rgba(255,255,255,0.65);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-8);
  max-width: 480px;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.hero__trust {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.45);
}
.hero__trust li span { color: var(--c-accent); font-weight: var(--fw-b); }

/* 右: CSS抽象ビジュアル */
.hero__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-inline: auto;
}

/* 同心円リング */
.hv__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  transform: translate(-50%, -50%);
}
.hv__ring--outer { width: 90%; height: 90%; animation: spin 40s linear infinite; }
.hv__ring--mid   { width: 65%; height: 65%; border-color: rgba(150,112,47,0.15); animation: spin 28s linear infinite reverse; }
.hv__ring--inner { width: 40%; height: 40%; border-color: rgba(37,99,235,0.2); animation: spin 18s linear infinite; }

/* ドット */
.hv__dot {
  position: absolute;
  border-radius: 50%;
}
.hv__dot--1 {
  width: 10px; height: 10px;
  background: var(--c-accent);
  top: 10%; left: 50%;
  box-shadow: 0 0 16px rgba(150,112,47,0.6);
  animation: orbitA 28s linear infinite;
}
.hv__dot--2 {
  width: 7px; height: 7px;
  background: var(--c-sky);
  top: 50%; left: 10%;
  box-shadow: 0 0 12px rgba(37,99,235,0.6);
  animation: orbitB 40s linear infinite;
}
.hv__dot--3 {
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.5);
  bottom: 15%; right: 20%;
  animation: orbitC 18s linear infinite reverse;
}

/* フローティングカード */
.hv__card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: floatCard 6s ease-in-out infinite;
}
.hv__card-label {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hv__card-value {
  font-size: var(--fs-lg);
  font-weight: var(--fw-k);
  color: white;
  line-height: 1;
}
.hv__card--1 { top: 8%; left: 55%; animation-delay: 0s; }
.hv__card--2 { bottom: 22%; left: 4%; animation-delay: 2s; }
.hv__card--3 { bottom: 8%; right: 6%; animation-delay: 4s; }

/* スクロールヒント */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.25);
  z-index: 1;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ==========================================================
   STATS BAR
   ========================================================== */
.stats {
  background: white;
  border-top: 3px solid var(--c-accent);
  border-bottom: 1px solid var(--c-border);
  padding-block: clamp(1.75rem, 3vw, 2.75rem);
}

.stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-10);
}

.stats__sep {
  width: 1px;
  height: 52px;
  background: var(--c-border-md);
  flex-shrink: 0;
}

.stats__item { text-align: center; min-width: 130px; }

.stats__num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: var(--sp-1);
}

.stats__num {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-k);
  color: var(--c-primary);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.stats__unit {
  font-size: var(--fs-lg);
  font-weight: var(--fw-b);
  color: var(--c-primary);
}

.stats__num-wrap--text .stats__text-val {
  font-size: var(--fs-xl);
  font-weight: var(--fw-b);
  color: var(--c-primary);
}

.stats__label {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  letter-spacing: 0.02em;
}

/* ==========================================================
   強みセクション (STRENGTHS)
   ========================================================== */
.strengths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

/* ストレングスカード */
.scard {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-top: 4px solid var(--c-border-md);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: border-top-color var(--tr), box-shadow var(--tr), transform var(--tr);
}

.scard:hover {
  border-top-color: var(--c-accent);
  box-shadow: var(--sh-md);
  transform: translateY(-5px);
}

.scard--featured {
  background: linear-gradient(155deg, var(--c-primary) 0%, var(--c-primary-l) 100%);
  border: none;
  border-top: 4px solid var(--c-accent);
  color: white;
}
.scard--featured:hover {
  box-shadow: var(--sh-xl);
  border-top-color: #D9B87C;
}

.scard__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.scard__num {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-k);
  line-height: 1;
  color: var(--c-border-md);
  letter-spacing: -0.03em;
  user-select: none;
}
.scard--featured .scard__num { color: rgba(255,255,255,0.15); }

.scard__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r);
  background: rgba(150,112,47,0.1);
  border: 1px solid rgba(150,112,47,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xl);
  font-weight: var(--fw-k);
  color: var(--c-accent);
  flex-shrink: 0;
}
.scard--featured .scard__icon {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: #D9B87C;
}

.scard__title {
  font-size: clamp(var(--fs-xl), 2.2vw, var(--fs-2xl));
  font-weight: var(--fw-k);
  line-height: var(--lh-snug);
  color: var(--c-primary);
}
.scard--featured .scard__title { color: white; }

.scard__body {
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  color: var(--c-text-muted);
  flex: 1;
}
.scard--featured .scard__body { color: rgba(255,255,255,0.7); }

.scard__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-b);
  color: var(--c-accent);
  margin-top: auto;
  transition: gap var(--tr-f), letter-spacing var(--tr-f);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
}
.scard--featured .scard__link { color: #D9B87C; }
.scard__link:hover { letter-spacing: 0.04em; }

/* ==========================================================
   対応業種 (INDUSTRIES)
   ========================================================== */
.industries__table-wrap {
  max-width: 960px;
  margin: 0 auto;
  overflow-x: auto;
}

.industries__table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
  background: var(--c-bg);
}

.industries__table th,
.industries__table td {
  padding: var(--sp-4) var(--sp-5);
  border: 1px solid var(--c-border);
  text-align: left;
  vertical-align: top;
}

.industries__table thead th {
  background: var(--c-primary);
  color: #fff;
  font-weight: var(--fw-b);
}

.industries__table tbody tr:nth-child(even) { background: var(--c-bg-gray); }

.industries__table-name {
  font-weight: var(--fw-b);
  color: var(--c-primary);
  white-space: nowrap;
}

.industries__table-ok {
  color: var(--c-primary-l);
  font-weight: var(--fw-b);
  text-align: center;
  white-space: nowrap;
}

.industries__table-ng {
  color: var(--c-accent);
  font-weight: var(--fw-b);
  text-align: center;
  white-space: nowrap;
  background: #FFF4EC !important;
}

.industries__note {
  max-width: 960px;
  margin: var(--sp-4) auto 0;
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}

.industries__more {
  max-width: 960px;
  margin: var(--sp-6) auto 0;
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
}

/* ==========================================================
   ご利用の流れ (FLOW)
   ========================================================== */
/* ====================================================
   ご利用の流れ (FLOW)
   番号円（左）＋テキスト（右）の縦並びレイアウト。
   旧: 千鳥配置 (absolute配置で番号がテキストに重なる問題) → 廃止
   新: grid 2列 (48px固定 | 1fr) で番号とテキストを完全分離
   ==================================================== */
.flow__track {
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--sp-12);
  position: relative;
}

/* 縦ライン: 番号円の中心に合わせて左 23px */
.flow__track::before {
  content: '';
  position: absolute;
  top: 48px;          /* 最初の番号円の下端 */
  left: 23px;         /* 番号円中心 (48px ÷ 2 - 1px) */
  bottom: 72px;       /* 最後の番号円より少し上で終了 */
  width: 2px;
  background: linear-gradient(to bottom, var(--c-primary-l), rgba(27,79,138,0.06));
  pointer-events: none;
}

/* 各ステップ: 番号円とテキストを grid で横並び */
.flow-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--sp-5);
  padding-bottom: var(--sp-8);
  position: relative;
  /* 旧レイアウトの odd/even 上書きを明示的にリセット */
  text-align: left;
  padding-left: 0;
  padding-right: 0;
}

/* 番号円: relative 配置でグリッド内に収める */
.flow-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-primary);
  color: white;
  font-size: var(--fs-sm);
  font-weight: var(--fw-k);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* absolute を使わず relative のまま */
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--c-bg), 0 4px 14px rgba(15,43,76,0.2);
  transition: background var(--tr), transform var(--tr);
  /* top / right / left の旧値は不要なので未指定 */
}
.flow-step:hover .flow-step__num {
  background: var(--c-accent);
  transform: scale(1.05);
}

/* テキストエリア */
.flow-step__body {
  padding-top: var(--sp-2);
}

.flow-step__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-b);
  color: var(--c-primary);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-2);
}
.flow-step__text {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-loose);
}

.flow__detail {
  max-width: 960px;
  margin: 0 auto var(--sp-12);
  background: var(--c-bg-gray);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-8);
}

.flow__detail-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-b);
  color: var(--c-primary);
  text-align: center;
  margin-bottom: var(--sp-3);
}

.flow__detail-note {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-loose);
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-8);
}

.flow__detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
}

.flow__detail-col-title {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-base);
  font-weight: var(--fw-b);
  color: var(--c-primary);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--c-border);
}

.flow__detail-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  padding: 3px 8px;
  border-radius: var(--r-sm);
  background: var(--c-primary);
  color: #fff;
  font-size: 0.66rem;
  font-weight: var(--fw-b);
  letter-spacing: 0.12em;
  margin-right: var(--sp-2);
}

.flow__detail-list {
  list-style: decimal;
  padding-left: 1.3em;
}

.flow__detail-list li {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-loose);
  padding: var(--sp-2) 0;
  border-bottom: 1px dashed var(--c-border);
}

.flow__detail-list li:last-child { border-bottom: none; }

.flow__detail-item--branch {
  color: var(--c-primary) !important;
  font-weight: 600;
}

@media (max-width: 720px) {
  .flow__detail-grid { grid-template-columns: 1fr; }
  .flow__detail { padding: var(--sp-5); }
}

.flow__cta { text-align: center; }

/* ==========================================================
   特定技能とは (TOKUTEI)
   ========================================================== */
.tokutei__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.tokutei__cards { display: flex; flex-direction: column; gap: var(--sp-4); }

.tcard {
  background: white;
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-sky);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: box-shadow var(--tr);
}
.tcard:hover { box-shadow: var(--sh-md); }

.tcard--2 { border-left-color: var(--c-primary); }

.tcard__badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-b);
  letter-spacing: 0.06em;
  padding: 0.25rem 0.8rem;
  border-radius: var(--r-full);
  background: rgba(37,99,235,0.1);
  color: var(--c-sky);
  margin-bottom: var(--sp-3);
}
.tcard__badge--2 {
  background: rgba(15,43,76,0.08);
  color: var(--c-primary);
}

.tcard__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-b);
  color: var(--c-primary);
  margin-bottom: var(--sp-4);
}

.tcard__desc {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-4);
}

.tcard__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.tcard__list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: 1.5;
}
.tcard__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-sky);
  flex-shrink: 0;
}
.tcard--2 .tcard__list li::before { background: var(--c-primary); }

/* メリット */
.tokutei__merits {
  background: white;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.tokutei__merits-title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-b);
  color: var(--c-primary);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 2px solid var(--c-border);
}

.merit-list { display: flex; flex-direction: column; gap: var(--sp-5); }
.merit-item { display: flex; gap: var(--sp-4); align-items: flex-start; }
.merit-item__check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c-success);
  color: white;
  font-size: var(--fs-sm);
  font-weight: var(--fw-b);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.merit-item strong { display: block; font-size: var(--fs-base); color: var(--c-primary); margin-bottom: 2px; }
.merit-item p      { font-size: var(--fs-sm); color: var(--c-text-muted); line-height: 1.5; }

/* ==========================================================
   多言語対応 (LANGUAGES)
   ========================================================== */
.lang-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.lcard {
  background: white;
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: clamp(1.25rem, 2vw, 2rem) var(--sp-4);
  text-align: center;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}
.lcard:hover {
  border-color: var(--c-accent);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.lcard__flag { font-size: 2.5rem; line-height: 1; margin-bottom: var(--sp-3); }
.lcard__name { font-size: var(--fs-sm); font-weight: var(--fw-b); color: var(--c-primary); margin-bottom: 2px; }
.lcard__en   { font-size: var(--fs-xs); color: var(--c-text-light); }

/* ==========================================================
   よくある質問 (FAQ)
   ========================================================== */
.faq__list {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  background: white;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.faq-item[open] {
  border-color: var(--c-primary-l);
  box-shadow: var(--sh-sm);
}

.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--fs-base);
  font-weight: var(--fw-b);
  color: var(--c-primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background var(--tr-f);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { background: var(--c-bg-gray); }

/* + / × アイコン */
.faq-item__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border-md);
  position: relative;
  transition: background var(--tr), border-color var(--tr), transform var(--tr);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--c-primary);
  transition: transform var(--tr);
}
.faq-item__icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-item__icon::after  { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }

.faq-item[open] .faq-item__icon {
  background: var(--c-primary);
  border-color: var(--c-primary);
  transform: rotate(45deg);
}
.faq-item[open] .faq-item__icon::before,
.faq-item[open] .faq-item__icon::after { background: white; }

.faq-item__a {
  border-top: 1px solid var(--c-border);
}
.faq-item__a p {
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--fs-base);
  color: var(--c-text-muted);
  line-height: var(--lh-loose);
}

/* ==========================================================
   会社概要 (ABOUT)
   ========================================================== */
.about__layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-12);
  align-items: start;
}

.about__table-wrap { overflow-x: auto; }

.about__table { width: 100%; border-collapse: collapse; }
.about__table th,
.about__table td {
  padding: var(--sp-4) var(--sp-5);
  text-align: left;
  font-size: var(--fs-base);
  border-bottom: 1px solid var(--c-border);
  line-height: var(--lh-base);
  vertical-align: top;
}
.about__table th {
  width: 170px;
  font-weight: var(--fw-b);
  color: var(--c-primary);
  white-space: nowrap;
  background: var(--c-bg-gray);
  border-right: 2px solid var(--c-border);
}
.about__table td { color: var(--c-text-md); }
.about__table td a { color: var(--c-sky); text-decoration: underline; text-underline-offset: 2px; }
.about__table td a:hover { color: var(--c-primary); }

/* エンブレムカード */
.about__emblem-wrap { width: 260px; flex-shrink: 0; }
.about__emblem-card {
  background: linear-gradient(155deg, var(--c-primary) 0%, var(--c-primary-l) 100%);
  border-radius: var(--r-xl);
  padding: var(--sp-10) var(--sp-8);
  text-align: center;
  color: white;
  box-shadow: var(--sh-xl);
}
.about__emblem-letters {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-b);
  letter-spacing: 0.42em;
  color: var(--c-gold);
  padding-bottom: var(--sp-4);
  margin-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(184,147,90,0.35);
}
.about__emblem-name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-m);
  line-height: var(--lh-loose);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--sp-5);
}
.about__emblem-reg {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-3);
}
.about__emblem-reg strong { color: rgba(255,255,255,0.85); font-size: var(--fs-sm); }
.about__emblem-est {
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  font-weight: var(--fw-b);
}

/* ==========================================================
   お問い合わせフォーム (CONTACT)
   ========================================================== */
.contact-form { max-width: 740px; margin-inline: auto; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-5);
}
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-group--full { grid-column: 1 / -1; }

.form-label { font-size: var(--fs-sm); font-weight: var(--fw-b); color: rgba(255,255,255,0.8); }
.form-req {
  font-size: var(--fs-xs);
  font-weight: var(--fw-m);
  color: #D9B87C;
  background: rgba(251,146,60,0.15);
  border-radius: var(--r-full);
  padding: 0.1rem 0.5rem;
  margin-left: var(--sp-1);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem var(--sp-4);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  color: white;
  font-size: var(--fs-base);
  outline: none;
  transition: background var(--tr), border-color var(--tr), box-shadow var(--tr);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  background: rgba(255,255,255,0.10);
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(150,112,47,0.2);
}
.form-input.is-error, .form-select.is-error, .form-textarea.is-error {
  border-color: var(--c-error);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.2);
}
.form-textarea { resize: vertical; min-height: 140px; line-height: var(--lh-base); }

.form-select-wrap { position: relative; }
.form-select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 2.5rem; }
.form-select option { background: var(--c-bg-dark); color: white; }
.form-select-arr {
  position: absolute;
  right: var(--sp-4);
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.35);
  pointer-events: none;
}

.form-err { font-size: var(--fs-xs); color: #FCA5A5; min-height: 1em; }

/* プライバシー同意 */
.form-privacy { margin-bottom: var(--sp-6); }
.form-check-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  cursor: pointer;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.65);
}
.form-check { position: absolute; opacity: 0; width: 0; height: 0; }
.form-check-box {
  width: 20px; height: 20px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--r-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--tr), border-color var(--tr);
  position: relative;
}
.form-check-box::after {
  content: '';
  width: 10px; height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) scale(0);
  transition: transform var(--tr);
  margin-top: -2px;
}
.form-check:checked + .form-check-box { background: var(--c-accent); border-color: var(--c-accent); }
.form-check:checked + .form-check-box::after { transform: rotate(-45deg) scale(1); }
.form-check:focus + .form-check-box { box-shadow: 0 0 0 3px rgba(150,112,47,0.3); }
.form-privacy-link { color: #D9B87C; text-decoration: underline; }

.form-submit { text-align: center; }

.form-success { text-align: center; padding: var(--sp-12) var(--sp-8); }
.form-success__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--c-success);
  color: white;
  font-size: var(--fs-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  box-shadow: 0 8px 24px rgba(5,150,105,0.35);
}
.form-success h3 { font-size: var(--fs-2xl); font-weight: var(--fw-b); color: white; margin-bottom: var(--sp-3); }
.form-success p  { color: rgba(255,255,255,0.6); line-height: var(--lh-loose); }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--c-bg-darker);
  color: rgba(255,255,255,0.55);
  padding-top: clamp(3rem, 6vw, 5rem);
}
.footer__top {
  display: flex;
  gap: clamp(2rem, 6vw, 5rem);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.footer__brand { flex: 1; min-width: 240px; }
.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.footer__logo-text {
  border-left: 2px solid var(--c-gold);
  padding-left: var(--sp-4);
}
.footer__logo-main {
  display: block;
  font-size: 1.02rem;
  font-weight: var(--fw-b);
  color: rgba(255,255,255,0.92);
  line-height: 1;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}
.footer__logo-sub {
  display: block;
  font-size: 0.58rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.3em;
  line-height: 1;
}
.footer__address { font-size: var(--fs-sm); line-height: var(--lh-loose); margin-bottom: var(--sp-4); }
.footer__address a:hover { color: rgba(255,255,255,0.9); }
.footer__reg { font-size: var(--fs-xs); color: rgba(255,255,255,0.3); }

.footer__nav { display: flex; gap: clamp(2rem, 4vw, 4rem); flex-wrap: wrap; }
.footer__nav-heading { font-size: var(--fs-xs); font-weight: var(--fw-b); letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: var(--sp-4); }
.footer__nav-col ul  { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__nav-col a   { font-size: var(--fs-sm); color: rgba(255,255,255,0.5); transition: color var(--tr-f); }
.footer__nav-col a:hover { color: rgba(255,255,255,0.9); }

.footer__bottom { padding-block: var(--sp-6); text-align: center; }
.footer__copy   { font-size: var(--fs-xs); color: rgba(255,255,255,0.2); }

/* ==========================================================
   ▼ 変更1: ミャンマー現地パートナーセクション
   Success Services Education Center（V-FIRSTミャンマー株式会社 運営）
   ========================================================== */

/* セクション自体は .section--gray を継承 */

/* カード全体 (左右2カラム) */
.partner__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-top: 4px solid var(--c-accent);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--sh-md);
}

/* ---- バッジ群 ---- */
.partner__badge-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.partner__badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-b);
  letter-spacing: 0.06em;
  padding: 0.25rem 0.85rem;
  border-radius: var(--r-full);
  background: rgba(150,112,47,0.1);
  color: var(--c-accent);
  border: 1px solid rgba(150,112,47,0.25);
}
.partner__badge--sub {
  background: var(--c-bg-gray);
  color: var(--c-text-muted);
  border-color: var(--c-border);
}

/* ---- 学校名 ---- */
.partner__name {
  font-size: clamp(var(--fs-2xl), 3vw, var(--fs-4xl));
  font-weight: var(--fw-k);
  line-height: var(--lh-snug);
  color: var(--c-primary);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.01em;
}

/* ---- 運営会社リンク ---- */
.partner__operator {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  margin-bottom: var(--sp-4);
}
.partner__operator a {
  color: var(--c-accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.partner__operator a:hover { color: var(--c-accent-h); }

/* ---- 説明文 ---- */
.partner__desc {
  font-size: var(--fs-base);
  color: var(--c-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-5);
}

/* ---- 特徴リスト ---- */
.partner__features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}
.partner__features li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--c-text-md);
  line-height: 1.5;
}
.partner__features li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
}

/* ---- SNSボタングループ ---- */
.partner__sns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

/* SNSボタン共通スタイル */
.partner-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-b);
  padding: 0.8rem 1.4rem;
  border-radius: var(--r-full);
  color: white;
  white-space: nowrap;
  transition: transform var(--tr), box-shadow var(--tr), filter var(--tr-f);
  line-height: 1;
}
.partner-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}
.partner-btn:active {
  transform: translateY(-1px);
}

/* SNSボタン内アイコン */
.partner-btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* 外部リンク矢印 */
.partner-btn__arrow {
  font-size: 0.7em;
  opacity: 0.65;
  margin-left: var(--sp-1);
  transition: transform var(--tr-f);
}
.partner-btn:hover .partner-btn__arrow {
  transform: translate(2px, -2px);
  opacity: 1;
}

/* Facebook ボタン (ブランドカラー #1877F2) */
.partner-btn--fb {
  background: #1877F2;
  box-shadow: 0 3px 14px rgba(24,119,242,0.32);
}
.partner-btn--fb:hover {
  box-shadow: 0 7px 22px rgba(24,119,242,0.45);
}

/* TikTok ボタン (ブランドカラー #010101) */
.partner-btn--tt {
  background: #010101;
  box-shadow: 0 3px 14px rgba(0,0,0,0.28);
}
.partner-btn--tt:hover {
  box-shadow: 0 7px 22px rgba(0,0,0,0.4);
}

/* ---- 右: CSS抽象ビジュアル ---- */
.partner__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(145deg, #0A1F3A 0%, #0F2B4C 45%, #1B4F8A 100%);
}

/* ドットグリッド */
.pv__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 26px 26px;
}

/* 同心円リング */
.pv__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.pv__ring--lg {
  width: 82%;
  height: 82%;
  border: 1px solid rgba(255,255,255,0.07);
  animation: spin 36s linear infinite;
}
.pv__ring--sm {
  width: 48%;
  height: 48%;
  border: 1px solid rgba(150,112,47,0.18);
  animation: spin 20s linear infinite reverse;
}

/* 中央ロゴテキスト */
.pv__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}
.pv__center-name {
  display: block;
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  font-weight: var(--fw-k);
  letter-spacing: 0.12em;
  color: white;
  line-height: 1;
  text-shadow: 0 2px 24px rgba(255,255,255,0.15);
}
.pv__center-sub {
  display: block;
  font-size: var(--fs-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: var(--sp-2);
}

/* フローティング情報タグ */
.pv__tag {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-md);
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-b);
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  text-align: center;
  animation: floatCard 6s ease-in-out infinite;
}
.pv__tag--1 { top: 10%; right:  8%; animation-delay: 0s;  }
.pv__tag--2 { top: 34%; right:  4%; animation-delay: 2s;  }
.pv__tag--3 { bottom: 12%; right: 6%; animation-delay: 4s;  }

/* 装飾ドット */
.pv__dot {
  position: absolute;
  border-radius: 50%;
}
.pv__dot--1 {
  width: 10px; height: 10px;
  background: var(--c-accent);
  top: 18%; left: 12%;
  box-shadow: 0 0 14px rgba(150,112,47,0.6);
  animation: floatCard 5s ease-in-out infinite;
}
.pv__dot--2 {
  width: 7px; height: 7px;
  background: #2563EB;
  bottom: 22%; left: 18%;
  box-shadow: 0 0 10px rgba(37,99,235,0.6);
  animation: floatCard 7s ease-in-out infinite 1s;
}

/* ---- レスポンシブ ---- */
/* タブレット (max 1024px): 縦積み */
@media (max-width: 1024px) {
  .partner__card {
    grid-template-columns: 1fr;
  }
  .partner__visual {
    max-width: 480px;
    margin-inline: auto;
  }
}

/* スマートフォン (max 640px) */
@media (max-width: 640px) {
  .partner-btn {
    font-size: var(--fs-xs);
    padding: 0.65rem 1.1rem;
  }
  .partner__sns {
    flex-direction: column;
  }
  .partner-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ▲ 変更1: ミャンマー現地パートナーセクション ここまで */

/* ==========================================================
   ページトップへ戻るボタン
   ========================================================== */
.back-to-top {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-8);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: background var(--tr), transform var(--tr), opacity var(--tr);
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--c-accent); transform: translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; }

/* ==========================================================
   スクロールアニメーション
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--tr-s), transform var(--tr-s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 80ms; }
.reveal:nth-child(3) { transition-delay: 160ms; }
.reveal:nth-child(4) { transition-delay: 240ms; }
.reveal:nth-child(5) { transition-delay: 320ms; }
.reveal:nth-child(6) { transition-delay: 400ms; }
.reveal:nth-child(7) { transition-delay: 480ms; }
.reveal:nth-child(8) { transition-delay: 560ms; }

/* ==========================================================
   キーフレーム
   ========================================================== */
@keyframes spin        { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes floatCard   { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes orbitA      { 0% { transform: rotate(0deg)   translateX(42%) rotate(0deg); }   100% { transform: rotate(360deg)  translateX(42%) rotate(-360deg); } }
@keyframes orbitB      { 0% { transform: rotate(180deg) translateX(32%) rotate(-180deg); } 100% { transform: rotate(540deg)  translateX(32%) rotate(-540deg); } }
@keyframes orbitC      { 0% { transform: rotate(90deg)  translateX(22%) rotate(-90deg); }  100% { transform: rotate(450deg)  translateX(22%) rotate(-450deg); } }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 0.8; } }

/* ==========================================================
   レスポンシブ — タブレット (max 1024px)
   ========================================================== */
@media (max-width: 1024px) {
  /* ヘッダー: ハンバーガー表示 */
  .header__nav-list { display: none; }
  .header__hamburger { display: flex; }

  /* 開いたメニュー本体：ヘッダー下から画面下まで完全不透明で覆う */
  /* 注意: .header に backdrop-filter があるため、fixed の基準が .header になる。
     bottom:0 では高さが 0 になるので、高さを明示する。 */
  .header__nav.is-open {
    position: fixed;
    top: var(--header-h);
    inset-inline: 0;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    background: var(--c-bg);
    z-index: 1001;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .header__nav.is-open .header__nav-list {
    display: flex;
    min-height: 100%;
    background: var(--c-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-6);
    padding: var(--sp-10) var(--sp-6);
  }
  .header__nav.is-open .header__nav-link {
    font-size: var(--fs-xl);
    color: var(--c-primary);
    padding: var(--sp-3) var(--sp-6);
  }
  .header__nav.is-open .header__nav-cta {
    font-size: var(--fs-xl);
    padding: var(--sp-4) var(--sp-8);
  }

  /* ヒーロー: 縦積み */
  .hero__layout { grid-template-columns: 1fr; gap: var(--sp-8); }
  .hero__visual  { display: none; }

  /* 強み: 縦積み */
  .strengths__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }

  /* フロー: 縦並びレイアウトはスマホでも同一構造のため追加上書き不要。
     max-width のみ縮小 */
  .flow__track { max-width: 520px; }

  /* 特定技能: 縦積み */
  .tokutei__layout { grid-template-columns: 1fr; }

  /* 言語: 3列 */
  .lang-grid { grid-template-columns: repeat(3, 1fr); }

  /* 会社概要 */
  .about__layout { grid-template-columns: 1fr; }
  .about__emblem-wrap { display: none; }

  /* フォーム */
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: auto; }
}

/* ==========================================================
   レスポンシブ — スマートフォン (max 640px)
   ========================================================== */
@media (max-width: 640px) {
  :root { --sec-py: clamp(3rem, 10vw, 5rem); }

  .hero__headline { font-size: clamp(2rem, 9vw, 2.5rem); }
  .hero__cta-group { flex-direction: column; }
  .hero__cta-group .btn { width: 100%; justify-content: center; }
  .hero__scroll-hint { display: none; }

  .stats__inner { display: grid; grid-template-columns: 1fr 1fr; }
  .stats__sep   { display: none; }

  .industries__table { font-size: var(--fs-xs); }
  .industries__table th, .industries__table td { padding: var(--sp-3); }
  .lang-grid        { grid-template-columns: repeat(2, 1fr); }

  .section-title { font-size: var(--fs-3xl); }

  .about__table th { width: 110px; font-size: var(--fs-sm); }
  .about__table td { font-size: var(--fs-sm); }

  .footer__top { flex-direction: column; }
  .footer__nav { gap: var(--sp-6); }
  .back-to-top { bottom: var(--sp-5); right: var(--sp-5); }

  .faq-item__q { padding: var(--sp-4) var(--sp-4); font-size: var(--fs-sm); }
  .faq-item__a p { padding: var(--sp-4); }
}

/* ==========================================================
   アクセシビリティ: モーション低減
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================
   日本語レベルチャート (修正8)
   ========================================================== */
.jlpt-chart {
  margin-top: var(--sp-12);
  background: var(--c-bg-gray);
  border-radius: var(--r-md);
  padding: var(--sp-8) var(--sp-10);
}

.jlpt-chart__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-b);
  color: var(--c-primary);
  margin-bottom: var(--sp-6);
  text-align: center;
}

.jlpt-chart__levels {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.jlpt-level {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-sm);
  background: #fff;
  border: 1px solid var(--c-border);
}

.jlpt-level--highlight {
  background: #EFF6FF;
  border-color: var(--c-sky);
}

.jlpt-level__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-weight: var(--fw-b);
  font-size: var(--fs-sm);
  flex-shrink: 0;
  color: #fff;
}

.jlpt-level--n5 { background: var(--c-text-muted); }
.jlpt-level--n4 { background: var(--c-sky); }
.jlpt-level--n3 { background: var(--c-primary-l); }
.jlpt-level--n2 { background: var(--c-accent); }

.jlpt-level__label {
  font-size: var(--fs-sm);
  color: var(--c-text-md);
  line-height: var(--lh-base);
}

.jlpt-level__mark {
  font-style: normal;
  font-weight: var(--fw-b);
  color: var(--c-accent);
  margin-left: var(--sp-2);
}

.jlpt-chart__note {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  text-align: center;
  line-height: var(--lh-base);
}

/* ==========================================================
   パートナーセクション追加要素 (修正7, 9, 11)
   ========================================================== */
.partner__domestic,
.partner__return {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-6) var(--sp-8);
  margin-top: var(--sp-6);
}

.partner__domestic-icon,
.partner__return-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r);
  background: rgba(150,112,47,0.08);
  border: 1px solid rgba(150,112,47,0.22);
  color: var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.partner__domestic-icon svg,
.partner__return-icon svg { width: 21px; height: 21px; }

.partner__domestic-title,
.partner__return-title {
  font-size: var(--fs-base);
  font-weight: var(--fw-b);
  color: var(--c-primary);
  margin-bottom: var(--sp-2);
}

.partner__domestic-body p,
.partner__return-body p {
  font-size: var(--fs-sm);
  color: var(--c-text-md);
  line-height: var(--lh-loose);
}

.partner__map {
  margin-top: var(--sp-8);
  text-align: center;
}

.partner__map-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-b);
  color: var(--c-primary);
  margin-bottom: var(--sp-4);
}

.partner__map-img {
  max-width: 600px;
  width: 100%;
  border-radius: var(--r);
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.partner__map-caption {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin-top: var(--sp-2);
}

/* ==========================================================
   なぜミャンマー人材なのか (修正4)
   ========================================================== */
.why-myanmar { background: var(--c-bg); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}

.wcard {
  background: var(--c-bg-gray);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-6) var(--sp-6);
  transition: box-shadow 0.2s, transform 0.2s;
}

.wcard:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.wcard__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r);
  background: rgba(150,112,47,0.08);
  border: 1px solid rgba(150,112,47,0.22);
  color: var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
}
.wcard__icon svg { width: 22px; height: 22px; }

.wcard__title {
  font-size: var(--fs-base);
  font-weight: var(--fw-b);
  color: var(--c-primary);
  margin-bottom: var(--sp-2);
}

.wcard__body {
  font-size: var(--fs-sm);
  color: var(--c-text-md);
  line-height: var(--lh-loose);
}

/* ==========================================================
   ご利用の流れ 追加要素 (修正1)
   ========================================================== */
.flow__timeline {
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: var(--fw-b);
  color: var(--c-accent);
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  border-radius: var(--r);
  padding: var(--sp-3) var(--sp-6);
  margin-bottom: var(--sp-8);
  display: inline-block;
}

.flow__timeline-wrap {
  text-align: center;
}

.flow-step__duration {
  display: inline-block;
  font-size: var(--fs-xs);
  color: var(--c-accent);
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  border-radius: var(--r-sm);
  padding: 0.15rem 0.6rem;
  margin-bottom: var(--sp-2);
  font-weight: var(--fw-m);
}

/* ==========================================================
   ご利用料金 (修正2)
   ========================================================== */
.pricing__single {
  background: #fff;
  border: 2px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  max-width: 600px;
  margin: var(--sp-10) auto 0;
  text-align: center;
}
.pricing__single-head h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-k);
  color: var(--c-primary);
  margin-bottom: var(--sp-3);
}
.pricing__single-head p {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-6);
}
.pricing__single-list {
  border-top: 1px solid var(--c-border);
  margin-bottom: var(--sp-8);
}
.pricing__single-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--c-border);
  text-align: left;
}
.pricing__single-label {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  flex: 1;
}
.pricing__single-value {
  font-size: var(--fs-lg);
  font-weight: var(--fw-k);
  color: var(--c-primary);
  white-space: nowrap;
}
.pricing__single-note {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  white-space: nowrap;
}

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-10);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pcard {
  background: #fff;
  border: 2px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-8);
  position: relative;
}

.pcard--featured {
  border-color: var(--c-accent);
  box-shadow: 0 8px 32px rgba(150,112,47,0.12);
}

.pcard__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-accent);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: var(--fw-b);
  padding: var(--sp-1) var(--sp-4);
  border-radius: 999px;
  white-space: nowrap;
}

.pcard__head {
  text-align: center;
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--c-border);
  margin-bottom: var(--sp-6);
}

.pcard__name {
  font-size: var(--fs-xl);
  font-weight: var(--fw-b);
  color: var(--c-primary);
  margin-bottom: var(--sp-1);
}

.pcard__sub {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  margin-bottom: var(--sp-4);
}

.pcard__price {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-k);
  color: var(--c-accent);
}

.pcard__price span {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  font-weight: var(--fw-r);
  display: block;
}

.pcard__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.pcard__list li {
  font-size: var(--fs-sm);
  color: var(--c-text-md);
  padding-left: var(--sp-5);
  position: relative;
}

.pcard__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-accent);
  font-weight: var(--fw-b);
}

.pcard__note {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin-bottom: var(--sp-6);
  line-height: var(--lh-base);
}

.pcard .btn { width: 100%; text-align: center; justify-content: center; }

/* 比較表 */
/* ---- 追加費用（ビザサポート・オプション） ---- */
.pricing__extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  max-width: 1000px;
  margin: var(--sp-10) auto 0;
}
.pricing__extra-item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-5) var(--sp-6);
  text-align: center;
}
.pricing__extra-item h4 {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  font-weight: 600;
  margin-bottom: var(--sp-2);
}
.pricing__extra-price {
  font-size: var(--fs-lg);
  font-weight: var(--fw-k);
  color: var(--c-primary);
}
.pricing__extra-price span {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 400;
  color: var(--c-text-muted);
  margin-top: var(--sp-1);
}
@media (max-width: 860px) {
  .pricing__extra { grid-template-columns: 1fr; }
}

.pricing__compare {
  margin-top: var(--sp-12);
}

.pricing__compare-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-b);
  color: var(--c-primary);
  text-align: center;
  margin-bottom: var(--sp-6);
}

.pricing__table-wrap {
  overflow-x: auto;
}

.pricing__table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}

.pricing__table th,
.pricing__table td {
  padding: var(--sp-4) var(--sp-5);
  border: 1px solid var(--c-border);
  text-align: left;
}

.pricing__table thead th {
  background: var(--c-primary);
  color: #fff;
  font-weight: var(--fw-b);
}

.pricing__table tbody tr:nth-child(even) { background: var(--c-bg-gray); }

.pricing__table--ours {
  background: #EFF6FF !important;
  color: var(--c-primary-l);
}

.pricing__table thead .pricing__table--ours {
  background: var(--c-accent) !important;
  color: #fff;
}

.pricing__compare-note {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  text-align: center;
  margin-top: calc(var(--sp-6) * -1 + var(--sp-2));
  margin-bottom: var(--sp-6);
}

.pricing__table-sub {
  font-size: var(--fs-xs);
  font-weight: 400;
  opacity: .8;
}

.pricing__construction {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-5);
  background: var(--c-bg-gray);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  margin-top: var(--sp-8);
}

.pricing__construction-icon {
  font-size: var(--fs-2xl);
  line-height: 1;
  flex-shrink: 0;
}

.pricing__construction-body h4 {
  font-size: var(--fs-base);
  font-weight: var(--fw-b);
  color: var(--c-primary);
  margin-bottom: var(--sp-2);
}

.pricing__construction-body p {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  line-height: var(--lh-loose);
}

@media (max-width: 600px) {
  .pricing__construction { flex-direction: column; }
}

/* ==========================================================
   アフターサービス (修正3)
   ========================================================== */
.after-support { background: var(--c-bg); }

.after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}

.acard {
  background: var(--c-bg-gray);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  transition: box-shadow 0.2s, transform 0.2s;
}

.acard:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.acard__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r);
  background: rgba(150,112,47,0.08);
  border: 1px solid rgba(150,112,47,0.22);
  color: var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
}
.acard__icon svg { width: 22px; height: 22px; }

.acard__title {
  font-size: var(--fs-base);
  font-weight: var(--fw-b);
  color: var(--c-primary);
  margin-bottom: var(--sp-2);
}

.acard__body {
  font-size: var(--fs-sm);
  color: var(--c-text-md);
  line-height: var(--lh-loose);
}

.after-support__note {
  margin-top: var(--sp-8);
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  text-align: center;
  line-height: var(--lh-base);
}

/* ==========================================================
   クイックコンタクト (修正6)
   ========================================================== */
.contact-quick {
  margin-bottom: var(--sp-10);
  text-align: center;
}

.contact-quick__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-b);
  color: var(--c-text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.contact-quick__btns {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

.contact-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r);
  font-size: var(--fs-sm);
  font-weight: var(--fw-m);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
}

.contact-quick-btn:hover { opacity: 0.85; transform: translateY(-1px); }

.contact-quick-btn--tel {
  background: var(--c-accent);
  color: #fff;
}

.contact-quick-btn--mail {
  background: var(--c-primary-l);
  color: #fff;
}

.contact-quick-btn--line {
  background: #00B900;
  color: #fff;
}

.contact-quick-btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.contact-quick-btn--disabled:hover { transform: none; opacity: 0.5; }

/* ==========================================================
   新規セクション レスポンシブ
   ========================================================== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .after-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__cards { grid-template-columns: 1fr; max-width: 400px; }
  .jlpt-chart { padding: var(--sp-6); }
}

@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
  .after-grid { grid-template-columns: 1fr; }
  .contact-quick__btns { flex-direction: column; align-items: stretch; }
  .contact-quick-btn { justify-content: center; }
  .partner__domestic,
  .partner__return { flex-direction: column; padding: var(--sp-5); }
  .jlpt-chart { padding: var(--sp-4); }
}

/* ==========================================================
   アイコンSVG（強み・サービス内容カード）
   ========================================================== */
.scard__icon svg,
.scope__icon svg {
  width: 22px;
  height: 22px;
}
.pricing__construction-icon svg {
  width: 26px;
  height: 26px;
  color: var(--c-accent);
}

/* ==========================================================
   実績セクション（TRACK RECORD）
   ========================================================== */
.results__highlight {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-l) 100%);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 4vw, 3rem);
  color: var(--c-text-white);
  margin-bottom: var(--sp-10);
}

.results__figure {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  flex-shrink: 0;
}

.results__figure-num {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: var(--fw-k);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--c-accent);
}

.results__figure-unit {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-b);
}

.results__figure-body h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-b);
  margin-bottom: var(--sp-2);
}

.results__figure-body p {
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  color: rgba(255,255,255,0.82);
}

.results__map {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: clamp(1rem, 2.5vw, 1.75rem);
  margin-bottom: var(--sp-10);
  box-shadow: var(--sh-sm);
}

.results__map img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r);
}

.results__map figcaption,
.results__photo figcaption {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  text-align: center;
  margin-top: var(--sp-3);
}

.results__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.results__photo {
  margin: 0;
}

.results__photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform var(--tr), box-shadow var(--tr);
}

.results__photo:hover img {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.results__photo figcaption {
  font-size: var(--fs-xs);
  margin-top: var(--sp-2);
}

.results__note {
  font-size: var(--fs-xs);
  color: var(--c-text-light);
  line-height: var(--lh-loose);
  margin-top: var(--sp-8);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--c-border);
}

@media (max-width: 900px) {
  .results__gallery { grid-template-columns: repeat(2, 1fr); }
  .results__highlight { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  .results__gallery { grid-template-columns: 1fr; }
  .results__photo img { height: 200px; }
}

/* ==========================================================
   サービス内容（SERVICE SCOPE）
   ========================================================== */
.scope__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.scope__card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: box-shadow var(--tr), transform var(--tr);
}

.scope__card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}

.scope__card--featured {
  background: linear-gradient(155deg, var(--c-primary) 0%, var(--c-primary-l) 100%);
  border: none;
  color: var(--c-text-white);
}

.scope__card-head {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-bottom: var(--sp-4);
  margin-bottom: var(--sp-4);
  border-bottom: 1px solid var(--c-border);
}
.scope__card--featured .scope__card-head {
  border-bottom-color: rgba(255,255,255,0.18);
}

.scope__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r);
  background: rgba(150,112,47,0.1);
  border: 1px solid rgba(150,112,47,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  flex-shrink: 0;
}
.scope__card--featured .scope__icon {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: var(--c-text-white);
}

.scope__card-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-b);
  color: var(--c-primary);
}
.scope__card--featured .scope__card-title { color: var(--c-text-white); }

.scope__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.scope__list li {
  position: relative;
  padding-left: var(--sp-6);
  font-size: var(--fs-sm);
  line-height: var(--lh-base);
  color: var(--c-text-md);
}
.scope__card--featured .scope__list li { color: rgba(255,255,255,0.88); }

.scope__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--c-accent);
  border-bottom: 2px solid var(--c-accent);
  transform: rotate(-45deg);
}
.scope__card--featured .scope__list li::before {
  border-color: #E4CB9B;
}

.scope__quote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  background: var(--c-bg);
  border: 2px solid var(--c-primary);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  margin-top: var(--sp-8);
}

.scope__quote-body h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-b);
  color: var(--c-primary);
  margin-bottom: var(--sp-2);
}

.scope__quote-body p {
  font-size: var(--fs-sm);
  color: var(--c-text-md);
  line-height: var(--lh-loose);
}

.scope__quote .btn { flex-shrink: 0; }

@media (max-width: 900px) {
  .scope__grid { grid-template-columns: 1fr; }
  .scope__quote { flex-direction: column; align-items: stretch; text-align: center; }
}
