/* ============================================================
   彩書 Saisho — 共通スタイル
   全ページから読み込まれます。
   ============================================================ */

/* ============================================================
   Variables / Reset
   ============================================================ */
:root {
  /* 韓国国旗の色をベースに */
  --primary: #0047A0;       /* 太極の青 */
  --primary-dark: #003578;
  --primary-light: #3B6FB8;
  --accent: #CD2E3A;        /* 太極の赤 */
  --accent-dark: #A4232D;
  --ink: #1A1A1A;           /* 四卦の黒 */
  --bg-base: #FFFFFF;
  --bg-soft: #F4F7FB;       /* 清潔感のある淡いブルーグレー */
  --bg-card: #FFFFFF;
  --line: #DCE3EC;
  --line-soft: #ECF1F6;
  --text: #1F2937;
  --text-sub: #5B6573;
  --text-mute: #9AA3AF;
  --kr: #7E8896;
  --shadow-sm: 0 2px 8px rgba(0, 71, 160, 0.06);
  --shadow-md: 0 6px 20px rgba(0, 71, 160, 0.09);
  --shadow-lg: 0 12px 36px rgba(0, 71, 160, 0.13);
  --radius: 10px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Noto Sans KR', sans-serif;
  color: var(--text);
  line-height: 1.75;
  background-color: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  font-size: 18.5px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

@media (hover: none) {
  .worry-card:hover, .service-card:hover, .pill-btn:hover, .contact-btn:hover { transform: none; }
}

.kr {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--kr);
  font-weight: 400;
}

/* ============================================================
   Header (compact)
   ============================================================ */
.site-header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--line-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.brand-text h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 4px;
  line-height: 1.1;
}

.brand-text .romaji {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-sub);
  margin-top: 1px;
  font-weight: 500;
}

.brand-tagline {
  border-left: 1px solid var(--line);
  padding-left: 14px;
  font-size: 10px;
  line-height: 1.5;
  color: var(--text-sub);
}

.brand-tagline .ja-lead {
  font-size: 11.5px;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.brand-tagline .kr-lead {
  color: var(--accent);
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 10px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tel-block {
  text-align: right;
  line-height: 1.2;
}

.tel-block .tel-label {
  font-size: 9.5px;
  color: var(--text-sub);
  letter-spacing: 0.5px;
}
.tel-block .tel-label .kr { font-size: 9px; color: var(--accent); }

.tel-block .tel-number {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin: 1px 0;
  font-family: 'Noto Serif JP', serif;
}

.tel-block .tel-hours {
  font-size: 9.5px;
  color: var(--text-sub);
}

.contact-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--primary);
  color: #FFF;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 12.5px;
  line-height: 1.3;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.contact-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* スマホ（≤480px）: ヘッダーの「無料相談」ボタンはアイコンのみに（長い日本語テキストの縦折り返し＋ブランド名の圧迫を防ぐ。テキスト版は481px以上で表示） */
@media (max-width: 480px) {
  .header-cta .contact-btn { padding: 0; width: 44px; height: 44px; justify-content: center; }
  .contact-btn .btn-icon .ja,
  .contact-btn .btn-icon .kr { display: none; }
}

.contact-btn .btn-icon { display: inline-flex; align-items: center; gap: 6px; }
.contact-btn .btn-sub-kr { font-size: 10px; opacity: 0.9; font-weight: 400; margin-top: 1px; }

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 6px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Navigation */
.gnav {
  border-top: 1px solid var(--line-soft);
  background: #FFFFFF;
}
.gnav ul {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.gnav li {
  flex: 1;
  text-align: center;
  border-left: 1px solid var(--line-soft);
}
.gnav li:last-child { border-right: 1px solid var(--line-soft); }
.gnav a {
  display: block;
  padding: 13px 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
  border-bottom: 2px solid transparent;
}
.gnav a:hover, .gnav a.active {
  color: var(--primary);
  background: var(--bg-soft);
  border-bottom-color: var(--primary);
}
.gnav .nav-kr {
  display: block;
  font-size: 11px;
  color: var(--kr);
  margin-top: 2px;
  font-family: 'Noto Sans KR', sans-serif;
}

/* ============================================================
   Hero (Home)
   ============================================================ */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(244,247,251,0.85) 0%, rgba(244,247,251,0.55) 60%, rgba(244,247,251,0) 100%),
    linear-gradient(180deg, #EAF1F8 0%, #DCE7F2 100%);
  overflow: hidden;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 32px 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
}

.hero-copy h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 4.4vw, 42px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.5;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.hero-copy h2 .lead {
  display: block;
  font-size: clamp(15px, 2vw, 19px);
  color: var(--text-sub);
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: 2px;
  font-family: 'Noto Sans JP', sans-serif;
}

.hero-copy .hero-kr {
  color: var(--kr);
  font-size: 17.5px;
  line-height: 2.0;
  margin-bottom: 24px;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 400;
}

.hero-copy .hero-desc {
  font-size: 18px;
  color: var(--text);
  line-height: 2.0;
  margin-bottom: 14px;
}
.hero-copy .hero-desc.kr { color: var(--kr); font-size: 16px; line-height: 2.0; }

/* Sakura petals decoration */
.sakura {
  position: absolute;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at 30% 30%, #FFD9E0 0%, #F8B5C2 60%, transparent 70%);
  border-radius: 50% 0 50% 50%;
  transform: rotate(45deg);
  opacity: 0.7;
  pointer-events: none;
}
.sakura.s1 { top: 10%; right: 6%; width: 22px; height: 22px; }
.sakura.s2 { top: 35%; right: 2%; width: 14px; height: 14px; opacity: 0.6; }
.sakura.s3 { top: 60%; right: 8%; width: 18px; height: 18px; opacity: 0.55; }
.sakura.s4 { top: 80%; right: 15%; width: 12px; height: 12px; opacity: 0.5; }

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #DCE7F2;
  box-shadow: var(--shadow-lg);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* trust badges */
.trust-badges {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(31,61,107,0.08);
  border-radius: var(--radius);
  padding: 18px 16px;
  backdrop-filter: blur(4px);
}
.badge {
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
}
.badge .badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--primary);
  margin-bottom: 6px;
}
.badge .badge-title {
  font-weight: 600;
  color: var(--primary);
  font-size: 16px;
}
.badge .badge-kr { color: var(--kr); font-size: 13.5px; }

/* ============================================================
   Page Hero (sub pages)
   ============================================================ */
