/* ============================================================
   ぶんちょこファーム — リデザイン スタイルシート 2026
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #1A1A1A;
  background: #FFFFFF;
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --green-dark:   #3D5C26;
  --green-main:   #5E7E38;
  --green-mid:    #5B8C6A;
  --green-light:  #8CBD9E;
  --green-pale:   #E4F0E7;
  --green-bg:     #F2F7F3;
  --beige:        #F8F5F0;
  --beige-border: #E8E0D0;
  --white:        #FFFFFF;
  --text-dark:    #1A1A1A;
  --text-mid:     #4A4A4A;
  --text-light:   #8A8A8A;
  --shadow-sm:    0 2px 12px rgba(0,0,0,.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.14);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --transition:   .3s cubic-bezier(.4,0,.2,1);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in   { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible   { opacity: 1; transform: translateY(0); }
.fade-left  { opacity: 0; transform: translateX(-28px); transition: opacity .7s ease, transform .7s ease; }
.fade-left.visible  { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.scale-in  { opacity: 0; transform: scale(.96); transition: opacity .6s ease, transform .6s ease; }
.scale-in.visible  { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ===== UTILITIES ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-main);
  background: var(--green-pale);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.section-header { text-align: center; margin-bottom: 36px; }
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.55rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.35;
  margin-bottom: 14px;
}
.section-desc {
  font-size: clamp(.88rem, 1.7vw, 1rem);
  color: var(--text-light);
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-main);
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 32px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(58,95,70,.28);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(58,95,70,.38);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green-main);
  font-weight: 600;
  font-size: .95rem;
  padding: 12px 26px;
  border-radius: 99px;
  border: 2px solid rgba(58,95,70,.28);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-ghost:hover {
  border-color: var(--green-main);
  background: var(--green-pale);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  flex-shrink: 0;
  transition: color var(--transition);
}
.nav-logo-icon {
  width: 26px; height: 26px;
  filter: none;
  transition: filter var(--transition);
}
#navbar.scrolled .nav-logo { color: var(--green-dark); }
#navbar.scrolled .nav-logo-icon { filter: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
}
.nav-links a {
  font-size: .86rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
}
#navbar.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover { color: var(--green-main) !important; }
#navbar.scrolled .nav-links a:hover { color: var(--green-main) !important; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.nav-login {
  font-size: .86rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: color var(--transition);
}
#navbar.scrolled .nav-login { color: var(--text-mid); }
.nav-login:hover { color: var(--green-main) !important; }
#navbar.scrolled .nav-login:hover { color: var(--green-main) !important; }
.btn-nav-cta {
  font-size: .84rem;
  font-weight: 700;
  color: var(--white) !important;
  background: var(--green-main);
  padding: 8px 18px;
  border-radius: 99px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  display: block;
  transition: all var(--transition);
}
#navbar.scrolled .hamburger span { background: var(--green-dark); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  padding: 16px 28px 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 13px 0;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid #EDE8DF;
}
.mobile-menu a:last-child { border: none; }
.mobile-menu .mobile-cta { color: var(--green-main); font-weight: 700; }

/* ===== HERO ===== */
#hero {
  background: var(--white);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* 背景ブロブ */
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.blob-a {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(140,189,158,.45) 0%, rgba(140,189,158,0) 68%);
  top: -60px; right: 8%;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-b {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,223,90,.5) 0%, rgba(255,223,90,0) 68%);
  bottom: 8%; right: 28%;
  animation: blobFloat 11s ease-in-out infinite 2s;
}
.blob-c {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(200,240,208,.55) 0%, rgba(200,240,208,0) 68%);
  top: 45%; left: 44%;
  animation: blobFloat 7s ease-in-out infinite 1s;
}

