:root {
  --bg: #faf7f2;
  --bg-alt: #f1ebd9;
  --bg-section: #ffffff;
  --paper: #ffffff;
  --ink: #3a3229;
  --muted: #7a726b;
  --brand: #2e7d32;
  --accent: #d27b50;
  --radius: 16px;
  --shadow-sm: 0 4px 12px rgba(90, 75, 60, 0.05);
  --shadow: 0 12px 30px rgba(90, 75, 60, 0.08);
  --shadow-hover: 0 16px 40px rgba(90, 75, 60, 0.12);
  --header-h: 72px;
  --maxw: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: "Inter", "Noto Sans JP", system-ui, -apple-system, sans-serif;
  font-feature-settings: "palt" 1;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  letter-spacing: .02em;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
  word-break: break-word;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =================================
 * Typography & Utilities
 * ================================= */
h1,
h2,
h3,
h4 {
  margin: 0 0 12px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 700;
}

h2 {
  font-size: clamp(24px, 4vw, 32px);
  letter-spacing: .03em;
  text-align: center;
}

h3 {
  font-size: clamp(20px, 3vw, 24px);
}

p {
  margin-top: 0;
  margin-bottom: 16px;
}

p.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.note {
  font-size: 14px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.02);
  padding: 10px 14px;
  border-radius: 8px;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* =================================
 * Section Structure
 * ================================= */
.section-group {
  padding: 80px 0;
  position: relative;
}

.section-group.bg-alt {
  background-color: var(--bg-alt);
}

.section-group.bg-white {
  background-color: #fff;
}

.group-header {
  text-align: center;
  margin-bottom: 48px;
}

.group-header h2 {
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.group-header h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
  margin: 12px auto 0;
}

.group-header p.section-subtitle {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sub-section {
  margin-bottom: 60px;
}

.sub-section:last-child {
  margin-bottom: 0;
}

.sub-section h3.sub-title {
  font-size: 22px;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sub-section h3.sub-title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 22px;
  background-color: var(--accent);
  border-radius: 4px;
}


/* =================================
 * Components
 * ================================= */
/* Buttons & Chips */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 999px;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  white-space: nowrap;
  font-size: 15px;
  cursor: pointer;
}

.btn:active {
  transform: translateY(2px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 20px rgba(46, 125, 50, .25);
}

.btn-primary:hover {
  background: #27692a;
  box-shadow: 0 8px 25px rgba(46, 125, 50, .35);
  transform: translateY(-2px);
}

.btn-ghost {
  background: #fff;
  border: 1px solid #e0dbce;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  background: #fcfbf9;
  border-color: #d1cbbd;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.chip.fill {
  background: #fff;
  border: 1px solid #e9e4d9;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}

.chip.line {
  background: transparent;
  border: 1px dashed #cdb8a6;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}


/* Common Cards (.feature) */
.feature {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  margin-bottom: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

@media (min-width: 900px) {
  .feature .grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .feature.reverse .grid {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
    /* simple trick to reverse columns */
  }

  .feature.reverse .grid>* {
    direction: ltr;
    /* revert content text direction */
  }
}

.feature .media {
  overflow: hidden;
  border-radius: 12px;
  background: #f6f2ee;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.feature .media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature:hover .media img {
  transform: scale(1.03);
}

.feature p.desc {
  color: #554d45;
  margin: 12px 0 20px;
  line-height: 1.8;
}

.feature ul {
  margin: 12px 0;
  padding-left: 20px;
  color: #554d45;
}

.feature ul li {
  margin: 8px 0;
}


/* =================================
 * Header & Navigation
 * ================================= */
header.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px !important;
  font-weight: 800;
  letter-spacing: .02em;
  white-space: nowrap !important;
  color: var(--ink);
  font-size: 1.1rem;
}

.brand-logo-img {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 4px 12px rgba(123, 90, 60, .2);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.3s;
}

.brand:hover .brand-logo-img {
  transform: rotate(5deg) scale(1.05);
}

nav.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 auto;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

nav.nav::-webkit-scrollbar {
  display: none;
}

nav.nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 4px;
  position: relative;
}

nav.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--brand);
  transition: width 0.3s;
}

nav.nav a:hover::after {
  width: 100%;
}

.header-sns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e9e4d9;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
  color: var(--ink);
}

.icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e9e4d9;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 961px) {
  .menu-toggle {
    display: none !important;
  }
}

@media (max-width: 960px) {
  nav.nav {
    display: none;
  }

  .header-sns {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Mobile Menu Styles retained from old CSS... */
#mobileMenu {
  padding: 24px;
}

#mobileMenu .menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 2px solid #f1ebd9;
  margin-bottom: 16px;
}

#mobileMenu .menu-title {
  font-size: 18px;
  font-weight: 800;
}

#mobileMenu .menu-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #eee;
  background: #fff;
  cursor: pointer;
}

#mobileMenu a.menu-link {
  display: block;
  padding: 16px 8px;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid #f9f6f0;
}

#mobileMenu .sns-row {
  display: flex;
  gap: 16px;
  padding-top: 24px;
}


/* =================================
 * Hero Section
 * ================================= */
