* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  background: #FFF7E8;
  color: #5D4A37;
  line-height: 1.6;
  font-feature-settings: "palt";
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }

/* ========== Header ========== */
.site-header {
  background: white;
  padding: 16px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-circle {
  width: 50px;
  height: 50px;
  background: #F6B36C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 24px;
  box-shadow: 0 2px 6px rgba(246, 179, 108, 0.3);
  overflow: hidden;
}
.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.logo-text-jp {
  font-size: 19px;
  font-weight: 700;
  color: #5D4A37;
  line-height: 1.2;
}
.logo-text-kana {
  font-size: 11px;
  color: #9C8B6E;
  margin-top: 2px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav-item {
  font-size: 14px;
  font-weight: 500;
  color: #5D4A37;
  cursor: pointer;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}
.nav-item:hover { color: #D97757; }
.nav-item.active { color: #D97757; font-weight: 700; }
.nav-item.active::after { content: ''; position: absolute; bottom: -4px; left: 50%; width: 60%; height: 2px; background: #F6B36C; border-radius: 2px; transform: translateX(-50%); }
.nav-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #F6B36C;
  border-radius: 2px;
  transition: all 0.2s;
  transform: translateX(-50%);
}
.nav-item:hover::after { width: 100%; }
.nav-cta {
  background: #F6B36C;
  color: white;
  padding: 9px 22px;
  border-radius: 22px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(246, 179, 108, 0.3);
}
.nav-cta:hover {
  background: #D97757;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(246, 179, 108, 0.4);
}
.nav-cta::after { display: none; }

/* Hamburger menu button */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 50%;
  transition: background 0.2s;
}
.hamburger-btn:hover { background: #FFF1D6; }
.hamburger-btn span {
  display: block;
  width: 24px;
  height: 3px;
  background: #5D4A37;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s;
  transform-origin: center;
}
.hamburger-btn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ========== Hero ========== */
.hero {
  background: #FFF1D6;
  padding: 50px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.hero-text { flex: 1; }
.hero-tag {
  display: inline-block;
  background: white;
  color: #D97757;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.hero h1 {
  font-size: 44px;
  font-weight: 800;
  color: #D97757;
  line-height: 1.3;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.hero p {
  font-size: 16px;
  color: #7B6850;
  margin-bottom: 24px;
  line-height: 1.8;
}
.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.hero-cta.primary {
  background: #F6B36C;
  color: white;
  box-shadow: 0 3px 10px rgba(246, 179, 108, 0.3);
}
.hero-cta.primary:hover {
  background: #D97757;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(246, 179, 108, 0.4);
}
.hero-cta.secondary {
  background: white;
  color: #D97757;
  border: 2px solid #FFE4D6;
}
.hero-cta.secondary:hover {
  border-color: #F6B36C;
  background: #FFF1D6;
}
.hero-illust {
  flex: 0 0 460px;
  position: relative;
}
.hero-illust svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ヒーロー写真スライドショー */
.hero-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(93, 74, 55, 0.14);
  background: #FFE4D6;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slideshow::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 56px;
  background: linear-gradient(to top, rgba(61, 74, 40, 0.28), transparent);
  pointer-events: none;
}
.hero-slide-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-slide-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.hero-slide-dot:hover { background: rgba(255,255,255,0.85); }
.hero-slide-dot.active { background: #fff; transform: scale(1.3); }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}

/* ========== Status Bar 本日開館 ========== */
.status-bar {
  background: #FFE8C7;
  padding: 14px 0;
  border-bottom: 2px dashed #F6B36C;
}
.status-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  flex-wrap: wrap;
}
.status-pill {
  background: #3D6028;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.status-time { color: #5D4A37; font-weight: 600; }
.status-date { color: #9C8B6E; font-size: 13px; }
.status-link {
  margin-left: auto;
  color: #D97757;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.status-link:hover { gap: 10px; }

/* ========== 2拠点 開館状況 ========== */
.status-locations {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1;
}
.status-loc {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.6);
  border-radius: 12px;
  padding: 8px 14px;
  flex: 1;
  min-width: 240px;
}
.status-loc-name {
  font-size: 13px;
  font-weight: 700;
  color: #5D4A37;
  white-space: nowrap;
}
.status-loc-detail {
  font-size: 12px;
  color: #7B6850;
  margin-left: auto;
  white-space: nowrap;
}
.status-loc.closed { background: rgba(251,228,224,0.9); }
.status-loc.closed .status-loc-detail { color: #C5564A; font-weight: 600; }

/* ========== 利用案内サマリー ========== */
.summary-section { padding: 28px 0 8px; }
.summary-head {
  text-align: center;
  margin-bottom: 18px;
}
.summary-tag {
  display: inline-block;
  background: white;
  color: #D97757;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.summary-title {
  font-size: 18px;
  font-weight: 700;
  color: #5D4A37;
  margin-top: 10px;
}
.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.summary-card {
  background: white;
  border-radius: 16px;
  padding: 22px 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.summary-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.summary-icon svg { width: 28px; height: 28px; }
.summary-label {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 5px;
}
.summary-value {
  font-size: 15px;
  font-weight: 700;
  color: #5D4A37;
  line-height: 1.4;
}
.summary-note {
  font-size: 11px;
  color: #9C8B6E;
  margin-top: 5px;
}

/* ========== 児童館だより セクション ========== */
.dayori-section { padding: 32px 0; }
.dayori-wrap {
  background: white;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 18px;
}
.dayori-wrap:last-child { margin-bottom: 0; }
.dayori-cover {
  flex: 0 0 130px;
  height: 170px;
  border-radius: 12px;
  background: #FFF1D6;
  border: 2px solid #F6B36C;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #D97757;
  position: relative;
  overflow: hidden;
}
.dayori-cover .di { font-size: 40px; }
.dayori-cover .dt { font-size: 13px; font-weight: 700; }
.dayori-body { flex: 1; }
.dayori-badge {
  display: inline-block;
  background: #F6B36C;
  color: white;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}
.dayori-title-main {
  font-size: 20px;
  font-weight: 800;
  color: #5D4A37;
  margin-bottom: 6px;
}
.dayori-desc {
  font-size: 14px;
  color: #7B6850;
  line-height: 1.7;
  margin-bottom: 16px;
}
.dayori-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.dayori-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.dayori-btn.primary { background: #F6B36C; color: white; }
.dayori-btn.primary:hover { background: #D97757; }
.dayori-btn.secondary { background: #FFF1D6; color: #D97757; border: 1.5px solid #F6B36C; }
.dayori-btn.secondary:hover { background: #FFE4D6; }

/* ========== 拠点紹介 セクション ========== */
.locations-section { padding: 32px 0; }
.location-cards {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}
.location-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
.location-photo {
  height: 150px;
  position: relative;
  overflow: hidden;
}
.location-photo svg { width: 100%; height: 100%; display: block; }
.location-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.location-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.92);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.location-chip.main { color: #D97757; }
.location-chip.sub { color: #5B8C44; }
.location-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.location-name {
  font-size: 18px;
  font-weight: 800;
  color: #5D4A37;
  margin-bottom: 4px;
}
.location-name-sub {
  font-size: 12px;
  color: #9C8B6E;
  margin-bottom: 12px;
}
.location-info-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  color: #7B6850;
  margin-bottom: 8px;
  line-height: 1.6;
}
.location-info-row svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; fill: #F6B36C; }
.location-link {
  margin-top: auto;
  padding-top: 14px;
  color: #D97757;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.location-card:hover .location-link { gap: 10px; }

/* ========== Sections ========== */
.section { padding: 32px 0; }
.section-title {
  font-size: 26px;
  font-weight: 800;
  color: #5D4A37;
  margin-bottom: 22px;
  scroll-margin-top: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.title-icon {
  width: 36px;
  height: 36px;
  background: #FFD66B;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.title-icon svg { width: 20px; height: 20px; }
.section-link {
  margin-left: auto;
  font-size: 13px;
  color: #9C8B6E;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.section-link:hover { gap: 8px; color: #D97757; }
.section-link.static { pointer-events: none; }

/* ========== Programs ========== */
.programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.program-card {
  display: block;
  border-radius: 20px;
  padding: 26px 22px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.program-card.peach { background: #FFE4D6; }
.program-card.peach .program-title,
.program-card.peach .program-desc { color: #9C5230; }
.program-card.sage { background: #D6EBC6; }
.program-card.sage .program-title,
.program-card.sage .program-desc { color: #3D6028; }
.program-card.yellow { background: #FFF0CC; }
.program-card.yellow .program-title,
.program-card.yellow .program-desc { color: #7A5E15; }
.program-card.blue { background: #E0F0F5; }
.program-card.blue .program-title,
.program-card.blue .program-desc { color: #185FA5; }
.program-card.coral { background: #FFE0D6; }
.program-card.coral .program-title,
.program-card.coral .program-desc { color: #A34A2E; }
.program-card.terracotta { background: #F5DDD3; }
.program-card.terracotta .program-title,
.program-card.terracotta .program-desc { color: #A15234; }
.program-icon-wrap {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.program-icon-wrap svg { width: 36px; height: 36px; }
.program-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}
.program-desc { font-size: 13px; opacity: 0.9; }

/* ========== News + Calendar Grid ========== */
.content-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}

/* News */
.news-list {
  background: white;
  border-radius: 20px;
  padding: 8px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.news-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed #F3DBA8;
  align-items: center;
  cursor: pointer;
  transition: padding-left 0.2s;
}
.news-item:hover { padding-left: 8px; }
.news-item:last-child { border-bottom: none; }
.news-thumb {
  width: 76px;
  height: 76px;
  border-radius: 14px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-thumb svg { width: 100%; height: 100%; display: block; }
.news-content { flex: 1; min-width: 0; }
.news-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 6px;
}
.news-tag {
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}
.news-tag.event { background: #FFE4D6; color: #9C5230; }
.news-tag.recruit { background: #D6EBC6; color: #3D6028; }
.news-tag.closed { background: #FFF0CC; color: #7A5E15; }
.news-tag.blog { background: #E0F0F5; color: #185FA5; }
.news-date { font-size: 12px; color: #9C8B6E; font-weight: 500; }
.news-title {
  font-size: 14px;
  color: #5D4A37;
  font-weight: 600;
  line-height: 1.5;
}

/* Calendar */
.calendar {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}
.cal-nav-btn {
  width: 28px;
  height: 28px;
  background: #FFF1D6;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #D97757;
  cursor: pointer;
  font-weight: 800;
  transition: background 0.2s;
}
.cal-nav-btn:hover { background: #FFE4D6; }
.cal-month-title {
  font-size: 18px;
  font-weight: 800;
  color: #D97757;
}
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.calendar-weekdays div {
  text-align: center;
  font-size: 11px;
  color: #9C8B6E;
  font-weight: 700;
  padding: 6px 0;
}
.calendar-weekdays .wd-sun { color: #E24B4A; }
.calendar-weekdays .wd-sat { color: #4A90C7; }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 10px;
  font-weight: 600;
  color: #5D4A37;
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
}
.cal-day:not(.empty):hover { background: #FFF1D6; }
.cal-day.empty { color: transparent; cursor: default; }
.cal-day.sun { color: #E24B4A; }
.cal-day.sat { color: #4A90C7; }
.cal-day.holiday { color: #E24B4A; }
.cal-legend { font-size: 11px; color: #E24B4A; margin-bottom: 10px; }
.cal-day.today {
  background: #D97757;
  color: white;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(217, 119, 87, 0.4);
}
.cal-day.today:hover { background: #C56847; }
.cal-day.event {
  background: #FFE4D6;
  color: #9C5230;
  font-weight: 800;
}
.cal-day.event::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #D97757;
  border-radius: 50%;
  transform: translateX(-50%);
}
.calendar-events {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed #F3DBA8;
}
.cal-events-title {
  font-size: 12px;
  color: #9C8B6E;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.cal-event-row {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
}
.cal-event-badge {
  background: #FFE4D6;
  color: #9C5230;
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 11px;
  min-width: 48px;
  text-align: center;
}
.cal-event-text { color: #5D4A37; font-weight: 500; }

/* ========== Photo Gallery ========== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item svg { width: 100%; height: 100%; display: block; }

/* ========== Footer ========== */
.site-footer {
  background: #F6B36C;
  color: white;
  padding: 48px 0 24px;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 32px;
  background: #FFF7E8;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-col h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}
.footer-col h3.sub { font-size: 14px; }
.footer-info {
  color: #FFF1D6;
  font-size: 13px;
  line-height: 1.9;
}
.footer-info a:hover { color: white; text-decoration: underline; }
.footer-links a {
  display: block;
  color: #FFF1D6;
  font-size: 13px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.3);
  text-align: center;
  color: #FFF1D6;
  font-size: 12px;
  position: relative;
  z-index: 2;
}

/* ========== 臨時休館バナー ========== */
.status-pill.closed { background: #C5564A; }
.status-pill.closed .status-dot { animation: none; }

/* 拠点バッジ（お知らせ） */
.news-loc-badge {
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.news-loc-badge.kami { background: #FFE4D6; color: #9C5230; }
.news-loc-badge.nishi { background: #D6EBC6; color: #3D6028; }

/* ========== Responsive ========== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .hero h1 { font-size: 38px; }
  .hero-illust { flex: 0 0 380px; }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  /* Header */
  .site-header { padding: 12px 0; }
  .logo-circle { width: 44px; height: 44px; font-size: 20px; }
  .logo-text-jp { font-size: 17px; }
  .hamburger-btn { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 8px 24px 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    gap: 0;
    z-index: 99;
  }
  .main-nav.open { display: flex; }
  .main-nav .nav-item {
    padding: 14px 4px;
    border-bottom: 1px solid #F3DBA8;
    width: 100%;
    text-align: left;
    font-size: 15px;
  }
  .main-nav .nav-item.nav-cta {
    margin-top: 14px;
    text-align: center;
    border-bottom: none;
    padding: 12px 22px;
  }
  .main-nav .nav-item::after { display: none; }

  /* Hero */
  .hero { padding: 36px 0 44px; }
  .hero-inner {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  .hero-tag { margin-bottom: 14px; }
  .hero h1 { font-size: 30px; margin-bottom: 12px; }
  .hero p { font-size: 14px; }
  .hero-illust {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-cta-group { justify-content: center; }

  /* Status bar */
  .status-bar { padding: 12px 0; }
  .status-inner {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
  }
  .status-link {
    margin-left: 0;
    width: 100%;
    padding-top: 4px;
  }

  /* Sections */
  .section { padding: 22px 0; }
  .section-title {
    font-size: 20px;
    gap: 10px;
    margin-bottom: 18px;
  }
  .title-icon { width: 32px; height: 32px; }
  .title-icon svg { width: 18px; height: 18px; }

  /* Programs */
  .programs {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .program-card { padding: 22px 20px; }

  /* 利用案内サマリー */
  .summary-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .summary-card { padding: 18px 10px; }
  .summary-icon { width: 48px; height: 48px; }
  .summary-icon svg { width: 24px; height: 24px; }
  .summary-value { font-size: 14px; }

  /* 開館状況2拠点 */
  .status-locations { flex-direction: column; gap: 8px; }
  .status-loc { min-width: 0; width: 100%; }

  /* 児童館だより */
  .dayori-wrap { flex-direction: column; gap: 18px; text-align: center; }
  .dayori-cover { flex: 0 0 auto; width: 120px; height: 150px; }
  .dayori-actions { justify-content: center; }

  /* 拠点紹介 */
  .location-cards { grid-template-columns: 1fr; gap: 16px; }

  /* News + Calendar */
  .content-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .news-list { padding: 4px 18px; }
  .news-item { gap: 12px; padding: 14px 0; }
  .news-thumb { width: 64px; height: 64px; border-radius: 12px; }
  .news-title { font-size: 13px; line-height: 1.5; }
  .calendar { padding: 18px; }
  .calendar-header { gap: 14px; margin-bottom: 14px; }
  .cal-month-title { font-size: 16px; }
  .cal-day { font-size: 12px; border-radius: 8px; }

  /* Gallery */
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gallery-item { border-radius: 14px; }

  /* Footer */
  .site-footer { padding: 40px 0 20px; margin-top: 32px; }
  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }
}

/* Small mobile (480px and below) */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .logo-circle { width: 40px; height: 40px; font-size: 18px; }
  .logo-text-jp { font-size: 16px; }
  .logo-text-kana { font-size: 10px; }

  .hero { padding: 32px 0 40px; }
  .hero h1 { font-size: 26px; line-height: 1.35; }
  .hero p { font-size: 13px; }
  .hero-cta-group { flex-direction: column; width: 100%; }
  .hero-cta { width: 100%; justify-content: center; }

  .status-inner { font-size: 12px; gap: 8px; }
  .status-pill { padding: 5px 12px; font-size: 12px; }
  .status-time, .status-date { font-size: 12px; }

  .section-title { font-size: 18px; }
  .program-card { padding: 20px 16px; }
  .program-title { font-size: 17px; }

  .news-list { padding: 2px 14px; }
  .news-item { padding: 12px 0; gap: 10px; }
  .news-thumb { width: 56px; height: 56px; }
  .news-tag { padding: 2px 9px; font-size: 10px; }
  .news-title { font-size: 12px; }

  .calendar { padding: 14px; }
  .cal-day { font-size: 11px; border-radius: 6px; }
  .calendar-weekdays div { font-size: 10px; padding: 4px 0; }

  .gallery { gap: 8px; }
  .gallery-item { border-radius: 12px; }

  .site-footer { padding: 32px 0 18px; }
}

/* ========== 追加ページ共通（おしらせ一覧・だより一覧・お問い合わせ） ========== */
.empty-note { text-align: center; color: #B0A088; font-size: 13px; padding: 24px; }

.page-header { padding: 44px 0 8px; text-align: center; }
.page-header h1 { font-size: 26px; font-weight: 800; color: #5D4A37; }

.list-card {
  background: white;
  border-radius: 20px;
  padding: 8px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13px; font-weight: 700; color: #7B6850; margin-bottom: 6px; }
.form-field .req { color: #C5564A; font-size: 11px; font-weight: 800; margin-left: 4px; }
.form-input, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #E5DCC8;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: #5D4A37;
  background: #FFFDF8;
  transition: border-color 0.2s;
}
.form-textarea { resize: vertical; line-height: 1.7; }
.form-input:focus, .form-textarea:focus { outline: none; border-color: #F6B36C; }
.form-alert {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}
.form-alert.error { background: #FBE4E0; color: #C5564A; }
.form-alert.success { background: #D6EBC6; color: #3D6028; }

/* ========== コンテンツページ共通（概要・施設案内・事業内容・西落合） ========== */
.page-header p.lead { color: #9C8B6E; font-size: 14px; margin-top: 6px; }

.content-card {
  background: white;
  border-radius: 20px;
  padding: 28px 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  margin-bottom: 24px;
}
.content-card h2 {
  font-size: 18px;
  font-weight: 800;
  color: #5D4A37;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.content-card h2 .dot { width: 8px; height: 8px; border-radius: 50%; background: #F6B36C; flex-shrink: 0; }
.content-card p { color: #6B5B47; line-height: 1.9; margin-bottom: 12px; }
.content-card p:last-child { margin-bottom: 0; }

/* 概要ページの基本情報テーブル */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid #F3EADA; }
.spec-table tr:last-child { border-bottom: none; }
.spec-table th, .spec-table td { text-align: left; padding: 12px 8px; font-size: 14px; vertical-align: top; }
.spec-table th { color: #9C5230; font-weight: 700; width: 130px; white-space: nowrap; }
.spec-table td { color: #5D4A37; }
.spec-logo { width: 72px; height: 72px; object-fit: contain; display: block; }

/* NAPブロック（住所・電話・アクセス） */
.nap-block { margin-bottom: 18px; }
.nap-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: #6B5B47;
  margin-bottom: 10px;
  line-height: 1.7;
}
.nap-row svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; fill: #F6B36C; }
.nap-row a { color: #D97757; font-weight: 600; }

/* 地図埋め込み */
.map-embed {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #F0E8D8;
  margin-top: 8px;
}
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }

/* 事業内容ページのプログラムカード */
.program-detail {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  margin-bottom: 22px;
  scroll-margin-top: 100px;
  display: flex;
  align-items: stretch;
}
.program-detail-color { width: 8px; flex-shrink: 0; }
.program-detail-body { padding: 24px 28px; flex: 1; }
.program-detail-title { font-size: 19px; font-weight: 800; color: #5D4A37; margin-bottom: 4px; }
.program-detail-tagline { font-size: 12px; color: #9C8B6E; margin-bottom: 14px; }
.program-detail dl { display: grid; grid-template-columns: 100px 1fr; gap: 8px 12px; margin-bottom: 12px; }
.program-detail dt { font-size: 12px; font-weight: 700; color: #9C5230; }
.program-detail dd { font-size: 13px; color: #5D4A37; line-height: 1.7; }
.program-detail .ext-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: #D97757;
  margin-top: 6px;
}
.pending-note {
  display: inline-block;
  background: #FBF0DC;
  color: #9C7A2E;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  margin-top: 8px;
}

/* 拠点ページ（西落合）の状況バッジ */
/* 西落合コーナー ブログ */
.nishi-post-list { display: flex; flex-direction: column; gap: 20px; }
.nishi-post {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #F3DBA8;
}
.nishi-post:last-child { border-bottom: none; padding-bottom: 0; }
.nishi-post-photo {
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
}
.nishi-post-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nishi-post-body { flex: 1; min-width: 0; }
.nishi-post-date { font-size: 11px; color: #9C8B6E; margin-bottom: 4px; }
.nishi-post-title { font-size: 15px; font-weight: 800; color: #5D4A37; margin-bottom: 6px; }
.nishi-post-text { font-size: 13px; color: #6B5B47; line-height: 1.8; }
.nishi-post-full[hidden] { display: none; }
.nishi-post-toggle {
  background: none;
  border: none;
  color: #D97757;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 0 0;
  cursor: pointer;
  font-family: inherit;
}
.nishi-post-toggle:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .nishi-post { flex-direction: column; }
  .nishi-post-photo { width: 100%; height: 180px; }
}

.location-hero-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}
.location-hero-status.open { background: #E8F3E0; color: #3D6028; }
.location-hero-status.closed { background: #FBE4E0; color: #C5564A; }
.location-hero-status .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

.breadcrumb-note {
  text-align: center;
  font-size: 12px;
  color: #B0A088;
  margin-top: -4px;
  margin-bottom: 0;
}

/* ========== インラインstyle置き換え用ユーティリティ ========== */

/* 本文コンテナの幅バリエーション */
.container-content { max-width: 760px; margin-left: auto; margin-right: auto; }
.container-list { max-width: 720px; margin-left: auto; margin-right: auto; }
.container-form { max-width: 600px; margin-left: auto; margin-right: auto; }

/* 汎用リンク行（矢印リンクの上に少し余白） */
.link-row { margin-top: 12px; }
.text-link { color: #D97757; font-weight: 700; }
.text-link.in-text { font-weight: 600; }

/* content-card の余白調整（連続配置時） */
.content-card-tight { margin-top: 8px; }

/* 利用案内サマリーのアイコン・ラベル配色バリエーション */
.summary-icon.peach  { background: #FFE4D6; }
.summary-icon.sage   { background: #D6EBC6; }
.summary-icon.yellow { background: #FFF0CC; }
.summary-icon.blue   { background: #E0F0F5; }
.summary-label.peach  { color: #9C5230; }
.summary-label.sage   { color: #3D6028; }
.summary-label.yellow { color: #7A5E15; }
.summary-label.blue   { color: #185FA5; }
.summary-value.compact { font-size: 14px; }
.summary-value.muted-italic { font-size: 13px; color: #9C8B6E; font-style: italic; }
.summary-note.warn { color: #C5564A; }

/* おしらせサムネイル：写真は object-fit で統一、カテゴリ別背景色 */
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-thumb.event   { background: #FFE4D6; }
.news-thumb.recruit { background: #D6EBC6; }
.news-thumb.closed  { background: #FFF0CC; }
.news-thumb.blog    { background: #E0F0F5; }

/* 事業内容カードのアクセントカラー */
.accent-peach       { background: #F6B36C; }
.accent-sage        { background: #8FC17A; }
.accent-yellow      { background: #FFD66B; }
.accent-blue        { background: #6BBCDB; }
.accent-coral       { background: #F0997B; }
.accent-terracotta  { background: #D97757; }

/* 登録要否バッジ */
.reg-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 14px;
  margin-left: 12px;
  vertical-align: middle;
}
.reg-badge.free     { background: #E8F3E0; color: #3D6028; }
.reg-badge.required { background: #FBF0DC; color: #9C7A2E; }

/* 事業内容：説明のみのプログラム（おべんとうひろば等） */
.program-detail-text { font-size: 13px; color: #5D4A37; line-height: 1.8; margin: 0; }

/* 事業写真プレースホルダー（ダミー） */
.program-detail-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #FBF7EF;
  border: 2px dashed #E5DCC8;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 4px;
  color: #B0A088;
  margin-bottom: 14px;
}
.program-detail-photo svg { width: 32px; height: 32px; opacity: 0.5; }
.program-detail-photo span { font-size: 11px; }
.program-detail-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.program-card-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,0.5);
  border: 2px dashed rgba(255,255,255,0.8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  overflow: hidden;
}
.program-card-photo svg { width: 26px; height: 26px; opacity: 0.6; }
.program-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* お問い合わせフォームのハニーポット（画面には表示しないおとり項目） */
.visually-hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-header { padding: 32px 0 6px; }
  .page-header h1 { font-size: 21px; }
  .list-card { padding: 4px 18px; }
  .content-card { padding: 22px 20px; }
  .spec-table th { width: 96px; font-size: 12px; }
  .spec-table td { font-size: 13px; }
  .program-detail { flex-direction: column; }
  .program-detail-color { width: 100%; height: 6px; }
  .program-detail-body { padding: 20px; }
  .program-detail dl { grid-template-columns: 84px 1fr; }
}


/* ============================================================
   管理画面（admin/）用スタイル
   旧: admin/assets/admin.css を統合（2026-07-10）
   ============================================================ */
body {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  background: #FFF7E8;
  color: #5D4A37;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

.logo-circle {
  width: 40px;
  height: 40px;
  background: #F6B36C;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ===== ログイン画面 ===== */
.admin-login-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.admin-login-card {
  background: white;
  border-radius: 20px;
  padding: 36px 32px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 8px 30px rgba(93, 74, 55, 0.12);
}
.admin-login-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.admin-login-title { font-size: 17px; font-weight: 800; color: #5D4A37; }
.admin-login-sub { font-size: 12px; color: #9C8B6E; margin-top: 2px; }

/* ===== 管理画面シェル ===== */
.admin-shell { min-height: 100vh; display: flex; flex-direction: column; }
.admin-topbar {
  background: #5D4A37;
  color: white;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.admin-topbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
}
.admin-topbar-user {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #F0E6D6;
}
.admin-logout-link {
  background: rgba(255,255,255,0.15);
  padding: 7px 16px;
  border-radius: 18px;
  font-weight: 700;
  transition: background 0.2s;
}
.admin-logout-link:hover { background: rgba(255,255,255,0.28); }

.admin-body-wrap {
  flex: 1;
  display: flex;
  align-items: flex-start;
}
.admin-sidebar {
  width: 200px;
  flex-shrink: 0;
  background: white;
  min-height: calc(100vh - 56px);
  padding: 20px 12px;
  box-shadow: 1px 0 0 rgba(0,0,0,0.05);
}
.admin-nav-item {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #7B6850;
  margin-bottom: 4px;
  transition: background 0.15s, color 0.15s;
}
.admin-nav-item:hover { background: #FFF1D6; color: #D97757; }
.admin-nav-item.active { background: #F6B36C; color: white; }

.admin-main {
  flex: 1;
  padding: 28px 32px;
  max-width: 1000px;
}
.admin-page-title {
  font-size: 22px;
  font-weight: 800;
  color: #5D4A37;
  margin-bottom: 20px;
}

/* ===== カード・グリッド ===== */
.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.admin-card {
  background: white;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.admin-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #5D4A37;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-card-title .acc { width: 5px; height: 20px; background: #F6B36C; border-radius: 3px; }
.admin-link {
  display: inline-block;
  margin-top: 14px;
  color: #D97757;
  font-weight: 700;
  font-size: 13px;
}
.admin-link:hover { text-decoration: underline; }
.admin-empty { text-align: center; color: #B0A088; font-size: 13px; padding: 20px; }
.admin-hint { font-size: 12px; color: #9C8B6E; line-height: 1.7; }

/* ===== フォーム部品 ===== */
.admin-field { margin-bottom: 14px; }
.admin-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #9C8B6E;
  margin-bottom: 6px;
}
.admin-input, .admin-select, .admin-textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid #E5DCC8;
  border-radius: 9px;
  font-family: inherit;
  font-size: 14px;
  color: #5D4A37;
  background: #FFFDF8;
  transition: border-color 0.2s;
}
.admin-textarea { resize: vertical; line-height: 1.6; }
.admin-input:focus, .admin-select:focus, .admin-textarea:focus {
  outline: none;
  border-color: #F6B36C;
}
.admin-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.admin-file {
  width: 100%;
  padding: 9px;
  border: 1.5px dashed #E5DCC8;
  border-radius: 9px;
  font-family: inherit;
  font-size: 13px;
  color: #7B6850;
  background: #FFFDF8;
  cursor: pointer;
}
.admin-btn {
  background: #F6B36C;
  color: white;
  border: none;
  border-radius: 9px;
  padding: 12px 20px;
  font-family: inherit;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.admin-btn:hover { background: #D97757; }
.admin-btn.full { width: 100%; }

.admin-alert {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.admin-alert.error { background: #FBE4E0; color: #C5564A; }
.admin-alert.success { background: #D6EBC6; color: #3D6028; }

/* ===== おしらせタグ ===== */
.news-tag {
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  white-space: nowrap;
}
.news-tag.event { background: #FFE4D6; color: #9C5230; }
.news-tag.recruit { background: #D6EBC6; color: #3D6028; }
.news-tag.closed { background: #FFF0CC; color: #7A5E15; }

/* ===== ダッシュボード ===== */
.dash-status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #FBF7EF;
  margin-bottom: 8px;
  font-size: 13px;
  flex-wrap: wrap;
}
.dash-status-name { font-weight: 700; }
.dash-status-badge {
  padding: 3px 10px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 11px;
  color: white;
  background: #3D6028;
}
.dash-status-row.closed .dash-status-badge { background: #C5564A; }
.dash-status-detail { margin-left: auto; color: #7B6850; }

.dash-news-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px dashed #F3DBA8;
  flex-wrap: wrap;
  font-size: 12px;
}
.dash-news-row:last-child { border-bottom: none; }
.dash-news-date, .dash-news-loc { color: #9C8B6E; }
.dash-news-body { flex-basis: 100%; font-size: 13px; color: #5D4A37; margin-top: 2px; }

.dash-big-number {
  font-size: 36px;
  font-weight: 800;
  color: #D97757;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.dash-big-number .unit { font-size: 13px; font-weight: 700; color: #9C8B6E; }

/* ===== 開館状況（拠点ブロック・トグル） ===== */
.admin-loc-block {
  background: #FBF7EF;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
}
.admin-loc-head {
  font-size: 14px;
  font-weight: 800;
  color: #5D4A37;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #E5DCC8;
}
.admin-loc-block .admin-input { background: white; }

.status-toggle-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.toggle-switch {
  position: relative;
  width: 64px;
  height: 34px;
  flex-shrink: 0;
  display: inline-block;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: #3D6028;
  border-radius: 34px;
  cursor: pointer;
  transition: background 0.3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  height: 26px; width: 26px;
  left: 4px; bottom: 4px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle-switch input:checked + .toggle-slider { background: #C5564A; }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(30px); }
.status-label-display { font-size: 16px; font-weight: 800; }
.status-label-display.open { color: #3D6028; }
.status-label-display.closed { color: #C5564A; }

/* ===== おしらせ一覧 ===== */
.news-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px 4px;
  border-bottom: 1px dashed #F0E8D8;
}
.news-row:last-child { border-bottom: none; }
.news-row-thumb { width: 48px; height: 48px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.news-row-date { font-size: 12px; color: #9C8B6E; }
.news-row-draft {
  font-size: 11px;
  font-weight: 800;
  color: #C5564A;
  background: #FBE4E0;
  padding: 2px 10px;
  border-radius: 12px;
}
.news-row-body { flex-basis: 100%; font-size: 14px; color: #5D4A37; line-height: 1.6; }
.news-row-actions { margin-left: auto; display: flex; gap: 10px; align-items: center; }

.news-loc-badge {
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.news-loc-badge.kami { background: #FFE4D6; color: #9C5230; }
.news-loc-badge.nishi { background: #D6EBC6; color: #3D6028; }

.admin-del-btn {
  background: #FBE4E0;
  color: #C5564A;
  border: none;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.admin-del-btn:hover { background: #F5CFC9; }

/* ===== 児童館だより ===== */
.newsletter-issue {
  background: #FFD66B;
  color: #7A5E15;
  font-weight: 800;
  font-size: 12px;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ===== お問い合わせ ===== */
.contact-row {
  padding: 14px 4px;
  border-bottom: 1px dashed #F0E8D8;
}
.contact-row:last-child { border-bottom: none; }
.contact-row-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.contact-status-badge {
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
}
.contact-status-badge.new { background: #FBE4E0; color: #C5564A; }
.contact-status-badge.read { background: #FFF0CC; color: #7A5E15; }
.contact-status-badge.handled { background: #D6EBC6; color: #3D6028; }
.contact-name { font-weight: 800; font-size: 14px; }
.contact-date { margin-left: auto; font-size: 12px; color: #9C8B6E; }
.contact-row-meta { font-size: 12px; color: #7B6850; margin-bottom: 8px; display: flex; gap: 14px; flex-wrap: wrap; }
.contact-row-meta a { color: #D97757; }
.contact-row-body { font-size: 14px; color: #5D4A37; line-height: 1.7; margin-bottom: 10px; white-space: pre-wrap; }
.contact-row-actions { display: flex; align-items: center; gap: 12px; }
.inline-form { display: inline-block; }

/* ===== サイト設定 ===== */
.tbd-badge {
  display: inline-block;
  background: #FFF0CC;
  color: #7A5E15;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 12px;
  margin-left: 8px;
}

/* ===== レスポンシブ ===== */
@media (max-width: 860px) {
  .admin-grid { grid-template-columns: 1fr; }
  .admin-body-wrap { flex-direction: column; }
  .admin-sidebar {
    width: 100%;
    min-height: auto;
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 12px;
  }
  .admin-nav-item { white-space: nowrap; margin-bottom: 0; }
  .admin-main { padding: 20px 16px; }
}

/* ===== トップ写真（hero_slides） ===== */
.admin-card.spaced-bottom { margin-bottom: 18px; }
.admin-card.spaced-top { margin-top: 18px; }
.admin-note-block { font-size: 13px; color: #6B5B47; line-height: 1.8; margin: 0; }
.admin-card.form-narrow { max-width: 560px; }
.admin-preview-wrap { margin-bottom: 8px; }
.admin-preview-wrap img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #E5DCC8;
}
.admin-field-note { font-size: 11px; color: #9C8B6E; margin-top: 6px; }
.admin-input.short { max-width: 120px; }
.admin-checkbox-label { display: flex; align-items: center; gap: 8px; }
