/*
Theme Name: Funamoto Theme
Theme URI: https://ryoko-funamoto.jp/
Author: ryoko funamoto
Description: 船元りょうこ公式サイトのためのオリジナルテーマ（宍粟の風景）
Version: 3.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: funamoto-theme
*/

/* ========== CSS Variables ========== */
:root {
    --clr-navy:    #1a306a;
    --clr-green:   #2d4a2d;
    --clr-stone:   #8b7355;
    --clr-sky:     #5a8fa8;
    --clr-yellow:  #f0eb45;
    --clr-cream:   #faf8f3;
    --clr-white:   #ffffff;
    --clr-text:    #333333;
    --clr-muted:   #666666;
    --overlay-dark: rgba(0, 0, 0, 0.45);
    --overlay-mid:  rgba(0, 0, 0, 0.3);
    --transition:   0.3s ease;
    --radius:       12px;
    --shadow:       0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg:    0 8px 40px rgba(0,0,0,0.14);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Yu Gothic', '游ゴシック', sans-serif;
    background-color: var(--clr-cream);
    color: var(--clr-text);
    line-height: 1.8;
}

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

a:hover { opacity: 0.8; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== Header / Navigation ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.site-header.transparent {
    background-color: transparent;
}

.site-header.scrolled {
    background-color: rgba(26, 48, 106, 0.96);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(8px);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    color: var(--clr-white);
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0.08em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.site-logo span {
    display: block;
    font-size: 11px;
    font-weight: normal;
    letter-spacing: 0.12em;
    opacity: 0.8;
    margin-top: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.nav-menu a {
    color: rgba(255,255,255,0.92);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--clr-yellow);
    border-bottom-color: var(--clr-yellow);
    opacity: 1;
}

.nav-menu .nav-join a {
    background-color: var(--clr-yellow);
    color: var(--clr-navy);
    padding: 8px 20px;
    border-radius: 999px;
    border-bottom: none;
    font-weight: bold;
}

.nav-menu .nav-join a:hover {
    background-color: #e8e230;
    color: var(--clr-navy);
    opacity: 1;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--clr-white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
    display: none;
    flex-direction: column;
    background-color: rgba(26, 48, 106, 0.97);
    backdrop-filter: blur(12px);
    padding: 16px 24px 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-drawer.open {
    display: flex;
}

.nav-drawer a {
    color: var(--clr-white);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    letter-spacing: 0.05em;
}

.nav-drawer a:last-child { border-bottom: none; }

.nav-drawer a:hover {
    color: var(--clr-yellow);
    opacity: 1;
}

/* ========== Hero Slider ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

/* 背景はPHP側でインライン指定。フォールバック用ベース */
.hero-slide:nth-child(1) { background-color: #2d4a2d; }
.hero-slide:nth-child(2) { background-color: #3a5c7a; }
.hero-slide:nth-child(3) { background-color: #5a4030; }

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10% 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-eyebrow {
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--clr-yellow);
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: bold;
    color: var(--clr-white);
    line-height: 1.25;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    margin-bottom: 20px;
}

.hero-title em {
    font-style: normal;
    color: var(--clr-yellow);
}

.hero-subtitle {
    font-size: clamp(14px, 1.8vw, 18px);
    color: rgba(255,255,255,0.88);
    line-height: 1.9;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
    max-width: 500px;
    margin-bottom: 36px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--clr-yellow);
    color: var(--clr-navy);
    font-weight: bold;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 999px;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.3);
    opacity: 1;
}

.hero-cta::after {
    content: '→';
}

/* Slider dots */
.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background-color var(--transition), transform var(--transition);
    border: none;
    padding: 0;
}

.hero-dot.active {
    background-color: var(--clr-yellow);
    transform: scale(1.3);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    right: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    letter-spacing: 0.15em;
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

/* 撮影情報クレジット */
.hero-photo-credit {
    position: absolute;
    bottom: 20px;
    left: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    z-index: 10;
}
.hero-credit-location,
.hero-credit-photo {
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.05em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.hero-credit-location {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

@keyframes scroll-line {
    0%, 100% { opacity: 0.6; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ========== Section Commons ========== */
.section {
    padding: 88px 32px;
}

.section--cream  { background-color: var(--clr-cream); }
.section--white  { background-color: var(--clr-white); }
.section--dark   { background-color: var(--clr-navy); color: var(--clr-white); }
.section--photo  {
    background-size: cover;
    background-position: center;
    position: relative;
}

.section--photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--overlay-dark);
}

.section--photo .section-inner,
.section--photo .section-heading,
.section--photo .section-heading::before,
.section--photo .section-heading::after {
    position: relative;
    z-index: 1;
}

.section--photo .section-heading {
    color: var(--clr-white);
}

.section-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 56px;
    text-align: center;
}

.section-eyebrow {
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--clr-stone);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.section--photo .section-eyebrow {
    color: var(--clr-yellow);
}

.section-heading {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: bold;
    color: var(--clr-navy);
    line-height: 1.3;
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background-color: var(--clr-yellow);
    border-radius: 2px;
}

.section--photo .section-heading {
    color: var(--clr-white);
}

.section-lead {
    margin-top: 20px;
    font-size: 16px;
    color: var(--clr-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
}

.section--photo .section-lead {
    color: rgba(255,255,255,0.85);
}

/* ========== Greeting ========== */
.greeting-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    gap: 28px;
}

.greeting-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 5px var(--clr-white), 0 0 0 8px var(--clr-yellow);
    flex-shrink: 0;
}

.greeting-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.greeting-body {
    width: 100%;
}

.greeting-label {
    display: inline-block;
    background-color: var(--clr-yellow);
    color: var(--clr-navy);
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.15em;
    padding: 4px 14px;
    border-radius: 3px;
    margin-bottom: 18px;
}

.greeting-title {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: bold;
    color: var(--clr-navy);
    line-height: 1.6;
    margin-bottom: 20px;
}

.greeting-text {
    font-size: 15px;
    line-height: 2.1;
    color: #555;
    margin-bottom: 24px;
    text-align: left;
}

.greeting-name {
    display: flex;
    justify-content: flex-end;
}

.greeting-name img {
    max-width: 180px;
}

/* ========== Policy (政策) ========== */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.policy-card {
    background: var(--clr-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.policy-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.policy-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--clr-green), var(--clr-sky));
    position: relative;
}

.policy-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.policy-card:hover .policy-card-img img {
    transform: scale(1.06);
}

.policy-card-num {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 36px;
    height: 36px;
    background-color: var(--clr-yellow);
    color: var(--clr-navy);
    font-size: 13px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-card-body {
    padding: 24px 24px 28px;
}

.policy-card-body h3 {
    font-size: 17px;
    font-weight: bold;
    color: var(--clr-navy);
    margin-bottom: 12px;
    line-height: 1.5;
}

.policy-card-body p {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
}

.policy-note {
    text-align: center;
    margin-top: 36px;
    font-size: 16px;
    color: var(--clr-navy);
    font-weight: 600;
}

/* ========== Profile ========== */
.profile-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    align-items: start;
}

.profile-photo {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.profile-photo img {
    width: 100%;
    display: block;
}

.profile-name {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: bold;
    color: var(--clr-navy);
    margin-bottom: 6px;
}

.profile-name-ruby {
    font-size: 13px;
    color: var(--clr-stone);
    letter-spacing: 0.12em;
    margin-bottom: 24px;
    display: block;
}

.profile-divider {
    width: 40px;
    height: 3px;
    background-color: var(--clr-yellow);
    margin-bottom: 24px;
    border-radius: 2px;
}

.profile-body {
    font-size: 15px;
    line-height: 2.1;
    color: #555;
}

.profile-body p + p { margin-top: 16px; }

.profile-body strong {
    color: var(--clr-navy);
    font-weight: 700;
}

/* ========== Activities (最新活動) ========== */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.activity-card {
    background: var(--clr-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.activity-card a {
    display: block;
    color: inherit;
}

.activity-card a:hover { opacity: 1; }

.activity-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, #d4e8d4, #b0d0e0);
}

.activity-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-thumb img {
    transform: scale(1.06);
}

.activity-body {
    padding: 20px 20px 24px;
}

.activity-date {
    font-size: 12px;
    color: var(--clr-stone);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: block;
}

.activity-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-text);
    line-height: 1.6;
    margin-bottom: 8px;
}

.activity-excerpt {
    font-size: 13px;
    color: var(--clr-muted);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.activities-more {
    text-align: center;
    margin-top: 48px;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 36px;
    border: 2px solid var(--clr-navy);
    color: var(--clr-navy);
    font-weight: bold;
    font-size: 14px;
    border-radius: 999px;
    letter-spacing: 0.05em;
    transition: background-color var(--transition), color var(--transition);
}

.btn-more::after { content: '→'; }

.btn-more:hover {
    background-color: var(--clr-navy);
    color: var(--clr-white);
    opacity: 1;
}

/* ========== Data Section (データで見る宍粟) ========== */
.data-section {
    background-color: var(--clr-navy);
    color: var(--clr-white);
}

.data-section .section-heading {
    color: var(--clr-white);
}

.data-section .section-eyebrow {
    color: var(--clr-yellow);
}

.data-iframe-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--clr-white);
    margin-top: 16px;
}

.data-iframe-wrap iframe {
    display: block;
    width: 100%;
    height: 700px;
    border: none;
}

/* ========== Footer ========== */
.site-footer {
    background-color: #111b2e;
    color: var(--clr-white);
    padding: 64px 32px 32px;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 40px;
}

.footer-brand {
    flex-shrink: 0;
}

.footer-brand-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 6px;
    color: var(--clr-white);
}

