@charset "UTF-8";
/*
Theme Name: JLPT Child
Template: Lightning
Version: 1.3
*/

/* ============================================================
   1. CSS変数・基本リセット
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --teal:        #154D57;
    --teal-mid:    #1e6a77;
    --teal-light:  #e0edf0;
    --cream:       #f9f6f1;
    --warm-white:  #fdfbf8;
    --text:        #2a2a2a;
    --text-mid:    #5a5a5a;
    --text-light:  #8a8a8a;
    --accent:      #c45c3e;
    --accent-soft: #fdf0ec;
    --gold:        #c9a96e;
    --line:        #e2ddd7;
    --red-x:       #c0392b;
    --ff-serif:    'Cormorant Garamond', 'Noto Serif JP', serif;
    --ff-body:     'DM Sans', 'Noto Sans JP', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--warm-white); color: var(--text); line-height: 1.7; font-size: 16px; overflow-x: hidden; }
.serif { font-family: var(--ff-serif); }
h1, h2, h3 { font-family: var(--ff-serif); font-weight: 600; line-height: 1.25; }

/* ============================================================
   2. アニメーション
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}
.reveal { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.hidden  { opacity: 0; transform: translateY(28px); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   3. NAV（共通）
   ============================================================ */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 14px 40px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(253,251,248,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    overflow: visible;
}
.nav-logo img { height: 52px; width: auto; display: block; }
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 0.82rem; font-weight: 500; color: var(--text-mid); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; }
.nav-link:hover { color: var(--teal); }
.nav-cta { background: var(--accent); color: #fff; padding: 10px 24px; border-radius: 40px; font-size: 0.8rem; font-weight: 500; text-decoration: none; letter-spacing: 0.04em; transition: background 0.2s; }
.nav-cta:hover { background: #b04e33; color: #fff !important; }

/* 言語切替リンク */
.nav-lang { font-size: 0.75rem; opacity: 0.7; border: 1px solid currentColor; padding: 4px 10px !important; border-radius: 40px; }
.nav-lang:hover { opacity: 1; }

/* ハンバーガー */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; z-index: 300; position: relative; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--teal); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルメニュー */
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(253,251,248,0.99); z-index: 250; flex-direction: column; align-items: stretch; justify-content: flex-start; padding-top: 80px; }
.mobile-menu.open { display: flex; }
.mobile-menu-close { position: absolute; top: 18px; right: 24px; background: none; border: none; font-size: 1.8rem; color: var(--teal); cursor: pointer; line-height: 1; padding: 4px 8px; }
.mobile-menu-item { display: block; padding: 14px 32px; font-family: var(--ff-serif); font-size: 1.3rem; color: var(--teal); text-decoration: none; font-weight: 600; letter-spacing: 0.04em; border-top: 1px solid var(--line); text-align: center; transition: background 0.2s; }
.mobile-menu-item:last-of-type { border-bottom: none !important; }
.mobile-menu-item:hover { background: var(--teal-light); }
.mobile-menu-cta-wrap { padding: 32px 32px 0; text-align: center; border-top: 1px solid var(--line); }
.mobile-menu-cta-wrap .btn-primary { display: inline-block; width: 100%; text-align: center; }

#jlptMobileMenu      { display: none; }
#jlptMobileMenu.open { display: flex !important; flex-direction: column; }

/* ============================================================
   4. レイアウト基本
   ============================================================ */
section { padding: 100px 24px; }
.container    { max-width: 1100px; margin: 0 auto; }
.container-sm { max-width: 720px; margin: 0 auto; }

.eyebrow { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 18px; }
.eyebrow::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--teal); vertical-align: middle; margin-right: 8px; }
.divider { width: 50px; height: 2px; background: var(--gold); margin: 20px auto; }
.divider-left { margin-left: 0; }

/* ============================================================
   5. ボタン
   ============================================================ */
