/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --color-green: #7CBD4A;
    --color-green-dark: #3B6D11;
    --color-green-light: #EAF3DE;
    --color-amber: #F9B84A;
    --color-bg: #F7F4EE;
    --color-text: #2C2C2A;
    --color-text-light: #5A5A56;
    --color-border: #E8E5DE;
    --color-blue: #4B8FD4;

    /* Typography */
    --font-en: 'Outfit', sans-serif;
    --font-ja: 'Noto Sans JP', sans-serif;
    --font-serif: 'Shippori Mincho', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border radius */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;

    /* Transitions */
    --transition: 0.3s ease;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ja);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.8;
    font-size: 17px;
    font-weight: 400;
}

h1, h2, h3 {
    font-weight: 500;
    line-height: 1.4;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 18px;
}

em {
    font-style: normal;
    color: var(--color-green);
    font-weight: 500;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

/* ===== Header ===== */
.header {
    background-color: white;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-en);
    letter-spacing: 0.5px;
}

.logo em {
    color: var(--color-green);
}

.nav-items {
    display: flex;
    gap: 2rem;
    font-size: 15px;
}

.nav-items a {
    font-weight: 500;
    position: relative;
    color: var(--color-text);
}

.nav-items a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-green);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.nav-items a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-ja);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-green);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(124, 189, 74, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-green);
    border: 2px solid var(--color-green);
}

.btn-secondary:hover {
    background-color: var(--color-green-light);
}

/* ===== Section Base ===== */
.section-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== Shared page kicker ===== */
.page-kicker {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-green);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.page-kicker::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--color-green);
}

/* ===== Diagonal section dividers ===== */
.section-divider {
    height: 60px;
    background: linear-gradient(to bottom right, var(--color-bg) 49%, white 50%);
    margin-bottom: -1px;
}

.section-divider.reverse {
    background: linear-gradient(to bottom left, var(--color-bg) 49%, white 50%);
}

/* ===== Eyebrow label ===== */
.eyebrow-b {
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-green);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

/* ===== Hero: 左寄せ大タイポ + 右側データパネル ===== */
.hero-b {
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.hero-b-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 5rem 1.5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: center;
}

.hero-b-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-b-h1 {
    font-family: var(--font-serif);
    font-size: clamp(52px, 7vw, 80px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--color-text);
}

.hero-b-h1 em {
    color: var(--color-green);
    font-style: normal;
}

.hero-b-desc {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.9;
    max-width: 520px;
    border-left: 3px solid var(--color-green-light);
    padding-left: 1.25rem;
}

.hero-b-desc strong {
    color: var(--color-green);
    font-weight: 500;
}

.hero-b-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 0.5rem;
}

/* 右側：データパネル */
.hero-b-panel {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.panel-title {
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-text-light);
    text-transform: uppercase;
}

.panel-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.panel-stat:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-label {
    font-size: 13px;
    color: var(--color-text-light);
    font-family: var(--font-en);
    letter-spacing: 0.5px;
}

.stat-value {
    font-family: var(--font-en);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1;
}

.stat-value span {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-light);
    margin-left: 4px;
    font-family: var(--font-ja);
}

.stat-bar-wrap {
    margin-top: 0.5rem;
    background: var(--color-green-light);
    border-radius: 4px;
    height: 6px;
    overflow: hidden;
}

.stat-bar {
    height: 100%;
    background: var(--color-green);
    border-radius: 4px;
}

.stat-note {
    font-size: 13px;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

/* ===== Shared section header ===== */
.section-header-b {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid var(--color-text);
    padding-bottom: 1rem;
}

.section-header-b h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
}

/* ===== Tools Section ===== */
.tools-section-b {
    background: white;
    padding: 4rem 0 5rem;
}

.tools-section-b .section-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.tools-see-all {
    font-size: 14px;
    color: var(--color-green);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
    padding-bottom: 2px;
    transition: color 0.3s;
}

.tools-see-all:hover {
    color: var(--color-green-dark);
}

.tool-list-b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.tool-item-b {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    transition: background 0.25s;
    text-decoration: none;
    color: inherit;
}

.tool-item-b:nth-child(even) {
    border-right: none;
}

.tool-item-b:nth-last-child(-n+2) {
    border-bottom: none;
}

.tool-item-b:hover {
    background: var(--color-green-light);
}

.tool-item-b-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--color-green-light);
    color: var(--color-green);
}

.tool-item-b-body {
    flex: 1;
}

.tool-item-b-body h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.tool-item-b-body p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.tool-item-b-arrow {
    color: var(--color-green);
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s;
    flex-shrink: 0;
}

.tool-item-b:hover .tool-item-b-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ===== Blog Section ===== */
.blog-section-b {
    background: var(--color-bg);
    padding: 5rem 0;
}

.blog-section-b .section-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.blog-see-all {
    font-size: 14px;
    color: var(--color-green);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
    padding-bottom: 2px;
    transition: color 0.3s;
}

.blog-see-all:hover {
    color: var(--color-green-dark);
}

