/* ==========================================================================
 * HUNDRED Theme — sections.css
 * TOPおよびメンバーページのセクション別スタイル
 * ========================================================================== */


/* --------------------------------------------------------------------------
 * Hero (Section 001)
 * -------------------------------------------------------------------------- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background: var(--hundred-bg);
}
.hero__particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    display: block;
}
.hero__fallback {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 2;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}
.hero__fallback-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(80px, 15vw, 220px);
    letter-spacing: -0.03em;
    color: var(--hundred-text);
}
body[data-tier="0"] .hero__particles { display: none; }
body[data-tier="0"] .hero__fallback  { display: flex; }

.hero__overlay {
    position: relative;
    z-index: 3;
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 100px clamp(24px, 5vw, 80px) 40px;
    pointer-events: none;
}
.hero__top,
.hero__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--hundred-muted);
    text-transform: uppercase;
}
.hero__top-left,
.hero__top-right {
    display: flex; flex-direction: column; gap: 4px;
}
.hero__top-right { text-align: right; }
.hero__top-label {
    color: var(--hundred-accent);
    font-weight: 700;
}
.hero__center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 60px;
}
.hero__catch {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(14px, 1.6vw, 20px);
    letter-spacing: 0.4em;
    color: var(--hundred-text);
    margin-top: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: hero-fade 1.4s cubic-bezier(0.16, 1, 0.3, 1) 2.4s forwards;
}
.hero__subcatch {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(11px, 1vw, 14px);
    letter-spacing: 0.3em;
    color: var(--hundred-muted);
    margin-top: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: hero-fade 1.4s cubic-bezier(0.16, 1, 0.3, 1) 2.8s forwards;
}
@keyframes hero-fade {
    to { opacity: 1; transform: translateY(0); }
}
.hero__scroll {
    display: flex; align-items: center; gap: 12px;
}
.hero__scroll::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--hundred-muted);
    animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { transform: scaleX(0.3); transform-origin: left; }
    50%      { transform: scaleX(1);   transform-origin: left; }
}


/* --------------------------------------------------------------------------
 * Section 共通 セクションメタ
 * -------------------------------------------------------------------------- */
[class$="__meta"] {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--hundred-muted);
    text-transform: uppercase;
}


/* --------------------------------------------------------------------------
 * Manifesto (002)
 * -------------------------------------------------------------------------- */
.manifesto {
    position: relative;
    padding: 200px clamp(24px, 5vw, 80px) 160px;
    background: var(--hundred-bg);
    border-top: 1px solid var(--hundred-line);
    z-index: 1;
}
.manifesto__meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 120px;
}
.manifesto__num { color: var(--hundred-accent); font-weight: 700; }
.manifesto__title-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    margin-bottom: 160px;
    gap: 40px;
}
.manifesto__title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(56px, 12vw, 200px);
    letter-spacing: -0.03em;
    line-height: 0.88;
    color: var(--hundred-text);
}
.manifesto__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--hundred-muted);
}
.manifesto__hint {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    letter-spacing: 0.15em;
    line-height: 1.9;
    color: var(--hundred-muted);
    max-width: 340px;
    text-align: right;
    padding-bottom: 20px;
    white-space: normal;
}
.manifesto__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
}
.manifesto__label {
    grid-column: span 12;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--hundred-muted);
    text-transform: uppercase;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.manifesto__label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--hundred-line);
}
.manifesto__def {
    grid-column: span 6;
    padding-top: 24px;
    border-top: 1px solid var(--hundred-line);
}
.manifesto__def-head {
    display: flex;
    align-items: baseline;
    gap: 24px;
    margin-bottom: 32px;
}
.manifesto__def-num {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--hundred-accent);
    letter-spacing: 0.15em;
}
.manifesto__def-word {
    font-family: 'Inter', sans-serif;
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--hundred-text);
}
.manifesto__def-body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: var(--hundred-muted);
    max-width: 480px;
}
@media (max-width: 900px) {
    .manifesto__title-wrap { grid-template-columns: 1fr; gap: 40px; }
    .manifesto__hint { text-align: left; }
    .manifesto__def { grid-column: span 12; }
}


