/* =============================================
   真心ハウジング – メインCSS
   Clean rewrite 2026
   ============================================= */

/* ── Variables ── */
:root {
  --orange:      #E87F24;
  --orange-dk:   #C96A18;
  --orange-pale: #FFF5EE;
  --cream:       #F2EDE8;
  --white:       #FAF8F5;
  --text:        #1A1A1A;
  --text-sub:    #666666;
  --text-light:  #999999;
  --border:      #E8E3DD;
  --footer-bg:   #2e1f14;
  --shadow-sm:   0 2px 12px rgba(0,0,0,.06);
  --shadow-md:   0 6px 28px rgba(0,0,0,.10);
  --shadow-lg:   0 16px 56px rgba(0,0,0,.13);
  --radius:      12px;
  --radius-lg:   20px;
  --font-body:   'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-mincho: 'Shippori Mincho B1', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --font-latin:  'Cormorant Garamond', Georgia, serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.85;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { opacity: .82; }

/* ── Utilities ── */
.container { max-width: 1060px; margin: 0 auto; padding: 0 32px; }

.section        { padding: 88px 0; }
.section-cream  {
  background-color: var(--cream);
  background-image: var(--wood);
}
.section-white  {
  background-color: var(--white);
  background-image: var(--wood);
}

.sec-head { text-align: center; margin-bottom: 60px; }
.sec-kicker {
  display: inline-block;
  font-family: var(--font-latin);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .25em;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 4px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.sec-title {
  font-family: var(--font-mincho);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.4;
  color: var(--text);
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}
.sec-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.sec-title em { color: var(--orange); font-style: normal; }
.sec-desc {
  font-size: 16px;
  color: var(--text-sub);
  margin-top: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  padding: 17px 34px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(232,98,26,.35);
  transition: transform .2s, box-shadow .2s;
  letter-spacing: .03em;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232,98,26,.45); opacity: 1; }

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #06C755;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 30px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(6,199,85,.3);
  transition: transform .2s;
}
.btn-line:hover { transform: translateY(-2px); opacity: 1; }

.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(232,98,26,.3);
  transition: transform .2s;
}
.btn-orange:hover { transform: translateY(-2px); opacity: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--orange); color: #fff; opacity: 1; }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transition: transform .2s;
}
.btn-white:hover { transform: translateY(-2px); opacity: 1; }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,.7);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  transition: border-color .2s, background .2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.12); opacity: 1; }

.btn-cta-center { text-align: center; margin-top: 48px; }

/* ── トップページ サービスグリッド ── */
.top-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.top-svc-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform .3s ease, box-shadow .3s ease;
}
.top-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(0,0,0,.13);
}
.top-svc-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.top-svc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.top-svc-card:hover .top-svc-img img { transform: scale(1.06); }
.top-svc-body { padding: 18px 20px 22px; }
.top-svc-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.top-svc-title {
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.top-svc-desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 12px;
}
.top-svc-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
}
@media (max-width: 900px) {
  .top-svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .top-svc-grid { grid-template-columns: 1fr; }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1.5px solid var(--orange);
  padding-bottom: 2px;
  transition: gap .2s;
}
.link-arrow:hover { gap: 8px; opacity: 1; }

/* ── Header ── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo img { height: 40px; width: auto; }
.gnav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.gnav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  transition: color .2s;
}
.gnav a:hover, .gnav a.current { color: var(--orange); opacity: 1; }
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header-tel .tel-num {
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: .03em;
}
.header-tel .tel-note {
  font-size: 10px;
  color: var(--text-light);
}
.btn-header-contact {
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  white-space: nowrap;
}
.btn-header-contact:hover { opacity: .85; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ── SP Drawer ── */
.drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--white);
  z-index: 1000;
  padding: 80px 32px 40px;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 32px rgba(0,0,0,.15);
}
.drawer.open { right: 0; }
.drawer nav { display: flex; flex-direction: column; gap: 0; }
.drawer nav a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.drawer nav a.drawer-tel { color: var(--orange); margin-top: 8px; }
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