.footer-brand-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.08em;
}

.footer-join-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background-color: var(--clr-yellow);
    color: var(--clr-navy);
    font-weight: bold;
    font-size: 14px;
    border-radius: 999px;
    transition: background-color var(--transition);
}

.footer-join-btn:hover {
    background-color: #e8e230;
    opacity: 1;
}

.footer-sns {
    display: flex;
    gap: 40px;
}

.footer-sns-item {
    text-align: center;
}

.footer-sns-item img {
    width: 88px;
    height: 88px;
    border-radius: 10px;
    margin: 0 auto 8px;
    background: white;
}

.footer-sns-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    letter-spacing: 0.08em;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
}

.footer-nav a:hover {
    color: rgba(255,255,255,0.8);
    opacity: 1;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

/* ========== Events Section ========== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* ── トップページ イベントカレンダー ── */
.fp-cal-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.fp-cat-btn {
    padding: 6px 18px;
    border-radius: 20px;
    border: 2px solid var(--clr-navy);
    background: transparent;
    color: var(--clr-navy);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.fp-cat-btn.active,
.fp-cat-btn:hover {
    background: var(--clr-navy);
    color: #fff;
}
.fp-calendar {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 32px;
    width: 100%;
}

/* イベントセクションだけ最大幅を広げる */
#section-events .section-inner {
    max-width: 1200px;
}
.fp-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--clr-navy);
    color: #fff;
    padding: 14px 20px;
}
.fp-cal-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.fp-cal-nav {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0 8px;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.fp-cal-nav:hover { opacity: 1; }
.fp-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}
.fp-cal-day-header {
    text-align: center;
    padding: 8px 0;
    font-size: 11px;
    font-weight: 700;
    color: var(--clr-stone);
    background: #f5f3ee;
    border-bottom: 1px solid #e8e4dc;
}
.fp-cal-day-header.sun { color: #c0392b; }
.fp-cal-day-header.sat { color: #2980b9; }
.fp-cal-cell {
    min-height: 72px;
    padding: 6px 4px 4px;
    border-right: 1px solid #f0ece4;
    border-bottom: 1px solid #f0ece4;
    font-size: 12px;
    overflow: hidden;
    min-width: 0;
    vertical-align: top;
}
.fp-cal-cell.empty { background: #faf9f6; }
.fp-cal-cell.today { background: #fffde7; }
.fp-cal-cell.sun .fp-cal-num { color: #c0392b; }
.fp-cal-cell.sat .fp-cal-num { color: #2980b9; }
.fp-cal-num {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 3px;
    color: #333;
}
.fp-cal-cell.today .fp-cal-num {
    background: var(--clr-yellow);
    color: var(--clr-navy);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.fp-cal-event-dot {
    display: block;
    font-size: 10px;
    color: #fff;
    background: var(--clr-sky);
    border-radius: 3px;
    padding: 2px 4px;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    line-height: 1.4;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}
.fp-cal-event-dot:hover { background: var(--clr-navy); }

/* ── モバイル：リスト表示 ── */
.fp-cal-list {
    padding: 8px 0;
}

.fp-list-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid #f0ece4;
}

.fp-list-row.today {
    background: #fffde7;
}

.fp-list-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 36px;
    flex-shrink: 0;
}

.fp-list-day {
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-text);
    line-height: 1;
}

.fp-list-wday {
    font-size: 11px;
    color: var(--clr-stone);
    margin-top: 2px;
}

.fp-list-date.sun .fp-list-day,
.fp-list-date.sun .fp-list-wday { color: #c0392b; }

.fp-list-date.sat .fp-list-day,
.fp-list-date.sat .fp-list-wday { color: #2980b9; }

.fp-list-events {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    padding-top: 2px;
}

.fp-list-event {
    display: block;
    font-size: 13px;
    color: var(--clr-text);
    text-decoration: none;
    font-weight: 600;
    line-height: 1.5;
}

.fp-list-event:hover { color: var(--clr-sky); }

.fp-list-loc {
    display: block;
    font-size: 11px;
    color: var(--clr-stone);
    font-weight: 400;
    margin-top: 2px;
}

.fp-list-empty {
    text-align: center;
    padding: 24px;
    color: var(--clr-muted);
    font-size: 14px;
}

@media (max-width: 600px) {
    .fp-cal-cell { min-height: 50px; padding: 4px 2px; }
    .fp-cal-event-dot { font-size: 9px; padding: 1px 3px; }
    .fp-cal-num { font-size: 11px; }
}

.event-card {
    background: var(--clr-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.event-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, #c8dfc8, #a8c8d8);
    flex-shrink: 0;
}

.event-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-thumb img {
    transform: scale(1.05);
}

.event-body {
    padding: 20px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-date,
.event-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--clr-stone);
    font-weight: 600;
}

.event-date svg,
.event-location svg {
    flex-shrink: 0;
    color: var(--clr-sky);
}

.event-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--clr-navy);
    line-height: 1.55;
    margin-top: 4px;
}

.event-title a {
    color: inherit;
}

.event-title a:hover {
    color: var(--clr-sky);
    opacity: 1;
}

.event-excerpt {
    font-size: 13px;
    color: var(--clr-muted);
    line-height: 1.7;
    flex: 1;
}

.event-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.event-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-navy);
    border-bottom: 1px solid var(--clr-navy);
    transition: opacity var(--transition);
}

.event-apply {
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    background-color: var(--clr-yellow);
    color: var(--clr-navy);
    padding: 6px 18px;
    border-radius: 999px;
    transition: background-color var(--transition);
}

.event-apply:hover {
    background-color: #e8e230;
    opacity: 1;
}

/* Events Archive Banner */
.events-archive-banner {
    height: 260px;
    background: linear-gradient(135deg, #1a3a5c 0%, var(--clr-sky) 60%, #3a7a6a 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.events-archive-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.events-archive-banner-content {
    position: relative;
    z-index: 1;
    padding: 0 40px 40px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Single Event detail */
.event-detail-meta {
    background: var(--clr-cream);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.event-detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--clr-text);
}

.event-detail-row svg {
    flex-shrink: 0;
    color: var(--clr-sky);
}

.event-detail-label {
    font-weight: 600;
    color: var(--clr-navy);
    min-width: 80px;
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding: 14px 36px;
    background-color: var(--clr-yellow);
    color: var(--clr-navy);
    font-weight: bold;
    font-size: 16px;
    border-radius: 999px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    opacity: 1;
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== イベントカレンダーページ ========== */
.cal-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.cal-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.cal-filter-btn {
    padding: 7px 18px;
    border: 2px solid var(--clr-navy);
    background: transparent;
    color: var(--clr-navy);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition), color var(--transition);
    font-family: inherit;
}

.cal-filter-btn.active,
.cal-filter-btn:hover {
    background-color: var(--clr-navy);
    color: var(--clr-white);
}

.cal-view-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
}

.cal-view-btn {
    padding: 8px 20px;
    border: 1px solid #ddd;
    background: var(--clr-white);
    color: var(--clr-muted);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.cal-view-btn.active {
    background: var(--clr-navy);
    color: var(--clr-white);
    border-color: var(--clr-navy);
}

/* カレンダー本体 */
.cal-container {
    background: var(--clr-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 48px;
}

.cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--clr-navy);
    color: var(--clr-white);
    padding: 16px 24px;
}

.cal-month-title {
    font-size: 20px;
    font-weight: bold;
}

.cal-nav-btn {
    background: none;
    border: none;
    color: var(--clr-white);
    font-size: 28px;
    cursor: pointer;
    padding: 0 12px;
    line-height: 1;
    opacity: 0.8;
    transition: opacity var(--transition);
    font-family: inherit;
}

.cal-nav-btn:hover { opacity: 1; }

.cal-grid-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #f0f0f0;
}

.cal-grid-header span {
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    font-weight: bold;
    color: var(--clr-muted);
}

.cal-grid-header span:first-child { color: #e05555; }
.cal-grid-header span:last-child  { color: var(--clr-sky); }

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-left: 1px solid #eee;
    border-top: 1px solid #eee;
}

.cal-day {
    min-height: 90px;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 6px;
    vertical-align: top;
    position: relative;
}

.cal-day--blank { background: #fafafa; }

.cal-day--today .cal-day-num {
    background: var(--clr-yellow);
    color: var(--clr-navy);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.cal-day-num {
    font-size: 13px;
    color: var(--clr-muted);
    display: block;
    margin-bottom: 4px;
}

.cal-day:nth-child(7n+1) .cal-day-num { color: #e05555; }
.cal-day:nth-child(7n)   .cal-day-num { color: var(--clr-sky); }

.cal-event-dot {
    background: var(--clr-navy);
    color: var(--clr-white);
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 2px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color var(--transition);
}

.cal-event-dot:hover { background: var(--clr-sky); }

/* ポップアップ */
.cal-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.cal-popup {
    background: var(--clr-white);
    border-radius: var(--radius);
    padding: 28px;
    max-width: 440px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
    max-height: 80vh;
    overflow-y: auto;
}

.cal-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--clr-muted);
    font-family: inherit;
}

/* リストビュー */
.cal-list-view { margin-bottom: 48px; }

/* 投稿促進ボックス */
.cal-submit-box {
    background: var(--clr-cream);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    border: 2px dashed #ddd;
}

.cal-submit-box p {
    font-size: 16px;
    font-weight: bold;
    color: var(--clr-navy);
    margin-bottom: 8px;
}

.cal-submit-note {
    font-size: 14px !important;
    font-weight: normal !important;
    color: var(--clr-muted) !important;
    margin-bottom: 20px !important;
}

/* ========== データページ ========== */
.data-page-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.data-page-lead {
    font-size: 15px;
    color: var(--clr-muted);
    line-height: 1.9;
    margin-bottom: 40px;
    text-align: center;
}

.data-tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 2px solid #e4ddd0;
    padding-bottom: 0;
    margin-bottom: 36px;
}

.data-tab-btn {
    padding: 10px 22px;
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent;
    color: var(--clr-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
    margin-bottom: -2px;
}

.data-tab-btn.active,
.data-tab-btn:hover {
    color: var(--clr-navy);
    border-bottom-color: var(--clr-yellow);
}

.data-section-panel { display: none; }
.data-section-panel.active { display: block; }

.data-section-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--clr-navy);
    margin-bottom: 12px;
}

