@charset "UTF-8";
/* ==========================================================================
   西村農園　style.css
   コンセプト：コミック・明るい・ユーモア
   - 太い黒のフチ＋ずらした影（コマ）、吹き出し、集中線、網点（スクリーントーン）
   - 各セクションを「第○話」として読ませる
   配色の決めごと
   - 白文字を載せる赤は --red-deep（#C8203A／白と5.6:1）。明るい --red は装飾だけ
   - 白文字を載せる緑は --green-deep（#14713D／白と6.1:1）。明るい --green は装飾だけ
   - 黄色の上の文字は必ず --ink（黒）
   - 本文は網点や集中線の上に直接置かない。白いコマの中に入れる
   ========================================================================== */

:root {
  --ink: #1B1B1B;
  --text: #2A2A2A;
  --text-sub: #555;
  --paper: #FFFBEA;
  --white: #FFFFFF;
  --yellow: #FFD23F;
  --yellow-pale: #FFF3B8;
  --red: #FF4B5C;
  --red-deep: #C8203A;
  --green: #3DBE5B;
  --green-deep: #14713D;
  --green-pale: #E4F6E1;
  --sky: #CDEFFF;
  --line: 3px solid var(--ink);
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --radius: 14px;
  --font-body: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "BIZ UDPGothic", Meiryo, sans-serif;
  --font-comic: "Dela Gothic One", "M PLUS Rounded 1c", "Hiragino Sans", Meiryo, sans-serif;
  --container: 1120px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.85;
  color: var(--text);
  background: var(--paper);
  overflow-wrap: anywhere;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
}

a { color: var(--red-deep); text-underline-offset: 3px; }
a:hover { color: var(--ink); }

/* ふりがな（春爽赤）
   <ruby> は使わない。iPhone の Safari は ruby / rt の display・position の指定を無視し、
   漢字が行の上に浮いてふりがなが本文に重なった（2026-09-19 お客様のiPhoneで発覚）。
   標準のルビのままだと、ふりがな6文字が漢字3文字より長いため「春 爽 赤」と字間が開く。
   → 普通の span に data-yomi を持たせ、::before で漢字の上に中央ではみ出させる。
   下限11pxは、本文が小さい箇所でも読めるように */
