/* ============================================================
   JHC Corporate — main.css  v2.0
   日本人向けデザイン：白ベース × ティール × オレンジ
   ============================================================ */

:root {
  --teal:        #0B7A75;
  --teal-dark:   #085E5A;
  --teal-mid:    #0D9490;
  --teal-light:  #E6F4F3;
  --teal-pale:   #F0F9F8;
  --orange:      #FF6B35;
  --orange-dark: #E5561F;
  --orange-light:#FFF0EB;
  --white:       #FFFFFF;
  --bg:          #F7F9FB;
  --text:        #1A2332;
  --text-mid:    #3D4F63;
  --text-soft:   #6B7A8D;
  --text-muted:  #9DAAB8;
  --border:      #E2E8EF;
  --border-l:    #EDF1F5;
  --shadow-s:    0 2px 8px rgba(11,122,117,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-m:    0 4px 20px rgba(11,122,117,.10), 0 2px 6px rgba(0,0,0,.05);
  --shadow-l:    0 12px 40px rgba(11,122,117,.14), 0 4px 12px rgba(0,0,0,.06);
  --shadow-card: 0 2px 12px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  --radius-s:    6px;
  --radius-m:    12px;
  --radius-l:    20px;
  --radius-pill: 9999px;
  --nav-h:       68px;
  --wrap:        1120px;
  --font-ja:     'Noto Sans JP', sans-serif;
  --font-en:     'Inter', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ja);
  font-weight: 300;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html.lang-en body { font-family: var(--font-en); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

/* ── Language ── */
html.lang-ja .lang-en { display: none !important; }
html.lang-en .lang-ja { display: none !important; }

/* ── Layout ── */
.l-wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 48px; }
@media (max-width: 768px) { .l-wrap { padding-inline: 20px; } }

/* ── Scroll Reveal ── */
[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-d="1"] { transition-delay: .1s; }
[data-reveal][data-d="2"] { transition-delay: .2s; }
[data-reveal][data-d="3"] { transition-delay: .3s; }
[data-reveal][data-d="4"] { transition-delay: .4s; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.t-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-en);
  font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal);
}
.t-label::before { content: ''; width: 18px; height: 2px; background: var(--teal); border-radius: 2px; flex-shrink: 0; }
.t-h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.3; color: var(--text); letter-spacing: -.01em; }
.t-h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.4; color: var(--text); }
.t-body { font-size: .93rem; color: var(--text-soft); line-height: 1.9; }

/* ── Section header utility ── */
.p-section-head { text-align: center; margin-bottom: 56px; }
.p-section-head .t-label { justify-content: center; margin-bottom: .9rem; }
.p-section-head .t-label::before { display: none; }
.p-section-head .t-h2 { margin-bottom: .75rem; }
.p-section-head .t-body { max-width: 520px; margin-inline: auto; }

/* ── Buttons ── */
.c-btn-orange {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .88rem; font-weight: 700; color: var(--white);
  background: var(--orange); padding: .85rem 2rem;
  border-radius: var(--radius-pill); border: none;
  box-shadow: 0 4px 16px rgba(255,107,53,.35);
  transition: background .2s, transform .15s, box-shadow .2s;
  letter-spacing: .02em; white-space: nowrap;
}
.c-btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,.42); }

.c-btn-teal {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .88rem; font-weight: 700; color: var(--white);
  background: var(--teal); padding: .85rem 2rem;
  border-radius: var(--radius-pill); border: none;
  box-shadow: 0 4px 16px rgba(11,122,117,.3);
  transition: background .2s, transform .15s, box-shadow .2s;
  letter-spacing: .02em; white-space: nowrap;
}
.c-btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11,122,117,.38); }

.c-btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .88rem; font-weight: 600; color: var(--teal);
  background: transparent; padding: .82rem 1.8rem;
  border-radius: var(--radius-pill); border: 2px solid var(--teal);
  transition: background .2s, color .2s; letter-spacing: .02em; white-space: nowrap;
}
.c-btn-outline:hover { background: var(--teal-light); }

