/* =============================================
   SITEMAP PAGE
   ============================================= */

.smap-main { background: #f8f7f2; }

/* ------------------------------------------
   HERO
   ------------------------------------------ */
.smap-hero {
  position: relative;
  height: 260px;
  background: #2f5d34;
  display: flex;
  align-items: center;
  justify-content: center;
}
.smap-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,30,8,.55) 0%, rgba(8,30,8,.3) 100%);
}
.smap-hero__body {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.smap-hero__label {
  font-size: 11px;
  letter-spacing: 7px;
  font-weight: 700;
  opacity: .72;
  margin: 0 0 12px;
}
.smap-hero__h1 {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: 6px;
}

/* ------------------------------------------
   BODY
   ------------------------------------------ */
.smap-body { padding: 72px 0 96px; }
.smap-body__inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 40px;
}

/* TOP link */
.smap-top { margin-bottom: 48px; }
.smap-home {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #2f5d34;
  text-decoration: none;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border: 1.5px solid #c8ddc8;
  border-radius: 8px;
  background: #fff;
  transition: background .18s, border-color .18s;
}
.smap-home:hover { background: #eef4ec; border-color: #2f5d34; }

/* ------------------------------------------
   GRID
   ------------------------------------------ */
.smap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ------------------------------------------
   SECTION CARD
   ------------------------------------------ */
.smap-section {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.07);
}
.smap-section__head {
  background: #2f5d34;
  padding: 18px 24px;
}
.smap-section__en {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255,255,255,.65);
  font-weight: 700;
  margin-bottom: 4px;
}
.smap-section__jp {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 17px;
  color: #fff;
  letter-spacing: 1px;
}

/* ------------------------------------------
   LIST
   ------------------------------------------ */
.smap-list {
  list-style: none;
  padding: 12px 0;
  margin: 0;
}
.smap-list__item { border-bottom: 1px solid #f0ede6; }
.smap-list__item:last-child { border-bottom: none; }
.smap-list__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  color: #33332c;
  text-decoration: none;
  font-size: 14px;
  transition: background .15s, color .15s;
}
.smap-list__link:hover { background: #f5f9f5; color: #2f5d34; }
.smap-list__arrow {
  color: #2f5d34;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

/* ------------------------------------------
   Responsive
   ------------------------------------------ */
@media (max-width: 860px) {
  .smap-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .smap-body { padding: 48px 0 64px; }
  .smap-body__inner { padding: 0 20px; }
  .smap-grid { grid-template-columns: 1fr; gap: 18px; }
  .smap-hero { height: 200px; }
}