/* Blog category badges */
.blog-cat {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
}

.cat-green {
    background-color: var(--color-green-light);
    color: var(--color-green-dark);
}

.cat-amber {
    background-color: #FFF3E0;
    color: #E67E22;
}

.cat-blue {
    background-color: #E3F2FD;
    color: #1976D2;
}

/* フィーチャー記事（横長） */
.blog-feature-b {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s, transform 0.3s;
}

.blog-feature-b:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.blog-feature-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.feature-new-badge {
    display: inline-block;
    background: var(--color-amber);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    font-family: var(--font-en);
    letter-spacing: 1px;
    text-transform: uppercase;
    width: fit-content;
}

.blog-feature-body .blog-cat {
    width: fit-content;
}

.blog-feature-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-text);
}

.blog-feature-desc {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.blog-feature-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 13px;
    color: var(--color-text-light);
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    margin-top: auto;
}

/* フィーチャー右パネル */
.blog-feature-panel {
    background: var(--color-green-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2.5rem;
}

.feature-panel-num {
    font-family: var(--font-en);
    font-size: 80px;
    font-weight: 600;
    color: white;
    line-height: 1;
    opacity: 0.4;
}

.feature-panel-label {
    font-size: 14px;
    color: var(--color-green-dark);
    font-weight: 500;
    text-align: center;
}

.feature-panel-icon {
    width: 72px;
    height: 72px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green);
}

/* サブ記事グリッド: 3列×2行 */
.blog-sub-grid-b {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.blog-sub-card-b {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.blog-sub-card-b:hover {
    border-color: var(--color-green);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.blog-sub-card-b h3 {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
    flex-grow: 1;
}

.blog-sub-meta {
    font-size: 12px;
    color: var(--color-text-light);
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
}

/* ===== SNS Section ===== */
.sns-section-b {
    background: white;
    padding: 5rem 0;
}

.sns-section-b .section-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.sns-grid-b {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.sns-card-b {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: var(--color-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--color-border);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.sns-card-b:hover {
    border-color: var(--color-green);
    box-shadow: 0 12px 24px rgba(124,189,74,0.1);
    transform: translateY(-4px);
}

.sns-card-b-head {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sns-card-b-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    flex-shrink: 0;
}

.sns-card-b-head h3 {
    font-size: 18px;
    font-weight: 500;
}

.sns-card-b-head p {
    font-size: 13px;
    color: var(--color-text-light);
    margin-top: 0.15rem;
}

.sns-card-b-desc {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.sns-card-b-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-green);
    margin-top: auto;
    transition: color 0.3s;
}

.sns-card-b:hover .sns-card-b-link {
    color: var(--color-green-dark);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--color-text);
    color: white;
    padding: 1.75rem 0;
    margin-top: 0;
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.footer-logo {
    font-family: var(--font-en);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.footer-logo em {
    color: var(--color-green);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-green);
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .hero-b-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 1.5rem;
    }

    .hero-b-panel {
        display: none;
    }

    .tool-list-b {
        grid-template-columns: 1fr;
    }

    .tool-item-b {
        border-right: none !important;
    }

    .tool-item-b:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--color-border);
    }

    .tool-item-b:last-child {
        border-bottom: none;
    }

    .blog-feature-b {
        grid-template-columns: 1fr;
    }

    .blog-feature-panel {
        display: none;
    }

    .blog-sub-grid-b {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-sub-grid-b .blog-sub-card-b:nth-child(n+7) {
        display: none;
    }

    .section-header-b {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .sns-grid-b {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-2xl: 2.5rem;
        --spacing-xl: 2rem;
        font-size: 16px;
    }

    .header-inner {
        padding: 0.75rem 1rem;
        gap: 0;
    }

    .nav-items {
        gap: 1.25rem;
        font-size: 14px;
    }

    .tools-section-b {
        padding: 2.5rem 0 3rem;
    }

    .blog-section-b {
        padding: 3rem 0;
    }

    .sns-section-b {
        padding: 3rem 0;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        gap: var(--spacing-md);
    }
}

@media (max-width: 600px) {
    .hero-b-inner {
        padding: 2rem 1rem 2.5rem;
        gap: 1.5rem;
    }

    .hero-b-h1 {
        font-size: 40px;
    }

    .hero-b-desc {
        font-size: 15px;
    }

    .hero-b-btns {
        flex-direction: column;
    }

    .hero-b-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .section-inner {
        padding: 0 1rem;
    }

    .blog-feature-body {
        padding: 1.5rem;
    }

    .blog-feature-title {
        font-size: 20px;
    }

    .blog-sub-grid-b {
        grid-template-columns: 1fr;
    }

    .sns-card-b {
        padding: 1.25rem;
    }

    .section-header-b h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 22px;
    }

    .hero-b-h1 {
        font-size: 36px;
    }

    .header-inner {
        flex-wrap: wrap;
        row-gap: 0.5rem;
    }

    .nav-items {
        width: 100%;
        justify-content: space-between;
        gap: 0;
        border-top: 1px solid var(--color-border);
        padding-top: 0.5rem;
    }

    .nav-items a {
        font-size: 13px;
        padding: 0.25rem 0;
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-links a {
        font-size: 13px;
    }
}

/* ===== About / Story Section ===== */
.story-section {
    background: white;
    padding: 3rem 0 5rem;
}

.story-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 4rem;
    align-items: start;
}

.page-nav {
    position: sticky;
    top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 2px solid var(--color-border);
}

.page-nav-item {
    font-size: 13px;
    color: var(--color-text-light);
    padding: 0.75rem 1rem;
    transition: all 0.2s;
    border-left: 2px solid transparent;
    margin-left: -2px;
}

.page-nav-item.active {
    color: var(--color-green);
    border-left-color: var(--color-green);
    font-weight: 500;
}

.page-content-b {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.story-block {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.story-block-eyebrow {
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-green);
    text-transform: uppercase;
}

.story-block h2 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    border-bottom: 2px solid var(--color-text);
    padding-bottom: 0.75rem;
}

.story-block p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.9;
}

.story-block ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.story-block ul li {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.story-block ul li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    min-width: 6px;
    background: var(--color-green);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    top: -0.1em;
}

.story-block ul li strong {
    color: var(--color-text);
}

/* ===== CTA Section ===== */
.cta-section-b {
    background: var(--color-bg);
    padding: 4rem 0 5rem;
}

.cta-grid-b {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.cta-grid-b--two {
    grid-template-columns: repeat(2, 1fr);
}

.cta-card-b {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.cta-card-b:hover {
    border-color: var(--color-green);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.cta-card-b-label {
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-green);
    text-transform: uppercase;
}

.cta-card-b-title {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-text);
}

.cta-card-b-desc {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
    flex-grow: 1;
}

.cta-card-b-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-green);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
    transition: color 0.3s;
}