/* ── Link ── */
.c-link { display: inline-flex; align-items: center; gap: .35rem; font-size: .85rem; font-weight: 600; color: var(--teal); transition: color .2s; }
.c-link:hover { color: var(--teal-dark); }
.c-link__arrow { transition: transform .2s; }
.c-link:hover .c-link__arrow { transform: translateX(4px); }

/* ── Tag ── */
.c-tag { display: inline-block; font-size: .7rem; font-weight: 500; color: var(--teal); background: var(--teal-light); padding: .25rem .75rem; border-radius: var(--radius-pill); letter-spacing: .02em; }

/* ============================================================
   HEADER
   ============================================================ */
.p-header {
  position: fixed; inset: 0 0 auto; z-index: 300;
  height: var(--nav-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-l);
  transition: box-shadow .3s, border-color .3s;
}
.p-header.is-scrolled { box-shadow: var(--shadow-m); border-bottom-color: transparent; }

.p-header__inner {
  max-width: var(--wrap); margin-inline: auto; padding-inline: 48px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}

.p-header__logo { display: flex; flex-direction: column; gap: 2px; flex-shrink: 0; }
.p-header__logo-mark { font-family: var(--font-en); font-size: .8rem; font-weight: 800; letter-spacing: .12em; color: var(--teal); line-height: 1; }
.p-header__logo-sub { font-size: .5rem; letter-spacing: .08em; color: var(--text-muted); line-height: 1; }

.p-header__nav { display: flex; align-items: center; gap: .15rem; }
.p-nav-link { font-size: .8rem; font-weight: 500; color: var(--text-mid); padding: .45rem .9rem; border-radius: var(--radius-pill); transition: color .2s, background .2s; }
.p-nav-link:hover { color: var(--teal); background: var(--teal-pale); }

.p-header__right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

.p-lang { display: flex; align-items: center; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-pill); overflow: hidden; padding: 2px; gap: 2px; }
.p-lang__btn { font-family: var(--font-en); font-size: .62rem; font-weight: 700; letter-spacing: .08em; padding: .32rem .7rem; color: var(--text-soft); background: transparent; border: none; border-radius: var(--radius-pill); transition: color .2s, background .2s; line-height: 1; }
.p-lang__btn.is-active { color: var(--white); background: var(--teal); }
.p-lang__btn:not(.is-active):hover { color: var(--teal); }

.p-header__cta { font-size: .78rem; font-weight: 700; color: var(--white); background: var(--orange); padding: .55rem 1.3rem; border-radius: var(--radius-pill); transition: background .2s, transform .15s; white-space: nowrap; box-shadow: 0 2px 8px rgba(255,107,53,.3); }
.p-header__cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

.p-header__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.p-header__burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }

.p-nav-mobile { display: none; position: fixed; inset: var(--nav-h) 0 0; z-index: 299; background: var(--white); flex-direction: column; align-items: center; justify-content: center; gap: 1.8rem; border-top: 1px solid var(--border-l); }
.p-nav-mobile.is-open { display: flex; }
.p-nav-mobile__link { font-size: 1.15rem; font-weight: 700; color: var(--text); padding: .5rem 2rem; border-radius: var(--radius-pill); transition: color .2s, background .2s; }
.p-nav-mobile__link:hover { color: var(--teal); background: var(--teal-pale); }

@media (max-width: 900px) {
  .p-header__inner { padding-inline: 20px; }
  .p-header__nav { display: none; }
  .p-header__cta { display: none; }
  .p-header__burger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.p-hero {
  padding-top: var(--nav-h); min-height: 100svh; display: flex; align-items: center;
  background: linear-gradient(160deg, #ffffff 0%, var(--teal-pale) 55%, var(--teal-light) 100%);
  position: relative; overflow: hidden;
}
.p-hero::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(11,122,117,.07) 0%, transparent 70%); right: -100px; top: -100px; pointer-events: none; }
.p-hero::after  { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(255,107,53,.06) 0%, transparent 70%); left: -80px; bottom: -80px; pointer-events: none; }