/* --------------------------------------------------------------------------
 * Services (003)
 * -------------------------------------------------------------------------- */
.services {
    position: relative;
    padding: 160px clamp(24px, 5vw, 80px);
    background: var(--hundred-bg-soft);
    border-top: 1px solid var(--hundred-line);
    z-index: 1;
}
.services__meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}
.services__num { color: var(--hundred-accent); font-weight: 700; }
.services__title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 10vw, 160px);
    letter-spacing: -0.03em;
    line-height: 0.88;
    color: var(--hundred-text);
    margin-bottom: 100px;
}
.services__list { display: grid; gap: 0; }
.services__item {
    display: grid;
    grid-template-columns: 60px 1fr 300px 40px;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid var(--hundred-line);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.services__item:last-child { border-bottom: 1px solid var(--hundred-line); }
.services__item:hover {
    padding-left: 24px;
    padding-right: 24px;
    background: rgba(255,255,255,0.02);
}
.services__item:hover .services__arrow { transform: translateX(8px); color: var(--hundred-accent); }
.services__item:hover .services__name  { color: var(--hundred-accent); }
.services__idx {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--hundred-muted);
    letter-spacing: 0.15em;
}
.services__name {
    font-family: 'Inter', sans-serif;
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 900;
    letter-spacing: -0.01em;
    color: var(--hundred-text);
    transition: color 0.4s ease;
}
.services__desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    color: var(--hundred-muted);
    line-height: 1.7;
}
.services__arrow {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    color: var(--hundred-muted);
    transition: transform 0.4s ease, color 0.4s ease;
    text-align: right;
}
@media (max-width: 900px) {
    .services__item { grid-template-columns: 40px 1fr 30px; gap: 20px; }
    .services__desc { display: none; }
}


/* --------------------------------------------------------------------------
 * Pillars (004) - Sticky Scroll
 * -------------------------------------------------------------------------- */
.pillars {
    position: relative;
    width: 100%;
    height: 400vh;
    background: var(--hundred-bg);
    border-top: 1px solid var(--hundred-line);
}
.pillars__sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 40px clamp(24px, 5vw, 80px);
}
.pillars__meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.pillars__num { color: var(--hundred-accent); font-weight: 700; }

.pillars__stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: clamp(40px, 6vw, 120px);
    align-items: center;
}
.pillars__index {
    font-family: 'Inter', sans-serif;
    font-size: clamp(120px, 15vw, 280px);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: var(--hundred-accent);
    overflow: hidden;
    text-overflow: clip;
}
.pillars__content {
    position: relative;
    min-height: 340px;
}
.pillar-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
.pillar-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.pillar-slide__label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--hundred-muted);
    text-transform: uppercase;
    margin-bottom: 32px;
}
.pillar-slide__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(52px, 8vw, 140px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: var(--hundred-text);
    margin-bottom: 40px;
}
.pillar-slide__ja {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--hundred-accent);
    margin-bottom: 32px;
}
.pillar-slide__body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    line-height: 1.95;
    color: var(--hundred-muted);
    max-width: 620px;
}
.pillars__progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--hundred-line);
}
.pillars__dots { display: flex; gap: 12px; flex: 1; }
.pillars__dot {
    width: 32px; height: 2px;
    background: var(--hundred-line-str);
    transition: background 0.4s ease, transform 0.4s ease;
    transform-origin: left;
}
.pillars__dot.active {
    background: var(--hundred-accent);
    transform: scaleX(1.4);
}
.pillars__scroll-hint {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--hundred-muted);
    text-transform: uppercase;
}
@media (max-width: 900px) {
    .pillars__stage { grid-template-columns: 1fr; }
    .pillars__index { font-size: 96px; }
    .pillars__content { min-height: 280px; }
}


