/* reference-styles.css — リファレンス画像12セクション忠実再現 */

.rp-root {
    --rp-bg: #FAF3E8;
    --rp-bg-soft: #FCEFE0;
    --rp-bg-cream: #FDF6EC;
    --rp-card: #FFFFFF;
    --rp-ink: #3A2E2A;
    --rp-ink-soft: #6B5E55;
    --rp-navy: #1F3A5C;
    --rp-navy-deep: #14294A;
    --rp-coral: #E97A5A;
    --rp-coral-soft: #FBE0CF;
    --rp-coral-deep: #D86A4A;
    --rp-green: #9CB57F;
    --rp-green-deep: #5C7A4A;
    --rp-blue: #7BA3BD;
    --rp-blue-soft: #D6E0EE;
    --rp-purple: #B89CC8;
    --rp-yellow: #D9A552;
    --rp-cream: #FCEFE0;
    --rp-hairline: rgba(58, 46, 42, 0.08);
    --rp-serif: "Noto Serif JP", "Yu Mincho", "游明朝", serif;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    background: var(--rp-bg);
    color: var(--rp-ink);
    line-height: 1.85;
    letter-spacing: 0.02em;
    font-feature-settings: "palt" 1;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    font-size: 14px;
}

.rp-root * {
    box-sizing: border-box;
}

.rp-root img {
    display: block;
    max-width: 100%;
}

.rp-h2-serif {
    font-family: var(--rp-serif);
    font-weight: 600;
}

.rp-h2-navy {
    color: var(--rp-navy);
}

.rp-accent {
    color: var(--rp-coral);
    font-weight: 700;
}

.rp-accent-navy {
    color: var(--rp-navy);
    font-weight: 700;
}

/* ── Header ── */
.rp-header {
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid var(--rp-hairline);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.rp-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.rp-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.rp-brand-logo {
    height: 44px;
    width: auto;
    display: block;
}

.rp-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.rp-brand-jp {
    font-size: 20px;
    font-weight: 700;
    color: #4A3A2E;
    letter-spacing: 0.05em;
    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
}

.rp-brand-sub {
    font-size: 12px;
    font-weight: 400;
    color: #9A8A80;
    letter-spacing: 0.08em;
    margin-top: 3px;
    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
}

.rp-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
    margin-right: 24px;
    flex-shrink: 0;
}

.rp-nav a {
    font-size: 13px;
    font-weight: 500;
    color: #4A3A2E;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color .15s;
    white-space: nowrap;
}

.rp-nav a:hover {
    color: #E89A7C;
}

.rp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, #F4A87A 0%, #EE8866 100%);
    color: #fff;
    text-decoration: none;
    padding: 11px 22px 11px 11px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(217, 106, 74, 0.22);
    letter-spacing: 0.08em;
}

.rp-cta-heart-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.rp-cta-btn:hover {
    filter: brightness(1.06);
}

/* Smooth anchor scrolling, with offset for sticky header */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 64px;
}

/* SP-only line breaks (visible only on mobile) */
.sp-br {
    display: none;
}

.pc-only-br {
    display: inline;
}

@media (max-width: 767px) {
    .sp-br {
        display: inline;
    }

    .pc-only-br {
        display: none;
    }
}

.sp-only {
    display: none !important;
}

.pc-only {
    display: unset !important;
}

@media (max-width: 767px) {
    .sp-only {
        display: unset !important;
    }

    .pc-only {
        display: none !important;
    }
}

/* ── Zoomable images + lightbox ──────────────────────── */
.js-zoomable {
    cursor: zoom-in;
}

.rp-zoomable-wrap {
    position: relative;
    display: block;
}

.rp-zoomable-wrap .js-zoomable {
    display: block;
    width: 100%;
    height: auto;
}

.rp-zoom-hint {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    z-index: 2;
    transition: transform 0.18s ease, background 0.18s ease;
}

.rp-zoomable-wrap:hover .rp-zoom-hint {
    background: #fff;
    transform: scale(1.08);
}

@media (max-width: 767px) {
    .rp-zoom-hint {
        width: 32px;
        height: 32px;
        right: 6px;
        bottom: 6px;
    }

    .rp-zoom-hint svg {
        width: 16px;
        height: 16px;
    }
}

.rp-zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 64px 12px 24px;
}

.rp-zoom-overlay.is-open {
    display: block;
    animation: rpZoomFadeIn 0.2s ease;
}

@media (max-width: 767px) {
    .rp-zoom-overlay {
        max-width: 100vw;
        box-sizing: border-box;
    }
}

@keyframes rpZoomFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.rp-zoom-img {
    display: block;
    margin: 0 auto;
    width: auto;
    max-width: 100%;
    height: auto;
}

@media (max-width: 767px) {

    /* On mobile, render slightly larger than viewport so edges crop modestly
     and the center stays zoomed; user can scroll horizontally for edges */
    .rp-zoom-img {
        width: 130vw;
        max-width: 100%;
    }
}

.rp-zoom-close {
    position: fixed;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #333;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.15s ease;
}

.rp-zoom-close:hover {
    transform: scale(1.05);
}

body.rp-zoom-open {
    overflow: hidden;
}

/* Hamburger button (hidden on PC, shown via mobile media query) */
.rp-hamburger {
    display: none;
}

/* Drawer head (only shown inside mobile drawer) */
.rp-nav-drawer-head {
    display: none;
}

/* Back-to-top button (hidden on PC) */
.rp-back-to-top {
    display: none;
}

/* ── Hero ── */
.rp-hero {
    position: relative;
    padding: 0;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 252, 247, 1) 0%, rgba(255, 252, 247, 1) 38%, rgba(255, 252, 247, 0.92) 46%, rgba(255, 252, 247, 0.45) 58%, rgba(255, 252, 247, 0) 70%),
        #FFFCF7 url('img/hero-family.webp') 100% -250px / auto 130% no-repeat;
    min-height: 900px;
}

.rp-hero-bg {
    display: none;
}

.rp-hero-bg img {
    display: none;
}

.rp-hero-veil {
    display: none;
}

.rp-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 56px 60px;
    position: relative;
    z-index: 2;
}

/* Tag pill at top */
.rp-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    border: 1px solid var(--rp-coral-deep);
    color: var(--rp-coral-deep);
    padding: 9px 22px 9px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 38px;
    box-shadow: 0 2px 8px rgba(216, 106, 74, 0.15);
    letter-spacing: 0.06em;
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
}

.rp-hero-tag .rp-tag-line {
    width: 16px;
    height: 2px;
    background: var(--rp-coral-deep);
}

.rp-hero-tag .rp-tag-leaf {
    font-size: 14px;
    line-height: 1;
    opacity: 0.85;
}

/* Headline — Mincho */
.rp-hero-title {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
    font-size: 46px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.02em;
    margin: 0 0 28px;
    max-width: 620px;
}

.rp-hero-title .rp-line-1 {
    display: block;
    color: #2A2520;
}

.rp-hero-title .rp-line-2 {
    display: block;
    color: #D85A3F;
}

.rp-hero-title .rp-line-3 {
    display: block;
    color: #2A2520;
}

.rp-hero-title .rp-period {
    color: #D85A3F;
}

.rp-hero-sub {
    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
    font-size: 15px;
    line-height: 2.0;
    color: #6B5E55;
    margin: 0 0 36px;
    max-width: 480px;
    font-weight: 400;
}