.data-section-desc {
    font-size: 14px;
    color: var(--clr-muted);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .cal-day { min-height: 60px; }
    .cal-event-dot { font-size: 9px; padding: 1px 4px; }
    .cal-month-title { font-size: 16px; }
    .data-tab-nav { flex-direction: column; }
    .data-tab-btn { border-bottom: none; border-left: 3px solid transparent; }
    .data-tab-btn.active { border-left-color: var(--clr-yellow); }
}

/* ========== Single Post ========== */
.single-hero {
    height: 50vh;
    min-height: 300px;
    background-color: var(--clr-navy);
    position: relative;
    overflow: hidden;
}

.single-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.single-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 48px;
    max-width: 880px;
    margin: 0 auto;
}

.post-category {
    display: inline-block;
    background-color: var(--clr-yellow);
    color: var(--clr-navy);
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.12em;
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 12px;
}

.single-entry-title {
    font-size: clamp(20px, 3.5vw, 32px);
    font-weight: bold;
    color: var(--clr-white);
    line-height: 1.4;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.single-content-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 56px 24px 80px;
}

.single-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e4ddd0;
}

.single-meta-date {
    font-size: 13px;
    color: var(--clr-stone);
    letter-spacing: 0.05em;
}

.entry-content {
    font-size: 17px;
    line-height: 2.1;
    color: #3a3a3a;
}