/* --------------------------------------------------------------------------
 * Members Teaser (005)
 * -------------------------------------------------------------------------- */
.members-teaser {
    position: relative;
    padding: 200px clamp(24px, 5vw, 80px);
    background: var(--hundred-bg);
    border-top: 1px solid var(--hundred-line);
    z-index: 1;
}
.members-teaser__meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}
.members-teaser__num { color: var(--hundred-accent); font-weight: 700; }
.members-teaser__title-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    margin-bottom: 100px;
    gap: 40px;
}
.members-teaser__title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(56px, 10vw, 160px);
    letter-spacing: -0.03em;
    line-height: 0.9;
    color: var(--hundred-text);
}
.members-teaser__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--hundred-muted);
}
.members-teaser__hint {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    letter-spacing: 0.3em;
    color: var(--hundred-muted);
    max-width: 260px;
    text-align: right;
    padding-bottom: 20px;
}
.members-teaser__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}
.members-teaser__cta { text-align: center; }
.members-teaser__empty {
    text-align: center;
    padding: 80px 0;
    color: var(--hundred-muted);
    font-style: italic;
}
@media (max-width: 900px) {
    .members-teaser__grid { grid-template-columns: repeat(2, 1fr); }
    .members-teaser__title-wrap { grid-template-columns: 1fr; }
    .members-teaser__hint { text-align: left; }
}
@media (max-width: 480px) {
    .members-teaser__grid { grid-template-columns: 1fr; }
}


/* --------------------------------------------------------------------------
 * News Teaser (006)
 * -------------------------------------------------------------------------- */
.news-teaser {
    position: relative;
    padding: 160px clamp(24px, 5vw, 80px);
    background: var(--hundred-bg-soft);
    border-top: 1px solid var(--hundred-line);
    z-index: 1;
}
.news-teaser__meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}
.news-teaser__num { color: var(--hundred-accent); font-weight: 700; }
.news-teaser__title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 10vw, 160px);
    letter-spacing: -0.03em;
    line-height: 0.9;
    color: var(--hundred-text);
    margin-bottom: 80px;
}
.news-teaser__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--hundred-muted);
}
.news-teaser__list { display: grid; gap: 0; margin-bottom: 60px; }
.news-teaser__item {
    display: grid;
    grid-template-columns: 100px 100px 1fr 40px;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid var(--hundred-line);
    text-decoration: none;
    transition: all 0.3s ease;
}
.news-teaser__item:last-child { border-bottom: 1px solid var(--hundred-line); }
.news-teaser__item:hover { padding-left: 16px; background: rgba(255,255,255,0.02); }
.news-teaser__item:hover .news-teaser__ttl { color: var(--hundred-accent); }
.news-teaser__item:hover .news-teaser__arrow { transform: translateX(6px); color: var(--hundred-accent); }
.news-teaser__date {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--hundred-muted);
    letter-spacing: 0.15em;
}
.news-teaser__cat {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: var(--hundred-accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
}
.news-teaser__ttl {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--hundred-text);
    transition: color 0.3s ease;
    margin: 0;
}
.news-teaser__arrow {
    color: var(--hundred-muted);
    text-align: right;
    transition: transform 0.3s ease, color 0.3s ease;
}
.news-teaser__cta { text-align: center; }
.news-teaser__empty {
    text-align: center; padding: 60px 0;
    color: var(--hundred-muted); font-style: italic;
}
@media (max-width: 640px) {
    .news-teaser__item { grid-template-columns: 90px 1fr; grid-template-rows: auto auto; }
    .news-teaser__cat, .news-teaser__arrow { display: none; }
    .news-teaser__ttl { grid-column: 1 / 3; }
}


/* --------------------------------------------------------------------------
 * Lineage (007)
 * -------------------------------------------------------------------------- */