/* ── Hero (base padding – overridden by index-specific styles below) ── */
.hero-h1 em { color: var(--orange); font-style: normal; }

/* ── Stats Bar ── */
.stats-bar { background: var(--orange); }
.stats-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
}
.stat-num {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { font-size: .55em; font-weight: 700; }
.stat-label { font-size: 11px; color: rgba(255,255,255,.8); font-weight: 500; letter-spacing: .06em; }
.stat-sep { width: 1px; background: rgba(255,255,255,.25); margin: 16px 0; }

/* ── Greeting ── */
.greeting-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.greeting-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.greeting-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
}
.greeting-body { display: flex; flex-direction: column; gap: 18px; }
.greeting-body h2 {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.45;
}
.greeting-body h2 em { color: var(--orange); font-style: normal; }
.greeting-body p { font-size: 14.5px; line-height: 2; color: var(--text-sub); }
.greeting-body strong { color: var(--text); }

/* ── Services ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--orange);
  opacity: 1;
}
.service-icon {
  font-size: 36px;
  width: 64px;
  height: 64px;
  background: var(--orange-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card h3 { font-size: 15px; font-weight: 700; color: var(--text); }
.service-card p  { font-size: 13px; color: var(--orange); font-weight: 700; }
.service-card .service-note { font-size: 12px; color: var(--text-sub); font-weight: 400; }

/* ── Works ── */
.work-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.work-ba {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.work-ba-img { position: relative; overflow: hidden; }
.work-ba-img img { width: 100%; height: 200px; object-fit: cover; }
.ba-label {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: .06em;
}
.ba-label.before { background: #666; color: #fff; }
.ba-label.after  { background: var(--orange); color: #fff; }
.ba-arrow {
  padding: 0 12px;
  font-size: 20px;
  color: var(--orange);
  font-weight: 900;
}
.work-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.work-chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 3px 12px;
  border-radius: 50px;
  width: fit-content;
}
.work-body h3 { font-size: 15px; font-weight: 700; }
.work-body p  { font-size: 15px; color: var(--text-sub); }

/* Swiper */
.swiper-pagination-bullet { background: var(--border); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--orange); }
.swiper-button-prev,
.swiper-button-next { color: var(--orange); }
.works-swiper-wrap { padding-bottom: 48px; }

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .15em;
}
.feature-icon {
  font-size: 30px;
  width: 56px;
  height: 56px;
  background: var(--orange-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card h3 { font-size: 16px; font-weight: 700; color: var(--text); }
.feature-card p  { font-size: 15px; color: var(--text-sub); line-height: 1.9; }

/* ── FAQ ── */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 8px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-q-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-q-text { flex: 1; font-size: 17px; font-weight: 700; color: var(--text); }
.faq-toggle { font-size: 20px; font-weight: 300; color: var(--orange); line-height: 1; transition: transform .3s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 4px 44px 20px;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 16px; line-height: 2; color: var(--text-sub); }
.faq-a-label {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  line-height: 28px;
  margin-right: 10px;
  flex-shrink: 0;
}

/* ── Voice ── */
.voice-swiper { padding-bottom: 36px !important; }
.voice-swiper .swiper-wrapper { align-items: stretch; }
.voice-swiper .swiper-slide { height: auto; }
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.voice-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.voice-stars { color: #FBBC05; font-size: 16px; letter-spacing: 2px; }
.voice-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.voice-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.voice-svg-stars {
  display: flex; gap: 2px; margin-bottom: 3px;
}
.voice-svg-stars svg { width: 16px; height: 16px; }
.voice-text  { font-size: 15px; color: var(--text-sub); line-height: 2; flex: 1; }
.voice-who   { font-size: 12px; font-weight: 700; color: var(--text-light); }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--orange);
  padding: 80px 32px;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 900;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 20px;
}
.cta-banner p {
  font-size: 15px;
  color: rgba(255,255,255,.88);
  line-height: 2;
  margin-bottom: 36px;
}
.cta-btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Price Table ── */
.price-table-wrap { margin-bottom: 40px; }
.price-table-wrap h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 12px;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.price-table thead th {
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 14px 20px;
  text-align: left;
}
.price-table tbody td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.price-table tbody tr:nth-child(even) td { background: var(--cream); }
.price-table tbody tr:last-child td { border-bottom: none; }
td.price { font-weight: 700; color: var(--orange); font-size: 15px; }
.price-note {
  background: var(--orange-pale);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 20px;
  font-size: 13px;
  line-height: 2;
  color: var(--text-sub);
  margin-top: 12px;
}
.price-note strong { color: var(--text); }

/* ── About table ── */
.about-table { width: 100%; border-collapse: collapse; }
.about-table th, .about-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
}
.about-table th { width: 28%; font-weight: 700; color: var(--text-sub); background: var(--cream); }

