/* ==========================================
   日向遺品整理サービス - メインスタイルシート
   ========================================== */

/* ---------- Reset & Variables ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:      #4a6430;
  --primary-dark: #2c3d1b;
  --secondary:    #6a9e35;
  --accent:       #e8985a;
  --accent-dark:  #c97a3a;
  --bg-light:     #f6f7f5;
  --bg-cream:     #fdf9f4;
  --text:         #2a2a2a;
  --text-mid:     #555;
  --text-light:   #888;
  --border:       #e0e4db;
  --white:        #fff;
  --shadow-sm:    0 2px 12px rgba(0,0,0,.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,.1);
  --shadow-lg:    0 16px 56px rgba(0,0,0,.13);
  --radius:       12px;
  --radius-lg:    20px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  line-height: 1.8;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---------- Container ---------- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ==========================================
   HEADER
   ========================================== */
#header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}
#header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.12); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; padding: 0 28px; max-width: 1240px; margin: 0 auto;
}

.logo { display: flex; align-items: center; overflow: hidden; height: 80px; }
.logo-img {
  height: 114px; width: auto; display: block;
  mix-blend-mode: multiply;
  flex-shrink: 0;
}

/* Desktop nav */
.desktop-nav { display: flex; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list > li > a {
  font-size: .82rem; font-weight: 500; padding: 6px 11px;
  border-radius: 6px; color: var(--text-mid);
  transition: color .2s, background .2s;
}
.nav-list > li > a:hover,
.nav-list > li > a.active { color: var(--primary); background: var(--bg-light); }
.nav-list .nav-cta > a {
  background: var(--primary); color: var(--white) !important;
  padding: 8px 18px !important; border-radius: 7px; font-weight: 600;
}
.nav-list .nav-cta > a:hover { background: var(--primary-dark) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.hamburger span {
  display: block; width: 23px; height: 2px; background: var(--text);
  border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none; position: fixed; top: 80px; left: 0; width: 100%;
  background: var(--white); box-shadow: var(--shadow-md); z-index: 990;
}
.nav-mobile.open { display: block; }
.nav-mobile ul li a {
  display: block; padding: 15px 28px; font-size: .95rem; font-weight: 500;
  border-bottom: 1px solid var(--border); transition: background .2s;
}
.nav-mobile ul li a:hover { background: var(--bg-light); color: var(--primary); }

/* ==========================================
   HERO
   ========================================== */
#hero {
  padding-top: 80px; min-height: 100svh;
  display: flex; align-items: center;
  background: linear-gradient(155deg, #1a2010 0%, #2c3d1b 50%, #3d5424 100%);
  position: relative; overflow: hidden;
}
#hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; width: 100%;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-circle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.hero-circle:nth-child(1) { width: 600px; height: 600px; right: -100px; top: -100px; }
.hero-circle:nth-child(2) { width: 400px; height: 400px; left: -60px; bottom: -60px; }
.hero-circle:nth-child(3) { width: 200px; height: 200px; right: 30%; top: 20%; background: rgba(232,152,90,.08); }

.hero-content {
  position: relative; z-index: 1;
  text-align: center; color: var(--white);
  padding: 80px 20px 120px; width: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(232,152,90,.18); border: 1px solid rgba(232,152,90,.4);
  color: var(--accent); font-size: .75rem; letter-spacing: .18em;
  font-weight: 600; padding: 6px 22px; border-radius: 100px; margin-bottom: 28px;
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.7rem, 5vw, 3rem);
  font-weight: 700; line-height: 1.55;
  margin-bottom: 22px; text-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.hero-title em {
  font-style: normal; color: var(--accent);
  border-bottom: 2px solid rgba(232,152,90,.5); padding-bottom: 2px;
}

.hero-sub {
  font-size: clamp(.88rem, 2.2vw, 1.05rem);
  opacity: .85; max-width: 580px; margin: 0 auto 44px;
  line-height: 2;
}

.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 32px; border-radius: 8px; font-weight: 600;
  font-size: .93rem; cursor: pointer; border: 2px solid transparent;
  transition: all .25s; font-family: inherit;
}
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,152,90,.4); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); transform: translateY(-2px); }
.btn-blue { background: var(--primary); color: var(--white); }
.btn-blue:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,100,48,.35); }
.btn-lg { padding: 16px 44px; font-size: 1rem; border-radius: 9px; }