/* Hero cards: left map card (wider) + right CTA */
.rp-hero-cards {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 16px;
    align-items: stretch;
    margin-top: auto;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.rp-hero-card {
    background: #FFFFFF;
    border-radius: 18px;
    border: 1px solid #F0E4D6;
    box-shadow: 0 6px 20px rgba(58, 46, 42, 0.06);
}

/* Left: map on left + title/text on right */
.rp-card-map {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px 20px 18px 16px;
}

.rp-card-map>svg {
    flex-shrink: 0;
    width: 165px;
    height: auto;
}

.rp-card-map-img {
    flex-shrink: 0;
    width: 220px;
    height: auto;
    object-fit: contain;
    margin-left: -8px;
}

.rp-card-map-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.rp-card-map-text {
    align-items: center;
}

.rp-card-eyebrow {
    display: inline-block;
    align-self: center;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: #5BA3B0;
    letter-spacing: 0.18em;
    padding: 4px 18px;
    border-radius: 999px;
    text-align: center;
    margin-bottom: 6px;
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
}

.rp-card-title {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
    font-size: 43px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    color: #5BA3B0;
    letter-spacing: 0.18em;
    white-space: nowrap;
    text-align: center;
}

.rp-card-text {
    font-size: 14px;
    line-height: 1.85;
    margin: 0;
    color: #6B5E55;
    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
}

/* Right column: donate CTA stacked */

.rp-card-cta {
    padding: 18px 22px;
    background: linear-gradient(180deg, #FFF8EE 0%, #FFFFFF 100%);
    border: 1px solid #F4D5C8;
}

.rp-card-cta-lead {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #4A3A2E;
    text-align: center;
    letter-spacing: 0.06em;
}

.rp-cta-big {
    display: block;
    background: linear-gradient(180deg, #EF8B6B 0%, #DA6F4D 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 14px;
    padding: 18px 18px;
    box-shadow: 0 6px 18px rgba(217, 106, 74, 0.32);
    position: relative;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.rp-cta-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(217, 106, 74, 0.45);
    filter: brightness(1.05);
}

.rp-cta-big:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(217, 106, 74, 0.40);
}

.rp-cta-big:hover .rp-cta-big-arrow {
    transform: translateX(4px);
    transition: transform 0.25s ease;
}

.rp-cta-big .rp-cta-big-arrow {
    transition: transform 0.25s ease;
}

.rp-cta-big-eyebrow {
    font-size: 14px;
    background: rgba(255, 255, 255, 0.22);
    padding: 5px 16px;
    border-radius: 999px;
    display: block;
    width: fit-content;
    margin: 0 auto 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.rp-cta-big-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rp-cta-big-heart {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rp-cta-big-text {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
    font-size: 48px;
    font-weight: 500;
    letter-spacing: 0.1em;
    flex: 1;
    text-align: center;
    white-space: nowrap;
}

.rp-cta-big-arrow {
    font-size: 28px;
    opacity: 0.9;
    font-weight: 300;
}

/* Secondary cards: stacked below right column */
.rp-hero-secondary {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.rp-soft-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #FFFFFF;
    border: 1px solid #F0E4D6;
    border-radius: 14px;
    padding: 14px 24px;
    text-decoration: none;
    color: #4A3A2E;
    min-height: 60px;
    box-shadow: 0 3px 12px rgba(58, 46, 42, 0.04);
    transition: background .15s, border-color .15s;
}

.rp-soft-card:hover {
    background: #FFF8F0;
    border-color: #E89A7C;
}

.rp-soft-icon {
    width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rp-soft-title {
    font-weight: 700;
    font-size: 14px;
    display: block;
    letter-spacing: 0.06em;
    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
    color: #1F3A5C;
}

.rp-soft-sub {
    font-size: 12px;
    color: #6B5E55;
    margin-top: 0;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.rp-soft-sub+.rp-soft-title {
    margin-top: 3px;
}

/* Audience label inside soft-card sub (e.g., 【企業や経営者の方へ】) */
.rp-soft-target {
    color: #5C7A9C;
    font-weight: 600;
}

.rp-soft-arrow {
    margin-left: auto;
    color: #B8A898;
    font-size: 20px;
    font-weight: 300;
}

.rp-soft-center {
    justify-content: center;
    gap: 16px;
    padding: 16px 28px;
}

.rp-soft-center .rp-soft-title {
    color: #4A3A2E;
}

/* ── Section base ── */
.rp-section {
    position: relative;
    padding: 64px 0;
    overflow: hidden;
}

.rp-section-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.rp-h2 {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--rp-ink);
    line-height: 1.4;
}

.rp-h2-lead {
    text-align: center;
    font-size: 16px;
    color: var(--rp-ink-soft);
    margin: 0 auto 44px;
    max-width: 720px;
    line-height: 2.0;
}

/* ── Reality ── */
.rp-reality {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='w'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch' seed='5'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.07 0'/></filter><rect width='240' height='240' filter='url(%23w)'/></svg>"),
        linear-gradient(180deg, #2E3F52 0%, #1F3A5C 100%);
}

.rp-reality .rp-h2 {
    color: #FAF3E8;
}

.rp-reality .rp-h2-lead {
    color: rgba(250, 243, 232, 0.85);
    font-size: 15px;
    line-height: 2.0;
}

.rp-reality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.rp-reality-card {
    background: var(--rp-card);
    border-radius: 18px;
    padding: 28px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 12px rgba(58, 46, 42, 0.06);
    border: 1px solid rgba(58, 46, 42, 0.04);
}

.rp-reality-icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FDF2E6 0%, #F6E6D4 100%);
    margin-bottom: 16px;
    overflow: hidden;
}

.rp-reality-illust {
    width: 80%;
    height: 80%;
    object-fit: contain;
    display: block;
}

.rp-reality-card-title {
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 10px;
    letter-spacing: 0.04em;
    color: var(--rp-ink);
    line-height: 1.2;
    white-space: nowrap;
}

.rp-reality-card-title-serif {
    font-family: var(--rp-serif);
}

.rp-title-green {
    color: #8FAD7E;
}

.rp-title-coral {
    color: #E89A7C;
}

.rp-reality-card-text {
    font-size: 14px;
    color: var(--rp-ink-soft);
    margin: 0;
    line-height: 1.9;
    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
}

.rp-reality-card-source {
    font-size: 0.78em;
    opacity: 0.75;
    display: inline-block;
    margin-top: 4px;
    line-height: 1.6;
}

.rp-reality-issues {
    background: url('img/issue-num-1.webp') no-repeat center / 100% 100%, linear-gradient(180deg, #EAF1F4 0%, #DDE9EE 100%);
    border-radius: 18px;
    padding: 32px 90px 36px 60px;
    position: relative;
}

.rp-reality-issues-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 18px;
    color: #1F3A5C;
    letter-spacing: 0.08em;
}

.rp-reality-issues-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rp-issue-row {
    display: grid;
    grid-template-columns: 40px auto 1fr;
    gap: 14px;
    align-items: center;
    padding: 10px 22px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    box-shadow: 0 1px 2px rgba(58, 46, 42, 0.04);
}

.rp-issue-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: transparent;
    color: transparent;
    border-radius: 0;
}

.rp-issue-num img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rp-issue-title {
    font-family: var(--rp-serif);
    font-weight: 600;
    color: #C7805E;
    letter-spacing: 0.04em;
    white-space: nowrap;
    font-size: 17px;
}

.rp-issue-desc {
    color: #5A4D44;
    line-height: 1.75;
    font-size: 15px;
}

/* ── Services ── */
.rp-services {
    background: linear-gradient(180deg, #FDF6EC 0%, #FCEFE0 100%);
}

.rp-services-eyebrow {
    text-align: center;
    font-size: 16px;
    color: var(--rp-coral-deep);
    font-weight: 500;
    margin-bottom: 14px;
    letter-spacing: 0.06em;
}

.rp-h2-services {
    font-size: 36px;
    margin-bottom: 18px;
    letter-spacing: 0.08em;
}

.rp-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 44px;
    padding-top: 8px;
}

.rp-service-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    position: relative;
    text-align: center;
    padding: 0 4px 8px;
    box-shadow: none;
}

.rp-service-img {
    aspect-ratio: 1.05;
    overflow: hidden;
    border-radius: 14px;
    position: relative;
    box-shadow: 0 6px 18px rgba(58, 46, 42, 0.08);
}

.rp-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rp-service-icon-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc((100% / 1.05) * 1 / 5 * 0);
    /* placeholder, real positioning via margin */
    margin-top: -34px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFDF8;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(58, 46, 42, 0.10);
    z-index: 2;
    position: relative;
}

.rp-service-icon-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    display: block;
}

.rp-service-title {
    font-size: 17px;
    font-weight: 600;
    margin: 14px 8px 8px;
    font-family: var(--rp-serif);
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.rp-service-text {
    font-size: 12px;
    color: var(--rp-ink-soft);
    margin: 0 8px;
    line-height: 1.95;
    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
}

.rp-services-bottom {
    background: var(--rp-coral-soft);
    border-radius: 16px;
    padding: 22px 32px;
    text-align: center;
}

.rp-services-bottom-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.rp-services-bottom-text p {
    font-size: 13px;
    color: var(--rp-ink);
    margin: 0;
    line-height: 1.95;
}

/* ── Strengths ── */
.rp-strengths {
    background: linear-gradient(180deg, #FDF8F1 0%, #F8F1E5 100%);
}

.rp-strengths-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: var(--rp-coral-deep);
    font-weight: 600;
    margin-bottom: 14px;
}

.rp-strengths-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin: 32px 0 36px;
}

.rp-strength-card {
    background: var(--rp-card);
    border-radius: 12px;
    padding: 24px 18px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 1px 3px rgba(58, 46, 42, 0.04);
}

.rp-strength-num {
    position: absolute;
    top: -12px;
    left: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.05em;
}

.rp-strength-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 6px auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, #FDF2E6 0%, #F6E6D4 100%);
}

