*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: #1A1A2E; } /* フッター色と一致させ、コンテンツ下の余白を消す */

:root {
  --green: #2D6A4F;
  --green-light: #40916C;
  --green-pale: #D8F3DC;
  --accent: #F4A261;
  --dark: #1A1A2E;
  --gray: #6B7280;
  --gray-light: #F3F4F6;
  --white: #FFFFFF;
  --radius: 16px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--dark);
  background: var(--gray-light);
  line-height: 1.7;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #E5E7EB;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.3px;
}
.logo-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text {
  white-space: nowrap;
  font-size: 0.8rem;
}
.nav { display: flex; gap: 28px; }
.nav a {
  text-decoration: none;
  color: #1F2937;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
  padding-bottom: 3px;
}
.nav a:hover { color: var(--green); }

/* HERO */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 60%, #FEF3C7 100%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.accent { color: var(--green); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 36px;
  line-height: 1.8;
}
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  touch-action: manipulation;
  cursor: pointer;
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); }

.hero-bg-circles { position: absolute; top: 0; right: 0; width: 100%; height: 100%; z-index: 0; }
.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}
.c1 {
  width: 500px; height: 500px;
  background: var(--green);
  right: -100px; top: -150px;
}
.c2 {
  width: 300px; height: 300px;
  background: var(--accent);
  right: 200px; bottom: -100px;
}

/* SECTIONS */
.section { padding: 60px 0 40px; }
.section-dark {
  background: var(--dark);
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-label.light { color: var(--accent); }
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-title.light { color: var(--white); }
.section-desc {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.geo-status {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray);
  background: var(--gray-light);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 32px;
}
.geo-status.in { background: var(--green-pale); color: var(--green); }
.geo-status.out { background: #FEF3C7; color: #92400E; }

/* TABS */
.category-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.tab {
  background: var(--gray-light);
  border: none;
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  color: var(--gray);
  transition: all 0.2s;
}
.tab.active, .tab:hover {
  background: var(--green);
  color: var(--white);
}
.label-chip {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: inherit;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1.4;
  white-space: nowrap;
}
.label-chip:hover { border-color: #2D6A4F; color: #2D6A4F; }
.label-chip.active { background: #2D6A4F; border-color: #2D6A4F; color: #fff; }

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  position: relative;
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius);
  padding: 20px;
  transition: box-shadow 0.2s, transform 0.15s;
  text-decoration: none;
  color: inherit;
}
.subsection-title {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-pale);
}
.new-badge {
  position: absolute;
  top: -8px;
  right: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 100px;
  box-shadow: 0 2px 6px rgba(244,162,97,0.4);
}
.card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.card.coming {
  background: var(--gray-light);
  border-style: dashed;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  min-height: 120px;
}
.card-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  border-radius: 12px;
}
.card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.card-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.card-addr {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 10px;
}

.card-badges { display: flex; gap: 6px; flex-wrap: wrap; }

