/* ===========================
   高雄山福圓寺 Official Website
   New Design 2026 — Bright & Modern
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root {
  /* New bright palette */
  --gold: #C8921A;
  --gold-light: #E8B84B;
  --gold-pale: #F5E6C0;
  --fire: #D94F2B;
  --fire-light: #F07040;
  --dark: #1C1209;
  --brown: #3D2B1F;
  --cream: #FAF8F4;
  --cream-mid: #F2EDE4;
  --gray: #F4F1EC;
  --text: #1C1209;
  --text-mid: #5C4A3A;
  --text-light: #8A7060;
  --white: #FFFFFF;
  --border: rgba(200,146,26,0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
}

/* ===== PHOTO PLACEHOLDER ===== */
.photo-slot {
  position: relative;
  background: linear-gradient(135deg, #EDE8DE, #DDD5C5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(200,146,26,0.4);
  overflow: hidden;
}
.photo-slot::before { content: '📷'; font-size: 2rem; margin-bottom: 0.5rem; opacity: 0.5; }
.photo-slot-label {
  font-size: 0.8rem; color: #7A6040; font-weight: 500;
  background: rgba(255,255,255,0.8); border-radius: 4px; padding: 4px 12px;
}
.photo-slot-size { font-size: 0.72rem; color: #9A8060; margin-top: 4px; }

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,146,26,0.15);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; flex-direction: column; text-decoration: none; }
.nav-logo-main {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem; color: var(--dark);
  font-weight: 700; letter-spacing: 0.08em;
}
.nav-logo-sub { font-size: 0.6rem; color: var(--gold); letter-spacing: 0.15em; }

.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links a {
  display: block; padding: 0.4rem 0.7rem;
  font-size: 0.78rem; color: var(--text-mid);
  text-decoration: none; letter-spacing: 0.06em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 70%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: 24px !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.4rem !important;
  font-size: 0.8rem !important;
  box-shadow: 0 4px 14px rgba(200,146,26,0.35) !important;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  box-shadow: 0 6px 20px rgba(200,146,26,0.5) !important;
  transform: translateY(-1px) !important;
}
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); transition: all 0.3s;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 100vh; min-height: 640px;
  display: flex; align-items: center;
  justify-content: center; overflow: hidden;
}
/* ===== HERO SLIDESHOW ===== */
.hero-slides { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-indicators {
  position: absolute; bottom: 5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.6rem; z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.7);
  cursor: pointer; transition: all 0.3s;
}
.hero-dot.active {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: scale(1.3);
}
/* 後方互換 */
.hero-bg { position: absolute; inset: 0; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #2A1F10 0%, #4D3520 40%, #6B4A2E 70%, #3A2810 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
}
.hero-photo-placeholder .icon { font-size: 4rem; opacity: 0.5; }
.hero-photo-placeholder .label {
  font-size: 1rem; color: rgba(232,184,75,0.8);
  letter-spacing: 0.2em; text-align: center;
  border: 1px dashed rgba(232,184,75,0.4);
  padding: 8px 24px; border-radius: 4px;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.2) 50%,
    rgba(0,0,0,0.65) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  padding: 2rem; max-width: 820px;
}

.hero-badge {
  display: inline-block;
  background: rgba(20,10,0,0.45);
  border: 1px solid rgba(232,184,75,0.7);
  color: #f5d97a;
  font-size: 0.72rem; letter-spacing: 0.28em;
  padding: 6px 22px; border-radius: 2px;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(6px);
  text-shadow: 0 1px 6px rgba(0,0,0,0.9), 0 0 12px rgba(0,0,0,0.7);
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300; letter-spacing: 0.22em;
  line-height: 1.25; margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 4px 40px rgba(0,0,0,0.5);
}
.hero-title span {
  display: block; font-size: 0.4em;
  letter-spacing: 0.4em; color: #f5d97a;
  font-weight: 400; margin-bottom: 0.8rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.95), 0 0 20px rgba(0,0,0,0.8);
}