.furi { position: relative; display: inline-block; line-height: 1; padding-top: calc(max(.5em, 11px) + 2px); text-indent: 0; }
.furi::before {
  content: attr(data-yomi);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: max(.5em, 11px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .05em;
}

:focus-visible { outline: 3px solid #1E6BFF; outline-offset: 3px; }

h1, h2, h3, h4 { margin: 0 0 .6em; line-height: 1.4; color: var(--ink); }
h1, h2 { font-family: var(--font-comic); font-weight: 400; letter-spacing: .02em; }
h3 { font-weight: 800; font-size: 1.22rem; }
p { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }

.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;
}

/* --------------------------------------------------------------------------
   ボタン
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  min-height: 48px;
  padding: .55em 1.4em;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
  text-align: center;
  color: var(--ink);
  background: var(--white);
  border: var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .12s, box-shadow .12s;
}
.btn:hover { color: var(--ink); transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }
.btn-red { background: var(--red-deep); color: var(--white); }
.btn-red:hover { color: var(--white); }
.btn-green { background: var(--green-deep); color: var(--white); }
.btn-green:hover { color: var(--white); }
.btn-yellow { background: var(--yellow); }
.btn-lg { min-height: 58px; font-size: 1.1rem; padding: .6em 1.8em; }
.btn .arrow { font-size: .9em; }

/* --------------------------------------------------------------------------
   ヘッダー
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1240px;
  margin-inline: auto;
  padding: 8px 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  text-decoration: none;
  color: var(--ink);
}
.brand img { width: 52px; height: 52px; }
.brand-name { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name strong { font-family: var(--font-comic); font-weight: 400; font-size: 1.5rem; letter-spacing: .06em; }
.brand-name small { font-size: .74rem; font-weight: 700; color: var(--text-sub); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 12px;
  font-weight: 800;
  font-size: .95rem;
  color: var(--ink);
  text-decoration: none;
  border-radius: 999px;
}
.main-nav a:hover { background: var(--yellow-pale); }
.main-nav a.is-active { background: var(--yellow); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn { min-height: 44px; padding: .4em 1.1em; font-size: .92rem; }

.nav-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  background: var(--yellow);
  border: var(--line);
  border-radius: 12px;
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 3px;
  margin-left: -11px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s, background .2s;
  content: "";
}
.nav-toggle span { top: 50%; margin-top: -1.5px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span::after { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   コミックの部品
   -------------------------------------------------------------------------- */

/* コマ：太いフチ＋ずらした影 */
.koma {
  background: var(--white);
  border: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.koma-pad { padding: 28px; }

/* 吹き出し */
.fukidashi {
  position: relative;
  display: inline-block;
  padding: .7em 1.1em;
  font-weight: 800;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
  border: var(--line);
  border-radius: 22px;
}
.fukidashi::before,
.fukidashi::after {
  position: absolute;
  content: "";
  border-style: solid;
}
/* しっぽ（下向き・左寄り） */
.fukidashi::before { left: 26px; bottom: -19px; border-width: 19px 12px 0 12px; border-color: var(--ink) transparent transparent transparent; }
.fukidashi::after  { left: 29px; bottom: -13px; border-width: 14px 9px 0 9px;  border-color: var(--white) transparent transparent transparent; }
/* しっぽ（下向き・右寄り） */
.fukidashi.tail-right::before { left: auto; right: 26px; }
.fukidashi.tail-right::after  { left: auto; right: 29px; }
/* しっぽ（左向き） */
.fukidashi.tail-left::before { left: -19px; top: 50%; bottom: auto; margin-top: -11px; border-width: 11px 19px 11px 0; border-color: transparent var(--ink) transparent transparent; }
.fukidashi.tail-left::after  { left: -13px; top: 50%; bottom: auto; margin-top: -8px;  border-width: 8px 14px 8px 0;  border-color: transparent var(--white) transparent transparent; }

/* ドカン！型のバッジ */
.burst {
  display: inline-grid;
  place-items: center;
  width: 150px;
  aspect-ratio: 1;
  padding: 24px;
  font-weight: 800;
  font-size: .95rem;
  line-height: 1.3;
  text-align: center;
  color: var(--white);
  background: var(--red-deep);
  clip-path: polygon(50% 0%, 61% 17%, 79% 7%, 78% 28%, 98% 30%, 85% 46%, 100% 60%, 80% 67%, 86% 88%, 65% 83%, 55% 100%, 43% 84%, 22% 94%, 22% 73%, 1% 68%, 15% 52%, 3% 35%, 23% 30%, 20% 9%, 40% 17%);
}
.burst strong { display: block; font-family: var(--font-comic); font-weight: 400; font-size: 1.3em; }

/* 擬音（飾り。読み上げ対象外にする） */
.onomato {
  position: absolute;
  font-family: var(--font-comic);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--red);
  -webkit-text-stroke: 8px var(--ink);
  paint-order: stroke fill;
  text-shadow: 4px 4px 0 var(--ink);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* 集中線 */
.speedlines {
  background-color: var(--yellow);
  background-image:
    repeating-conic-gradient(from 0deg at 72% 45%, rgba(255,255,255,.55) 0deg 3deg, transparent 3deg 9deg);
}

/* 網点（スクリーントーン） */
.halftone {
  background-image: radial-gradient(rgba(27,27,27,.13) 1.6px, transparent 1.8px);
  background-size: 12px 12px;
}

/* --------------------------------------------------------------------------
   セクション見出し（第○話）
   -------------------------------------------------------------------------- */
.section { padding-block: 88px; position: relative; }
.section-white { background: var(--white); }
.section-paper { background: var(--paper); }
.section-green { background: var(--green-pale); }
.section-yellow { background: var(--yellow-pale); }
.section-sky { background: var(--sky); }
.section + .section { border-top: var(--line); }

.sec-head { text-align: center; margin-bottom: 48px; }
.sec-head .ep {
  display: inline-block;
  margin-bottom: 14px;
  padding: 2px 16px;
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .1em;
  color: var(--yellow);
  background: var(--ink);
  transform: rotate(-2deg);
}
.sec-head h2 { font-size: clamp(1.7rem, 4.2vw, 2.6rem); margin-bottom: .4em; }
.sec-head h2 .mark {
  background: linear-gradient(transparent 62%, var(--yellow) 62%);
  padding-inline: .1em;
}
.sec-head .lead { max-width: 720px; margin: 0 auto; color: var(--text); }

/* --------------------------------------------------------------------------
   ヒーロー
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: var(--line);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 40px;
  max-width: 1240px;
  margin-inline: auto;
  padding: 64px 20px 76px;
}
.hero-copy { position: relative; z-index: 2; }
.hero-caption {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 16px;
  font-weight: 800;
  font-size: .98rem;
  background: var(--white);
  border: var(--line);
  box-shadow: var(--shadow-sm);
}
.hero h1 {
  font-size: clamp(2.5rem, 6.4vw, 4.6rem);
  line-height: 1.22;
  margin-bottom: .45em;
  color: var(--ink);
}
.hero h1 .accent {
  color: var(--red);
  -webkit-text-stroke: 10px var(--ink);
  paint-order: stroke fill;
}
.hero-text {
  max-width: 34em;
  margin-bottom: 28px;
  padding: 18px 22px;
  font-size: 1.04rem;
  background: var(--white);
  border: var(--line);
  border-radius: var(--radius);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-visual { position: relative; z-index: 1; padding-bottom: 40px; }
.hero-visual .koma { transform: rotate(2deg); }
.hero-visual .koma img { width: 100%; }
.hero-visual .chara {
  position: absolute;
  left: -34px;
  bottom: -30px;
  width: 38%;
  max-width: 210px;
  filter: drop-shadow(4px 4px 0 rgba(0,0,0,.18));
}
.hero-visual .fukidashi {
  position: absolute;
  left: 22%;
  bottom: 190px;
  font-size: 1.05rem;
}
.hero-visual .onomato { right: -10px; top: -34px; transform: rotate(10deg); }
.hero-visual .burst { position: absolute; left: -22px; top: -44px; width: 136px; transform: rotate(-8deg); }
.hero-visual .chara-tomato { left: auto; right: -30px; bottom: -34px; width: 34%; max-width: 190px; }
.hero-visual .fuki-tomato { left: auto; right: 14%; bottom: 172px; }

/* ヒーロー下の帯 */
.ticker {
  background: var(--ink);
  color: var(--yellow);
  border-bottom: var(--line);
}
.ticker ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 28px;
  margin: 0 auto;
  padding: 14px 20px;
  list-style: none;
  font-weight: 800;
  font-size: 1rem;
}
.ticker li::before { content: "★"; margin-right: .5em; color: var(--red); }

/* --------------------------------------------------------------------------
   4コマ
   -------------------------------------------------------------------------- */
.yonkoma {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  counter-reset: koma;
  margin: 0;
  padding: 0;
  list-style: none;
}
.yonkoma li {
  position: relative;
  display: flex;
  flex-direction: column;
  counter-increment: koma;
}
.yonkoma li::before {
  position: absolute;
  z-index: 3;
  top: -14px;
  left: -10px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  font-family: var(--font-comic);
  font-size: 1.3rem;
  color: var(--ink);
  background: var(--yellow);
  border: var(--line);
  border-radius: 50%;
  content: counter(koma);
}
.yonkoma .koma { display: flex; flex-direction: column; height: 100%; }
.yonkoma .koma-img { position: relative; aspect-ratio: 3 / 2; background: var(--sky); border-bottom: var(--line); overflow: hidden; }
.yonkoma .koma-img img { width: 100%; height: 100%; object-fit: cover; }
.yonkoma .koma-img.is-chara { display: grid; place-items: center; background-color: var(--yellow); }
.yonkoma .koma-img.is-chara img { width: auto; height: 88%; object-fit: contain; }
.yonkoma .koma-img .fukidashi { position: absolute; top: 14px; right: 14px; max-width: 70%; font-size: 1rem; }
.yonkoma .koma-body { padding: 18px 22px 22px; }
.yonkoma .koma-body h3 { margin-bottom: .3em; }
.yonkoma .koma-body p { margin: 0; }

/* --------------------------------------------------------------------------
   主役の紹介（スイカ／トマト）
   -------------------------------------------------------------------------- */
.feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.feature.is-reverse .feature-visual { order: 2; }
.feature-visual { position: relative; }
.feature-visual .koma img { width: 100%; }
.feature-visual .chara {
  position: absolute;
  right: -20px;
  bottom: -40px;
  width: 36%;
  max-width: 190px;
}
.feature.is-reverse .feature-visual .chara { right: auto; left: -20px; }
.feature-visual .fukidashi { position: absolute; top: -26px; left: 16px; font-size: 1rem; transform: rotate(-3deg); }
.feature-visual .burst { position: absolute; top: -40px; right: -26px; transform: rotate(10deg); }

.feature-body .name-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 2px 12px;
  font-weight: 800;
  font-size: .9rem;
  color: var(--white);
  background: var(--green-deep);
  border-radius: 6px;
}
.feature-body .name-tag.is-red { background: var(--red-deep); }
.feature-body h3 { font-family: var(--font-comic); font-weight: 400; font-size: clamp(1.6rem, 3.6vw, 2.2rem); }
.feature-body h3 .furi { padding-top: .48em; }
.feature-body h3 .furi::before { font-size: .42em; font-weight: 800; letter-spacing: .08em; }