.p-hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 56px;
  padding-block: 80px 100px; width: 100%;
}
.p-hero__eyebrow { margin-bottom: 1.4rem; }
.p-hero__heading { font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 800; line-height: 1.25; color: var(--text); letter-spacing: -.02em; margin-bottom: 1.4rem; }
.p-hero__heading em { font-style: normal; color: var(--teal); }
.p-hero__sub { margin-bottom: 2.4rem; max-width: 460px; }
.p-hero__actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

.p-hero__visual { display: flex; align-items: center; justify-content: center; }
.p-hero__illus { width: 100%; max-width: 440px; aspect-ratio: 1; background: var(--white); border-radius: var(--radius-l); box-shadow: var(--shadow-l); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; border: 1px solid var(--border-l); }
.p-hero__illus svg { width: 68%; height: auto; }
.p-hero__illus-label { font-family: var(--font-en); font-size: .55rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); }

@media (max-width: 860px) {
  .p-hero__inner { grid-template-columns: 1fr; padding-block: 60px; gap: 3rem; }
  .p-hero__visual { display: none; }
  .p-hero__sub { max-width: 100%; }
}

/* ============================================================
   MISSION
   ============================================================ */
.p-mission { background: var(--teal); padding: 100px 0; position: relative; overflow: hidden; }
.p-mission::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.05); right: -100px; top: -100px; pointer-events: none; }
.p-mission__inner { max-width: 760px; margin-inline: auto; text-align: center; }
.p-mission .t-label { color: rgba(255,255,255,.7); justify-content: center; margin-bottom: 1.5rem; }
.p-mission .t-label::before { background: rgba(255,255,255,.5); }
.p-mission__statement { font-size: clamp(1.6rem, 3.2vw, 2.5rem); font-weight: 800; line-height: 1.4; color: var(--white); letter-spacing: -.01em; margin-bottom: 1.6rem; }
.p-mission__body { font-size: .95rem; color: rgba(255,255,255,.82); line-height: 1.95; max-width: 580px; margin-inline: auto; }
@media (max-width: 768px) { .p-mission { padding: 72px 24px; } }

/* ============================================================
   SERVICE
   ============================================================ */
.p-service { background: var(--white); padding: 100px 0; }
.p-service__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.p-service__card {
  background: var(--white); border: 1px solid var(--border-l); border-radius: var(--radius-l);
  padding: 40px 32px 36px; display: flex; flex-direction: column; gap: 1rem;
  box-shadow: var(--shadow-card); transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative; overflow: hidden;
}
.p-service__card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--teal), var(--teal-mid)); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.p-service__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-l); border-color: var(--teal-light); }
.p-service__card:hover::before { transform: scaleX(1); }

.p-service__icon { width: 56px; height: 56px; background: var(--teal-light); border-radius: var(--radius-m); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; transition: background .25s; }
.p-service__card:hover .p-service__icon { background: var(--teal-pale); }
.p-service__num { font-family: var(--font-en); font-size: .6rem; font-weight: 400; letter-spacing: .14em; color: var(--text-muted); display: block; }
.p-service__card .t-label { font-size: .58rem; margin-top: .2rem; }
.p-service__card .t-label::before { display: none; }
.p-service__card .t-h3 { margin-bottom: .2rem; }
.p-service__card .t-body { flex: 1; font-size: .85rem; }
.p-service__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .2rem; }
.p-service__footer { margin-top: .5rem; padding-top: 1rem; border-top: 1px solid var(--border-l); }