.hero-copy {
  font-size: clamp(0.92rem, 2.2vw, 1.1rem);
  color: rgba(255,255,255,0.97);
  letter-spacing: 0.12em; margin-bottom: 2.8rem;
  font-weight: 400; line-height: 2.1;
  text-shadow: 0 2px 14px rgba(0,0,0,0.75), 0 1px 4px rgba(0,0,0,0.55);
}

.hero-buttons {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--white);
  padding: 0.9rem 2.4rem; font-size: 0.92rem;
  font-weight: 700; letter-spacing: 0.08em;
  text-decoration: none; border-radius: 32px;
  transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(200,146,26,0.45);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200,146,26,0.55);
}

.btn-fire {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--fire); color: var(--white);
  padding: 0.9rem 2.4rem; font-size: 0.92rem;
  font-weight: 700; letter-spacing: 0.08em;
  text-decoration: none; border-radius: 32px;
  transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(217,79,43,0.45);
}
.btn-fire:hover {
  background: var(--fire-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(217,79,43,0.55);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white); padding: 0.9rem 2.4rem;
  font-size: 0.92rem; letter-spacing: 0.08em;
  text-decoration: none; border-radius: 32px;
  transition: all 0.3s; backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  border-color: var(--gold-light); color: var(--gold-light);
  background: rgba(255,255,255,0.05);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 2px solid var(--gold); color: var(--gold);
  padding: 0.75rem 2rem; font-size: 0.88rem;
  font-weight: 500; letter-spacing: 0.08em;
  text-decoration: none; border-radius: 32px;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--gold); color: var(--white);
  box-shadow: 0 6px 20px rgba(200,146,26,0.35);
}

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.68rem; letter-spacing: 0.2em;
  animation: bounce 2.5s infinite;
}
.hero-scroll::after {
  content: ''; display: block;
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ===== NEXT EVENT BANNER ===== */
#next-event {
  background: linear-gradient(135deg, var(--gold) 0%, #A8761A 100%);
  overflow: hidden;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.event-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 24s linear infinite;
  will-change: transform;
}
.event-banner {
  flex-shrink: 0;
  min-width: 100vw;
  padding: 0.8rem 3rem;
  display: flex; align-items: center; justify-content: center;
  gap: 1.2rem; white-space: nowrap;
}
.event-banner-label {
  font-size: 0.68rem; letter-spacing: 0.22em;
  color: rgba(255,255,255,0.85); white-space: nowrap;
  background: rgba(255,255,255,0.15);
  padding: 4px 12px; border-radius: 12px;
}
.event-banner-info {
  display: flex; align-items: center;
  gap: 1.5rem; flex: 1;
}
.event-banner-date {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem; color: var(--white);
  letter-spacing: 0.08em; white-space: nowrap;
}
.event-banner-name {
  font-size: 0.95rem; color: var(--white);
  font-weight: 700; letter-spacing: 0.05em;
  white-space: nowrap;
}
.event-banner-link {
  display: inline-block; padding: 0.4rem 1.6rem;
  border: 2px solid rgba(255,255,255,0.8);
  color: var(--white); font-size: 0.8rem;
  font-weight: 500; letter-spacing: 0.1em;
  text-decoration: none; border-radius: 24px;
  transition: all 0.3s; white-space: nowrap;
}
.event-banner-link:hover {
  background: var(--white); color: var(--gold);
}

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-en {
  display: block; font-size: 0.68rem;
  letter-spacing: 0.4em; color: var(--gold);
  margin-bottom: 0.75rem; text-transform: uppercase;
}
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400; letter-spacing: 0.12em;
  color: var(--dark); margin-bottom: 1rem;
}
.section-desc {
  font-size: 0.9rem; color: var(--text-light);
  max-width: 540px; margin: 0 auto;
  letter-spacing: 0.04em; line-height: 1.9;
}

/* ===== TOP EXPERIENCES (3 pillars) ===== */
#experiences {
  padding: 5rem 1.5rem;
  background: var(--white);
}
.experiences-inner { max-width: 1100px; margin: 0 auto; }
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 900px) {
  .experiences-grid { grid-template-columns: 1fr; max-width: 480px; margin: 3rem auto 0; }
}

