:root {
  --cream: #f9f4e7;
  --cream-deep: #f2ead6;
  --green-deep: #28421f;
  --green: #47703d;
  --green-soft: #e7efdd;
  --green-line: #c9d9bb;
  --lavender: #8d7fbc;
  --lavender-soft: #eeebf6;
  --gold: #b9862e;
  --gold-soft: #f7edd8;
  --ink: #33301f;
  --ink-soft: #6b6753;
  --white: #fffdf8;
  --serif: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --hand: "Klee One", cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.9;
  color: var(--ink);
  background: var(--cream);
}
img { max-width: 100%; display: block; }
a { color: var(--green); }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.5; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 22px; }
.sp-only { display: none; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(249, 244, 231, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--green-line);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 10px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.nav-brand {
  font-family: var(--serif); font-size: 19px; font-weight: 700;
  color: var(--green-deep); text-decoration: none; white-space: nowrap;
}
.nav-leaf { margin-right: 6px; }
.nav-sns { display: flex; gap: 6px; align-items: center; }
.nav-sns a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  color: var(--green); border: 1px solid var(--green-line);
  background: var(--white);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.nav-sns a:hover { background: var(--green-deep); color: var(--cream); transform: translateY(-2px); }
.nav-sns svg { width: 16px; height: 16px; }
.nav-links { display: flex; gap: 4px; overflow-x: auto; }
.nav-links a {
  color: var(--ink-soft); text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 6px 10px; border-radius: 999px; white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--green-soft); color: var(--green-deep); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 130px 0 0;
  background:
    radial-gradient(ellipse 600px 400px at 85% 15%, var(--lavender-soft) 0%, transparent 60%),
    radial-gradient(ellipse 700px 500px at 10% 90%, var(--green-soft) 0%, transparent 65%),
    var(--cream);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M30 90 Q30 60 60 55 Q55 85 30 90Z' fill='%2347703d' opacity='0.06'/%3E%3Cpath d='M95 35 Q95 15 75 12 Q78 32 95 35Z' fill='%238d7fbc' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1080px; margin: 0 auto; padding: 0 22px 90px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center;
}
.hero-role {
  display: inline-block;
  font-size: 15px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--green); border-bottom: 2px solid var(--green-line);
  padding-bottom: 4px; margin-bottom: 14px;
  animation: rise 0.7s ease both;
}
.hero-name {
  font-size: clamp(38px, 6vw, 58px); font-weight: 700; color: var(--green-deep);
  letter-spacing: 0.06em; margin-bottom: 10px;
  animation: rise 0.7s 0.1s ease both;
}
.hero-catch {
  font-family: var(--hand);
  font-size: clamp(22px, 3.2vw, 30px); font-weight: 600;
  color: var(--lavender); margin-bottom: 14px;
  animation: rise 0.7s 0.2s ease both;
}
.hero-badge {
  display: inline-block;
  background: var(--gold-soft); color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em;
  padding: 4px 14px; border-radius: 999px; margin-bottom: 20px;
  animation: rise 0.7s 0.28s ease both;
}
.hero-lead {
  max-width: 34em; color: var(--ink-soft); margin-bottom: 28px;
  animation: rise 0.7s 0.36s ease both;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; animation: rise 0.7s 0.44s ease both; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 700; font-size: 15px;
  padding: 12px 26px; border-radius: 999px; transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green-deep); color: var(--cream); box-shadow: 0 6px 18px rgba(40, 66, 31, 0.25); }
.btn-ghost { border: 2px solid var(--green-deep); color: var(--green-deep); }

.hero-photo { position: relative; animation: rise 0.8s 0.3s ease both; }
.hero-photo > img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 46% 54% 52% 48% / 44% 46% 54% 56%;
  border: 6px solid var(--white);
  box-shadow: 0 18px 40px rgba(40, 66, 31, 0.18);
}
.hero-stamp {
  position: absolute; right: -8px; bottom: -14px;
  width: 96px; height: 96px; border-radius: 50%; overflow: hidden;
  border: 4px solid var(--white); box-shadow: 0 8px 20px rgba(40, 66, 31, 0.2);
  transform: rotate(6deg);
}
.hero-stamp img { width: 100%; height: 100%; object-fit: cover; }
.hero-wave { line-height: 0; }
.hero-wave svg { width: 100%; height: 70px; display: block; }
.hero-wave path { fill: var(--green-soft); }