/* ── Greeting on about page ── */
.greeting-profile {
  text-align: center;
  padding: 24px 20px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.greeting-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}
.profile-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
}
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-name { font-size: 18px; font-weight: 900; text-align: center; }
.profile-role { font-size: 13px; color: var(--text-sub); text-align: center; margin-top: 4px; }

/* ── サービスページ固有スタイル ── */
.service-trouble-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 840px;
  margin: 0 auto;
}
.trouble-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.trouble-icon { font-size: 24px; margin-bottom: 10px; }
.trouble-item p { font-size: 14px; color: var(--text-sub); line-height: 1.9; }

.service-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.service-menu-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-menu-icon { font-size: 32px; margin-bottom: 12px; }
.service-menu-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.service-menu-card p  { font-size: 14px; color: var(--text-sub); line-height: 1.9; }

.service-ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 32px;
}
.service-ba-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.service-ba-imgs {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.service-ba-img {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.service-ba-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.service-ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-size: 20px;
  font-weight: 900;
  color: var(--orange);
  background: var(--cream);
  flex-shrink: 0;
}
.service-ba-info {
  padding: 18px 20px 22px;
}
.service-ba-info h3 { font-size: 15px; font-weight: 700; margin: 8px 0 8px; }
.service-ba-info p  { font-size: 13px; color: var(--text-sub); line-height: 1.85; }

@media (max-width: 768px) {
  .service-trouble-grid { grid-template-columns: repeat(2, 1fr); }
  .service-menu-grid    { grid-template-columns: 1fr 1fr; }
  .service-ba-grid      { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .service-trouble-grid { grid-template-columns: 1fr; }
  .service-menu-grid    { grid-template-columns: 1fr; }
}

/* ── サブページ用クラス名エイリアス（旧名→新名の互換） ── */
.section-head  { text-align: center; margin-bottom: 60px; }
.section-kicker {
  display: inline-block;
  font-family: var(--font-latin);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .25em;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 4px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-mincho);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.4;
  color: var(--text);
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.section-title em { color: var(--orange); font-style: normal; }
.section-desc { font-size: 16px; color: var(--text-sub); margin-top: 20px; }
.section-alt { background-color: var(--cream); background-image: var(--wood); }

/* ── Price table (ryokin.html) ── */
.price-table-wrap { overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); font-size: 15px; text-align: left; }
.price-table th { background: var(--cream); font-weight: 700; font-size: 13px; color: var(--text-sub); }
.price-table td.price { font-weight: 900; color: var(--orange); white-space: nowrap; }
.price-note { font-size: 13px; color: var(--text-sub); line-height: 2; }

/* ── Page Hero (subpages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
  padding: 80px 32px 60px;
  text-align: center;
  margin-top: 68px;
}
.page-hero h1 { font-family: var(--font-mincho); font-size: clamp(28px, 4vw, 46px); font-weight: 800; color: #fff; margin-bottom: 8px; letter-spacing: .06em; }
.page-hero p  { font-size: 14px; color: rgba(255,255,255,.82); }

/* ── Contact form ── */
.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.contact-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.contact-card .icon { font-size: 36px; margin-bottom: 12px; }
.contact-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.contact-card p  { font-size: 14px; color: var(--text-sub); line-height: 1.9; margin-bottom: 16px; }
.tel-big { font-size: 28px; font-weight: 900; color: var(--orange); margin-bottom: 4px; }
.btn-contact-tel {
  display: block;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: 8px;
  text-align: center;
  transition: opacity .2s;
}
.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 { font-size: 20px; font-weight: 700; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.required {
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  padding: 1px 8px;
  border-radius: 4px;
  margin-left: 6px;
  font-weight: 700;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group textarea { height: 140px; resize: vertical; }
.btn-submit {
  display: block;
  width: 100%;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 18px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity .2s;
}
.btn-submit:hover { opacity: .85; }

/* ── Google rating bar ── */
.google-rating-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
}
.google-rating-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.google-rating-logo { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; }
.google-rating-stars { color: #FBBC05; font-size: 20px; letter-spacing: 2px; }
.google-rating-score { font-size: 26px; font-weight: 900; color: var(--text); }
.google-rating-count { font-size: 13px; color: var(--text-sub); }
.google-rating-text  { font-size: 13px; color: var(--text-sub); margin-left: auto; }

/* ── 三方よし ── */
.sanpo-section { background: var(--cream); padding: 88px 0; }
.sanpo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sanpo-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.sanpo-card-center { background: var(--orange); border-color: var(--orange); }
.sanpo-card-center h3,
.sanpo-card-center p { color: #fff; }
.sanpo-icon { font-size: 32px; margin-bottom: 14px; }
.sanpo-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.sanpo-card p  { font-size: 13.5px; color: var(--text-sub); line-height: 1.9; }

/* ── Flow ── */
.flow-wrap { max-width: 680px; margin: 0 auto 48px; display: flex; flex-direction: column; gap: 0; }
.flow-step { display: flex; gap: 20px; }
.flow-line-wrap { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.flow-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  letter-spacing: .04em;
  line-height: 1.2;
  flex-shrink: 0;
}
.flow-dot b { font-size: 18px; font-weight: 900; }
.flow-connector { width: 2px; flex: 1; background: var(--border); min-height: 32px; margin: 4px 0; }
.flow-body { padding: 12px 0 36px; }
.flow-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.flow-body p  { font-size: 13.5px; color: var(--text-sub); line-height: 1.9; }

/* ── Works full (jisseki page) ── */
.works-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px 32px;
  max-width: 1060px;
  margin: 0 auto;
}
.works-filter {
  position: sticky;
  top: 68px;
  background: var(--white);
  z-index: 100;
  padding: 16px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 7px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  background: var(--white);
  color: var(--text-sub);
}
.filter-btn.active, .filter-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ── Work Full Card (jisseki) ── */
.work-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
}
.work-full-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.work-full-imgs {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.work-full-imgs .before-after {
  display: contents;
}
.work-full-imgs .before-after img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.ba-label {
  position: absolute;
  top: 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  padding: 3px 10px;
  border-radius: 4px;
  color: #fff;
  pointer-events: none;
}
.ba-label.before { left: 8px;  background: rgba(0,0,0,.55); }
.ba-label.after  { right: 8px; background: var(--orange); }
.work-full-info  { padding: 16px 18px 20px; }
.work-tags { margin-bottom: 8px; }
.work-tag {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
}
.work-full-info h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.work-full-info p  { font-size: 13px; color: var(--text-sub); line-height: 1.8; }

/* ── Footer ── */
#footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,.65);
  padding: 64px 0 0;
}
.footer-grid {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 32px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo-name { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-info { font-size: 13px; line-height: 2.1; }
.footer-info a { color: #F4884A; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; padding: 5px 0; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col a:hover { color: #fff; opacity: 1; }
.footer-bottom {
  max-width: 1060px;
  margin: 0 auto;
  padding: 20px 32px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
}

/* ── SP Bottom Bar ── */
.sp-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  height: 56px;
  grid-template-columns: repeat(3, 1fr);
}
.sp-tel  { background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; gap: 4px; }
.sp-line { background: #06C755; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; gap: 4px; }
.sp-mail { background: var(--footer-bg); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; gap: 4px; }

/* ── Nav (subpages) ── */
#gnav {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  margin-top: 68px;
}
.gnav-wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.gnav-wrap a {
  display: block;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.gnav-wrap a:hover, .gnav-wrap a.current { color: var(--orange); border-bottom-color: var(--orange); opacity: 1; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive: Tablet 768px ── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }

  /* Header */
  .header-inner { height: 60px; padding: 0 20px; }
  .gnav { display: none; }
  .header-cta .header-tel { display: none; }
  .btn-header-contact { font-size: 12px; padding: 9px 16px; }
  .hamburger { display: flex; }

  /* Hero */
  #hero { margin-top: 56px; }
  .hero-catch { padding: 28px 24px; }
  .hero-catch-title { font-size: clamp(19px, 5.2vw, 28px); }
  .hero-catch-sub { font-size: 13px; line-height: 2; }
  .hero-badges { justify-content: center; }

  /* Stats */
  .stats-inner { flex-wrap: wrap; }
  .stat { flex: 0 0 50%; }
  .stat-sep { display: none; }

  /* Greeting */
  .greeting-wrap { grid-template-columns: 1fr; gap: 32px; }
  .greeting-img img { height: 300px; }
  .greeting-grid { grid-template-columns: 1fr; }
  .greeting-profile { margin-top: 0; }

  /* Services */
  .service-grid { grid-template-columns: repeat(2, 1fr); }

  /* Features */
  .features-grid { grid-template-columns: 1fr 1fr; }

  /* Voice */
  .voice-grid { grid-template-columns: 1fr; }

  /* Works */
  .works-full-grid { grid-template-columns: 1fr 1fr; gap: 16px; padding: 24px 20px; }

  /* Sanpo */
  .sanpo-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-methods { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 0 20px 40px; }
  #footer { padding: 48px 0 0; }
  .footer-bottom { padding: 16px 20px; }

  /* Nav subpages */
  .gnav-wrap { padding: 0 8px; }
  .gnav-wrap a { padding: 12px 10px; font-size: 12px; }

  /* Page hero */
  .page-hero { padding: 64px 20px 48px; }

  /* SP bar */
  .sp-bar { display: grid; }
  body { padding-bottom: 56px; }
}

@media (max-width: 480px) {
  .works-full-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .stat { flex: 0 0 50%; }
}

/* =============================================
   INDEX PAGE – 固有スタイル
   ============================================= */

/* ── Hero ── */
#hero {
  position: relative;
  margin-top: 68px;
  background: #000;
}

.hero-fullimg {
  width: 100%;
  line-height: 0;
}
.hero-fullimg img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-catch {
  background: var(--cream);
  padding: 40px 48px;
  text-align: center;
}
.hero-catch-title {
  font-family: var(--font-mincho);
  font-size: clamp(22px, 3.2vw, 44px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.hero-catch-title em {
  display: block;
  color: var(--orange);
  font-style: normal;
  font-size: 1.1em;
  margin-top: 8px;
}
.hero-catch-sub {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 2;
  margin-bottom: 28px;
}
.hero-cta-bar {
  background: var(--cream);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-badges span {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--orange);
  border: none;
  padding: 6px 16px;
  border-radius: 50px;
}

/* ── Hero Right：フォトデッキ（非使用） ── */
.hero-right {
  position: relative;
  overflow: hidden;
  background: #18090220;
}

.photo-deck {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fde8d4 0%, #f5e0cc 50%, #ede0d5 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 背景装飾大文字 */
.deck-bg-text {
  position: absolute;
  font-family: var(--font-latin);
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 600;
  letter-spacing: .15em;
  color: rgba(232,98,26,.12);
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
}

/* フォトカード共通 */
.photo-card {
  position: absolute;
  background: #fff;
  padding: 7px 7px 26px;
  border-radius: 2px;
  box-shadow: 0 20px 56px rgba(0,0,0,.55), 0 4px 14px rgba(0,0,0,.35);
  transition: transform .35s ease, box-shadow .35s ease, z-index 0s;
  cursor: pointer;
}
.photo-card:hover {
  box-shadow: 0 28px 72px rgba(0,0,0,.65), 0 6px 20px rgba(0,0,0,.4);
}
.card-img-wrap {
  width: 100%;
  padding-top: 75%; /* 4:3 */
  position: relative;
  overflow: hidden;
  background: #111;
}
.card-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.photo-card:hover .card-img-wrap img { transform: scale(1.06); }

/* カード下部ラベル */
.card-label {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: #888;
  letter-spacing: .12em;
  padding: 5px 4px 0;
  white-space: nowrap;
}

/* AFTERバッジ */
.card-after-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-latin);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  padding: 3px 9px;
  border-radius: 50px;
  line-height: 1.4;
}

/* カード個別配置 */
.card-1 {
  width: 62%;
  top: 50%;
  left: 44%;
  transform: translate(-50%, -50%) rotate(-4deg);
  z-index: 3;
}
.card-1:hover { transform: translate(-50%, -50%) rotate(-4deg) scale(1.04); z-index: 10; }

.card-2 {
  width: 54%;
  top: 70%;
  left: 64%;
  transform: translate(-50%, -50%) rotate(6deg);
  z-index: 2;
}
.card-2:hover { transform: translate(-50%, -50%) rotate(6deg) scale(1.05); z-index: 10; }

.card-3 {
  width: 46%;
  top: 22%;
  left: 72%;
  transform: translate(-50%, -50%) rotate(3deg);
  z-index: 1;
}
.card-3:hover { transform: translate(-50%, -50%) rotate(3deg) scale(1.05); z-index: 10; }

/* 職人歴バッジ */
.deck-stats-badge {
  position: absolute;
  bottom: 28px;
  left: 20px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  padding: 12px 18px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(232,98,26,.45);
  z-index: 5;
}
.deck-stat-num {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}
.deck-stat-num span { font-size: 14px; font-weight: 700; }
.deck-stat-txt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  margin-top: 3px;
  opacity: .9;
}

/* ── Trust Bar ── */
.trust-bar { background: #fff; border-top: 3px solid var(--orange); border-bottom: 1px solid var(--border); }
.trust-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 32px 12px;
  text-align: center;
}
.trust-big {
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -.02em;
}
.trust-big small { font-size: .42em; font-weight: 700; color: var(--text-sub); }
.trust-label { font-size: 11px; color: var(--text-sub); margin-top: 4px; letter-spacing: .06em; }
.trust-sep { width: 1px; height: 48px; background: var(--border); align-self: center; }

/* Google レビュー専用 */
.trust-google { gap: 8px; }
.trust-google-top { display: flex; align-items: center; gap: 7px; }
.trust-google-label { font-size: 14px; font-weight: 700; color: var(--text); letter-spacing: .04em; }
.trust-stars { display: flex; align-items: center; gap: 3px; }
.trust-stars svg { width: 26px; height: 26px; }
.trust-score-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  letter-spacing: -.02em;
}
.trust-review-count { font-size: 11px; color: var(--text-sub); letter-spacing: .06em; }

/* ── Message ── */
.message-wrap {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: center;
}
.message-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.message-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.message-body { display: flex; flex-direction: column; gap: 18px; }
.message-title {
  font-family: var(--font-mincho);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1.6;
  color: var(--text);
  letter-spacing: .04em;
}
.message-title em { color: var(--orange); font-style: normal; }
.message-body p { font-size: 17px; line-height: 2; color: var(--text-sub); }
.message-body strong { color: var(--text); font-weight: 700; }

/* ── Features 3 ── */
.features3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.feature3-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .25s, transform .25s;
}
.feature3-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature3-num { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: .2em; }
.feature3-icon { font-size: 36px; }
.feature3-card h3 { font-family: var(--font-mincho); font-size: 19px; font-weight: 800; color: var(--text); line-height: 1.4; letter-spacing: .03em; }
.feature3-card p  { font-size: 15px; color: var(--text-sub); line-height: 2; }

/* ── CTA Banner ── */
.cta-banner { background: var(--orange); padding: 88px 32px; text-align: center; }
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-banner h2 {
  font-family: var(--font-mincho);
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 18px;
  letter-spacing: .05em;
}
.cta-banner p { font-size: 17px; color: rgba(255,255,255,.88); line-height: 2; margin-bottom: 36px; }
.cta-note { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 20px; margin-bottom: 0; }

/* ── 背景パターン（白い板目・木目テクスチャ） ── */

/* 木目パターン変数（縦方向の不規則な細線で白い板目を表現） */
:root {
  --wood: repeating-linear-gradient(
      90deg,
      transparent 0px, transparent 4px,
      rgba(160,120,75,.10) 4px, rgba(160,120,75,.10) 5px,
      transparent 5px, transparent 13px,
      rgba(140,105,65,.07) 13px, rgba(140,105,65,.07) 14px,
      transparent 14px, transparent 25px,
      rgba(170,130,85,.09) 25px, rgba(170,130,85,.09) 26px,
      transparent 26px, transparent 40px,
      rgba(150,115,70,.06) 40px, rgba(150,115,70,.06) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0px, transparent 7px,
      rgba(130,100,60,.05) 7px, rgba(130,100,60,.05) 8px,
      transparent 8px, transparent 19px,
      rgba(165,128,82,.07) 19px, rgba(165,128,82,.07) 20px
    );
}

/* features / voice / message / works：section-cream / section-white で適用済み */

/* ── Google Reviews ── */
.voice-loading {
  text-align: center;
  color: var(--text-sub);
  font-size: 14px;
  padding: 40px;
  grid-column: 1 / -1;
}
.voice-google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-sub);
}

