/* ══ Reset & Tokens ══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --sky: #0EA5E9; --sky-deep: #0369A1; --sky-light: #BAE6FD; --sky-pale: #F0F9FF;
  --azure: #38BDF8; --white: #fff; --cream: #F8FAFC; --warm: #F1F5F9;
  --border: #CBD5E1; --text: #1E293B; --muted: #64748B;
  --gold: #F59E0B; --gold2: #FCD34D;
  --green: #10B981; --ltgreen: #D1FAE5;
  --red: #EF4444; --ltred: #FEE2E2;
  --serif: 'Noto Serif JP', serif; --sans: 'Noto Sans JP', sans-serif;
  --shadow: 0 4px 20px rgba(14,165,233,.08); --shadow2: 0 10px 32px rgba(14,165,233,.16);
  --r: 8px; --r2: 16px;
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--sky-pale); }
::-webkit-scrollbar-thumb { background: var(--sky); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--sky-deep); }
html { scrollbar-color: var(--sky) var(--sky-pale); scrollbar-width: thin; scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--sans); color: var(--text); background: var(--cream); line-height: 1.75; overflow-x: hidden; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s, opacity .2s, transform .2s; }
img { max-width: 100%; display: block; height: auto; }

/* ══ 全体レイアウト（1150px 2カラム構造） ══ */
.layout-wrapper { display: flex; max-width: 1150px; margin: 0 auto; padding: 0 20px; gap: 50px; position: relative; }
.main-content-area { flex: 1; max-width: 860px; min-width: 0; padding: 40px 0; }

