/* WATANABASE.jp — style.css */

/* ── Design Tokens ── */
:root {
  /* Core palette */
  --green:        #6CAE75;   /* main green */
  --green-dark:   #345E46;   /* header, hero, footer */
  --green-mid:    #4d845a;   /* hover, borders */
  --green-light:  #a8d5b0;   /* subtle tints */
  --green-pale:   #e6f3e8;   /* very light tint */
  --pink:         #E84855;   /* accent / CTA */
  --pink-dark:    #c43340;   /* hover */
  --pink-pale:    #fdeced;   /* light tint */
  --base:         #EDEDED;   /* section background */
  --base-dark:    #d8d8d8;   /* dividers */
  --dark:         #333333;   /* body text */
  --muted:        #666666;   /* secondary text */
  --white:        #ffffff;

  /* Typography */
  --font-en: 'Montserrat', sans-serif;
  --font-ja: 'Noto Serif JP', serif;
  /* front.css / editorial.css でも同値を定義しているが、style.css 単体で
     完結するようフォールバックを置く（.info-* をここへ集約したため）。 */
  --font-display: 'Anton', 'Noto Sans JP', sans-serif;
  --font-grotesk: 'Archivo', 'Montserrat', sans-serif;
  --font-jp-bold: 'Noto Sans JP', sans-serif;

  /* Layout */
  --radius:    8px;
  --radius-sm: 4px;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --max-w:     1080px;
  --header-h:  64px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ja);
  color: var(--dark);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 100;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: var(--green-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo__img {
  height: 38px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
.site-nav a {
  font-family: var(--font-en);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--green-light); }

.nav-cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--pink-dark) !important; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-ja);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary { background: var(--pink); color: var(--white); }
.btn-primary:hover { background: var(--pink-dark); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-mid); }
.btn-dark { background: var(--green-dark); color: var(--white); }
.btn-dark:hover { background: var(--green-mid); }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--green-light); color: var(--green-light); }
.btn-outline-dark {
  background: transparent;
  border: 1.5px solid var(--green-dark);
  color: var(--green-dark);
}
.btn-outline-dark:hover { background: var(--green-dark); color: var(--white); }

/* フッター上CTAのボタン横並び。スマホでは自動で縦積みになる。
   style.css は全ページで読み込まれるので、TOP・下層の両方で使える。 */
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
/* 塗りボタン(.btn-primary)は border:none、枠線ボタン(.btn-outline)は 1.5px の枠を持つため、
   並べると高さが 2px ずれる。CTA内だけ透明の枠線を足して高さを揃える。
   （.btn 側を直接いじるとサイト全体のボタンが大きくなるので、ここに限定する） */
.cta-actions .btn { border: 1.5px solid transparent; }
.cta-actions .btn-outline { border-color: rgba(255, 255, 255, 0.4); }

/* Instagramアイコン（リンク末尾の ↗ を置き換える）
   マスク＋currentColor で描画するので、リンク/ボタンの文字色（ホバー含む）に追従する。
   3箇所（フッター・TOPのホトケCTA・ホトケページのボタン）はいずれも白文字の暗背景。 */
.icon-ig {
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  margin-left: 0.45em;
  vertical-align: -0.18em;
  background-color: currentColor;
  -webkit-mask: url('../images/instagram.svg') no-repeat center / contain;
          mask: url('../images/instagram.svg') no-repeat center / contain;
  flex-shrink: 0;
}
/* .btn-ed は ::after で「→」を自動付与するので、IGアイコンを使うボタンでは消す。 */
.btn-ig::after { content: none !important; }
/* .btn-ed は inline-flex+gap なので、アイコン側の左マージンは不要（gapが効く）。 */
.btn-ed .icon-ig { margin-left: 0; }

/* ── Hero ── */
.hero {
  min-height: 100svh;
  background: linear-gradient(150deg, #1f3d2b 0%, #2a5038 45%, var(--green-dark) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 550px; height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,174,117,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -5%; left: 10%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,174,117,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
}
.hero__eyebrow {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--green-light);
}
.hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}
.hero__en {
  font-family: var(--font-en);
  font-size: clamp(0.78rem, 1.4vw, 0.95rem);
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  margin-bottom: 2rem;
}
.hero__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  line-height: 1.95;
  margin-bottom: 2.5rem;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.25);
}

