@charset "UTF-8";

/* =========================================================
   陽あたり農園 — 改良後
   ・掲載文言は「改良前」とまったく同じ
   ・写真は使わず、すべて手描きのSVGイラストで構成
     （権利関係を気にせず公開できるようにするため）
   ========================================================= */

:root {
  --orange-700: #c2570d;
  --orange-600: #dd6f13;
  --orange-500: #ef8f28;
  --orange-300: #ffc172;
  --orange-100: #fff1dc;
  --leaf-900: #1c3d26;
  --leaf-700: #2d613c;
  --leaf-500: #4c8b55;
  --cream-50: #fffbf4;
  --cream-100: #fdf3e4;
  --line: #e9d9bf;
  --ink-900: #2a2019;
  --ink-700: #55483c;
  --ink-500: #7c6f60;
  --white: #fff;

  --font-serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  --font-sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", "Meiryo", sans-serif;

  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(42, 32, 25, .07);
  --shadow-md: 0 12px 30px rgba(42, 32, 25, .12);
  --shadow-lg: 0 26px 64px rgba(42, 32, 25, .18);
  --container: 1100px;
  --header-h: 66px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.95;
  color: var(--ink-900);
  background: var(--cream-50);
  letter-spacing: .02em;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--orange-700); text-underline-offset: 3px; }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.5; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; }

:focus-visible { outline: 3px solid var(--orange-600); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 300;
  background: var(--leaf-900); color: #fff; padding: 10px 18px;
  border-radius: 0 0 10px 10px; text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ---------- 伏せ字表示 ----------
   実際の案件と同じ体裁のまま、電話番号や住所だけをぼかして見せるための指定。
   数字自体もダミーだが、見た目で「伏せている」と分かるようにしている。
--------------------------------- */
.masked {
  filter: blur(0.3em);
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
}

/* ---------- レイアウト ---------- */
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }

.section { padding-block: clamp(52px, 8vw, 92px); }
.section--cream { background: var(--cream-100); }
.section--white { background: var(--white); }

.section-head { margin-bottom: clamp(28px, 4vw, 46px); text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; letter-spacing: .2em; font-weight: 700;
  color: var(--orange-600); margin-bottom: 8px;
}
.eyebrow::before, .eyebrow::after {
  content: ""; width: 20px; height: 2px; background: var(--orange-300);
}
.section-title { font-size: clamp(24px, 4vw, 36px); color: var(--leaf-900); letter-spacing: .05em; }
.section-lead { margin-top: 14px; color: var(--ink-700); max-width: 44em; margin-inline: auto; }

/* ---------- ヘッダー ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 251, 244, .95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  width: min(100% - 32px, var(--container)); margin-inline: auto;
  min-height: var(--header-h); display: flex; align-items: center; gap: 14px;
}
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; color: inherit; margin-right: auto; }
.logo__mark { width: 42px; height: 42px; flex: none; }
.logo__text { display: flex; flex-direction: column; line-height: 1.28; white-space: nowrap; }
.logo__name { font-family: var(--font-serif); font-size: 20px; color: var(--leaf-900); letter-spacing: .08em; }
.logo__sub { font-size: 10.5px; letter-spacing: .1em; color: var(--ink-500); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 9px 13px; white-space: nowrap;
  font-size: 15px; font-weight: 500; color: var(--ink-700);
  text-decoration: none; border-radius: 8px; transition: color .2s, background .2s;
}
.nav a:hover { color: var(--orange-700); background: var(--orange-100); }
.nav .nav__only-sp { display: none; }

.header__tel {
  display: flex; flex-direction: column; align-items: flex-end;
  padding-left: 16px; margin-left: 6px;
  border-left: 1px solid var(--line); text-decoration: none;
}
.header__tel-label { font-size: 10px; letter-spacing: .1em; color: var(--ink-500); }
.header__tel-num {
  font-family: var(--font-serif); font-size: 21px; font-weight: 600;
  color: var(--leaf-900); line-height: 1.2;
}

.hamburger {
  display: none; width: 46px; height: 46px; flex: none; padding: 0;
  border: 1px solid var(--line); background: var(--white);
  border-radius: 10px; cursor: pointer;
}
.hamburger span {
  display: block; width: 21px; height: 2px; margin: 4px auto;
  background: var(--leaf-900); border-radius: 2px; transition: transform .25s, opacity .25s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 34px; font-family: var(--font-sans);
  font-size: 17px; font-weight: 700; text-decoration: none;
  border: 2px solid transparent; border-radius: 999px; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn--primary { background: var(--orange-600); color: #fff; box-shadow: 0 10px 26px rgba(221, 111, 19, .34); }
.btn--primary:hover { background: var(--orange-700); }
.btn--leaf { background: var(--leaf-700); color: #fff; box-shadow: 0 10px 26px rgba(45, 97, 60, .28); }
.btn--leaf:hover { background: var(--leaf-900); }
.btn--light { background: rgba(255,255,255,.97); color: var(--leaf-900); box-shadow: var(--shadow-md); }
.btn--light:hover { background: #fff; }
.btn--lg { padding: 20px 42px; font-size: 18px; }
.btn--wide { width: 100%; }
/* 押せない表示用（伏せ字の電話番号を載せている箱） */
.btn--static { cursor: default; }
.btn--static:hover { transform: none; }

