@charset "utf-8";

/* =========================================================
   WaiWai Farm - style.css
   農福連携 就労支援事業所 WaiWai School & Co.
   ========================================================= */

/* ---------- 1. デザイントークン ---------- */
:root {
  /* 色 */
  --cream:      #fffcf5;
  --cream-2:    #fff7e9;
  --white:      #ffffff;
  --ink:        #342f2a;
  --ink-soft:   #6d675f;
  --ink-thin:   #98918a;

  --berry:      #f0524b;
  --berry-deep: #d23c36;
  --berry-pale: #ffeceb;

  --leaf:       #5fb45c;
  --leaf-deep:  #45923f;
  --leaf-pale:  #eaf7e9;

  --sky:        #4fb2e3;
  --sky-pale:   #e8f5fd;

  --sun:        #ffc64a;
  --sun-pale:   #fff5dd;

  --line:       #f0e7d8;
  --line-2:     #e6dccb;

  /* 影 */
  --sh-sm: 0 2px 8px rgba(90, 70, 40, .06);
  --sh-md: 0 8px 24px rgba(90, 70, 40, .09);
  --sh-lg: 0 18px 44px rgba(90, 70, 40, .13);

  /* 角丸 */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  /* レイアウト */
  --wrap: 1120px;
  --gap: clamp(18px, 3vw, 32px);
  --head-h: 76px;

  /* フォント */
  --f-round: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "Yu Gothic", sans-serif;
  --f-body: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

/* ---------- 2. ベース ---------- */
* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  font-feature-settings: "palt";
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--berry-deep); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
  border-radius: 6px;
}

h1, h2, h3, h4 {
  font-family: var(--f-round);
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
  letter-spacing: .01em;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 40px, 820px); margin-inline: auto; }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--berry); color: #fff;
  padding: 10px 20px; border-radius: var(--r-pill);
  z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 12px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 3. ヘッダー ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 252, 245, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
.site-header.is-scrolled { box-shadow: var(--sh-sm); }