.rp-strength-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rp-strength-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.5;
}

/* Service title color variants */
.rp-service-title-coral-light {
    color: #E89A5A;
}

.rp-service-title-coral {
    color: var(--rp-coral);
}

.rp-service-title-green {
    color: #8FAD7E;
}

.rp-service-title-blue {
    color: var(--rp-blue);
}

.rp-service-title-purple {
    color: #9C8FBF;
}

.rp-services-bottom-title-coral {
    color: var(--rp-coral);
}

/* Strength num + title color variants (背景・文字色のペア) */
.rp-strength-variant-navy .rp-strength-num {
    background: var(--rp-navy);
}

.rp-strength-variant-navy .rp-strength-title {
    color: var(--rp-navy);
}

.rp-strength-variant-green .rp-strength-num {
    background: var(--rp-green-deep);
}

.rp-strength-variant-green .rp-strength-title {
    color: var(--rp-green-deep);
}

.rp-strength-variant-coral .rp-strength-num {
    background: var(--rp-coral-deep);
}

.rp-strength-variant-coral .rp-strength-title {
    color: var(--rp-coral-deep);
}

.rp-strength-variant-purple .rp-strength-num {
    background: #7B5CA8;
}

.rp-strength-variant-purple .rp-strength-title {
    color: #7B5CA8;
}

.rp-strength-text {
    font-size: 13px;
    color: var(--rp-ink-soft);
    margin: 0;
    line-height: 1.8;
}

.rp-strengths-bottom {
    background: linear-gradient(90deg, #FCEFE0 0%, #FBE0CF 100%);
    border-radius: 14px;
    padding: 36px 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.rp-strengths-bottom-img {
    border-radius: 14px;
    overflow: hidden;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 100%;
    max-width: 880px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.rp-strengths-bottom-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(58, 46, 42, 0.10);
}

.rp-strengths-bottom-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.rp-strengths-bottom-text {
    text-align: center;
    max-width: 820px;
}

.rp-strengths-bottom-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.5;
}

.rp-strengths-bottom-text p {
    font-size: 16px;
    color: var(--rp-ink);
    margin: 0 0 20px;
    line-height: 1.95;
}

.rp-strengths-bottom-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--rp-coral-deep);
    text-decoration: none;
    border-bottom: 1px solid var(--rp-coral-deep);
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.rp-strengths-bottom-link:hover {
    opacity: 0.7;
}

.rp-strengths-bottom-link .rp-link-arrow {
    font-size: 16px;
    line-height: 1;
}

/* ── Impact ── */
.rp-impact {
    background: linear-gradient(180deg, #FDF6EC 0%, #FCEFE0 100%);
}

.rp-impact-eyebrow {
    text-align: center;
    font-size: 16px;
    color: var(--rp-coral-deep);
    font-weight: 600;
    margin-bottom: 12px;
}

.rp-impact-hero-image {
    margin: 32px auto 40px;
    max-width: 880px;
    text-align: center;
}

.rp-impact-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(58, 46, 42, 0.12);
    display: block;
}

.rp-impact-hero-image figcaption {
    margin-top: 12px;
    font-size: 12px;
    color: var(--rp-ink-soft);
    letter-spacing: 0.04em;
}

.rp-tier-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 28px 0 16px;
}

.rp-tier-card {
    background: var(--rp-card);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    position: relative;
    box-shadow: 0 1px 3px rgba(58, 46, 42, 0.04);
    border: 2px solid transparent;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.rp-tier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(58, 46, 42, 0.12);
    border-color: var(--rp-coral);
}

.rp-tier-card.highlight {
    border-color: var(--rp-coral);
    box-shadow: 0 4px 16px rgba(233, 122, 90, 0.15);
}

.rp-tier-card.highlight:hover {
    box-shadow: 0 10px 28px rgba(233, 122, 90, 0.28);
}

.rp-tier-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rp-coral);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

.rp-tier-img {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 14px;
}

.rp-tier-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rp-tier-amt {
    font-size: 28px;
    font-weight: 600;
    color: var(--rp-ink);
    margin-bottom: 6px;
}

.rp-tier-what {
    font-size: 11px;
    color: var(--rp-ink-soft);
    margin: 0 0 12px;
    line-height: 1.7;
    min-height: 50px;
}

.rp-tier-perk {
    font-size: 10px;
    background: var(--rp-coral-soft);
    color: var(--rp-coral-deep);
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
}

.rp-impact-note {
    text-align: center;
    font-size: 11px;
    color: var(--rp-ink-soft);
    margin-bottom: 28px;
    border-bottom: 1px dashed var(--rp-hairline);
    padding-bottom: 18px;
}

.rp-impact-cta-wrap {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rp-impact-cta-eyebrow {
    font-size: 16px;
    color: var(--rp-ink);
    font-weight: 600;
    margin-bottom: 12px;
}

.rp-impact-cta-eyebrow .rp-accent {
    color: var(--rp-coral-deep);
    font-weight: 700;
}

/* Impact版CTA：コンパクト・中央寄せ */
.rp-cta-big-orange {
    display: inline-block;
    width: auto;
    min-width: 480px;
    max-width: 560px;
    background: linear-gradient(180deg, #EF8B6B 0%, #DA6F4D 100%);
    border-radius: 10px;
    padding: 8px 28px 16px;
    position: relative;
    margin-top: 14px;
    box-shadow: 0 8px 22px rgba(218, 111, 77, 0.22);
}

.rp-cta-big-orange .rp-cta-big-eyebrow,
.rp-cta-big-orange .rp-cta-big-eyebrow-light {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: #FFFDF8;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 4px 18px 5px;
    margin: -22px auto 8px;
    letter-spacing: 0.04em;
    position: relative;
}

.rp-cta-big-orange .rp-cta-big-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.rp-cta-big-orange .rp-cta-big-text {
    font-family: var(--rp-serif);
    font-size: 30px;
    font-weight: 500;
    color: #FFFDF8;
    letter-spacing: 0.18em;
    line-height: 1.2;
    margin: 0;
}

.rp-cta-big-orange .rp-cta-big-arrow {
    position: absolute;
    right: 0;
    font-size: 14px;
    color: #FFFDF8;
    opacity: 0.95;
    display: inline-flex;
    align-items: center;
}

/* ── Donate ── */
.rp-donate {
    background: linear-gradient(180deg, #FDF8F1 0%, #FAF3E8 100%);
}

.rp-donate-eyebrow {
    text-align: center;
    font-size: 16px;
    color: var(--rp-coral-deep);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.rp-donate-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0 24px;
}

.rp-donate-method-card {
    background: var(--rp-card);
    border-radius: 14px;
    padding: 26px 26px 22px;
    border: 1px solid var(--rp-hairline);
    box-shadow: 0 2px 8px rgba(58, 46, 42, 0.04);
    display: flex;
    flex-direction: column;
}

.rp-donate-method-head {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "num title"
        "icon sub";
    column-gap: 14px;
    row-gap: 4px;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #EFE6D7;
}

.rp-donate-method-icon {
    grid-area: icon;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.rp-donate-method-icon-navy {
    background: #E5EDF6;
    color: #1F3A5C;
}

.rp-donate-method-icon-green {
    background: #E5EBDA;
    color: #5C7A4A;
}

.rp-donate-method-num {
    grid-area: num;
    font-size: 12px;
    color: #B8A88E;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.04em;
    align-self: end;
}

.rp-donate-method-title {
    grid-area: title;
    font-size: 18px;
    font-weight: 700;
    color: var(--rp-ink);
    margin: 0;
    align-self: end;
}

.rp-donate-method-sub {
    grid-area: sub;
}

.rp-donate-method-sub {
    font-size: 12px;
    color: var(--rp-ink-soft);
    line-height: 1.6;
}

.rp-donate-method-body {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 20px;
    flex: 1;
}

.rp-donate-method-img {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #F0E8D8;
}

.rp-donate-method-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rp-donate-checks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rp-donate-checks li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 12.5px;
    color: var(--rp-ink);
    padding: 4px 0;
    line-height: 1.65;
}

.rp-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex: 0 0 auto;
    margin-top: 3px;
}

.rp-check-navy {
    background: #4A7BAA;
}

.rp-check-green {
    background: #7A9B5C;
}

.rp-donate-method-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    padding: 18px;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.rp-donate-method-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(31, 58, 92, 0.22);
}

.rp-donate-method-btn-arrow {
    position: absolute;
    right: 20px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

.rp-donate-method-btn-navy {
    background: var(--rp-navy);
}

.rp-donate-method-btn-green {
    background: var(--rp-green-deep);
}

.rp-bank-info {
    background: #F6F2E8;
    border: 1px solid #E2D9C4;
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 14px;
}

.rp-bank-info-label {
    display: inline-block;
    background: var(--rp-green-deep);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.rp-bank-info-list {
    margin: 0;
    padding: 0;
}

.rp-bank-info-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px dashed #DCD2BC;
}

.rp-bank-info-row:last-child {
    border-bottom: none;
}

.rp-bank-info-row dt {
    flex-shrink: 0;
    width: 110px;
    font-size: 12px;
    color: var(--rp-ink-soft);
    font-weight: 500;
    margin: 0;
}

.rp-bank-info-row dd {
    flex: 1;
    font-size: 14px;
    color: var(--rp-ink);
    font-weight: 600;
    margin: 0;
}

.rp-bank-info-num {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    letter-spacing: 0.04em;
    color: var(--rp-green-deep);
    margin-left: 4px;
}

.rp-bank-info-note {
    font-size: 11px;
    color: var(--rp-ink-soft);
    margin-top: 10px;
    line-height: 1.5;
}

.rp-syncable-info {
    background: #EEF3F8;
    border: 1px solid #D6E0EC;
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 14px;
}

.rp-syncable-info-label {
    display: inline-block;
    background: var(--rp-navy);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.rp-syncable-info-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.rp-syncable-info-logo {
    height: 28px;
    width: auto;
    display: block;
}

.rp-syncable-info-jp {
    font-size: 12px;
    font-weight: 500;
    color: var(--rp-ink-soft);
    letter-spacing: 0;
}

.rp-syncable-info-body p {
    font-size: 12px;
    color: var(--rp-ink);
    line-height: 1.7;
    margin: 0 0 10px;
}

.rp-syncable-info-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--rp-navy);
    text-decoration: none;
    border-bottom: 1px solid var(--rp-navy);
    padding-bottom: 1px;
    transition: opacity 0.2s ease;
}

.rp-syncable-info-link:hover {
    opacity: 0.7;
}

.rp-syncable-info-link .rp-link-arrow {
    font-size: 14px;
    line-height: 1;
}

.rp-donate-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.rp-donate-info-card {
    display: flex;
    gap: 14px;
    background: #FCEEDC;
    border-radius: 10px;
    padding: 18px 20px;
    align-items: flex-start;
}

.rp-donate-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.rp-donate-info-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--rp-coral-deep);
    margin-bottom: 4px;
}

