/*
Theme Name: 紅葉園 (Momijien)
Theme URI:
Author: AICT
Author URI:
Description: 千葉市の造園・庭木管理専門店「紅葉園」のオリジナルWordPressテーマ。カスタマイザーからテキスト・画像・電話番号などを簡単に変更できます。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
Text Domain: momijien
*/

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #2c2c2c;
  background: #fafaf6;
  line-height: 1.8;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ========== CSS VARIABLES ========== */
:root {
  --green-dark:   #1e4d1a;
  --green:        #2d6b26;
  --green-mid:    #3d8a34;
  --green-light:  #e8f3e4;
  --green-pale:   #f2f8f0;
  --brown:        #7a4f2d;
  --gold:         #c8993c;
  --gold-light:   #f5ead4;
  --text:         #2c2c2c;
  --text-mid:     #555;
  --text-light:   #888;
  --white:        #ffffff;
  --bg-warm:      #fafaf6;
  --border:       #d8e8d0;
  --shadow:       0 4px 24px rgba(45,107,38,.12);
  --shadow-lg:    0 8px 40px rgba(45,107,38,.18);
}

/* ========== UTILITY ========== */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-alt { background: var(--green-pale); }
.section-dark { background: var(--green-dark); color: var(--white); }
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}
.section-title span { color: var(--green-mid); }
.section-subtitle {
  font-size: .95rem;
  color: var(--text-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}
.section-lead {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 48px;
}
.divider {
  width: 48px; height: 3px;
  background: var(--green-mid);
  margin: 16px 0 32px;
}
.divider-center { margin: 16px auto 32px; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--green-dark); border-color: var(--white); }
.btn-white:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn-group { display: flex; flex-wrap: wrap; gap: 16px; }

/* ========== FADE IN ANIMATION ========== */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========== HEADER ========== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  transition: all .3s ease;
}
#header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.14); }

/* 上段: ロゴ (左) ＋ 電話・CTA (右) */
.header-top {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex: 0 0 auto; min-width: 0; }
.logo .custom-logo-link { display: flex !important; align-items: center; flex-shrink: 0; }
.logo .custom-logo,
img.custom-logo { height: 44px !important; width: auto !important; max-height: 44px !important; display: block !important; }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: .06em;
}
.logo-sub { font-size: .65rem; color: var(--text-mid); letter-spacing: .06em; margin-top: 2px; }
.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; margin-left: auto; }
.header-tel { font-size: .82rem; font-weight: 700; color: var(--green-dark); line-height: 1.4; white-space: nowrap; }
.header-tel span { font-size: 1.05rem; display: block; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; flex-shrink: 0; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green-dark); border-radius: 2px; transition: all .3s; }

/* 下段: ナビゲーションメニュー */
nav.site-nav {
  border-top: 1px solid var(--border);
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 46px;
}
nav.site-nav > a {
  padding: 0 20px;
  font-size: .85rem;
  color: var(--text-mid);
  font-weight: 500;
  display: flex;
  align-items: center;
  position: relative;
  transition: color .2s;
  white-space: nowrap;
}
nav.site-nav > a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--green); transition: all .25s;
}
nav.site-nav > a:hover { color: var(--green); }
nav.site-nav > a:hover::after { left: 0; right: 0; }
/* WordPress nav menu（トップレベルのみ横並び。sub-menu は別途ドロップダウンとして定義） */
nav.site-nav > ul { list-style: none; display: flex; align-items: stretch; gap: 0; margin: 0; padding: 0; width: 100%; }
nav.site-nav > ul > li { margin: 0; padding: 0; display: flex; align-items: stretch; flex: 1; position: relative; }
nav.site-nav > ul > li + li { border-left: 1px solid var(--border); }
nav.site-nav > ul > li > a {
  padding: 0 8px;
  font-size: .85rem;
  color: var(--text-mid);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  position: relative;
  transition: color .2s;
  white-space: nowrap;
}
nav.site-nav > ul > li > a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--green); transition: all .25s;
}
nav.site-nav > ul > li > a:hover { color: var(--green); }
nav.site-nav > ul > li > a:hover::after { left: 0; right: 0; }

/* 子メニューを持つ項目：▾ を付与 */
nav.site-nav > ul > li.menu-item-has-children > a::before {
  content: '';
  order: 1;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .55;
  transition: transform .2s ease;
}
nav.site-nav > ul > li.menu-item-has-children:hover > a::before,
nav.site-nav > ul > li.menu-item-has-children:focus-within > a::before {
  transform: rotate(180deg);
}