@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ---------- radio ---------- */
.radio { background: var(--green-deep); color: var(--cream); padding: 70px 0 78px; }
.radio-head { text-align: center; margin-bottom: 40px; }
.onair {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.22em;
  color: #ffb3a1; border: 1px solid rgba(255, 179, 161, 0.5);
  padding: 5px 16px; border-radius: 999px; margin-bottom: 18px;
}
.onair-dot { width: 9px; height: 9px; border-radius: 50%; background: #ff7b5c; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.45; transform: scale(0.75); } }
.radio-head h2 { font-size: clamp(24px, 4vw, 34px); color: var(--white); margin-bottom: 10px; }
.radio-station { color: #c4d6b6; font-size: 15px; }
.radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.radio-card {
  background: rgba(255, 253, 248, 0.07);
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 18px; padding: 26px 28px;
}
.radio-card h3 { color: var(--white); font-size: 19px; margin-bottom: 14px; }
.radio-schedule { list-style: none; }
.radio-schedule li {
  display: flex; align-items: center; gap: 14px;
  padding: 9px 0; border-bottom: 1px dashed rgba(255, 253, 248, 0.18);
  font-size: 16px;
}
.radio-schedule li span {
  flex-shrink: 0; font-size: 12.5px; font-weight: 700;
  background: rgba(196, 214, 182, 0.2); color: #d9e6cd;
  padding: 2px 12px; border-radius: 999px;
}
.radio-note { font-size: 13.5px; color: #b7cba7; margin-top: 14px; }
.radio-note a { color: #e8f0dc; }

/* ---------- sections ---------- */
section { scroll-margin-top: 60px; }
.section-head { text-align: center; margin-bottom: 42px; }
.section-head h2 {
  display: inline-block; position: relative;
  font-size: clamp(24px, 4vw, 32px); color: var(--green-deep);
  padding-bottom: 12px; margin-bottom: 10px;
}
.section-head h2::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 52px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--green), var(--lavender));
}
.section-sub { color: var(--ink-soft); font-size: 15px; }
.live-chip {
  display: inline-block; background: var(--green-soft); color: var(--green-deep);
  font-size: 12.5px; font-weight: 700; padding: 2px 12px; border-radius: 999px; margin-right: 10px;
}

/* ---------- latest feeds ---------- */
.latest { padding: 76px 0; background: var(--green-soft); }
.feed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feed-card {
  background: var(--white); border: 1px solid var(--green-line);
  border-radius: 16px; padding: 20px 22px;
  text-decoration: none; display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feed-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(40, 66, 31, 0.12); }
.feed-date { font-size: 12.5px; font-weight: 700; color: var(--lavender); letter-spacing: 0.04em; }
.feed-title { color: var(--ink); font-weight: 500; font-size: 15.5px; line-height: 1.7; margin-top: 6px; }
.feed-loading, .feed-error { color: var(--ink-soft); font-size: 14px; text-align: center; grid-column: 1 / -1; }
.feed-updated { text-align: center; font-size: 12.5px; color: var(--ink-soft); margin-top: 18px; }
.latest-links { text-align: center; margin-top: 10px; }
.text-link { font-weight: 700; font-size: 14.5px; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.feed-compact .feed-card { background: rgba(255, 253, 248, 0.07); border: none; padding: 10px 0; border-radius: 0; border-bottom: 1px dashed rgba(255, 253, 248, 0.18); }
.feed-compact .feed-card:hover { transform: none; box-shadow: none; }
.feed-compact .feed-title { color: var(--cream); font-size: 14.5px; }
.feed-compact .feed-date { color: #c9b8ef; }
.feed-compact .feed-loading { color: #b7cba7; text-align: left; }

/* ---------- profile ---------- */
.profile { padding: 76px 0; background: var(--white); }
.profile-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 46px; align-items: start; }
.profile-story > p { margin-bottom: 26px; }
.timeline { list-style: none; border-left: 3px solid var(--green-line); margin-left: 8px; }
.timeline li { position: relative; padding: 0 0 22px 26px; font-size: 15.5px; }
.timeline li::before {
  content: ""; position: absolute; left: -9px; top: 8px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--green); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--green-line);
}
.tl-year { display: block; font-family: var(--serif); font-weight: 700; color: var(--green-deep); font-size: 17px; }
.profile-quals {
  background: var(--cream); border-radius: 18px; padding: 28px;
  border: 1px solid var(--green-line);
}
.profile-quals h3 { color: var(--green-deep); font-size: 19px; margin-bottom: 16px; }
.qual-list { list-style: none; }
.qual-list li {
  padding: 9px 0 9px 30px; position: relative;
  border-bottom: 1px dashed var(--green-line); font-size: 15px; font-weight: 500;
}
.qual-list li::before { content: "🌿"; position: absolute; left: 2px; font-size: 14px; }
.qual-list li small { display: block; font-size: 12.5px; color: var(--ink-soft); font-weight: 400; }
.qual-star { background: var(--gold-soft); border-radius: 10px; padding-left: 34px !important; border-bottom: none !important; margin-bottom: 6px; }
.qual-star::before { content: "🌿" !important; left: 10px !important; }
.qual-row { display: flex; gap: 0.45em; align-items: flex-start; }
.qual-label { flex-shrink: 0; }
.qual-list small strong { font-weight: 700; }

/* ---------- activities ---------- */
.activities { padding: 76px 0; }
.act-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.act-card {
  background: var(--white); border: 1px solid var(--green-line);
  border-radius: 18px; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.act-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(40, 66, 31, 0.13); }
.act-card img { width: 100%; height: 175px; object-fit: cover; }
.act-card h3 { font-size: 18px; color: var(--green-deep); padding: 18px 22px 0; }
.act-card p { font-size: 14.5px; color: var(--ink-soft); padding: 8px 22px 22px; line-height: 1.8; }
.act-card-text { background: var(--green-soft); border-color: var(--green-line); display: flex; flex-direction: column; justify-content: center; }

/* ---------- calendar ---------- */
.calendar { padding: 76px 0; background: var(--green-soft); }
.calendar-embed {
  max-width: 860px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--green-line);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 8px 24px rgba(40, 66, 31, 0.08);
}
.calendar-embed iframe { display: block; width: 100%; height: 620px; border: 0; }
.calendar-agenda { display: none; }