/* 左カラム */
.hero-container {
  padding: 120px 52px 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text {
  max-width: 540px;
  padding: 0;
  background: transparent;
}
.hero-tag {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--green-main);
  background: var(--green-pale);
  border: 1px solid var(--green-pale);
  padding: 5px 16px;
  border-radius: 99px;
  margin-bottom: 22px;
  animation: heroFadeDown .7s ease .1s both;
}
.hero-headline {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.22;
  letter-spacing: .01em;
  margin-bottom: 20px;
  animation: heroFadeDown .7s ease .25s both;
}
.hero-desc {
  font-size: clamp(.88rem, 1.7vw, 1.02rem);
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 36px;
  animation: heroFadeDown .7s ease .4s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
  animation: heroFadeDown .7s ease .52s both;
}
.hero-actions .btn-primary {
  background: var(--green-main);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(58,95,70,.3);
  font-size: 1rem;
  padding: 15px 34px;
}
.hero-actions .btn-primary:hover { background: var(--green-dark); }
.hero-actions .btn-ghost {
  color: var(--green-main);
  border-color: rgba(58,95,70,.28);
}
.hero-actions .btn-ghost:hover {
  background: var(--green-pale);
  border-color: var(--green-main);
  color: var(--green-dark);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: heroFadeDown .7s ease .65s both;
}
.hero-stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 700;
  color: var(--green-dark);
}
.stat-label {
  display: block;
  font-size: .72rem;
  color: var(--text-light);
  margin-top: 2px;
}
.stat-divider {
  width: 1px; height: 38px;
  background: rgba(0,0,0,.12);
}

/* 右カラム */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  animation: heroFadeLeft .8s ease .3s both;
  z-index: 1;
}

/* スパークル装飾 */
.hero-deco {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}
.hero-deco-star1 {
  top: 16%; right: 12%;
  font-size: 1.6rem;
  color: var(--green-mid);
  animation: starSpin 4.5s ease-in-out infinite;
}
.hero-deco-star2 {
  bottom: 24%; left: 8%;
  font-size: 1.1rem;
  color: #E8B800;
  animation: starSpin 5.5s ease-in-out infinite 1.8s;
}
.hero-deco-dot1 {
  top: 56%; right: 6%;
  width: 16px; height: 16px;
  background: var(--green-light);
  border-radius: 50%;
  animation: blobFloat 5s ease-in-out infinite .5s;
}
.hero-deco-dot2 {
  top: 22%; left: 12%;
  width: 10px; height: 10px;
  background: #FFD860;
  border-radius: 50%;
  animation: blobFloat 6s ease-in-out infinite 1.2s;
}

/* ブロブフォトフレーム */
.hero-photo-wrap {
  position: relative;
  width: min(400px, 44vw);
  height: min(400px, 44vw);
  z-index: 2;
}
/* グラデーションリング（::before） */
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: linear-gradient(135deg, var(--green-light) 0%, #FFE566 50%, var(--green-main) 100%);
  animation: blobMorph 8s ease-in-out infinite;
  opacity: .5;
  z-index: -1;
}