.btn-primary { display: inline-block; background: var(--accent); color: #fff; padding: 18px 52px; border-radius: 50px; font-size: 1rem; font-weight: 500; letter-spacing: 0.04em; text-decoration: none; transition: background 0.25s, transform 0.25s, box-shadow 0.25s; box-shadow: 0 4px 24px rgba(196,92,62,0.25); cursor: pointer; border: none; }
.btn-primary:hover { background: #b04e33; transform: translateY(-3px); box-shadow: 0 8px 32px rgba(196,92,62,0.35); }
.btn-outline-teal { display: inline-block; background: transparent; color: var(--teal); padding: 17px 48px; border-radius: 50px; font-size: 1rem; font-weight: 500; letter-spacing: 0.04em; text-decoration: none; border: 2px solid var(--teal); transition: background 0.25s, color 0.25s, transform 0.25s; cursor: pointer; }
.btn-outline-teal:hover { background: var(--teal); color: #fff; transform: translateY(-3px); }
.contact-btn:hover { background: #154D57 !important; color: #fff !important; border-color: #fff !important; }
.btn-group { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ============================================================
   6. HERO
   ============================================================ */
#hero { padding: 0; min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; background: var(--cream); overflow: hidden; }
.hero-left { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 140px 64px 100px 80px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--teal-light); color: var(--teal); padding: 7px 16px; border-radius: 40px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 28px; }
.hero-badge::before { content: ''; width: 7px; height: 7px; background: var(--teal); border-radius: 50%; }
.hero-h1 { font-size: clamp(2.4rem, 4vw, 3.8rem); line-height: 1.18; margin-bottom: 24px; color: var(--text); }
.hero-h1 em { font-style: normal; color: var(--teal); }
.hero-sub { font-size: 1.1rem; color: var(--text); font-weight: 700; margin-bottom: 40px; line-height: 1.8; }
.hero-right { position: relative; overflow: hidden; min-height: 100vh; }
.hero-right img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-shape { position: absolute; bottom: -60px; left: -60px; width: 320px; height: 320px; border-radius: 50%; background: rgba(45,92,88,0.08); }
#hero .hero-left > * { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.hero-badge { animation-delay: 0.10s; }
.hero-h1    { animation-delay: 0.25s; }
.hero-sub   { animation-delay: 0.38s; }
.hero-left .btn-primary { animation-delay: 0.50s; }
#hero .hero-right { opacity: 0; animation: fadeIn 0.9s ease 0.4s forwards; }

/* ============================================================
   7. PROBLEM / AGITATE / SOLUTION / BENEFIT
   ============================================================ */
#empathy { background: var(--warm-white); }
.empathy-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.empathy-inner h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 48px; }
.empathy-text { text-align: left; font-size: 1.05rem; color: var(--text-mid); line-height: 2; margin-bottom: 28px; }
.empathy-callout { background: var(--cream); border-left: 4px solid var(--teal); border-radius: 0 16px 16px 0; padding: 32px 36px; text-align: left; margin-top: 40px; }
.empathy-callout p:first-child { font-weight: 500; margin-bottom: 12px; color: var(--text); }
.empathy-callout .big-text { font-family: var(--ff-serif); font-size: clamp(1.4rem, 2.5vw, 1.9rem); color: var(--teal); line-height: 1.5; }

#agitate { background: var(--teal); }
#agitate h2 { color: #fff; font-size: clamp(1.6rem, 2.8vw, 2.4rem); text-align: center; margin-bottom: 48px; }
#agitate .lead { text-align: center; color: #fff; margin-bottom: 20px; font-family: var(--ff-serif); font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; letter-spacing: 0.02em; line-height: 1.4; }
.agitate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.agitate-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: 20px; padding: 40px 32px; text-align: center; transition: background 0.25s, transform 0.25s; }
.agitate-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.agitate-icon { width: 64px; height: 64px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.agitate-card h3 { font-family: var(--ff-serif); font-size: 1.2rem; color: #fff; line-height: 1.5; }
#agitate .footnote { text-align: center; color: rgba(255,255,255,0.95); margin-top: 56px; padding: 0 16px; }

#solution { background: var(--warm-white); }
.solution-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.solution-left h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); margin-bottom: 24px; }
.solution-left p { color: var(--text-mid); line-height: 1.9; margin-bottom: 24px; }
.solution-checklist { list-style: none; }
.solution-checklist li { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; font-weight: 500; }
.solution-checklist li:last-child { border-bottom: none; }
.check-icon { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; background: var(--teal-light); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; margin-top: 2px; }
.solution-right { background: var(--cream); border-radius: 24px; padding: 48px 44px; border: 1px solid var(--line); }
.solution-right h3 { font-family: var(--ff-serif); font-size: 1.4rem; margin-bottom: 24px; color: var(--teal); }
.solution-right p { color: var(--text-mid); line-height: 1.9; font-size: 0.97rem; }

#benefit { background: var(--cream); }
#benefit h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); text-align: center; margin-bottom: 64px; }
.ba-grid { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; align-items: center; max-width: 900px; margin: 0 auto 64px; }
.ba-card { border-radius: 20px; padding: 40px 36px; }
.ba-before { background: #fff; border: 1px solid var(--line); }
.ba-after  { background: var(--teal); color: #fff; }
.ba-label  { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px; display: block; }
.ba-before .ba-label { color: var(--text-light); }
.ba-after  .ba-label { color: rgba(255,255,255,0.6); }
.ba-list { list-style: none; }
.ba-list li { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 1rem; }
.ba-after .ba-list li { border-color: rgba(255,255,255,0.15); }
.ba-list li:last-child { border-bottom: none; }
.ba-arrow { display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.4rem; padding-top: 0; align-self: center; }

.highlight-quote { text-align: center; font-family: var(--ff-serif); font-size: clamp(1.2rem, 2vw, 1.6rem); font-style: normal; font-weight: 600; line-height: 1.7; color: inherit; }
.highlight-quote .ul-yellow { text-decoration: underline; text-decoration-color: #f0c040; text-decoration-thickness: 3px; text-underline-offset: 5px; }
.benefit-quote { text-align: center; max-width: 640px; margin: 0 auto 48px; color: var(--text); }
#benefit .cta-wrap { text-align: center; }
#cta-final .cta-sub { text-align: center; margin-top: 40px; color: rgba(255,255,255,0.95); }

.mid-cta { background: var(--teal-light); padding: 80px 24px; text-align: center; }
.mid-cta h3 { font-family: var(--ff-serif); font-size: clamp(1.3rem, 2.2vw, 1.9rem); margin-bottom: 36px; color: var(--teal); }

/* ============================================================
   8. AUTHORITY / REVIEWS
   ============================================================ */
#authority { background: var(--warm-white); }
.authority-profile { display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start; margin-bottom: 72px; }
.authority-social  { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.profile-img-wrap  { position: relative; }
.profile-img { width: 100%; aspect-ratio: 3 / 4; border-radius: 20px; background: linear-gradient(145deg, #d4e6e4, #9fc2be); display: flex; align-items: center; justify-content: center; color: var(--teal-mid); font-size: 0.8rem; overflow: hidden; }
.profile-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 5%; border-radius: 20px; }
.profile-tag { position: absolute; bottom: -16px; right: -16px; background: var(--teal); color: #fff; padding: 12px 20px; border-radius: 12px; font-size: 0.78rem; font-weight: 600; line-height: 1.5; box-shadow: 0 8px 24px rgba(45,92,88,0.3); }
.authority-text h2 { font-size: clamp(1.7rem, 2.5vw, 2.2rem); margin-bottom: 8px; }
.authority-text .sub-title { color: var(--teal); font-weight: 500; margin-bottom: 32px; font-size: 0.95rem; }
.authority-text p { color: var(--text-mid); line-height: 1.9; margin-bottom: 20px; }

#reviews { background: var(--teal); padding: 100px 24px; text-align: center; position: relative; overflow: hidden; }
#reviews::before { content: ''; position: absolute; top: -120px; right: -120px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.03); }
#reviews::after  { content: ''; position: absolute; bottom: -80px; left: -80px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.reviews-title { font-family: var(--ff-serif); font-size: clamp(1.7rem, 2.8vw, 2.4rem); color: #fff; margin-bottom: 56px; font-weight: 600; }
.carousel-wrap { position: relative; max-width: 760px; margin: 0 auto; }
.carousel-slide { display: none; animation: fadeIn 0.5s ease; }
.carousel-slide.active { display: block; }
.reviewer-avatar { width: 140px; height: 140px; border-radius: 50%; border: none; margin: 0 auto 32px; overflow: hidden; background: transparent; display: flex; align-items: center; justify-content: center; }
.reviewer-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.review-text { font-family: var(--ff-serif); font-size: clamp(1.05rem, 2vw, 1.35rem); color: rgba(255,255,255,0.92); line-height: 1.85; font-style: italic; margin-bottom: 28px; max-width: 680px; margin-left: auto; margin-right: auto; }
.review-name { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.55); letter-spacing: 0.12em; text-transform: uppercase; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.35); background: transparent; color: #fff; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; z-index: 2; }
.carousel-btn:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }
.carousel-btn.prev { left: -72px; }
.carousel-btn.next { right: -72px; }
.rod-story { max-width: 680px; margin: 56px auto 0; text-align: center; }
.rod-story .rod-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.rod-story p { color: rgba(255,255,255,0.65); font-size: 0.97rem; line-height: 1.9; }

@media (max-width: 900px) {
    .carousel-btn.prev { left: -8px; }
    .carousel-btn.next { right: -8px; }
    .carousel-wrap { padding: 0 44px; }
}

/* ============================================================
   9. OFFER / CTA
   ============================================================ */
#offer { background: var(--cream); }
.offer-header { text-align: center; margin-bottom: 64px; }
.offer-header h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); margin-bottom: 16px; color: var(--text); }
.offer-header p { color: var(--text-mid); }
.offer-launch { display: inline-block; background: var(--teal); color: #fff !important; font-family: var(--ff-serif); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 600; letter-spacing: 0.06em; padding: 10px 36px; margin: 0 0 32px; line-height: 1.5; border-radius: 0; }
.offer-launch small { display: block; font-family: var(--ff-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 2px; }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.offer-card { background: #fff; border-radius: 20px; padding: 44px 40px; border: 1px solid var(--line); }
.offer-card h4 { font-family: var(--ff-serif); font-size: 1.25rem; color: var(--teal); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.offer-list { list-style: none; }
.offer-list li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; color: var(--text-mid); font-size: 0.97rem; border-bottom: 1px solid var(--line); }
.offer-list li:last-child { border-bottom: none; }
.offer-list .dot { width: 7px; height: 7px; flex-shrink: 0; border-radius: 50%; background: var(--teal); margin-top: 8px; }

#cta-final { background: var(--teal); }
.price-box { max-width: 680px; margin: 0 auto; background: #fff; border-radius: 32px; padding: 60px 64px; text-align: center; position: relative; overflow: hidden; }
.ribbon { position: absolute; top: 20px; right: 20px; background: var(--accent); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 7px 20px; border-radius: 40px; letter-spacing: 0.1em; }
#cta-final .section-title { font-family: var(--ff-serif); font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 40px; color: var(--text); }
.price-old { text-decoration: line-through; color: var(--text-light); font-size: 1rem; margin-bottom: 8px; }
.price-new { font-family: var(--ff-serif); font-size: clamp(4rem, 8vw, 6rem); font-weight: 600; color: var(--teal); line-height: 1; }
.price-tag { display: inline-block; background: var(--accent-soft); color: var(--accent); font-size: 0.85rem; font-weight: 600; padding: 7px 20px; border-radius: 40px; margin: 20px 0 36px; }
.price-note { font-size: 0.82rem; color: var(--text-light); margin-bottom: 40px; line-height: 1.8; }

/* ============================================================
   10. FAQ アコーディオン
   ============================================================ */
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-divider { border: none; border-top: 1px solid var(--line); margin: 0; }
.faq-item-acc { border-bottom: 1px solid var(--line); }
.faq-btn { width: 100%; background: none; border: none; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; text-align: left; }
.faq-btn-text { font-family: var(--ff-body); font-size: 1rem; font-weight: 500; color: var(--text); line-height: 1.5; }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; position: relative; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--teal); border-radius: 1px; transition: transform 0.3s ease, opacity 0.3s ease; }
.faq-icon::before { width: 14px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1.5px; height: 14px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-btn[aria-expanded="true"] .faq-icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }
.faq-body { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.faq-body-inner { padding: 0 0 22px; font-size: 0.97rem; color: var(--text-mid); line-height: 1.9; }

/* ============================================================
   11. CONTACTボタン（メール・WhatsApp）
   ============================================================ */
.contact-btn-group { display: flex; flex-direction: row; flex-wrap: wrap; gap: 12px; justify-content: center; }
.contact-btn-item { display: inline-flex; align-items: center; gap: 8px; padding: 15px 28px; border-radius: 50px; font-size: 0.95rem; font-weight: 500; letter-spacing: 0.04em; text-decoration: none; border: 2px solid #fff; transition: background 0.25s, color 0.25s, transform 0.25s; cursor: pointer; white-space: nowrap; }
.contact-btn-mail { background: #fff; color: #154D57; border-color: #fff; }
.contact-btn-mail:hover { background: transparent; color: #fff; transform: translateY(-3px); }
.contact-btn-whatsapp { background: transparent; color: #fff; border-color: #fff; }
.contact-btn-whatsapp:hover { background: #25D366; border-color: #25D366; color: #fff; transform: translateY(-3px); }

/* ============================================================
   12. 特定商取引法（共通スタイル）
   ============================================================ */
.tokusho-wrap { font-family: var(--ff-body); background: var(--warm-white); color: var(--text); min-height: 100vh; }
.tokusho-main { padding: 140px 24px 100px; }
.tokusho-container { max-width: 820px; margin: 0 auto; }
.tokusho-header { text-align: center; margin-bottom: 56px; }
.tokusho-header h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--text); margin-bottom: 0; line-height: 1.3; }
.tokusho-table-wrap { background: #fff; border-radius: 20px; border: 1px solid var(--line); overflow: hidden; margin-bottom: 48px; }
.tokusho-table { width: 100%; border-collapse: collapse; font-size: 0.97rem; line-height: 1.8; }
.tokusho-table tr { border-bottom: 1px solid var(--line); }
.tokusho-table tr:last-child { border-bottom: none !important; }
.tokusho-table th { width: 220px; padding: 22px 28px; background: var(--cream); color: var(--teal); font-weight: 600; font-size: 0.9rem; vertical-align: top; text-align: left; line-height: 1.7; white-space: nowrap; border-right: 1px solid var(--line); }
.tokusho-table td { padding: 22px 28px; color: var(--text-mid); vertical-align: top; line-height: 1.9; }
.tokusho-th-important { color: var(--accent) !important; }
.tokusho-badge { display: inline-block; background: var(--accent-soft); color: var(--accent); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; padding: 2px 8px; border-radius: 4px; margin-top: 4px; vertical-align: middle; }
.tokusho-note { display: block; margin-top: 6px; font-size: 0.82rem; color: var(--text-light); }
.tokusho-link { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; word-break: break-all; }
.tokusho-link:hover { color: var(--teal-mid); }
.tokusho-back { text-align: center; margin-top: 48px; }

/* ============================================================
   13. Contact Form 7
   ============================================================ */
.wpcf7 { max-width: 640px; margin: 0 auto; padding: 0; }
.wpcf7 p { margin-bottom: 20px; }
.wpcf7 .wpcf7-form-control-wrap { display: block; margin-top: 6px; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select { width: 100%; padding: 13px 16px; border: 1px solid #e2ddd7; border-radius: 10px; background: #fff; font-family: 'DM Sans','Noto Sans JP',sans-serif; font-size: 0.97rem; color: #2a2a2a; line-height: 1.6; transition: border-color 0.2s, box-shadow 0.2s; appearance: none; -webkit-appearance: none; box-sizing: border-box; }
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus { outline: none; border-color: #154D57; box-shadow: 0 0 0 3px rgba(21,77,87,0.1); }
.wpcf7 textarea { min-height: 140px; resize: vertical; }
.wpcf7 select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23154D57' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.wpcf7 .wpcf7-radio .wpcf7-list-item,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item { display: block; margin: 6px 0; }
.wpcf7 .wpcf7-list-item input[type="radio"],
.wpcf7 .wpcf7-list-item input[type="checkbox"] { width: auto; margin-right: 8px; accent-color: #154D57; }
.wpcf7 input[type="submit"] { display: inline-block; width: auto; min-width: 220px; padding: 18px 52px; border-radius: 50px; background: #c45c3e; color: #fff; font-family: 'DM Sans','Noto Sans JP',sans-serif; font-size: 1rem; font-weight: 500; letter-spacing: 0.04em; border: none; cursor: pointer; transition: background 0.25s, transform 0.25s, box-shadow 0.25s; box-shadow: 0 4px 24px rgba(196,92,62,0.25); margin-top: 8px; }
.wpcf7 input[type="submit"]:hover { background: #b04e33; transform: translateY(-3px); box-shadow: 0 8px 32px rgba(196,92,62,0.35); }
.wpcf7 p:has(input[type="submit"]) { text-align: center; }
.wpcf7-spinner { display: none !important; }
.wpcf7 .wpcf7-not-valid-tip { color: #c0392b; font-size: 0.82rem; margin-top: 4px; display: block; }
.wpcf7 .wpcf7-response-output { margin: 16px 0 0; padding: 14px 18px; border-radius: 10px; font-size: 0.9rem; border: none; }
.wpcf7 .wpcf7-mail-sent-ok { background: #e0edf0; color: #154D57; }
.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-spam-blocked { background: #fdf0ec; color: #c45c3e; }

.jlpt-back-link { display: flex; justify-content: center; margin-top: 24px; width: 100%; }
.jlpt-back-link a { font-size: 0.9rem; color: #154D57; text-decoration: underline; text-underline-offset: 3px; transition: opacity 0.2s; text-align: center; }
.jlpt-back-link a:hover { opacity: 0.7; }

/* ============================================================
   14. フッター（共通）
   ============================================================ */
footer { padding: 40px 24px; text-align: center; background: var(--teal); color: rgba(255,255,255,0.5); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }

.jlpt-footer { background: #154D57; padding: 40px 24px; text-align: center; }
.jlpt-footer-nav { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; margin: 0 0 20px; padding: 0; }
.jlpt-footer-nav a { color: rgba(255,255,255,0.7); font-size: 0.82rem; letter-spacing: 0.06em; text-decoration: none; transition: color 0.2s; }
.jlpt-footer-nav a:hover { color: #fff; }
.jlpt-footer-copy { color: rgba(255,255,255,0.5); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin: 0; }

/* ============================================================
   15. お申込みの流れ
   ============================================================ */
#flow { background: var(--cream) !important; }

.flow-list { max-width: 640px; margin: 0 auto; }
.flow-item { display: flex; align-items: flex-start; gap: 24px; padding-bottom: 32px; position: relative; }
.flow-item:not(.flow-item--last)::before { content: ''; position: absolute; left: 19px; top: 44px; bottom: 0; width: 2px; background: var(--teal-light); }
.flow-num { width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%; background: var(--teal); color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.flow-num--last { background: var(--accent); }
.flow-body { padding-top: 8px; flex: 1; }
.flow-title { font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 6px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.flow-tag { font-family: var(--ff-body); font-size: 0.72rem; font-weight: 600; background: var(--teal-light); color: var(--teal); padding: 3px 10px; border-radius: 40px; letter-spacing: 0.04em; }
.flow-desc { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin: 0; }

/* ============================================================
   16. ページ共通パーツ（jlpt-page-wrap使用ページ）
   ============================================================ */
.jlpt-page-wrap { padding-top: 80px; }

.jlpt-page-header { text-align: center; padding: 48px 24px 40px; }
.jlpt-page-header .eyebrow { display: block; margin: 0 auto 12px; }
.jlpt-page-header h1,
.jlpt-page-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--text); margin-bottom: 0; line-height: 1.3; }
.jlpt-page-header .divider { margin: 20px auto; }

/* ============================================================
   17. page-id-9（N1 LP）専用
   ============================================================ */
.page-id-9 .site-header,
.page-id-9 #site-header,
.page-id-9 .vk-mobile-nav-menu-btn { display: none !important; }

.page-id-9 .entry-header,
.page-id-9 .entry-title,
.page-id-9 .page-header,
.page-id-9 .page-title,
.page-id-9 .breadcrumb,
.page-id-9 .vk-breadcrumb,
.page-id-9 #breadcrumb { display: none !important; }

.page-id-9 .footer-widget-area,
.page-id-9 .widget-area,
.page-id-9 .widget,
.page-id-9 .widget_archive,
.page-id-9 .subSection,
.page-id-9 .site-footer,
.page-id-9 #site-footer,
.page-id-9 #colophon,
.page-id-9 .site-footer-copyright { display: none !important; }

.page-id-9 h1:before,
.page-id-9 h2:before,
.page-id-9 h3:before { display: none !important; }
.page-id-9 h1,
.page-id-9 h2,
.page-id-9 h3 { border: none !important; }

.page-id-9 .container,
.page-id-9 .siteContent,
.page-id-9 .mainSection,
.page-id-9 .content,
.page-id-9 .wrap,
.page-id-9 .inner,
.page-id-9 .section-inner { max-width: 100% !important; width: 100% !important; padding-left: 0 !important; padding-right: 0 !important; }

.page-id-9 .entry-content,
.page-id-9 .post-contents { max-width: 100% !important; margin: 0 !important; padding: 0 !important; }

.page-id-9 .site-body,
.page-id-9 .siteContent,
.page-id-9 main { margin: 0 !important; padding: 0 !important; }

.page-id-9 .jlptlp-wrap + p { display: none !important; margin: 0 !important; padding: 0 !important; }
.page-id-9 nav { min-height: 72px !important; padding: 12px 24px !important; display: flex; align-items: center; z-index: 9999; }
.page-id-9 nav img { max-height: 40px !important; width: auto !important; display: block !important; }
.page-id-9 .faq-wrap { max-width: 720px !important; margin: 0 auto !important; }

/* ============================================================
   18. page-id-109 / 114 / 116（特商法・申込・問い合わせ）
   ============================================================ */
.page-id-109 .site-header,
.page-id-109 #site-header,
.page-id-114 .site-header,
.page-id-114 #site-header,
.page-id-116 .site-header,
.page-id-116 #site-header { display: none !important; }

.page-id-109 .breadcrumb,
.page-id-109 .vk-breadcrumb,
.page-id-109 #breadcrumb,
.page-id-114 .breadcrumb,
.page-id-114 .vk-breadcrumb,
.page-id-114 #breadcrumb,
.page-id-116 .breadcrumb,
.page-id-116 .vk-breadcrumb,
.page-id-116 #breadcrumb { display: none !important; }

.page-id-109 .footer-widget-area,
.page-id-109 .widget-area,
.page-id-109 .widget,
.page-id-109 .widget_archive,
.page-id-109 .subSection,
.page-id-109 .site-footer,
.page-id-109 #site-footer,
.page-id-109 #colophon,
.page-id-109 .site-footer-copyright,
.page-id-114 .footer-widget-area,
.page-id-114 .widget-area,
.page-id-114 .widget,
.page-id-114 .widget_archive,
.page-id-114 .subSection,
.page-id-114 .site-footer,
.page-id-114 #site-footer,
.page-id-114 #colophon,
.page-id-114 .site-footer-copyright,
.page-id-116 .footer-widget-area,
.page-id-116 .widget-area,
.page-id-116 .widget,
.page-id-116 .widget_archive,
.page-id-116 .subSection,
.page-id-116 .site-footer,
.page-id-116 #site-footer,
.page-id-116 #colophon,
.page-id-116 .site-footer-copyright { display: none !important; }

.page-id-109 #main,
.page-id-114 #main,
.page-id-116 #main { width: 100% !important; max-width: 100% !important; float: none !important; }

.page-id-109 nav img,
.page-id-114 nav img,
.page-id-116 nav img { max-height: 40px !important; width: auto !important; display: block !important; }

.page-id-109 .tokusho-main { padding-top: 48px; }

/* ============================================================
   19. page-id-3（プライバシーポリシー）
   ============================================================ */
.page-id-3 .site-header,
.page-id-3 #site-header { display: none !important; }

.page-id-3 .breadcrumb,
.page-id-3 .vk-breadcrumb,
.page-id-3 #breadcrumb { display: none !important; }

.page-id-3 .widget-area,
.page-id-3 .widget,
.page-id-3 .widget_archive,
.page-id-3 #secondary { display: none !important; }

.page-id-3 .site-footer,
.page-id-3 #site-footer,
.page-id-3 #colophon { display: none !important; }

.page-id-3 #main { width: 100% !important; max-width: 100% !important; float: none !important; }
.page-id-3 nav img { max-height: 40px !important; width: auto !important; display: block !important; }

.page-id-3 h1.page-header-title {
    font-family: 'Cormorant Garamond', 'Noto Serif JP', serif !important;
    font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
    font-weight: 600 !important;
    text-align: center !important;
    color: #2a2a2a !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.page-id-3 h1.page-header-title::before {
    content: '— Privacy Policy';
    display: block;
    font-family: 'DM Sans', 'Noto Sans JP', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #154D57;
    margin-bottom: 14px;
}
.page-id-3 h1.page-header-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: #c9a96e;
    margin: 20px auto 0;
}
.page-id-3 .page-header,
.page-id-3 .vk-page-header { background: none !important; padding: 100px 0 0 !important; margin: 0 !important; text-align: center !important; }

.page-id-3 .entry-content h2 {
    font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 600;
    color: #154D57;
    border: none !important;
    border-bottom: 1px solid #e2ddd7 !important;
    padding: 0 0 12px !important;
    margin: 48px 0 16px !important;
}
.page-id-3 .entry-content h3 {
    font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    font-weight: 600;
    color: #2a2a2a;
    border: none !important;
    padding: 0 !important;
    margin: 32px 0 12px !important;
}
.page-id-3 .entry-content p { color: #5a5a5a; line-height: 1.9; margin-bottom: 16px; }
.page-id-3 .entry-content { max-width: 820px; margin: 0 auto !important; padding: 48px 24px 80px !important; }

/* ============================================================
   20. page-id-342（英語版LP）
   ============================================================ */
.page-id-342 .site-header,
.page-id-342 #site-header { display: none !important; }

.page-id-342 .entry-header,
.page-id-342 .entry-title,
.page-id-342 .page-header,
.page-id-342 .page-title,
.page-id-342 .breadcrumb,
.page-id-342 .vk-breadcrumb,
.page-id-342 #breadcrumb { display: none !important; }

.page-id-342 .footer-widget-area,
.page-id-342 .widget-area,
.page-id-342 .widget,
.page-id-342 .widget_archive,
.page-id-342 #secondary,
.page-id-342 .sidebar,
.page-id-342 .subSection,
.page-id-342 .site-footer,
.page-id-342 #site-footer,
.page-id-342 #colophon { display: none !important; }

.page-id-342 #main { width: 100% !important; max-width: 100% !important; float: none !important; }

.page-id-342 .container,
.page-id-342 .siteContent,
.page-id-342 .mainSection,
.page-id-342 .content,
.page-id-342 .wrap,
.page-id-342 .inner,
.page-id-342 .section-inner { max-width: 100% !important; width: 100% !important; padding-left: 0 !important; padding-right: 0 !important; }

.page-id-342 .entry-content,
.page-id-342 .post-contents { max-width: 100% !important; margin: 0 !important; padding: 0 !important; }

.page-id-342 .site-body,
.page-id-342 .siteContent,
.page-id-342 main { margin: 0 !important; padding: 0 !important; }

.page-id-342 nav img { max-height: 40px !important; width: auto !important; display: block !important; }
.page-id-342 .price-note { margin-top: 16px; }
.page-id-342 .jlptlp-wrap + p { display: none !important; margin: 0 !important; padding: 0 !important; }
.page-id-342 .vk-mobile-nav-menu-btn,
.page-id-342 #vk-mobile-nav-menu-btn { display: none !important; }
.page-id-342 .faq-wrap { max-width: 720px !important; margin: 0 auto !important; }

.page-id-342 h1:before,
.page-id-342 h2:before,
.page-id-342 h3:before { display: none !important; }
.page-id-342 h1,
.page-id-342 h2,
.page-id-342 h3 { border: none !important; }

/* ============================================================
   21. 英語版サブページ（363・366・368・371）
   ============================================================ */

/* ヘッダー非表示 */
.page-id-363 .site-header,
.page-id-363 #site-header,
.page-id-366 .site-header,
.page-id-366 #site-header,
.page-id-368 .site-header,
.page-id-368 #site-header,
.page-id-371 .site-header,
.page-id-371 #site-header { display: none !important; }

/* タイトル・パンくず非表示 */
.page-id-363 .entry-header,
.page-id-363 .entry-title,
.page-id-363 .page-header,
.page-id-363 .breadcrumb,
.page-id-363 .vk-breadcrumb,
.page-id-363 #breadcrumb,
.page-id-366 .entry-header,
.page-id-366 .entry-title,
.page-id-366 .page-header,
.page-id-366 .breadcrumb,
.page-id-366 .vk-breadcrumb,
.page-id-366 #breadcrumb,
.page-id-368 .entry-header,
.page-id-368 .entry-title,
.page-id-368 .page-header,
.page-id-368 .breadcrumb,
.page-id-368 .vk-breadcrumb,
.page-id-368 #breadcrumb,
.page-id-371 .entry-header,
.page-id-371 .entry-title,
.page-id-371 .page-header,
.page-id-371 .breadcrumb,
.page-id-371 .vk-breadcrumb,
.page-id-371 #breadcrumb { display: none !important; }

/* サイドバー・Lightningフッター非表示 */
.page-id-363 .footer-widget-area,
.page-id-363 .widget-area,
.page-id-363 .widget,
.page-id-363 .widget_archive,
.page-id-363 #secondary,
.page-id-363 .subSection,
.page-id-363 .site-footer,
.page-id-363 #site-footer,
.page-id-363 #colophon,
.page-id-366 .footer-widget-area,
.page-id-366 .widget-area,
.page-id-366 .widget,
.page-id-366 .widget_archive,
.page-id-366 #secondary,
.page-id-366 .subSection,
.page-id-366 .site-footer,
.page-id-366 #site-footer,
.page-id-366 #colophon,
.page-id-368 .footer-widget-area,
.page-id-368 .widget-area,
.page-id-368 .widget,
.page-id-368 .widget_archive,
.page-id-368 #secondary,
.page-id-368 .subSection,
.page-id-368 .site-footer,
.page-id-368 #site-footer,
.page-id-368 #colophon,
.page-id-371 .footer-widget-area,
.page-id-371 .widget-area,
.page-id-371 .widget,
.page-id-371 .widget_archive,
.page-id-371 #secondary,
.page-id-371 .subSection,
.page-id-371 .site-footer,
.page-id-371 #site-footer,
.page-id-371 #colophon {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
}

/* 空のwp-block-heading（余白の原因）を非表示 */
.page-id-363 .wp-block-heading:empty,
.page-id-366 .wp-block-heading:empty,
.page-id-368 .wp-block-heading:empty,
.page-id-371 .wp-block-heading:empty {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
}

/* コンテンツ・メインを全幅に */
.page-id-363 #main,
.page-id-366 #main,
.page-id-368 #main,
.page-id-371 #main {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    padding: 0 !important;
}

.page-id-363 .entry-content,
.page-id-363 .post-contents,
.page-id-366 .entry-content,
.page-id-366 .post-contents,
.page-id-368 .entry-content,
.page-id-368 .post-contents,
.page-id-371 .entry-content,
.page-id-371 .post-contents {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Lightningのcontainerを全幅に */
.page-id-363 .container,
.page-id-363 .site-body-container,
.page-id-366 .container,
.page-id-366 .site-body-container,
.page-id-368 .container,
.page-id-368 .site-body-container,
.page-id-371 .container,
.page-id-371 .site-body-container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* jlpt-common-footer直後の余白除去 */
.page-id-363 .jlpt-common-footer,
.page-id-366 .jlpt-common-footer,
.page-id-368 .jlpt-common-footer,
.page-id-371 .jlpt-common-footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* 空pタグ非表示 */
.page-id-363 .jlpt-page-wrap + p,
.page-id-363 .jlpt-common-footer + p,
.page-id-366 .jlpt-page-wrap + p,
.page-id-366 .jlpt-common-footer + p,
.page-id-368 .jlpt-page-wrap + p,
.page-id-368 .jlpt-common-footer + p,
.page-id-371 .jlpt-page-wrap + p,
.page-id-371 .jlpt-common-footer + p {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ナビ */
.page-id-363 nav img,
.page-id-366 nav img,
.page-id-368 nav img,
.page-id-371 nav img { max-height: 40px !important; width: auto !important; display: block !important; }

.page-id-363 .vk-mobile-nav-menu-btn,
.page-id-363 #vk-mobile-nav-menu-btn,
.page-id-366 .vk-mobile-nav-menu-btn,
.page-id-366 #vk-mobile-nav-menu-btn,
.page-id-368 .vk-mobile-nav-menu-btn,
.page-id-368 #vk-mobile-nav-menu-btn,
.page-id-371 .vk-mobile-nav-menu-btn,
.page-id-371 #vk-mobile-nav-menu-btn { display: none !important; }

/* ============================================================
   22. レスポンシブ
   ============================================================ */
@media (max-width: 960px) {
    #hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 60px 32px 60px; order: 2; }
    .hero-right { min-height: 100vw; order: 1; }
    .hero-right img { object-position: 72% 20%; }
    .solution-flex { grid-template-columns: 1fr; gap: 40px; }
    .authority-profile { grid-template-columns: 1fr; gap: 48px; }
    .authority-social  { grid-template-columns: 1fr; }
    .profile-img { aspect-ratio: 4 / 3; max-width: 300px; }
    .profile-tag { bottom: -12px; right: 0; }
    .offer-grid { grid-template-columns: 1fr; }
    nav { padding: 16px 24px; }
}

@media (max-width: 768px) {
    #jlpt-hamburger { display: flex; }
    #jlptMobileMenu { display: none; }
    #jlptMobileMenu.open { display: flex !important; flex-direction: column; gap: 16px; }
}

@media (max-width: 640px) {
    section { padding: 72px 20px; }
    .hero-left  { padding: 40px 20px 48px; order: 2; }
    .hero-right { min-height: 88vw; order: 1; }
    .hero-right img { object-position: 72% 10%; }
    .ba-grid { grid-template-columns: 1fr; gap: 0; }
    .ba-arrow { padding-top: 8px; padding-bottom: 8px; font-size: 0; color: var(--gold); }
    .ba-arrow::before { content: '\25BC'; font-size: 1.3rem; color: var(--gold); }
    #benefit { padding-bottom: 72px; }
    .benefit-quote { margin-bottom: 48px; }
    #authority { padding-top: 40px; }
    .authority-text p:last-of-type { margin-bottom: 0; }
    .agitate-grid { grid-template-columns: 1fr; }
    .nav-right { display: none; }
    .hamburger { display: flex; }
    .price-box { padding: 80px 24px 48px; }
    .ribbon { top: 24px; right: 50%; transform: translateX(50%); white-space: nowrap; }
    #cta-final .section-title { margin-top: 8px; }
    .profile-img { aspect-ratio: 4 / 5; max-width: 100%; }
    .profile-img img { object-position: center 0%; }
    .contact-btn-group { flex-direction: column; align-items: stretch; }
    .contact-btn-item { justify-content: center; }
    .wpcf7 { padding: 0 4px; }
    .wpcf7 input[type="submit"] { padding: 16px 24px; min-width: 0; width: 100%; }
    .tokusho-main { padding: 100px 16px 72px; }
    .tokusho-table tr { display: block; }
    .tokusho-table tbody { display: block; }
    .tokusho-table th { display: block; padding: 16px 20px 4px; background: var(--cream); border-bottom: none; white-space: normal; font-size: 0.82rem; width: 100%; border-right: none; }
    .tokusho-table td { display: block; padding: 8px 20px 18px; width: 100%; border-right: none; }
    .jlpt-footer-nav { flex-direction: column; gap: 12px; align-items: center; }
}