/* ── Page Hero ── */
.page-hero {
  background: linear-gradient(150deg, #1f3d2b 0%, var(--green-dark) 60%, #3d6e51 100%);
  padding: calc(var(--header-h) + 3.5rem) 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -25%; right: 0;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,174,117,0.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}
/* 動画背景つきヒーロー */
.page-hero--video .container { position: relative; z-index: 3; }
.page-hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.page-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20,40,28,0.55) 0%, rgba(20,40,28,0.30) 45%, rgba(20,40,28,0.70) 100%);
}
.page-hero .eyebrow { margin-bottom: 0.8rem; color: var(--green-light) !important; }
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}
.page-hero h1 small {
  display: block;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.36);
  margin-top: 0.6rem;
}
.page-hero__lede {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  max-width: 520px;
  margin-top: 1.2rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
  list-style: none;
}
.breadcrumb a { color: rgba(255,255,255,0.42); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--green-light); }

/* ── Sections ── */
.section { padding: var(--space-xl) 0; }
.section--base  { background: var(--base); }
.section--white { background: var(--white); }
.section--dark  { background: var(--green-dark); }
.section--green { background: var(--green-pale); }

.eyebrow {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.6rem;
}
.section--dark .eyebrow { color: var(--green-light); }
.section--green .eyebrow { color: var(--green-mid); }

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.section--dark .section-title { color: var(--white); }

.section-lede {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.95;
  max-width: 600px;
  margin-bottom: var(--space-md);
}
.section--dark .section-lede { color: rgba(255,255,255,0.65); }

/* ── Lead Quote ── */
.lead-quote {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.7;
  border-left: 4px solid var(--green);
  padding-left: 1.4rem;
  margin: 2.5rem 0;
}

/* ── Business Cards ── */
.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-md);
}
.business-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 3px solid var(--green);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}
@media(hover:hover) {
  .business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.1);
  }
}
.business-card--hotoke  { border-top-color: var(--pink); }
.business-card--gallery { border-top-color: var(--green); }
.business-card--farm    { border-top-color: var(--green-dark); }

.business-card__tag {
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.8rem;
}
.business-card--hotoke .business-card__tag { color: var(--pink); }

.business-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.8rem;
  line-height: 1.45;
}
.business-card__desc {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.85;
  flex: 1;
  margin-bottom: 1.6rem;
}
.business-card__link {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
  border-bottom: 1px solid var(--green-light);
  padding-bottom: 2px;
  align-self: flex-start;
}
.business-card__link::after { content: '→'; }
.business-card__link:hover { color: var(--green); border-color: var(--green); }
.business-card--hotoke .business-card__link { color: var(--pink); border-color: #f5a8ae; }
.business-card--hotoke .business-card__link:hover { color: var(--pink-dark); }

/* ── Hotoke Highlight (TOP dedicated section) ── */
.hotoke-highlight {
  background: linear-gradient(150deg, #1f3d2b 0%, var(--green-dark) 100%);
  border-radius: var(--radius);
  padding: 3rem;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: var(--space-md);
}
.hotoke-highlight__tag {
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.8rem;
}
.hotoke-highlight__title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.hotoke-highlight__body {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.95;
}
.hotoke-highlight__body p { margin-bottom: 0.8rem; }
.hotoke-highlight__cta { margin-top: 1.8rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }
.hotoke-highlight__visual {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5.5rem;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ── Feature Row ── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: var(--space-md);
}
.feature-row--reverse .feature-row__visual { order: -1; }
.feature-row__visual {
  height: 300px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--base), var(--base-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
}
.section--dark .feature-row__visual {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
}
.feature-row__body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}
.section--dark .feature-row__body h3 { color: var(--green-light); }
.feature-row__body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 0.8rem;
}
.section--dark .feature-row__body p { color: rgba(255,255,255,0.68); }