.hero-photo-blob {
  width: 100%;
  height: 100%;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blobMorph 8s ease-in-out infinite;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 64px rgba(36,61,44,.28);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

/* コノハちびキャラ */
.hero-mascot {
  position: absolute;
  bottom: 14%;
  left: 6%;
  width: 110px;
  height: 148px;
  z-index: 4;
}

/* フローティングバッジ */
.hero-float-badge {
  position: absolute;
  bottom: 17%;
  right: 4%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  box-shadow: 0 10px 34px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
  border: 1.5px solid var(--green-pale);
  animation: badgeFloat 4s ease-in-out infinite;
}
.hbadge-icon { font-size: 1.8rem; line-height: 1; }
.hbadge-text {
  font-size: .76rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.6;
}

/* ===== HERO KEYFRAMES ===== */
@keyframes blobMorph {
  0%,100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25%      { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50%      { border-radius: 50% 60% 30% 60% / 30% 60% 70% 50%; }
  75%      { border-radius: 70% 30% 60% 40% / 40% 50% 60% 70%; }
}
@keyframes blobFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(-22px) scale(1.06); }
}
@keyframes starSpin {
  0%,100% { transform: rotate(0deg) scale(1);   opacity: .9; }
  50%     { transform: rotate(180deg) scale(1.5); opacity: .4; }
}
@keyframes badgeFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%     { transform: translateY(-10px) rotate(2deg); }
}
@keyframes heroFadeDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeLeft {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ===== LOGIN SECTION ===== */
#login-section {
  background: var(--beige);
  padding: 72px 24px;
  border-bottom: 1px solid var(--beige-border);
}
.login-section-inner {
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
}
.login-section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.login-section-sub {
  font-size: .86rem;
  color: var(--text-light);
  margin-bottom: 26px;
}
.alert-success {
  background: #D1FAE5; color: #065F46;
  border: 1px solid #A7F3D0;
  padding: 10px 16px; border-radius: var(--radius-sm);
  margin-bottom: 16px; font-size: .87rem;
}
.login-box {
  background: var(--white);
  border: 1px solid var(--beige-border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.login-box .form-group { margin-bottom: 16px; }
.login-box .form-group label {
  display: block; margin-bottom: 6px;
  font-size: .84rem; font-weight: 700; color: var(--green-dark);
}
.login-box .form-group input {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #E0D8CE;
  border-radius: var(--radius-sm);
  font-family: inherit; font-size: .94rem; color: var(--text-dark);
  background: var(--white); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.login-box .form-group input:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(58,95,70,.1);
}
.login-btn {
  width: 100%; padding: 13px;
  background: var(--green-main); color: var(--white);
  font-family: inherit; font-size: 1rem; font-weight: 700;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.login-btn:hover { background: var(--green-dark); transform: translateY(-1px); }
.login-error {
  display: none;
  padding: 10px 14px; margin-bottom: 14px;
  background: #FEE2E2; color: #991B1B;
  border: 1px solid #FCA5A5;
  border-radius: var(--radius-sm); font-size: .86rem;
}

/* ===== HOW IT WORKS ===== */
#how-it-works {
  padding: 64px 0;
  background: var(--white);
}
.how-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.how-card {
  flex: 1; max-width: 300px;
  text-align: center;
  padding: 40px 26px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--green-pale);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.how-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}
.how-icon {
  width: 72px; height: 72px;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
}
.how-icon img { width: 72px; height: 72px; object-fit: contain; }
.how-step {
  font-family: 'Noto Serif JP', serif;
  font-size: .72rem; font-weight: 700;
  color: var(--green-main); letter-spacing: .1em; margin-bottom: 8px;
}
.how-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.02rem; font-weight: 700;
  color: var(--green-dark); margin-bottom: 10px;
}
.how-card p { font-size: .85rem; color: var(--text-mid); line-height: 1.75; }
.how-connector {
  flex-shrink: 0;
  width: 48px; height: 2px;
  background: var(--green-pale);
  margin-top: 76px;
  position: relative;
}
.how-connector::after {
  content: '';
  position: absolute;
  right: -5px; top: -4px;
  width: 10px; height: 10px;
  border-top: 2px solid var(--green-light);
  border-right: 2px solid var(--green-light);
  transform: rotate(45deg);
}

/* ===== GALLERY ===== */
#gallery {
  padding: 64px 0;
  background: var(--green-bg);
}
.gallery-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: var(--shadow-md);
}
.gallery-main img {
  width: 100%; height: 260px;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-main:hover img { transform: scale(1.04); }
.gallery-sub {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.gallery-sub img {
  width: 100%; height: 110px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .4s ease;
}
.gallery-sub img:hover { transform: scale(1.04); }
.gallery-text .section-title { text-align: left; }
.gallery-text > p {
  font-size: .95rem; color: var(--text-mid);
  line-height: 1.88; margin-bottom: 28px;
}
.gallery-features { margin-bottom: 32px; }
.gallery-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: .88rem; color: var(--text-mid);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.gallery-features li:last-child { border: none; }
.gallery-features li img {
  width: 36px; height: 36px;
  object-fit: contain; flex-shrink: 0;
}

/* ===== SERVICE OVERVIEW ===== */
#service-overview { padding: 64px 0; background: var(--white); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--green-bg);
  border-radius: var(--radius-lg);
  padding: 34px 22px;
  text-align: center;
  border: 1.5px solid transparent;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
}
.service-icon { width: 62px; height: 62px; margin: 0 auto 16px; }
.service-icon img { width: 62px; height: 62px; object-fit: contain; }
.service-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: .98rem; font-weight: 700;
  color: var(--green-dark); margin-bottom: 10px;
}
.service-card p { font-size: .83rem; color: var(--text-mid); line-height: 1.75; }

/* ===== LIFESTYLE ===== */
#lifestyle { padding: 64px 0; background: var(--beige); }
.lifestyle-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lifestyle-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.lifestyle-text .section-title { text-align: left; }
.lifestyle-text > p {
  font-size: .96rem; color: var(--text-mid);
  line-height: 1.9; margin-bottom: 30px;
}
.lifestyle-points { display: flex; flex-direction: column; gap: 14px; }
.lifestyle-point {
  display: flex; align-items: center; gap: 14px;
  font-size: .9rem; font-weight: 600; color: var(--green-dark);
}
.lifestyle-point img { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }

/* ===== ABOUT ===== */
#about { padding: 64px 0; background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}
.about-photo-col { position: sticky; top: 90px; }
.about-photo-wrap { position: relative; display: inline-block; width: 100%; }
.about-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
}
.about-name-card {
  position: absolute;
  bottom: -18px; left: 50%;
  transform: translateX(-50%);
  background: var(--green-main);
  color: #fff;
  padding: 12px 26px;
  border-radius: 99px;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 6px 22px rgba(58,95,70,.35);
}
.about-role {
  display: block; font-size: .68rem;
  font-weight: 500; letter-spacing: .1em; opacity: .85; margin-bottom: 2px;
}
.about-name {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem; font-weight: 700;
}
.about-text-col { padding-top: 8px; }
.about-story-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700; color: var(--green-dark);
  margin-bottom: 22px; padding-bottom: 14px;
  border-bottom: 2px solid var(--green-pale);
}
.about-story p {
  color: var(--text-mid);
  font-size: .96rem; line-height: 2; margin-bottom: 18px;
}
.about-story p:last-child { margin-bottom: 0; }
.about-story .highlight { color: var(--green-dark); font-weight: 700; }

/* ===== ANNUAL PLAN ===== */
#annual-plan { padding: 64px 0; background: var(--green-bg); }
.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.season-card {
  border-radius: var(--radius-lg);
  padding: 34px 20px;
  text-align: center;
  border: 1.5px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
}
.season-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.season-spring  { background: #F0FFF4; border-color: #B7E5C1; }
.season-summer  { background: #FFFBF0; border-color: #F5D992; }
.season-autumn  { background: #FFF5F0; border-color: #F0B88A; }
.season-winter  { background: #F0F5FF; border-color: #A8C0E8; }
.season-icon-wrap { font-size: 2.2rem; margin-bottom: 10px; }
.season-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem; font-weight: 700; margin-bottom: 6px;
}
.season-spring .season-name { color: #2A6B3A; }
.season-summer .season-name { color: #8A5200; }
.season-autumn .season-name { color: #7A3510; }
.season-winter .season-name { color: #2C4A8A; }
.season-period {
  font-size: .73rem; font-weight: 600;
  padding: 3px 11px; border-radius: 99px;
  display: inline-block; margin-bottom: 12px;
}
.season-spring .season-period { background: #C8F5D5; color: #1B5E30; }
.season-summer .season-period { background: #FFE9B5; color: #7A4300; }
.season-autumn .season-period { background: #FFD5B5; color: #6B2A00; }
.season-winter .season-period { background: #C8D8F5; color: #1A2F6B; }
.season-veggie {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.45rem; font-weight: 700; margin-bottom: 10px;
}
.season-spring .season-veggie { color: #2A6B3A; }
.season-summer .season-veggie { color: #8A5200; }
.season-autumn .season-veggie { color: #7A3510; }
.season-winter .season-veggie { color: #2C4A8A; }
.season-desc { font-size: .81rem; color: var(--text-mid); line-height: 1.7; }

/* ===== PRICING ===== */
#pricing {
  padding: 64px 0;
  background: var(--white);
  position: relative; overflow: hidden;
}
#pricing::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: var(--green-pale);
  border-radius: 50%;
  opacity: .45;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  max-width: 740px;
  margin: 0 auto;
  box-shadow: 0 8px 44px rgba(0,0,0,.10);
  border: 2px solid var(--green-pale);
  text-align: center;
  position: relative; z-index: 1;
}
.pricing-badge {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-main); background: var(--green-pale);
  padding: 5px 14px; border-radius: 99px; margin-bottom: 14px;
}
.pricing-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--green-dark); margin-bottom: 22px;
}
.pricing-price {
  display: flex; align-items: flex-end;
  justify-content: center; gap: 4px; margin-bottom: 8px;
}
.price-currency { font-size: 1.4rem; font-weight: 700; color: var(--green-main); padding-bottom: 8px; }
.price-num {
  font-family: 'Noto Serif JP', serif;
  font-size: 4.4rem; font-weight: 700;
  color: var(--green-main); line-height: 1;
}
.price-unit { font-size: .93rem; color: var(--text-light); padding-bottom: 10px; }
.price-note { font-size: .82rem; color: var(--text-light); margin-bottom: 28px; }
.pricing-divider { height: 1px; background: var(--beige-border); margin-bottom: 28px; }
.pricing-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 34px; text-align: left;
}
.pricing-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; color: var(--text-mid);
}
.pricing-feature i { color: var(--green-main); font-size: .9rem; }
.btn-pricing-cta { font-size: 1rem; padding: 15px 46px; }

/* ===== FAQ ===== */
#faq { padding: 64px 0; background: var(--beige); }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  border: 1.5px solid #EDE8DF;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--green-light); }
.faq-question {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 20px 24px; cursor: pointer; gap: 14px;
}
.faq-question:hover { background: var(--green-bg); }
.faq-q-text { display: flex; align-items: flex-start; gap: 12px; flex: 1; }
.faq-q-badge {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--green-main); color: var(--white);
  font-weight: 700; font-size: .78rem; border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
}
.faq-q-label {
  font-weight: 600; font-size: .93rem;
  color: var(--green-dark); line-height: 1.5;
}
.faq-arrow {
  color: var(--green-main); font-size: .86rem;
  transition: transform var(--transition); flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 24px 20px 60px;
  font-size: .88rem; color: var(--text-mid); line-height: 1.88;
}

/* ===== CONTACT ===== */
#contact {
  padding: 64px 0; background: var(--white);
  position: relative;
}
#contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light), var(--green-dark));
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 60px; align-items: start;
}
.contact-info .section-title { text-align: left; }
.contact-info .section-desc { text-align: left; margin: 10px 0 0; }
.form-note-top {
  font-size: .82rem; color: var(--green-main);
  font-weight: 600; margin-bottom: 5px;
}
.form-card {
  background: var(--beige);
  border-radius: var(--radius-xl);
  padding: 42px 38px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--beige-border);
}
.form-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--green-dark); margin-bottom: 18px;
}
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: .82rem;
  font-weight: 700; color: var(--green-dark); margin-bottom: 6px;
}
.form-label .required {
  display: inline-block; background: #DC5F5F; color: var(--white);
  font-size: .64rem; padding: 1px 6px; border-radius: 4px;
  margin-left: 6px; vertical-align: middle;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #DDD5C8;
  border-radius: var(--radius-sm);
  font-family: inherit; font-size: .92rem; color: var(--text-dark);
  background: var(--white); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(58,95,70,.1);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%233A5F46' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--green-main); color: var(--white);
  font-family: inherit; font-size: .97rem; font-weight: 700;
  border: none; border-radius: 99px; cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 6px;
}
.form-submit:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(58,95,70,.28);
}
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.success-icon { font-size: 2.8rem; margin-bottom: 12px; }
.success-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--green-dark); margin-bottom: 8px;
}
.success-text { font-size: .9rem; color: var(--text-mid); }
.alert-error {
  background: #FEE2E2; color: #991B1B;
  border: 1px solid #FCA5A5;
  padding: 10px 14px; border-radius: var(--radius-sm);
  margin-bottom: 14px; font-size: .86rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.72);
  padding: 60px 28px 28px;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px; margin-bottom: 44px;
}
.footer-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
}
.footer-brand p {
  font-size: .84rem; line-height: 1.85;
  color: rgba(255,255,255,.5); margin-bottom: 18px;
}
.footer-sns { display: flex; gap: 10px; }
.sns-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: .88rem;
  transition: all var(--transition);
}
.sns-btn:hover { background: var(--green-mid); color: var(--white); transform: translateY(-2px); }
.footer-col h4 {
  font-weight: 700; font-size: .86rem; color: var(--white);
  margin-bottom: 14px; letter-spacing: .05em;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: .82rem; color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
}
.footer-bottom p { font-size: .76rem; color: rgba(255,255,255,.32); }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 28px; right: 28px; z-index: 500;
  opacity: 0; transform: translateY(14px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}