.exp-card {
  border-radius: 16px; overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transition: transform 0.35s, box-shadow 0.35s;
  cursor: pointer; text-decoration: none;
  display: block; background: var(--dark);
  min-height: 380px;
}
.exp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.18);
}
.exp-card-img {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  object-fit: cover;
  transition: transform 0.6s;
}
.exp-card:hover .exp-card-img { transform: scale(1.06); }
.exp-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
}
.exp-card-fire-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(100,20,0,0.9) 0%, rgba(200,60,20,0.15) 55%, transparent 100%);
}
.exp-card-body {
  position: relative; z-index: 2;
  padding: 2rem 1.8rem;
  height: 100%; display: flex;
  flex-direction: column; justify-content: flex-end;
  min-height: 380px;
}
.exp-card-tag {
  display: inline-block;
  font-size: 0.68rem; letter-spacing: 0.2em;
  color: var(--gold-light); margin-bottom: 0.7rem;
  background: rgba(232,184,75,0.15);
  padding: 3px 10px; border-radius: 12px;
  border: 1px solid rgba(232,184,75,0.3);
}
.exp-card-fire .exp-card-tag {
  color: #FFB89A;
  background: rgba(255,120,60,0.15);
  border-color: rgba(255,120,60,0.35);
}
.exp-card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem; color: var(--white);
  font-weight: 400; letter-spacing: 0.1em;
  margin-bottom: 0.6rem; line-height: 1.4;
}
.exp-card-desc {
  font-size: 0.82rem; color: rgba(255,255,255,0.8);
  line-height: 1.8; margin-bottom: 1.2rem;
}
.exp-card-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--white); font-size: 0.8rem;
  font-weight: 500; letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
}
.exp-card-fire .exp-card-btn { color: #FFB89A; border-color: rgba(255,120,60,0.5); }

/* Featured badge */
.exp-featured {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--fire); color: var(--white);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; padding: 4px 12px;
  border-radius: 12px; z-index: 3;
}

/* ===== 山主の言葉 ===== */
#message {
  padding: 6rem 1.5rem;
  background: var(--cream);
  position: relative; overflow: hidden;
}
#message::before {
  content: '福';
  position: absolute; font-family: 'Noto Serif JP', serif;
  font-size: 22rem; color: rgba(200,146,26,0.055);
  right: -2rem; top: 50%;
  transform: translateY(-50%);
  pointer-events: none; user-select: none;
}
.message-inner { max-width: 1000px; margin: 0 auto; }
.message-deco {
  display: flex; align-items: center;
  gap: 1.2rem; margin-bottom: 3rem;
  justify-content: center;
}
.message-deco-line {
  flex: 1; max-width: 120px;
  height: 1px; background: rgba(200,146,26,0.3);
}
.message-deco-text {
  font-size: 0.68rem; letter-spacing: 0.3em;
  color: var(--gold); white-space: nowrap;
}
.message-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem; align-items: start;
}
@media (max-width: 768px) {
  .message-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.message-photo {
  width: 260px; border-radius: 12px;
  overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border: 3px solid rgba(200,146,26,0.2);
  line-height: 0; font-size: 0;
}
@media (max-width: 768px) { .message-photo { width: 200px; margin: 0 auto; } }

.message-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem; color: var(--gold);
  margin-bottom: 1.5rem; letter-spacing: 0.1em;
}
.message-text p {
  color: var(--text-mid); line-height: 2.3;
  font-size: 0.95rem;
  font-family: 'Noto Serif JP', serif;
}
.message-sign {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(200,146,26,0.2);
  display: flex; flex-direction: column;
  gap: 0.3rem; align-items: flex-end;
}
.message-sign-temple { font-size: 0.78rem; color: var(--text-light); letter-spacing: 0.1em; }
.message-sign-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem; color: var(--gold);
  letter-spacing: 0.15em;
}