.lineage {
    position: relative;
    padding: 200px clamp(24px, 5vw, 80px);
    background: var(--hundred-bg);
    border-top: 1px solid var(--hundred-line);
    z-index: 1;
}
.lineage__meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 100px;
}
.lineage__num { color: var(--hundred-accent); font-weight: 700; }
.lineage__title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 8vw, 140px);
    letter-spacing: -0.03em;
    line-height: 0.92;
    color: var(--hundred-text);
    margin-bottom: 24px;
}
.lineage__title em { font-style: italic; font-weight: 400; color: var(--hundred-muted); }
.lineage__sub {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: var(--hundred-muted);
    max-width: 620px;
    margin-bottom: 140px;
}
.lineage__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px 32px;
}
.lineage__item {
    grid-column: span 6;
    padding-top: 24px;
    border-top: 1px solid var(--hundred-line);
}
.lineage__name {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 900;
    letter-spacing: -0.01em;
    color: var(--hundred-text);
    margin-bottom: 20px;
}
.lineage__desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    line-height: 1.9;
    color: var(--hundred-muted);
}
.lineage__closing {
    grid-column: span 12;
    padding-top: 100px;
}
.lineage__closing-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 5vw, 84px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--hundred-text);
    margin-bottom: 32px;
}
.lineage__closing-title em { font-style: italic; font-weight: 400; color: var(--hundred-muted); }
.lineage__closing-body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: var(--hundred-muted);
    max-width: 720px;
}
@media (max-width: 900px) {
    .lineage__item { grid-column: span 12; }
}


/* --------------------------------------------------------------------------
 * Contact CTA (008)
 * -------------------------------------------------------------------------- */
.contact-cta {
    position: relative;
    padding: 200px clamp(24px, 5vw, 80px);
    background: var(--hundred-bg-soft);
    border-top: 1px solid var(--hundred-line);
    text-align: center;
    z-index: 1;
}
.contact-cta__meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    text-align: left;
}
.contact-cta__num { color: var(--hundred-accent); font-weight: 700; }
.contact-cta__title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(56px, 12vw, 220px);
    letter-spacing: -0.03em;
    line-height: 0.9;
    color: var(--hundred-text);
    margin-bottom: 60px;
}
.contact-cta__title em { font-style: italic; font-weight: 400; color: var(--hundred-muted); }
.contact-cta__mail {
    margin-bottom: 60px;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
}
.contact-cta__mail a {
    color: var(--hundred-text);
    border-bottom: 1px solid var(--hundred-line);
    padding-bottom: 4px;
    transition: color 0.3s ease, border-color 0.3s ease;
}
.contact-cta__mail a:hover {
    color: var(--hundred-accent);
    border-color: var(--hundred-accent);
}
.contact-cta__buttons {
    display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
}


/* --------------------------------------------------------------------------
 * Members Hero (Archive)
 * -------------------------------------------------------------------------- */
.members-hero {
    position: relative;
    padding: 200px clamp(24px, 5vw, 80px) 80px;
    z-index: 1;
}
.members-hero__meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}
.members-hero__num { color: var(--hundred-accent); font-weight: 700; }
.members-hero__title-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--hundred-line);
}
.members-hero__title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(64px, 14vw, 240px);
    letter-spacing: -0.04em;
    line-height: 0.85;
    color: var(--hundred-text);
}
.members-hero__count {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 0.25em;
    color: var(--hundred-muted);
    text-align: right;
    text-transform: uppercase;
    padding-bottom: 20px;
}
.members-hero__count strong { color: var(--hundred-accent); font-weight: 900; }
.members-hero__count-big {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--hundred-text);
    letter-spacing: 0;
    margin-bottom: 4px;
}
.members-hero__sub {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--hundred-muted);
    text-transform: uppercase;
}


/* --------------------------------------------------------------------------
 * Members Grid (Archive)
 * -------------------------------------------------------------------------- */