.rp-donate-info-card p {
    font-size: 11.5px;
    color: var(--rp-ink);
    margin: 0;
    line-height: 1.75;
}

.rp-donate-secure {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #EFE6D7;
    border-radius: 10px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.rp-donate-secure-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.rp-donate-secure-body {
    text-align: center;
}

.rp-donate-secure-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.rp-donate-secure p {
    font-size: 11.5px;
    color: var(--rp-ink-soft);
    margin: 0;
    line-height: 1.75;
}

/* ── Supporters ── */

/* ── About ── */
.rp-about {
    background: var(--rp-bg);
    padding: 24px 0 64px;
}

.rp-about-header {
    text-align: center;
    margin-bottom: 36px;
}

.rp-about-header .rp-h2 {
    margin: 0;
}

.rp-about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-bottom: 48px;
    align-items: center;
}

/* LEFT: brand intro */

/* RIGHT: org info */

.rp-about-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.rp-about-table th,
.rp-about-table td {
    padding: 12px 12px;
    text-align: left;
    border-bottom: 1px solid var(--rp-hairline);
    vertical-align: top;
}

.rp-about-table th {
    font-weight: 600;
    color: var(--rp-coral-deep);
    width: 90px;
    white-space: nowrap;
}

.rp-about-table td {
    color: var(--rp-ink);
    line-height: 1.7;
}

.rp-about-link {
    color: var(--rp-coral-deep);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.rp-about-link:hover {
    opacity: 0.7;
}

.rp-about-kyougikai {
    text-align: center;
}

.rp-about-kyougikai img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(58, 46, 42, 0.06);
}

.rp-about-hero,
.rp-services-hero {
    margin: 8px auto 44px;
    max-width: 1100px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(58, 46, 42, 0.06);
    border: 1px solid #EFE6D7;
}

.rp-about-hero img,
.rp-services-hero img {
    display: block;
    width: 100%;
    height: auto;
}

.rp-about-three {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.rp-about-roadmap {
    margin-top: 36px;
    text-align: center;
}

.rp-about-roadmap img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(58, 46, 42, 0.06);
}

.rp-about-card {
    background: var(--rp-card);
    border-radius: 14px;
    border: 1px solid var(--rp-hairline);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(58, 46, 42, 0.04);
}

.rp-about-card-header {
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.rp-about-card-header-coral {
    background: linear-gradient(135deg, #FFE8D6, #FBE0CF);
}

.rp-about-card-header-blue {
    background: linear-gradient(135deg, #E5EDF6, #D6E0EE);
}

.rp-about-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(58, 46, 42, 0.06);
}

.rp-about-card-title-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.rp-about-card-title-text-coral {
    color: #E97A5A;
}

.rp-about-card-title-text-navy {
    color: #1F3A5C;
}

.rp-about-card-body {
    padding: 20px 22px 22px;
}

.rp-about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

.rp-about-list li {
    font-size: 13px;
    padding: 5px 0;
    color: var(--rp-ink);
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rp-check-circle {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

.rp-check-circle-coral {
    background: #E97A5A;
}

.rp-about-card-body-split {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 18px;
    align-items: center;
}

.rp-about-photo {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #F0EBE0;
}

.rp-about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rp-about-card-lead {
    font-size: 13px;
    color: var(--rp-ink);
    margin: 0 0 14px;
    line-height: 1.6;
    text-align: center;
}

.rp-about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    background: #F5F8FC;
    border-radius: 10px;
    padding: 14px 8px;
    margin-bottom: 14px;
}

.rp-about-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 4px;
    border-right: 1px solid #E0E6EE;
}

.rp-about-stat:last-child {
    border-right: none;
}

.rp-about-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #E5EDF6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rp-about-stat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rp-about-stat-label {
    font-size: 11px;
    color: var(--rp-ink-soft);
    line-height: 1.35;
    font-weight: 600;
}

.rp-about-stat-value {
    font-size: 13px;
    color: var(--rp-ink);
    font-weight: 600;
}

.rp-stat-num {
    font-size: 20px;
    font-weight: 700;
    color: var(--rp-navy);
    font-family: "Inter", sans-serif;
    margin: 0 1px;
}

.rp-about-partners {
    display: flex;
    gap: 14px;
    align-items: center;
    background: #FAFAF6;
    border: 1px solid #EFEAE0;
    border-radius: 10px;
    padding: 12px 14px;
}

.rp-about-partners-label {
    font-size: 11px;
    color: var(--rp-ink-soft);
    line-height: 1.3;
    flex-shrink: 0;
    font-weight: 600;
}

.rp-about-partners-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    flex: 1;
}

.rp-about-partner {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rp-about-partner-logo {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

.rp-partner-logo-hokkaido {
    filter: brightness(0) saturate(100%) invert(20%) sepia(47%) saturate(2000%) hue-rotate(180deg) brightness(0.9);
}

.rp-partner-logo-sapporo {
    width: 32px;
    height: 32px;
}

.rp-about-partner-name {
    font-size: 10.5px;
    color: var(--rp-ink);
    line-height: 1.35;
}

.rp-about-partner-name-only {
    padding-left: 4px;
}

.rp-about-message {
    margin-top: 36px;
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, #FCEFE0 0%, #F8E8D6 50%, #E8F0E4 100%);
    border-radius: 16px;
}

.rp-about-message-text {
    font-size: 30px;
    font-weight: 600;
    color: var(--rp-navy);
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.04em;
}

/* ── FAQ ── */
.rp-faq {
    background: var(--rp-bg);
    padding-top: 24px;
    padding-bottom: 24px;
}

.rp-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 24px 0 0;
    align-items: start;
}

.rp-faq-item {
    background: var(--rp-card);
    border: 1px solid var(--rp-hairline);
    border-radius: 10px;
    padding: 16px 20px;
    cursor: pointer;
}

.rp-faq-item.open {
    border-color: var(--rp-coral);
}

.rp-faq-q {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--rp-ink);
}