@media (max-width: 900px) { .p-service { padding: 80px 0; } .p-service__grid { grid-template-columns: 1fr; gap: 16px; } }
@media (min-width: 601px) and (max-width: 900px) { .p-service__grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   NEWS
   ============================================================ */
.p-news { background: var(--bg); padding: 100px 0; }
.p-news__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 32px; flex-wrap: wrap; }
.p-news__list { display: flex; flex-direction: column; gap: 0; background: var(--white); border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--border-l); }
.p-news__item { display: grid; grid-template-columns: 110px 88px 1fr 36px; align-items: center; gap: .75rem 1rem; padding: 1.4rem 1.8rem; border-bottom: 1px solid var(--border-l); transition: background .2s; }
.p-news__item:last-child { border-bottom: none; }
.p-news__item:hover { background: var(--teal-pale); }
.p-news__date { font-family: var(--font-en); font-size: .7rem; font-weight: 500; color: var(--text-muted); letter-spacing: .04em; white-space: nowrap; }
.p-news__cat { display: inline-block; font-size: .65rem; font-weight: 700; color: var(--teal); background: var(--teal-light); padding: .22rem .7rem; border-radius: var(--radius-pill); white-space: nowrap; letter-spacing: .02em; }
.p-news__title { font-size: .88rem; font-weight: 500; color: var(--text); line-height: 1.55; }
.p-news__arrow { width: 32px; height: 32px; border-radius: 50%; background: var(--border-l); display: flex; align-items: center; justify-content: center; font-size: .9rem; color: var(--text-soft); transition: background .2s, color .2s, transform .2s; flex-shrink: 0; }
.p-news__item:hover .p-news__arrow { background: var(--teal); color: var(--white); transform: translateX(3px); }
.p-news__empty { padding: 3rem; text-align: center; color: var(--text-muted); }

@media (max-width: 768px) {
  .p-news { padding: 72px 0; }
  .p-news__item { grid-template-columns: 1fr auto; grid-template-rows: auto auto; gap: .4rem .6rem; padding: 1.1rem 1.2rem; }
  .p-news__title { grid-column: span 2; }
  .p-news__arrow { display: none; }
}

/* ============================================================
   COMPANY
   ============================================================ */
.p-company { background: var(--white); padding: 100px 0; }
.p-company__head { margin-bottom: 48px; }
.p-company__head .t-label { margin-bottom: .8rem; }
.p-company__table-wrap { background: var(--white); border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--border-l); }
.p-company__table { width: 100%; border-collapse: collapse; }
.p-company__table tr { border-bottom: 1px solid var(--border-l); }
.p-company__table tr:last-child { border-bottom: none; }
.p-company__table tr:hover td { background: var(--teal-pale); }
.p-company__table tr:hover th { background: var(--teal-dark); }
.p-company__table th { width: 180px; font-size: .75rem; font-weight: 700; letter-spacing: .04em; color: var(--white); background: var(--teal); padding: 1.2rem 1.4rem 1.2rem 2rem; vertical-align: top; white-space: nowrap; text-align: left; transition: background .2s; }
.p-company__table td { padding: 1.2rem 1.8rem; font-size: .88rem; color: var(--text); line-height: 1.85; vertical-align: top; background: var(--white); transition: background .2s; }
.p-company__biz { display: flex; flex-direction: column; gap: .25rem; }
.p-company__biz li { font-weight: 400; padding: .05rem 0; }
.p-company__biz--sub { margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--border-l); }
.p-company__biz--sub li { font-size: .78rem; color: var(--text-soft); display: flex; align-items: baseline; gap: .45rem; }
.p-company__biz--sub li::before { content: '–'; color: var(--text-muted); flex-shrink: 0; }

@media (max-width: 768px) {
  .p-company { padding: 72px 0; }
  .p-company__table, .p-company__table tbody, .p-company__table tr, .p-company__table th, .p-company__table td { display: block; width: 100%; }
  .p-company__table th { width: 100%; padding: .85rem 1.2rem .5rem; white-space: normal; }
  .p-company__table td { padding: .5rem 1.2rem 1.1rem; }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.p-cta { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.p-cta::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.05); right: -100px; bottom: -150px; pointer-events: none; }
.p-cta__inner { position: relative; z-index: 1; }
.p-cta .t-label { color: rgba(255,255,255,.7); justify-content: center; margin-bottom: 1.2rem; }
.p-cta .t-label::before { background: rgba(255,255,255,.5); }
.p-cta__heading { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; color: var(--white); line-height: 1.3; letter-spacing: -.01em; margin-bottom: 1.2rem; }
.p-cta__sub { font-size: .95rem; color: rgba(255,255,255,.82); line-height: 1.9; max-width: 480px; margin-inline: auto; margin-bottom: 2.4rem; }
@media (max-width: 768px) { .p-cta { padding: 72px 0; } }

/* ============================================================
   FOOTER
   ============================================================ */