.members-grid {
    position: relative;
    padding: 80px clamp(24px, 5vw, 80px) 120px;
    z-index: 1;
}
.grid-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--hundred-muted);
    text-transform: uppercase;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.grid-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--hundred-line);
}
.grid-label__num { color: var(--hundred-accent); font-weight: 700; }

.featured {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 120px;
}
@media (max-width: 1200px) { .featured { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .featured { grid-template-columns: 1fr; } }

.roster {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 1200px) { .roster { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .roster { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .roster { grid-template-columns: 1fr; } }


/* --------------------------------------------------------------------------
 * CTA
 * -------------------------------------------------------------------------- */
.cta {
    position: relative;
    padding: 200px clamp(24px, 5vw, 80px);
    background: var(--hundred-bg-soft);
    border-top: 1px solid var(--hundred-line);
    z-index: 1;
}
.cta__meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}
.cta__meta-num { color: var(--hundred-accent); font-weight: 700; }
.cta__title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 10vw, 180px);
    letter-spacing: -0.03em;
    line-height: 0.9;
    color: var(--hundred-text);
    margin-bottom: 60px;
}
.cta__title em { font-style: italic; font-weight: 400; color: var(--hundred-muted); }
.cta__buttons { display: flex; gap: 20px; flex-wrap: wrap; }


/* --------------------------------------------------------------------------
 * Single Member
 * -------------------------------------------------------------------------- */
.single-member__hero {
    position: relative;
    min-height: 90vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 120px clamp(24px, 5vw, 80px) 80px;
    z-index: 1;
    overflow: hidden;
}
.single-member__meta {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--hundred-muted);
    text-transform: uppercase;
}
.single-member__num { color: var(--hundred-accent); font-weight: 700; }
.single-member__portrait {
    position: absolute;
    top: 0; right: 0;
    width: 70%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    /* v1.5.15: opacity 0.55 が全幅で効いてアー写が沈んでいたため撤廃 */
    opacity: 1;
}
.single-member__img {
    width: 100%; height: 100%; object-fit: cover;
    /* v1.5.15: グレースケール・減光を廃止し、明るくくっきり */
    filter: brightness(1.08) contrast(1.05) saturate(1.05);
}
.single-member__initial {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 40vw;
    line-height: 1;
    color: rgba(255,255,255,0.05);
    padding: 60px;
}
.single-member__title-wrap {
    align-self: end;
    max-width: 900px;
}
.single-member__reading {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--hundred-accent);
    margin-bottom: 16px;
}
.single-member__title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(56px, 12vw, 200px);
    letter-spacing: -0.04em;
    line-height: 0.85;
    color: var(--hundred-text);
    margin-bottom: 32px;
}
.single-member__catch {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(15px, 1.6vw, 20px);
    line-height: 1.7;
    color: var(--hundred-muted);
    max-width: 620px;
}

.single-member__body {
    padding: 100px clamp(24px, 5vw, 80px);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.single-member__block { margin-bottom: 100px; }
.single-member__block-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--hundred-accent);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 32px;
}
.single-member__prose {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.95;
    color: var(--hundred-text);
}
.single-member__prose p { margin-bottom: 24px; }

.single-member__info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid var(--hundred-line);
    border-bottom: 1px solid var(--hundred-line);
    margin-bottom: 80px;
}
.single-member__info-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--hundred-muted);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.single-member__info-value {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--hundred-text);
}
.single-member__info--wide { grid-column: span 3; }
@media (max-width: 700px) {
    .single-member__info-grid { grid-template-columns: 1fr; gap: 24px; }
    .single-member__info--wide { grid-column: span 1; }
}

.single-member__unit-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    border: 1px solid var(--hundred-accent);
    color: var(--hundred-accent);
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: all 0.3s ease;
}
.single-member__unit-link:hover {
    background: var(--hundred-accent);
    color: var(--hundred-bg);
}