.rp-faq-q-mark {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--rp-coral);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    font-family: "Inter", serif;
    flex: 0 0 auto;
}

.rp-faq-toggle {
    color: var(--rp-coral);
    font-size: 18px;
}

.rp-faq-a {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--rp-hairline);
    font-size: 12px;
    color: var(--rp-ink-soft);
    line-height: 1.85;
}

.rp-faq-a-mark {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--rp-coral-soft);
    color: var(--rp-coral-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    font-family: "Inter", serif;
    flex: 0 0 auto;
}

/* ── Contact ── */
.rp-contact {
    background: linear-gradient(180deg, #FAF3E8 0%, #FDF6EC 100%);
    padding-top: 24px;
}

.rp-contact-lead {
    font-size: 13px;
    color: var(--rp-ink-soft);
    margin: 0 0 28px;
    line-height: 2.0;
    text-align: center;
}

.rp-contact-cta-btn {
    display: inline-block;
    background: var(--rp-coral);
    color: #fff;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: background 0.2s;
}

.rp-contact-cta-btn:hover {
    background: #D46A4A;
}

.rp-contact-cta-only {
    text-align: center;
    margin: 32px 0 16px;
}

.rp-contact-cta-only .rp-contact-cta-btn {
    padding: 18px 56px;
    font-size: 16px;
}

.rp-contact-closing {
    text-align: center;
    font-size: 13px;
    color: var(--rp-ink);
    font-weight: 600;
    padding-top: 24px;
    border-top: 1px dashed var(--rp-hairline);
}

/* ── Footer (Navy) ── */
.rp-footer {
    background: var(--rp-navy-deep);
    color: rgba(255, 255, 255, 0.85);
    padding: 56px 0 0;
}

.rp-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
}

.rp-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 40px;
}

.rp-footer-brand-col {
    padding-right: 16px;
}