.hero-stats {
  display: flex; gap: 0; justify-content: center;
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.15);
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center; padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  display: block; font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 700; color: var(--accent);
}
.hero-stat small { font-size: .72rem; opacity: .7; display: block; margin-top: 2px; }

/* ==========================================
   SECTION BASE
   ========================================== */
section { padding: 88px 0; }

.section-label {
  display: block; text-align: center;
  font-size: .7rem; letter-spacing: .2em; font-weight: 700;
  color: var(--secondary); margin-bottom: 10px;
}
.section-title {
  text-align: center; margin-bottom: 12px;
}
.section-title h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.45rem, 3.5vw, 2.1rem);
  color: var(--primary-dark); font-weight: 700; line-height: 1.45;
}
.section-title p {
  color: var(--text-light); font-size: .86rem; margin-top: 10px; line-height: 1.8;
}
.title-deco {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 14px auto 44px;
}
.title-deco::before, .title-deco::after {
  content: ''; display: block; width: 48px; height: 1px; background: var(--border);
}
.title-deco i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--secondary); display: block;
}

/* ==========================================
   REASONS (選ばれる理由)
   ========================================== */
#reasons { background: var(--bg-cream); }

.reasons-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 48px; max-width: 860px; margin-left: auto; margin-right: auto;
}
.reason-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.reason-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.reason-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.reason-icon { font-size: 2.8rem; margin-bottom: 14px; }
.reason-num {
  display: block; font-size: .65rem; letter-spacing: .14em;
  color: var(--secondary); font-weight: 700; margin-bottom: 8px;
}
.reason-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem; color: var(--primary-dark); margin-bottom: 12px; line-height: 1.5;
}
.reason-card p { font-size: .83rem; color: var(--text-light); line-height: 1.85; }

/* ==========================================
   SERVICES GRID
   ========================================== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px; margin-top: 48px;
}
.service-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 28px 18px; text-align: center;
  transition: all .3s; cursor: pointer;
}
.service-card:hover {
  border-color: var(--primary); box-shadow: 0 8px 28px rgba(74,100,48,.15);
  transform: translateY(-4px);
}
.service-card .icon { font-size: 2.4rem; margin-bottom: 12px; }
.service-card h3 {
  font-size: .9rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px;
}
.service-card p { font-size: .76rem; color: var(--text-light); line-height: 1.75; }

/* ==========================================
   WASTE HIGHLIGHT BOX
   ========================================== */
.waste-highlight {
  background: linear-gradient(135deg, #f5f7f2, #f0f4ea);
  border: 1px solid rgba(74,100,48,.15);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px; margin: 56px 0;
}
.waste-highlight h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem; color: var(--primary-dark); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.waste-compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px;
}
.waste-col {
  border-radius: var(--radius); padding: 20px;
}
.waste-col.free {
  background: rgba(74,100,48,.08); border: 1px solid rgba(74,100,48,.18);
}
.waste-col.paid {
  background: rgba(80,60,40,.06); border: 1px solid rgba(80,60,40,.12);
}
.waste-col h4 {
  font-size: .87rem; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 6px;
}
.waste-col.free h4 { color: var(--secondary); }
.waste-col.paid h4 { color: var(--primary); }
.waste-col ul li {
  font-size: .81rem; color: var(--text-mid); padding: 6px 0;
  border-bottom: 1px dashed rgba(0,0,0,.07);
}
.waste-col ul li:last-child { border-bottom: none; }

/* ==========================================
   PRICE OVERVIEW (index dark section)
   ========================================== */
#price-overview {
  background: var(--primary-dark); color: var(--white);
}
#price-overview .section-title h2 { color: var(--white); }
#price-overview .section-title p { color: rgba(255,255,255,.65); }
#price-overview .title-deco::before,
#price-overview .title-deco::after { background: rgba(255,255,255,.2); }