/* ドロップダウン（sub-menu） */
nav.site-nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-top: 2px solid var(--green);
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 20;
}
nav.site-nav > ul > li.menu-item-has-children:hover > .sub-menu,
nav.site-nav > ul > li.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
nav.site-nav .sub-menu li {
  display: block;
  flex: none;
  width: 100%;
  border-left: none !important;
}
nav.site-nav .sub-menu li a {
  display: block;
  width: 100%;
  padding: 10px 20px;
  font-size: .84rem;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
  transition: background .2s, color .2s;
}
nav.site-nav .sub-menu li a:hover { background: var(--green-pale); color: var(--green); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 999;
  padding: 16px 0;
}
.mobile-nav.open { display: block; }
.mobile-nav a, .mobile-nav ul li a {
  display: block;
  padding: 14px 24px;
  font-size: .95rem;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.mobile-nav a:hover, .mobile-nav ul li a:hover { background: var(--green-pale); color: var(--green); }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav ul li { margin: 0; padding: 0; }
.mobile-nav .sub-menu { padding: 0; }
.mobile-nav .sub-menu a {
  padding-left: 40px;
  font-size: .88rem;
  color: var(--text-mid);
  background: var(--bg-warm);
}
.mobile-nav .sub-menu a::before {
  content: '－';
  margin-right: 6px;
  color: var(--green-mid);
}

/* ========== HERO ========== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(20,50,16,.72) 0%, rgba(30,77,26,.55) 40%, rgba(60,100,50,.3) 100%),
    radial-gradient(ellipse at 70% 60%, rgba(100,160,80,.25) 0%, transparent 60%);
  background-color: #1e3d18;
  background-size: cover;
  background-position: center;
}
.hero-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-deco::before {
  content: '';
  position: absolute;
  right: -80px; bottom: -60px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80,160,60,.18) 0%, transparent 70%);
}
.hero-deco::after {
  content: '';
  position: absolute;
  left: 10%; top: 15%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,153,60,.08) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 720px;
  padding-top: 110px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 24px;
  font-size: .8rem;
  letter-spacing: .1em;
  margin-bottom: 28px;
  animation: fadeDown .8s ease both;
}
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
  animation: fadeDown .8s .15s ease both;
}
.hero-title em { color: var(--gold); font-style: normal; }
.hero-lead {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  line-height: 1.9;
  color: rgba(255,255,255,.9);
  margin-bottom: 12px;
  animation: fadeDown .8s .3s ease both;
}
.hero-note {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 40px;
  animation: fadeDown .8s .4s ease both;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; animation: fadeDown .8s .5s ease both; }
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .7rem; letter-spacing: .1em;
}
.hero-scroll-bar { width: 1px; height: 40px; background: rgba(255,255,255,.4); position: relative; overflow: hidden; }
.hero-scroll-bar::after {
  content: '';
  position: absolute; top: -100%; left: 0; right: 0; height: 100%;
  background: rgba(255,255,255,.8);
  animation: scrollDown 1.6s ease infinite;
}
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollDown { to { top: 200%; } }

/* ========== WORRIES SECTION ========== */
.worries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-bottom: 40px; }
.worry-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all .3s;
}
.worry-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: #2F7D3A; }
.worry-icon {
  width: 48px; height: 48px;
  min-width: 48px; min-height: 48px;
  background: #EDF5EC;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #2F7D3A;
  overflow: hidden;
}
.worry-icon svg { width: 24px; height: 24px; min-width: 24px; min-height: 24px; display: block; flex-shrink: 0; }
.worry-card p { font-size: .93rem; color: var(--text); line-height: 1.6; }
.worries-bottom {
  text-align: center; padding: 28px;
  background: var(--green-light);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--green-dark);
  font-weight: 500;
}

/* ========== REASONS SECTION ========== */
.reasons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.reason-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green-mid);
  transition: all .3s;
}
.reason-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.reason-num { font-family: 'Noto Serif JP', serif; font-size: .78rem; font-weight: 700; color: var(--green-mid); letter-spacing: .12em; margin-bottom: 8px; }
.reason-icon-wrap {
  width: 56px; height: 56px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.reason-card h3 { font-family: 'Noto Serif JP', serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; color: var(--green-dark); line-height: 1.5; }
.reason-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.8; }