/* ===== 住職紹介 ===== */
#juushoku { padding: 6rem 1.5rem; background: var(--white); }
.priest-inner { max-width: 1000px; margin: 0 auto; }
.priest-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem; margin-top: 3rem; align-items: start;
}
@media (max-width: 768px) { .priest-grid { grid-template-columns: 1fr; gap: 2rem; } }
.priest-photo {
  position: relative; border-radius: 12px;
  overflow: hidden; height: 360px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.priest-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(28,18,9,0.7); color: rgba(255,255,255,0.85);
  font-size: 0.72rem; text-align: center;
  padding: 0.5rem; letter-spacing: 0.1em;
}
.priest-name-block { margin-bottom: 1.5rem; }
.priest-title {
  font-size: 0.72rem; letter-spacing: 0.22em;
  color: var(--gold); display: block; margin-bottom: 0.4rem;
}
.priest-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.9rem; color: var(--dark);
  letter-spacing: 0.15em;
  display: flex; align-items: baseline; gap: 1rem;
}
.priest-name-kana {
  font-size: 0.8rem; color: var(--text-light);
  font-weight: 300; letter-spacing: 0.1em;
}
.priest-table {
  width: 100%; border-collapse: collapse;
  margin-bottom: 1.5rem; font-size: 0.88rem;
}
.priest-table th, .priest-table td {
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid rgba(200,146,26,0.15);
  text-align: left; vertical-align: top;
}
.priest-table th {
  width: 90px; color: var(--gold);
  font-weight: 500; white-space: nowrap;
}
.priest-table td { color: var(--text); line-height: 1.7; }
.priest-bio p {
  color: var(--text-mid); line-height: 2;
  font-size: 0.9rem;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  background: var(--cream); padding: 1rem 1rem 1rem 1.5rem;
  border-radius: 0 8px 8px 0;
}

/* ===== お寺の歴史 ===== */
#history { padding: 6rem 1.5rem; background: var(--gray); }
.history-inner { max-width: 1000px; margin: 0 auto; }
.history-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem; margin-top: 3rem; align-items: start;
}
@media (max-width: 768px) { .history-grid { grid-template-columns: 1fr; gap: 2rem; } }
.history-block {
  margin-bottom: 2.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(200,146,26,0.18);
}
.history-block:last-child { border-bottom: none; margin-bottom: 0; }
.history-subtitle {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem; color: var(--dark);
  margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.history-subtitle::before {
  content: ''; display: inline-block;
  width: 22px; height: 2px;
  background: var(--gold); flex-shrink: 0;
}
.history-block p { color: var(--text-mid); line-height: 2; font-size: 0.9rem; }

/* ===== ABOUT ===== */
#about { padding: 6rem 2rem; background: var(--white); }
.about-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.about-photo {
  height: 460px; border-radius: 16px;
  position: relative; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.about-photo::after {
  content: ''; position: absolute;
  top: 16px; left: 16px; right: -16px; bottom: -16px;
  border: 2px solid rgba(200,146,26,0.25);
  border-radius: 16px; z-index: -1;
}
.about-text h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.7rem; letter-spacing: 0.35em;
  color: var(--gold); margin-bottom: 1rem;
  text-transform: uppercase;
}
.about-text h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400; letter-spacing: 0.08em;
  line-height: 1.65; margin-bottom: 1.5rem; color: var(--dark);
}
.about-text p {
  font-size: 0.9rem; color: var(--text-mid);
  margin-bottom: 1rem; line-height: 2;
}
.about-badge-wrap { margin: 1.5rem 0; }
.about-badge {
  display: flex; align-items: flex-start; gap: 1rem;
  background: linear-gradient(135deg, rgba(200,146,26,0.08), rgba(200,146,26,0.03));
  border: 1px solid rgba(200,146,26,0.3);
  border-radius: 12px; padding: 1.1rem 1.3rem;
}
.about-badge-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.about-badge div { display: flex; flex-direction: column; gap: 0.3rem; }
.about-badge strong {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem; color: var(--gold); letter-spacing: 0.05em;
}
.about-badge span { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }

.map-embed { width: 100%; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }

.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.8rem; margin-top: 2rem;
}
.about-feature {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(200,146,26,0.15);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.about-feature-img {
  width: 100%; height: 110px;
  object-fit: cover; display: block;
}
.about-feature-body {
  padding: 0.75rem 0.85rem;
}
.about-feature-text { font-size: 0.78rem; color: var(--text); line-height: 1.6; }
.about-feature-text strong {
  color: var(--dark); display: block;
  margin-bottom: 0.2rem; font-size: 0.85rem;
  font-family: 'Noto Serif JP', serif;
}

/* ===== EVENTS ===== */
#events { padding: 6rem 1.5rem; background: var(--cream); }
.events-inner { max-width: 1100px; margin: 0 auto; }
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem; margin-top: 3rem;
}
@media (max-width: 1100px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .events-grid { grid-template-columns: 1fr; max-width: 460px; margin: 3rem auto 0; } }

.event-card {
  background: var(--white); border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(200,146,26,0.1);
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.event-card-img {
  height: 180px; overflow: hidden; position: relative;
  background: var(--dark);
}
.event-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.event-card:hover .event-card-img img { transform: scale(1.06); }
.event-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--white);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; padding: 4px 12px;
  border-radius: 12px;
}
.event-tag-fire { background: var(--fire); }
.event-tag-blue { background: #2B6CB0; }

.event-card-body { padding: 1.4rem; }
.event-date {
  font-size: 0.75rem; color: var(--gold);
  font-weight: 500; letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.event-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem; color: var(--dark);
  margin-bottom: 0.6rem; letter-spacing: 0.05em;
  line-height: 1.5;
}
.event-desc { font-size: 0.82rem; color: var(--text-mid); line-height: 1.8; }
.event-more {
  display: inline-flex; align-items: center;
  gap: 0.3rem; margin-top: 0.9rem;
  font-size: 0.78rem; color: var(--gold);
  font-weight: 500; text-decoration: none;
}

/* Annual schedule */
.annual-wrap {
  margin-top: 3.5rem;
  background: var(--white);
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(200,146,26,0.15);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.annual-title {
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, var(--gold), #A8761A);
  color: var(--white);
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem; letter-spacing: 0.12em;
}
.annual-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.annual-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; min-width: 640px; }
.annual-table tr { border-bottom: 1px solid rgba(200,146,26,0.1); transition: background 0.2s; }
.annual-table tr:hover { background: rgba(200,146,26,0.04); }
.annual-table th { padding: 0.65rem 1.2rem; background: rgba(200,146,26,0.08); color: var(--gold); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-align: left; border-bottom: 1px solid rgba(200,146,26,0.2); }
.annual-table td { padding: 0.9rem 1.2rem; vertical-align: middle; }
.annual-table td:first-child {
  width: 200px; color: var(--gold);
  font-weight: 700; white-space: nowrap; font-size: 0.82rem; line-height: 1.7;
}
.annual-table td:nth-child(2) { color: var(--dark); font-weight: 600; white-space: nowrap; }
.annual-table td:nth-child(3) { color: var(--text-mid); font-size: 0.8rem; }
.annual-desc-main { display: block; color: var(--text); }
.annual-desc-sub { display: block; font-size: 0.75rem; color: var(--text-mid); margin-top: 0.25rem; letter-spacing: 0.04em; }
.annual-table td:last-child { color: var(--gold); font-size: 0.82rem; font-weight: 700; white-space: nowrap; width: 130px; }

/* テーブル横スクロール矢印（overflow時のみJSで.visibleを付与） */
.scroll-arrow {
  display: none;
  color: var(--gold);
  font-weight: 700;
  margin-left: 0.5em;
  animation: blink-arrow 0.85s ease-in-out infinite;
}
@keyframes blink-arrow {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.scroll-arrow.visible { display: inline; }

/* gokito 3-col responsive */
.gokito-3col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
@media (max-width: 768px) { .gokito-3col { grid-template-columns: 1fr; } }

/* ===== SPECIAL (体験) ===== */
#special { padding: 6rem 1.5rem; background: var(--dark); }
.special-inner { max-width: 1100px; margin: 0 auto; }
#special .section-title { color: var(--white); }
#special .section-desc { color: rgba(255,255,255,0.65); }

.special-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 3rem;
}
@media (max-width: 768px) { .special-grid { grid-template-columns: 1fr; } }

.special-card {
  border-radius: 16px; overflow: hidden;
  position: relative; min-height: 320px;
  display: flex; align-items: flex-end;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: transform 0.35s; cursor: default;
}
.special-card:hover { transform: translateY(-6px); }
.special-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.special-card:hover .special-card-img { transform: scale(1.05); }
.special-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.special-card-fire-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(120,25,5,0.88) 0%, rgba(200,70,20,0.1) 55%, transparent 100%);
}
.special-card-body {
  position: relative; z-index: 2;
  padding: 2rem 1.8rem;
  width: 100%;
}
.special-card-en {
  font-size: 0.65rem; letter-spacing: 0.35em;
  color: var(--gold-light); margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.special-card-fire .special-card-en { color: #FFB89A; }
.special-card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem; color: var(--white);
  margin-bottom: 0.7rem; letter-spacing: 0.08em;
}
.special-card-desc {
  font-size: 0.82rem; color: rgba(255,255,255,0.78);
  line-height: 1.8; margin-bottom: 1.2rem;
}
.special-card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1.4rem;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: var(--white); font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.08em;
  text-decoration: none; border-radius: 20px;
  transition: all 0.3s;
}
.special-card-link:hover {
  background: var(--white); color: var(--dark);
}
.special-card-fire .special-card-link {
  border-color: rgba(255,120,60,0.7); color: #FFD0B0;
}
.special-card-fire .special-card-link:hover {
  background: var(--fire); color: var(--white);
  border-color: var(--fire);
}