.point-list { margin: 22px 0 28px; padding: 0; list-style: none; display: grid; gap: 12px; }
.point-list li {
  position: relative;
  padding: 12px 16px 12px 58px;
  background: var(--white);
  border: var(--line);
  border-radius: 12px;
}
.point-list li::before {
  position: absolute;
  left: 12px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  font-weight: 800;
  font-size: .9rem;
  color: var(--white);
  background: var(--red-deep);
  border-radius: 50%;
  content: attr(data-no);
}
.point-list.is-green li::before { background: var(--green-deep); }
.point-list strong { display: block; color: var(--ink); font-size: 1.06rem; }

/* --------------------------------------------------------------------------
   こだわり（技の足し算）
   -------------------------------------------------------------------------- */
.equation {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.15fr;
  align-items: stretch;
  gap: 16px;
}
.equation .term { padding: 26px 22px; text-align: center; }
.equation .term .icon { font-size: 2.6rem; line-height: 1; margin-bottom: 10px; }
.equation .term h3 { font-size: 1.2rem; margin-bottom: .4em; }
.equation .term p { margin: 0; font-size: .98rem; text-align: left; }
.equation .term.is-answer { background: var(--yellow); }
.equation .op {
  align-self: center;
  font-family: var(--font-comic);
  font-size: 3rem;
  line-height: 1;
  color: var(--red);
  -webkit-text-stroke: 6px var(--ink);
  paint-order: stroke fill;
}