/* ICHICO日トップバナー */
.ichicoday-top-banner {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, #1B4332, #2D6A4F);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 12px 20px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}
.ichicoday-top-banner:hover { opacity: 0.92; }
.ichicoday-top-banner .banner-arrow { font-size: 1rem; }

/* カテゴリ一覧：検索バー */
.search-bar {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 18px;
  border: 1.5px solid #E5E7EB;
  border-radius: 100px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
.search-bar:focus { border-color: var(--green); }

/* カテゴリ一覧：アクティブタグバー */
.active-tag-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 8px 14px;
  background: #F0FDF4;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
}
.tag-clear {
  color: #6B7280;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  border: 1px solid #D1D5DB;
  padding: 6px 14px;
  border-radius: 100px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  touch-action: manipulation;
}
.tag-clear:hover { background: #F3F4F6; }

/* カード内タグ */
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 6px 0 4px; }
.card-tag {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 100px;
  background: var(--green-pale);
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  touch-action: manipulation;
}
.card-tag:hover { background: #B7E4C7; }
.rate-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.pay-badge {
  display: inline-block;
  background: #EEF2FF;
  color: #4338CA;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.pay-badge.furusato { background: #FFF1F2; color: #BE123C; }
.ichico-day-badge {
  display: inline-block;
  background: #FEF3C7;
  color: #92400E;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

/* CATEGORY CHIPS */
.cat-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.cat-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--white); border: 1.5px solid #E5E7EB;
  border-radius: 100px; padding: 7px 16px;
  font-size: 0.84rem; font-weight: 700; color: var(--dark);
  cursor: pointer; font-family: inherit;
  transition: all 0.2s;
}
.cat-chip:hover, .cat-chip.active { background: var(--green); color: #fff; border-color: var(--green); }

/* FEATURES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.feature {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
}
.feature-icon { font-size: 2rem; margin-bottom: 16px; }
.feature h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }

/* AD ZONE */
.ad-section { background: var(--gray-light); }
.ad-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--green);
  margin-bottom: 16px;
}
.ad-pr {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gray);
  border: 1px solid #D1D5DB;
  border-radius: 4px;
  padding: 1px 5px;
}
.ad-carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.ad-viewport { overflow: hidden; }
.ad-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s ease;
}
.ad-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  color: var(--green);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.ad-nav:hover { background: var(--green); color: #fff; }
.ad-nav.prev { left: 12px; }
.ad-nav.next { right: 12px; }
/* バナー広告枠：300×250（6:5）に固定 */
.ad-card.ad-banner {
  display: block;
  flex: 0 0 300px;
  width: 300px;
  height: 250px;
  padding: 0;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
}
.ad-card.ad-banner a { display: block; width: 100%; height: 100%; }
/* リンク内のバナー画像だけを枠いっぱいに（計測用1×1ピクセルは対象外） */
.ad-card.ad-banner a img { width: 100%; height: 100%; object-fit: contain; display: block; }
.ad-card {
  flex: 0 0 320px;
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.15s;
}
.ad-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-3px); }
.ad-emoji {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  background: var(--green-pale);
  border-radius: 12px;
}
.ad-title { font-weight: 700; font-size: 0.98rem; margin-bottom: 5px; }
.ad-text { font-size: 0.84rem; color: var(--gray); line-height: 1.7; margin-bottom: 8px; }
.ad-cta { font-size: 0.82rem; font-weight: 700; color: var(--green); }

/* CTA */
.section-cta { background: var(--green-pale); text-align: center; }
.cta-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 12px;
}
.cta-desc { color: var(--gray); margin-bottom: 28px; }

/* FOOTER */
.footer {
  background: var(--dark);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer .logo { color: var(--white); }
.footer-copy { color: rgba(255,255,255,0.4); font-size: 0.82rem; }

/* SECONDARY BUTTON */
.btn-secondary {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
  padding: 12px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  touch-action: manipulation;
  cursor: pointer;
}
.btn-secondary:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* NAV (desktop) */
.nav { align-items: center; }
.nav > a.active {
  color: var(--green);
  font-weight: 700;
  border-bottom: 2.5px solid var(--green);
  padding-bottom: 0px;
}

/* DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.nav-dropdown-trigger:hover { color: var(--green); }
.nav-dropdown.has-active .nav-dropdown-trigger { color: var(--green); font-weight: 700; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  min-width: 180px;
  list-style: none;
  padding: 8px;
  z-index: 200;
}
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--dark);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.15s;
}
.nav-dropdown-menu li a:hover,
.nav-dropdown-menu li a.active { background: var(--green-pale); color: var(--green); }
/* ホバー＋クリックの両方で開く（隙間を埋めるため疑似要素で橋渡し） */
.nav-dropdown::after { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 12px; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }


/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 320;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--green);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}

/* MOBILE FULLSCREEN MENU */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #ffffff;
  background-color: #ffffff;
  z-index: 1000;
  flex-direction: column;
  padding: 20px 24px 40px;
  isolation: isolate;
}
.mobile-menu.open { display: flex; }
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  margin-bottom: 8px;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--dark);
  cursor: pointer;
}
.mobile-menu-nav { border-top: 1px solid #E5E7EB; padding-top: 8px; display: flex; flex-direction: column; }
.mobile-menu-nav > a,
.mobile-ichico-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  padding: 16px 4px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  cursor: pointer;
  border-bottom: 1px solid #F3F4F6;
}
.mobile-menu-nav > a.active {
  color: var(--green);
  border-left: 3px solid var(--green);
  padding-left: 8px;
}
.acc-arrow { transition: transform 0.2s; font-size: 0.8rem; color: var(--gray); }
.mobile-ichico-toggle.open .acc-arrow { transform: rotate(180deg); }
.mobile-ichico-submenu {
  display: none;
  list-style: none;
  padding: 4px 0 8px;
}
.mobile-ichico-submenu.open { display: block; }
.mobile-ichico-submenu li a {
  display: block;
  padding: 12px 4px 12px 24px;
  font-size: 0.98rem;
  color: var(--gray);
  text-decoration: none;
}
.mobile-ichico-submenu li a.active { color: var(--green); font-weight: 700; }