/* ══ HEADER ══ */
header { background: #29B6F6; width: 100%; z-index: 200; box-shadow: 0 2px 12px rgba(41,182,246,.35); position: relative; }
.hd-top { display: flex; align-items: center; justify-content: space-between; padding: 10px 20px; gap: 12px; min-height: 70px; max-width: 1150px; margin: 0 auto; }
.hd-logo { display: flex; align-items: center; gap: 10px; min-width: 0; flex: 1; }
.hd-logo-img { height: 38px; width: auto; object-fit: contain; flex-shrink: 0; }
.hd-logo-fb { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.2); border: 2px solid rgba(255,255,255,.5); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: .95rem; font-weight: 900; color: #fff; flex-shrink: 0; }
.hd-text { min-width: 0; flex-shrink: 1; }
.hd-name { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: #fff; letter-spacing: .02em; white-space: nowrap; overflow: hidden; text-overflow: clip; }
.hd-role { font-size: .65rem; color: rgba(255,255,255,.75); letter-spacing: .05em; white-space: nowrap; }
.hd-sns { display: flex; gap: 7px; align-items: center; flex-shrink: 0; }
.sns-link { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 7px; transition: transform .2s, opacity .2s; flex-shrink: 0; }
.sns-link:hover { transform: translateY(-2px); opacity: .85; }
.sns-link svg { display: block; }
.hd-ham { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; background: #29B6F6; border: 2px solid rgba(255,255,255,.5); border-radius: var(--r); cursor: pointer; padding: 9px; flex-shrink: 0; z-index: 500; }
.hd-ham span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.hd-ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hd-ham.open span:nth-child(2) { opacity: 0; }
.hd-ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══ LEFT FIX NAVIGATION ══ */
.hd-nav { width: 200px; flex-shrink: 0; position: sticky; top: 40px; height: calc(100vh - 80px); padding: 10px 0; border-right: none; background: transparent; }
.hd-nav ul { display: flex; flex-direction: column; list-style: none; gap: 4px; padding: 0; margin: 0; }
.hd-nav a { display: block; padding: 11px 16px; font-size: .88rem; font-weight: 600; color: var(--text); letter-spacing: .04em; transition: all .2s; white-space: nowrap; border-radius: var(--r); border-left: 3px solid transparent; }
.hd-nav a:hover, .hd-nav li.active a { background: var(--sky-pale); color: var(--sky-deep); border-left-color: var(--sky); }

/* ══ HERO ══ */
.hero { position: relative; overflow: hidden; background: #0EA5E9; display: flex; align-items: center; height: 330px; justify-content: center; width: 100%; }
.hero-bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: 76% center; }
.hero-ov { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(0,40,90,0.4) 0%, rgba(0,40,90,0.08) 60%, rgba(0,0,0,0) 90%); transition: opacity .4s; }
.hero-ct { position: relative; z-index: 2; width: 100%; max-width: 1150px; padding: 0 20px; margin: 0 auto; text-align: left; display: flex; flex-direction: column; align-items: flex-start; box-sizing: border-box; }
.hero-ey { display: inline-block; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.45); color: #fff; border-radius: 99px; letter-spacing: .08em; backdrop-filter: blur(4px); box-shadow: 0 2px 10px rgba(0,0,0,0.1); text-shadow: 0 1px 3px rgba(0,0,0,0.3); font-size: .78rem; padding: 6px 18px; margin-bottom: 12px; }
.hero-catch { font-family: var(--serif); font-weight: 900; color: #fff; text-shadow: 0 2px 10px rgba(0,30,80,0.6); font-size: 2.9rem; line-height: 1.35; margin-bottom: 14px; max-width: 680px; white-space: nowrap; }
.hero-name { display: block; margin: 8px 0 15px; line-height: 1.1; }
.hero-name-sei, .hero-name-mei { display: inline-block; font-weight: 900; color: #fff; letter-spacing: .02em; text-shadow: 0 3px 12px rgba(0,0,0,.55), 0 1px 4px rgba(0,0,0,.6); font-family: var(--sans) !important; vertical-align: bottom; }
.hero-name-sei { font-size: clamp(3.8rem, 6.2vw, 5.4rem) !important; margin-right: 0 !important; }
.hero-name-mei { font-size: clamp(2.4rem, 3.8vw, 3.4rem) !important; }
.hero-sub { color: #fff; text-shadow: 0 2px 8px rgba(0,30,80,0.6); margin-bottom: 0; font-size: 1.0rem; line-height: 1.8; max-width: 600px; margin-top: 15px !important; }

/* ══ カテゴリナビ ══ */
.cat-nav { background: #fff; border-bottom: 3px solid var(--sky); box-shadow: 0 2px 8px rgba(14,165,233,.08); }
.cat-nav-inner { display: grid; grid-template-columns: repeat(4,1fr); max-width: 800px; margin: 0 auto; }
.cat-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 15px 8px; font-size: .78rem; font-weight: 700; color: var(--sky-deep); cursor: pointer; transition: all .2s; border-right: 1px solid var(--border); border-bottom: 3px solid transparent; text-align: center; }
.cat-btn:last-child { border-right: none; }
.cat-btn:hover, .cat-btn.active { background: var(--sky-pale); color: var(--sky); border-bottom-color: var(--sky); }
.cat-btn .ico { font-size: 1.6rem; line-height: 1; }
.cat-btn .url { font-size: .6rem; font-weight: 400; color: var(--muted); font-family: monospace; }
.cat-sel-wrap { display: none; padding: 12px 16px; background: #fff; border-bottom: 3px solid var(--sky); }
.cat-select { width: 100%; padding: 10px 14px; font-size: .88rem; font-family: var(--sans); font-weight: 600; color: var(--sky-deep); background: #fff; border: 2px solid var(--sky); border-radius: var(--r); outline: none; cursor: pointer; }

/* ══ セクション共通 ══ */
section { padding: 48px 0; border-bottom: 1px solid rgba(203,213,225,0.4); }
section:last-of-type { border-bottom: none; }
.sec-label { display: block; font-size: .68rem; letter-spacing: .22em; font-weight: 700; color: var(--sky); text-transform: uppercase; margin-bottom: 8px; }
.sec-title { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; color: var(--sky-deep); line-height: 1.4; margin-bottom: 8px; }
.sec-div { width: 40px; height: 3px; background: linear-gradient(90deg,var(--sky),var(--azure)); border-radius: 2px; margin: 10px 0 16px; }
.sec-desc { font-size: .88rem; color: var(--muted); line-height: 1.85; max-width: 680px; }
.sec-head { margin-bottom: 36px; }

/* ══ LATEST ══ */
.latest { background: transparent; }
.act-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.act-card { border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; transition: all .25s; background: #fff; }
.act-card:hover { transform: translateY(-4px); box-shadow: var(--shadow2); border-color: var(--sky); }
.act-thumb { height: 130px; position: relative; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; background: linear-gradient(135deg,var(--sky-deep),var(--sky)); }
.act-badge { position: absolute; top: 8px; left: 8px; background: rgba(0,0,0,.55); color: #fff; font-size: .63rem; font-weight: 700; padding: 2px 8px; border-radius: 3px; }
.act-body { padding: 14px 16px; }
.tag { display: inline-block; font-size: .63rem; font-weight: 700; padding: 2px 8px; border-radius: 3px; margin-bottom: 8px; letter-spacing: .04em; }
.t-dis { background: var(--ltred); color: var(--red); }
.t-lif { background: var(--sky-pale); color: var(--sky-deep); }
.t-fut { background: var(--ltgreen); color: #065F46; }
.t-cou { background: #FEF3C7; color: #92400E; }
.act-title { font-family: var(--serif); font-size: .93rem; font-weight: 700; color: var(--sky-deep); line-height: 1.5; margin-bottom: 6px; }
.act-lead { font-size: .78rem; color: #555; line-height: 1.75; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.act-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; padding-top: 8px; border-top: 1px solid var(--border); }
.act-chars { font-size: .63rem; color: var(--muted); }
.act-more { font-size: .72rem; font-weight: 700; color: var(--sky); }

/* ══ カテゴリコンテンツ ══ */
.cat-content { background: transparent; }
.cat-panel { display: none; }
.cat-panel.active { display: block; }
.cat-bar { background: linear-gradient(135deg,var(--sky-deep),var(--sky)); padding: 18px 0 14px; margin-bottom: 24px; }
.cat-bar-in { display: flex; align-items: center; gap: 14px; }
.cat-bar-ico { font-size: 2rem; }
.cat-bar-title { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; color: #fff; }
.cat-bar-url { font-size: .68rem; color: rgba(255,255,255,.6); font-family: monospace; margin-top: 2px; }
.cat-bar-desc { font-size: .8rem; color: rgba(255,255,255,.82); margin-top: 4px; line-height: 1.7; }
.art-list { display: flex; flex-direction: column; gap: 12px; }
.art-item { display: grid; grid-template-columns: 52px 1fr 76px; gap: 12px; align-items: start; background: #fff; border: 1px solid var(--border); border-radius: var(--r2); padding: 15px 18px; transition: all .2s; }
.art-item:hover { border-color: var(--sky); box-shadow: var(--shadow); }
.art-num { font-family: var(--serif); font-size: 1.7rem; font-weight: 900; color: var(--sky-light); line-height: 1; }
.art-h { font-family: var(--serif); font-size: .93rem; font-weight: 700; color: var(--sky-deep); margin-bottom: 4px; line-height: 1.45; }
.art-body { font-size: .78rem; color: #555; line-height: 1.75; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.art-date { font-size: .68rem; color: var(--muted); text-align: right; white-space: nowrap; padding-top: 2px; }

/* ══ MESSAGE ══ */
.message { background: linear-gradient(135deg,var(--sky-deep),#0284C7,var(--sky)); color: #fff; border: 1px solid rgba(255,255,255,.1); border-radius: var(--r2); padding: 36px; box-shadow: var(--shadow); margin-bottom: 20px; }
.msg-in { display: block; padding: 0; box-sizing: border-box; }
.msg-label { font-size: .68rem; letter-spacing: .2em; color: var(--gold2); font-weight: 700; margin-bottom: 10px; }
.msg-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: #fff; line-height: 1.5; margin-bottom: 18px; }
.msg-body { font-size: 1rem; color: rgba(255,255,255,.92); line-height: 2.05; text-align: justify; }
.msg-sig { margin-top: 22px; font-family: var(--serif); font-size: .95rem; font-weight: 700; color: var(--gold2); text-align: right; }
.msg-card { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--r2); padding: 22px; text-align: center; }
.msg-card-ico { font-size: 3rem; margin-bottom: 10px; }
.msg-card-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 900; color: #fff; margin-bottom: 2px; }
.msg-card-yomi { font-size: .72rem; color: rgba(255,255,255,.55); letter-spacing: .1em; margin-bottom: 14px; }
.msg-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.12); border-radius: var(--r); overflow: hidden; }
.ms { background: rgba(2,132,199,.35); padding: 11px 6px; text-align: center; }
.ms-n { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--gold2); }
.ms-l { font-size: .58rem; color: rgba(255,255,255,.5); margin-top: 2px; line-height: 1.4; }

/* ══ ORIGIN ══ */
.origin { background: linear-gradient(135deg,#0C1445,#1A2B6B,#0F3460); color: #fff; border-radius: var(--r2); padding: 36px; box-shadow: var(--shadow); margin-bottom: 20px; }
.org-in { display: block; }
.org-label { font-size: .68rem; letter-spacing: .2em; color: var(--azure); font-weight: 700; margin-bottom: 10px; }
.org-date { display: inline-block; background: rgba(56,189,248,.12); border: 1px solid rgba(56,189,248,.35); color: var(--azure); font-size: .72rem; font-weight: 700; padding: 4px 14px; border-radius: 3px; margin-bottom: 14px; letter-spacing: .06em; }
.org-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: #fff; line-height: 1.45; margin-bottom: 18px; }
.org-body { font-size: .87rem; color: rgba(255,255,255,.88); line-height: 2.05; text-align: justify; }
.org-card { background: rgba(56,189,248,.08); border: 1px solid rgba(56,189,248,.25); border-radius: var(--r2); padding: 24px; text-align: center; }
.org-card-ico { font-size: 2.5rem; margin-bottom: 12px; }
.org-card-title { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--azure); margin-bottom: 10px; }
.org-card-body { font-size: .78rem; color: rgba(255,255,255,.68); line-height: 1.9; }

/* ══ POLICY ══ */
.policy { background: transparent; }
.pol-tabs { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 30px; }
.pol-tab { flex: 1; padding: 12px 8px; text-align: center; font-size: .8rem; font-weight: 700; color: var(--muted); cursor: pointer; border-bottom: 3px solid transparent; transition: all .2s; margin-bottom: -2px; }
.pol-tab.active, .pol-tab:hover { color: var(--sky); border-bottom-color: var(--sky); background: var(--sky-pale); }
.pol-panel { display: none; }
.pol-panel.active { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; border-radius: var(--r2); overflow: hidden; }
.pol-col { padding: 22px 18px; background: var(--warm); }
.pol-col.c3 { background: var(--sky-pale); border-left: 3px solid var(--sky); }
.pol-lbl { font-size: .63rem; letter-spacing: .14em; font-weight: 700; color: var(--sky); text-transform: uppercase; margin-bottom: 7px; }
.pol-col h3 { font-family: var(--serif); font-size: .92rem; font-weight: 700; color: var(--sky-deep); margin-bottom: 9px; line-height: 1.45; }
.pol-col p, .pol-col li { font-size: .78rem; color: #444; line-height: 1.9; }
.pol-col ul { padding-left: 1em; }

/* ══ PROFILE ══ */
.profile { background: transparent; }
.prof-grid { display: grid; grid-template-columns: 210px 1fr; gap: 48px; align-items: start; }
.prof-left { text-align: center; }
.prof-icon { width: 160px; height: 160px; border-radius: 50%; background: linear-gradient(135deg,var(--sky-deep),var(--azure)); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 3.2rem; font-weight: 900; color: #fff; margin: 0 auto 14px; box-shadow: var(--shadow2); }
.prof-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--sky-deep); }
.prof-yomi { font-size: .72rem; color: var(--muted); letter-spacing: .1em; margin: 2px 0 10px; }
.prof-badge { display: inline-block; background: linear-gradient(135deg,var(--sky-deep),var(--sky)); color: #fff; font-size: .68rem; font-weight: 700; padding: 3px 12px; border-radius: 3px; letter-spacing: .06em; }
.prof-hobby { margin-top: 14px; font-size: .78rem; color: #555; line-height: 1.9; }
.prof-motto { margin-top: 12px; font-family: var(--serif); font-size: .85rem; font-weight: 700; color: var(--sky-deep); border-left: 3px solid var(--gold); padding-left: 10px; line-height: 1.55; }
.data-tbl { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; box-shadow: var(--shadow); }
.drow { display: grid; grid-template-columns: 120px 1fr; border-bottom: 1px solid var(--border); }
.drow:first-child { border-top: none; }
.drow:last-child { border-bottom: none; }
.dlbl { background: var(--warm); padding: 12px 14px; font-size: .8rem; font-weight: 700; color: var(--sky-deep); display: flex; align-items: center; }
.dval { padding: 12px 16px; font-size: .88rem; color: var(--text); line-height: 1.75; }
.timeline { margin-top: 22px; border-left: 3px solid var(--sky-light); padding-left: 18px; display: flex; flex-direction: column; gap: 12px; }
.tl { display: grid; grid-template-columns: 70px 1fr; gap: 8px; }
.tl-y { font-family: var(--serif); font-size: .8rem; font-weight: 700; color: var(--sky); }
.tl-d { font-size: .78rem; color: #444; line-height: 1.65; }
.prof-info-grid { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.prof-photo-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r2); padding: 24px; text-align: center; box-shadow: var(--shadow); }
.prof-photo-card img { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; border: 4px solid var(--sky-light); box-shadow: var(--shadow2); display: block; margin: 0 auto 12px; }
.prof-name-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--sky-deep); }
.prof-role-title { font-size: .72rem; color: var(--muted); letter-spacing: .06em; margin: 3px 0 10px; }
.prof-tag-title { background: linear-gradient(135deg,var(--sky-deep),var(--sky)); color: #fff; font-size: .68rem; font-weight: 700; padding: 4px 12px; border-radius: 3px; display: inline-block; }

/* ══ ACHIEVEMENTS ══ */
.achievements { background: transparent; }
.ach-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.ach-card { border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; }
.ach-head { background: linear-gradient(135deg,var(--sky-deep),var(--sky)); padding: 12px 15px; }
.ach-hd { font-size: .63rem; color: rgba(255,255,255,.65); margin-bottom: 2px; }
.ach-ht { font-family: var(--serif); font-size: .88rem; font-weight: 700; color: #fff; line-height: 1.4; }
.ach-body { padding: 13px 15px; font-size: .78rem; color: #444; line-height: 1.8; }
.ach-tag { display: inline-block; background: var(--ltgreen); color: #065F46; font-size: .63rem; font-weight: 700; padding: 2px 8px; border-radius: 3px; margin-top: 8px; }

/* ══ FAQ ══ */
.faq { background: transparent; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.faq-q { display: flex; align-items: center; gap: 12px; padding: 13px 16px; cursor: pointer; transition: background .2s; }
.faq-q:hover { background: var(--sky-pale); }
.faq-qm { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg,var(--sky-deep),var(--sky)); color: #fff; font-family: var(--serif); font-size: .82rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.faq-qt { font-weight: 700; font-size: .86rem; color: var(--sky-deep); flex: 1; }
.faq-tg { font-size: .9rem; color: var(--muted); transition: transform .3s; flex-shrink: 0; }
.faq-a { display: none; padding: 0 16px 14px 54px; font-size: .82rem; color: #444; line-height: 1.85; text-align: justify; border-top: 1px dashed var(--sky-light); padding-top: 12px; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-tg { transform: rotate(45deg); color: var(--sky); }

/* ══ PRIVACY POLICY アコーディオン ══ */
.privacy { background: transparent; }
.pp-accordion { display: flex; flex-direction: column; gap: 10px; }
.pp-item { border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.pp-item:last-child { border-bottom: 1px solid var(--border); }
.pp-q { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; cursor: pointer; background: #fff; transition: background .2s; gap: 12px; }
.pp-q:hover { background: var(--sky-pale); }
.pp-q-text { font-weight: 700; font-size: .88rem; color: var(--sky-deep); }
.pp-tg { font-size: .9rem; color: var(--muted); transition: transform .3s; flex-shrink: 0; }
.pp-a { display: none; padding: 0 18px 16px; font-size: .82rem; color: #444; line-height: 1.9; text-align: justify; border-top: 1px dashed var(--sky-light); padding-top: 12px; }
.pp-a p { margin-bottom: 10px; }
.pp-a p:last-child { margin-bottom: 0; }
.pp-item.open .pp-a { display: block; }
.pp-item.open .pp-tg { transform: rotate(45deg); color: var(--sky); }

/* ══ CONTACT ══ */
.contact { background: transparent; }
.contact-grid { display: flex; flex-direction: column; gap: 14px; }
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r2); padding: 22px 20px; box-shadow: var(--shadow); }
.contact-card-label { font-size: .72rem; font-weight: 700; color: var(--sky); letter-spacing: .06em; margin-bottom: 14px; display: flex; align-items: center; gap: 5px; }
.contact-card-body { font-size: .88rem; color: var(--text); line-height: 1.9; }
.contact-tel { font-size: 1.5rem; font-weight: 700; color: var(--gold); display: block; letter-spacing: .02em; line-height: 1.3; }
.contact-mail { font-size: .88rem; color: var(--sky); display: block; margin-bottom: 14px; word-break: break-all; font-weight: 600; }
.contact-sns { display: flex; gap: 8px; flex-wrap: wrap; }
.contact-sns-btn { font-size: .78rem; font-weight: 700; padding: 6px 14px; border-radius: 4px; color: #fff; text-decoration: none; transition: opacity .2s; }
.contact-sns-btn:hover { opacity: .85; }
.contact-sns-fb { background: #1877F2; }
.contact-sns-x { background: #000; }

/* ══ FOOTER ══ */
footer { background: #013754; color: rgba(255,255,255,.72); padding: 32px 0; border: none; width: 100%; position: relative; margin-top: 40px; }
.ft-grid { display: block; margin: 0; padding: 0; border: none; max-width: none; }
.ft-brand { margin: 0; padding: 0; border: none; }
.ft-admin-info { text-align: center; margin-bottom: 10px; width: 100%; }
.ft-admin-info .name { font-family: var(--serif); font-size: 1.1rem; color: #fff; margin-right: 15px; font-weight: 700; }
.ft-addr-part, .ft-tel-part { color: rgba(255,255,255,.6); font-size: .75rem; }
.ft-note { margin: 0 0 10px 0; font-size: .6rem; color: rgba(255,255,255,.5); text-align: center; border: none; }
.ft-bottom { justify-content: center; text-align: center; margin: 0; padding: 0; border: none; display: flex; }
.ft-copy { font-size: .7rem; width: 100%; color: rgba(255,255,255,.38); }

/* ══ SP ハンバーガーメニュー ══ */
.sp-menu { display: none; background: var(--sky-deep); padding: 0; position: fixed; top: 64px; right: 0; z-index: 490; width: 260px; border-radius: 0 0 0 var(--r2); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.sp-menu.open { display: block; }
.sp-menu-inner { max-height: calc(100vh - 64px); overflow-y: auto; padding-bottom: 24px; }
.sp-menu ul { list-style: none; }
.sp-menu a { display: block; padding: 12px 20px; font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.88); border-bottom: 1px solid rgba(255,255,255,.1); transition: background .2s; }
.sp-menu a:hover { background: rgba(255,255,255,.12); }
.sp-menu-title { font-size: .85rem; color: #fff; padding: 14px 20px 6px; font-weight: 700; letter-spacing: .05em; border-bottom: 1px solid rgba(255,255,255,.15); background: rgba(0,0,0,.15); }
.sp-menu-hr { border: none; border-top: 1px dashed rgba(255,255,255,.2); margin: 12px 20px; }
.sp-menu-sns { display: flex; justify-content: center; gap: 12px; padding: 12px 20px; }
.sp-menu-sns a { display: flex !important; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; padding: 0 !important; border: none !important; flex-shrink: 0; transition: transform .2s; }
.sp-menu-sns a:hover { transform: scale(1.1); background: rgba(255,255,255,.1); }
.sp-menu-info { font-size: .74rem; color: rgba(255,255,255,.8); padding: 0 20px; line-height: 1.7; }
.sp-menu-info strong { color: #fff; display: block; margin-bottom: 4px; font-size: .78rem; }

/* ══ アニメーション ══ */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity .45s ease,transform .45s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ══ アコーディオン共通フェード設定 ══ */
@keyframes accFade { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ══ アコーディオン記事リスト ══ */
.acc-list { display: flex; flex-direction: column; gap: 12px; background: #fff; border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; box-shadow: var(--shadow); }
.acc-item { border-bottom: 1px solid var(--border); background: #fff; }
.acc-item:last-child { border-bottom: none; }
.acc-row { display: grid; grid-template-columns: 72px 1fr auto; align-items: center; gap: 14px; padding: 14px 18px; cursor: pointer; transition: background .18s; user-select: none; }
.acc-row:hover, .acc-item.open .acc-row { background: var(--sky-pale); }
.acc-item.open .acc-row { border-bottom: 1px solid var(--sky-light); }
.acc-thumb { width: 72px; height: 56px; border-radius: var(--r); overflow: hidden; background: linear-gradient(135deg,var(--sky-deep),var(--sky)); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.acc-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.acc-title-wrap { min-width: 0; }
.acc-title { font-family: var(--serif); font-size: .96rem; font-weight: 700; color: var(--sky-deep); line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.acc-item.open .acc-title { -webkit-line-clamp: unset; overflow: visible; }
.acc-meta { display: flex; gap: 6px; margin-top: 4px; flex-wrap: wrap; align-items: center; }
.acc-sp-date-wrap { display: none; align-items: center; gap: 6px; font-size: .78rem; font-weight: 700; color: var(--muted); margin-left: 6px; vertical-align: middle; }
.acc-sp-arrow { font-size: .65rem; color: var(--muted); transition: transform .3s; display: inline-block; }
.acc-item.open .acc-sp-arrow { transform: rotate(180deg); }
.acc-tag { font-size: .63rem; font-weight: 700; padding: 2px 8px; border-radius: 3px; display: inline-block; }
.acc-right { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; flex-shrink: 0; }
.acc-date { font-size: .82rem; font-weight: 700; color: var(--muted); white-space: nowrap; }
.acc-arrow { font-size: .7rem; color: var(--muted); transition: transform .3s; }
.acc-item.open .acc-arrow { transform: rotate(180deg); color: var(--sky); }
.acc-body { display: none; padding: 20px 24px 24px; background: var(--white); border-top: 2px solid var(--sky-light); animation: accFade .25s ease; }
.acc-item.open .acc-body { display: block; }
.activity-sec-head { padding: 28px 0 8px; }
.acc-article { display: flex; flex-direction: column; gap: 16px; }
.acc-article-text { font-size: .88rem; color: #333; line-height: 2.05; text-align: justify; }
.acc-article-text small { font-size: .75rem; color: var(--muted); }
.acc-article-imgs { display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; overflow-x: auto; }
.acc-article-imgs img { flex: 0 0 auto; width: auto; max-width: 48%; height: 220px; object-fit: cover; border-radius: var(--r); display: block; box-shadow: 0 2px 10px rgba(0,0,0,.12); cursor: pointer; transition: transform .2s; }
.acc-article-imgs img:hover { transform: scale(1.02); }
.acc-article-imgs.n1 img { max-width: 100%; height: 260px; width: auto; }

/* ── スクロールオフセット補正 ── */
section[id], div[id], [id] { scroll-margin-top: 40px !important; }

/* ══ カテゴリタブバー ══ */
.cat-tabbar { background: transparent; border: none; box-shadow: none; margin-bottom: 20px; }
.cat-tabbar-inner { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1100px; margin: 0 auto; gap: 4px; }
.cat-tab { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 12px 6px; font-size: .78rem; font-weight: 700; color: var(--sky-deep); cursor: pointer; transition: all .2s; background: rgba(255,255,255,.5); border-radius: 6px; text-align: center; border: 1px solid var(--border); }
.cat-tab:hover, .cat-tab.active { background: #fff; color: var(--sky); box-shadow: var(--shadow); }
.cat-tab.active { background: linear-gradient(135deg, var(--sky), var(--sky-deep)); color: #fff; border-color: transparent; }
.ct-ico { font-size: 1.6rem; line-height: 1; }
.ct-lbl { line-height: 1.2; }
.cat-sp-sel { display: none; padding: 10px 0; }
.cat-sp-sel select { width: 100%; padding: 10px 14px; font-size: .88rem; font-family: var(--sans); font-weight: 600; color: var(--sky-deep); background: #fff; border: 2px solid var(--sky); border-radius: var(--r); outline: none; cursor: pointer; }

/* ══ ライトボックス ══ */
#lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.88); align-items: center; justify-content: center; cursor: zoom-out; padding: 20px; }
#lightbox.open { display: flex; }
#lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
#lightbox-inner img { display: block; max-width: 100%; max-height: 88vh; object-fit: contain; border-radius: 8px; box-shadow: 0 8px 48px rgba(0,0,0,.6); cursor: default; }
#lightbox-close { position: absolute; top: -18px; right: -18px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.9); color: #333; font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.3); line-height: 1; }
#lightbox-close:hover { background: #fff; }

/* ══ ページトップボタン ══ */
#page-top { position: fixed; bottom: 24px; right: 20px; z-index: 300; width: 44px; height: 44px; border-radius: 50%; background: #003366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,51,102,.4); opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; text-decoration: none; }
#page-top.show { opacity: 1; pointer-events: auto; }
#page-top:hover { transform: translateY(-3px); background: var(--sky); }

/* ══ VOICES ══ */
.voices { background: transparent; }
.voices-grid { display: flex; flex-direction: column; gap: 16px; }
.voice-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r2); padding: 22px 20px; position: relative; box-shadow: var(--shadow); }
.voice-card::before { content: '\201C\201C'; font-family: Georgia,serif; font-size: 2.6rem; color: var(--sky-light); line-height: 0.6; display: block; margin-bottom: 4px; }
.voice-text { font-size: .84rem; color: #444; line-height: 1.95; margin-bottom: 18px; text-align: justify; }
.voice-by { display: flex; align-items: center; gap: 10px; }
.voice-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg,var(--sky-deep),var(--sky)); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.voice-name { font-size: .78rem; font-weight: 700; color: var(--sky-deep); }
.voice-sub { font-size: .68rem; color: var(--muted); }
.voice-note { font-size: .72rem; color: var(--muted); margin-top: 20px; }

/* ══ SUPPORT ══ */
.support { background: #fff; border: 1px solid var(--border); border-radius: var(--r2); padding: 36px; box-shadow: var(--shadow); margin-bottom: 20px; color: var(--text); }
.sup-card { width: 100%; background: transparent; border: none; padding: 0; }
.sup-card-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--sky-deep); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.sup-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.sup-list li { display: flex; align-items: flex-start; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: .85rem; color: var(--text); line-height: 1.6; }
.sup-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.sup-list li:last-child { border-bottom: none; }
.sup-note { font-size: .72rem; color: var(--muted); margin-top: 14px; line-height: 1.75; }
.sup-btns { display: flex; flex-direction: row; justify-content: center; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.sup-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 300px; padding: 14px 20px; border-radius: var(--r); font-size: .88rem; font-weight: 700; font-family: var(--sans); cursor: pointer; border: none; transition: all .2s; text-decoration: none; text-align: center; flex-shrink: 0; }
.sup-btn-primary { background: var(--gold); color: #1E293B; box-shadow: 0 4px 12px rgba(245,158,11,0.2); }
.sup-btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
.sup-btn-outline { background: var(--cream); border: 1px solid var(--border); color: var(--text); }
.sup-btn-outline:hover { background: var(--warm); }

/* ══ DONATION ══ */
.donation { background: #fff; border: 1px solid var(--border); border-radius: var(--r2); padding: 36px; box-shadow: var(--shadow); margin-bottom: 20px; }
.don-card { border: none; border-radius: 0; padding: 0; width: 100%; background: transparent; }
.don-card-title { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--sky-deep); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.don-lead { font-size: .84rem; color: #444; line-height: 1.85; margin-bottom: 16px; text-align: justify; }
.don-alert { background: #FFFBEB; border: 1px solid #FCD34D; border-radius: var(--r); padding: 14px 16px; margin-bottom: 18px; }
.don-alert-title { font-size: .78rem; font-weight: 700; color: #92400E; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.don-alert-body { font-size: .75rem; color: #78350F; line-height: 1.85; }
.don-method { border-left: 4px solid var(--sky); padding: 12px 16px; margin-bottom: 12px; background: var(--sky-pale); border-radius: 0 var(--r) var(--r) 0; }
.don-method-title { font-size: .82rem; font-weight: 700; color: var(--sky-deep); margin-bottom: 4px; }
.don-method-body { font-size: .78rem; color: #444; line-height: 1.75; }
.don-btn-wrap { text-align: center; margin-top: 16px; }
.don-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--gold); color: #1E293B; padding: 14px 20px; border-radius: var(--r); font-size: .88rem; font-weight: 700; font-family: var(--sans); cursor: pointer; border: none; transition: all .2s; text-decoration: none; width: 300px; box-shadow: 0 4px 12px rgba(245,158,11,0.2); }
.don-btn:hover { background: var(--gold2); transform: translateY(-1px); }

/* ══ DOWNLOADS ══ */
.downloads { background: transparent; }
.dl-list { display: flex; flex-direction: column; gap: 12px; background: transparent; border: none; border-radius: 0; overflow: visible; }
.dl-item { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: #fff; border: 1px solid var(--border); border-radius: var(--r2); box-shadow: var(--shadow); transition: all .25s; }
.dl-item:hover { transform: translateY(-2px); box-shadow: var(--shadow2); border-color: var(--sky); }
.dl-ico { font-size: 1.6rem; flex-shrink: 0; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--sky-pale); border-radius: 50%; color: var(--sky-deep); }
.dl-body { flex: 1; min-width: 0; }
.dl-title { font-size: .95rem; font-weight: 700; color: var(--sky-deep); margin-bottom: 4px; line-height: 1.4; }
.dl-meta { font-size: .72rem; color: var(--muted); line-height: 1.4; }
.dl-date { font-size: .78rem; font-weight: 700; color: var(--muted); white-space: nowrap; flex-shrink: 0; margin-right: 12px; }
.dl-btn { display: inline-flex; align-items: center; justify-content: center; gap: 5px; background: var(--gold); color: #1E293B; font-size: .8rem; font-weight: 700; padding: 8px 18px; border-radius: var(--r); white-space: nowrap; flex-shrink: 0; transition: all .2s; text-decoration: none; border: none; box-shadow: 0 2px 4px rgba(245,158,11,.2); }
.dl-btn:hover { background: var(--gold2); transform: translateY(-1px); box-shadow: 0 4px 8px rgba(245,158,11,.35); }
.dl-share { margin-top: 32px; background: #fff; border: 1px solid var(--border); border-radius: var(--r2); padding: 20px; box-shadow: var(--shadow); text-align: center; }
.dl-share-lbl { display: block; font-size: .82rem; font-weight: 700; color: var(--sky-deep); margin-bottom: 16px; text-align: center; letter-spacing: .05em; }
.dl-share-btn-wrap { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: nowrap; }
.dl-share-circle-btn { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; cursor: pointer; transition: all .25s; text-decoration: none; border: none; box-shadow: 0 2px 6px rgba(0,0,0,.15); }
.dl-share-circle-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.22); opacity: 0.92; }
.dl-share-fb { background: #1877F2; }
.dl-share-x { background: #000; }
.dl-share-line { background: #06C755; }
.dl-share-mail { background: #38BDF8; border: 1px solid rgba(255,255,255,.25); }

/* ══ タイムライン（ライフストーリー） ══ */
.life-timeline { position: relative; padding-left: 0; margin-top: 24px; }
.life-tl-item { display: grid; grid-template-columns: 120px 1fr; gap: 0; position: relative; margin-bottom: 0; }
.life-tl-item::before { content: ''; position: absolute; left: 109px; top: 28px; bottom: -2px; width: 2px; background: linear-gradient(180deg,var(--sky),var(--sky-light)); z-index: 0; }
.life-tl-item:last-child::before { display: none; }
.life-tl-left { text-align: right; padding: 20px 22px 20px 0; position: relative; z-index: 1; flex-shrink: 0; }
.life-tl-dot { width: 20px; height: 20px; border-radius: 50%; border: 3px solid var(--sky); background: #fff; position: absolute; right: -10px; top: 24px; z-index: 2; box-shadow: 0 0 0 3px rgba(14,165,233,.15); }
.life-tl-year { font-family: var(--serif); font-size: .78rem; font-weight: 700; color: var(--sky); line-height: 1.3; white-space: nowrap; }
.life-tl-right { padding: 16px 0 28px 28px; border-left: none; }
.life-tl-title { font-family: var(--serif); font-size: 1rem; font-weight: 700; color: var(--sky-deep); margin-bottom: 6px; line-height: 1.4; }
.life-tl-body { font-size: .82rem; color: #444; line-height: 1.85; margin-bottom: 10px; text-align: justify; }
.life-tl-imgs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.life-tl-imgs img { width: 90px; height: 68px; object-fit: cover; border-radius: var(--r); cursor: pointer; transition: transform .2s; border: 1px solid var(--border); }
.life-tl-imgs img:hover { transform: scale(1.08); box-shadow: 0 4px 12px rgba(0,0,0,.2); }

/* ══ 女性用テーマ (theme-female) ══ */
.theme-female { --sky: #F43F5E; --sky-deep: #BE123C; --sky-light: #FFE4E6; --sky-pale: #FFF5F5; --azure: #FB7185; --gold: #D97706; --gold2: #FEF3C7; --shadow: 0 2px 16px rgba(244,63,94,.12); --shadow2: 0 6px 32px rgba(244,63,94,.20); }
.theme-female header { background: #F43F5E; box-shadow: 0 2px 12px rgba(244,63,94,.35); }
.theme-female .hd-ham { background: #F43F5E; }
.theme-female .sp-menu { background: #BE123C; }
.theme-female .hero-ov { background: linear-gradient(90deg,rgba(120,0,60,.45) 0%,rgba(190,18,60,.1) 55%,rgba(0,0,0,0) 80%); }
.theme-female .hero-catch { font-style: normal; text-shadow: 0 2px 14px rgba(120,0,60,.7),0 0 30px rgba(244,63,94,.3); }
.theme-female .message { background: linear-gradient(135deg,#BE123C,#E11D48,#F43F5E); }
.theme-female .cat-content { background: var(--sky-pale); }
.theme-female .sec-div { background: linear-gradient(90deg,var(--sky),var(--azure)); }
.theme-female .hd-nav a:hover, .theme-female .hd-nav li.active a { background: var(--sky-pale); color: var(--sky-deep); border-left-color: var(--sky); }
.theme-female .cat-tab.active { background: linear-gradient(135deg, var(--sky), var(--sky-deep)); }
.theme-female .faq-qm { background: linear-gradient(135deg,var(--sky-deep),var(--sky)); }
.theme-female .acc-list { border-color: var(--sky-light); }
.theme-female .acc-item.open .acc-row { border-bottom-color: var(--sky-light); }
.theme-female .acc-body { border-top-color: var(--sky-light); }
.theme-female .acc-arrow { color: var(--muted); }
.theme-female .acc-item.open .acc-arrow { color: var(--sky); }

/* ══ 新人用テーマ (theme-newcomer) ══ */
.theme-newcomer { --sky: #10B981; --sky-deep: #065F46; --sky-light: #D1FAE5; --sky-pale: #F0FDF4; --azure: #34D399; --gold: #F59E0B; --gold2: #FEF3C7; --shadow: 0 2px 16px rgba(16,185,129,.12); --shadow2: 0 6px 32px rgba(16,185,129,.20); }
.theme-newcomer header { background: linear-gradient(135deg,#10B981,#06B6D4); box-shadow: 0 2px 12px rgba(16,185,129,.35); }
.theme-newcomer .hd-ham { background: #10B981; }
.theme-newcomer .sp-menu { background: #065F46; }
.theme-newcomer .hero-ov { background: linear-gradient(90deg,rgba(6,95,70,.5) 0%,rgba(16,185,129,.1) 55%,rgba(0,0,0,0) 80%); }
.theme-newcomer .hero-catch { letter-spacing: .04em; text-shadow: 0 3px 16px rgba(6,95,70,.8); }
.theme-newcomer .message { background: linear-gradient(135deg,#065F46,#059669,#10B981); }
.theme-newcomer .cat-content { background: var(--sky-pale); }
.theme-newcomer .sec-div { background: linear-gradient(90deg,var(--sky),var(--azure)); }
.theme-newcomer .hd-nav a:hover, .theme-newcomer .hd-nav li.active a { background: var(--sky-pale); color: var(--sky-deep); border-left-color: var(--sky); }
.theme-newcomer .cat-tab.active { background: linear-gradient(135deg, var(--sky), var(--sky-deep)); }
.theme-newcomer .faq-qm { background: linear-gradient(135deg,var(--sky-deep),var(--sky)); }
.theme-newcomer .acc-list { border-color: var(--sky-light); }
.theme-newcomer .acc-item.open .acc-row { border-bottom-color: var(--sky-light); }
.theme-newcomer .acc-body { border-top-color: var(--sky-light); }
.theme-newcomer .acc-arrow { color: var(--muted); }
.theme-newcomer .acc-item.open .acc-arrow { color: var(--sky); }


/* ══ 📱 MEDIA QUERIES (完全レスポンシブ・スマホ補正対応) ══ */

@media (max-width: 992px) {
  .layout-wrapper { gap: 30px; }
  .hd-nav { width: 180px; }
}

@media (max-width: 768px) {
  body { padding-top: 64px; }
  html { scroll-padding-top: 94px !important; }
  section[id], div[id], [id] { scroll-margin-top: 94px !important; }
  .layout-wrapper { flex-direction: column; gap: 0; padding: 0 15px; }
  .main-content-area { max-width: 100%; padding: 20px 0; }

  .hd-top { padding: 10px 14px; }
  .hd-name { font-size: .95rem; }
  .hd-role { font-size: .6rem; }
  .hd-sns { display: none; }
  .hd-ham { display: flex; position: fixed; top: 10px; right: 12px; box-shadow: 0 2px 8px rgba(0,0,0,.25); }
  .hd-nav { display: none !important; }

  .hero { height: 280px; justify-content: flex-start; min-height: 200px; }
  .hero-bg { object-position: 53% center !important; display: block; }
  .hero-ov { display: block; background: linear-gradient(90deg, rgba(0,30,80,0.6) 0%, rgba(0,30,80,0.15) 55%, rgba(0,0,0,0) 80%); }
  .hero-ct { padding: 16px 20px !important; width: 100%; max-width: none; height: 280px; justify-content: center !important; align-items: flex-start; }
  .hero-ey { display: none; }
  .hero-catch { position: absolute; top: 15px; left: 20px; font-size: clamp(.9rem, 3.8vw, 1.15rem) !important; font-weight: 700 !important; margin-bottom: 0 !important; color: #fff; text-shadow: 0 2px 10px rgba(0,30,80,0.9); letter-spacing: 0.02em; white-space: normal !important; }
  .hero-name { display: block !important; line-height: 1.05; margin: 2px 0 10px; }
  .hero-name-sei, .hero-name-mei { display: block !important; font-weight: 900 !important; color: #fff; letter-spacing: .04em; text-shadow: 0 3px 12px rgba(0,0,0,.55), 0 1px 4px rgba(0,0,0,.6); font-family: var(--sans) !important; line-height: 1.08; }
  .hero-name-sei { font-size: clamp(3.2rem, 16vw, 4.6rem) !important; }
  .hero-name-mei { font-size: clamp(2.0rem, 10vw, 3.0rem) !important; }
  .hero-sub { font-size: clamp(.72rem, 2.8vw, .9rem) !important; line-height: 1.7; margin-bottom: 0; color: #fff; text-shadow: 0 2px 8px rgba(0,30,80,0.85); max-width: 180px; margin-top: 10px !important; }
  .pc-br { display: inline; }

  .cat-nav { display: none; }
  .cat-sel-wrap { display: block; }
  .cat-tabbar-inner { display: none; }
  .cat-sp-sel { display: block; }

  .act-grid, .ach-grid { grid-template-columns: 1fr; }
  .pol-panel.active { grid-template-columns: 1fr; }
  .prof-grid { grid-template-columns: 1fr; }
  .msg-in { padding: 0 10px; }
  .msg-card { display: none; }
  .org-in { grid-template-columns: 1fr; }
  .org-card { display: none; }
  .ft-grid { grid-template-columns: 1fr; }
  .voices-grid { grid-template-columns: 1fr; }

  .ft-bottom { padding: 16px 0 0 0; justify-content: flex-start; text-align: left; flex-direction: column; gap: 10px; align-items: flex-start; box-sizing: border-box; }
  .ft-copy { font-size: 0.6rem; width: 100%; text-align: left; letter-spacing: 0.02em; }
  .ft-note { font-size: 0.58rem; width: 100%; text-align: left !important; line-height: 1.4; padding-right: 76px; box-sizing: border-box; }
  .ft-admin-info { text-align: left !important; }
  .ft-addr-part, .ft-tel-part { display: block; margin-left: 0 !important; margin-top: 4px; }

  .drow { grid-template-columns: 1fr; gap: 0; }
  .dlbl { border-bottom: none; padding-bottom: 4px; }
  .dval { padding-top: 4px; }
  .art-item { grid-template-columns: 40px 1fr 60px; gap: 8px; padding: 10px 12px; }

  .prof-info-grid { grid-template-columns: 1fr; gap: 20px; }
  .prof-info-grid > div:first-child { display: flex; flex-direction: column; align-items: center; }
  .prof-photo-wrap { width: calc(50% - 6px); max-width: 200px; }
  .prof-photo-wrap img { max-width: 100%; }
}

@media (max-width: 680px) {
  .contact-grid { grid-template-columns: 1fr; }
  .sup-btns { flex-direction: column; align-items: center; }
  .sup-btn { width: 300px; }
}

@media (max-width: 600px) {
  section { padding: 40px 0; }
  .sec-title { font-size: 1.35rem; }
  .acc-article-imgs img { max-width: 80vw; height: 180px; }
  .acc-row { grid-template-columns: 56px 1fr; gap: 12px; padding: 10px 12px; }
  .acc-thumb { width: 56px; height: 48px; }
  .acc-title { font-size: .88rem; -webkit-line-clamp: unset; overflow: visible; display: block; }
  .acc-right { display: none; }
  .acc-meta { display: flex; justify-content: space-between; align-items: center; width: 100%; margin-top: 6px; }
  .acc-sp-date-wrap { display: inline-flex; margin-top: 0; margin-left: auto; justify-content: flex-end; box-sizing: border-box; padding-right: 4px; }
  .acc-body { padding: 16px 10px 20px; }
  .dl-list { gap: 10px; }
  .dl-item { padding: 14px 14px 44px; gap: 12px; position: relative; flex-direction: row; align-items: flex-start; }
  .dl-ico { font-size: 1.4rem; width: 30px; height: 30px; margin-top: 2px; }
  .dl-body { flex: 1; min-width: 0; width: calc(100% - 42px); }
  .dl-title { font-size: .88rem; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%; }
  .dl-meta { font-size: .68rem; padding-right: 8px; }
  .dl-date { display: none; }
  .dl-btn { position: absolute; right: 14px; bottom: 10px; padding: 4px 10px; font-size: .65rem; height: 24px; border-radius: 4px; box-shadow: none; }
  .dl-share { padding: 16px 12px; margin-top: 24px; }
  .dl-share-lbl { margin-bottom: 12px; font-size: .75rem; }
  .dl-share-btn-wrap { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .dl-print { grid-column: span 2; width: 100%; }
  .dl-share-btn, .dl-print { font-size: .72rem; height: 36px; }
  .life-timeline { margin-top: 20px; }
  .life-tl-item { grid-template-columns: 110px 1fr; }
  .life-tl-item::before { left: 99px; }
  .life-tl-left { padding: 20px 14px 20px 0; }
  .life-tl-dot { right: -10px; }
  .life-tl-year { font-size: .78rem; white-space: nowrap; }
  .life-tl-title { font-size: .9rem; }
  .life-tl-right { padding-left: 18px; }
  .life-tl-imgs img { width: 64px; height: 48px; }
}