/* ========== SERVICES SECTION ========== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(148px, 1fr)); gap: 20px; margin-bottom: 40px; }
.service-card {
  text-align: center; padding: 28px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer; transition: all .3s;
}
.service-card:hover { border-color: #2F7D3A; transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon {
  width: 64px; height: 64px;
  background: #EAF2E7;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: #2F7D3A;
  transition: background .3s;
}
.service-card h3 { font-size: .9rem; font-weight: 700; margin-bottom: 6px; color: var(--green-dark); }
.service-card p { font-size: .78rem; color: var(--text-light); line-height: 1.6; }
.services-cta { text-align: center; }

/* ========== GARDEN APPEAL SECTION ========== */
.garden-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.garden-visual {
  position: relative; border-radius: 12px; overflow: hidden;
  background: linear-gradient(135deg, #2d6b26 0%, #1e4d1a 40%, #3d8a34 100%);
  min-height: 420px; display: flex; align-items: center; justify-content: center;
}
.garden-visual-inner { position: relative; z-index: 2; text-align: center; }
.garden-svg-wrap { opacity: .7; }
.garden-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(200,153,60,.15) 0%, transparent 60%);
}
.garden-quote {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border-left: 3px solid var(--gold);
  padding: 14px 18px; color: var(--white);
  font-size: .9rem; font-family: 'Noto Serif JP', serif;
  border-radius: 0 8px 8px 0;
}
.garden-content h2 { font-family: 'Noto Serif JP', serif; font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 600; line-height: 1.4; margin-bottom: 20px; color: var(--green-dark); }
.garden-content p { font-size: .93rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 16px; }
.garden-voices { margin: 24px 0; }
.garden-voice {
  padding: 10px 16px 10px 28px;
  background: var(--green-light);
  border-radius: 4px;
  font-size: .88rem; color: var(--green-dark);
  margin-bottom: 8px; position: relative;
}
.garden-voice::before { content: '「'; position: absolute; left: 10px; color: var(--green); font-weight: 700; }