.p-footer { background: var(--text); padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.p-footer__logo { font-family: var(--font-en); font-size: .65rem; font-weight: 700; letter-spacing: .12em; color: rgba(255,255,255,.5); }
.p-footer__nav { display: flex; gap: 1.8rem; }
.p-footer__nav a { font-size: .75rem; font-weight: 500; color: rgba(255,255,255,.55); transition: color .2s; }
.p-footer__nav a:hover { color: rgba(255,255,255,.9); }
.p-footer__copy { font-size: .65rem; color: rgba(255,255,255,.3); letter-spacing: .04em; }
@media (max-width: 768px) { .p-footer { padding: 32px 20px; flex-direction: column; align-items: flex-start; gap: 1rem; } .p-footer__nav { display: none; } }

/* ============================================================
   INNER PAGES
   ============================================================ */
.p-inner-page { padding-top: var(--nav-h); }

.p-page-hero { background: linear-gradient(160deg, var(--white) 0%, var(--teal-pale) 100%); padding: 72px 0 60px; border-bottom: 1px solid var(--border-l); }
.p-page-hero .t-label { margin-bottom: .9rem; }
.p-page-hero__title { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.2; color: var(--text); margin-top: .4rem; }
.p-page-hero__lead { margin-top: 1rem; max-width: 600px; }
.p-page-hero__updated { margin-top: .6rem; font-size: .82rem; color: var(--text-muted); }

/* Post */
.p-post { padding: 56px 0 100px; }
.p-post__meta { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.p-post__date { font-family: var(--font-en); font-size: .72rem; font-weight: 500; color: var(--text-muted); letter-spacing: .06em; }
.p-post__cat { display: inline-block; font-size: .65rem; font-weight: 700; color: var(--teal); background: var(--teal-light); padding: .22rem .7rem; border-radius: var(--radius-pill); }
.p-post__title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--text); letter-spacing: -.02em; line-height: 1.35; margin-bottom: 2.4rem; }
.p-post__body { font-size: .92rem; color: var(--text-mid); line-height: 2; max-width: 720px; }
.p-post__body p { margin-bottom: 1.2rem; }
.p-post__back { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border-l); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.p-contact-body { padding: 72px 0 120px; }
.p-contact-layout { display: grid; grid-template-columns: 1fr 280px; gap: 64px; align-items: start; }

.p-form { background: var(--white); border-radius: var(--radius-l); padding: 40px; box-shadow: var(--shadow-card); border: 1px solid var(--border-l); display: flex; flex-direction: column; gap: 1.4rem; }
.p-form__row { display: flex; flex-direction: column; gap: .45rem; }
.p-form__label { font-size: .78rem; font-weight: 700; color: var(--text-mid); letter-spacing: .02em; }
.p-form__req { color: var(--orange); margin-left: .2rem; }
.p-form__input, .p-form__select, .p-form__textarea { width: 100%; font-family: var(--font-ja); font-size: .9rem; font-weight: 300; color: var(--text); background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-s); padding: .75rem 1rem; outline: none; appearance: none; transition: border-color .2s, box-shadow .2s, background .2s; line-height: 1.6; }
html.lang-en .p-form__input, html.lang-en .p-form__select, html.lang-en .p-form__textarea { font-family: var(--font-en); }
.p-form__input:focus, .p-form__select:focus, .p-form__textarea:focus { border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 3px rgba(11,122,117,.12); }
.p-form__textarea { resize: vertical; min-height: 130px; }
.p-form__row--check { flex-direction: row; align-items: flex-start; }
.p-form__check-label { display: flex; align-items: flex-start; gap: .6rem; font-size: .83rem; color: var(--text-soft); line-height: 1.65; cursor: pointer; }
.p-form__check-label input[type="checkbox"] { margin-top: .22rem; accent-color: var(--teal); flex-shrink: 0; width: 16px; height: 16px; }
.p-form__check-label a { color: var(--teal); text-decoration: underline; }
.p-form__submit { margin-top: .4rem; }