.header-inner {
  height: var(--head-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.logo img { width: 44px; height: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: var(--f-round); font-weight: 900;
  font-size: 21px; letter-spacing: .02em; color: var(--berry);
}
.logo-name span { color: var(--leaf-deep); }
.logo-sub { font-size: 10.5px; color: var(--ink-thin); letter-spacing: .12em; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--f-round); font-weight: 700; font-size: 14.5px;
  color: var(--ink); text-decoration: none;
  padding: 9px 14px; border-radius: var(--r-pill);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav a:hover { background: var(--berry-pale); color: var(--berry-deep); }
.nav a[aria-current="page"] { background: var(--berry); color: #fff; }

.header-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-round); font-weight: 700; font-size: 14.5px;
  background: linear-gradient(135deg, var(--berry), #ff7a5c);
  color: #fff; text-decoration: none;
  padding: 11px 20px; border-radius: var(--r-pill);
  box-shadow: 0 6px 16px rgba(240, 82, 75, .3);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(240, 82, 75, .38); }

.nav-toggle {
  display: none; width: 46px; height: 46px;
  background: var(--white); border: 1px solid var(--line-2);
  border-radius: 14px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; border-radius: 2px;
  background: var(--ink); transition: transform .25s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1140px) and (min-width: 941px) {
  .nav a { padding: 9px 10px; font-size: 13.5px; }
  .header-cta { padding: 10px 15px; font-size: 13.5px; }
  .logo img { width: 38px; }
  .logo-name { font-size: 19px; }
}

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .nav {
    position: fixed; inset: var(--head-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--cream);
    padding: 14px 20px 26px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-md);
    max-height: calc(100vh - var(--head-h));
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0; visibility: hidden;
    transition: opacity .22s, transform .22s, visibility .22s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { font-size: 16px; padding: 13px 16px; border-radius: 14px; }
  .nav .nav-cta {
    margin-top: 8px; text-align: center;
    background: var(--berry); color: #fff;
  }
}
@media (min-width: 941px) { .nav .nav-cta { display: none; } }

/* ---------- 4. ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--f-round); font-weight: 700; font-size: 16px;
  padding: 15px 30px; border-radius: var(--r-pill);
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--berry), #ff7f5f);
  color: #fff; box-shadow: 0 8px 20px rgba(240, 82, 75, .3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(240, 82, 75, .38); }
.btn-ghost {
  background: var(--white); color: var(--ink);
  border-color: var(--line-2); box-shadow: var(--sh-sm);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--leaf); color: var(--leaf-deep); }
.btn-leaf {
  background: linear-gradient(135deg, var(--leaf), #7fc96f);
  color: #fff; box-shadow: 0 8px 20px rgba(95, 180, 92, .3);
}
.btn-leaf:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(95, 180, 92, .38); }
.btn-lg { font-size: 17px; padding: 18px 38px; }

/* ---------- 5. セクション共通 ---------- */
.section { padding: clamp(56px, 8vw, 96px) 0; position: relative; }
.section-cream { background: var(--cream-2); }
.section-white { background: var(--white); }

.sec-head { text-align: center; margin-bottom: clamp(32px, 5vw, 52px); }
.sec-head.left { text-align: left; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-round); font-weight: 700;
  font-size: 13px; letter-spacing: .16em;
  color: var(--berry); background: var(--berry-pale);
  padding: 7px 18px; border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.eyebrow.leaf { color: var(--leaf-deep); background: var(--leaf-pale); }
.eyebrow.sky  { color: #2b8fc4;        background: var(--sky-pale); }
.eyebrow.sun  { color: #b4801a;        background: var(--sun-pale); }

.sec-title {
  font-size: clamp(26px, 4.4vw, 40px);
  margin-bottom: 14px;
}
.sec-title .mark {
  background: linear-gradient(transparent 62%, var(--sun-pale) 62%);
  padding: 0 2px;
}
.sec-lead { color: var(--ink-soft); font-size: 15.5px; max-width: 680px; margin-inline: auto; }
.sec-head.left .sec-lead { margin-inline: 0; }

/* 波形の区切り */
.wave { display: block; width: 100%; height: auto; line-height: 0; }

/* ---------- 6. ヒーロー ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(760px 460px at 88% 8%, #fff2e2 0%, rgba(255,242,226,0) 62%),
    radial-gradient(680px 420px at 4% 88%, #e9f7e8 0%, rgba(233,247,232,0) 60%),
    var(--cream);
  padding: clamp(44px, 7vw, 84px) 0 clamp(56px, 8vw, 96px);
}
.hero-grid {
  display: grid; grid-template-columns: 1.18fr .82fr;
  gap: clamp(26px, 4vw, 56px); align-items: center;
}
.hero-copy { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white); color: var(--leaf-deep);
  font-family: var(--f-round); font-weight: 700; font-size: 13.5px;
  padding: 9px 20px; border-radius: var(--r-pill);
  box-shadow: var(--sh-sm); margin-bottom: 22px;
  letter-spacing: .06em;
}
.hero-badge .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--leaf); flex: none;
}

.hero h1 {
  font-size: clamp(28px, 4.6vw, 44px);
  font-weight: 900; line-height: 1.34;
  letter-spacing: .005em; margin-bottom: 22px;
}
.hero h1 .c-berry { color: var(--berry); }
.hero h1 .c-leaf  { color: var(--leaf-deep); }
.hero h1 .wavy {
  background: linear-gradient(transparent 68%, rgba(255,198,74,.55) 68%);
}

.hero-sub {
  font-family: var(--f-round); font-weight: 700;
  font-size: clamp(17px, 2.4vw, 23px); color: var(--ink);
  margin-bottom: 20px; letter-spacing: .01em;
}
.hero-sub .c-leaf { color: var(--leaf-deep); }

.hero-lead { font-size: 16.5px; color: var(--ink-soft); margin-bottom: 30px; max-width: 30em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.hero-tags li {
  list-style: none;
  font-family: var(--f-round); font-weight: 700; font-size: 13px;
  background: var(--white); color: var(--ink-soft);
  border: 1px solid var(--line-2);
  padding: 6px 15px; border-radius: var(--r-pill);
}

/* 写真コラージュ */
.hero-art { position: relative; }
.hero-photos {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.hero-photos figure { margin: 0; border-radius: var(--r-lg); overflow: hidden; background: var(--white); }
.hero-photos img { width: 100%; height: 100%; object-fit: cover; }
.hp-main { grid-row: span 2; box-shadow: var(--sh-lg); aspect-ratio: 3 / 4; }
.hp-sub  { box-shadow: var(--sh-md); aspect-ratio: 1 / 1; }
.hp-main { animation: float 7s ease-in-out infinite; }
.hp-sub:nth-of-type(2) { animation: float 7s ease-in-out .9s infinite; }
.hp-sub:nth-of-type(3) { animation: float 7s ease-in-out 1.8s infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

.hero-sticker {
  position: absolute; left: -14px; bottom: -18px;
  background: var(--white); border-radius: var(--r-pill);
  box-shadow: var(--sh-md); padding: 10px 20px 10px 10px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-round); font-weight: 700; font-size: 13.5px;
  color: var(--ink); z-index: 3;
}
.hero-sticker img { width: 42px; }

.blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; z-index: 0; }
.blob-1 { width: 150px; height: 150px; background: var(--sun-pale);   top: 6%;  right: 3%; }
.blob-2 { width: 96px;  height: 96px;  background: var(--leaf-pale);  bottom: 12%; left: 42%; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-photos { grid-template-columns: 1.3fr 1fr; }
  .hero-sticker { left: auto; right: 8px; bottom: -14px; }
  .hero-lead { max-width: none; }
}
@media (max-width: 560px) {
  .hp-main { aspect-ratio: 4 / 5; }
  .hero-actions .btn { width: 100%; }
}

/* ---------- 7. 特徴カード ---------- */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap);
}
.feature {
  background: var(--white); border-radius: var(--r-lg);
  padding: 34px 28px 30px; text-align: center;
  box-shadow: var(--sh-sm); border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.feature-icon {
  width: 72px; height: 72px; border-radius: 24px;
  display: grid; place-items: center; margin: 0 auto 18px;
  font-size: 32px;
}
.i-berry { background: var(--berry-pale); }
.i-leaf  { background: var(--leaf-pale); }
.i-sky   { background: var(--sky-pale); }
.i-sun   { background: var(--sun-pale); }
.feature h3 { font-size: 20px; margin-bottom: 10px; }
.feature p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.85; }

@media (max-width: 820px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- 8. 事業紹介（2カラム） ---------- */
.course-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.course {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--line); box-shadow: var(--sh-sm);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.course:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.course-top { padding: 8px; }
.course-photo { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 16 / 10; }
.course-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.course:hover .course-photo img { transform: scale(1.05); }
.course-body { padding: 22px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.course-tag {
  align-self: flex-start;
  font-family: var(--f-round); font-weight: 700; font-size: 12.5px;
  padding: 5px 14px; border-radius: var(--r-pill); margin-bottom: 12px;
}
.tag-berry { background: var(--berry-pale); color: var(--berry-deep); }
.tag-leaf  { background: var(--leaf-pale);  color: var(--leaf-deep); }
.course h3 { font-size: 22px; margin-bottom: 10px; }
.course h3 small { display: block; font-size: 13px; color: var(--ink-thin); font-weight: 500; margin-top: 3px; }
.course p { font-size: 14.5px; color: var(--ink-soft); }
.course .link-more { margin-top: auto; padding-top: 16px; }

.link-more {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-round); font-weight: 700; font-size: 14.5px;
  color: var(--berry-deep); text-decoration: none;
}
.link-more::after { content: "→"; transition: transform .2s; }
.link-more:hover::after { transform: translateX(5px); }

@media (max-width: 820px) { .course-grid { grid-template-columns: 1fr; } }

/* ---------- 9. 作物（いちご / えごま） ---------- */
.crop {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 52px); align-items: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.crop:last-child { margin-bottom: 0; }
.crop-photo { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); }
.crop-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
/* ポスター・チラシなど、切り取らずに全体を見せたい画像 */
.crop-photo.whole {
  background: var(--white); box-shadow: var(--sh-md);
  border: 1px solid var(--line); padding: 14px;
  border-radius: var(--r-lg);
}
.crop-photo.whole img { aspect-ratio: auto; object-fit: contain; border-radius: var(--r-sm); }
.crop.reverse .crop-photo { order: 2; }
.crop h3 { font-size: clamp(22px, 3.2vw, 30px); margin-bottom: 14px; }
.crop p { color: var(--ink-soft); font-size: 15.5px; }
.crop-points { list-style: none; padding: 0; margin: 18px 0 24px; display: grid; gap: 10px; }
.crop-points li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: 15px; color: var(--ink);
}
.crop-points li::before {
  content: "✓"; flex: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--leaf-pale); color: var(--leaf-deep);
  display: grid; place-items: center; font-size: 13px; font-weight: 700;
  margin-top: 4px;
}
@media (max-width: 820px) {
  .crop { grid-template-columns: 1fr; }
  .crop.reverse .crop-photo { order: 0; }
}