/* ── Fact Grid ── */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: var(--space-md);
}
.fact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  border-top: 3px solid var(--green);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.section--dark .fact-card {
  background: rgba(255,255,255,0.05);
  border-width: 1px;
}
.fact-card__num {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.section--dark .fact-card__num { color: var(--green-light); }
.fact-card__label {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}
.section--dark .fact-card__label { color: rgba(255,255,255,0.55); }

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-md);
}
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(108,174,117,0.25);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
}
.service-card--light {
  background: var(--white);
  border-color: var(--base-dark);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.service-card__num {
  font-family: var(--font-en);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(108,174,117,0.2);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.service-card--light .service-card__num { color: rgba(52,94,70,0.12); }
.service-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-light);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.service-card--light .service-card__title { color: var(--green-dark); }
.service-card__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
}
.service-card--light .service-card__desc { color: var(--muted); }

/* ── Menu Cards ── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-md);
}
.menu-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.menu-item__photo {
  height: 160px;
  background: linear-gradient(135deg, var(--green-pale), var(--base));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.menu-item__body { padding: 1.4rem; }
.menu-item__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}
.menu-item__desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0.6rem;
}
.menu-item__price {
  font-family: var(--font-en);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pink);
}
.badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--green-pale);
  color: var(--green-mid);
  margin-left: 0.5rem;
  vertical-align: middle;
}
.badge--pink { background: var(--pink-pale); color: var(--pink); }

/* ── About Brief ── */
.about-brief {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-brief__visual {
  height: 340px;
  background: linear-gradient(145deg, var(--green-dark), var(--green-mid));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.about-brief__name {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.5rem;
}
.about-brief__title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.about-brief__text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 1.8rem;
}

/* ── Highlight Box ── */
.highlight-box {
  background: var(--green-pale);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.8rem;
  margin: 1.5rem 0;
}
.highlight-box p { font-size: 0.88rem; color: var(--dark); line-height: 1.85; }
.highlight-box--pink { background: var(--pink-pale); border-color: var(--pink); }

/* ── Vision Box ── */
.vision-box {
  background: var(--green-dark);
  border-radius: var(--radius);
  padding: 3rem;
  color: var(--white);
}
.vision-box blockquote {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 1.2rem;
  border-left: 4px solid var(--green);
  padding-left: 1.5rem;
}
.vision-box p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.95; }

/* ── Profile ── */
.profile-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}
.profile-photo {
  background: linear-gradient(145deg, var(--green-dark), var(--green-mid));
  border-radius: var(--radius);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  overflow: hidden;
}
/* プロフィール写真は上（顔）を基準にトリミング */
.profile-photo img { object-position: center top; }
.profile-body__name-en {
  font-family: var(--font-en);
  font-size: 0.68rem;
  letter-spacing: 4px;
  color: var(--green-mid);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.profile-body h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
.profile-body .tagline { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.6rem; }
.profile-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.95; margin-bottom: 1rem; }

.strengths-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1.8rem 0;
}
.strength-item {
  background: var(--base);
  border-left: 3px solid var(--green);
  padding: 0.9rem 1.1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.strength-item__title { font-size: 0.88rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.25rem; }
.strength-item__desc { font-size: 0.78rem; color: var(--muted); line-height: 1.65; }

.timeline {
  border-left: 2px solid var(--base-dark);
  padding-left: 1.5rem;
  margin: 1.8rem 0;
}
.timeline-item { position: relative; margin-bottom: 1.4rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.93rem; top: 0.4rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--green);
}
.timeline-item__year {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  color: var(--green-mid);
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.timeline-item__title { font-size: 0.9rem; font-weight: 700; color: var(--green-dark); margin-bottom: 3px; }
.timeline-item__desc { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info__item { display: flex; gap: 1rem; margin-bottom: 1.2rem; align-items: flex-start; }
.contact-info__label {
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-mid);
  min-width: 72px;
  padding-top: 3px;
}
.contact-info__value { font-size: 0.88rem; color: var(--dark); line-height: 1.7; }
.contact-info__value a { text-decoration: underline; color: var(--green-dark); }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--green-dark); margin-bottom: 0.4rem; }
.form-group label .req { color: var(--pink); font-size: 0.72rem; margin-left: 0.3rem; }
.form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--base-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-ja);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-control:focus { outline: none; border-color: var(--green); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 0.8rem; line-height: 1.7; }