/* --------------------------------------------------------------------------
   買えるところ・SNS
   -------------------------------------------------------------------------- */
.shop-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.shop-grid > .shop-card { flex: 0 1 calc((100% - 40px) / 3); }
.shop-grid.is-sns { max-width: 760px; margin-inline: auto; }
.shop-grid.is-sns > .shop-card { flex-basis: calc((100% - 20px) / 2); }
.shop-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 20px 18px;
  color: var(--text);
  text-decoration: none;
  background: var(--white);
  border: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .12s, box-shadow .12s;
}
.shop-card:hover { color: var(--text); transform: translate(-2px, -2px); box-shadow: var(--shadow); }
.shop-card .shop-label {
  align-self: flex-start;
  padding: 1px 10px;
  font-size: .8rem;
  font-weight: 800;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
}
.shop-card .shop-name { font-weight: 800; font-size: 1.2rem; color: var(--ink); }
.shop-card .shop-desc { font-size: .92rem; line-height: 1.7; color: var(--text-sub); }
.shop-card .shop-go { margin-top: auto; padding-top: 8px; font-weight: 800; font-size: .95rem; color: var(--red-deep); }
.shop-card.is-furusato { background: var(--yellow-pale); }
.shop-card.is-base { background: var(--green-pale); }
.shop-note { margin-top: 18px; font-size: .88rem; text-align: center; color: var(--text-sub); }