/* ---------- 10. ギャラリー ---------- */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.gallery figure {
  margin: 0; border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--sh-sm); background: var(--white);
  aspect-ratio: 1 / 1;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery figure:hover img { transform: scale(1.07); }
.gallery .tall { grid-row: span 2; aspect-ratio: 1 / 2.07; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .tall { grid-row: span 1; aspect-ratio: 1 / 1; }
}

/* ---------- 11. お知らせ ---------- */
.news-list { display: grid; gap: 18px; }
.news-item {
  display: grid; grid-template-columns: 190px 1fr; gap: 24px;
  align-items: center;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 16px;
  box-shadow: var(--sh-sm);
  transition: transform .25s, box-shadow .25s;
}
.news-item:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.news-thumb { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 16 / 9; background: var(--cream-2); }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-thumb.contain { background: var(--white); border: 1px solid var(--line); }
.news-thumb.contain img { object-fit: contain; }
.news-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.news-date { font-family: var(--f-round); font-size: 13px; color: var(--ink-thin); font-weight: 700; }
.news-cat {
  font-family: var(--f-round); font-weight: 700; font-size: 11.5px;
  padding: 3px 12px; border-radius: var(--r-pill);
  background: var(--sky-pale); color: #2b8fc4;
}
.news-cat.ev { background: var(--sun-pale); color: #b4801a; }
.news-cat.fm { background: var(--leaf-pale); color: var(--leaf-deep); }
.news-item h3 { font-size: 18px; margin-bottom: 6px; }
.news-item p { font-size: 14px; color: var(--ink-soft); line-height: 1.8; }
.news-body .link-more { margin-top: 8px; }
@media (max-width: 640px) {
  .news-item { grid-template-columns: 1fr; gap: 14px; }
  .news-thumb { aspect-ratio: 16 / 9; }
}

/* ---------- 12. CTAバンド ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #ff8f6b 0%, var(--berry) 55%, #e5484f 100%);
  color: #fff; text-align: center;
  padding: clamp(52px, 7vw, 84px) 0;
}
.cta-band::before,
.cta-band::after {
  content: ""; position: absolute; border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}
.cta-band::before { width: 260px; height: 260px; top: -90px; left: -60px; }
.cta-band::after  { width: 190px; height: 190px; bottom: -80px; right: -40px; }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(24px, 4vw, 36px); margin-bottom: 14px; }
.cta-band p { font-size: 15.5px; opacity: .95; margin-bottom: 28px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-band .btn-white {
  background: #fff; color: var(--berry-deep);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .16);
}
.cta-band .btn-white:hover { transform: translateY(-3px); }
.cta-band .btn-outline {
  background: rgba(255, 255, 255, .14); color: #fff;
  border-color: rgba(255, 255, 255, .75);
}
.cta-band .btn-outline:hover { background: rgba(255, 255, 255, .26); transform: translateY(-3px); }
.cta-tel {
  margin-top: 24px; font-family: var(--f-round); font-size: 14.5px; opacity: .95;
}
.cta-tel a { color: #fff; font-weight: 700; font-size: 20px; text-decoration: none; letter-spacing: .02em; }

/* ---------- 13. 情報テーブル ---------- */
.info-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.info-table th, .info-table td {
  text-align: left; padding: 16px 12px;
  border-bottom: 1px solid var(--line); vertical-align: top;
}
.info-table th {
  font-family: var(--f-round); font-weight: 700;
  width: 30%; color: var(--ink); white-space: nowrap;
}
.info-table td { color: var(--ink-soft); }
@media (max-width: 600px) {
  .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { border-bottom: 0; padding-bottom: 2px; }
  .info-table td { padding-top: 2px; }
}

/* ---------- 14. スケジュール ---------- */
.schedule { display: grid; gap: 12px; }
.sch-row {
  display: grid; grid-template-columns: 150px 1fr; gap: 20px; align-items: center;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 16px 22px;
  box-shadow: var(--sh-sm);
}
.sch-time {
  font-family: var(--f-round); font-weight: 700; font-size: 15px;
  color: var(--berry-deep); background: var(--berry-pale);
  border-radius: var(--r-pill); padding: 5px 0; text-align: center;
}
.sch-row.rest .sch-time { color: var(--leaf-deep); background: var(--leaf-pale); }
.sch-body strong { font-family: var(--f-round); font-size: 16px; display: block; margin-bottom: 2px; }
.sch-body span { font-size: 14px; color: var(--ink-soft); }
@media (max-width: 560px) {
  .sch-row { grid-template-columns: 1fr; gap: 8px; }
  .sch-time { justify-self: start; padding: 5px 18px; }
}

/* ---------- 15. ステップ（ご利用の流れ） ---------- */
.steps { display: grid; gap: 16px; counter-reset: step; }
.step {
  display: grid; grid-template-columns: 62px 1fr; gap: 20px; align-items: start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px 26px; box-shadow: var(--sh-sm);
  position: relative;
}
.step::before {
  counter-increment: step; content: counter(step);
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--berry), #ff8567);
  color: #fff; font-family: var(--f-round); font-weight: 900; font-size: 22px;
  display: grid; place-items: center;
  box-shadow: 0 6px 14px rgba(240, 82, 75, .28);
}
.step h3 { font-size: 18px; margin-bottom: 6px; }
.step p { font-size: 14.5px; color: var(--ink-soft); }
@media (max-width: 560px) { .step { grid-template-columns: 1fr; gap: 12px; } }