/* ── ペイン共感セクション ── */
.trouble-section {
  background: var(--cream);
  padding: 64px 0 56px;
}
.trouble-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.trouble-item {
  background: #fff;
  border-left: 3px solid var(--orange);
  padding: 14px 18px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  border-radius: 0 4px 4px 0;
}
.trouble-check {
  color: var(--orange);
  font-weight: 700;
  margin-right: 8px;
}
.trouble-answer {
  margin-top: 40px;
  text-align: center;
  background: var(--orange);
  color: #fff;
  border-radius: 6px;
  padding: 24px 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  line-height: 1.9;
}
.trouble-answer strong {
  color: #fff;
  font-size: 17px;
}
@media (max-width: 600px) {
  .trouble-grid { grid-template-columns: 1fr; }
  .trouble-answer { padding: 20px 20px; }
}

/* ── 板目アクセントバー（セクション間の仕切り） ── */
.plank-strip {
  height: 8px;
  background:
    repeating-linear-gradient(
      90deg,
      #c8a882 0px, #c8a882 59px,
      #b0916c 59px, #b0916c 60px,
      #d4b48e 60px, #d4b48e 179px,
      #a8895e 179px, #a8895e 180px,
      #c8a882 180px, #c8a882 299px,
      #b8997a 299px, #b8997a 300px
    );
  opacity: .55;
}