.floating-cta.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.floating-cta a {
  display: flex; align-items: center; gap: 8px;
  background: var(--green-main); color: var(--white);
  font-weight: 700; font-size: .86rem;
  padding: 12px 22px; border-radius: 99px;
  box-shadow: 0 8px 26px rgba(58,95,70,.42);
  transition: all var(--transition);
}
.floating-cta a:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ===== PAGE TOP ===== */
.page-top {
  position: fixed;
  bottom: 28px; left: 28px; z-index: 500;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.92); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-main); font-size: .95rem; cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,.1);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.page-top.show { opacity: 1; pointer-events: all; }
.page-top:hover { transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  #hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 420px; }
  .hero-container { padding: 110px 28px 40px; min-height: unset; }
  .hero-text { max-width: 440px; padding: 40px 32px; }
  .hero-photo-wrap { width: min(340px, 70vw); height: min(340px, 70vw); }
  .hero-mascot { width: 90px; height: 121px; bottom: 8%; left: 4%; }
  .blob-a { width: 280px; height: 280px; top: -20px; right: 0; }
  .blob-b { width: 180px; height: 180px; }
  .gallery-inner { grid-template-columns: 1fr; gap: 40px; }
  .gallery-text .section-title { text-align: center; }
  .gallery-text { text-align: center; }
  .gallery-features li { justify-content: flex-start; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .lifestyle-inner { grid-template-columns: 1fr; gap: 40px; }
  .lifestyle-text .section-title { text-align: center; }
  .lifestyle-text > p { text-align: center; }
  .about-inner { grid-template-columns: 240px 1fr; gap: 40px; }
  .about-photo-col { position: static; }
  .season-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pricing-features { grid-template-columns: 1fr; }
  .pricing-card { padding: 40px 30px; }
}
@media (max-width: 768px) {
  .hero-visual { min-height: 340px; }
  .hero-container { padding: 90px 20px 32px; align-items: center; }
  .hero-text { max-width: none; padding: 30px 26px; margin-bottom: 24px; }
  .hero-photo-wrap { width: min(280px, 72vw); height: min(280px, 72vw); }
  .hero-float-badge { bottom: 8%; right: 3%; padding: 10px 14px; gap: 8px; }
  .hero-mascot { width: 80px; height: 108px; }
  .hbadge-icon { font-size: 1.4rem; }
  .hbadge-text { font-size: .7rem; }
  .nav-links { display: none; }
  .nav-right .nav-login { display: none; }
  .hamburger { display: flex; }
  .how-grid { flex-direction: column; align-items: center; gap: 16px; }
  .how-connector { width: 2px; height: 28px; margin: 0; }
  .how-connector::after { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 52px; }
  .about-photo-wrap { max-width: 250px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; gap: 26px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .hero-text { padding: 26px 20px; }
  .hero-headline { font-size: 1.9rem; }
  .hero-photo-wrap { width: min(240px, 80vw); height: min(240px, 80vw); }
  .hero-float-badge { bottom: 4%; right: 2%; }
  .hero-mascot { width: 66px; height: 89px; bottom: 4%; left: 2%; }
  .service-grid { grid-template-columns: 1fr; }
  .season-grid { grid-template-columns: 1fr; }
  .form-card { padding: 30px 20px; }
  .pricing-card { padding: 30px 20px; }
  .price-num { font-size: 3.6rem; }
  .floating-cta { bottom: 18px; right: 18px; }
  .page-top { left: 18px; bottom: 18px; }
  .gallery-sub { grid-template-columns: 1fr 1fr; }
  .gallery-sub img:last-child { display: none; }
}

/* ===== HERO EM ===== */
.hero-em {
  color: var(--green-mid);
  font-style: italic;
}

/* ===== OVERVIEW ===== */
#overview {
  padding: 64px 0;
  background: var(--green-bg);
}
.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.overview-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 22px;
  text-align: center;
  border: 1.5px solid transparent;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.overview-card:hover {
  transform: translateY(-5px);
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
}
.overview-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overview-icon img {
  width: 64px; height: 64px;
  object-fit: contain;
}
.overview-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.overview-card p {
  font-size: .84rem;
  color: var(--text-mid);
  line-height: 1.78;
}

/* ===== FARM ===== */
#farm {
  padding: 64px 0;
  background: var(--white);
}
.farm-photo-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.farm-photo-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--green-pale);
}
.farm-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.farm-photo-frame:hover .farm-photo { transform: scale(1.02); }
.farm-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 100%);
  color: #fff;
  padding: 28px 24px 20px;
  font-size: .9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.farm-no-photo {
  background: var(--green-bg);
  border: 2px dashed var(--green-light);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  color: var(--green-mid);
}
.farm-no-photo i {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.farm-no-photo p {
  font-size: .95rem;
  color: var(--text-light);
}

/* ===== FARM INFO + KONOHA ===== */
.farm-info-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 22px;
}
.farm-info-bar {
  flex: 1 1 auto;
  min-width: 0;
}