/* ========== CASES SECTION ========== */
.cases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-bottom: 40px; }
.case-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: all .3s; }
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case-thumb { height: 200px; overflow: hidden; background: linear-gradient(135deg, #2d6b26 0%, #1e4d1a 100%); }
.case-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.case-card:hover .case-thumb img { transform: scale(1.04); }
.case-thumb-placeholder { height: 100%; display: flex; align-items: center; justify-content: center; opacity: .4; }
.case-before-after { display: grid; grid-template-columns: 1fr 1fr; height: 200px; position: relative; }
.case-before, .case-after { display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; letter-spacing: .1em; position: relative; }
.case-before { background: linear-gradient(135deg, #5a6b48 0%, #3d4d2e 100%); color: rgba(255,255,255,.7); }
.case-after { background: linear-gradient(135deg, #2d6b26 0%, #1e4d1a 100%); color: rgba(255,255,255,.9); }
.case-label { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,.4); color: var(--white); font-size: .65rem; font-weight: 700; padding: 3px 8px; border-radius: 3px; letter-spacing: .1em; }
.case-arrow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 32px; height: 32px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; box-shadow: 0 2px 8px rgba(0,0,0,.2); color: var(--green); font-size: .9rem; }
.case-body { padding: 20px 24px; }
.case-tag { display: inline-block; padding: 3px 10px; background: var(--green-light); color: var(--green); font-size: .72rem; font-weight: 700; border-radius: 3px; margin-bottom: 10px; letter-spacing: .06em; }
.case-body h3 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; color: var(--green-dark); line-height: 1.5; }
.case-body p { font-size: .84rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 14px; }
.case-link { font-size: .82rem; color: var(--green); font-weight: 700; display: flex; align-items: center; gap: 4px; }
.case-link:hover { color: var(--green-dark); }

/* ========== AREA SECTION ========== */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.area-map {
  background: linear-gradient(135deg, #c8e6c0 0%, #a5d39a 50%, #7dc472 100%);
  border-radius: 12px; min-height: 360px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.area-map-label {
  position: absolute; text-align: center;
  background: var(--white); border-radius: 24px;
  padding: 8px 20px; font-size: .82rem; font-weight: 700; color: var(--green-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,.12); cursor: default;
}
.area-map-label.main { background: var(--green); color: var(--white); padding: 12px 24px; font-size: .9rem; }
.area-map-pulse { position: absolute; width: 20px; height: 20px; background: var(--green); border-radius: 50%; }
.area-map-pulse::before, .area-map-pulse::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--green); animation: pulse 2s ease infinite; }
.area-map-pulse::after { animation-delay: .6s; }
@keyframes pulse { from { opacity: .8; transform: scale(1); } to { opacity: 0; transform: scale(2.2); } }
.area-info h2 { font-family: 'Noto Serif JP', serif; font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 600; color: var(--green-dark); line-height: 1.4; margin-bottom: 16px; }
.area-info p { font-size: .93rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 20px; }
.area-list { list-style: none; margin-bottom: 28px; }
.area-list li { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: .9rem; display: flex; align-items: center; gap: 10px; }
.area-list li::before { content: ''; width: 18px; height: 18px; flex-shrink: 0; background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d6b26' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7z'/><circle cx='12' cy='9' r='2.5'/></svg>"); background-size: contain; background-repeat: no-repeat; background-position: center; }
.area-note { background: var(--gold-light); border-left: 3px solid var(--gold); padding: 12px 16px; font-size: .82rem; color: var(--brown); border-radius: 0 6px 6px 0; }

/* ========== FLOW SECTION ========== */
.flow-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0; position: relative; margin-bottom: 40px; }
.flow-list::before { content: ''; position: absolute; top: 39px; left: calc(100% / 12); right: calc(100% / 12); height: 2px; background: #c8dfc0; }
.flow-item { text-align: center; padding: 0 12px 24px; position: relative; }
.flow-step {
  width: 78px; height: 78px;
  background: var(--white); border: 2px solid #2F6F2F;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; color: #2F6F2F;
  margin: 0 auto 16px; position: relative; z-index: 2; transition: all .3s;
}
.flow-item:hover .flow-step { background: #f4faf2; border-color: var(--green-dark); box-shadow: 0 4px 16px rgba(47,111,47,.15); }
.flow-step-num { font-size: .55rem; font-weight: 700; color: #2F6F2F; letter-spacing: .12em; line-height: 1; transition: color .3s; }
.flow-step-icon { display: flex; align-items: center; justify-content: center; }
.flow-item h3 { font-size: .9rem; font-weight: 700; margin-bottom: 6px; color: var(--green-dark); }
.flow-item p { font-size: .78rem; color: var(--text-mid); line-height: 1.6; }

/* ========== COMPANY SECTION ========== */
.company-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
.company-visual {
  background: linear-gradient(160deg, #2d6b26 0%, #1e4d1a 60%, #0f2d0c 100%);
  border-radius: 12px; min-height: 400px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.company-visual::before { content: '紅葉園'; font-family: 'Noto Serif JP', serif; font-size: 5rem; color: rgba(255,255,255,.08); position: absolute; bottom: -20px; right: -10px; letter-spacing: .2em; }
.company-badge-wrap { position: relative; z-index: 2; text-align: center; padding: 32px; }
.company-badge-main { font-family: 'Noto Serif JP', serif; font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.company-badge-sub { font-size: .8rem; color: rgba(255,255,255,.6); letter-spacing: .12em; }
.company-stripe { width: 48px; height: 3px; background: var(--gold); margin: 16px auto; }
.company-visual-sub { margin-top: 20px; color: rgba(255,255,255,.6); font-size: .8rem; line-height: 1.8; }
.company-content h2 { font-family: 'Noto Serif JP', serif; font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 600; color: var(--green-dark); line-height: 1.4; margin-bottom: 20px; }
.company-content p { font-size: .93rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 16px; }
.company-features { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.company-feature { display: flex; align-items: center; gap: 8px; padding: 8px 16px; background: var(--green-light); border-radius: 24px; font-size: .82rem; font-weight: 600; color: var(--green-dark); }
.company-feature::before { content: '✓'; color: var(--green-mid); font-weight: 700; }

/* ========== BLOG SECTION ========== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 36px; }
.blog-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); transition: all .3s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-thumb { height: 160px; background: linear-gradient(135deg, #3d8a34 0%, #2d6b26 100%); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-cat { display: inline-block; padding: 3px 10px; background: var(--green-light); color: var(--green); font-size: .72rem; font-weight: 700; border-radius: 3px; margin-bottom: 10px; }
.blog-body h3 { font-size: .93rem; font-weight: 700; color: var(--text); line-height: 1.5; margin-bottom: 8px; }
.blog-body p { font-size: .82rem; color: var(--text-mid); line-height: 1.7; flex: 1; }
.blog-meta { margin-top: 14px; font-size: .75rem; color: var(--text-light); }

/* ========== FINAL CTA SECTION ========== */
#final-cta {
  position: relative;
  background:
    linear-gradient(135deg, rgba(20,50,16,.9) 0%, rgba(30,77,26,.85) 100%),
    radial-gradient(ellipse at 80% 50%, rgba(200,153,60,.12) 0%, transparent 60%);
  background-color: #1e4d1a;
  color: var(--white); text-align: center; padding: 100px 0;
  overflow: hidden;
}
/* 「紅葉園」装飾テキスト */
#final-cta::before {
  content: '紅葉園';
  font-family: 'Noto Serif JP', serif;
  font-size: 10rem;
  color: rgba(255,255,255,.03);
  position: absolute;
  bottom: -40px; right: -20px;
  pointer-events: none;
  letter-spacing: .1em;
  line-height: 1;
}
#final-cta h2 { font-family: 'Noto Serif JP', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; margin-bottom: 20px; line-height: 1.4; }
#final-cta p { font-size: 1rem; color: rgba(255,255,255,.8); margin-bottom: 8px; line-height: 1.8; }
#final-cta .cta-tel { font-family: 'Noto Serif JP', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--gold); margin: 20px 0 8px; }
#final-cta .cta-tel-note { font-size: .78rem; color: rgba(255,255,255,.5); margin-bottom: 32px; }
#final-cta .btn-group { justify-content: center; }
.worries-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 8px; margin: 24px 0 36px; }
.worry-item { font-size: .9rem; color: rgba(255,255,255,.75); padding: 8px 0 8px 20px; position: relative; }
.worry-item::before { content: '・'; position: absolute; left: 0; color: var(--gold); }
.cta-form-wrap { max-width: 640px; margin: 0 auto 32px; text-align: left; }

/* ========== FOOTER ========== */
footer { position: relative; overflow: hidden; background: #0f1f0d; color: rgba(255,255,255,.6); padding: 60px 0 24px; }
footer .container { position: relative; z-index: 1; }
.footer-leaf { position: absolute; width: 540px; height: 590px; color: var(--gold); opacity: .08; pointer-events: none; z-index: 0; }
.footer-leaf--tr { top: -80px; right: -60px; transform: rotate(18deg); }
.footer-leaf--bl { bottom: -100px; left: -80px; transform: rotate(-160deg) scaleX(-1); }
@media (max-width: 720px) {
  .footer-leaf { width: 340px; height: 370px; }
  .footer-leaf--tr { top: -30px; right: -70px; }
  .footer-leaf--bl { bottom: -50px; left: -90px; }
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo-text { font-family: 'Noto Serif JP', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.footer-logo-sub { font-size: .72rem; color: rgba(255,255,255,.4); letter-spacing: .1em; margin-bottom: 16px; }
.footer-about { font-size: .82rem; line-height: 1.8; }
.footer-col h4 { font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.8); letter-spacing: .1em; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: .82rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul a:hover { color: var(--green-light); }
.footer-tel { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.footer-tel-note { font-size: .72rem; }
.footer-address { font-size: .82rem; line-height: 1.9; margin-top: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; justify-content: center; align-items: center; }
.footer-copyright { font-size: .75rem; }

/* ========== FIXED BOTTOM BAR (SP) ========== */
#sp-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; background: var(--white); box-shadow: 0 -3px 16px rgba(0,0,0,.12); padding: 8px 12px; padding-bottom: calc(8px + env(safe-area-inset-bottom)); }
#sp-bar .sp-btns { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 8px; }
.sp-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 10px 4px; border-radius: 8px; font-size: .68rem; font-weight: 700; cursor: pointer; border: none; transition: all .2s; }
.sp-btn span { font-size: 1.2rem; }
.sp-btn-tel { background: var(--white); color: var(--green); border: 2px solid var(--green); }
.sp-btn-cta { background: var(--green); color: var(--white); }
.sp-btn-contact { background: var(--white); color: var(--text-mid); border: 2px solid var(--border); }

/* ========== WordPress管理バー対応 ========== */
/* 管理バー表示時(PC: 32px / SP: 46px) にヘッダーをその分下げる */
@media screen and (min-width: 601px) {
  .admin-bar #header       { top: 32px; }
  .admin-bar .mobile-nav   { top: calc(60px + 32px); }
}
@media screen and (max-width: 600px) {
  .admin-bar #header       { top: 46px; }
  .admin-bar .mobile-nav   { top: calc(60px + 46px); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .garden-grid, .area-grid, .company-grid { grid-template-columns: 1fr; }
  .garden-visual, .area-map, .company-visual { min-height: 300px; }
  .flow-list::before { display: none; }
  .flow-list { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  nav.site-nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding-top: 74px; }
  #sp-bar { display: block; }
  body { padding-bottom: 72px; }
  .flow-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .header-cta .btn { display: none; }
  .header-tel { display: none; }
}