/* ── Footer ── */
.site-footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 2.2rem 0 1.2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 1.4rem;
}
.footer-logo { font-family: var(--font-en); font-size: 15px; font-weight: 700; letter-spacing: 3px; color: var(--white); margin-bottom: 0.5rem; }
.footer-logo span { color: var(--green-light); }
.footer-brand > p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.4; }
.footer-col h4 {
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.6rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.3rem; line-height: 1.2; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.2; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span { font-family: var(--font-en); font-size: 10px; letter-spacing: 1px; color: rgba(255,255,255,0.28); }

/* ── Image Placeholder ── */
.img-placeholder {
  background: linear-gradient(135deg, var(--base) 0%, var(--base-dark) 100%);
  border: 2px dashed var(--base-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 1rem;
  line-height: 1.6;
  height: 100%;
  width: 100%;
}
.img-placeholder--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
}

/* ── Wave Divider ── */
.wave-wrap { line-height: 0; font-size: 0; overflow: hidden; position: relative; margin: -1px 0; }
.wave-wrap svg { display: block; width: 100%; height: 48px; vertical-align: bottom; }

/* ── Dots Decoration ── */
.dots-deco {
  position: absolute;
  width: 110px; height: 110px;
  background-image: radial-gradient(circle, rgba(108,174,117,0.4) 1.5px, transparent 1.5px);
  background-size: 13px 13px;
  pointer-events: none;
}
.dots-deco--light {
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1.5px, transparent 1.5px);
}

/* ── Tag Chip ── */
.tag-chip {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.tag-chip--pink  { background: var(--pink-pale);  color: var(--pink); }
.tag-chip--green { background: var(--green-pale);  color: var(--green-mid); }
.tag-chip--dark  { background: var(--green-dark);  color: var(--white); }

/* ── Hero Split ── */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  position: relative;
  z-index: 1;
}
.hero-img-wrap { height: 440px; border-radius: var(--radius); overflow: hidden; position: relative; }

/* ── Biz Cards (with image slot) ── */
.biz-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-md);
}
.biz-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 3px 20px rgba(0,0,0,0.07);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}
@media(hover:hover) {
  .biz-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(0,0,0,0.12); }
}
.biz-card__img { height: 190px; position: relative; flex-shrink: 0; }
.biz-card__img .img-placeholder { border-radius: 0; border: none; border-bottom: 1.5px dashed var(--base-dark); }
.biz-card__badge {
  position: absolute;
  top: 0.9rem; left: 0.9rem;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  z-index: 1;
}
.biz-card__badge--green { background: var(--green-dark); }
.biz-card__badge--mid   { background: var(--green-mid); }
.biz-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.biz-card__cat {
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.4rem;
}
.biz-card__title { font-size: 1.05rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.55rem; line-height: 1.4; }
.biz-card__desc { font-size: 0.84rem; color: var(--muted); line-height: 1.85; flex: 1; margin-bottom: 1.2rem; }
.biz-card__link {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
  align-self: flex-start;
  border-bottom: 1px solid var(--green-light);
  padding-bottom: 2px;
}
.biz-card__link::after { content: '→'; }
.biz-card__link:hover { color: var(--green); border-color: var(--green); }