/* コノハの一言（吹き出し） */
.farm-konoha {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.farm-konoha-bubble {
  position: relative;
  background: var(--white);
  border: 2px solid var(--green-pale);
  border-radius: 16px;
  padding: 12px 14px;
  font-size: .82rem;
  line-height: 1.7;
  color: var(--text-mid);
  box-shadow: var(--shadow-sm);
  width: 100%;
  flex: 1;
  min-height: 80px;
  display: flex;
  align-items: center;
}
.farm-konoha-bubble p {
  margin: 0;
  word-break: break-word;
}
.farm-konoha-bubble::after,
.farm-konoha-bubble::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid var(--green-pale);
}
.farm-konoha-bubble::after {
  bottom: -9px;
  border-top-color: var(--white);
}
.farm-konoha-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.farm-konoha-avatar img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--white);
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.farm-konoha-name {
  font-size: .68rem;
  color: var(--green-main);
  font-weight: 700;
  letter-spacing: .06em;
}

@media (max-width: 768px) {
  .farm-info-row { flex-direction: column; }
  .farm-konoha {
    flex: 0 0 auto;
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }
  .farm-konoha-bubble {
    min-height: 0;
    order: 2;
    flex: 1;
  }
  .farm-konoha-bubble::before,
  .farm-konoha-bubble::after {
    bottom: auto;
    top: 22px;
    left: -12px;
    transform: none;
    border-left: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 12px solid var(--green-pale);
  }
  .farm-konoha-bubble::after {
    left: -9px;
    border-right-color: var(--white);
  }
  .farm-konoha-avatar { order: 1; flex-shrink: 0; }
}