/* ===== SEASON PHOTOS ===== */
#season { padding: 5rem 1.5rem; background: var(--white); }
.season-inner { max-width: 1100px; margin: 0 auto; }
.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-top: 3rem;
}
@media (max-width: 900px) { .season-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .season-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; } }

.season-photo {
  position: relative; border-radius: 12px;
  overflow: hidden; height: 200px;
  cursor: pointer;
}
.season-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.season-photo:hover img { transform: scale(1.08); }
.season-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: rgba(255,255,255,0.9); font-size: 0.8rem;
  padding: 1.5rem 1rem 0.8rem;
  letter-spacing: 0.1em;
  font-family: 'Noto Serif JP', serif;
}

/* ===== STONE & GOSHUIN ===== */
#stone { padding: 6rem 1.5rem; background: var(--gray); }
.stone-inner { max-width: 1000px; margin: 0 auto; }
.stone-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; margin-top: 3rem;
}
@media (max-width: 768px) { .stone-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.stone-photos {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.stone-photo { border-radius: 10px; overflow: hidden; height: 180px; background: var(--cream-mid); }
.stone-photo img { width: 100%; height: 100%; object-fit: cover; }
.stone-text h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.7rem; color: var(--dark);
  margin-bottom: 1.2rem; letter-spacing: 0.1em;
}
.stone-text p { color: var(--text-mid); line-height: 2; font-size: 0.9rem; margin-bottom: 1rem; }

#goshuin { padding: 6rem 1.5rem; background: var(--white); }
.goshuin-inner { max-width: 1000px; margin: 0 auto; }
.goshuin-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; margin-top: 3rem;
}
.goshuin-single {
  grid-template-columns: 1fr;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) { .goshuin-grid { grid-template-columns: 1fr; max-width: 320px; margin: 3rem auto 0; } }
.goshuin-item {
  background: var(--cream); border-radius: 12px;
  overflow: hidden; text-align: center;
  border: 1px solid rgba(200,146,26,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}
.goshuin-item:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.goshuin-img { height: 240px; overflow: hidden; }
.goshuin-img img { width: 100%; height: 100%; object-fit: cover; }
.goshuin-caption { padding: 1.1rem; }
.goshuin-caption h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem; color: var(--dark);
  margin-bottom: 0.3rem;
}
.goshuin-caption p { font-size: 0.78rem; color: var(--text-light); line-height: 1.6; }