/* ---------- media ---------- */
.media { padding: 76px 0; background: var(--white); }
.media-list { list-style: none; max-width: 760px; margin: 0 auto 46px; }
.media-list li {
  display: flex; gap: 22px; align-items: baseline;
  padding: 16px 4px; border-bottom: 1px solid var(--cream-deep);
  font-size: 15.5px;
}
.media-list strong { font-family: var(--serif); color: var(--green-deep); }
.media-date {
  flex-shrink: 0; width: 84px;
  font-size: 13.5px; font-weight: 700; color: var(--lavender); letter-spacing: 0.04em;
}
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 860px; margin: 0 auto; }
.video-embed { position: relative; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; background: var(--cream-deep); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card p { text-align: center; font-size: 14px; color: var(--ink-soft); margin-top: 10px; }

/* ---------- sns ---------- */
.sns { padding: 76px 0; }
.sns-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sns-card {
  background: var(--white); border: 1px solid var(--green-line); border-radius: 14px;
  padding: 18px 20px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.sns-card:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(40, 66, 31, 0.1); border-color: var(--green); }
.sns-card strong { display: block; color: var(--green-deep); font-size: 15.5px; }
.sns-card span { font-size: 13px; color: var(--ink-soft); }

/* ---------- contact ---------- */
.contact { padding: 76px 0 90px; background: linear-gradient(180deg, var(--cream) 0%, var(--green-soft) 100%); }
.contact-card {
  max-width: 620px; margin: 0 auto; text-align: center;
  background: var(--white); border-radius: 22px; padding: 40px 36px;
  border: 1px solid var(--green-line);
  box-shadow: 0 14px 36px rgba(40, 66, 31, 0.1);
}
.contact-name { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--green-deep); margin-bottom: 18px; }
.contact-card ul { list-style: none; margin-bottom: 18px; }
.contact-card li { padding: 5px 0; font-size: 16px; }
.contact-note { font-size: 14px; color: var(--ink-soft); }

/* ---------- footer ---------- */
.footer { background: var(--green-deep); color: var(--cream); text-align: center; padding: 46px 22px 40px; }
.footer-catch { font-family: var(--hand); font-size: 19px; color: #d9e6cd; margin-bottom: 18px; }
.footer-credit { font-size: 14.5px; margin-bottom: 8px; }
.footer-copy { font-size: 12.5px; color: #a9bf99; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .sp-only { display: inline; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 70px; }
  .hero-photo { max-width: 340px; margin: 0 auto; }
  .radio-grid, .profile-grid, .video-grid { grid-template-columns: 1fr; }
  .feed-grid, .act-grid, .sns-grid { grid-template-columns: 1fr 1fr; }
  .nav-inner { padding: 10px 14px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .feed-grid, .act-grid, .sns-grid { grid-template-columns: 1fr; }
  .calendar-month { display: none; }
  .calendar-agenda { display: block; }
  .calendar-embed iframe { height: 520px; }
  .hero { padding-top: 118px; }
  .media-list li { flex-direction: column; gap: 2px; }
}