/* STATS */
.stats { padding: 48px 0; border-bottom: 1px solid #EEF0F2; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}
.stat-num {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.5px;
  line-height: 1.3;
}
.stat-label { font-size: 0.85rem; color: var(--gray); margin-top: 6px; }

/* CAMPAIGN */
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.campaign-card {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.campaign-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.07); transform: translateY(-3px); }
.campaign-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  background: var(--green-pale);
  border-radius: 14px;
  margin-bottom: 18px;
}
.campaign-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.campaign-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.8; margin-bottom: 18px; }
.campaign-link { color: var(--green); font-weight: 700; font-size: 0.9rem; text-decoration: none; }
.campaign-link:hover { opacity: 0.75; }

/* FEATURE BADGE */
.feature-badge {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
}
.feature-badge.available { background: var(--green); color: var(--white); }
.feature-badge.soon { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.6); }

/* FOOTER NAV */
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }

/* HERO BANNER（中央表示・ボタンなし） */
.hero-banner {
  text-align: center;
  padding: 72px 0 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 220px;
}
.hero-banner .hero-inner { width: 100%; display: flex; flex-direction: column; align-items: center; }
.hero-banner .hero-badge { margin-bottom: 16px; }
.hero-banner .hero-title {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 4.2vw, 2.8rem);
  letter-spacing: -0.4px;
}
.hero-banner .hero-sub {
  margin-bottom: 28px;
  font-size: 1rem;
  max-width: 540px;
  color: #374151;
}
.hero-banner .hero-actions { justify-content: center; }
@media (max-width: 640px) {
  .hero-banner { padding: 52px 20px 48px; min-height: 180px; }
  .hero-banner .hero-title { font-size: clamp(1.45rem, 5.5vw, 1.9rem); letter-spacing: -0.2px; }
  .hero-banner .hero-sub { font-size: 0.93rem; margin-bottom: 22px; }
  .hero-banner .hero-actions { gap: 8px; }
  .hero-banner .btn-primary,
  .hero-banner .btn-secondary { padding: 11px 14px; font-size: 0.8rem; white-space: nowrap; }
}