/* ===== INSTAGRAM ===== */
#insta { padding: 5rem 1.5rem; background: var(--cream); }
.insta-inner { max-width: 1100px; margin: 0 auto; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.6rem; margin-top: 2.5rem;
}
@media (max-width: 900px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .insta-grid { grid-template-columns: repeat(2, 1fr); } }
.insta-cell { position: relative; border-radius: 8px; overflow: hidden; }
.insta-cell::before { content: ''; display: block; padding-top: 100%; }
.insta-cell img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.insta-cell:hover img { transform: scale(1.08); }
.insta-cell-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.insta-cell:hover .insta-cell-overlay { background: rgba(200,146,26,0.35); }
.insta-cell-icon {
  color: var(--white); font-size: 1.5rem;
  opacity: 0; transform: scale(0.8);
  transition: all 0.3s;
}
.insta-cell:hover .insta-cell-icon { opacity: 1; transform: scale(1); }
.insta-follow {
  text-align: center; margin-top: 2rem;
}
.insta-follow a {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--white); font-size: 0.9rem; font-weight: 500;
  text-decoration: none; padding: 0.7rem 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #E1306C, #F77737, #FCAF45);
  box-shadow: 0 6px 20px rgba(225,48,108,0.35);
  transition: all 0.3s;
}
.insta-follow a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(225,48,108,0.45);
}

/* ===== BLOG ===== */
#blog { padding: 6rem 1.5rem; background: var(--white); }
.blog-inner { max-width: 1100px; margin: 0 auto; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; max-width: 460px; margin: 3rem auto 0; } }
.blog-card {
  background: var(--white); border-radius: 14px;
  overflow: hidden; border: 1px solid rgba(200,146,26,0.12);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none; display: block; color: inherit;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.4rem; }
.blog-meta {
  display: flex; align-items: center;
  gap: 0.7rem; margin-bottom: 0.6rem;
}
.blog-date { font-size: 0.75rem; color: var(--text-light); }
.blog-cat {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  background: var(--gold-pale); color: var(--gold);
  padding: 2px 10px; border-radius: 10px;
}
.blog-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.98rem; color: var(--dark);
  line-height: 1.6; margin-bottom: 0.6rem;
}
.blog-excerpt { font-size: 0.82rem; color: var(--text-mid); line-height: 1.8; }
.blog-more {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.78rem; color: var(--gold); font-weight: 500;
  margin-top: 0.8rem;
}

/* ===== CTA SECTION ===== */
#cta { padding: 7rem 1.5rem; position: relative; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1C1209 0%, #3D2010 50%, #1C0A05 100%);
}
.cta-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(200,146,26,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.cta-inner {
  position: relative; z-index: 2;
  max-width: 700px; margin: 0 auto;
  text-align: center;
}
.cta-inner h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--white); letter-spacing: 0.15em;
  margin-bottom: 1rem; line-height: 1.5;
}
.cta-inner p { color: rgba(255,255,255,0.72); font-size: 0.9rem; margin-bottom: 2.5rem; line-height: 2; }
.cta-buttons {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
}
.cta-phone {
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(200,146,26,0.2);
}
.cta-phone p { color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.12em; margin-bottom: 0.5rem; }
.cta-phone a {
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem; color: var(--gold-light);
  text-decoration: none; letter-spacing: 0.08em;
  transition: color 0.2s;
}
.cta-phone a:hover { color: var(--white); }
.cta-hours { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 0.3rem; }