.entry-content h2 {
    font-size: 22px;
    color: var(--clr-navy);
    margin: 48px 0 18px;
    padding-left: 18px;
    border-left: 4px solid var(--clr-yellow);
    line-height: 1.5;
}

.entry-content h3 {
    font-size: 19px;
    color: var(--clr-navy);
    margin: 36px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0d8cc;
}

.entry-content p {
    margin-bottom: 22px;
}

.entry-content img {
    border-radius: var(--radius);
    margin: 28px 0;
    width: 100%;
}

.entry-content ul, .entry-content ol {
    padding-left: 1.5em;
    margin-bottom: 20px;
}

.entry-content li {
    margin-bottom: 6px;
}

.entry-content blockquote {
    border-left: 4px solid var(--clr-yellow);
    padding: 16px 24px;
    background: var(--clr-cream);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 24px 0;
    color: var(--clr-muted);
    font-style: italic;
}

.post-nav {
    margin-top: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 40px;
    border-top: 1px solid #e4ddd0;
}

.post-nav-item {
    background: var(--clr-white);
    border-radius: var(--radius);
    padding: 18px 20px;
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition);
}

.post-nav-item:hover {
    box-shadow: var(--shadow-lg);
    opacity: 1;
}

.post-nav-item a {
    display: block;
    color: inherit;
}

