@charset "UTF-8";

:root {
  --canvas: #FBF9F6;
  --paper: #FFFFFF;
  --ink: #2C2A29;
  --body: #4E4A47;
  --muted: #746E69;
  --line: #DED8D2;
  --orange: #FF6B35;
  --amber: #FFA856;
  --navy: #17324D;
  --navy-2: #0F263B;
  --soft-orange: #FFF0E8;
  --soft-navy: #EAF0F5;
  --radius: 18px;
  --max: 1120px;
  --wide: 1360px;
  --shadow: 0 24px 60px -34px rgba(23, 50, 77, .4);
  --ai: #17324D;
  --ai2: #0F263B;
  --shu: #FF6B35;
  --yama: #FFA856;
  --yama2: #FFD29D;
  --kami: #FBF9F6;
  --kami2: #F4F0EB;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { margin: 0; color: var(--body); background: var(--canvas); font-family: "Zen Kaku Gothic New", "Zen Kaku Gothic", "Noto Sans JP", system-ui, sans-serif; line-height: 1.8; -webkit-font-smoothing: antialiased; overflow-x: clip; }
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
/* Keep optimized <picture> wrappers dimensionally transparent to the layout. */
.hero__bg > picture, .final-cta__bg > picture, .project-card__img > picture,
.voices__image > picture, .split__image > picture, .post-hero__bg > picture,
.p-card__ph > picture, .post-figure > picture { display: block; width: 100%; height: 100%; }
.brand > picture { display: flex; flex: 0 0 auto; }
a { color: inherit; }
button, input { font: inherit; }
h1, h2, h3, .lead, .btn, summary { word-break: auto-phrase; text-wrap: balance; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); line-height: 1.35; }
p:last-child { margin-bottom: 0; }
[hidden] { display: none !important; }