/* ── セクション装飾 ── */
/* trust-bar の下を斜めに */
.trust-bar {
  position: relative;
  padding-bottom: 56px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), 0 100%);
  margin-bottom: -2px;
}

/* messageセクション：左にオレンジ縦ライン */
.message-body::before {
  display: none;
}

/* ── 職人バッジ（リフォーム屋らしさを出す） ── */
.craftsman-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--footer-bg);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 4px;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.craftsman-badge::before {
  content: "🔨";
  font-size: 13px;
}

/* ── feature3-card アイコン枠 ── */
.feature3-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #fde8d4 0%, #f5dcc0 100%);
  border: 1.5px solid rgba(160,120,75,.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.feature3-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--orange);
}

/* ── message-photo に木枠スタイル ── */
.message-photo {
  position: relative;
}
.message-photo::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 3px solid rgba(160,120,75,.18);
  border-radius: calc(var(--radius-lg) + 6px);
  pointer-events: none;
}

/* ── works section ── */
.ba-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 14px;
  color: var(--orange);
  font-weight: 900;
  font-size: 22px;
}
.ba-arrow::before {
  content: "施工";
  font-size: 9px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .05em;
  line-height: 1;
}
.ba-arrow::after {
  content: "後";
  font-size: 9px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .05em;
  line-height: 1;
}