.post-nav-label {
    font-size: 11px;
    color: var(--clr-stone);
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    display: block;
}

.post-nav-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--clr-navy);
    line-height: 1.5;
}

.post-nav-next { text-align: right; }

.back-link {
    text-align: center;
    margin-top: 32px;
}

.back-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-navy);
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition);
}

.back-link a::before { content: '←'; }

.back-link a:hover {
    border-bottom-color: var(--clr-navy);
    opacity: 1;
}

/* ========== Archive Page ========== */
.archive-banner {
    height: 260px;
    background: linear-gradient(135deg, var(--clr-green) 0%, #4a7a4a 40%, var(--clr-stone) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.archive-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.archive-banner-content {
    position: relative;
    z-index: 1;
    padding: 0 40px 40px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.archive-banner-label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--clr-yellow);
    font-weight: 600;
    margin-bottom: 8px;
}

.archive-banner-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: bold;
    color: var(--clr-white);
}

.archive-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 48px 32px 80px;
}

.archive-count {
    font-size: 13px;
    color: var(--clr-stone);
    margin-bottom: 28px;
    text-align: right;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.archive-card {
    background: var(--clr-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.archive-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.archive-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.archive-card a:hover { opacity: 1; }

.archive-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, #d4e8d4, #b0d0e0);
    flex-shrink: 0;
}

.archive-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.archive-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f0e8, #d0e4ec);
}

.archive-thumb-placeholder img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    opacity: 0.5;
}