/* ── Feature Items (dark bg) ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-md);
}
.feature-item {
  padding: 2.2rem 1.6rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(108,174,117,0.2);
  border-top: 3px solid var(--green);
  border-radius: var(--radius);
  text-align: center;
}
.feature-item__icon { font-size: 2.4rem; margin-bottom: 1rem; }
.feature-item__title { font-size: 1rem; font-weight: 700; color: var(--green-light); margin-bottom: 0.5rem; line-height: 1.4; }
.feature-item__desc { font-size: 0.83rem; color: rgba(255,255,255,0.58); line-height: 1.85; }

/* ── Section Header (center) ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto var(--space-md); }
.section-header .section-title { margin-bottom: 0.6rem; }
.section-header .section-lede { max-width: none; margin: 0; }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .business-grid { grid-template-columns: 1fr 1fr; }
  .hotoke-highlight { grid-template-columns: 1fr; }
  .hotoke-highlight__visual { height: 160px; order: -1; }
}
@media (max-width: 768px) {
  :root { --space-xl: 3.5rem; }
  .site-header { padding: 0 1.25rem; }
  .site-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--green-dark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.25s ease;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { display: block; padding: 0.9rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 12px; }
  .nav-cta { margin: 0.8rem 1.5rem 0 !important; text-align: center; padding: 0.75rem 1rem !important; }
  .menu-toggle { display: flex; }
  .hero__inner { padding: calc(var(--header-h) + 2rem) 0 3rem; }
  .business-grid   { grid-template-columns: 1fr; }
  .biz-card-grid   { grid-template-columns: 1fr; }
  .services-grid   { grid-template-columns: 1fr; }
  .features-grid   { grid-template-columns: 1fr; }
  .fact-grid       { grid-template-columns: 1fr 1fr; }
  .feature-row     { grid-template-columns: 1fr; gap: 1.5rem; }
  .feature-row--reverse .feature-row__visual { order: 0; }
  .about-brief     { grid-template-columns: 1fr; gap: 2rem; }
  .profile-grid    { grid-template-columns: 1fr; }
  .profile-photo   { position: static; height: auto; aspect-ratio: 4 / 5; max-width: 300px; margin-left: auto; margin-right: auto; }
  .profile-photo img { min-height: 0 !important; }
  .strengths-list  { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom   { flex-direction: column; gap: 0.5rem; text-align: center; }
  .vision-box      { padding: 2rem; }
  .hotoke-highlight { padding: 2rem; grid-template-columns: 1fr; }
  .menu-grid       { grid-template-columns: 1fr; }
  .hero-inner      { grid-template-columns: 1fr; gap: 2rem; padding: calc(var(--header-h) + 2rem) 0 2.5rem; }
  .hero-img-wrap   { height: 240px; }
}
@media (min-width: 769px) and (max-width: 900px) {
  .biz-card-grid  { grid-template-columns: 1fr 1fr; }
  .features-grid  { grid-template-columns: 1fr 1fr; }
  .hero-inner     { grid-template-columns: 1fr; }
  .hero-img-wrap  { height: 280px; }
}

/* ══════════════════════════════════════════════
   お知らせ 個別記事（single.php）
   本文は the_content() が素のHTML（p / h2 / ul …）を出すため、
   ここで幅・余白・タイポグラフィを与えないと読めない見た目になる。
   ══════════════════════════════════════════════ */

/* 個別記事のヒーローはFV画像を使わない（アイキャッチで代替）ので、
   画像前提の高さを詰めて締める。 */
.page-hero--article { padding-bottom: 2.6rem; }
.page-hero--article h1 { font-size: clamp(1.4rem, 2.6vw, 2.1rem); line-height: 1.5; }

/* 読みやすい行長に制限する。日本語は1行 35〜45字が上限の目安。
   720px / 16px ≒ 45字。これ以上広げないこと。 */
.news-article,
.news-nav,
.news-article + .news-nav + .info-more {
  max-width: 680px;   /* 本文 0.95rem(15.2px) で 1行 約44字。45字を超えると読みにくい */
  margin-left: auto;
  margin-right: auto;
}

/* アイキャッチ */
.news-article__thumb {
  margin: 0 0 2.6rem;
  border-radius: 2px;
  overflow: hidden;
}
.news-article__thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.news-article__thumb figcaption {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.6rem;
  text-align: center;
}

/* 本文 */
.news-article__body { font-size: 0.95rem; line-height: 2; color: var(--dark); }
.news-article__body > *:first-child { margin-top: 0; }
.news-article__body > *:last-child { margin-bottom: 0; }

.news-article__body p { margin: 0 0 1.7em; }

.news-article__body h2 {
  font-family: var(--font-jp-bold, inherit);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.5;
  margin: 2.8em 0 1.1em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--base-dark);
}
.news-article__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.6;
  margin: 2.2em 0 0.9em;
}

.news-article__body ul,
.news-article__body ol { margin: 0 0 1.7em; padding-left: 1.5em; }
.news-article__body ul { list-style: disc; }
.news-article__body ol { list-style: decimal; }
.news-article__body li { margin-bottom: 0.7em; }
.news-article__body li::marker { color: var(--green); }