.rp-footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.rp-footer-brand-icon {
    flex-shrink: 0;
    width: 100px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 5px 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.rp-footer-brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rp-footer-brand-name-ja {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
}

.rp-footer-brand-name-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.rp-footer-meta {
    font-size: 11px;
    opacity: 0.6;
    line-height: 1.85;
}

.rp-footer-col h3 {
    font-size: 12px;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.rp-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rp-footer-col li {
    font-size: 12px;
    padding: 4px 0;
    color: rgba(255, 255, 255, 0.7);
}

.rp-external-icon {
    display: inline-block;
    margin-left: 6px;
    vertical-align: -1px;
    opacity: 0.7;
}

.rp-footer-col a:hover .rp-external-icon {
    opacity: 1;
}

.rp-footer-col a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.rp-footer-col a:hover {
    color: var(--rp-coral);
}

.rp-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* ============================================================
 * MOBILE STYLES (max-width: 767px)
 * Section-by-section rules. Add new sections below as we go.
 * ============================================================ */
@media (max-width: 767px) {

    /* ── Global guards ─────────────────────────────────── */
    body {
        overflow-x: hidden;
    }

    /* ── Header ────────────────────────────────────────── */
    .rp-header-inner {
        padding: 0 12px;
        gap: 8px;
    }

    .rp-brand {
        gap: 8px;
        min-width: 0;
        flex-shrink: 1;
        flex: 1;
    }

    .rp-brand-logo {
        height: 32px;
        flex-shrink: 0;
    }

    .rp-brand-text {
        display: flex;
        flex-direction: column;
        line-height: 1.15;
        min-width: 0;
    }

    .rp-brand-jp {
        font-size: 12px;
        letter-spacing: 0.02em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .rp-brand-sub {
        display: block;
        font-size: 10px;
        letter-spacing: 0.04em;
        white-space: nowrap;
        color: #9A8A80;
        margin-top: 1px;
    }

    /* Hamburger button — flex child, vertically centered by parent's
     align-items: center. Backdrop z-index (45) is now below header (50)
     so the hamburger no longer needs position:fixed to escape stacking. */
    .rp-hamburger {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(232, 154, 124, 0.2);
        border-radius: 50%;
        padding: 0;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(58, 46, 42, 0.08);
        flex-shrink: 0;
        margin-left: auto;
        position: relative;
        z-index: 80;
    }

    .rp-hamburger span {
        display: block;
        width: 20px;
        height: 2px;
        background: #4A3A2E;
        border-radius: 1px;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
    }

    .rp-hamburger.is-open {
        background: #fff;
    }

    .rp-hamburger.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .rp-hamburger.is-open span:nth-child(2) {
        opacity: 0;
    }

    .rp-hamburger.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Drawer: slide-in from right, warm cream tone matching site */
    .rp-nav {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: 82%;
        max-width: 340px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(165deg, #FFF8EE 0%, #FDF4E7 50%, #FAEAD7 100%);
        flex-direction: column;
        align-items: stretch;
        padding: 0 24px 24px;
        gap: 0;
        margin: 0;
        box-shadow: -6px 0 28px rgba(58, 46, 42, 0.18);
        transform: translateX(105%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 60;
        overflow-y: auto;
        border-left: 1px solid rgba(232, 154, 124, 0.18);
    }

    .rp-nav.is-open {
        transform: translateX(0);
    }

    /* Drawer head: brand illustration banner */
    .rp-nav-drawer-head {
        display: block;
        margin: 0 -24px 18px;
    }

    .rp-nav-drawer-banner {
        aspect-ratio: 1.86 / 1;
        overflow: hidden;
        position: relative;
        background: #FFF8EE;
    }

    .rp-nav-drawer-banner img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
        display: block;
    }

    /* Drawer nav links */
    .rp-nav a {
        font-size: 15px;
        font-weight: 500;
        padding: 16px 6px;
        width: auto;
        color: #4A3A2E;
        border-bottom: 1px solid rgba(232, 154, 124, 0.18);
        position: relative;
        transition: color 0.2s, padding-left 0.2s;
    }

    .rp-nav a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #E89A7C;
        opacity: 0;
        transition: opacity 0.2s;
    }

    .rp-nav a:hover,
    .rp-nav a:active {
        color: #D85A3F;
        padding-left: 14px;
    }

    .rp-nav a:hover::before,
    .rp-nav a:active::before {
        opacity: 1;
    }

    /* Backdrop overlay when drawer open */
    body.rp-nav-open {
        overflow: hidden;
    }

    body.rp-nav-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(58, 46, 42, 0.45);
        /* Must be lower than .rp-header (z-index: 50) so the drawer (which lives
       inside the header's stacking context) renders above the backdrop. */
        z-index: 45;
        animation: rpFadeIn 0.25s ease;
    }

    @keyframes rpFadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* Donate CTA: floating fixed button at bottom-right */
    .rp-cta-btn {
        position: fixed;
        bottom: 16px;
        right: 16px;
        margin-left: 0;
        z-index: 50;
        padding: 12px 20px 12px 11px;
        font-size: 13px;
        letter-spacing: 0.06em;
        box-shadow: 0 6px 20px rgba(217, 106, 74, 0.4);
        gap: 7px;
    }

    .rp-cta-heart-circle {
        width: 22px;
        height: 22px;
    }

    .rp-cta-heart-circle svg {
        width: 12px;
        height: 12px;
    }

    /* ── Hero ──────────────────────────────────────────── */
    .rp-hero {
        position: relative;
        min-height: auto;
        background: #FFFCF7;
        overflow: hidden;
    }

    /* Family photo banner (in flow). Text overlays via negative top margin */
    .rp-hero-bg {
        display: block;
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 10;
        overflow: hidden;
        z-index: 0;
    }

    .rp-hero-bg img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 30%;
    }

    .rp-hero-veil {
        display: block;
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,
                rgba(255, 252, 247, 0.55) 0%,
                rgba(255, 252, 247, 0.25) 25%,
                rgba(255, 252, 247, 0.35) 55%,
                rgba(255, 252, 247, 0.92) 85%,
                #FFFCF7 100%);
    }

    /* Hide the decorative flower sprig on mobile */
    .rp-hero>svg {
        display: none;
    }

    .rp-hero-inner {
        /* Photo is 62.5vw tall at aspect 16/10. -60vw pulls the tag right up
       to just below the global header (top of the photo). The large
       margin-bottom on .rp-hero-tag then drops the title past the faces. */
        margin-top: -60vw;
        padding: 0 18px 36px;
        position: relative;
        z-index: 2;
    }

    .rp-hero-tag {
        font-size: 11px;
        padding: 6px 14px 6px 12px;
        /* tight gap — title sits directly under the tag */
        margin-bottom: 14px;
        letter-spacing: 0.04em;
    }

    .rp-hero-title {
        font-size: 26px;
        line-height: 1.4;
        /* moderate gap on smartphone (PC remains at default) */
        margin-bottom: 8vw;
        max-width: 100%;
        /* White halo behind the title so the text reads clearly when it
       overlaps the photo. Layered shadows = soft cushion effect. */
        text-shadow:
            0 0 4px rgba(255, 252, 247, 1),
            0 0 10px rgba(255, 252, 247, 1),
            0 0 18px rgba(255, 252, 247, 1),
            0 0 30px rgba(255, 252, 247, 0.95),
            0 0 44px rgba(255, 252, 247, 0.75);
    }

    .rp-hero-title .rp-line-2,
    .rp-hero-title .rp-line-3 {
        font-size: 20px;
    }

    .rp-hero-sub {
        font-size: 10.5px;
        line-height: 1.75;
        margin-bottom: 24px;
        max-width: 100%;
        text-align: center;
        /* White halo behind sub for legibility over the photo */
        text-shadow:
            0 0 4px rgba(255, 252, 247, 1),
            0 0 10px rgba(255, 252, 247, 1),
            0 0 18px rgba(255, 252, 247, 1),
            0 0 28px rgba(255, 252, 247, 0.95),
            0 0 40px rgba(255, 252, 247, 0.75);
    }

    /* Hero cards (map + donate CTA): stack vertically */
    .rp-hero-cards {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
    }

    .rp-card-map {
        gap: 10px;
        padding: 14px 12px;
    }

    .rp-card-map-img {
        width: 110px;
        margin-left: -4px;
    }

    .rp-card-eyebrow {
        font-size: 11px;
        padding: 3px 12px;
        letter-spacing: 0.12em;
    }

    .rp-card-title {
        font-size: 22px;
        line-height: 1.2;
        letter-spacing: 0.08em;
    }

    .rp-card-text {
        font-size: 12px;
        line-height: 1.7;
    }

    .rp-card-cta {
        padding: 16px 16px;
    }

    .rp-card-cta-lead {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .rp-cta-big {
        padding: 14px 14px;
        border-radius: 12px;
    }

    .rp-cta-big-eyebrow {
        font-size: 12px;
        padding: 4px 12px;
        margin-bottom: 10px;
    }

    .rp-cta-big-row {
        gap: 10px;
    }

    .rp-cta-big-heart {
        width: 36px;
        height: 36px;
    }

    .rp-cta-big-heart svg {
        width: 22px;
        height: 22px;
    }

    .rp-cta-big-text {
        font-size: 26px;
        letter-spacing: 0.06em;
    }

    .rp-cta-big-arrow {
        font-size: 26px;
    }

    /* Soft cards: 賛同人会 / 応援団 */
    .rp-hero-secondary {
        margin-top: 12px;
        gap: 8px;
        max-width: 100%;
    }

    .rp-soft-card {
        padding: 12px 14px;
        gap: 10px;
        min-height: auto;
        border-radius: 12px;
    }

    .rp-soft-icon {
        width: 32px;
    }

    .rp-soft-icon svg {
        width: 26px;
        height: 26px;
    }

    .rp-soft-title {
        font-size: 12.5px;
    }

    .rp-soft-sub {
        font-size: 11px;
        line-height: 1.55;
    }

    .rp-soft-arrow {
        font-size: 18px;
    }

    /* ── Section base ──────────────────────────────────── */
    .rp-section {
        padding: 36px 0;
    }

    .rp-section-inner {
        padding: 0 18px;
    }

    /* Hide decorative SVGs that sit behind text on mobile */
    .rp-section>svg {
        display: none;
    }

    .rp-h2 {
        font-size: 22px;
        line-height: 1.4;
        gap: 8px;
        margin-bottom: 12px;
    }

    .rp-h2-lead {
        font-size: 12px;
        line-height: 1.75;
        margin-bottom: 28px;
        max-width: 100%;
    }

    /* ── Reality section ───────────────────────────────── */
    .rp-reality .rp-h2-lead {
        font-size: 12px;
        line-height: 1.8;
    }

    .rp-reality-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 28px;
    }

    /* Cards become horizontal: icon on left, title + text stacked on right */
    .rp-reality-card {
        display: grid;
        grid-template-columns: 80px 1fr;
        align-items: center;
        column-gap: 14px;
        row-gap: 2px;
        padding: 14px 16px;
        text-align: left;
    }

    .rp-reality-icon-wrap {
        grid-row: 1 / span 2;
        grid-column: 1;
        width: 80px;
        height: 80px;
        margin-bottom: 0;
        align-self: center;
    }

    .rp-reality-card-title {
        grid-column: 2;
        grid-row: 1;
        align-self: end;
        font-size: 19px;
        margin-bottom: 0;
        white-space: nowrap;
    }

    .rp-reality-card-text {
        grid-column: 2;
        grid-row: 2;
        align-self: start;
        font-size: 11.5px;
        line-height: 1.7;
    }

    .rp-reality-issues {
        padding: 20px 14px;
        border-radius: 14px;
        /* drop the heavy decorative background — keep a light gradient only */
        background: linear-gradient(180deg, #EAF1F4 0%, #DDE9EE 100%);
    }

    .rp-reality-issues-title {
        font-size: 16px;
        margin-bottom: 14px;
        letter-spacing: 0.04em;
    }

    .rp-reality-issues-list {
        gap: 8px;
    }

    /* Issue rows: number left, title + description stacked on right */
    .rp-issue-row {
        grid-template-columns: 32px 1fr;
        grid-template-rows: auto auto;
        column-gap: 10px;
        row-gap: 2px;
        padding: 12px 14px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.85);
        align-items: stretch;
    }

    .rp-issue-num {
        grid-row: 1 / span 2;
        grid-column: 1;
        width: 32px;
        height: 32px;
        align-self: center;
    }

    .rp-issue-title {
        grid-row: 1;
        grid-column: 2;
        align-self: end;
        font-size: 13px;
    }

    .rp-issue-desc {
        grid-row: 2;
        grid-column: 2;
        align-self: start;
        font-size: 11.5px;
        line-height: 1.7;
    }

    /* ── Services section ─────────────────────────────── */
    .rp-services-eyebrow {
        font-size: 12px;
        margin-bottom: 10px;
        letter-spacing: 0.04em;
        line-height: 1.6;
    }

    .rp-h2-services {
        font-size: 22px;
        margin-bottom: 14px;
        letter-spacing: 0.04em;
    }

    /* 5 cards → 2 columns; last (5th) spans both columns */
    .rp-services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 22px 12px;
        margin-bottom: 28px;
        padding-top: 8px;
    }

    .rp-service-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 6px);
        margin: 0 auto;
    }

    .rp-service-img {
        border-radius: 12px;
    }

    .rp-service-icon-wrap {
        width: 48px;
        height: 48px;
        margin-top: -26px;
    }

    .rp-service-title {
        font-size: 14px;
        margin: 10px 4px 4px;
    }

    .rp-service-text {
        font-size: 11.5px;
        margin: 0 4px;
        line-height: 1.7;
    }

    .rp-services-bottom {
        padding: 18px 18px;
        border-radius: 14px;
    }

    .rp-services-bottom-title {
        font-size: 16px;
        margin-bottom: 8px;
        line-height: 1.5;
    }

    .rp-services-bottom-text p {
        font-size: 12px;
        line-height: 1.75;
    }

    /* ── Strengths section ────────────────────────────── */
    .rp-strengths-eyebrow {
        font-size: 12px;
        margin-bottom: 10px;
        line-height: 1.6;
    }

    /* 5 cards → 1 column, horizontal layout (icon left, title + text right) */
    .rp-strengths-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin: 22px 0 28px;
    }

    .rp-strength-card {
        display: grid;
        grid-template-columns: 60px 1fr;
        align-items: center;
        column-gap: 14px;
        row-gap: 2px;
        padding: 18px 16px 14px;
        text-align: left;
    }

    .rp-strength-num {
        top: -10px;
        left: auto;
        right: 12px;
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .rp-strength-icon {
        grid-column: 1;
        grid-row: 1 / span 2;
        width: 56px;
        height: 56px;
        margin: 0;
        align-self: center;
    }

    .rp-strength-title {
        grid-column: 2;
        grid-row: 1;
        align-self: end;
        font-size: 14px;
        margin: 0;
        line-height: 1.4;
    }

    .rp-strength-text {
        grid-column: 2;
        grid-row: 2;
        align-self: start;
        font-size: 11.5px;
        line-height: 1.7;
    }

    .rp-strengths-bottom {
        padding: 22px 16px 20px;
        border-radius: 14px;
        gap: 14px;
    }

    .rp-strengths-bottom-img {
        padding: 12px;
        border-radius: 10px;
    }

    .rp-strengths-bottom-title {
        font-size: 18px;
        margin-bottom: 10px;
        line-height: 1.45;
    }

    .rp-strengths-bottom-text p {
        font-size: 12.5px;
        line-height: 1.75;
        margin-bottom: 14px;
    }

    /* ── Impact section ────────────────────────────────── */
    .rp-impact-eyebrow {
        font-size: 12px;
        margin-bottom: 10px;
        line-height: 1.6;
    }

    .rp-impact-hero-image {
        margin: 22px auto 28px;
    }

    .rp-impact-hero-image img {
        border-radius: 12px;
    }

    .rp-impact-hero-image figcaption {
        font-size: 11px;
        margin-top: 8px;
    }

    /* 4 tier cards → 1 column, horizontal layout (image left, content right) */
    .rp-tier-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin: 22px 0 16px;
    }

    .rp-tier-card {
        display: grid;
        grid-template-columns: 92px 1fr;
        align-items: center;
        column-gap: 14px;
        padding: 14px 16px;
        text-align: left;
    }

    .rp-tier-img {
        aspect-ratio: 1 / 1;
        width: 92px;
        height: 92px;
        margin-bottom: 0;
        grid-row: 1 / span 3;
        grid-column: 1;
        align-self: center;
    }

    .rp-tier-badge {
        top: -8px;
        left: auto;
        right: 12px;
        transform: none;
        font-size: 9.5px;
        padding: 3px 10px;
    }

    .rp-tier-amt {
        grid-column: 2;
        font-size: 22px;
        margin-bottom: 4px;
        white-space: nowrap;
    }

    .rp-tier-what {
        grid-column: 2;
        font-size: 11px;
        margin: 0 0 6px;
        line-height: 1.65;
        min-height: 0;
    }

    .rp-tier-perk {
        grid-column: 2;
        font-size: 9.5px;
        padding: 3px 8px;
        align-self: start;
        width: fit-content;
    }

    .rp-impact-note {
        font-size: 10.5px;
        margin-bottom: 18px;
        padding-bottom: 14px;
        line-height: 1.6;
    }

    .rp-impact-cta-eyebrow {
        font-size: 13px;
        margin-bottom: 10px;
        line-height: 1.5;
    }

    /* ── Donate section ────────────────────────────────── */
    .rp-donate-eyebrow {
        font-size: 12px;
        margin-bottom: 8px;
        letter-spacing: 0.04em;
    }

    /* Two method cards stack vertically */
    .rp-donate-methods {
        grid-template-columns: 1fr;
        gap: 14px;
        margin: 22px 0 20px;
    }

    .rp-donate-method-card {
        padding: 18px 18px 16px;
        border-radius: 12px;
    }

    .rp-donate-method-head {
        grid-template-columns: 54px 1fr;
        grid-template-areas:
            "icon title"
            "icon sub";
        column-gap: 14px;
        row-gap: 4px;
        margin-bottom: 14px;
        padding-bottom: 14px;
    }

    .rp-donate-method-num {
        display: none;
    }

    .rp-donate-method-icon {
        width: 54px;
        height: 54px;
        align-self: center;
    }

    .rp-donate-method-icon svg {
        width: 30px;
        height: 30px;
    }

    .rp-donate-method-title {
        font-size: 17px;
        line-height: 1.35;
        align-self: end;
    }

    .rp-donate-method-sub {
        font-size: 10px;
        line-height: 1.55;
        letter-spacing: 0;
        align-self: start;
    }

    /* Image + checklist: image left smaller, list right */
    .rp-donate-method-body {
        grid-template-columns: 96px 1fr;
        gap: 12px;
        margin-bottom: 14px;
    }

    .rp-donate-method-img {
        aspect-ratio: 1;
        border-radius: 8px;
    }

    .rp-donate-checks li {
        font-size: 11px;
        line-height: 1.55;
        padding: 2px 0;
        gap: 8px;
    }

    .rp-check {
        width: 15px;
        height: 15px;
        font-size: 9px;
        margin-top: 1px;
    }

    .rp-donate-method-btn {
        padding: 14px;
        font-size: 13px;
        border-radius: 10px;
    }

    .rp-donate-method-btn-arrow {
        right: 16px;
        font-size: 18px;
    }

    /* Info cards stack */
    .rp-donate-info {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 12px;
    }

    .rp-donate-info-card {
        padding: 14px 16px;
        border-radius: 10px;
        gap: 12px;
    }

    .rp-donate-info-icon {
        width: 32px;
        height: 32px;
    }

    .rp-donate-info-icon svg {
        width: 18px;
        height: 18px;
    }

    .rp-donate-info-title {
        font-size: 12.5px;
    }

    .rp-donate-info-card p {
        font-size: 11px;
        line-height: 1.7;
    }

    .rp-donate-secure {
        padding: 14px 16px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .rp-donate-secure-icon {
        width: 32px;
        height: 32px;
    }

    .rp-donate-secure-title {
        font-size: 13px;
    }

    .rp-donate-secure p {
        font-size: 9.5px;
        line-height: 1.6;
        letter-spacing: 0;
    }

    /* ── About section ─────────────────────────────────── */
    .rp-about {
        padding: 16px 0 36px;
    }

    .rp-about-header {
        margin-bottom: 22px;
    }

    /* Top: brand intro + org info table — stack vertically */
    .rp-about-inner {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 28px;
    }

    .rp-about-table {
        font-size: 12px;
    }

    .rp-about-table th,
    .rp-about-table td {
        padding: 9px 8px;
    }

    .rp-about-table th {
        width: 78px;
        font-size: 11.5px;
    }

    .rp-about-kyougikai img {
        border-radius: 12px;
    }

    /* "私たちの活動" / "つながり・支え" cards: stack vertically */
    .rp-about-three {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .rp-about-card {
        border-radius: 12px;
    }

    .rp-about-card-header {
        padding: 12px 16px;
        gap: 8px;
    }

    .rp-about-card-icon {
        width: 30px;
        height: 30px;
    }

    .rp-about-card-icon svg {
        width: 18px;
        height: 18px;
    }

    .rp-about-card-title-text {
        font-size: 16px;
    }

    .rp-about-card-body {
        padding: 14px 16px 16px;
    }

    .rp-about-card-lead {
        font-size: 12px;
        margin-bottom: 12px;
        line-height: 1.7;
    }

    .rp-about-list li {
        font-size: 12px;
        padding: 4px 0;
        gap: 8px;
        line-height: 1.55;
    }

    .rp-check-circle {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    /* Body split: photo + text → stack vertically */
    .rp-about-card-body-split {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .rp-about-photo {
        aspect-ratio: 16 / 9;
        border-radius: 8px;
    }

    /* Stats (応援団 etc.): 3 cols → keep but compact */
    .rp-about-stats {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 10px 10px;
    }

    .rp-about-stat {
        border-right: none;
        border-bottom: 1px solid #E0E6EE;
        padding: 6px 4px;
    }

    .rp-about-stat:last-child {
        border-bottom: none;
    }

    .rp-about-stat-icon {
        width: 32px;
        height: 32px;
    }

    .rp-about-stat-icon svg {
        width: 18px;
        height: 18px;
    }

    .rp-about-stat-label {
        font-size: 10.5px;
    }

    .rp-about-stat-value {
        font-size: 12px;
    }

    .rp-stat-num {
        font-size: 16px;
    }

    /* Partners list */
    .rp-about-partners {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 14px;
    }

    .rp-about-partners-list {
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .rp-about-partner-name {
        font-size: 10px;
    }

    /* Bottom message */
    .rp-about-message {
        margin-top: 24px;
        padding: 22px 18px;
        border-radius: 14px;
    }

    .rp-about-message-text {
        font-size: 12px;
        line-height: 1.75;
        letter-spacing: 0;
    }

    /* ── FAQ section ───────────────────────────────────── */
    .rp-faq {
        padding-top: 16px;
        padding-bottom: 24px;
    }

    /* 2 columns → 1 column */
    .rp-faq-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 18px 0 0;
    }

    .rp-faq-item {
        padding: 14px 16px;
        border-radius: 10px;
    }

    .rp-faq-q {
        font-size: 13px;
        gap: 10px;
        line-height: 1.5;
    }

    .rp-faq-q-mark {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }

    .rp-faq-toggle {
        font-size: 16px;
        margin-left: auto;
        flex-shrink: 0;
    }

    .rp-faq-a {
        margin-top: 10px;
        padding-top: 10px;
        font-size: 11.5px;
        line-height: 1.7;
        gap: 10px;
    }

    .rp-faq-a-mark {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }

    /* ── Contact section ──────────────────────────────── */
    .rp-contact {
        padding-top: 18px;
    }

    .rp-contact-lead {
        font-size: 11.5px;
        margin-bottom: 22px;
        line-height: 1.85;
    }

    .rp-contact-cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .rp-contact-cta-only {
        margin: 22px 0 16px;
    }

    .rp-contact-cta-only .rp-contact-cta-btn {
        padding: 14px 32px;
        font-size: 13.5px;
    }

    .rp-contact-closing {
        font-size: 11.5px;
        padding-top: 18px;
        line-height: 1.7;
    }

    /* ── Footer (simplified) ──────────────────────────── */
    .rp-footer {
        padding: 26px 0 0;
    }

    .rp-footer-inner {
        padding: 0 18px;
    }

    .rp-footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 16px;
    }

    /* Hide all link sections — keep only the brand info */
    .rp-footer-col:not(.rp-footer-brand-col) {
        display: none;
    }

    .rp-footer-brand-col {
        padding-right: 0;
        text-align: center;
    }

    .rp-footer-brand {
        gap: 12px;
        margin-bottom: 10px;
        justify-content: center;
        align-items: center;
    }

    .rp-footer-brand-icon {
        width: 110px;
        height: 48px;
        background: #FFFFFF;
        border-radius: 10px;
        padding: 6px 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    }

    .rp-footer-brand-name-ja {
        font-size: 13px;
    }

    .rp-footer-brand-name-sub {
        font-size: 10.5px;
    }

    /* Hide the long brand description on mobile */
    .rp-footer-meta {
        display: none;
    }

    .rp-footer-bottom {
        flex-direction: column;
        gap: 4px;
        padding: 12px 0;
        font-size: 10px;
        text-align: center;
        line-height: 1.55;
    }

    /* ── Back-to-top button ───────────────────────────── */
    .rp-back-to-top {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 76px;
        right: 16px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid var(--rp-coral);
        color: var(--rp-coral);
        cursor: pointer;
        padding: 0;
        z-index: 49;
        box-shadow: 0 4px 12px rgba(58, 46, 42, 0.18);
        opacity: 0;
        transform: translateY(8px);
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .rp-back-to-top.is-visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

}

/* ── Utility classes (replacing inline styles) ──────────────────────────── */

/* Decorative SVGs (background flowers/leaves). Unique positioning is set via inline style. */
.rp-decor {
    position: absolute;
    pointer-events: none;
}

/* Donate section icon color variants */
.rp-donate-info-icon-coral {
    background: #FBE0CF;
    color: #E97A5A;
}

.rp-donate-secure-icon-navy {
    background: #E5EDF6;
    color: #1F3A5C;
}

/* FAQ Q text — fills remaining space between mark and toggle */
.rp-faq-q-text {
    flex: 1;
}

/* FAQ section h2 — left-align variant */
.rp-h2-faq {
    justify-content: flex-start;
}

/* Facility name badge (white pillow on services lead) */
.rp-facility-badge {
    display: inline-block;
    background: #fff;
    padding: 6px 18px;
    border-radius: 6px;
    margin-top: 10px;
    font-weight: 700;
}

/* FAQ open/close state via class toggle (replaces inline style="display:none") */
.rp-faq-item .rp-faq-a {
    display: none;
}

.rp-faq-item.open .rp-faq-a {
    display: flex;
}


@media (max-width: 1080px) and (min-width: 768px) {
    .rp-brand-jp {
        font-size: 15px;
    }

    .rp-header-inner {
        gap: 10px;
        padding: 0 10px;
    }

    .rp-nav {
        gap: 16px;
        margin-right: 0;
    }

    .rp-nav a {
        font-size: 11px;
    }

    .rp-cta-btn {
        padding: 5px 15px 5px 7px;
    }

    .rp-cta-btn span {
        font-size: 11px;
    }

    .rp-hero-cards {
        display: flex;
        flex-wrap: wrap;
    }

    .rp-card-cta {
        width: 100%;
    }
}

/* ──────────────────────────────────────────────
   Report セクション (note.com 連携 / 事務局ブログ)
   既存サイトのトンマナ準拠: --rp-yellow 枠 / --rp-ink テキスト / Noto Serif JP
   ────────────────────────────────────────────── */

.rp-reports {
    padding: 16px 0 60px;
}

.rp-reports .rp-section-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.rp-reports > .rp-section-inner > .rp-h2 {
    margin-bottom: 32px;
}

.rp-reports-frame {
    position: relative;
    background:
        radial-gradient(ellipse at 18% 28%, rgba(217, 165, 82, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 82% 72%, rgba(217, 165, 82, 0.07) 0%, transparent 55%),
        var(--rp-bg);
    border: 3px solid var(--rp-yellow);
    border-radius: 32px;
    padding: 56px 48px 48px;
    box-shadow: 0 2px 0 rgba(217, 165, 82, 0.18);
}

.rp-reports-head {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.rp-reports-h2 {
    font-family: var(--rp-serif);
    font-weight: 700;
    font-size: 38px;
    line-height: 1;
    color: var(--rp-ink);
    margin: 0;
    letter-spacing: 0.04em;
}

.rp-reports-link {
    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
    color: var(--rp-ink);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.rp-reports-link:hover {
    opacity: 0.6;
}

.rp-reports-link-arrow {
    margin-left: 6px;
    letter-spacing: -0.05em;
    color: var(--rp-yellow);
    font-weight: 700;
}

.rp-reports-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.rp-report-card {
    position: relative;
    background: var(--rp-card);
    border-radius: 16px;
    padding: 16px 16px 18px;
    text-decoration: none;
    color: var(--rp-ink);
    box-shadow: 0 4px 14px rgba(58, 46, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.rp-report-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(58, 46, 42, 0.10);
}

.rp-report-media {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: stretch;
    margin-bottom: 12px;
}

.rp-report-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 10px;
    background: var(--rp-bg-soft);
}

.rp-report-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rp-report-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rp-ink-soft);
    opacity: 0.5;
    font-size: 12px;
}

.rp-report-date {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
    font-size: 11px;
    color: var(--rp-ink-soft);
    letter-spacing: 0.08em;
    padding: 4px 2px 4px 4px;
    align-self: end;
    font-weight: 500;
}

.rp-report-title {
    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--rp-ink);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.rp-reports-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--rp-ink-soft);
    font-size: 14px;
    padding: 24px 0;
}

.rp-reports-empty a {
    color: var(--rp-coral);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .rp-reports-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .rp-reports-grid > .rp-report-card:nth-child(4) {
        display: none;
    }
}

@media (max-width: 768px) {
    .rp-reports {
        padding: 8px 0 24px;
    }
    .rp-reports-frame {
        padding: 36px 16px 28px;
        border-radius: 28px;
        border-width: 3px;
    }
    .rp-reports-h2 {
        font-size: 32px;
    }
    .rp-reports-head {
        gap: 16px;
        margin-bottom: 22px;
    }
    .rp-reports-link {
        font-size: 14px;
    }
    .rp-reports-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .rp-reports-grid > .rp-report-card:nth-child(4) {
        display: flex;
    }
    .rp-report-card {
        padding: 10px 10px 12px;
        border-radius: 14px;
    }
    .rp-report-title {
        font-size: 13px;
    }
}

/* SP最小サイズでも 2列×2行 を維持（合計4枚） */
@media (max-width: 480px) {
    .rp-reports-frame {
        padding: 28px 12px 22px;
    }
    .rp-reports-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .rp-reports-grid > .rp-report-card {
        display: flex;
        padding: 8px 8px 10px;
    }
    .rp-report-title {
        font-size: 12px;
        line-height: 1.5;
    }
    .rp-report-date {
        font-size: 10px;
    }
}