.cta-card-b:hover .cta-card-b-link {
    color: var(--color-green-dark);
}

/* ===== panel-row (about profile panel) ===== */
.about-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.about-panel-row {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.75rem 0.5rem 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.about-panel-row:nth-child(odd) {
    padding-right: 1rem;
    border-right: 1px solid var(--color-border);
}

.about-panel-row:nth-last-child(-n+2):not(.about-panel-row--full) {
    border-bottom: none;
}

.about-panel-row--full {
    grid-column: 1 / -1;
    border-bottom: none;
    padding-bottom: 0;
    padding-right: 0;
}

.panel-row-label {
    font-size: 12px;
    color: var(--color-text-light);
    font-family: var(--font-en);
    letter-spacing: 0.5px;
}

.panel-row-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.4;
}

.panel-row-value strong {
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    display: inline;
}

.panel-row-value .unit {
    font-size: 13px;
    font-weight: 400;
    color: var(--color-text-light);
    margin-left: 3px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--color-amber);
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.4rem;
}

/* ===== Responsive: About / CTA ===== */
@media (max-width: 900px) {
    .story-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-nav {
        display: none;
    }

    .cta-grid-b,
    .cta-grid-b--two {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .about-panel-grid {
        grid-template-columns: 1fr;
    }

    .about-panel-row:nth-child(odd) {
        border-right: none;
        padding-right: 0;
    }

    .about-panel-row:nth-last-child(-n+2):not(.about-panel-row--full) {
        border-bottom: 1px solid var(--color-border);
    }

    .about-panel-row--full {
        border-bottom: none;
    }
}

@media (max-width: 600px) {
    .story-block h2 {
        font-size: 22px;
    }
}

/* ===== Hero narrow variant (Contact / single-column) ===== */
.hero-b-inner--narrow {
    grid-template-columns: 1fr;
    max-width: 760px;
}

.hero-b-h1--sm {
    font-size: clamp(36px, 5vw, 56px);
}

/* ===== Notice box ===== */
.notice-box {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    background: #FFFBF0;
    border: 1px solid var(--color-amber);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.notice-box strong {
    display: block;
    color: var(--color-text);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

/* ===== Email card ===== */
.email-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
}

.email-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--color-green-light);
    color: var(--color-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.email-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.email-card-address {
    font-family: var(--font-en);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-green);
    transition: color var(--transition);
}

.email-card-address:hover {
    color: var(--color-green-dark);
}

/* ===== Contact category grid ===== */
.contact-cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.contact-cat-item {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-cat-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
}

.contact-cat-badge--accept {
    background: var(--color-green-light);
    color: var(--color-green-dark);
}

.contact-cat-badge--reject {
    background: #FDECEC;
    color: #C0392B;
}

.contact-cat-item p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--color-border);
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
    font-size: 16px;
    font-weight: 500;
    padding: 1.1rem 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text);
    transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 400;
    color: var(--color-green);
    line-height: 1;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary:hover {
    color: var(--color-green);
}

.faq-item p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.9;
    padding: 0 0 1.25rem;
}

/* ===== Responsive: Contact ===== */
@media (max-width: 600px) {
    .contact-cat-grid {
        grid-template-columns: 1fr;
    }

    .email-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem;
    }
}