.page-hero {
  background:
    linear-gradient(135deg, rgba(244,247,251,0.9) 0%, rgba(244,247,251,0.7) 100%),
    linear-gradient(180deg, #EAF1F8 0%, #DCE7F2 100%);
  padding: 56px 32px 48px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.page-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}
.page-hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 4px;
  line-height: 1.3;
}
.page-hero .page-hero-kr {
  display: block;
  font-size: 17.5px;
  color: var(--kr);
  margin-top: 10px;
  letter-spacing: 2px;
  font-family: 'Noto Sans KR', sans-serif;
}
.page-hero .page-hero-desc {
  margin-top: 18px;
  font-size: 18px;
  color: var(--text);
  line-height: 1.95;
  max-width: 820px;
}
.page-hero .page-hero-desc.kr {
  color: var(--kr);
  font-size: 16px;
  margin-top: 6px;
}
.breadcrumb {
  font-size: 14.5px;
  color: var(--text-sub);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.breadcrumb a { color: var(--text-sub); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { margin: 0 8px; color: var(--text-mute); }

/* ============================================================
   Section base
   ============================================================ */
section { padding: 90px 32px; }

.container { max-width: 1180px; margin: 0 auto; }

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 3px;
  line-height: 1.3;
}
.section-head .kr {
  display: block;
  font-size: 16px;
  margin-top: 10px;
  letter-spacing: 2px;
}
.section-head .deco-line {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 18px auto 0;
  border-radius: 2px;
  position: relative;
}
.section-head .deco-line::before,
.section-head .deco-line::after {
  content: "";
  position: absolute;
  top: 0;
  width: 24px;
  height: 3px;
  border-radius: 2px;
}
.section-head .deco-line::before { right: 100%; margin-right: 6px; background: var(--primary); }
.section-head .deco-line::after  { left: 100%;  margin-left: 6px;  background: var(--primary); }

/* ============================================================
   Worries (お悩み)
   ============================================================ */
.worries { background: #FFFFFF; }
.worries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.worry-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 16px 22px;
  text-align: center;
  background: #FFFFFF;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.worry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.worry-card .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
}
.worry-card h3 {
  font-size: 17.5px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.55;
}
.worry-card .kr {
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============================================================
   Services
   ============================================================ */
.services { background: var(--bg-soft); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #FFFFFF;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  letter-spacing: 1px;
  position: relative;
}
.service-img.ph-1 { background: linear-gradient(135deg, #6B89B5, #3F5C8F); }
.service-img.ph-2 { background: linear-gradient(135deg, #8B7B5E, #5A4E3A); }
.service-img.ph-3 { background: linear-gradient(135deg, #C9B498, #9A8568); }
.service-img.ph-4 { background: linear-gradient(135deg, #B6C7D3, #7D96AC); }
.service-img.ph-5 { background: linear-gradient(135deg, #5C7CA8, #2E4D7A); }
.service-img.ph-6 { background: linear-gradient(135deg, #95A6BC, #6379A0); }

.service-body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.service-body h3 {
  font-size: 20.5px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
}
.service-body .kr {
  font-size: 15px;
  margin-top: 4px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.service-body p {
  font-size: 17px;
  color: var(--text);
  line-height: 1.9;
  flex: 1;
}
.service-body p.kr-desc {
  color: var(--kr);
  font-size: 15px;
  margin-top: 8px;
  line-height: 1.8;
}

.services-cta {
  text-align: center;
  margin-top: 44px;
}
.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 44px;
  background: #FFFFFF;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.pill-btn:hover { background: var(--primary); color: #FFFFFF; }
.pill-btn .kr { color: inherit; opacity: 0.7; font-size: 13.5px; font-weight: 400; }

/* ============================================================
   Reasons + Flow (combined section)
   ============================================================ */
.reasons-flow {
  background: #FFFFFF;
  padding: 90px 32px;
}
.rf-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.rf-block-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 2px;
}
.rf-block-title .kr {
  display: inline-block;
  font-size: 14px;
  margin-left: 12px;
  vertical-align: middle;
}

.reasons-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.reason-item {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
}
.reason-item .r-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.reason-item h4 {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.reason-item .kr {
  font-size: 14px;
  margin-bottom: 10px;
}
.reason-item p {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.8;
  text-align: left;
}
.reason-item p.kr-desc {
  color: var(--kr);
  font-size: 14px;
  margin-top: 4px;
  line-height: 1.7;
}

.flow-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.flow-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #FFFFFF;
  position: relative;
}
.flow-item .step-no {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  line-height: 1;
}
.flow-item .step-no::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  margin: 6px auto 0;
}
.flow-item .step-icon {
  width: 38px;
  height: 38px;
  color: var(--primary);
  margin-right: 4px;
}
.flow-item .step-body {
  display: flex;
  align-items: center;
  gap: 14px;
}
.flow-item .step-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}
.flow-item .step-text .kr {
  display: block;
  font-size: 15px;
  margin-top: 3px;
}
.flow-item .step-text .step-note {
  display: block;
  font-size: 15px;
  color: var(--text-sub);
  margin-top: 6px;
  line-height: 1.75;
}

/* ============================================================
   Closing CTA
   ============================================================ */
.closing {
  background:
    linear-gradient(135deg, rgba(244,247,251,1) 0%, rgba(234,241,248,1) 100%);
  padding: 80px 32px;
}
.closing-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.closing-text h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(21px, 2.8vw, 30px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.6;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.closing-text .kr-lead {
  color: var(--kr);
  font-size: 15.5px;
  font-family: 'Noto Sans KR', sans-serif;
  margin-bottom: 18px;
}
.closing-text p {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.95;
  margin-bottom: 6px;
}
.closing-text p.kr-desc { color: var(--kr); font-size: 14px; }

.closing-cta {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 32px 28px;
  color: #FFFFFF;
  text-align: center;
}
.closing-cta .closing-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  margin-bottom: 14px;
}
.closing-cta h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.closing-cta .kr-h {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 22px;
  font-family: 'Noto Sans KR', sans-serif;
}
.closing-cta .closing-tel {
  font-family: 'Noto Serif JP', serif;
  font-size: 30px;
  font-weight: 700;
  margin: 14px 0 6px;
  letter-spacing: 1px;
}
.closing-cta .closing-meta {
  font-size: 13px;
  opacity: 0.85;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 14px;
  margin-top: 16px;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #FFFFFF;
  padding: 50px 32px 30px;
  border-top: 1px solid var(--line-soft);
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-info {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--text-sub);
}
.footer-info dt {
  display: inline-block;
  width: 4em;
  color: var(--text);
  font-weight: 500;
}
.footer-info dd { display: inline; }
.footer-info dd::after { content: ""; display: block; }

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  justify-content: flex-end;
  font-size: 15.5px;
}
.footer-links a {
  color: var(--text);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }
.footer-links .kr {
  display: block;
  font-size: 12px;
  margin-top: 2px;
  text-align: right;
}

.footer-copy {
  max-width: 1240px;
  margin: 36px auto 0;
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-mute);
}

/* ============================================================
   Content blocks (sub pages — about / services / flow / company)
   ============================================================ */
.content-section { background: #FFFFFF; padding: 80px 32px; }
.content-section.alt { background: var(--bg-soft); }
.content-narrow { max-width: 900px; margin: 0 auto; }
.content-wide { max-width: 1180px; margin: 0 auto; }

.lead-text {
  font-size: 19px;
  line-height: 2.0;
  color: var(--text);
  margin-bottom: 18px;
}
.lead-text.kr {
  color: var(--kr);
  font-size: 17px;
  line-height: 1.95;
}

.h-block {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.h-block .kr {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 1px;
  margin-left: 12px;
  vertical-align: middle;
}
.h-block-desc {
  font-size: 17px;
  color: var(--text-sub);
  line-height: 1.85;
  margin-bottom: 28px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.two-col.tight { gap: 32px; }
.two-col .visual {
  background: linear-gradient(135deg, #B6C7D3, #7D96AC);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  letter-spacing: 1px;
}

.bullet-list {
  margin: 12px 0 18px;
  padding-left: 0;
  list-style: none;
}
.bullet-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.9;
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.18;
}
.bullet-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.bullet-list li .kr {
  display: block;
  font-size: 15px;
  color: var(--kr);
  margin-top: 4px;
}

/* Mission/vision/values cards (about page) */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 8px;
}
.value-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  box-shadow: var(--shadow-sm);
}
.value-card .v-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.value-card h4 {
  font-size: 19.5px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}
.value-card h4 + .kr {
  font-size: 14.5px;
  margin-bottom: 12px;
  display: block;
}
.value-card p {
  font-size: 16px;
  line-height: 1.85;
}
.value-card p.kr-desc {
  color: var(--kr);
  font-size: 14.5px;
  margin-top: 6px;
  line-height: 1.75;
}

/* Service detail (services page) */
.service-detail {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.service-detail-head {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 18px;
  margin-bottom: 20px;
}
.service-detail-head .s-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-detail-head h3 {
  font-size: 23.5px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
}
.service-detail-head h3 + .kr {
  display: block;
  font-size: 15.5px;
  margin-top: 4px;
}
.service-detail p {
  font-size: 17px;
  line-height: 1.95;
  color: var(--text);
  margin-bottom: 10px;
}
.service-detail p.kr-desc {
  color: var(--kr);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
}
.service-detail .sub-h {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 20px;
  margin-bottom: 10px;
  display: inline-block;
  padding: 4px 14px;
  background: var(--bg-soft);
  border-radius: 4px;
}

/* Flow detail (flow page) */
.flow-detail-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.flow-detail-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: stretch;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.flow-detail-item .step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding-top: 4px;
}
.flow-detail-item .step-marker .num {
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.flow-detail-item .step-marker .num-label {
  font-size: 11px;
  color: var(--text-sub);
  letter-spacing: 2px;
}
.flow-detail-item .step-marker::after {
  content: "";
  width: 1px;
  flex: 1;
  background: var(--line);
  margin-top: 6px;
}
.flow-detail-item:last-child .step-marker::after { display: none; }

.flow-detail-item h3 {
  font-size: 20.5px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
}
.flow-detail-item h3 + .kr {
  display: block;
  font-size: 15px;
  margin-top: 4px;
  margin-bottom: 14px;
}
.flow-detail-item p {
  font-size: 16.5px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 8px;
}
.flow-detail-item p.kr-desc {
  color: var(--kr);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.flow-detail-item .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.flow-detail-item .meta .tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13.5px;
  color: var(--primary);
  background: var(--bg-soft);
  padding: 5px 12px;
  border-radius: 14px;
}

/* Price placeholder */
.price-placeholder {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  max-width: 760px;
  margin: 0 auto;
}
.price-placeholder .pp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--primary);
  margin-bottom: 22px;
}
.price-placeholder h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.price-placeholder .kr-lead {
  font-size: 16px;
  color: var(--kr);
  margin-bottom: 22px;
}
.price-placeholder p {
  font-size: 17px;
  line-height: 1.95;
  color: var(--text);
  margin-bottom: 12px;
}
.price-placeholder p.kr-desc {
  color: var(--kr);
  font-size: 15px;
  margin-bottom: 24px;
}
.price-table-preview {
  margin: 28px auto 10px;
  max-width: 600px;
  text-align: left;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 18px 4px;
}
.price-table-preview dl {
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 12px;
  column-gap: 18px;
  font-size: 16px;
}
.price-table-preview dt { color: var(--text); }
.price-table-preview dd { color: var(--text-mute); }

/* FAQ accordion */
.faq-category {
  margin-bottom: 36px;
}
.faq-category-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--primary);
  padding: 0 0 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.faq-category-title .kr {
  font-size: 14.5px;
  margin-left: 10px;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #FFFFFF;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px 20px 60px;
  position: relative;
  font-size: 17.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFF;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--primary);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary .kr {
  display: block;
  font-size: 14px;
  margin-top: 4px;
  color: var(--kr);
  font-weight: 400;
}
.faq-answer {
  padding: 0 22px 22px 60px;
  position: relative;
  font-size: 16.5px;
  line-height: 1.95;
  color: var(--text);
}
.faq-answer::before {
  content: "A";
  position: absolute;
  left: 22px;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFF;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-answer p { margin-bottom: 12px; }
.faq-answer p.kr-desc {
  color: var(--kr);
  font-size: 15px;
  line-height: 1.8;
}

/* Column / article cards */
.column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.column-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.column-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.column-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  letter-spacing: 1px;
}
.column-thumb.c-1 { background: linear-gradient(135deg, #6B89B5, #3F5C8F); }
.column-thumb.c-2 { background: linear-gradient(135deg, #8B7B5E, #5A4E3A); }
.column-thumb.c-3 { background: linear-gradient(135deg, #B6C7D3, #7D96AC); }
.column-thumb.c-4 { background: linear-gradient(135deg, #95A6BC, #6379A0); }
.column-thumb.c-5 { background: linear-gradient(135deg, #5C7CA8, #2E4D7A); }
.column-thumb.c-6 { background: linear-gradient(135deg, #C9B498, #9A8568); }
.column-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.column-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13.5px;
  color: var(--text-sub);
  margin-bottom: 10px;
}
.column-meta .cat {
  background: var(--bg-soft);
  color: var(--primary);
  padding: 3px 12px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.column-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.55;
  margin-bottom: 8px;
}
.column-body p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-sub);
  flex: 1;
}
.column-body p.kr-desc {
  color: var(--kr);
  font-size: 14px;
  line-height: 1.75;
  margin-top: 6px;
}

/* Company info table */
.company-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 16.5px;
}
.company-table th,
.company-table td {
  padding: 20px 26px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
  line-height: 1.85;
}
.company-table th {
  background: var(--bg-soft);
  color: var(--primary);
  font-weight: 600;
  width: 210px;
  white-space: nowrap;
}
.company-table th .kr {
  display: block;
  font-size: 13.5px;
  color: var(--kr);
  font-weight: 400;
  margin-top: 3px;
}
.company-table tr:last-child th,
.company-table tr:last-child td { border-bottom: none; }
.company-table td .kr {
  display: block;
  font-size: 14.5px;
  color: var(--kr);
  margin-top: 6px;
  line-height: 1.75;
}

/* Notice block (used on price page, etc.) */
.notice-block {
  background: var(--bg-soft);
  border-left: 4px solid var(--primary);
  border-radius: 4px;
  padding: 18px 22px;
  margin: 24px auto;
  max-width: 760px;
}
.notice-block p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 6px;
}
.notice-block p.kr-desc {
  color: var(--kr);
  font-size: 14.5px;
}

/* ============================================================
   Responsive — 1280 / 1080 / 900 / 680 / 480 / 380
   ============================================================ */

@media (max-width: 1280px) {
  .header-inner, .gnav ul, .footer-inner, .footer-copy { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 1080px) {
  .brand-tagline { display: none; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 56px 24px 64px;
    gap: 36px;
  }
  .hero-visual { max-width: 640px; margin: 0 auto; width: 100%; }
  .worries-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .rf-grid { grid-template-columns: 1fr; gap: 56px; }
  .reasons-list { grid-template-columns: repeat(4, 1fr); }
  .closing-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links ul { justify-content: flex-start; }
  .footer-links .kr { text-align: left; }
  section { padding: 70px 24px; }
  .reasons-flow { padding: 70px 24px; }
  .closing { padding: 64px 24px; }
  .content-section { padding: 64px 24px; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .column-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .header-inner { padding: 10px 20px; gap: 12px; }
  .tel-block .tel-label { display: none; }
  .tel-block .tel-hours { display: none; }
  .tel-block .tel-number { font-size: 18px; }
  .reasons-list { grid-template-columns: repeat(2, 1fr); }
  .worries-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-copy h2 { font-size: 30px; }
  .section-head h2 { font-size: 26px; }
  .rf-block-title { font-size: 22px; }
  .h-block { font-size: 22px; }
  .page-hero h1 { font-size: 28px; letter-spacing: 2px; }
  .company-table th { width: 150px; }
}

@media (max-width: 680px) {
  body { font-size: 17.5px; }
  section { padding: 50px 16px; }
  .reasons-flow { padding: 50px 16px; }
  .closing { padding: 50px 16px; }
  .site-footer { padding: 36px 16px 20px; }
  .content-section { padding: 48px 16px; }
  .page-hero { padding: 40px 16px 32px; }

  /* Header */
  .header-inner { padding: 8px 14px; gap: 8px; }
  .brand { gap: 8px; min-width: 0; }
  .brand-mark { width: 30px; height: 30px; }
  .brand-text h1 { font-size: 17px; letter-spacing: 2px; }
  .brand-text .romaji { font-size: 9px; letter-spacing: 1.5px; }
  .tel-block { display: none; }
  .contact-btn {
    padding: 8px 12px;
    font-size: 11.5px;
    min-width: 0;
  }
  .contact-btn .btn-sub-kr { display: none; }

  /* Hamburger menu activation */
  .nav-toggle { display: flex; }
  .gnav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 71, 160, 0.08);
  }
  .gnav.is-open { max-height: 80vh; overflow-y: auto; }
  .gnav ul { flex-direction: column; padding: 0; }
  .gnav li {
    flex: 1 1 auto;
    border-left: none;
    border-top: 1px solid var(--line-soft);
    text-align: left;
  }
  .gnav li:last-child { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .gnav a {
    padding: 14px 20px;
    font-size: 14px;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .gnav a:hover, .gnav a.active {
    border-bottom-color: transparent;
    border-left: 3px solid var(--primary);
    padding-left: 17px;
  }
  .gnav .nav-kr { display: inline; margin-top: 0; margin-left: 8px; }

  /* Hero */
  .hero-inner { padding: 40px 16px 48px; gap: 24px; }
  .hero-copy h2 { font-size: 28px; letter-spacing: 0.5px; }
  .hero-copy h2 .lead { font-size: 16px; letter-spacing: 1px; margin-bottom: 12px; }
  .hero-copy .hero-kr { font-size: 16px; margin-bottom: 18px; }
  .hero-copy .hero-desc { font-size: 16.5px; }
  .hero-copy .hero-desc.kr { font-size: 15px; }
  .trust-badges {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 10px;
  }
  .badge { display: flex; align-items: center; gap: 12px; text-align: left; }
  .badge .badge-icon { margin-bottom: 0; flex-shrink: 0; }
  .badge .badge-title br, .badge .badge-kr br { display: none; }

  /* Page hero */
  .page-hero h1 { font-size: 26px; letter-spacing: 1.5px; }
  .page-hero .page-hero-kr { font-size: 15px; }
  .page-hero .page-hero-desc { font-size: 16.5px; }

  /* Sections */
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: 24px; letter-spacing: 1px; }
  .section-head .kr { font-size: 15px; }
  .h-block { font-size: 21px; letter-spacing: 1px; }
  .h-block .kr { display: block; margin-left: 0; margin-top: 4px; font-size: 14px; }

  /* Worries */
  .worries-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .worry-card { padding: 22px 12px 18px; }
  .worry-card .icon-wrap { width: 52px; height: 52px; margin-bottom: 14px; }
  .worry-card .icon-wrap svg { width: 26px; height: 26px; }
  .worry-card h3 { font-size: 16px; line-height: 1.55; }
  .worry-card .kr { font-size: 13.5px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-img { height: 140px; font-size: 15px; }
  .service-body { padding: 20px 20px 24px; }
  .service-body h3 { font-size: 19px; }
  .service-body .kr { font-size: 14.5px; margin-bottom: 12px; padding-bottom: 12px; }
  .service-body p { font-size: 16px; }
  .service-body p.kr-desc { font-size: 14.5px; }
  .pill-btn { padding: 15px 30px; font-size: 15px; gap: 10px; flex-wrap: wrap; justify-content: center; }
  .pill-btn .kr { font-size: 13px; }

  /* Service detail */
  .service-detail { padding: 26px 20px; }
  .service-detail-head { grid-template-columns: 52px 1fr; gap: 14px; }
  .service-detail-head .s-icon { width: 52px; height: 52px; }
  .service-detail-head .s-icon svg { width: 26px; height: 26px; }
  .service-detail-head h3 { font-size: 20px; }
  .service-detail p { font-size: 16px; }

  /* Reasons + Flow */
  .rf-grid { gap: 44px; }
  .rf-block-title { font-size: 21px; margin-bottom: 24px; letter-spacing: 1px; }
  .rf-block-title .kr { display: block; margin-left: 0; margin-top: 4px; font-size: 13px; }
  .reasons-list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .reason-item { padding: 20px 14px; }
  .reason-item h4 { font-size: 16px; }
  .reason-item p { font-size: 14.5px; }
  .reason-item p.kr-desc { font-size: 13.5px; }
  .flow-item {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 16px 16px;
  }
  .flow-item .step-no { font-size: 24px; }
  .flow-item .step-icon { width: 30px; height: 30px; }
  .flow-item .step-text h4 { font-size: 16.5px; }
  .flow-item .step-text .kr { font-size: 14px; }
  .flow-item .step-text .step-note { font-size: 14px; line-height: 1.7; }
  .flow-item .step-body { gap: 10px; }

  /* Flow detail */
  .flow-detail-item { grid-template-columns: 68px 1fr; gap: 16px; padding: 22px 18px; }
  .flow-detail-item .step-marker .num { font-size: 26px; }
  .flow-detail-item h3 { font-size: 18.5px; }
  .flow-detail-item p { font-size: 15.5px; }

  /* Value cards */
  .value-grid { grid-template-columns: 1fr; gap: 14px; }
  .value-card { padding: 24px 20px 22px; }
  .value-card h4 { font-size: 18px; }

  /* Column */
  .column-grid { grid-template-columns: 1fr; gap: 14px; }
  .column-thumb { height: 140px; }
  .column-body h3 { font-size: 17px; }

  /* FAQ */
  .faq-item summary { padding: 18px 50px 18px 54px; font-size: 16px; }
  .faq-item summary::before { left: 14px; width: 28px; height: 28px; font-size: 15px; }
  .faq-item summary::after { right: 16px; }
  .faq-answer { padding: 0 18px 20px 54px; font-size: 15.5px; }
  .faq-answer::before { left: 14px; width: 28px; height: 28px; font-size: 15px; }
  .faq-category-title { font-size: 19px; }

  /* Company table */
  .company-table { font-size: 15.5px; display: block; }
  .company-table th, .company-table td { padding: 14px 16px; }
  .company-table th { width: auto; display: block; border-bottom: none; padding-bottom: 4px; }
  .company-table td { display: block; padding-top: 4px; }

  /* Price placeholder */
  .price-placeholder { padding: 44px 24px; }
  .price-placeholder h2 { font-size: 22px; letter-spacing: 1px; }
  .price-placeholder p { font-size: 16px; }

  /* Closing */
  .closing-text h2 { font-size: 21px; letter-spacing: 0.5px; line-height: 1.55; }
  .closing-text .kr-lead { font-size: 14.5px; }
  .closing-text p { font-size: 14.5px; }
  .closing-text p.kr-desc { font-size: 13px; }
  .closing-cta { padding: 28px 22px; }
  .closing-cta h3 { font-size: 18px; }
  .closing-cta .closing-tel { font-size: 26px; }

  /* Footer */
  .footer-inner { gap: 28px; }
  .footer-info { font-size: 13.5px; }
  .footer-info dt { width: 4.5em; }
  .footer-links ul { gap: 12px 18px; font-size: 14px; }
  .footer-copy { flex-direction: column; gap: 6px; text-align: center; padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 480px) {
  .header-inner { padding: 6px 12px; }
  .brand-text h1 { font-size: 17px; letter-spacing: 1.5px; }
  .brand-text .romaji { font-size: 9.5px; }
  .contact-btn { padding: 8px 10px; font-size: 12px; }

  .hero-copy h2 { font-size: 23px; }
  .hero-copy h2 .lead { font-size: 13.5px; }
  .hero-copy .hero-desc, .hero-copy .hero-desc.kr { font-size: 14.5px; }

  .worries-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .worry-card { padding: 18px 10px 16px; }
  .worry-card h3 { font-size: 14px; }
  .worry-card .kr { font-size: 11.5px; }

  .service-img { height: 120px; }
  .service-body h3 { font-size: 16.5px; }

  .reasons-list { grid-template-columns: 1fr; }
  .reason-item p, .reason-item p.kr-desc { text-align: center; }

  .flow-item { grid-template-columns: 48px 1fr; padding: 14px; }
  .flow-item .step-no { font-size: 22px; }
  .flow-item .step-icon { width: 26px; height: 26px; }

  .closing-cta .closing-tel { font-size: 23px; }
  .closing-cta h3 { font-size: 16.5px; }

  .footer-links ul { gap: 8px 14px; }
}

@media (max-width: 380px) {
  .brand-text h1 { font-size: 16px; letter-spacing: 1px; }
  .brand-text .romaji { display: none; }
  .contact-btn { padding: 7px 9px; font-size: 11.5px; }
  .hero-copy h2 { font-size: 21px; }
  .section-head h2 { font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Language toggle（日本語 / 한국어）
   <html data-lang="ja"> のとき韓国語クラスを隠し、
   <html data-lang="ko"> のとき日本語クラスを隠す。
   既存の表示ルール（.section-head .kr{display:block} 等）に
   勝つため、非表示は !important を付ける。
   ============================================================ */
html[data-lang="ja"] :is(.kr, .nav-kr, .kr-desc, .kr-lead, .kr-h,
  .btn-sub-kr, .page-hero-kr, .badge-kr, .hero-kr) { display: none !important; }
html[data-lang="ko"] :is(.ja, .ja-lead) { display: none !important; }

/* 言語切替ボタン（ヘッダー内） */
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #FFFFFF;
}
.lang-btn {
  padding: 6px 11px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-sub);
  background: #FFFFFF;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.lang-btn + .lang-btn { border-left: 1px solid var(--line); }
.lang-btn[aria-pressed="true"] { background: var(--primary); color: #FFFFFF; }
.lang-btn:hover:not([aria-pressed="true"]) { background: var(--bg-soft); color: var(--primary); }

@media (max-width: 900px) {
  .lang-btn { padding: 5px 9px; font-size: 12px; }
}
@media (max-width: 680px) {
  .lang-btn { padding: 5px 8px; font-size: 11.5px; }
}
@media (max-width: 380px) {
  .lang-btn { padding: 4px 6px; font-size: 11px; }
}

/* グローバルナビ 9項目化（入管・ビザ 追加分）の詰まり回避 */
@media (min-width: 681px) and (max-width: 1080px) {
  .gnav a { font-size: 14.5px; padding: 12px 4px; }
  .gnav .nav-kr { font-size: 10px; }
}

/* ============================================================
   入管・ビザ 誘導セクション（トップページ）
   既存の .services-grid / .service-card / .service-img を流用
   ============================================================ */
.immigration-teaser { background: #FFFFFF; }
.immigration-teaser .imm-lead {
  text-align: center;
  max-width: 780px;
  margin: -20px auto 44px;
  font-size: 17px;
  line-height: 1.95;
  color: var(--text);
}
.immigration-teaser .imm-lead.kr-desc { color: var(--kr); font-size: 15px; margin-top: 4px; }

.service-img.ph-imm-1 { background: linear-gradient(135deg, #3F5C8F, #0047A0); }
.service-img.ph-imm-2 { background: linear-gradient(135deg, #5C7CA8, #2E4D7A); }
.service-img.ph-imm-3 { background: linear-gradient(135deg, #6B89B5, #1F3D6B); }
.service-img .imm-icon { width: 48px; height: 48px; color: rgba(255,255,255,0.95); }

.service-body .imm-target {
  font-size: 14.5px;
  color: var(--primary);
  background: var(--bg-soft);
  border-radius: 4px;
  padding: 5px 12px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 12px;
  line-height: 1.6;
}
.imm-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  transition: color 0.2s;
}
.imm-card-cta:hover { color: var(--accent-dark); }
.imm-card-cta svg { width: 16px; height: 16px; }

/* ============================================================
   ko 表示時：韓国語見出しを「主見出し」の体裁に昇格
   （併記前提でグレーの副題だった韓国語を、単独表示時に
   日本語見出しと同等の存在感へ引き上げる）
   ============================================================ */
html[data-lang="ko"] .page-hero .page-hero-kr {
  font-size: clamp(24px, 3.4vw, 36px);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 0;
}
html[data-lang="ko"] .section-head .kr {
  color: var(--primary);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
}
html[data-lang="ko"] .h-block .kr {
  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
  margin-left: 0;
  display: block;
}
html[data-lang="ko"] .rf-block-title .kr {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  margin-left: 0;
  display: block;
}
html[data-lang="ko"] .service-body .kr {
  color: var(--primary);
  font-size: 17px;
  font-weight: 700;
}
html[data-lang="ko"] .service-detail-head h3 + .kr {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
}
html[data-lang="ko"] .flow-detail-item h3 + .kr {
  color: var(--primary);
  font-size: 18.5px;
  font-weight: 700;
}
html[data-lang="ko"] .flow-item .step-text .kr {
  color: var(--primary);
  font-size: 16.5px;
  font-weight: 700;
}
html[data-lang="ko"] .value-card h4 + .kr {
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
}
html[data-lang="ko"] .reason-item .kr {
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
}
html[data-lang="ko"] .worry-card .kr {
  color: var(--primary);
  font-size: 15.5px;
  font-weight: 600;
}
html[data-lang="ko"] .faq-category-title .kr {
  color: var(--primary);
  font-size: 17px;
  font-weight: 700;
  margin-left: 0;
}
html[data-lang="ko"] .faq-item summary .kr {
  color: var(--text);
  font-size: 16.5px;
  font-weight: 600;
}
html[data-lang="ko"] .closing-text .kr-lead {
  font-size: clamp(19px, 2.4vw, 26px);
  color: var(--primary);
  font-weight: 700;
}
html[data-lang="ko"] .closing-cta .kr-h {
  font-size: 18px;
  opacity: 1;
  font-weight: 700;
}
html[data-lang="ko"] .price-placeholder .kr-lead {
  font-size: 22px;
  color: var(--primary);
  font-weight: 700;
}
html[data-lang="ko"] .hero-copy .hero-kr {
  font-size: clamp(22px, 3.6vw, 34px);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}
html[data-lang="ko"] .pill-btn .kr {
  font-size: 16px;
  opacity: 1;
  font-weight: 600;
}
/* ko 表示時：グローバルナビの韓国語サブラベルを主ラベルへ昇格 */
html[data-lang="ko"] .gnav .nav-kr {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  margin-top: 0;
}
@media (min-width: 681px) and (max-width: 1080px) {
  html[data-lang="ko"] .gnav .nav-kr { font-size: 13.5px; }
}
/* ko 表示時：コラム記事タイトルの韓国語を主見出し色へ */
html[data-lang="ko"] .column-body h3 .kr {
  color: var(--primary);
  font-weight: 700;
  font-size: inherit;
}
/* ko 表示時：会社概要テーブルの韓国語を本文サイズへ */
html[data-lang="ko"] .company-table th .kr {
  font-size: 16.5px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 0;
}
html[data-lang="ko"] .company-table td .kr {
  font-size: 16.5px;
  color: var(--text);
  margin-top: 0;
}

/* ============================================================
   お問い合わせ：メール表記（電話番号からメールへ切替）
   ============================================================ */
.tel-block a.tel-number { text-decoration: none; }
.tel-block .tel-number.is-mail {
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.2px;
  word-break: break-all;
}
.tel-block .tel-number.is-mail:hover { color: var(--accent); }

.closing-cta .closing-mail {
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 0.5px;
  margin: 14px 0 6px;
  word-break: break-all;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 2px;
}
.closing-cta .closing-mail:hover { border-bottom-color: #FFFFFF; }
@media (max-width: 680px) {
  .closing-cta .closing-mail { font-size: 19px; }
}

/* ============================================================
   代表・役員プロフィール（about）
   ============================================================ */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 8px;
}
.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.profile-card.is-lead { border-top: 4px solid var(--primary); }
.profile-card.is-cofounder { border-top: 4px solid var(--accent); }
.profile-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  color: var(--primary);
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 700;
  border: 1px solid var(--line);
}
.profile-card.is-cofounder .profile-avatar { color: var(--accent); }
.profile-role { font-size: 12px; color: var(--text-sub); letter-spacing: 0.5px; font-weight: 600; }
.profile-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.profile-name .romaji {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 1px;
  font-weight: 500;
  margin-top: 2px;
}
.profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.profile-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.profile-badge.is-muted {
  background: var(--bg-soft);
  color: var(--text-sub);
  border: 1px solid var(--line);
}
.profile-card p { font-size: 15px; color: var(--text-sub); line-height: 1.85; }
.profile-card p.kr-desc { color: var(--kr); font-size: 14px; }
.profile-card p + p { margin-top: 10px; }
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}
.profile-tags span {
  font-size: 12px;
  background: var(--bg-soft);
  color: var(--text-sub);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 4px 9px;
}
.profile-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--text-sub);
  background: var(--bg-soft);
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: 12px 14px;
  line-height: 1.7;
}
.profile-note.kr-desc { color: var(--kr); }
@media (max-width: 760px) {
  .profile-grid { grid-template-columns: 1fr; gap: 16px; }
  .profile-card { padding: 24px 20px; }
}

/* ============================================================
   専門家のワンポイント（expert-note：専門性アピール）
   ============================================================ */
.expert-note {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 18px 20px;
  margin: 22px 0;
}
.expert-note .en-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.expert-note .en-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}
.expert-note h4 { font-size: 16.5px; font-weight: 700; color: var(--text); margin-bottom: 4px; line-height: 1.5; }
.expert-note p { font-size: 14.5px; color: var(--text-sub); line-height: 1.8; }
.expert-note p.kr-desc { color: var(--kr); font-size: 13.5px; margin-top: 4px; }

/* ============================================================
   入管：目的別サービス一覧（overview ナビ）
   ============================================================ */
.imm-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 4px;
}
.imm-overview-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.imm-overview-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.imm-overview-card .ov-no {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
}
.imm-overview-card .ov-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0 12px;
}
.imm-overview-card h3 { font-size: 18px; font-weight: 700; color: var(--text); line-height: 1.4; }
.imm-overview-card h3 + .kr {
  display: block;
  font-size: 12.5px;
  color: var(--kr);
  font-family: 'Noto Sans KR', sans-serif;
  margin-top: 2px;
}
.imm-overview-card .ov-target { font-size: 13.5px; color: var(--text-sub); margin-top: 10px; line-height: 1.7; }
.imm-overview-card .ov-target.kr-desc { color: var(--kr); font-size: 12.5px; }
.imm-overview-card .ov-more {
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.imm-overview-card .ov-more svg { width: 15px; height: 15px; }
@media (max-width: 860px) {
  .imm-overview { grid-template-columns: 1fr; }
}

/* ============================================================
   トップ「7. 入管・ビザ」featured カード + 経営ビザ診断ボタン
   ============================================================ */
.service-img.ph-7 { background: linear-gradient(135deg, #0047A0, #002A5E); }
.service-card.is-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: stretch;
  border: 1px solid var(--primary-light);
}
.service-card.is-featured .service-img { height: 100%; min-height: 240px; }
.service-card.is-featured .service-body { padding: 30px 34px 32px; }
.service-card.is-featured .feat-tag {
  align-self: flex-start;
  display: inline-block;
  background: var(--accent);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.diagnose-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #FFFFFF;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 15px;
  margin-top: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.diagnose-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #FFFFFF;
}
.diagnose-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.service-card.is-featured .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
}
@media (max-width: 760px) {
  .service-card.is-featured { grid-template-columns: 1fr; }
  .service-card.is-featured .service-img { min-height: 150px; }
  .service-card.is-featured .service-body { padding: 24px 22px; }
  .diagnose-btn { font-size: 14px; padding: 12px 18px; width: 100%; justify-content: center; }
}

/* ============================================================
   経営ビザ可能性診断（shindan.html）
   ============================================================ */
.shindan-wrap { max-width: 720px; margin: 0 auto; }
.shindan-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 34px 36px;
}
.shindan-start { text-align: center; }
.shindan-start .start-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--bg-soft); color: var(--primary); margin-bottom: 14px;
}
.shindan-start h2 { font-family: 'Noto Serif JP', serif; font-size: 23px; color: var(--primary); margin-bottom: 10px; line-height: 1.5; }
.shindan-start h2.kr { color: var(--primary); font-family: 'Noto Sans KR', sans-serif; }
.shindan-start p { color: var(--text-sub); font-size: 15px; margin-bottom: 24px; line-height: 1.9; }
.shindan-start p.kr-desc { color: var(--kr); }
.start-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #FFFFFF; font-weight: 700; font-size: 16px;
  padding: 15px 34px; border-radius: 999px; box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.start-btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); color: #FFFFFF; }
.start-btn svg { width: 18px; height: 18px; }

.shindan-progress { margin-bottom: 24px; }
.progress-meta { font-size: 13px; color: var(--text-sub); font-weight: 700; margin-bottom: 8px; letter-spacing: 0.3px; }
.progress-meta b { color: var(--accent); font-size: 17px; margin: 0 2px; }
.progress-bar { height: 8px; background: var(--line-soft); border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; width: 0; background: var(--primary); border-radius: 999px; transition: width 0.35s ease; }

.shindan-q .q-title { font-size: 19px; font-weight: 700; color: var(--text); line-height: 1.55; margin-bottom: 6px; }
.shindan-q .q-title.kr-desc { color: var(--text); font-family: 'Noto Sans KR', sans-serif; }
.shindan-q .q-sub { font-size: 13px; color: var(--text-mute); margin-bottom: 20px; line-height: 1.7; }
.shindan-q .q-sub.kr-desc { color: var(--text-mute); }
.shindan-options { display: flex; flex-direction: column; gap: 11px; }
.opt-btn {
  display: flex; align-items: center; gap: 13px;
  text-align: left; width: 100%;
  border: 1.5px solid var(--line);
  background: #FFFFFF;
  border-radius: 11px;
  padding: 15px 18px;
  font-size: 15px; font-weight: 600; color: var(--text);
  line-height: 1.5;
  transition: border-color 0.15s, background 0.15s, transform 0.08s;
}
.opt-btn::before {
  content: ''; width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--line); flex-shrink: 0; transition: border-color 0.15s, box-shadow 0.15s;
}
.opt-btn:hover { border-color: var(--primary-light); background: var(--bg-soft); }
.opt-btn:active { transform: scale(0.995); }
.opt-btn.is-selected { border-color: var(--primary); background: var(--bg-soft); }
.opt-btn.is-selected::before { border-color: var(--primary); box-shadow: inset 0 0 0 4px var(--primary); }
.q-nav { margin-top: 18px; }
.back-btn { font-size: 13px; color: var(--text-sub); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.back-btn:hover { color: var(--primary); }
.back-btn svg { width: 14px; height: 14px; }

.result-badge { display: inline-block; font-weight: 700; font-size: 14px; padding: 6px 16px; border-radius: 999px; margin-bottom: 14px; }
.result-badge.is-high { background: #E7F4EC; color: #1C7C46; border: 1px solid #B7E0C6; }
.result-badge.is-mid { background: #EEF4FC; color: var(--primary); border: 1px solid #C7DCF3; }
.result-badge.is-low { background: #FDF1E7; color: #B46A16; border: 1px solid #F1D6B3; }
/* 診断ツリー：4色の結果バッジ（青=可能性大／緑=企業サポート／黄=要相談／赤=要件未達） */
.result-badge.is-blue { background: #EAF1FB; color: #0047A0; border: 1px solid #C2D6F0; }
.result-badge.is-green { background: #E7F4EC; color: #1C7C46; border: 1px solid #B7E0C6; }
.result-badge.is-yellow { background: #FBF3DD; color: #9A6B11; border: 1px solid #ECD9A6; }
.result-badge.is-red { background: #FBE9E9; color: #B23535; border: 1px solid #EBC4C4; }
.result-variant.is-red h3 { color: #B23535; }
.result-variant h3 { font-size: 21px; font-weight: 700; color: var(--text); margin-bottom: 12px; line-height: 1.55; }
.result-variant h3.kr-desc { color: var(--text); font-family: 'Noto Sans KR', sans-serif; }
.result-variant p { font-size: 15px; color: var(--text-sub); line-height: 1.9; }
.result-variant p.kr-desc { color: var(--kr); }
.office-tip {
  margin-top: 20px; padding: 16px 18px; border-radius: 10px;
  background: var(--bg-soft); border-left: 4px solid var(--accent);
  font-size: 14px; line-height: 1.85; color: var(--text-sub);
}
.office-tip strong { color: var(--accent); }
.office-tip .kr-desc { color: var(--kr); display: block; margin-top: 4px; }
.result-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 26px; }
.retry-btn {
  font-size: 14px; font-weight: 700; color: var(--primary);
  border: 1.5px solid var(--line); border-radius: 999px; padding: 12px 22px; background: #FFFFFF;
  transition: border-color 0.15s, background 0.15s;
}
.retry-btn:hover { border-color: var(--primary-light); background: var(--bg-soft); }
.shindan-note { font-size: 12.5px; color: var(--text-mute); margin-top: 20px; line-height: 1.75; }
.shindan-note.kr-desc { color: var(--text-mute); }
@media (max-width: 680px) {
  .shindan-card { padding: 24px 20px; }
  .result-cta .diagnose-btn, .result-cta .retry-btn { width: 100%; justify-content: center; text-align: center; }
}

/* ============================================================
   2026 改修：文字色の統一(#222)・韓国語フォント・言語ボタン・カード
   ============================================================ */

/* --- 3. 基本文字色を濃く統一（薄いグレー→#222222） --- */
:root {
  --text: #222222;
  --kr: #222222;
  --text-sub: #3A3F46;
  --text-mute: #5A5F66;
}
body { color: #222222; }

/* 韓国語：Noto Sans KR に固定・太さ Medium・ハングルの潰れ防止 */
html[data-lang="ko"] body { font-family: 'Noto Sans KR', 'Noto Sans JP', sans-serif; }
html[data-lang="ko"] :is(h1, h2, h3, h4, h5,
  .brand-text h1, .h-block, .section-head h2, .rf-block-title,
  .page-hero h1, .closing-text h2, .profile-name, .result-variant h3,
  .shindan-start h2, .q-title, .faq-category-title) {
  font-family: 'Noto Sans KR', sans-serif !important;
}
html[data-lang="ko"] :is(p, li, span, .kr, .kr-desc, .kr-lead, .nav-kr) { font-weight: 500; }
.kr, .kr-desc, .kr-lead, .kr-h, .nav-kr, .page-hero-kr {
  font-family: 'Noto Sans KR', sans-serif;
  color: #222222;
}

/* 説明文等は最低 16px 以上に */
.kr-desc, .h-block-desc, .imm-lead, .imm-lead.kr-desc,
.reason-item p, .reason-item p.kr-desc,
.value-card p, .value-card p.kr-desc,
.service-detail p.kr-desc, .closing-text p.kr-desc,
.faq-answer p, .faq-answer p.kr-desc { font-size: 16px; }
.page-hero-desc, .page-hero-desc.kr { font-size: 16.5px; }

/* 暗い背景の上に乗る文字は白を維持（#222 で潰れるのを防ぐ） */
.closing-cta, .closing-cta .ja, .closing-cta .kr,
.closing-cta .kr-h, .closing-cta .kr-desc, .closing-cta .kr-lead,
.contact-btn .ja, .contact-btn .kr,
.service-img, .service-img .ja, .service-img .kr,
.profile-badge:not(.is-muted) .ja, .profile-badge:not(.is-muted) .kr,
.diagnose-btn .ja, .diagnose-btn .kr,
.start-btn .ja, .start-btn .kr,
.feat-tag.ja, .feat-tag.kr {
  color: #FFFFFF;
}
.result-badge .ja, .result-badge .kr,
.profile-badge.is-muted .ja, .profile-badge.is-muted .kr { color: inherit; }

/* --- 2. 言語切替ボタンの視認性アップ（選択中＝日本語は青／韓国語は赤） --- */
.lang-switch {
  border: 1.5px solid var(--line);
  border-radius: 8px;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-sub);
}
.lang-btn[aria-pressed="true"],
.lang-btn[data-set-lang="ja"][aria-pressed="true"] { background: var(--primary); color: #FFFFFF; }
.lang-btn[data-set-lang="ko"][aria-pressed="true"] { background: var(--accent); color: #FFFFFF; }
.lang-btn:hover:not([aria-pressed="true"]) { background: var(--bg-soft); color: var(--primary); }
@media (max-width: 900px) { .lang-btn { padding: 7px 12px; font-size: 14px; } }
@media (max-width: 680px) { .lang-btn { padding: 6px 11px; font-size: 13.5px; } }
@media (max-width: 380px) { .lang-btn { padding: 5px 8px; font-size: 12.5px; } }

/* --- 4. サービスカード：色背景の文字は完全な白＋太字／説明文を拡大 --- */
.service-img { color: #FFFFFF; font-weight: 700; font-size: 14px; letter-spacing: 0.5px; }
.service-img .ja, .service-img .kr { color: #FFFFFF; font-weight: 700; }
.service-body p { font-size: 17px; }
.service-body p.kr-desc { font-size: 16.5px; color: #222222; }
@media (max-width: 680px) {
  .service-body p { font-size: 16.5px; }
  .service-body p.kr-desc { font-size: 16px; }
  .service-body .kr { font-size: 16px; }
}

/* --- 1. グローバルナビ 7項目化：長い項目（入管・ビザ・国際法務）の収まり調整 --- */
@media (min-width: 681px) and (max-width: 1180px) {
  .gnav a { font-size: 13.5px; padding: 12px 3px; letter-spacing: -0.2px; }
  .gnav .nav-kr { font-size: 10px; }
}

/* ============================================================
   サービスカードの画像差し込み（プレースホルダ→実画像）
   ============================================================ */
.service-img.ph-1 { background: url('images/c93135ca-a926-4d21-9154-2da8d82344a1.jpg') center/cover no-repeat; }
.service-img.ph-2 { background: url('images/17db23dc-a9d4-41dc-8fd7-efda9506de5c.jpg') center/cover no-repeat; }
.service-img.ph-3 { background: url('images/39e9ab18-a57d-4d84-a48f-4c3a6b78881b.jpg') center/cover no-repeat; }
.service-img.ph-4 { background: url('images/e79429c0-8ff1-49d5-bfad-5cbd7767406e.jpg') center/cover no-repeat; }
.service-img.ph-5 { background: url('images/33249143-3a35-4062-abb8-04e429b53326.jpg') center/cover no-repeat; }
.service-img.ph-6 { background: url('images/2f835c43-df8d-47eb-9c43-3921dbf83264.jpg') center/cover no-repeat; }
.service-img.ph-7 { background: url('images/428cd4e8-46ae-4a1a-80b7-655df918e430.jpg') center 20%/cover no-repeat; }
.service-img.ph-imm-1 { background: url('images/ac9c1f39-8be4-497b-a02a-f9885de31f1e.jpg') center/cover no-repeat; }
.service-img.ph-imm-2 { background: url('images/ea1e8d8a-de55-4fca-8fec-124152fb212e.jpg') center/cover no-repeat; }
.service-img.ph-imm-3 { background: url('images/c384d0f0-4c0f-44a0-9e93-9fd2811b8cc1.jpg') center/cover no-repeat; }
/* 画像挿入により、上部のプレースホルダ文字・アイコンは非表示 */
.service-img .ja, .service-img .kr, .service-img .imm-icon { display: none !important; }