/* ---------- 16. 施設カード ---------- */
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.room {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm);
  transition: transform .25s, box-shadow .25s;
}
.room:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.room figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; }
.room img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.room:hover img { transform: scale(1.06); }
.room-body { padding: 20px 24px 24px; }
.room h3 { font-size: 18px; margin-bottom: 8px; }
.room p { font-size: 14px; color: var(--ink-soft); line-height: 1.8; }
@media (max-width: 860px) { .room-grid { grid-template-columns: 1fr; } }

/* ---------- 17. 商品カード（いちご） ---------- */
.item-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 10px; box-shadow: var(--sh-sm);
  display: grid; grid-template-columns: 150px 1fr; gap: 20px; align-items: center;
}
.item figure { margin: 0; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 1 / 1; }
.item img { width: 100%; height: 100%; object-fit: cover; }
.item-body { padding-right: 14px; }
.item h3 { font-size: 19px; margin-bottom: 6px; }
.item p { font-size: 14px; color: var(--ink-soft); margin-bottom: 10px; }
.price {
  font-family: var(--f-round); font-weight: 900; font-size: 20px; color: var(--berry);
}
.price small { font-size: 12px; color: var(--ink-thin); font-weight: 500; margin-left: 4px; }
@media (max-width: 980px) { .item-grid { grid-template-columns: 1fr; } }
@media (max-width: 460px) { .item { grid-template-columns: 1fr; } .item figure { aspect-ratio: 16/9; } }