.wrap { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.wrap--wide { width: min(var(--wide), calc(100% - 48px)); margin-inline: auto; }
.section { position: relative; padding: 108px 0; }
.section--paper { background: var(--paper); }
.section--navy { color: #F8F5F0; background: var(--navy-2); }
.section--navy h2, .section--navy h3 { color: #FFFFFF; }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 2px; background: currentColor; content: ""; }
.section-title { margin: 14px 0 22px; font-size: clamp(32px, 4.4vw, 52px); font-weight: 900; }
.section-lead { max-width: 40em; color: var(--muted); font-size: 17px; }
.mono { font-family: "Space Grotesk", sans-serif; }
.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 12px; padding: 13px 24px; border: 1px solid transparent; border-radius: 999px; font-weight: 700; line-height: 1.4; text-decoration: none; transition: transform .28s cubic-bezier(.2, .7, .2, 1), background .25s ease, border-color .25s ease, color .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--orange { color: var(--ink); background: var(--orange); }
.btn--orange:hover { background: var(--amber); }
.btn--dark { color: #FFFFFF; background: var(--navy); }
.btn--dark:hover { background: var(--navy-2); }
.btn--ghost { color: var(--ink); border-color: rgba(44, 42, 41, .35); background: rgba(255, 255, 255, .55); }
.skip-link { position: fixed; top: 8px; left: -9999px; z-index: 9999; padding: 10px 16px; color: var(--ink); background: var(--orange); border-radius: 6px; text-decoration: none; }
.skip-link:focus { left: 8px; }
a:focus-visible, button:focus-visible, summary:focus-visible, [tabindex]:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 5px; }

/* header-07 + spmenu-01 */
.site-header { position: fixed; top: 18px; right: 0; left: 0; z-index: 100; display: flex; justify-content: center; transition: top .3s ease; }
.site-header.is-scrolled { top: 8px; }
.header-pill { display: grid; grid-template-columns: auto 1fr auto; width: min(1280px, calc(100% - 32px)); align-items: center; gap: 18px; padding: 9px 10px 9px 18px; border: 1px solid rgba(255, 255, 255, .72); border-radius: 999px; background: rgba(255, 255, 255, .78); box-shadow: 0 18px 46px -28px rgba(15, 38, 59, .58); backdrop-filter: blur(18px) saturate(145%); }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; white-space: nowrap; }
.brand__mark { width: 36px; height: 36px; object-fit: contain; }
.brand__name { display: block; font-size: 18px; font-weight: 900; line-height: 1.05; }
.brand__name small { display: block; margin-top: 4px; color: var(--muted); font-family: "Space Grotesk", sans-serif; font-size: 7px; font-weight: 700; letter-spacing: .15em; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 13px; }
.site-nav a { position: relative; color: var(--ink); font-size: 12.5px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.site-nav a::after { position: absolute; right: 0; bottom: -6px; left: 0; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; content: ""; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-cta { min-height: 42px; padding: 10px 18px; color: var(--ink); background: var(--orange); border-radius: 999px; font-size: 12px; font-weight: 900; text-decoration: none; white-space: nowrap; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--navy); cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: #FFFFFF; transition: transform .3s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.menu-shade { position: fixed; inset: 0; z-index: 110; visibility: hidden; background: rgba(15, 38, 59, .5); opacity: 0; transition: opacity .35s ease, visibility .35s ease; }
.menu-shade.is-open { visibility: visible; opacity: 1; }
.mobile-drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 120; display: flex; width: min(84vw, 390px); flex-direction: column; padding: 30px 24px; color: var(--ink); background: var(--paper); box-shadow: -24px 0 60px -30px rgba(15, 38, 59, .65); transform: translateX(104%); transition: transform .45s cubic-bezier(.22, 1, .36, 1); }
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.mobile-drawer__close { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.mobile-drawer__nav { display: flex; flex: 1; flex-direction: column; overflow-y: auto; }
.mobile-drawer__nav a { display: flex; min-height: 52px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); font-weight: 700; text-decoration: none; }
.mobile-drawer__nav a::after { color: var(--orange); content: "→"; }
.mobile-drawer__cta { margin-top: 20px; }

/* fv-64 ParticleText */
.hero { position: relative; min-height: 800px; overflow: hidden; background: var(--navy-2); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__bg::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(251, 249, 246, .96) 0%, rgba(251, 249, 246, .86) 34%, rgba(251, 249, 246, .1) 59%, rgba(15, 38, 59, .38) 100%); content: ""; }
.hero__canvas { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; pointer-events: auto; }
.hero-inner { position: relative; z-index: 3; display: grid; grid-template-columns: 45% 55%; min-height: 800px; align-items: center; }
.hero-copy { padding: 132px 0 78px; }
.hero-kicker { margin-bottom: 18px; color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }
.hero h1 { margin: 0; font-size: clamp(44px, 5vw, 68px); font-weight: 900; line-height: 1.22; letter-spacing: -.025em; }
.hero h1 span { display: block; white-space: nowrap; }
.hero-lead { max-width: 33em; margin: 24px 0 0; color: var(--body); font-size: 17px; line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 38px 0 0; padding: 18px 0 0; border-top: 1px solid rgba(44, 42, 41, .22); }
.hero-facts span { color: var(--ink); font-family: "Space Grotesk", sans-serif; font-size: 12px; font-weight: 700; }
.hero-facts b { color: var(--orange); font-size: 20px; }
.hero__label { position: absolute; right: 4vw; bottom: 34px; z-index: 3; color: rgba(255, 255, 255, .78); font-family: "Space Grotesk", sans-serif; font-size: 10px; letter-spacing: .18em; text-align: right; }

/* intro-03 */
.manifest { overflow: hidden; background: var(--canvas); }
.manifest__top, .manifest__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 15px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.manifest__index { color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.manifest__marquee { margin: 34px 0; overflow: hidden; }
.manifest__row { display: flex; width: max-content; color: var(--ink); font-size: clamp(52px, 9.5vw, 132px); font-weight: 900; line-height: 1.06; white-space: nowrap; animation: manifest-left 26s linear infinite; }
.manifest__row--outline { color: transparent; -webkit-text-stroke: 1.5px var(--ink); animation-name: manifest-right; animation-duration: 32s; }
.manifest__row span { padding-right: .7em; }
.manifest__row em { color: var(--orange); font-style: normal; -webkit-text-stroke: 0; }
.manifest__bottom p { max-width: 37em; margin: 0; color: var(--muted); }
@keyframes manifest-left { to { transform: translateX(-50%); } }
@keyframes manifest-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* reasons-02 */
.strengths__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.strengths__side { position: sticky; top: 110px; }
.strengths__list { border-top: 1px solid var(--ink); }
.strength { display: grid; grid-template-columns: 92px 1fr; gap: 28px; padding: 36px 0; border-bottom: 1px solid var(--line); }
.strength__no { color: transparent; font-family: "Space Grotesk", sans-serif; font-size: 64px; font-weight: 700; line-height: .9; -webkit-text-stroke: 1.5px var(--orange); }
.strength h3 { margin: 0 0 8px; font-size: 25px; font-weight: 900; }
.strength p { margin: 0; color: var(--muted); }

/* numbers-02 */
.numbers { min-height: 690px; overflow: hidden; }
.numbers__head { position: relative; z-index: 2; }
.numbers__field { position: relative; min-height: 520px; margin-top: 34px; }
.numbers__field::before { position: absolute; top: 270px; right: 0; left: 0; height: 1px; background: rgba(255, 255, 255, .25); content: ""; }
.stat { position: absolute; }
.stat__value { display: flex; align-items: flex-start; color: #FFFFFF; font-family: "Space Grotesk", sans-serif; font-weight: 700; line-height: .82; letter-spacing: -.045em; }
.stat__unit { margin: .4em 0 0 .15em; color: var(--orange); font-size: .22em; letter-spacing: 0; }
.stat__label { margin-top: 10px; color: rgba(255, 255, 255, .7); font-size: 13px; }
.stat--1 { top: 0; left: 0; }
.stat--1 .stat__value { font-size: clamp(110px, 18vw, 240px); }
.stat--2 { top: 88px; right: 0; text-align: right; }
.stat--2 .stat__value { justify-content: flex-end; color: var(--orange); font-size: clamp(76px, 11vw, 145px); }
.stat--3 { top: 305px; left: 20%; }
.stat--3 .stat__value { font-size: clamp(78px, 12vw, 160px); }
.stat--4 { top: 375px; right: 7%; }
.stat--4 .stat__value { color: transparent; font-size: clamp(58px, 8vw, 105px); -webkit-text-stroke: 1.5px #FFFFFF; }

/* services-01 bento */
.project-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 36px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 32px; }
.filter-btn { min-height: 42px; padding: 9px 16px; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; background: var(--paper); font-size: 12px; font-weight: 700; cursor: pointer; }
.filter-btn[aria-pressed="true"] { color: #FFFFFF; border-color: var(--navy); background: var(--navy); }
.writer-filter { margin: 34px 0 36px; padding: clamp(22px, 3vw, 36px); border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: 0 26px 70px -58px rgba(18, 32, 48, .55); }
.writer-filter__head { display: flex; justify-content: space-between; gap: 18px; align-items: flex-end; margin-bottom: 14px; }
.writer-filter__head h2 { margin: 8px 0 0; font-size: clamp(24px, 3vw, 38px); }
.writer-filter__note, .writer-filter__result { margin: 0; color: var(--muted); font-size: 13px; }
.writer-filter__result { margin-top: 20px; font-weight: 700; }
.writer-filter__groups { display: grid; gap: 12px; margin-top: 24px; }
.writer-filter__group { display: grid; grid-template-columns: minmax(120px, .24fr) 1fr; gap: 10px; align-items: start; padding: 11px; border: 1px solid rgba(20, 39, 59, .08); border-radius: 18px; background: var(--cream); }
.writer-filter__children { display: flex; flex-wrap: wrap; gap: 8px; }
.area-filter { display: inline-flex; align-items: center; gap: 7px; min-height: 38px; margin: 0 8px 8px 0; padding: 8px 14px; border: 1px solid #d9d2c7; border-radius: 999px; color: var(--muted); background: #fff; font: inherit; font-size: 13px; font-weight: 900; cursor: pointer; transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease; }
.area-filter small { min-width: 1.7em; padding: 2px 6px; border-radius: 999px; color: #fff; background: rgba(20, 39, 59, .42); font-size: 10px; line-height: 1.2; text-align: center; }
.area-filter:hover { transform: translateY(-1px); border-color: rgba(255, 107, 53, .48); color: var(--charcoal); }
.area-filter.is-active, .area-filter[aria-pressed="true"] { color: #fff; border-color: var(--navy); background: linear-gradient(135deg, var(--navy), #214866); box-shadow: 0 0 0 4px rgba(23, 50, 77, .1), 0 14px 28px -18px rgba(23, 50, 77, .9); }
.area-filter.is-active small, .area-filter[aria-pressed="true"] small { color: var(--navy); background: #fff; }
.area-chip { display: inline-flex; align-items: center; gap: 7px; min-height: 36px; padding: 7px 13px; border: 1px solid #d9d2c7; border-radius: 999px; color: var(--muted); background: #fff; font-size: 13px; font-weight: 800; cursor: pointer; transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease; user-select: none; }
.area-chip input { position: absolute; inline-size: 1px; block-size: 1px; opacity: 0; pointer-events: none; }
.area-chip small { min-width: 1.7em; padding: 2px 6px; border-radius: 999px; color: #fff; background: rgba(20, 39, 59, .42); font-size: 10px; text-align: center; }
.area-chip:hover { transform: translateY(-1px); border-color: rgba(255, 107, 53, .48); color: var(--charcoal); }
.area-chip.is-active, .area-chip:has(input:checked) { color: #fff; border-color: var(--orange); background: linear-gradient(135deg, var(--orange), #ff8a4d); box-shadow: 0 0 0 4px rgba(255, 107, 53, .14), 0 14px 28px -18px rgba(255, 107, 53, .92); }
.area-chip.is-active small, .area-chip:has(input:checked) small { color: var(--orange); background: #fff; }
.area-chip--parent { width: 100%; justify-content: space-between; color: #fff; border-color: var(--navy); background: var(--navy); }
.area-chip--parent small { color: var(--navy); background: #fff; }
.area-chip--parent.is-active, .area-chip--parent:has(input:checked) { border-color: var(--orange); background: var(--orange); }
.area-reset { min-height: 40px; padding: 8px 16px; border: 1px solid var(--navy); border-radius: 999px; color: var(--navy); background: #fff; font-weight: 800; cursor: pointer; transition: .2s ease; white-space: nowrap; }
.area-reset:hover { color: #fff; background: var(--navy); }
.writer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.writer-card { display: grid; grid-template-rows: 190px 1fr; min-height: 100%; border: 1px solid var(--line); border-radius: 28px; overflow: hidden; background: #fff; box-shadow: 0 24px 64px -54px rgba(18, 32, 48, .62); }
.writer-card[hidden] { display: none; }
.writer-card__image { position: relative; overflow: hidden; background: var(--cream); }
.writer-card__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(13, 35, 56, .48)); }
.writer-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.writer-card:hover .writer-card__image img { transform: scale(1.045); }
.writer-card__image img[src$="noda-naohiro-main.jpg"],
.member-profile-card img[src$="noda-naohiro-main.jpg"] { object-position: 42% 18%; }
.writer-card__image img[src$="shimokawa-mayumi-main.jpg"],
.member-profile-card img[src$="shimokawa-mayumi-main.jpg"] { object-position: 50% 18%; }
.writer-card__image img[src$="ikechan-icon.png"],
.member-profile-card img[src$="ikechan-icon.png"] { object-fit: contain; object-position: center top; background: linear-gradient(180deg, #fff 0%, #eef2f4 100%); }
.writer-card__image img[src$="mamisuke.jpg"],
.member-profile-card img[src$="mamisuke.jpg"] { object-position: 52% 10%; }
.writer-card__image img[src$="furuhata-asako.webp"],
.member-profile-card img[src$="furuhata-asako.webp"] { object-position: 50% 22%; }
.writer-card__image img[src$="shimizu-sayumi.webp"],
.member-profile-card img[src$="shimizu-sayumi.webp"] { object-position: 58% 10%; }
.writer-card__image img[src$="shimakayo.webp"],
.member-profile-card img[src$="shimakayo.webp"] { object-position: 50% 18%; }
.writer-card__image img[src$="terashio-akari.webp"],
.member-profile-card img[src$="terashio-akari.webp"] { object-position: 46% 20%; }
.writer-card__image img[src$="shioya-kyoko.webp"],
.member-profile-card img[src$="shioya-kyoko.webp"] { object-position: 50% 18%; }
.writer-card__image img[src$="tsurumaki-yosuke.webp"],
.member-profile-card img[src$="tsurumaki-yosuke.webp"] { object-position: 50% 18%; }
.writer-card__image img[src$="hosoya-emiko.webp"],
.member-profile-card img[src$="hosoya-emiko.webp"] { object-position: 54% 20%; }
.writer-card__image img[src$="kojima-manami.webp"],
.member-profile-card img[src$="kojima-manami.webp"] { object-position: 50% 22%; }
.writer-card__image img[src$="yamaguchi-mika.webp"],
.member-profile-card img[src$="yamaguchi-mika.webp"] { object-position: 50% 18%; }
.writer-card__body { padding: 24px; }
.writer-card__meta { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.writer-card__meta span { padding: 5px 9px; border-radius: 999px; background: rgba(255, 107, 53, .1); }
.writer-card h3 { margin: 0 0 4px; font-size: 24px; }
.writer-card__company { margin: 0 0 16px; color: var(--muted); font-size: 13px; }
.writer-card h4 { margin: 0 0 10px; font-size: 17px; }
.writer-card p { color: var(--muted); }
.writer-card__supports { display: flex; flex-wrap: wrap; gap: 7px; margin: 16px 0; }
.writer-card__supports span { padding: 5px 9px; border: 1px solid rgba(255, 107, 53, .22); border-radius: 999px; color: var(--orange); background: rgba(255, 107, 53, .08); font-size: 11px; font-weight: 800; }
.writer-card__note { padding-top: 14px; border-top: 1px dashed var(--line); font-size: 12px; }
.writer-card .btn { margin-top: 12px; }
.member-profile-card { align-self: stretch; display: grid; grid-template-rows: minmax(260px, 1fr) auto; overflow: hidden; border: 1px solid rgba(255, 107, 53, .2); border-radius: 32px; background: #fff; box-shadow: 0 30px 80px -62px rgba(18, 32, 48, .72); }
.member-profile-card img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; background: var(--cream); }
.member-profile-card div { padding: 24px; background: linear-gradient(135deg, rgba(255, 107, 53, .1), rgba(255, 255, 255, .92)); }
.member-profile-card span { display: inline-flex; margin-bottom: 10px; color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.member-profile-card h3 { margin: 0 0 8px; font-size: clamp(22px, 2.3vw, 34px); }
.member-profile-card p { margin: 0; color: var(--muted); }
.member-detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.member-detail-actions--center { justify-content: center; }
.member-detail-lead { max-width: 820px; color: rgba(255,255,255,.74); font-size: clamp(17px, 1.5vw, 21px); line-height: 2; }
.member-link-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; margin-top: 26px; }
.member-link { position: relative; display: grid; gap: 6px; align-content: center; min-height: 104px; padding: 14px 10px; overflow: hidden; border: 1px solid rgba(23, 50, 77, .1); border-radius: 18px; color: var(--charcoal); background: linear-gradient(145deg, #fff 0%, #fff7f1 100%); text-align: center; text-decoration: none; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.member-link::before { content: ""; position: absolute; right: -26px; bottom: -38px; width: 84px; height: 84px; border-radius: 999px; background: rgba(255, 107, 53, .08); pointer-events: none; }
.member-link:hover { transform: translateY(-2px); border-color: rgba(255, 107, 53, .38); box-shadow: 0 18px 42px -30px rgba(18, 32, 48, .55); }
.member-link__icon { position: relative; display: inline-grid; place-items: center; justify-self: center; min-width: 42px; height: 42px; padding: 0 8px; color: #fff; border-radius: 999px; background: linear-gradient(135deg, var(--orange), var(--navy)); box-shadow: 0 12px 28px -18px rgba(15, 38, 59, .7); font-family: "Space Grotesk", sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .04em; }
.member-link strong { font-size: 12px; line-height: 1.4; }
.member-link small { color: var(--muted); font-size: 10px; line-height: 1.4; }
.member-link--empty { opacity: .48; background: var(--cream); }
.member-link--empty .member-link__icon { background: #a9a096; }
.member-link--story .member-link__icon { color: var(--navy); background: linear-gradient(135deg, #ff6b35, #ffa856); }
.member-link--line .member-link__icon { background: linear-gradient(135deg, #06c755, #009c42); }
.member-link--dm .member-link__icon { background: linear-gradient(135deg, #17324d, #4e79a7); }
.member-link--site .member-link__icon { background: linear-gradient(135deg, #17324d, #0f766e); }
.member-link--blog .member-link__icon { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.member-link--x .member-link__icon { background: #111; }
.member-link--ig .member-link__icon { background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #515bd4); }
.member-link--fb .member-link__icon { background: #1877f2; }
.member-support-list { max-width: 980px; margin: 0 auto; }
.member-detail-final { padding: clamp(70px, 9vw, 124px) 0; color: #fff; background: radial-gradient(circle at 12% 18%, rgba(255, 107, 53, .42), transparent 28%), linear-gradient(135deg, #12263b, #0b1724); text-align: center; }
.member-detail-final h2 { margin: 8px 0 16px; color: #fff; font-size: clamp(34px, 5vw, 70px); }
.member-detail-final p { max-width: 720px; margin: 0 auto; color: rgba(255,255,255,.76); }
.member-detail-final .member-detail-actions { justify-content: center; }
.project-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 14px; }
.project-card { position: relative; overflow: hidden; color: #FFFFFF; border: 1px solid rgba(255, 255, 255, .24); background: var(--navy); text-decoration: none; }
.project-card--big { grid-column: span 2; grid-row: span 2; }
.project-card--wide { grid-column: span 2; }
.project-card__img { position: absolute; inset: 0; }
.project-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22, 1, .36, 1); }
.project-card:hover .project-card__img img { transform: scale(1.045); }
.project-card__img::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 24%, rgba(15, 38, 59, .88) 100%); content: ""; }
.project-card__body { position: absolute; right: 18px; bottom: 16px; left: 18px; z-index: 2; }
.project-card__meta { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; font-family: "Space Grotesk", sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.project-card__status { display: inline-flex; align-items: center; gap: 6px; padding: 4px 9px; color: var(--ink); background: var(--orange); border-radius: 999px; }
.project-card__status::before { width: 6px; height: 6px; background: var(--ink); border-radius: 50%; box-shadow: 0 0 0 0 rgba(44, 42, 41, .35); animation: pulse-dot 2s ease-out infinite; content: ""; }
.project-card h3 { margin: 0; color: #FFFFFF; font-size: 21px; }
.project-card p { display: none; margin: 8px 0 0; color: rgba(255, 255, 255, .8); font-size: 12px; line-height: 1.7; }
.project-card--big p { display: block; max-width: 38em; }
.project-card__arrow { position: absolute; top: 14px; right: 14px; z-index: 2; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255, 255, 255, .58); border-radius: 50%; transition: transform .25s ease, background .25s ease; }
.project-card:hover .project-card__arrow { color: var(--ink); background: var(--orange); transform: rotate(45deg); }
.project-card--text { display: flex; align-items: center; padding: 28px; color: var(--ink); background: var(--soft-orange); }
.project-card--text p { display: block; color: var(--ink); font-size: 16px; }
@keyframes pulse-dot { 70% { box-shadow: 0 0 0 9px rgba(44, 42, 41, 0); } 100% { box-shadow: 0 0 0 0 rgba(44, 42, 41, 0); } }

/* message-05 */
.message { background: var(--canvas) url("../../src/section-bg-1.jpg") center/cover no-repeat; }
.message__inner { width: min(860px, calc(100% - 48px)); margin-inline: auto; }
.voice-player { display: grid; grid-template-columns: auto auto 1fr auto; align-items: center; gap: 16px; margin-top: 38px; padding: 18px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, .88); box-shadow: var(--shadow); }
.voice-player__avatar { width: 58px; height: 58px; object-fit: cover; border-radius: 50%; background: var(--soft-orange); }
.voice-player > picture { display: block; width: 58px; height: 58px; }
.voice-player__meta b { display: block; color: var(--ink); }
.voice-player__meta small { color: var(--muted); font-family: "Space Grotesk", sans-serif; }
.voice-player__bars { display: flex; height: 34px; align-items: center; gap: 3px; overflow: hidden; }
.voice-player__bars i { width: 3px; height: 30%; background: var(--orange); border-radius: 3px; animation: bars 1.1s ease-in-out infinite; }
.voice-player__time { color: var(--muted); font-family: "Space Grotesk", sans-serif; font-size: 12px; }
.message__script { margin-top: 44px; padding-left: 28px; border-left: 2px solid var(--line); }
.message__script p { margin-bottom: 1.4em; color: var(--ink); font-size: clamp(18px, 2vw, 23px); font-weight: 700; line-height: 2; }
.message__script strong { color: var(--orange); }
@keyframes bars { 50% { height: 94%; } }

/* voice-13 */
.voices__top { display: grid; grid-template-columns: .86fr 1.14fr; gap: 54px; align-items: stretch; }
.voices__image { position: relative; min-height: 420px; overflow: hidden; border-radius: 4px; }
.voices__image img { width: 100%; height: 100%; object-fit: cover; }
.voices__image::before { position: absolute; top: 0; left: 0; z-index: 1; width: 94px; height: 94px; border-top: 3px solid var(--orange); border-left: 3px solid var(--orange); content: ""; }
.voices__feature { display: flex; flex-direction: column; justify-content: center; }
.voices__feature blockquote { margin: 26px 0 0; color: var(--ink); font-size: clamp(25px, 3vw, 38px); font-weight: 900; line-height: 1.55; }
.voices__feature cite { margin-top: 18px; color: var(--muted); font-style: normal; font-size: 12px; }
.voice-index { margin: 54px 0 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.voice-index li { display: grid; grid-template-columns: 56px 1fr auto; gap: 20px; align-items: baseline; padding: 21px 6px; border-bottom: 1px solid var(--line); }
.voice-index__no { color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 12px; }
.voice-index q { color: var(--ink); font-size: 17px; font-weight: 700; }
.voice-index small { color: var(--muted); }

/* news-03 */
.news__layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 58px; align-items: start; }
.news__side { position: sticky; top: 110px; }
.news-list { border-top: 1px solid var(--line); }
.news-item { display: grid; grid-template-columns: 140px 1fr; gap: 22px; align-items: center; padding: 22px 0; border-bottom: 1px dashed var(--line); text-decoration: none; }
.news-item img { width: 140px; aspect-ratio: 16 / 10; object-fit: cover; }
.news-item > picture { display: block; width: 140px; }
.news-item__meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 7px; color: var(--muted); font-family: "Space Grotesk", sans-serif; font-size: 11px; }
.news-item__cat { padding: 3px 9px; color: var(--ink); background: var(--soft-orange); border-radius: 999px; }
.news-item h3 { margin: 0; font-size: 17px; }

/* process-03 */
.process__head { margin-bottom: 54px; text-align: center; }
.process__flow { position: relative; width: min(930px, 100%); margin-inline: auto; }
.process__spine { position: absolute; top: 0; bottom: 30px; left: 50%; width: 2px; background: var(--line); transform: translateX(-50%); }
.process-step { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; padding: 28px 0; }
.process-step__num { color: transparent; font-family: "Space Grotesk", sans-serif; font-size: clamp(74px, 11vw, 132px); font-weight: 700; line-height: .85; text-align: center; -webkit-text-stroke: 1.6px rgba(255, 107, 53, .55); }
.process-step__body h3 { margin: 4px 0 8px; font-size: 22px; }
.process-step__body p { color: var(--muted); }
.process-step:nth-child(even) .process-step__num { order: 2; }
.process-step:nth-child(even) .process-step__body { order: 1; text-align: right; }
.process-step::after { position: absolute; top: 50%; left: 50%; z-index: 1; width: 14px; height: 14px; background: var(--orange); border: 3px solid var(--paper); border-radius: 50%; box-shadow: 0 0 0 2px var(--orange); transform: translate(-50%, -50%); content: ""; }

/* faq-03 */
.faq__layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 54px; align-items: start; }
.faq__side { position: sticky; top: 110px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: grid; grid-template-columns: 42px 1fr 24px; gap: 14px; align-items: center; padding: 22px 4px; color: var(--ink); font-weight: 700; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { color: var(--orange); font-size: 22px; content: "+"; transition: transform .25s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__no { color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 12px; }
.faq-item__answer { padding: 0 38px 24px 60px; color: var(--muted); }

/* cta-01 */
.final-cta { position: relative; display: flex; min-height: 720px; align-items: center; overflow: hidden; color: #FFFFFF; text-align: center; }
.final-cta__bg { position: absolute; inset: 0; }
.final-cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta__bg::after { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(15, 38, 59, .9), rgba(15, 38, 59, .6) 54%, rgba(44, 42, 41, .88)); content: ""; }
.final-cta__glow { position: absolute; width: 50vw; height: 50vw; background: radial-gradient(circle, rgba(255, 107, 53, .7), transparent 66%); border-radius: 50%; filter: blur(80px); mix-blend-mode: screen; animation: glow-drift 10s ease-in-out infinite alternate; }
.final-cta__inner { position: relative; z-index: 2; width: min(820px, calc(100% - 48px)); margin-inline: auto; }
.final-cta h2 { margin: 22px 0 0; color: #FFFFFF; font-size: clamp(42px, 6vw, 76px); font-weight: 900; }
.final-cta p { max-width: 34em; margin: 24px auto 0; color: rgba(255, 255, 255, .82); font-size: 17px; }
.final-cta__icon { width: 96px; height: 96px; margin: 0; object-fit: contain; border: 4px solid rgba(255, 255, 255, .72); border-radius: 50%; background: #FFFFFF; }
.final-cta__inner > picture { display: block; width: 96px; height: 96px; margin: 0 auto 20px; }
@keyframes glow-drift { to { transform: translate(35vw, 14vh) scale(1.18); } }

/* footer-04 */
.site-footer { color: #F4F0EB; background: var(--navy-2); }
.footer-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 38px 0; border-bottom: 1px solid rgba(255, 255, 255, .14); }
.footer-cta h2 { margin: 6px 0 0; color: #FFFFFF; font-size: 24px; }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 42px; padding: 46px 0 50px; }
.footer-brand p { color: rgba(255, 255, 255, .58); font-size: 12px; }
.footer-col h3 { color: var(--amber); font-family: "Space Grotesk", sans-serif; font-size: 10px; letter-spacing: .2em; }
.footer-col a { display: block; padding: 5px 0; color: rgba(255, 255, 255, .8); font-size: 13px; text-decoration: none; }
.footer-col a:hover { color: var(--orange); }
.footer-legal { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0 26px; border-top: 1px solid rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .52); font-size: 11px; }
.footer-legal__links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal a { text-decoration: none; }

/* fixed pages */
.page-hero { position: relative; display: flex; min-height: 430px; align-items: end; overflow: hidden; padding: 150px 0 72px; color: #FFFFFF; background: var(--navy); }
.page-hero::before { position: absolute; inset: 0; z-index: 2; background: linear-gradient(100deg, rgba(15, 38, 59, .92), rgba(23, 50, 77, .7)); content: ""; }
.page-hero .wrap { position: relative; z-index: 3; }
.page-hero h1 { margin: 8px 0 14px; color: #FFFFFF; font-size: clamp(38px, 6vw, 68px); font-weight: 900; }
.page-hero p { max-width: 40em; color: rgba(255, 255, 255, .8); }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.page-hero__mq { display: flex; width: max-content; height: 100%; animation: page-marquee 54s linear infinite; }
.page-hero__mq picture { display: block; height: 100%; flex: 0 0 auto; }
.page-hero__mq img { width: auto; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.page-hero__mq img[src$="noda-naohiro-main.jpg"] { object-position: 42% 18%; }
.page-hero__mq img[src$="noda-naohiro-selfie.jpg"] { object-position: 30% center; }
.page-hero__mq img[src$="shimokawa-mayumi-main.jpg"] { object-position: 50% 18%; }
.page-hero__mq img[src$="shimokawa-mayumi-speaking.jpg"] { object-position: 56% 20%; }
.page-hero__mq img[src$="ikechan-icon.png"] { object-fit: contain; object-position: center top; background: #fff; }
.page-hero__mq img[src$="mamisuke.jpg"] { object-position: 52% 12%; }
.page-hero__mq img[src$="waketa-san.png"] { object-fit: contain; object-position: center top; background: #fff; }
.page-hero__mq img[src$="furuhata-asako.webp"] { object-position: 50% 22%; }
.page-hero__mq img[src$="shimizu-sayumi.webp"] { object-position: 58% 10%; }
.page-hero__mq img[src$="shimakayo.webp"] { object-position: 50% 18%; }
.page-hero__mq img[src$="terashio-akari.webp"] { object-position: 46% 20%; }
.page-hero__mq img[src$="shioya-kyoko.webp"] { object-position: 50% 18%; }
.page-hero__mq img[src$="tsurumaki-yosuke.webp"] { object-position: 50% 18%; }
.page-hero__mq img[src$="hosoya-emiko.webp"] { object-position: 54% 20%; }
.page-hero__mq img[src$="kojima-manami.webp"] { object-position: 50% 22%; }
.page-hero__mq img[src$="yamaguchi-mika.webp"] { object-position: 50% 18%; }
@keyframes page-marquee { to { transform: translateX(-50%); } }
.crumb { color: rgba(255, 255, 255, .64); font-family: "Space Grotesk", sans-serif; font-size: 10px; letter-spacing: .12em; }
.crumb a { color: #FFFFFF; text-decoration: none; }
.page-sec { padding: 86px 0; }
.page-sec--paper { background: var(--paper); }
.page-copy { max-width: 800px; }
.page-copy h2 { margin: 0 0 24px; font-size: clamp(30px, 4vw, 46px); font-weight: 900; }
.page-copy h3 { margin: 40px 0 12px; font-size: 23px; }
.page-copy p, .page-copy li { font-size: 16px; line-height: 2; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--reverse > :first-child { order: 2; }
.split__image { position: relative; min-height: 420px; overflow: hidden; border-radius: var(--radius); }
.split__image img { width: 100%; height: 100%; object-fit: cover; }
.split__image img[src$="noda-naohiro-selfie.jpg"] { object-position: 32% center; }
.split__image img[src$="noda-naohiro-village.jpg"] { object-fit: contain; object-position: center; padding: 14px; background: #f8f4e7; }
.split__image img[src$="shimokawa-mayumi-speaking.jpg"] { object-position: 54% 20%; }
.fact-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.fact { min-height: 180px; padding: 28px; background: var(--paper); }
.fact b { display: block; color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 44px; line-height: 1; }
.fact span { display: block; margin-top: 14px; color: var(--muted); font-size: 13px; }
.link-index { border-top: 1px solid var(--ink); }
.link-index a { display: grid; grid-template-columns: 120px 1fr auto; gap: 20px; align-items: center; padding: 22px 4px; border-bottom: 1px solid var(--line); text-decoration: none; }
.link-index a:hover { color: var(--orange); }
.legal-copy { max-width: 880px; }
.legal-copy h2 { margin-top: 54px; padding-bottom: 10px; border-bottom: 1px solid var(--line); font-size: 26px; }
.legal-copy h3 { margin-top: 34px; font-size: 19px; }
.legal-copy p, .legal-copy li, .legal-copy dd, .legal-copy dt { line-height: 1.95; }
.legal-copy dl { display: grid; grid-template-columns: 180px 1fr; border-top: 1px solid var(--line); }
.legal-copy dt, .legal-copy dd { margin: 0; padding: 14px 0; border-bottom: 1px solid var(--line); }
.legal-copy dt { font-weight: 700; }
.line-panel { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
.line-panel__icon { width: 110px; height: 110px; object-fit: contain; border-radius: 50%; }
.line-panel > picture { display: block; width: 110px; height: 110px; }

/* preserved legacy routes: story vision / directory / AI writer */
.legacy-lead { max-width: 820px; margin-inline: auto; text-align: center; }
.legacy-lead h2 { font-size: clamp(34px, 5vw, 62px); }
.legacy-lead p { color: var(--muted); font-size: 17px; }
.story-quote { position: relative; max-width: 920px; margin: 0 auto; padding: 54px 60px; color: #FFFFFF; background: var(--navy); }
.story-quote::before { position: absolute; top: 18px; left: 24px; color: var(--orange); font-family: Georgia, serif; font-size: 72px; line-height: 1; content: "“"; }
.story-quote p { margin: 0; font-size: clamp(24px, 3.4vw, 40px); font-weight: 900; line-height: 1.65; }
.story-quote small { display: block; margin-top: 18px; color: rgba(255, 255, 255, .64); }
.feature-stack { display: grid; gap: 1px; margin-top: 42px; background: var(--line); border: 1px solid var(--line); }
.feature-row { display: grid; grid-template-columns: 110px 1fr; gap: 34px; padding: 34px; background: var(--paper); }
.feature-row__no { color: transparent; font-family: "Space Grotesk", sans-serif; font-size: 58px; font-weight: 700; line-height: 1; -webkit-text-stroke: 1.5px var(--orange); }
.feature-row h3 { margin: 0 0 8px; font-size: 24px; }
.feature-row p { margin: 0; color: var(--muted); }
.story-vision-band { padding: 70px 0; color: #FFFFFF; background: var(--navy-2); }
.story-vision-band h2 { color: #FFFFFF; }
.vision-goals { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 34px; background: rgba(255,255,255,.18); }
.vision-goal { min-height: 180px; padding: 30px; background: var(--navy); }
.vision-goal b { display: block; color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: clamp(40px, 6vw, 76px); line-height: 1; }
.vision-goal span { display: block; margin-top: 13px; color: rgba(255,255,255,.75); }
.project-price { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 34px; border: 1px solid var(--line); background: var(--soft-orange); }
.project-price strong { color: var(--ink); font-size: 22px; }
.project-price b { color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 42px; white-space: nowrap; }
.project-growth { margin-top: 22px; padding: 24px 26px; border-left: 4px solid var(--orange); background: #fff; box-shadow: 0 14px 36px rgba(28,39,48,.08); }
.project-growth strong { display: block; color: var(--ink); font-family: "Noto Serif JP", serif; font-size: clamp(18px,2vw,23px); line-height: 1.65; }
.project-growth p { margin: 10px 0 0; color: var(--muted); font-size: 15px; line-height: 2; }
.project-note { margin-top: 12px; color: var(--muted); font-size: 12px; }
.directory-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; margin: 34px 0 24px; }
.directory-summary { color: var(--muted); font-size: 13px; }
.directory-table-wrap { overflow-x: auto; border-top: 2px solid var(--ink); }
.directory-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.directory-table th, .directory-table td { padding: 17px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
.directory-table th { color: var(--muted); font-family: "Space Grotesk", sans-serif; font-size: 10px; letter-spacing: .12em; }
.directory-table td:first-child { color: var(--muted); font-family: "Space Grotesk", sans-serif; font-size: 11px; }
.directory-table td:nth-child(2) { color: var(--ink); font-weight: 700; }
.directory-table a { color: var(--navy); text-decoration-color: var(--orange); text-underline-offset: 4px; }
.directory-status { display: inline-flex; padding: 4px 9px; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; font-size: 11px; white-space: nowrap; }
.directory-status--live { color: var(--ink); border-color: var(--amber); background: var(--soft-orange); }
.writer-pain { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 34px; padding: 0; list-style: none; }
.writer-pain li { padding: 20px 22px; color: var(--ink); border-left: 4px solid var(--orange); background: var(--paper); font-weight: 700; }
.writer-pain li::before { color: var(--orange); content: "✓ "; }
.writer-steps { counter-reset: writer-step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.writer-step { min-height: 240px; padding: 28px; color: #FFFFFF; background: var(--navy); }
.writer-step::before { counter-increment: writer-step; color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 54px; font-weight: 700; content: "0" counter(writer-step); }
.writer-step h3 { margin-top: 22px; color: #FFFFFF; }
.writer-step p { color: rgba(255,255,255,.7); }
.create-start { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: center; margin-top: 46px; padding: 42px; border: 1px solid var(--line); background: var(--paper); }
.create-start h3 { margin: 12px 0 14px; font-size: clamp(28px, 4vw, 46px); }
.create-start__lead { color: var(--muted); font-size: 16px; }
.start-loop { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.start-loop__item { min-height: 150px; padding: 24px; background: var(--canvas); }
.start-loop__item b { display: block; color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 12px; letter-spacing: .1em; }
.start-loop__item strong { display: block; margin-top: 12px; color: var(--ink); font-size: 18px; }
.start-loop__item span { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; }
.income-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 34px; }
.income-card { padding: 28px; border: 1px solid var(--line); background: var(--paper); }
.income-card__no { color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 12px; }
.income-card h3 { margin: 8px 0; font-size: 20px; }
.income-card p { color: var(--muted); font-size: 14px; }
.income-card--wide { grid-column: 1 / -1; color: #FFFFFF; background: var(--navy); }
.income-card--wide h3 { color: #FFFFFF; }
.income-card--wide p { color: rgba(255,255,255,.72); }
.legal-notice { margin-top: 24px; padding: 18px 20px; color: var(--muted); border: 1px solid var(--line); background: var(--canvas); font-size: 12px; }
.writer-mission { position: relative; overflow: hidden; color: #FFFFFF; background: var(--navy-2); }
.writer-mission::before { position: absolute; top: -160px; right: -100px; width: 520px; height: 520px; border: 1px solid rgba(255,168,86,.3); border-radius: 50%; content: ""; }
.writer-mission__grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.writer-mission h2, .writer-mission h3 { color: #FFFFFF; }
.writer-mission p { color: rgba(255,255,255,.76); }
.writer-mission__image { min-height: 520px; overflow: hidden; }
.writer-mission__image picture { display: block; width: 100%; height: 100%; }
.writer-mission__image img { width: 100%; height: 100%; object-fit: cover; }
.growth-ladder { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; margin-top: 36px; background: var(--line); border: 1px solid var(--line); }
.growth-step { position: relative; min-height: 250px; padding: 26px 22px; background: var(--paper); }
.growth-step__no { color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .15em; }
.growth-step h3 { margin: 28px 0 10px; font-size: 19px; }
.growth-step p { color: var(--muted); font-size: 13px; }
.growth-step:not(:last-child)::after { position: absolute; top: 24px; right: 18px; color: var(--orange); content: "→"; }
.payment-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.payment-step { min-height: 250px; padding: 28px; border: 1px solid var(--line); background: var(--paper); }
.payment-step__tag { color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .13em; }
.payment-step b { display: block; margin: 18px 0 10px; color: var(--ink); font-size: 26px; line-height: 1.45; }
.payment-step p { color: var(--muted); font-size: 14px; }
.payment-step--accent { color: #FFFFFF; border-color: var(--navy); background: var(--navy); }
.payment-step--accent b { color: #FFFFFF; }
.payment-step--accent p { color: rgba(255,255,255,.72); }
.safety-net { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; margin-top: 22px; padding: 30px; color: #FFFFFF; background: var(--navy-2); }
.safety-net__mark { display: grid; width: 86px; height: 86px; place-items: center; color: var(--ink); background: var(--orange); border-radius: 50%; font-family: "Space Grotesk", sans-serif; font-size: 11px; font-weight: 700; text-align: center; }
.safety-net h3 { margin: 0 0 6px; color: #FFFFFF; }
.safety-net p { color: rgba(255,255,255,.72); }
.model-case { margin-top: 26px; padding: 30px; border: 1px solid var(--line); background: var(--soft-orange); }
.model-case h3 { margin-bottom: 20px; }
.model-case__row { display: grid; grid-template-columns: 1fr auto; gap: 22px; padding: 10px 0; border-bottom: 1px solid rgba(44,42,41,.14); }
.model-case__row b { color: var(--ink); }
.model-case__total { margin-top: 18px; color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: clamp(28px, 4vw, 46px); font-weight: 700; }
.support-engines { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 38px; }
.support-engine { position: relative; overflow: hidden; padding: 34px; border: 1px solid var(--line); background: var(--paper); }
.support-engine::after { position: absolute; right: -44px; bottom: -64px; width: 180px; height: 180px; border: 1px solid rgba(255,107,53,.28); border-radius: 50%; content: ""; }
.support-engine--navy { color: #FFFFFF; border-color: var(--navy); background: var(--navy); }
.support-engine--navy h3 { color: #FFFFFF; }
.support-engine--navy p { color: rgba(255,255,255,.72); }
.support-engine__tag { color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.support-engine h3 { margin: 16px 0 10px; font-size: 27px; }
.money-route { display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: center; margin: 24px 0; }
.money-route__box { min-height: 88px; padding: 16px; color: var(--ink); border: 1px solid var(--line); background: var(--canvas); }
.money-route__box b { display: block; color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 22px; }
.money-route__box span { display: block; color: var(--muted); font-size: 11px; }
.money-route__box--reward { border-color: var(--orange); background: var(--soft-orange); }
.money-route__box--reward b { font-size: 28px; }
.money-route__arrow { color: var(--orange); font-size: 12px; font-weight: 900; white-space: nowrap; }
.support-engine--navy .money-route__box { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.08); }
.support-engine--navy .money-route__box span { color: rgba(255,255,255,.64); }
.support-engine--navy .money-route__box--reward { border-color: var(--orange); background: var(--orange); }
.support-engine--navy .money-route__box--reward b, .support-engine--navy .money-route__box--reward span { color: var(--ink); }
.money-equation { margin: 18px 0 6px; color: var(--ink); font-size: 17px; font-weight: 700; }
.money-equation strong { color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 1.35em; }
.support-engine--navy .money-equation { color: #FFFFFF; }
.workshop-note { margin-top: 20px; padding: 18px; color: var(--ink); border-left: 4px solid var(--orange); background: var(--soft-orange); }
.workshop-note b { display: block; }
.workshop-note span { color: var(--muted); font-size: 13px; }
.support-engine--navy .workshop-note { color: #FFFFFF; background: rgba(255,168,86,.12); }
.support-engine--navy .workshop-note span { color: rgba(255,255,255,.66); }
.stability-total { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; margin-top: 20px; padding: 24px 28px; color: #FFFFFF; background: var(--navy-2); }
.stability-total strong { font-size: 18px; }
.stability-total b { color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: clamp(28px, 5vw, 48px); white-space: nowrap; }
.team-activities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 30px; }
.team-activity { padding: 23px; border-left: 4px solid var(--orange); background: var(--paper); }
.team-activity b { display: block; color: var(--ink); }
.team-activity span { color: var(--muted); font-size: 13px; }
.writer-values { display: grid; gap: 0; margin-top: 34px; border-top: 1px solid var(--ink); }
.writer-value { display: grid; grid-template-columns: 90px 1fr; gap: 26px; padding: 24px 4px; border-bottom: 1px solid var(--line); }
.writer-value__no { color: transparent; font-family: "Space Grotesk", sans-serif; font-size: 48px; font-weight: 700; line-height: 1; -webkit-text-stroke: 1.5px var(--orange); }
.writer-value h3 { margin: 0 0 4px; }
.writer-value p { color: var(--muted); }

/* AI仕組みラボ / 5-step project */
.two-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 38px; background: var(--line); border: 1px solid var(--line); }
.pillar-card { min-height: 300px; padding: 34px; background: var(--paper); }
.pillar-card--main { color: #FFFFFF; background: var(--navy); }
.pillar-card--main h3 { color: #FFFFFF; }
.pillar-card__tag { color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .15em; }
.pillar-card h3 { margin: 22px 0 12px; font-size: 28px; }
.pillar-card p { color: var(--muted); }
.pillar-card--main p { color: rgba(255,255,255,.72); }
.ba-controls { display: flex; gap: 8px; margin: 32px 0 18px; }
.ba-panels { min-height: 360px; }
.ba-panel { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 360px; overflow: hidden; color: #FFFFFF; background: var(--navy-2); }
.ba-panel__label { display: flex; flex-direction: column; justify-content: center; padding: 42px; background: var(--navy); }
.ba-panel__label b { color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: clamp(54px, 8vw, 105px); line-height: .9; }
.ba-panel__label span { margin-top: 16px; color: rgba(255,255,255,.65); }
.ba-list { display: grid; align-content: center; gap: 1px; margin: 0; padding: 30px; list-style: none; background: rgba(255,255,255,.12); }
.ba-list li { padding: 18px 20px; color: #FFFFFF; background: var(--navy-2); }
.ba-list li::before { margin-right: 10px; color: var(--orange); content: "→"; }
.labo-steps { margin-top: 38px; border-top: 1px solid var(--ink); }
.labo-step { border-bottom: 1px solid var(--line); }
.labo-step summary { display: grid; grid-template-columns: 110px 1fr auto; gap: 24px; align-items: center; padding: 28px 4px; cursor: pointer; list-style: none; }
.labo-step summary::-webkit-details-marker { display: none; }
.labo-step__num { color: transparent; font-family: "Space Grotesk", sans-serif; font-size: 46px; font-weight: 700; -webkit-text-stroke: 1.4px var(--orange); }
.labo-step summary strong { color: var(--ink); font-size: 21px; }
.labo-step summary::after { color: var(--orange); font-size: 28px; content: "+"; transition: transform .25s ease; }
.labo-step[open] summary::after { transform: rotate(45deg); }
.labo-step__body { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; padding: 0 28px 34px 138px; }
.labo-step__body h3 { margin-bottom: 8px; }
.labo-step__body ul { margin: 0; padding-left: 1.2em; }
.practice-work { padding: 22px; border-left: 4px solid var(--orange); background: var(--soft-orange); }
.practice-work b { display: block; color: var(--ink); }
.practice-work p { color: var(--muted); font-size: 13px; }
.entry-routes { display: grid; grid-template-columns: .92fr .92fr 1.16fr; gap: 14px; margin-top: 36px; }
.entry-route { position: relative; display: flex; min-height: 440px; flex-direction: column; padding: 30px; border: 1px solid var(--line); background: var(--paper); }
.entry-route--main { color: #FFFFFF; border-color: var(--navy); background: var(--navy); transform: translateY(-12px); }
.entry-route--main h3 { color: #FFFFFF; }
.entry-route--main p { color: rgba(255,255,255,.7); }
.entry-route__tag { color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.entry-route h3 { margin: 22px 0 12px; font-size: 25px; }
.entry-route p { color: var(--muted); }
.entry-route__price { margin-top: auto; padding: 22px 0; color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 30px; font-weight: 700; }
.entry-route .btn { align-self: flex-start; }
.schedule { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.schedule-card { padding: 26px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.schedule-card span { color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 11px; letter-spacing: .12em; }
.schedule-card b { display: block; margin-top: 12px; color: #FFFFFF; font-size: 28px; }
.schedule-card p { color: rgba(255,255,255,.66); }

/* Mirai Soudan partner project */
.project-card--portrait .project-card__img { background: #f7f4ef; }
.project-card--portrait .project-card__img img { object-position: center 22%; }
.project-card--mirai .project-card__img { background: linear-gradient(120deg, #17324D 0%, #21415D 46%, #F7F4EF 46%, #FFFFFF 100%); }
.project-card--mirai .project-card__img img { width: 48%; height: 100%; margin-left: auto; object-fit: contain; object-position: right bottom; filter: saturate(1.04); }
.project-card--mirai .project-card__img::before { position: absolute; top: 24px; left: 34px; z-index: 1; width: min(34%, 220px); height: 54%; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: radial-gradient(circle at 30% 24%, rgba(255,168,86,.45), transparent 26%), radial-gradient(circle at 72% 68%, rgba(255,255,255,.16), transparent 32%); content: ""; }
.project-card--mirai .project-card__img::after { background: linear-gradient(90deg, rgba(15,38,59,.92) 0%, rgba(15,38,59,.72) 48%, rgba(15,38,59,.2) 100%); }
.project-card--mirai .project-card__body { max-width: 58%; }
.project-card--kindle .project-card__img img { object-position: center 42%; }
.project-card--storyhp .project-card__img img { object-position: center 54%; }
.partner-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; color: #FFFFFF; background: var(--navy); font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.partner-badge::before { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; content: ""; }
.mirai-guide { display: grid; grid-template-columns: minmax(260px, .72fr) 1.28fr; overflow: hidden; border: 1px solid var(--line); background: var(--paper); }
.mirai-guide__photo { min-height: 520px; background: #f7f4ef; }
.mirai-guide__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.mirai-guide__photo img[src$="waketa-san.png"] { object-fit: contain; padding: 18px; background: #fff; }
.mirai-guide__photo img[src$="mamisuke.jpg"] { object-position: 52% 30%; }
.mirai-guide__body { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 6vw, 72px); }
.mirai-guide__name { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.mirai-guide__name strong { display: block; color: var(--ink); font-size: 24px; }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px; }
.support-card { min-height: 240px; padding: 30px; border: 1px solid var(--line); background: var(--paper); }
.support-card__no { color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 11px; letter-spacing: .12em; }
.support-card h3 { margin: 24px 0 10px; font-size: 22px; }
.support-card p { color: var(--muted); }
.support-card .btn { margin-top: 18px; }
.mirai-promises { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 34px; border-top: 1px solid var(--line); }
.mirai-promise { display: grid; grid-template-columns: 54px 1fr; gap: 16px; padding: 24px 18px; border-bottom: 1px solid var(--line); }
.mirai-promise:nth-child(odd) { border-right: 1px solid var(--line); }
.mirai-promise b { color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 28px; }
.mirai-promise strong { color: var(--ink); }
.mirai-course { margin-top: 18px; border: 1px solid var(--line); background: var(--paper); }
.mirai-course summary { display: grid; grid-template-columns: 92px 1fr auto; align-items: center; gap: 20px; padding: 28px; cursor: pointer; list-style: none; }
.mirai-course summary::-webkit-details-marker { display: none; }
.mirai-course summary::after { color: var(--orange); font-size: 28px; content: "+"; }
.mirai-course[open] summary::after { transform: rotate(45deg); }
.mirai-course__num { color: transparent; font-family: "Space Grotesk", sans-serif; font-size: 42px; font-weight: 700; -webkit-text-stroke: 1px var(--orange); }
.mirai-course summary strong { color: var(--ink); font-size: 21px; }
.mirai-course__body { display: grid; grid-template-columns: .76fr 1.24fr; gap: 32px; padding: 0 32px 34px 124px; }
.mirai-course__future { padding: 24px; color: #FFFFFF; background: var(--navy); }
.mirai-course__future h3 { color: #FFFFFF; }
.mirai-course__future p { color: rgba(255,255,255,.72); }
.lesson-list { margin: 0; padding: 0; list-style: none; counter-reset: lesson; }
.lesson-list li { position: relative; padding: 11px 8px 11px 42px; border-bottom: 1px solid var(--line); color: var(--ink); }
.lesson-list li::before { position: absolute; left: 6px; color: var(--orange); font-family: "Space Grotesk", sans-serif; counter-increment: lesson; content: counter(lesson, decimal-leading-zero); }
.mirai-voices { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px; }
.mirai-voice { padding: 30px; color: #FFFFFF; background: var(--navy); }
.mirai-voice p { color: #FFFFFF; font-family: "Shippori Mincho", serif; font-size: 18px; line-height: 1.9; }
.mirai-voice small { color: rgba(255,255,255,.62); }
.mirai-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.source-note { margin-top: 24px; color: var(--muted); font-size: 11px; line-height: 1.8; }

/* Kindle publishing joint project */
.kindle-band { position: relative; overflow: hidden; color: #FFFFFF; background: linear-gradient(120deg, #312e81 0%, #4f46e5 48%, #f97316 120%); }
.kindle-band::after { position: absolute; inset: 0; background-image: radial-gradient(circle at 78% 20%, rgba(255,255,255,.22), transparent 28%), linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: auto, 42px 42px, 42px 42px; content: ""; }
.kindle-band .wrap { position: relative; z-index: 1; }
.kindle-band h2, .kindle-band h3 { color: #FFFFFF; }
.kindle-band p { color: rgba(255,255,255,.76); }
.kindle-levels { display: grid; gap: 0; margin-top: 38px; border-top: 1px solid var(--line); }
.kindle-level { display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 24px; padding: 26px 10px; border-bottom: 1px solid var(--line); }
.kindle-level__no { color: transparent; font-family: "Space Grotesk", sans-serif; font-size: 42px; font-weight: 700; -webkit-text-stroke: 1px var(--orange); }
.kindle-level h3 { margin: 0 0 6px; }
.kindle-level p { margin: 0; color: var(--muted); }
.kindle-level__role { padding: 7px 12px; color: #FFFFFF; background: var(--navy); font-size: 11px; font-weight: 700; white-space: nowrap; }
.kindle-specs { display: grid; grid-template-columns: .85fr 1.15fr; gap: 14px; margin-top: 34px; }
.kindle-price { display: flex; min-height: 330px; flex-direction: column; justify-content: space-between; padding: 34px; color: #FFFFFF; background: var(--navy); }
.kindle-price span { color: var(--orange); font-size: 11px; letter-spacing: .12em; }
.kindle-price b { display: block; color: #FFFFFF; font-family: "Space Grotesk", sans-serif; font-size: clamp(38px, 6vw, 64px); }
.kindle-price small { color: rgba(255,255,255,.65); }
.kindle-includes { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.kindle-includes div { padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kindle-includes div:nth-child(even) { border-right: 0; }
.kindle-includes b { display: block; margin-bottom: 6px; color: var(--ink); }
.kindle-includes span { color: var(--muted); font-size: 12px; }
.kindle-cases { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px; }
.kindle-case { padding: 28px; border: 1px solid var(--line); background: var(--paper); }
.kindle-case__tag { color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 10px; letter-spacing: .12em; }
.kindle-case h3 { margin: 18px 0 8px; font-size: 19px; }
.kindle-case p { color: var(--muted); }
.publish-dept { display: grid; grid-template-columns: .95fr 1.1fr .95fr; gap: 14px; margin-top: 34px; }
.publish-dept article { min-height: 270px; padding: 28px; color: #FFFFFF; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.17); }
.publish-dept b { display: block; margin-bottom: 18px; color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 12px; letter-spacing: .1em; }
.publish-dept h3 { font-size: 22px; }

/* blog archive/single */
.p-newsgrid { display: grid; gap: 26px; }
.p-card { display: grid; grid-template-columns: 320px 1fr; overflow: hidden; color: inherit; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); text-decoration: none; transition: transform .25s ease, box-shadow .25s ease; }
.p-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.p-card__ph img { width: 100%; height: 100%; min-height: 190px; object-fit: cover; }
.p-card__bd { display: flex; flex-direction: column; gap: 10px; padding: 26px 30px; }
.p-card__meta { display: flex; gap: 10px; color: var(--muted); font-size: 11px; }
.p-card__cat { padding: 3px 10px; color: #FFFFFF; background: var(--navy); border-radius: 999px; }
.p-card__ttl { margin: 0; font-size: 22px; }
.p-card__ex { margin: 0; color: var(--muted); font-size: 13px; }
.p-card__more { color: var(--orange); font-family: "Space Grotesk", sans-serif; font-size: 11px; }
.post-hero { position: relative; overflow: hidden; padding: 128px 0 72px; color: #FFFFFF; background: var(--navy); }
.post-hero__bg { position: absolute; inset: 0; }
.post-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.post-hero__bg::after { position: absolute; inset: 0; background: rgba(15, 38, 59, .82); content: ""; }
.post-hero .wrap { position: relative; z-index: 1; max-width: 900px; }
.post-hero h1 { color: #FFFFFF; font-size: clamp(30px, 4vw, 48px); }
.post-hero__meta { display: flex; gap: 10px; margin-bottom: 16px; }
.post-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 48px; max-width: 1140px; margin-inline: auto; padding: 56px 24px 92px; align-items: start; }
.post-figure img { width: 100%; border-radius: var(--radius); }
.post-body p { margin-bottom: 1.6em; line-height: 2.05; }
.post-body h2 { margin: 2.3em 0 .8em; padding-left: 15px; border-left: 4px solid var(--orange); font-size: 27px; }
.post-body h3 { margin: 1.8em 0 .7em; font-size: 21px; }
.post-foot__bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--line); }
.post-foot__cta { padding: 10px 20px; color: var(--ink); background: var(--orange); border-radius: 999px; font-weight: 700; text-decoration: none; }
.post-side { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 22px; }
.widget { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.widget__ttl { margin: 0 0 14px; padding-left: 10px; border-left: 4px solid var(--orange); font-size: 16px; }
.w-cta { color: #FFFFFF; background: var(--navy); }
.w-cta .widget__ttl { color: #FFFFFF; }
.w-cta a { display: inline-block; padding: 9px 15px; color: var(--ink); background: var(--orange); border-radius: 999px; text-decoration: none; }
.w-search { display: flex; gap: 7px; }
.w-search input { min-width: 0; flex: 1; padding: 9px; border: 1px solid var(--line); border-radius: 7px; }
.w-search button { color: #FFFFFF; border: 0; border-radius: 7px; background: var(--navy); }
.w-recent a { display: grid; grid-template-columns: 66px 1fr; gap: 10px; margin-top: 12px; text-decoration: none; }
.w-recent img { width: 66px; height: 46px; object-fit: cover; }
.w-recent b { font-size: 12px; line-height: 1.5; }
.w-recent span { color: var(--muted); font-size: 10px; }
.w-list { margin: 0; padding: 0; list-style: none; }
.w-list a { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--line); text-decoration: none; font-size: 13px; }

/* Vanilla reveal */
.j [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .85s cubic-bezier(.22, 1, .36, 1), transform .85s cubic-bezier(.22, 1, .36, 1); }
.j [data-reveal="left"] { transform: translateX(-32px); }
.j [data-reveal="right"] { transform: translateX(32px); }
.j [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .site-nav { display: none; }
  .header-pill { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .fact-wall { grid-template-columns: 1fr 1fr; }
  .writer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .wrap, .wrap--wide { width: min(100% - 36px, var(--max)); }
  .section { padding: 72px 0; }
  .site-header { top: 10px; }
  .header-pill { width: calc(100% - 20px); padding-left: 13px; }
  .brand__mark { width: 32px; height: 32px; }
  .brand__name { font-size: 16px; }
  .hero { min-height: 760px; }
  .hero__bg::after { background: linear-gradient(180deg, rgba(251, 249, 246, .94) 0%, rgba(251, 249, 246, .88) 58%, rgba(15, 38, 59, .38) 100%); }
  .hero-inner { grid-template-columns: 1fr; min-height: 760px; align-items: start; }
  .hero-copy { padding: 130px 0 250px; }
  .hero h1 { font-size: clamp(35px, 10vw, 43px); }
  .hero h1 span { white-space: normal; }
  .hero-lead { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero__label { display: none; }
  .manifest__row { font-size: 56px; }
  .manifest__top, .manifest__bottom { align-items: flex-start; flex-direction: column; }
  .strengths__grid, .faq__layout, .news__layout, .voices__top, .split { grid-template-columns: 1fr; gap: 34px; }
  .strengths__side, .faq__side, .news__side { position: static; }
  .strength { grid-template-columns: 64px 1fr; gap: 18px; }
  .strength__no { font-size: 48px; }
  .numbers { min-height: 0; }
  .numbers__field { display: grid; min-height: 0; gap: 34px; }
  .numbers__field::before { display: none; }
  .stat { position: static; text-align: left; }
  .stat .stat__value { justify-content: flex-start; font-size: 76px; }
  .project-head { align-items: flex-start; flex-direction: column; }
  .project-grid { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .writer-filter__head { align-items: flex-start; flex-direction: column; }
  .writer-filter__group { grid-template-columns: 1fr; }
  .writer-filter__children { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .area-chip { justify-content: center; width: 100%; padding: 7px 9px; font-size: 12px; }
  .area-chip--parent { width: auto; justify-content: center; }
  .writer-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .writer-card { grid-template-rows: 128px 1fr; border-radius: 18px; }
  .writer-card__body { padding: 14px; }
  .writer-card__meta { gap: 5px; margin-bottom: 10px; font-size: 9px; letter-spacing: .04em; }
  .writer-card__meta span { padding: 4px 7px; }
  .writer-card h3 { font-size: 17px; }
  .writer-card__company { margin-bottom: 10px; font-size: 11px; }
  .writer-card h4 { font-size: 13px; }
  .writer-card p { font-size: 12px; line-height: 1.75; }
  .writer-card__supports { gap: 5px; margin: 10px 0; }
  .writer-card__supports span { padding: 4px 7px; font-size: 10px; }
  .writer-card__note { display: none; }
  .writer-card .btn { width: 100%; min-height: 38px; padding: 9px 10px; font-size: 11px; }
  .member-profile-card { grid-template-rows: 220px auto; border-radius: 22px; }
  .member-profile-card img { min-height: 220px; }
  .member-profile-card div { padding: 18px; }
  .member-detail-actions { gap: 10px; }
  .member-detail-actions .btn { width: 100%; }
  .member-link-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .member-link { min-height: 86px; padding: 11px 8px; border-radius: 14px; }
  .member-link__icon { min-width: 32px; height: 32px; font-size: 10px; }
  .member-detail-final .member-detail-actions { align-items: stretch; flex-direction: column; }
  .project-card--big, .project-card--wide { grid-column: span 1; grid-row: span 1; }
  .project-card--big p { display: none; }
  .project-card--mirai .project-card__body { max-width: none; }
  .project-card--mirai .project-card__img img { width: 42%; }
  .voice-player { grid-template-columns: auto 1fr auto; }
  .voice-player__bars { grid-column: 1 / -1; }
  .voices__image { min-height: 300px; }
  .voice-index li { grid-template-columns: 42px 1fr; }
  .voice-index small { grid-column: 2; }
  .news-item { grid-template-columns: 104px 1fr; gap: 15px; }
  .news-item img { width: 104px; }
  .news-item > picture { width: 104px; }
  .process__spine { left: 22px; }
  .process-step { grid-template-columns: 1fr; gap: 6px; padding: 24px 0 24px 52px; }
  .process-step__num, .process-step:nth-child(even) .process-step__num { order: 0; font-size: 62px; text-align: left; }
  .process-step__body, .process-step:nth-child(even) .process-step__body { order: 0; text-align: left; }
  .process-step::after { left: 22px; }
  .final-cta { min-height: 650px; }
  .final-cta h2 { font-size: 40px; }
  .footer-cta { align-items: flex-start; flex-direction: column; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-legal { align-items: flex-start; flex-direction: column; }
  .page-hero { min-height: 360px; padding-top: 128px; }
  .split--reverse > :first-child { order: 0; }
  .split__image { min-height: 300px; }
  .fact-wall { grid-template-columns: 1fr 1fr; }
  .link-index a { grid-template-columns: 82px 1fr auto; }
  .legal-copy dl { grid-template-columns: 1fr; }
  .legal-copy dt { padding-bottom: 4px; border-bottom: 0; }
  .legal-copy dd { padding-top: 0; }
  .p-card { grid-template-columns: 1fr; }
  .p-card__ph img { min-height: 0; aspect-ratio: 1200 / 630; }
  .post-wrap { grid-template-columns: 1fr; padding: 42px 18px 72px; }
  .post-side { position: static; }
  .feature-row { grid-template-columns: 72px 1fr; gap: 18px; padding: 26px 20px; }
  .feature-row__no { font-size: 44px; }
  .vision-goals, .writer-pain, .writer-steps, .income-grid { grid-template-columns: 1fr; }
  .income-card--wide { grid-column: auto; }
  .project-price { grid-template-columns: 1fr; }
  .project-price b { font-size: 36px; }
  .story-quote { padding: 48px 28px; }
  .writer-mission__grid { grid-template-columns: 1fr; gap: 34px; }
  .writer-mission__image { min-height: 340px; }
  .growth-ladder, .payment-flow { grid-template-columns: 1fr; }
  .create-start { grid-template-columns: 1fr; padding: 28px 20px; }
  .start-loop { grid-template-columns: 1fr; }
  .growth-step { min-height: 0; }
  .growth-step:not(:last-child)::after { content: "↓"; }
  .safety-net { grid-template-columns: 1fr; }
  .team-activities { grid-template-columns: 1fr; }
  .writer-value { grid-template-columns: 58px 1fr; gap: 16px; }
  .writer-value__no { font-size: 38px; }
  .support-engines { grid-template-columns: 1fr; }
  .money-route { grid-template-columns: 1fr; }
  .money-route__arrow { text-align: center; }
  .stability-total { grid-template-columns: 1fr; }
  .two-pillars, .ba-panel, .entry-routes, .schedule { grid-template-columns: 1fr; }
  .mirai-guide, .support-grid, .mirai-promises, .mirai-course__body, .mirai-voices { grid-template-columns: 1fr; }
  .mirai-guide__photo { min-height: 420px; }
  .mirai-promise:nth-child(odd) { border-right: 0; }
  .mirai-course summary { grid-template-columns: 66px 1fr auto; padding: 22px 16px; }
  .mirai-course__num { font-size: 34px; }
  .mirai-course__body { padding: 0 16px 24px; }
  .kindle-level { grid-template-columns: 72px 1fr; gap: 14px; }
  .kindle-level__role { grid-column: 2; justify-self: start; }
  .kindle-specs, .kindle-includes, .kindle-cases, .publish-dept { grid-template-columns: 1fr; }
  .kindle-includes div { border-right: 0; }
  .labo-step summary { grid-template-columns: 72px 1fr auto; gap: 12px; }
  .labo-step__num { font-size: 36px; }
  .labo-step__body { grid-template-columns: 1fr; padding: 0 16px 28px 88px; }
  .entry-route { min-height: 0; }
  .entry-route--main { transform: none; }
}

@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .fact-wall { grid-template-columns: 1fr; }
  .news-item { grid-template-columns: 1fr; }
  .news-item img { width: 100%; }
  .news-item > picture { width: 100%; }
  .faq-item__answer { padding-left: 46px; }
  .link-index a { grid-template-columns: 1fr auto; }
  .link-index a span:first-child { display: none; }
}

@media (hover: none) {
  .btn, .site-nav a, .mobile-drawer__nav a, .filter-btn, .faq-item summary { min-height: 44px; }
  .project-card:hover .project-card__img img { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .j [data-reveal] { opacity: 1; transform: none; }
  .manifest__row, .page-hero__mq { animation: none; }
}