.hero {
  position: relative;
  min-height: clamp(500px, 70vh, 800px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(123, 90, 60, .35), transparent 60%),
    linear-gradient(180deg, rgba(20, 20, 20, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%),
    image-set(url('hero.webp') type('image/webp'), url('hero.png') type('image/png')) center/cover no-repeat;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  width: 100%;
}

.hero-content {
  max-width: 800px;
  animation: heroFadeIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: .05em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.hero p {
  font-size: clamp(16px, 2.5vw, 20px);
  color: #fcf9f2;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-usp {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.usp-text {
  display: block;
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 600;
  color: #fff;
  letter-spacing: .08em;
  padding-left: 14px;
  position: relative;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.usp-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: #d27b50;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(210, 123, 80, 0.8);
}

/* =================================
 * SNS Bar Area
 * ================================= */
.sns-bar {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 32px;
  margin-top: -40px;
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 768px) {
  .sns-bar {
    margin-top: -20px;
    padding: 20px;
    justify-content: center;
    text-align: center;
  }
}

.sns-bar .msg {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.sns-bar .icons {
  display: flex;
  align-items: center;
  gap: 12px;
}


/* =================================
 * Custom Layouts
 * ================================= */
/* News Grid */
/* .news-list: margin-bottom to make room if needed, but flex-direction removed to let grid handle it */

/* 通常の（小さい）ニュースカード */
.news-card {
  padding: 20px;
  /* inherits .feature properties */
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.news-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

/* トップ用：大きく表示する特集ニュースカード */
.news-card-featured {
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.news-featured-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .news-featured-grid {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }

  .news-featured-grid .featured-media {
    flex: 0 0 55%;
    margin-bottom: 0;
  }

  .news-featured-grid .featured-body {
    flex: 1;
  }
}

.featured-title {
  font-size: clamp(20px, 3vw, 24px);
  line-height: 1.4;
  margin: 0 0 12px;
}

.featured-desc {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
}

.news-grid {
  display: flex;
  flex-direction: column;
}

.news-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-meta {
  font-size: 14px;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 8px;
}

.news-title {
  font-size: clamp(16px, 2vw, 20px);
  margin: 0 0 8px;
  line-height: 1.4;
}

/* Places / Kitchen Cars Grid */
.places-grid,
.kitchen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {

  .places-grid,
  .kitchen-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.card-vertical {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card-vertical:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-vertical .media {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card-vertical .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.card-vertical:hover .media img {
  transform: scale(1.05);
}

.card-vertical .body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-vertical .title {
  font-size: 20px;
  margin-bottom: 12px;
}

/* Slide Embed */
.slide-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #f1ebd9;
}

.slide-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-q {
  padding: 20px 24px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
  font-size: 16px;
  color: var(--ink);
  outline: none;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--muted);
  font-weight: 300;
  transition: transform 0.3s, color 0.3s;
}

.faq-item[open] .faq-q::after {
  content: '-';
  color: var(--brand);
}

.faq-a {
  padding: 0 24px 20px;
  color: #554d45;
  font-size: 15px;
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Map Embed */
.map-wrap {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 900px) {
  .map-wrap {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.map-embed {
  position: relative;
  aspect-ratio: 16 / 12;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-info p,
.map-info ul {
  margin: 8px 0;
}

.map-info ul {
  padding-left: 20px;
}


/* =================================
 * Footer
 * ================================= */
footer.site-footer {
  background: #fff;
  padding: 60px 0 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.footer-links a {
  display: block;
  padding: 8px 0;
  color: #554d45;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-sns {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.copyright {
  color: var(--muted);
  font-size: 14px;
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
}

/* =================================
 * Animations & Utils
 * ================================= */
.pre-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pre-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =================================
 * News Detail Page
 * ================================= */
.news-detail-header {
  margin-bottom: 24px;
}

.news-main-visual {
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  background: #f6f2ee;
  box-shadow: var(--shadow-sm);
}

.news-body-content h2 {
  font-size: clamp(20px, 3vw, 24px);
  margin-top: 2.5em;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid var(--brand);
  color: var(--ink);
  font-weight: 700;
  text-align: left;
}

.news-body-content h3 {
  font-size: clamp(18px, 2.5vw, 20px);
  margin-top: 2em;
  margin-bottom: 0.8em;
  color: var(--ink);
  font-weight: 700;
  border-left: 4px solid var(--accent);
  padding-left: 10px;
}

.news-body-content h4 {
  font-size: 16px;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  color: var(--ink);
  font-weight: 700;
}

.news-body-content p {
  margin-bottom: 1.5em;
  line-height: 1.8;
}

.news-body-content img {
  margin: 1.5em 0;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.news-body-content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.news-body-content a:hover {
  color: var(--accent);
}

.news-body-content ul,
.news-body-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
  color: var(--ink);
}

.news-body-content ul li,
.news-body-content ol li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}

.news-body-content blockquote {
  margin: 2em 0;
  padding: 1em 1.5em;
  color: var(--muted);
  background: var(--bg-alt);
  border-left: 4px solid var(--brand);
  border-radius: 4px;
}

.news-body-content strong {
  font-weight: 700;
  color: var(--ink);
}

.news-body-content hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 3em 0;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}