/* 直売所カード */
.shop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.shop {
  background: var(--white); border: 2px dashed var(--line-2);
  border-radius: var(--r-lg); padding: 28px 30px;
}
.shop h3 {
  font-size: 19px; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.shop h3 .pin {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--berry-pale); display: grid; place-items: center; font-size: 15px;
}
.shop dl { margin: 0; display: grid; grid-template-columns: 84px 1fr; gap: 9px 14px; font-size: 14.5px; }
.shop dt { font-family: var(--f-round); font-weight: 700; color: var(--ink-soft); }
.shop dd { margin: 0; }
@media (max-width: 820px) { .shop-grid { grid-template-columns: 1fr; } }

/* ---------- 18. 引用・メッセージ ---------- */
.quote {
  background: var(--white); border-radius: var(--r-xl);
  padding: clamp(30px, 5vw, 52px); box-shadow: var(--sh-md);
  border: 1px solid var(--line); position: relative;
}
.quote::before {
  content: "“"; position: absolute; top: 6px; left: 26px;
  font-family: var(--f-round); font-size: 90px; color: var(--berry-pale);
  line-height: 1;
}
.quote p { position: relative; z-index: 1; font-size: clamp(15.5px, 2vw, 17.5px); line-height: 2.1; }
.quote .sign {
  margin-top: 18px; font-family: var(--f-round); font-weight: 700;
  color: var(--ink-soft); font-size: 14.5px;
}