/* ===== ACCESS ===== */
#access { padding: 6rem 1.5rem; background: var(--gray); }
.access-inner { max-width: 1100px; margin: 0 auto; }
.access-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; margin-top: 3rem; align-items: start;
}
@media (max-width: 768px) { .access-grid { grid-template-columns: 1fr; gap: 2rem; } }
.access-map { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.access-info { display: flex; flex-direction: column; gap: 1.5rem; }
.access-item { display: flex; gap: 1rem; align-items: flex-start; }
.access-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(200,146,26,0.1); border: 1px solid rgba(200,146,26,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.access-item-body h4 {
  font-size: 0.78rem; color: var(--gold);
  font-weight: 700; letter-spacing: 0.12em;
  margin-bottom: 0.3rem; text-transform: uppercase;
}
.access-item-body p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.8; }

/* ===== FOOTER ===== */
footer { background: #0E0A04; color: rgba(255,255,255,0.7); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem 2rem; }
.footer-top {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200,146,26,0.15);
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-brand .logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem; color: var(--white);
  font-weight: 700; letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}
.footer-brand .sub {
  font-size: 0.6rem; letter-spacing: 0.2em;
  color: var(--gold); margin-bottom: 1.2rem;
}
.footer-brand p { font-size: 0.82rem; line-height: 2; color: rgba(255,255,255,0.55); }
.footer-brand a { color: rgba(255,255,255,0.55); }
.footer-brand a:hover { color: var(--gold-light); }
.footer-sns { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-sns a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(200,146,26,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; text-decoration: none;
  transition: all 0.3s;
}
.footer-sns a:hover {
  background: rgba(200,146,26,0.2);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.85rem; color: var(--white);
  letter-spacing: 0.12em; margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(200,146,26,0.2);
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.2s;
  display: flex; align-items: center; gap: 0.4rem;
}
.footer-col a::before { content: '›'; color: var(--gold); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 1.8rem;
  font-size: 0.76rem; color: rgba(255,255,255,0.3);
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; margin-left: 1.5rem; }
.footer-bottom a:hover { color: var(--gold); }

/* ===== SCROLL FADE IN ===== */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== MOBILE MENU ===== */
@media (max-width: 900px) {
  .nav-links {
    display: none; position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column; padding: 1.5rem 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-top: 1px solid rgba(200,146,26,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 2rem; font-size: 0.9rem; color: var(--text); }
  .nav-links a:hover { background: rgba(200,146,26,0.06); }
  .nav-links a::after { display: none; }
  .nav-cta {
    margin: 0.5rem 1.5rem !important;
    display: block !important; text-align: center !important;
  }
  .nav-hamburger { display: flex; }
}

@media (max-width: 768px) {
  .events-grid { grid-template-columns: 1fr; max-width: 460px; margin: 3rem auto 0; }
  .blog-grid { grid-template-columns: 1fr; max-width: 460px; margin: 3rem auto 0; }
  .season-grid { grid-template-columns: repeat(2, 1fr); }
  .about-features { grid-template-columns: 1fr; }
  .goshuin-grid { grid-template-columns: 1fr; max-width: 320px; margin: 3rem auto 0; }
  .stone-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  /* 年間スケジュール表 */
  .annual-wrap { margin-top: 2rem; }
  .annual-table { font-size: 0.78rem; }
  .annual-table td { padding: 0.7rem 0.6rem; }
  .annual-table th { padding: 0.55rem 0.6rem; font-size: 0.68rem; }
  .annual-table td:first-child { width: 130px; font-size: 0.74rem; }
  .annual-table td:nth-child(3) { min-width: 220px; }
  .annual-table td:last-child { width: 72px; font-size: 0.74rem; }
  /* ヒーロー */
  .hero-badge { font-size: 0.6rem; letter-spacing: 0.12em; padding: 5px 12px; }
  .hero-copy { font-size: 0.88rem; letter-spacing: 0.06em; }
}

/* ===== ENTRY CONTENT (single/page) ===== */
.entry-content h2 { font-family: 'Noto Serif JP', serif; font-size: 1.3rem; color: var(--dark); margin: 2rem 0 1rem; padding-left: 0.8rem; border-left: 3px solid var(--gold); }
.entry-content h3 { font-family: 'Noto Serif JP', serif; font-size: 1.1rem; color: var(--dark); margin: 1.5rem 0 0.8rem; }
.entry-content p { margin-bottom: 1.2rem; }
.entry-content a { color: var(--gold); }
.entry-content img { max-width: 100%; border-radius: 8px; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.entry-content li { margin-bottom: 0.4rem; }