/* ふるさと納税：1品につき複数のサイトへ出し分ける */
.furusato-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.furusato-item {
  flex: 1 1 320px;
  max-width: 360px;
  padding: 22px 22px 20px;
  background: var(--white);
  border: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.furusato-item h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink);
}
.furusato-meta {
  margin: 0 0 14px;
  font-size: .9rem;
  font-weight: 800;
  color: var(--green-deep);
}
.furusato-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.furusato-links a {
  padding: 8px 14px;
  font-size: .92rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  background: var(--yellow-pale);
  border: 2px solid var(--ink);
  border-radius: 999px;
}
.furusato-links a:hover { background: var(--yellow); }

/* --------------------------------------------------------------------------
   お問い合わせの呼びかけ
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px 44px;
}
.cta .chara { width: 100%; }
.cta h2 { font-size: clamp(1.5rem, 3.6vw, 2.1rem); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 18px; }
.tel-link {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
  color: var(--ink);
}
.tel-link small { font-weight: 700; font-size: .82rem; color: var(--text-sub); }
.tel-link span { font-family: var(--font-comic); font-size: 1.7rem; letter-spacing: .03em; white-space: nowrap; }
.cta-note { margin: 14px 0 0; font-size: .9rem; color: var(--text-sub); }

/* --------------------------------------------------------------------------
   下層ページの見出し
   -------------------------------------------------------------------------- */
.page-head {
  position: relative;
  overflow: hidden;
  padding: 56px 0 60px;
  border-bottom: var(--line);
}
.page-head .container { position: relative; }
.page-head .ep {
  display: inline-block;
  margin-bottom: 12px;
  padding: 2px 14px;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .1em;
  color: var(--yellow);
  background: var(--ink);
  transform: rotate(-2deg);
}
.page-head h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: .35em; }
.page-head h1 .furi { padding-top: .26em; }
.page-head h1 .furi::before { font-size: .32em; font-weight: 800; letter-spacing: .12em; }
.page-head p {
  display: inline-block;
  max-width: 40em;
  margin: 0;
  padding: 12px 18px;
  background: var(--white);
  border: var(--line);
  border-radius: 12px;
}
.page-head .chara { position: absolute; right: 20px; bottom: -64px; width: 170px; }

.breadcrumb { background: var(--white); border-bottom: 2px solid var(--ink); font-size: .88rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 4px; margin: 0; padding: 10px 0; list-style: none; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--text-sub); }
.breadcrumb a { color: var(--text); }

/* --------------------------------------------------------------------------
   下層ページの本文
   -------------------------------------------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.two-col.is-reverse > :first-child { order: 2; }
.two-col h2 { font-size: clamp(1.5rem, 3.4vw, 2rem); }

.manga-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.manga-row .koma { padding: 24px 22px; }
.manga-row .koma .big {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-comic);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--red);
  -webkit-text-stroke: 6px var(--ink);
  paint-order: stroke fill;
}
.manga-row .koma h3 { margin-bottom: .35em; }
.manga-row .koma p { margin: 0; }

.talk { display: grid; gap: 22px; max-width: 820px; margin-inline: auto; }
.talk-row { display: grid; grid-template-columns: 110px 1fr; gap: 26px; align-items: center; }
.talk-row.is-right { grid-template-columns: 1fr 110px; }
.talk-row.is-right .talk-icon { order: 2; }
.talk-row.is-right .fukidashi::before { left: auto; right: -19px; top: 50%; bottom: auto; margin-top: -11px; border-width: 11px 0 11px 19px; border-color: transparent transparent transparent var(--ink); }
.talk-row.is-right .fukidashi::after  { left: auto; right: -13px; top: 50%; bottom: auto; margin-top: -8px; border-width: 8px 0 8px 14px;  border-color: transparent transparent transparent var(--white); }
.talk-icon {
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  background: var(--yellow);
  border: var(--line);
  border-radius: 50%;
  overflow: hidden;
}
.talk-icon img { width: 86%; height: 86%; object-fit: contain; }
.talk-icon.is-tomato { background: var(--green-pale); }
.talk .fukidashi { display: block; font-weight: 500; font-size: 1.02rem; line-height: 1.8; }
.talk .fukidashi strong { font-weight: 800; }

.info-table { width: 100%; border-collapse: collapse; background: var(--white); }
.info-table th,
.info-table td { padding: 16px 20px; text-align: left; vertical-align: top; border-bottom: 2px dashed #CFCFCF; }
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: 0; }
.info-table th { width: 30%; font-weight: 800; color: var(--ink); background: var(--yellow-pale); white-space: nowrap; }

.center-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 40px; }

/* --------------------------------------------------------------------------
   フォーム
   -------------------------------------------------------------------------- */