/* WEATHER（ロゴのすぐ左・コンパクト） */
.header-left { display: flex; align-items: center; gap: 10px; }
.weather-bar {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ECFDF5;
  color: #1F3D32;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.weather-bar .w-temp { font-size: 0.85rem; }
.weather-bar .w-advice { font-weight: 500; color: #3B5249; }
@media (max-width: 700px) { .weather-bar .w-advice { display: none; } }

/* SECTION HEAD (見出し＋もっと見る) */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 8px; }
.more-link { flex-shrink: 0; color: var(--green); font-weight: 700; font-size: 0.88rem; text-decoration: none; white-space: nowrap; }
.more-link:hover { opacity: 0.7; }

/* HOME NEWS / EVENTS プレビュー */
.home-news { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.home-news-card { display: flex; gap: 14px; align-items: center; background: var(--white); border: 1px solid #E5E7EB; border-radius: 14px; padding: 12px 14px; text-decoration: none; color: inherit; transition: box-shadow 0.2s, transform 0.15s; }
.home-news-card:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.07); transform: translateY(-2px); }
.home-news-thumb { flex-shrink: 0; width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.home-news-body { min-width: 0; }
.home-news-cat { font-size: 0.7rem; font-weight: 700; color: var(--green); }
.home-news-title { font-size: 0.92rem; font-weight: 700; line-height: 1.5; margin-top: 2px; }
.home-news-meta { font-size: 0.72rem; color: #9CA3AF; margin-top: 3px; }

.home-events { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-top: 24px; }
.home-event-card { background: var(--white); border: 1px solid #E5E7EB; border-radius: 14px; overflow: hidden; text-decoration: none; color: inherit; transition: box-shadow 0.2s, transform 0.15s; }
.home-event-card:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.07); transform: translateY(-2px); }
.home-event-thumb { width: 100%; height: 96px; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; }
.home-event-info { padding: 12px 14px 14px; }
.home-event-name { font-size: 0.92rem; font-weight: 700; line-height: 1.5; margin-bottom: 6px; }
.home-event-date { font-size: 0.76rem; color: var(--gray); }


/* CATEGORY LIST PAGES (life / outing / event / community) */
.news-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.news-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.news-grid { display: flex; flex-direction: column; gap: 18px; }
.news-card {
  display: flex; gap: 16px; background: #fff; border: 1px solid #E5E7EB;
  border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit;
  cursor: pointer; transition: box-shadow 0.2s, transform 0.15s; touch-action: manipulation;
}
.news-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.news-thumb {
  flex-shrink: 0; width: 132px; min-height: 132px;
  display: flex; align-items: center; justify-content: center; font-size: 2.4rem;
}
.news-body { padding: 16px 18px 16px 0; min-width: 0; }
.news-cat { font-size: 0.72rem; font-weight: 700; color: var(--green); }
.news-title { font-size: 1rem; font-weight: 700; margin: 6px 0; line-height: 1.5; }
.news-summary { font-size: 0.84rem; color: var(--gray); line-height: 1.7; margin-bottom: 10px; }
.news-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 0.74rem; color: #9CA3AF; }
.ranking { background: #fff; border: 1px solid #E5E7EB; border-radius: var(--radius); padding: 22px; position: sticky; top: 84px; }
.ranking h2 { font-size: 1.05rem; font-weight: 900; margin-bottom: 14px; }
.rank-item { display: flex; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid #F3F4F6; text-decoration: none; color: inherit; }
.rank-item:last-child { border-bottom: none; }
.rank-num {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 900; background: var(--gray-light); color: var(--gray);
}
.rank-num.rank-1 { background: #FCD34D; color: #78350F; }
.rank-num.rank-2 { background: #E5E7EB; color: #374151; }
.rank-num.rank-3 { background: #FBA77E; color: #7C2D12; }
.rank-title { font-size: 0.84rem; font-weight: 700; line-height: 1.5; }
.rank-meta { font-size: 0.72rem; color: #9CA3AF; margin-top: 3px; }
@media (max-width: 880px) {
  .news-layout { grid-template-columns: 1fr; }
  .news-layout > * { min-width: 0; overflow: hidden; }
  .ranking { position: static; order: -1; overflow: visible; }
}
@media (max-width: 640px) {
  .news-card { flex-direction: column; box-sizing: border-box; }
  .news-thumb { width: 100%; height: 104px; min-height: unset; font-size: 2.2rem; text-align: center; }
  .news-body { padding: 12px 14px 14px; }
  .news-summary { display: none; }
  .rank-title { word-break: break-word; }
}

/* PAGINATION / SCROLL-TOP */
.btn-load-more {
  background: #fff;
  border: 1px solid #2D6A4F;
  color: #2D6A4F;
  padding: 12px 40px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  touch-action: manipulation;
}
.btn-load-more:hover { background: #2D6A4F; color: #fff; }

.btn-scroll-top {
  position: fixed;
  bottom: 28px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2D6A4F;
  color: #fff;
  border: none;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 90;
  transition: background 0.2s;
}
.btn-scroll-top.visible { display: flex; }
.btn-scroll-top:hover { background: #40916C; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .logo-text { display: none; }
}
@media (max-width: 640px) {
  .hero { padding: 60px 0 50px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
  .campaign-grid { grid-template-columns: 1fr; }
  .ad-card { flex: 0 0 320px; }
}

/* カテゴリサムネイル背景（全ページ共通） */
.cat-thumb           { background: linear-gradient(135deg, #E5E7EB, #9CA3AF); }
.cat-thumb-ichico    { background: linear-gradient(135deg, #D1FAE5, #6EE7B7); }
.cat-thumb-life      { background: linear-gradient(135deg, #CFFAFE, #67E8F9); }
.cat-thumb-outing    { background: linear-gradient(135deg, #FEF3C7, #FDE68A); }
.cat-thumb-event     { background: linear-gradient(135deg, #FBBF24, #F97316); }
.cat-thumb-community { background: linear-gradient(135deg, #EDE9FE, #C4B5FD); }


/* DM Sans ── 英数字・ボタンラベル */
.btn-primary, .btn-secondary, .btn-more-sm, .btn-cat-more,
.rate-badge, .pay-badge, .ichico-day-badge {
  font-family: 'DM Sans', 'Noto Sans JP', sans-serif;
}

/* FOOTER 拡張 */
.footer-top {
  display: flex; gap: 48px; flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-brand .logo { margin-bottom: 0; }
.footer-desc {
  color: rgba(255,255,255,0.45); font-size: 0.82rem;
  line-height: 1.85; margin-top: 12px; max-width: 280px;
}
.footer-link-cols { display: flex; gap: 40px; flex-shrink: 0; }
.footer-link-col { display: flex; flex-direction: column; gap: 2px; min-width: 100px; }
.footer-link-col-head {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: 10px;
}
.footer-link-col a {
  color: rgba(255,255,255,0.58); font-size: 0.83rem;
  text-decoration: none; padding: 4px 0; transition: color 0.15s;
}
.footer-link-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
@media (max-width: 640px) {
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-link-cols { flex-wrap: wrap; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}