/* ---------- ヒーロー ---------- */
.hero { position: relative; overflow: hidden; }
.hero__art { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__art svg { width: 100%; height: 100%; object-fit: cover; }
.hero__inner {
  position: relative; z-index: 2;
  width: min(100% - 40px, var(--container)); margin-inline: auto;
  padding-block: clamp(70px, 11vw, 130px);
}
.hero__panel { max-width: 590px; color: #fff; }
.hero__badge {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .16em;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.45);
  padding: 7px 17px; border-radius: 999px; margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero__title {
  font-size: clamp(28px, 5vw, 46px); line-height: 1.5; letter-spacing: .06em;
  text-shadow: 0 2px 18px rgba(0,0,0,.4);
}
.hero__text {
  margin-top: 20px; font-size: 17px; color: rgba(255,255,255,.94);
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}
.hero__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- 帯 ---------- */
.strip { background: var(--leaf-900); color: rgba(255,255,255,.9); padding-block: 14px; font-size: 15px; }
.strip__inner {
  width: min(100% - 40px, var(--container)); margin-inline: auto;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 30px; text-align: center;
}
.strip b { color: #fff; }

/* ---------- 紹介 ---------- */
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.intro__art { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.intro__title { font-size: clamp(22px, 3.4vw, 31px); color: var(--leaf-900); }
.intro__text { margin-top: 18px; color: var(--ink-700); }

/* ---------- 商品 ---------- */
.items { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 26px); }
.item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.item__art { background: var(--cream-100); }
.item__art svg { width: 100%; height: auto; display: block; }
.item__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.item__name {
  font-size: 20px; color: var(--leaf-900);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.item__season {
  flex: none; font-size: 12px; font-weight: 700; letter-spacing: .04em;
  background: var(--orange-100); color: var(--orange-700);
  padding: 5px 12px; border-radius: 999px; white-space: nowrap;
}
.item__text { margin-top: 12px; font-size: 15.5px; color: var(--ink-700); flex: 1; }

/* ---------- 直売所 ---------- */
.shop { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.shop-box {
  background: var(--white); border: 2px solid var(--leaf-500);
  border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-md);
}
.shop-box__hours {
  font-family: var(--font-serif); font-size: clamp(30px, 5vw, 42px);
  color: var(--leaf-700); letter-spacing: .03em; text-align: center;
}
.info-table { width: 100%; font-size: 16px; margin-top: 18px; }
.info-table th, .info-table td {
  padding: 14px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top;
}
.info-table th { width: 34%; white-space: nowrap; color: var(--leaf-900); font-weight: 700; background: var(--cream-100); }
.shop__note {
  margin-top: 18px; padding: 16px 18px; border-radius: var(--radius);
  background: var(--orange-100); font-size: 15.5px; color: var(--ink-700);
}

/* ---------- お知らせ ---------- */
.news { max-width: 820px; margin-inline: auto; }
.news li { border-bottom: 1px solid var(--line); }
.news li:last-child { border-bottom: 0; }
.news__row {
  display: flex; flex-wrap: wrap; gap: 4px 22px; align-items: baseline; padding: 20px 6px;
}
.news__date { flex: none; font-size: 14.5px; color: var(--ink-500); font-variant-numeric: tabular-nums; }
.news__text { flex: 1; min-width: 240px; font-size: 16.5px; }

/* ---------- ご注文・アクセス ---------- */
.two { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 3vw, 34px); align-items: start; }
.panel {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); height: 100%;
}
.panel__title {
  font-size: 21px; color: var(--leaf-900);
  display: flex; align-items: center; gap: 11px; margin-bottom: 14px;
}
.panel__title svg { width: 24px; height: 24px; color: var(--orange-600); flex: none; }
.panel__text { color: var(--ink-700); font-size: 16px; }
.panel__text + .panel__text { margin-top: 10px; }

/* ---------- 連絡先 ---------- */
.contact-box {
  background: var(--white); border: 2px solid var(--leaf-500);
  border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow-md); text-align: center; max-width: 720px; margin-inline: auto;
}
.contact-box__name { font-size: clamp(20px, 3vw, 26px); color: var(--leaf-900); }
.contact-box__addr { margin-top: 16px; font-size: 16px; color: var(--ink-700); }
.contact-box__tel {
  margin-top: 14px; display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-serif); font-size: clamp(28px, 5vw, 40px);
  color: var(--leaf-900); text-decoration: none;
}
.contact-box__tel svg { width: 30px; height: 30px; color: var(--orange-600); flex: none; }
.contact-box__fax { margin-top: 4px; font-size: 17px; font-family: var(--font-serif); color: var(--ink-700); }
.contact-box__hours { margin-top: 10px; font-size: 15px; color: var(--ink-500); }