.archive-card:hover .archive-thumb img {
    transform: scale(1.06);
}

.archive-body {
    padding: 18px 20px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.archive-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.archive-date {
    font-size: 12px;
    color: var(--clr-stone);
    letter-spacing: 0.04em;
}

.archive-cat {
    font-size: 11px;
    color: var(--clr-green);
    background: rgba(45, 74, 45, 0.08);
    border-radius: 3px;
    padding: 2px 8px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.archive-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--clr-text);
    line-height: 1.65;
    margin-bottom: 10px;
}

.archive-excerpt {
    font-size: 13px;
    color: var(--clr-muted);
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    margin-bottom: 14px;
}

.archive-more {
    font-size: 12px;
    color: var(--clr-sky);
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color var(--transition);
}

.archive-card:hover .archive-more {
    color: var(--clr-navy);
}

.archive-empty {
    text-align: center;
    padding: 60px 0;
    color: var(--clr-muted);
    font-size: 15px;
}

/* ── マガジン型レイアウト ── */
.mag-main {
    margin-bottom: 40px;
}

.mag-main a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.mag-main-thumb {
    position: relative;
    aspect-ratio: 16/7;
    overflow: hidden;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--clr-green), var(--clr-sky));
}

.mag-main-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mag-main:hover .mag-main-thumb img {
    transform: scale(1.04);
}