/* ---------- 19. フォーム ---------- */
.form-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: clamp(26px, 4.5vw, 48px);
  box-shadow: var(--sh-md); border: 1px solid var(--line);
}
.field { margin-bottom: 24px; }
.field label,
.field .label {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--f-round); font-weight: 700; font-size: 15px;
  margin-bottom: 9px;
}
.req, .opt {
  font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 5px;
  letter-spacing: .04em;
}
.req { background: var(--berry); color: #fff; }
.opt { background: var(--line); color: var(--ink-soft); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%; font-family: var(--f-body); font-size: 16px; color: var(--ink);
  background: var(--cream); border: 2px solid var(--line-2);
  border-radius: 14px; padding: 14px 16px;
  transition: border-color .2s, background .2s;
}
.field textarea { min-height: 170px; resize: vertical; line-height: 1.8; }
.field select { appearance: none; background-image: none; cursor: pointer; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: ""; position: absolute; right: 18px; top: 50%;
  width: 9px; height: 9px; border-right: 2px solid var(--ink-soft);
  border-bottom: 2px solid var(--ink-soft);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--berry); background: var(--white); outline: none;
}
.field .hint { font-size: 12.5px; color: var(--ink-thin); margin-top: 7px; }
.field .error {
  display: none; font-size: 13px; color: var(--berry-deep);
  font-weight: 700; margin-top: 7px;
}
.field.has-error input:not([type="checkbox"]),
.field.has-error select,
.field.has-error textarea,
.field.has-error .check { border-color: var(--berry); background: var(--berry-pale); }
.field.has-error .error { display: block; }

.check {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--cream); border-radius: 14px; padding: 16px 18px;
  font-size: 14.5px; cursor: pointer; border: 2px solid var(--line-2);
}
.check input { width: 20px; height: 20px; margin-top: 3px; flex: none; accent-color: var(--berry); }

.form-submit { text-align: center; margin-top: 30px; }
.form-note { font-size: 13px; color: var(--ink-thin); margin-top: 16px; }