/* ===== STAFF ===== */
#staff {
  padding: 64px 0;
  background: var(--beige);
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.staff-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--beige-border);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.staff-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.staff-avatar-area {
  background: var(--green-bg);
  padding: 32px 32px 16px;
  display: flex;
  justify-content: center;
}
.staff-photo {
  width: 130px; height: 130px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 4px solid var(--white);
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
}
.staff-avatar-icon {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 4px solid var(--white);
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.staff-info {
  padding: 20px 26px 30px;
}
.staff-role {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--green-main);
  background: var(--green-pale);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 10px;
}
.staff-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.staff-desc {
  font-size: .84rem;
  color: var(--text-mid);
  line-height: 1.78;
}

/* ===== OVERVIEW GALLERY ===== */
.overview-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.overview-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--beige-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.overview-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.overview-gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  background: var(--green-bg);
}
.overview-gallery-item p {
  font-size: .78rem;
  color: var(--text-mid);
  text-align: center;
  padding: 10px 10px 12px;
  line-height: 1.5;
}
@media (max-width: 960px) {
  .overview-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .overview-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ===== NEWS ===== */
#news {
  padding: 64px 0;
  background: var(--beige);
}
.news-scroll-box {
  max-width: 740px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--beige-border);
  box-shadow: var(--shadow-sm);
  overflow-y: auto;
  max-height: 180px;
}
.news-list { padding: 0; }
.news-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--beige-border);
  font-size: .92rem;
  line-height: 1.6;
}
.news-item:last-child { border-bottom: none; }
.news-date {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--green-main);
  font-size: .82rem;
  letter-spacing: .04em;
}
.news-text { color: var(--text-mid); }

/* ===== OVERVIEW / FARM / STAFF RESPONSIVE ===== */
@media (max-width: 960px) {
  .overview-grid { grid-template-columns: 1fr 1fr; }
  .staff-grid    { grid-template-columns: 1fr 1fr; }
  .farm-photo    { height: 380px; }
}
@media (max-width: 768px) {
  .farm-photo    { height: 300px; }
  .news-item     { gap: 12px; padding: 14px 18px; font-size: .88rem; }
}
@media (max-width: 540px) {
  .overview-grid { grid-template-columns: 1fr; }
  .staff-grid    { grid-template-columns: 1fr; }
  .farm-photo    { height: 240px; }
  .news-item     { flex-direction: column; gap: 4px; }
}