.form-wrap { max-width: 780px; margin-inline: auto; padding: 36px 40px; }
.form-intro { font-size: .96rem; }
.form-row { margin-bottom: 26px; }
.form-row > label,
.form-row > .label { display: block; margin-bottom: 8px; font-weight: 800; color: var(--ink); }
.req, .any {
  display: inline-block;
  margin-left: 8px;
  padding: 0 8px;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.7;
  vertical-align: 2px;
  border-radius: 4px;
}
.req { color: var(--white); background: var(--red-deep); }
.any { color: var(--text); background: #E6E6E6; }
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 10px;
}
.form-row textarea { min-height: 180px; resize: vertical; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { outline: 3px solid var(--yellow); outline-offset: 0; border-color: var(--ink); }
.form-hint { margin: 6px 0 0; font-size: .88rem; color: var(--text-sub); }
.form-error { display: none; margin: 6px 0 0; font-size: .9rem; font-weight: 800; color: var(--red-deep); }
.privacy-check { display: flex; align-items: flex-start; gap: 10px; font-weight: 700; cursor: pointer; }
.privacy-check input { width: 22px; height: 22px; margin-top: 4px; accent-color: var(--red-deep); }
.form-submit { text-align: center; margin-top: 34px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-msg { margin-bottom: 28px; padding: 18px 22px; font-weight: 700; border: var(--line); border-radius: 12px; }
.form-msg.ok { background: var(--green-pale); }
.form-msg.ng { background: #FFE3E6; }

/* --------------------------------------------------------------------------
   文書ページ（プライバシーポリシー）
   -------------------------------------------------------------------------- */
.doc { max-width: 820px; margin-inline: auto; padding: 40px 44px; }
.doc h2 {
  margin: 2em 0 .6em;
  padding-left: 12px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.2rem;
  border-left: 6px solid var(--red-deep);
}
.doc h2:first-of-type { margin-top: 1.2em; }
.doc ul { padding-left: 1.4em; }

/* --------------------------------------------------------------------------
   フッター
   -------------------------------------------------------------------------- */
.site-footer {
  color: #EDEDED;
  background: var(--ink);
  border-top: var(--line);
  padding: 56px 0 28px;
  font-size: .95rem;
}
.site-footer a { color: #FFFFFF; }
.site-footer a:hover { color: var(--yellow); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 56px; height: 56px; background: var(--yellow); border-radius: 50%; padding: 4px; }
.footer-brand span { font-family: var(--font-comic); font-size: 1.5rem; color: var(--yellow); letter-spacing: .06em; }
.footer-grid p { margin: 0 0 .5em; }
.footer-col h2 { margin-bottom: 10px; font-family: var(--font-body); font-weight: 800; font-size: 1rem; color: var(--yellow); }
.footer-col ul { margin: 0; padding: 0; list-style: none; }
.footer-col li { margin-bottom: 6px; }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid #444; font-size: .82rem; text-align: center; color: #BDBDBD; }

/* --------------------------------------------------------------------------
   収穫時期（ヒーローのバッジ／収穫カレンダー／ラベル）
   -------------------------------------------------------------------------- */
.hero-season { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 0 0 18px; padding: 0; list-style: none; }
.hero-season li:not(.hero-sns) > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 4px 16px 4px 5px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  background: var(--white);
  border: var(--line);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
}
.hero-season li:not(.hero-sns) > a:hover { color: var(--ink); background: var(--yellow-pale); }

/* ヒーローの Instagram / YouTube（お客様の希望で、時期の目印の右の空きに置く）
   マークだけだと何のボタンか伝わりにくいので、下に名前を添える。
   名前は集中線の上に直接置かず、白地に載せる */
.hero-season .hero-sns { display: flex; gap: 6px; }
.hero-sns a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 52px;
  color: var(--ink);
  text-decoration: none;
}
.hero-sns .sns-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: var(--line);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .12s, box-shadow .12s;
}
.hero-sns a:hover { color: var(--ink); }
.hero-sns a:hover .sns-icon { background: var(--yellow-pale); transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.hero-sns .sns-name {
  padding: 1px 4px;
  font-size: 11px;
  white-space: nowrap;
  font-weight: 800;
  line-height: 1.3;
  background: var(--white);
  border-radius: 6px;
}
.hero-season .tag { padding: 2px 12px; font-size: .88rem; color: var(--white); border-radius: 999px; }
.hero-season .is-tomato .tag { background: var(--red-deep); }
.hero-season .is-suika .tag { background: var(--green-deep); }

.season-pill { display: inline-block; margin: -4px 0 6px; padding: 3px 14px; font-weight: 800; font-size: .95rem; color: var(--yellow); background: var(--ink); border-radius: 999px; }
.page-head p.season-pill { display: block; width: fit-content; margin: 14px 0 0; padding: 4px 16px; color: var(--yellow); background: var(--ink); border: 0; border-radius: 999px; }

.season { max-width: 960px; margin-inline: auto; padding: 28px 30px 30px; }
.season-row { display: grid; grid-template-columns: 250px 1fr; gap: 20px; align-items: end; }
.season-row + .season-row { margin-top: 22px; padding-top: 22px; border-top: 2px dashed #DDD; }
.season-name { display: flex; align-items: center; gap: 12px; margin: 0; }
.season-name img { width: 60px; height: auto; flex: none; }
.season-name strong { display: block; font-size: 1.2rem; line-height: 1.3; color: var(--ink); }
.season-name .period { display: block; font-weight: 800; font-size: 1.05rem; line-height: 1.4; }
.season-row.is-tomato .period { color: var(--red-deep); }
.season-row.is-suika .period { color: var(--green-deep); }
.season-months {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  margin: 0 0 4px;
  padding: 0;
  list-style: none;
  font-size: .8rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  color: var(--text-sub);
}
.season-track {
  position: relative;
  height: 44px;
  background-color: var(--paper);
  background-image: linear-gradient(90deg, transparent calc(100% - 1px), #D8D0B0 calc(100% - 1px));
  background-size: calc(100% / 12) 100%;
  border: 2px solid var(--ink);
  border-radius: 10px;
  overflow: hidden;
}
.season-bar {
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: calc((var(--from) - 1) / 12 * 100%);
  width: calc((var(--to) - var(--from)) / 12 * 100%);
  border: 2px solid var(--ink);
  border-radius: 999px;
}
.season-row.is-tomato .season-bar { background: var(--red); }
.season-row.is-suika .season-bar { background: var(--green); }
.season-note { margin: 16px 0 0; font-size: .9rem; text-align: center; color: var(--text-sub); }

/* --------------------------------------------------------------------------
   表示アニメーション（ポンッと出る）
   -------------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(18px) scale(.97); transition: opacity .5s ease, transform .5s cubic-bezier(.2, 1.4, .4, 1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn, .shop-card, .hero-sns .sns-icon { transition: none; }
}

/* --------------------------------------------------------------------------
   レスポンシブ
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .main-nav a { padding: 8px 8px; font-size: .9rem; }
  .hero h1 { font-size: clamp(2.5rem, 5.2vw, 4.6rem); }
  .main-nav a { white-space: nowrap; }
  .shop-grid > .shop-card { flex-basis: calc((100% - 20px) / 2); }
  .equation { grid-template-columns: 1fr; }
  .equation .op { justify-self: center; font-size: 2.4rem; }
}

/* 901〜1080px：ヒーローが2列のまま一番狭くなる幅。メニューの折り返しと吹き出しの重なりを避ける */
@media (min-width: 901px) and (max-width: 1080px) {
  .header-actions .btn { display: none; }
  .hero-visual .fuki-suika { display: none; }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 16px;
    background: var(--white);
    border-bottom: var(--line);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px 12px; font-size: 1.05rem; border-bottom: 2px dashed #DDD; border-radius: 0; }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a.is-active { background: var(--yellow-pale); }

  .hero-inner { grid-template-columns: 1fr; gap: 56px; padding: 44px 20px 64px; }
  .hero-visual { max-width: 560px; margin-inline: auto; width: 100%; }

  .feature, .two-col { grid-template-columns: 1fr; gap: 56px; }
  .feature.is-reverse .feature-visual, .two-col.is-reverse > :first-child { order: 0; }
  .feature-visual { max-width: 560px; margin-inline: auto; width: 100%; }

  .manga-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .page-head .chara { width: 120px; bottom: -40px; opacity: .95; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding-block: 64px; }
  .sec-head { margin-bottom: 36px; }
  .brand img { width: 44px; height: 44px; }
  .brand-name strong { font-size: 1.25rem; }
  .brand-name small { font-size: .68rem; }
  .header-actions .btn { display: none; }

  .hero h1 .accent { -webkit-text-stroke-width: 6px; }
  .hero-actions .btn { width: 100%; }
  .hero-visual .chara { width: 30%; left: -8px; bottom: -34px; }
  .hero-visual .fukidashi { left: 30%; bottom: auto; top: calc(100% - 34px); font-size: .92rem; }
  .hero-visual .burst { width: 108px; padding: 18px; font-size: .78rem; left: -6px; top: -30px; }
  .hero-visual .onomato { display: none; }
  .hero-visual .chara-tomato { left: auto; right: -8px; width: 30%; }
  .hero-visual .fuki-suika { display: none; }
  .hero-visual .fuki-tomato { left: 50%; right: auto; bottom: auto; top: calc(100% - 30px); transform: translateX(-50%); font-size: .88rem; white-space: nowrap; }

  .yonkoma { grid-template-columns: 1fr; gap: 30px; }
  .koma-pad { padding: 22px 20px; }
  .feature-visual .burst { width: 112px; padding: 18px; font-size: .8rem; right: -8px; }
  .feature-visual .chara { width: 30%; right: -6px; bottom: -34px; }
  .feature.is-reverse .feature-visual .chara { left: -6px; }

  .shop-grid > .shop-card, .shop-grid.is-sns > .shop-card { flex-basis: 100%; }
  .cta { grid-template-columns: 1fr; padding: 30px 22px; text-align: center; }
  .cta .chara { width: 130px; margin: 0 auto; }
  .cta-actions { justify-content: center; }
  .cta-actions .btn { width: 100%; }
  .cta h2 { font-size: 1.15rem; }
  .tel-link span { font-size: 1.3rem; }

  .talk-row, .talk-row.is-right { grid-template-columns: 72px 1fr; gap: 20px; }
  .talk-row.is-right .talk-icon { order: 0; }
  .talk-row.is-right .fukidashi::before { right: auto; left: -19px; border-width: 11px 19px 11px 0; border-color: transparent var(--ink) transparent transparent; }
  .talk-row.is-right .fukidashi::after  { right: auto; left: -13px; border-width: 8px 14px 8px 0;  border-color: transparent var(--white) transparent transparent; }
  .talk-icon { width: 72px; height: 72px; }

  .info-table th, .info-table td { display: block; width: 100%; padding: 10px 16px; }
  .info-table th { border-bottom: 0; }

  .page-head { padding: 40px 0 44px; }
  .page-head .chara { display: none; }
  .form-wrap, .doc { padding: 26px 20px; }
  .footer-grid { grid-template-columns: 1fr; }

  .season { padding: 22px 16px 24px; }
  .season-row { grid-template-columns: 1fr; gap: 8px; }
  .season-name img { width: 46px; }
  .season-months { font-size: .72rem; }
  .season-months .m { display: none; }
}