.news-article__body strong { font-weight: 700; color: var(--green-dark); }
.news-article__body em { font-style: italic; }

.news-article__body a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }
.news-article__body a:hover { color: var(--green-mid); }

.news-article__body img { max-width: 100%; height: auto; border-radius: 2px; margin: 2em 0; }
.news-article__body figure { margin: 2em 0; }
.news-article__body figcaption { font-size: 0.78rem; color: var(--muted); margin-top: 0.5rem; text-align: center; }

.news-article__body blockquote {
  margin: 2em 0;
  padding: 0.2em 0 0.2em 1.2em;
  border-left: 3px solid var(--green-light);
  color: var(--muted);
}

.news-article__body hr { border: 0; border-top: 1px solid var(--base-dark); margin: 2.6em 0; }

.news-article__body table { width: 100%; border-collapse: collapse; margin: 2em 0; font-size: 0.88rem; }
.news-article__body th,
.news-article__body td { border: 1px solid var(--base-dark); padding: 0.6em 0.8em; text-align: left; }
.news-article__body th { background: var(--base); font-weight: 700; }

/* 前後記事ナビ */
.news-nav {
  margin-top: var(--space-md);
  padding-top: 1.6rem;
  border-top: 1px solid var(--base-dark);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.news-nav span { max-width: 46%; }
.news-nav a { color: var(--muted); line-height: 1.7; display: inline-block; }
.news-nav a:hover { color: var(--green-dark); }

@media (max-width: 600px) {
  .news-nav { flex-direction: column; }
  .news-nav span { max-width: 100%; }
  .news-article__body { font-size: 0.92rem; line-height: 1.95; }
}

/* ══════════════════════════════════════════════
   お知らせ一覧（TOPの最新4件 / /news/ の一覧 で共用）
   以前は front.css と editorial.css に同じ内容が二重定義されていた。
   サムネイル追加時に片方だけ直す事故を防ぐため style.css に集約した。
   ══════════════════════════════════════════════ */
.info-section { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.info-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-bottom: 1.4rem; }
.info-head__title { font-family: var(--font-jp-bold); font-weight: 900; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--green-dark); margin-top: .35rem; line-height: 1.2; }
.info-more-link { font-family: var(--font-grotesk); font-weight: 700; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--green-dark); border-bottom: 1px solid var(--green-light); padding-bottom: 2px; white-space: nowrap; flex-shrink: 0; }
.info-more-link:hover { color: var(--green-mid); }
.info-more { text-align: center; margin-top: 1.6rem; }

.info-list { list-style: none; border-top: 1px solid var(--base-dark); margin: 0; padding: 0; }

/* サムネイルを入れたので align-items は baseline ではなく center */
.info-item a {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.85rem 0.3rem;
  border-bottom: 1px solid var(--base-dark);
  transition: background .15s;
}
.info-item a:hover { background: var(--green-pale); }

/* サムネイル（小）。アイキャッチ未設定の記事はロゴを敷く。 */
.info-item__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 54px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--base);
}
.info-item__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.info-item__thumb--logo {
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ロゴは濃色の版なので、白抜きにして緑地に載せる（ヘッダー/フッターと同じ手法） */
.info-item__thumb--logo img {
  width: 74%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.info-item__date { font-family: var(--font-grotesk); font-weight: 700; font-size: 0.8rem; letter-spacing: .03em; color: var(--muted); flex-shrink: 0; width: 88px; }
.info-item__cat { font-family: var(--font-grotesk); font-weight: 700; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--green-mid); border: 1px solid var(--green-light); border-radius: 2px; padding: 2px 8px; flex-shrink: 0; align-self: center; }
.info-item__title { font-size: 0.9rem; font-weight: 500; color: var(--dark); line-height: 1.55; }
.info-item a:hover .info-item__title { color: var(--green-dark); }

@media (max-width: 768px) {
  /* スマホではサムネを左に固定し、右側のテキストだけ折り返す */
  .info-item a { flex-wrap: wrap; gap: .4rem .7rem; padding: 0.8rem 0.2rem; }
  .info-item__thumb { width: 60px; height: 45px; }
  .info-item__title { width: 100%; font-size: 0.86rem; }
}