/* ---------- フッター ---------- */
.footer { background: var(--leaf-900); color: rgba(255,255,255,.76); padding-top: clamp(40px, 6vw, 60px); font-size: 15px; }
.footer a { color: rgba(255,255,255,.76); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 34px; padding-bottom: 34px; }
.footer__name { font-family: var(--font-serif); font-size: 22px; color: #fff; letter-spacing: .08em; }
.footer__addr { margin-top: 14px; line-height: 1.9; font-size: 14.5px; }
.footer__tel { display: inline-block; margin-top: 12px; font-family: var(--font-serif); font-size: 25px; color: #fff; }
.footer__heading { font-size: 12px; font-weight: 700; letter-spacing: .18em; color: var(--orange-300); margin-bottom: 14px; }
.footer__list { display: grid; gap: 10px; font-size: 14.5px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.14); padding-block: 20px;
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between;
  font-size: 12.5px; color: rgba(255,255,255,.55);
}

/* ---------- スマホ固定バー ---------- */
.mobile-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(255, 251, 244, .97); border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(42,32,25,.12);
  padding: 9px 10px calc(9px + env(safe-area-inset-bottom)); gap: 9px;
}
.mobile-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 15px 6px; border-radius: 12px;
  font-size: 14.5px; font-weight: 700; white-space: nowrap; text-decoration: none;
}
.mobile-bar svg { width: 17px; height: 17px; flex: none; }
.mobile-bar__tel { background: var(--leaf-700); color: #fff; }
.mobile-bar__shop { background: var(--orange-600); color: #fff; }

/* ---------- スクロール表示 ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 1000px) {
  .items { grid-template-columns: repeat(2, 1fr); }
  .nav a { padding: 8px 10px; font-size: 14px; }
  .header__tel-num { font-size: 19px; }
}

@media (max-width: 900px) {
  .intro, .shop, .two { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  .hamburger { display: block; }
  .header__tel { display: none; }

  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream-50); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); padding: 6px 16px 20px;
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: opacity .22s, transform .22s, visibility .22s;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 16px 12px; font-size: 17px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav .nav__only-sp { display: block; }
  .nav__tel {
    padding: 16px 12px; font-size: 17px; color: var(--ink-700);
    display: flex !important; align-items: center; gap: 6px;
  }

  .mobile-bar { display: flex; }
  body { padding-bottom: 80px; }
}

@media (max-width: 620px) {
  .items { grid-template-columns: 1fr; }
  .container { width: min(100% - 32px, var(--container)); }
  .footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .hero__actions .btn { width: 100%; }
  .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { border-bottom: 0; border-radius: 8px 8px 0 0; }
  .info-table td { padding-top: 8px; }
}