/* featuresセクションの上を斜めに */
#features {
  position: relative;
  clip-path: polygon(0 32px, 100% 0, 100% 100%, 0 100%);
  margin-top: -32px;
  padding-top: 120px;
}

/* worksセクションの上下を斜めに */
#works {
  position: relative;
  clip-path: polygon(0 0, 100% 32px, 100% 100%, 0 calc(100% - 32px));
  margin-top: -2px;
  padding-top: 110px;
  padding-bottom: 110px;
}

/* voiceセクション */
#voice {
  position: relative;
  clip-path: polygon(0 32px, 100% 0, 100% 100%, 0 100%);
  margin-top: -32px;
  padding-top: 120px;
}

/* ── 引用符 ── */
.voice-quote {
  display: block;
  font-size: 72px;
  line-height: .7;
  color: var(--orange-pale);
  font-family: Georgia, serif;
  font-weight: 900;
  margin-bottom: -8px;
  pointer-events: none;
}

/* ── Feature3 大きなナンバー装飾 ── */
.feature3-card {
  position: relative;
  overflow: hidden;
}
.feature3-num {
  position: relative;
  z-index: 1;
}
.feature3-card::before {
  content: attr(data-num);
  position: absolute;
  top: -16px;
  right: -8px;
  font-size: 100px;
  font-weight: 900;
  color: var(--orange-pale);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

/* ── cta-bannerの形 ── */
.cta-banner {
  position: relative;
  clip-path: polygon(0 32px, 100% 0, 100% calc(100% - 32px), 0 100%);
  margin-top: -32px;
  margin-bottom: -32px;
  padding-top: 120px;
  padding-bottom: 120px;
}

/* ── Responsive for index ── */
@media (max-width: 768px) {
  /* Hero：縦並びに */
  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-top: 60px;
  }
  .hero-left { min-height: 75vw; }
  .hero-content { padding: 48px 24px; }
  .hero-h1 { font-size: clamp(24px, 7vw, 36px); }
  .hero-desc { font-size: 15px; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { width: 100%; justify-content: center; }
  .hero-right { height: 72vw; }
  .card-1 { width: 68%; left: 46%; }
  .card-2 { width: 56%; top: 72%; left: 66%; }
  .card-3 { display: none; }
  .deck-stats-badge { bottom: 16px; left: 12px; padding: 8px 12px; }
  .deck-stat-num { font-size: 22px; }
  .deck-bg-text { font-size: 60px; }

  .trust-inner {
    grid-template-columns: 1fr;
  }
  .trust-item { padding: 20px 16px; }
  .trust-google { padding: 28px 16px 20px; }
  .trust-score-num { font-size: 52px; color: var(--text); }
  .trust-stars svg { width: 32px; height: 32px; }
  .trust-sep { width: 80%; height: 1px; justify-self: center; }
  .trust-big { font-size: 48px; color: var(--orange); }

  .sec-title { font-size: 21px; }
  .sec-title em { display: block; }
  .section-title { font-size: 21px; }
  .section-title em { display: block; }
  .message-title { font-size: 19px; }
  .feature3-card h3 { font-size: 17px; }

  .message-wrap { grid-template-columns: 1fr; gap: 32px; }
  .message-photo img { height: 300px; }

  .features3-grid { grid-template-columns: 1fr; gap: 16px; }

  .cta-banner { padding: 60px 20px; }
  .cta-btn-group { flex-direction: column; align-items: center; }
  .cta-btn-group a { width: 100%; max-width: 320px; justify-content: center; }
}