.single-member__unit-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.single-member__unit-member {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border: 1px solid var(--hundred-line);
    text-decoration: none;
    color: var(--hundred-text);
    transition: all 0.3s ease;
}
.single-member__unit-member:hover {
    border-color: var(--hundred-accent);
    color: var(--hundred-accent);
}
.single-member__unit-member-img {
    width: 48px; height: 48px;
    object-fit: cover;
    border-radius: 50%;
}

.single-member__appearance {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: appearance;
}
.single-member__appearance li {
    counter-increment: appearance;
    padding: 16px 0;
    border-bottom: 1px solid var(--hundred-line);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--hundred-muted);
    padding-left: 60px;
    position: relative;
}
.single-member__appearance li::before {
    content: counter(appearance, decimal-leading-zero);
    position: absolute;
    left: 0;
    color: var(--hundred-accent);
    font-weight: 700;
    letter-spacing: 0.1em;
}

.single-member__sns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.single-member__sns-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border: 1px solid var(--hundred-line);
    color: var(--hundred-text);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
}
.single-member__sns-item:hover {
    border-color: var(--hundred-accent);
    color: var(--hundred-accent);
}

.single-member__nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    padding: 60px clamp(24px, 5vw, 80px);
    border-top: 1px solid var(--hundred-line);
    align-items: center;
    z-index: 1;
    position: relative;
}
.single-member__nav-prev,
.single-member__nav-next {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    color: var(--hundred-text);
    transition: color 0.3s ease;
}
.single-member__nav-next { text-align: right; align-items: flex-end; }
.single-member__nav-prev:hover,
.single-member__nav-next:hover { color: var(--hundred-accent); }
.single-member__nav-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--hundred-muted);
    text-transform: uppercase;
}
.single-member__nav-name {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 900;
}
.single-member__nav-all {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border: 1px solid var(--hundred-line);
    color: var(--hundred-muted);
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}
.single-member__nav-all:hover {
    border-color: var(--hundred-accent);
    color: var(--hundred-accent);
}


/* --------------------------------------------------------------------------
 * 404
 * -------------------------------------------------------------------------- */
.error-404 {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px clamp(24px, 5vw, 80px);
    z-index: 1;
}
.error-404__inner { max-width: 800px; }
.error-404__meta {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--hundred-muted);
    text-transform: uppercase;
    margin-bottom: 40px;
}
.error-404__num { color: var(--hundred-accent); font-weight: 700; margin-right: 8px; }
.error-404__title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 10vw, 160px);
    letter-spacing: -0.03em;
    line-height: 0.9;
    color: var(--hundred-text);
    margin-bottom: 40px;
}
.error-404__title em { font-style: italic; font-weight: 400; color: var(--hundred-muted); }
.error-404__lead {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: var(--hundred-muted);
    margin-bottom: 60px;
}
.error-404__actions { display: flex; gap: 20px; flex-wrap: wrap; }


/* --------------------------------------------------------------------------
 * Post List (index/archive)
 * -------------------------------------------------------------------------- */
.post-list {
    max-width: 900px;
    margin: 0 auto;
}
.post-list__item {
    border-bottom: 1px solid var(--hundred-line);
    padding: 40px 0;
}
.post-list__link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.post-list__link:hover { transform: translateX(8px); }
.post-list__link:hover .post-list__title { color: var(--hundred-accent); }
.post-list__date {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--hundred-muted);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}
.post-list__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--hundred-text);
    transition: color 0.3s ease;
    margin: 0 0 12px;
}
.post-list__excerpt {
    color: var(--hundred-muted);
    line-height: 1.7;
}
.pagination {
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
}
.pagination .nav-links {
    display: flex;
    gap: 16px;
    justify-content: center;
}
.pagination a, .pagination span {
    display: inline-block;
    padding: 12px 20px;
    border: 1px solid var(--hundred-line);
    color: var(--hundred-text);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.15em;
    font-size: 12px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.pagination a:hover, .pagination .current {
    background: var(--hundred-accent);
    color: var(--hundred-bg);
    border-color: var(--hundred-accent);
}