.price-table-wrap { overflow-x: auto; margin-top: 40px; }
.price-table {
  width: 100%; border-collapse: collapse;
  min-width: 520px; border-radius: var(--radius); overflow: hidden;
}
.price-table thead th {
  background: rgba(255,255,255,.12); padding: 14px 20px;
  font-size: .82rem; letter-spacing: .06em; font-weight: 600; text-align: center;
}
.price-table tbody td {
  padding: 13px 20px; text-align: center; font-size: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover td { background: rgba(255,255,255,.04); }
.price-em { color: var(--accent); font-weight: 700; font-size: 1.05rem; }

.price-notes {
  margin-top: 28px; padding: 22px 28px;
  background: rgba(255,255,255,.07); border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}
.price-notes p { font-size: .83rem; opacity: .82; line-height: 1.9; }
.price-notes strong { color: var(--accent); }

/* ==========================================
   FLOW (TOP - simplified)
   ========================================== */
#flow-top { background: var(--bg-light); }

.flow-steps {
  display: flex; flex-direction: column; gap: 0;
  max-width: 760px; margin: 48px auto 0;
}
.flow-step { display: flex; gap: 24px; position: relative; }
.flow-step:not(:last-child)::after {
  content: ''; position: absolute; left: 27px; top: 54px; width: 2px;
  height: calc(100% - 16px);
  background: linear-gradient(to bottom, var(--secondary) 0%, var(--border) 100%);
}
.flow-num {
  flex-shrink: 0; width: 54px; height: 54px; border-radius: 50%;
  background: var(--secondary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif JP', serif; font-size: 1.15rem; font-weight: 700;
  box-shadow: 0 4px 16px rgba(90,158,143,.35); position: relative; z-index: 1;
}
.flow-body { padding-bottom: 36px; padding-top: 10px; }
.flow-body h3 { font-size: .97rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 5px; }
.flow-body p { font-size: .82rem; color: var(--text-light); line-height: 1.8; }

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
  background: linear-gradient(135deg, #2c3d1b 0%, #4a6430 100%);
  padding: 72px 20px; text-align: center; color: var(--white);
}
.cta-banner h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.35rem, 3.5vw, 1.95rem); margin-bottom: 14px; line-height: 1.5;
}
.cta-banner p {
  font-size: .92rem; opacity: .85; max-width: 540px;
  margin: 0 auto 36px; line-height: 1.9;
}
.cta-banner .cta-tel {
  display: block; font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 700;
  color: var(--accent); margin-top: 24px;
}
.cta-banner .cta-tel-note { font-size: .75rem; opacity: .7; margin-top: 4px; display: block; }

/* ==========================================
   FAQ
   ========================================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 22px 0; cursor: pointer; font-weight: 600;
  font-size: .93rem; transition: color .2s; user-select: none;
}
.faq-question:hover { color: var(--primary); }
.faq-q { font-size: .78rem; font-weight: 700; color: var(--white);
  background: var(--primary); width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.faq-arrow {
  margin-left: auto; color: var(--text-light); flex-shrink: 0;
  transition: transform .3s; padding-top: 2px; font-size: .85rem;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none; padding: 0 0 22px 40px;
  font-size: .86rem; color: var(--text-mid); line-height: 1.9;
}
.faq-a { font-size: .78rem; font-weight: 700; color: var(--white);
  background: var(--secondary); width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-right: 10px; margin-top: 1px; vertical-align: middle;
}
.faq-answer-inner { display: flex; align-items: flex-start; gap: 0; }

/* ==========================================
   CONTACT FORM
   ========================================== */
.contact-wrap {
  max-width: 740px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 52px 52px;
}
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 7px; }
.req {
  display: inline-block; background: #d94f40; color: #fff;
  font-size: .6rem; padding: 2px 6px; border-radius: 3px; margin-left: 6px;
  vertical-align: middle;
}
.opt {
  display: inline-block; background: var(--border); color: var(--text-light);
  font-size: .6rem; padding: 2px 6px; border-radius: 3px; margin-left: 6px;
  vertical-align: middle;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 15px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: .9rem; font-family: inherit; color: var(--text);
  background: var(--white); transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74,100,48,.13);
}
.form-group textarea { min-height: 150px; resize: vertical; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { text-align: center; margin-top: 32px; }
.form-privacy { text-align: center; margin-top: 14px; font-size: .76rem; color: var(--text-light); }
.form-note {
  background: var(--bg-light); border-radius: 8px; padding: 16px 20px;
  font-size: .8rem; color: var(--text-mid); margin-bottom: 28px; line-height: 1.8;
}

/* ==========================================
   PAGE HERO (inner pages)
   ========================================== */
.page-hero {
  padding-top: 80px;
  background: linear-gradient(145deg, #2c3d1b 0%, #4a6430 70%, #5a7838 100%);
  padding-bottom: 56px; color: var(--white); text-align: center;
}
.page-hero-inner { padding-top: 44px; }
.page-hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 4vw, 2.3rem); font-weight: 700; margin-bottom: 10px;
}
.page-hero p { font-size: .88rem; opacity: .78; }
.breadcrumb {
  display: flex; gap: 8px; justify-content: center;
  font-size: .72rem; opacity: .55; margin-top: 18px;
}
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }

/* ==========================================
   SERVICE PAGE - Detail Cards
   ========================================== */
.service-detail {
  padding: 72px 0;
}
.service-detail:nth-child(odd) { background: var(--bg-cream); }

.service-detail-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.service-detail-inner.rev { direction: rtl; }
.service-detail-inner.rev > * { direction: ltr; }

.service-visual {
  aspect-ratio: 4/3; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  box-shadow: var(--shadow-lg);
}
.sv-1 { background: linear-gradient(135deg, #2c3d1b, #5a7838); }
.sv-2 { background: linear-gradient(135deg, #3a5424, #5a8030); }
.sv-3 { background: linear-gradient(135deg, #5a4a2a, #8b7340); }
.sv-4 { background: linear-gradient(135deg, #3a4830, #607848); }
.sv-5 { background: linear-gradient(135deg, #2a3820, #4a6430); }

.service-label {
  display: block; font-size: .7rem; letter-spacing: .18em;
  color: var(--secondary); font-weight: 700; margin-bottom: 8px;
}
.service-detail-text h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 3vw, 1.85rem); color: var(--primary-dark);
  margin-bottom: 16px; line-height: 1.45;
}
.service-detail-text p {
  font-size: .86rem; color: var(--text-mid); line-height: 1.95; margin-bottom: 14px;
}
.service-includes { display: flex; flex-direction: column; gap: 8px; margin: 18px 0 22px; }
.si-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .84rem; color: var(--text);
}
.si-item::before {
  content: '✓'; color: var(--secondary); font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}

/* ==========================================
   PRICE PAGE
   ========================================== */
.price-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px; margin-top: 40px;
}
.price-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}
.price-card:hover { box-shadow: var(--shadow-md); }
.price-card-head {
  background: var(--primary); color: var(--white);
  padding: 24px; text-align: center;
}
.price-card-head h3 {
  font-family: 'Noto Serif JP', serif; font-size: 1.05rem; margin-bottom: 8px;
}
.price-from { font-size: 2rem; font-weight: 700; }
.price-from small { font-size: .72rem; font-weight: 400; opacity: .78; }
.price-card-body { padding: 24px; background: var(--white); }
.price-card-body ul li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .83rem; padding: 7px 0; color: var(--text-mid);
  border-bottom: 1px solid var(--bg-light);
}
.price-card-body ul li:last-child { border-bottom: none; }
.price-card-body ul li::before {
  content: '◆'; color: var(--secondary); font-size: .45rem; margin-top: 7px; flex-shrink: 0;
}

.price-table-full { width: 100%; border-collapse: collapse; margin-top: 32px; }
.price-table-full th {
  background: var(--primary); color: var(--white);
  padding: 14px 18px; font-size: .83rem; font-weight: 600; text-align: center;
}
.price-table-full td {
  padding: 13px 18px; text-align: center; font-size: .9rem;
  border-bottom: 1px solid var(--border);
}
.price-table-full tbody tr:nth-child(even) td { background: var(--bg-light); }
.price-table-full tbody tr:hover td { background: rgba(74,100,48,.06); }

/* ==========================================
   FLOW PAGE
   ========================================== */
.flow-full-steps { max-width: 780px; margin: 0 auto; }
.flow-full-step {
  display: flex; gap: 28px; position: relative; margin-bottom: 0;
}
.flow-full-step:not(:last-child)::after {
  content: ''; position: absolute; left: 29px; top: 58px;
  width: 2px; height: calc(100% - 20px);
  background: linear-gradient(to bottom, var(--secondary), var(--border));
}
.flow-full-num {
  flex-shrink: 0; width: 58px; height: 58px; border-radius: 50%;
  background: var(--secondary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif JP', serif; font-size: 1.2rem; font-weight: 700;
  box-shadow: 0 4px 20px rgba(90,158,143,.35); position: relative; z-index: 1;
}
.flow-full-body { padding-bottom: 44px; padding-top: 10px; flex: 1; }
.flow-full-body h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem; color: var(--primary-dark); margin-bottom: 8px;
}
.flow-full-body p { font-size: .84rem; color: var(--text-mid); line-height: 1.9; }
.flow-tag {
  display: inline-block; background: rgba(90,158,143,.12);
  color: var(--secondary); font-size: .7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px; margin-bottom: 8px;
  letter-spacing: .06em;
}

/* ==========================================
   HIGHLIGHT / INFO BOX
   ========================================== */
.info-box {
  background: var(--bg-cream); border: 1px solid var(--border);
  border-left: 4px solid var(--secondary);
  border-radius: 8px; padding: 20px 24px; margin: 24px 0;
  font-size: .85rem; line-height: 1.9; color: var(--text-mid);
}
.info-box strong { color: var(--primary-dark); }

.alert-box {
  background: rgba(232,152,90,.09); border: 1px solid rgba(232,152,90,.3);
  border-left: 4px solid var(--accent);
  border-radius: 8px; padding: 20px 24px; margin: 24px 0;
  font-size: .85rem; line-height: 1.9; color: var(--text-mid);
}
.alert-box strong { color: var(--accent-dark); }

/* ==========================================
   FOOTER
   ========================================== */
#footer {
  background: var(--primary-dark); color: rgba(255,255,255,.75);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}

.footer-logo-text { display: flex; flex-direction: column; gap: 5px; margin-bottom: 4px; }
.footer-logo-name {
  font-family: 'Noto Serif JP', serif; font-size: 1.15rem; font-weight: 700;
  color: var(--white); letter-spacing: .04em;
}
.footer-logo-sub { font-size: .75rem; color: rgba(255,255,255,.5); letter-spacing: .06em; }

.footer-desc {
  font-size: .8rem; line-height: 1.9; margin-top: 16px; opacity: .7;
}
.footer-tel { margin-top: 22px; }
.footer-tel a {
  font-family: 'Noto Serif JP', serif; font-size: 1.5rem;
  font-weight: 700; color: var(--accent); display: block;
}
.footer-tel small { font-size: .7rem; opacity: .55; margin-top: 3px; display: block; }
.footer-nav h4 {
  font-size: .68rem; letter-spacing: .16em; color: rgba(255,255,255,.45);
  margin-bottom: 16px; font-weight: 700;
}
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul li a { font-size: .83rem; opacity: .75; transition: opacity .2s; }
.footer-nav ul li a:hover { opacity: 1; color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  text-align: center; font-size: .72rem; opacity: .45;
}

/* ==========================================
   THANKS PAGE
   ========================================== */
.thanks-wrap {
  max-width: 600px; margin: 100px auto; text-align: center; padding: 60px 40px;
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.thanks-icon { font-size: 4rem; margin-bottom: 20px; }
.thanks-wrap h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem; color: var(--primary-dark); margin-bottom: 14px;
}
.thanks-wrap p { font-size: .88rem; color: var(--text-mid); line-height: 1.9; }

/* ==========================================
   UTILITY
   ========================================== */
.text-center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 56px; }
.mb-sm { margin-bottom: 16px; }

.tag {
  display: inline-block; padding: 4px 13px; border-radius: 100px;
  font-size: .73rem; font-weight: 600; letter-spacing: .04em;
}
.tag-primary { background: rgba(74,100,48,.1); color: var(--primary); }
.tag-green   { background: rgba(90,158,143,.12); color: var(--secondary); }
.tag-orange  { background: rgba(232,152,90,.14); color: var(--accent-dark); }

/* ==========================================
   ANIMATIONS
   ========================================== */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: .1s; }
.fade-in:nth-child(3) { transition-delay: .2s; }
.fade-in:nth-child(4) { transition-delay: .3s; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-inner.rev { direction: ltr; }
  .waste-compare { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  section { padding: 64px 0; }
  .contact-wrap { padding: 32px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-stats { gap: 0; }
  .hero-stat { padding: 0 20px; }
  .reasons-grid { grid-template-columns: 1fr; max-width: 100%; }
}

@media (max-width: 520px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { width: 50%; border-right: none; padding: 8px 0; }
  .price-cards { grid-template-columns: 1fr; }
}