.mag-main-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--clr-green), var(--clr-sky));
}

.mag-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
}

.mag-main-body {
    padding: 32px 36px;
    width: 100%;
    max-width: 760px;
}

.mag-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--clr-yellow);
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 3px;
    padding: 3px 10px;
    margin-bottom: 10px;
}

.mag-main-title {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 10px;
}

.mag-main-excerpt {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mag-main-date {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.04em;
}

/* 小カードグリッド */
.mag-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 8px;
}

.mag-card {
    background: var(--clr-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.mag-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mag-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.mag-card a:hover { opacity: 1; }

.mag-card-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, #d4e8d4, #b0d0e0);
    flex-shrink: 0;
}

.mag-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mag-card:hover .mag-card-thumb img {
    transform: scale(1.06);
}

.mag-card-thumb-placeholder {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mag-card-thumb-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mag-card-body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mag-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.mag-card-date {
    font-size: 12px;
    color: var(--clr-stone);
    letter-spacing: 0.03em;
}

.mag-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-text);
    line-height: 1.65;
    margin-bottom: 8px;
}

.mag-card-excerpt {
    font-size: 12px;
    color: var(--clr-muted);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 900px) {
    .mag-grid { grid-template-columns: repeat(2, 1fr); }
    .mag-main-body { padding: 24px; }
}

@media (max-width: 600px) {
    .mag-grid { grid-template-columns: 1fr; }
    .mag-main-thumb { aspect-ratio: 4/3; }
    .mag-main-body { padding: 20px 16px; }
    .mag-main-title { font-size: 18px; }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 56px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 0 8px;
}

.pagination a {
    background: var(--clr-white);
    color: var(--clr-navy);
    border: 1px solid #ddd;
    box-shadow: var(--shadow);
    transition: background-color var(--transition), color var(--transition);
}

.pagination a:hover {
    background-color: var(--clr-navy);
    color: var(--clr-white);
    border-color: var(--clr-navy);
    opacity: 1;
}

.pagination .current {
    background: var(--clr-navy);
    color: var(--clr-white);
}

/* 404 */
.not-found {
    text-align: center;
    padding: 120px 24px;
}

.not-found h1 {
    font-size: 80px;
    font-weight: bold;
    color: var(--clr-yellow);
    line-height: 1;
    margin-bottom: 16px;
}

.not-found p {
    font-size: 18px;
    color: var(--clr-muted);
    margin-bottom: 32px;
}

/* ========== Responsive ========== */
@media (max-width: 960px) {
    .policy-grid {
        grid-template-columns: 1fr 1fr;
    }

    .activities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .archive-grid {
        grid-template-columns: 1fr 1fr;
    }

    .greeting-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .greeting-photo {
        max-width: 320px;
        aspect-ratio: 1;
        margin: 0 auto;
    }

    .profile-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .profile-photo {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hamburger { display: flex; }

    .nav-inner { padding: 0 20px; }

    .section { padding: 64px 20px; }

    .hero-content {
        padding: 0 24px 80px;
    }

    .hero-scroll { display: none; }

    .policy-grid {
        grid-template-columns: 1fr;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .archive-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-sns {
        gap: 28px;
    }

    .single-hero-content {
        padding: 24px;
    }

    .post-nav {
        grid-template-columns: 1fr;
    }

    .post-nav-next { text-align: left; }

    .data-iframe-wrap iframe {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .archive-banner {
        height: 200px;
    }

    .archive-banner-content {
        padding: 0 20px 28px;
    }

    .archive-wrap {
        padding: 36px 16px 60px;
    }

    .single-content-wrap {
        padding: 36px 16px 60px;
    }
}