.p-form-notice { padding: 1rem 1.4rem; font-size: .87rem; border-radius: var(--radius-m); line-height: 1.7; margin-bottom: 1rem; }
.p-form-notice--ok { background: #EEF9EE; border: 1px solid #B3DEB3; color: #2E6B2E; }
.p-form-notice--err { background: #FFF0EE; border: 1px solid #FFBDB3; color: #8B2E2E; }

.p-contact-info { position: sticky; top: calc(var(--nav-h) + 32px); }
.p-contact-info__block { background: var(--white); border-radius: var(--radius-m); padding: 1.5rem 1.6rem; margin-bottom: 16px; box-shadow: var(--shadow-card); border: 1px solid var(--border-l); }
.p-contact-info__block .t-label { font-size: .62rem; margin-bottom: .6rem; }
.p-contact-info__value { font-size: .87rem; color: var(--text-mid); line-height: 1.8; }

@media (max-width: 860px) {
  .p-contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .p-contact-info { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .p-contact-info__block { margin-bottom: 0; }
  .p-form { padding: 28px 24px; }
}
@media (max-width: 480px) { .p-contact-info { grid-template-columns: 1fr; } }

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.p-policy { padding: 72px 0 120px; }
.p-policy__body { max-width: 740px; }
.p-policy__sec { margin-bottom: 3rem; }
.p-policy__h2 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; padding: .75rem 1rem .75rem 1.2rem; background: var(--teal-pale); border-left: 4px solid var(--teal); border-radius: 0 var(--radius-s) var(--radius-s) 0; }
.p-policy__sec p { font-size: .9rem; color: var(--text-soft); line-height: 1.9; }
.p-policy__list { margin-top: .6rem; margin-left: .8rem; display: flex; flex-direction: column; gap: .4rem; }
.p-policy__list li { font-size: .88rem; color: var(--text-soft); line-height: 1.75; display: flex; align-items: baseline; gap: .5rem; }
.p-policy__list li::before { content: '▸'; color: var(--teal); font-size: .65rem; flex-shrink: 0; }
.p-policy__contact { margin-top: 1rem; padding: 1.4rem 1.6rem; background: var(--teal-pale); border: 1px solid var(--teal-light); border-radius: var(--radius-m); font-size: .87rem; color: var(--text-mid); line-height: 1.85; }
.p-policy__contact a { color: var(--teal); text-decoration: underline; }

/* ============================================================
   SITEMAP PAGE
   ============================================================ */
.p-sitemap { padding: 72px 0 120px; }
.p-sitemap__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.p-sitemap__col { background: var(--white); border-radius: var(--radius-l); padding: 36px 28px; box-shadow: var(--shadow-card); border: 1px solid var(--border-l); }
.p-sitemap__col-head { font-size: .8rem; font-weight: 700; color: var(--white); background: var(--teal); margin: -36px -28px 1.6rem; padding: 1rem 1.4rem; border-radius: var(--radius-l) var(--radius-l) 0 0; letter-spacing: .04em; }
.p-sitemap__list { display: flex; flex-direction: column; gap: .8rem; }
.p-sitemap__list .c-link { font-size: .85rem; }
.p-sitemap__date { font-family: var(--font-en); font-size: .65rem; color: var(--text-muted); margin-right: .4rem; }
@media (max-width: 768px) { .p-sitemap__grid { grid-template-columns: 1fr; } }

/* ============================================================
   ARCHIVE PAGE
   ============================================================ */
.p-archive { padding: 0 0 100px; }
.p-pagination { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border-l); }
.p-pagination .nav-links { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.p-pagination .page-numbers { font-size: .78rem; font-weight: 600; color: var(--text-soft); padding: .5rem .85rem; border-radius: var(--radius-pill); border: 1.5px solid var(--border); transition: all .2s; }
.p-pagination .page-numbers:hover, .p-pagination .page-numbers.current { color: var(--white); background: var(--teal); border-color: var(--teal); }
.p-archive__empty { padding: 64px 0; text-align: center; color: var(--text-muted); }

/* ============================================================
   404 PAGE
   ============================================================ */
.p-404 { min-height: 65vh; display: flex; align-items: center; }
.p-404__inner { padding: 80px 0 100px; max-width: 600px; }
.p-404__title { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800; color: var(--text); letter-spacing: -.025em; line-height: 1.15; margin: 1rem 0 1.4rem; }
.p-404__body { margin-bottom: 2.4rem; }