.form-status {
  display: none; margin-top: 22px; border-radius: 16px;
  padding: 18px 22px; font-size: 14.5px; line-height: 1.85;
}
.form-status.show { display: block; }
.form-status.ok { background: var(--leaf-pale); color: var(--leaf-deep); border: 1px solid #bfe3bd; }
.form-status.ng { background: var(--berry-pale); color: var(--berry-deep); border: 1px solid #f6c6c4; }
.form-status strong { font-family: var(--f-round); display: block; margin-bottom: 4px; }

/* 直接連絡カード */
.contact-direct { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.cd-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 24px; text-align: center; box-shadow: var(--sh-sm);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none; color: inherit; display: block;
}
.cd-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.cd-icon {
  width: 60px; height: 60px; border-radius: 20px; margin: 0 auto 14px;
  display: grid; place-items: center; font-size: 26px;
}
.cd-card h3 { font-size: 16px; margin-bottom: 6px; }
.cd-card .val {
  font-family: var(--f-round); font-weight: 900; font-size: 19px;
  color: var(--berry-deep); word-break: break-all; line-height: 1.5;
}
.cd-card .sub { font-size: 12.5px; color: var(--ink-thin); margin-top: 6px; }
@media (max-width: 860px) { .contact-direct { grid-template-columns: 1fr; } }

/* ---------- 20. 地図 ---------- */
.map-embed {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-md); border: 1px solid var(--line);
  line-height: 0; background: var(--cream-2);
}
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- 21. フッター ---------- */
.site-footer {
  background: #3b3631; color: #e9e3da;
  padding: clamp(46px, 6vw, 68px) 0 0;
  font-size: 14.5px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: clamp(24px, 4vw, 52px);
  padding-bottom: 44px;
}
.footer-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer-logo img { width: 46px; }
.footer-logo .logo-name { color: #ffb3ae; }
.footer-logo .logo-name span { color: #a5d9a2; }
.footer-logo .logo-sub { color: #a29a90; }
.site-footer p { color: #c3bbb1; line-height: 1.9; font-size: 14px; }
.site-footer h4 {
  font-size: 15px; color: #fff; margin-bottom: 14px;
  font-family: var(--f-round);
}
.footer-nav { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-nav a { color: #c3bbb1; text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-nav a:hover { color: #ffb3ae; }
.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; color: #c3bbb1; font-size: 14px; }
.footer-contact a { color: #c3bbb1; text-decoration: none; }
.footer-contact a:hover { color: #ffb3ae; }
.sns {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 16px;
  background: rgba(255,255,255,.1); border-radius: var(--r-pill);
  padding: 9px 18px; color: #fff !important; text-decoration: none;
  font-family: var(--f-round); font-weight: 700; font-size: 13.5px;
  transition: background .2s;
}
.sns:hover { background: rgba(255,255,255,.2); }
.copyright {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 20px 0; text-align: center; font-size: 12.5px; color: #9d958b;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- 22. ページヘッダー（下層） ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(620px 380px at 86% 12%, #fff2e2 0%, rgba(255,242,226,0) 62%),
    radial-gradient(540px 340px at 6% 92%, #e9f7e8 0%, rgba(233,247,232,0) 60%),
    var(--cream);
  padding: clamp(40px, 6vw, 70px) 0 clamp(36px, 5vw, 58px);
  text-align: center;
}
.page-hero h1 { font-size: clamp(27px, 4.6vw, 42px); font-weight: 900; margin-bottom: 12px; }
.page-hero p { color: var(--ink-soft); font-size: 15.5px; }
.breadcrumb {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  font-size: 12.5px; color: var(--ink-thin);
}
.breadcrumb a { color: var(--ink-thin); text-decoration: none; }
.breadcrumb a:hover { color: var(--berry); }
.breadcrumb li + li::before { content: "›"; margin-right: 8px; color: var(--line-2); }

/* ---------- 23. スクロール演出 ---------- */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2, .7, .3, 1), transform .7s cubic-bezier(.2, .7, .3, 1);
}
.reveal.is-in { opacity: 1; transform: none; }

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

/* ---------- 23b. 横長バナー ---------- */
.banner {
  margin: 0; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-lg); border: 1px solid var(--line);
  line-height: 0; background: var(--white);
}
.banner img { width: 100%; height: auto; }

/* ---------- 24. 汎用 ---------- */
.text-center { text-align: center; }
.mt-s { margin-top: 16px; }
.mt-m { margin-top: 30px; }
.mt-l { margin-top: 48px; }
.lead-box {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--line); box-shadow: var(--sh-sm);
  padding: clamp(24px, 4vw, 40px);
}
.pill-note {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sun-pale); color: #8a6411;
  font-family: var(--f-round); font-weight: 700; font-size: 13.5px;
  padding: 9px 20px; border-radius: var(--r-pill);
}
