/* ===== CSS Variables ===== */
:root {
  --col-earth: #1C1C1C;
  --col-earth-light: #2A2A2A;
  --col-concrete: #F4F1EC;
  --col-sand: #C4B89A;
  --col-accent: #909090;
  --col-accent-dark: #6B6B6B;
  --col-white: #FAFAFA;
  --col-text: #1C1C1C;
  --col-text-light: #7A7870;
  --col-border: #DDD9D2;
  --font-display: 'Noto Sans JP', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-en: 'Bebas Neue', sans-serif;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-strong: 0 8px 48px rgba(0,0,0,0.15);
  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  color: var(--col-text);
  background: var(--col-white);
  line-height: 1.8;
  font-size: 15px;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== Utility ===== */
.container { width: 90%; max-width: 1080px; margin: 0 auto; }
.section-label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--col-accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: var(--col-earth);
}
.section-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: var(--col-text-light);
  line-height: 1.9;
  margin-top: 12px;
}
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ===== Animations ===== */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
@keyframes scrollLine {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ===== CTA Button ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--col-accent);
  color: var(--col-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 18px 36px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--col-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(140,140,140,0.35);
}
.btn-primary svg { flex-shrink: 0; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--col-earth);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--col-earth);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--col-earth);
  color: var(--col-white);
}

/* ===== Micro Copy ===== */
.micro-copy {
  font-size: 12px;
  color: var(--col-text-light);
  margin-top: 10px;
  letter-spacing: 0.02em;
}
.micro-copy span {
  display: inline-block;
  margin: 0 6px;
}
.micro-copy span::before { content: "✓ "; color: var(--col-accent); font-weight: 700; }

/* ===== Sticky Phone Bar ===== */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--col-earth);
  z-index: 1000;
  display: none;
  padding: 12px 20px;
  gap: 10px;
}
.sticky-bar.show { display: flex; align-items: center; justify-content: center; }
.sticky-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--col-accent);
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--radius);
  flex: 1;
  max-width: 240px;
  text-align: center;
}
.sticky-bar-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #06C755;
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--radius);
  flex: 1;
  max-width: 200px;
  transition: background var(--transition);
}
.sticky-bar-line:hover { background: #05a848; }

/* ==================
   SECTION 1: HERO
================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--col-earth);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroSlide 28s ease-in-out infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: -21s; }
.hero-slide:nth-child(3) { animation-delay: -14s; }
.hero-slide:nth-child(4) { animation-delay: -7s; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(28,28,28,0.62) 0%, rgba(28,28,28,0.38) 60%, rgba(28,28,28,0.18) 100%);
}
@keyframes heroSlide {
  0%   { opacity: 0; transform: scale(1); }
  4%   { opacity: 1; transform: scale(1.02); }
  21%  { opacity: 1; transform: scale(1.08); }
  25%  { opacity: 0; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(1); }
}
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 120px 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(140,140,140,0.25);
  border: 1px solid rgba(140,140,140,0.5);
  color: #D0D0D0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--col-accent);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 700;
  color: var(--col-white);
  line-height: 1.35;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.hero-lead {
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 500;
  color: rgba(250,250,247,0.75);
  line-height: 1.7;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.hero-title .accent { color: #D0D0D0; }
.hero-subtitle {
  color: rgba(250,250,247,0.75);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-cta-group { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 32px;
  background: rgba(250,250,247,0.06);
  border: 1px solid rgba(250,250,247,0.12);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}
.hero-stat-item { text-align: center; }
.hero-stat-num {
  font-family: var(--font-en);
  font-size: clamp(36px, 4vw, 52px);
  color: #D0D0D0;
  line-height: 1;
  letter-spacing: 0.02em;
}
.hero-stat-unit {
  font-size: 13px;
  color: rgba(250,250,247,0.6);
  margin-top: 4px;
}
.hero-stat-label {
  font-size: 11px;
  color: rgba(250,250,247,0.5);
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250,250,247,0.4);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(250,250,247,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ==================
   SECTION 2: PAIN
================== */
.pain-section {
  background: var(--col-concrete);
  padding: 100px 0;
}
.pain-header { text-align: center; margin-bottom: 60px; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pain-item {
  background: var(--col-white);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.pain-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.pain-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.pain-item:hover .pain-img img { transform: scale(1.04); }
.pain-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pain-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--col-sand);
  transition: background var(--transition);
}
.pain-item:hover { background: var(--col-earth); }
.pain-item:hover::before { background: var(--col-accent); }
.pain-item:hover .pain-text { color: rgba(250,250,247,0.8); }
.pain-item:hover .pain-num { color: var(--col-accent); }
.pain-num {
  font-family: var(--font-en);
  font-size: 44px;
  color: var(--col-sand);
  line-height: 1;
  transition: color var(--transition);
}
.pain-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--col-text);
  transition: color var(--transition);
}

/* ==================
   SECTION 3: REASONS
================== */
.reasons-section { padding: 100px 0; background: var(--col-white); }
.reasons-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.reasons-sticky { position: sticky; top: 100px; }
.reasons-list { display: flex; flex-direction: column; gap: 0; }
.reason-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--col-border);
  align-items: start;
}
.reason-item:first-child { border-top: 1px solid var(--col-border); }
.reason-num {
  font-family: var(--font-en);
  font-size: 40px;
  color: var(--col-sand);
  line-height: 1;
  padding-top: 4px;
}
.reason-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--col-earth);
  margin-bottom: 6px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.reason-body { font-size: 13px; color: var(--col-text-light); line-height: 1.8; }
.reason-img {
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.reason-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.reason-item:hover .reason-img img { transform: scale(1.04); }
.reason-badge {
  display: inline-block;
  background: rgba(140,140,140,0.12);
  color: var(--col-accent-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

/* ==================
   SECTION 4: MENU
================== */
.menu-section { padding: 100px 0; background: var(--col-earth); }
.menu-section .section-title { color: var(--col-white); }
.menu-section .section-subtitle { color: rgba(250,250,247,0.6); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.menu-card {
  background: rgba(250,250,247,0.06);
  border: 1px solid rgba(250,250,247,0.12);
  border-radius: 6px;
  overflow: hidden;
  transition: transform var(--transition), background var(--transition);
}
.menu-card:hover {
  transform: translateY(-4px);
  background: rgba(250,250,247,0.10);
}
.menu-card-img {
  height: 160px;
  background: var(--col-earth-light);
  overflow: hidden;
  position: relative;
}
.menu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }
.menu-card-body { padding: 18px 16px; }
.menu-card-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--col-white);
  margin-bottom: 6px;
}
.menu-card-price {
  font-size: 12px;
  color: #D0D0D0;
  font-weight: 500;
}

/* Mid CTA */
.cta-mid {
  padding: 60px 0;
  text-align: center;
}
.cta-mid-box {
  background: var(--col-concrete);
  border-radius: 8px;
  padding: 52px 40px;
  max-width: 700px;
  margin: 0 auto;
}
.cta-mid-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--col-earth);
  margin-bottom: 8px;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
.cta-mid-sub {
  font-size: 13px;
  color: var(--col-text-light);
  margin-bottom: 28px;
}

/* ==================
   SECTION 5: CASES
================== */
.cases-section { padding: 100px 0; background: var(--col-white); }
.cases-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}
.case-card-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 180px;
  overflow: hidden;
}
.case-card-img {
  overflow: hidden;
  position: relative;
}
.case-card-img::after {
  content: attr(data-label);
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(0,0,0,0.65);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.case-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.case-card:hover .case-card-img img { transform: scale(1.08); }
.case-card-body { background: white; padding: 20px; }
.case-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.case-tag {
  display: inline-block;
  background: var(--col-concrete);
  color: var(--col-text-light);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 100px;
}
.case-cost {
  font-size: 11px;
  color: var(--col-accent-dark);
  font-weight: 700;
  background: rgba(140,140,140,0.1);
  padding: 3px 10px;
  border-radius: 100px;
}
.case-desc {
  font-size: 13px;
  color: var(--col-text-light);
  line-height: 1.7;
}
.case-comment {
  margin-top: 12px;
  padding: 10px 14px;
  border-left: 3px solid var(--col-sand);
  font-size: 12px;
  color: var(--col-text-light);
  font-style: italic;
  background: var(--col-concrete);
  border-radius: 0 4px 4px 0;
}

/* ==================
   SECTION 6: PRICE
================== */
.price-section { padding: 100px 0; background: var(--col-concrete); }
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  background: var(--col-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.price-table thead tr { background: var(--col-earth); }
.price-table thead th {
  padding: 16px 20px;
  font-size: 13px;
  color: rgba(250,250,247,0.8);
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.05em;
}
.price-table tbody tr {
  border-bottom: 1px solid var(--col-border);
  transition: background var(--transition);
}
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: rgba(140,140,140,0.06); }
.price-table td {
  padding: 16px 20px;
  font-size: 14px;
  vertical-align: middle;
}
.price-table .price-range { font-weight: 700; color: var(--col-earth); }
.price-table .price-note { font-size: 11px; color: var(--col-text-light); }
.price-disclaimer {
  font-size: 12px;
  color: var(--col-text-light);
  margin-top: 16px;
  padding: 12px 16px;
  border-left: 3px solid var(--col-sand);
  background: var(--col-white);
  border-radius: 0 4px 4px 0;
}

/* ==================
   SECTION 7: FLOW
================== */
.flow-section { padding: 100px 0; background: var(--col-white); }
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 52px;
  position: relative;
}
.flow-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12%;
  width: 76%; height: 2px;
  background: var(--col-border);
  z-index: 0;
}
.flow-step { text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.flow-step-num {
  width: 72px; height: 72px;
  background: var(--col-white);
  border: 2px solid var(--col-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-en);
  font-size: 24px;
  color: var(--col-sand);
  transition: all var(--transition);
  position: relative;
}
.flow-step.highlight .flow-step-num {
  background: var(--col-accent);
  border-color: var(--col-accent);
  color: var(--col-white);
  box-shadow: 0 0 0 6px rgba(140,140,140,0.15);
}
.flow-step-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--col-earth);
  margin-bottom: 6px;
}
.flow-step-body { font-size: 12px; color: var(--col-text-light); line-height: 1.7; }
.flow-step-badge {
  display: inline-block;
  background: rgba(140,140,140,0.1);
  color: var(--col-accent-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  margin-bottom: 6px;
}
.flow-highlight-note {
  text-align: center;
  margin-top: 40px;
  padding: 20px 24px;
  background: rgba(140,140,140,0.08);
  border: 1px solid rgba(140,140,140,0.2);
  border-radius: 6px;
  font-size: 14px;
  color: var(--col-earth);
  font-weight: 500;
}

/* ==================
   SECTION 8: VOICE
================== */
.voice-section { padding: 100px 0; background: var(--col-earth); }
.voice-section .section-title { color: var(--col-white); }
.voice-section .section-subtitle { color: rgba(250,250,247,0.6); }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.voice-card {
  background: rgba(250,250,247,0.07);
  border: 1px solid rgba(250,250,247,0.12);
  border-radius: 8px;
  padding: 28px 24px;
}
.voice-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.voice-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--col-earth-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en);
  font-size: 20px;
  color: #D0D0D0;
  flex-shrink: 0;
}
.voice-meta .name { font-size: 13px; font-weight: 700; color: var(--col-white); }
.voice-meta .info { font-size: 11px; color: rgba(250,250,247,0.5); margin-top: 2px; }
.voice-stars { color: #E8C050; font-size: 14px; margin-bottom: 12px; }
.voice-text { font-size: 13px; color: rgba(250,250,247,0.75); line-height: 1.8; }
.voice-before {
  margin-top: 16px;
  padding: 12px;
  background: rgba(0,0,0,0.2);
  border-radius: 4px;
  font-size: 12px;
  color: rgba(250,250,247,0.55);
  font-style: italic;
  line-height: 1.7;
}
.voice-before::before {
  content: "相談前の不安：";
  display: block;
  font-size: 10px;
  color: var(--col-sand);
  font-style: normal;
  margin-bottom: 4px;
}

/* ==================
   SECTION 9: FAQ
================== */
.faq-section { padding: 100px 0; background: var(--col-concrete); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 52px; }
.faq-item {
  border-bottom: 1px solid var(--col-border);
  padding: 0;
}
.faq-item:nth-child(odd) { border-right: 1px solid var(--col-border); padding-right: 32px; }
.faq-item:nth-child(even) { padding-left: 32px; }
.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: var(--col-earth);
  list-style: none;
}
.faq-q::before { content: "Q"; font-family: var(--font-en); font-size: 22px; color: var(--col-accent); flex-shrink: 0; line-height: 1; }
.faq-a {
  font-size: 13px;
  color: var(--col-text-light);
  line-height: 1.8;
  padding: 0 0 24px 34px;
}

/* ==================
   SECTION 10: ABOUT
================== */
.about-section { padding: 100px 0; background: var(--col-white); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 6px;
  background: var(--col-concrete);
  overflow: hidden;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-img-deco {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 60%;
  aspect-ratio: 4/3;
  background: var(--col-concrete);
  border-radius: 6px;
  border: 4px solid var(--col-white);
  overflow: hidden;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--col-concrete);
  border: 1px solid var(--col-border);
  font-size: 12px;
  color: var(--col-earth);
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 500;
}
.about-badge::before { content: "✓"; color: var(--col-accent); font-weight: 700; }
.about-msg {
  font-size: 14px;
  line-height: 1.9;
  color: var(--col-text-light);
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--col-border);
}
.about-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.about-table tr { border-bottom: 1px solid var(--col-border); }
.about-table td { padding: 10px 0; font-size: 13px; vertical-align: top; }
.about-table td:first-child { color: var(--col-text-light); width: 120px; }
.about-table td:last-child { color: var(--col-text); font-weight: 500; }

/* ==================
   SECTION 11: FORM
================== */
.form-section { padding: 100px 0; background: var(--col-earth); }
.form-section .section-title { color: var(--col-white); }
.form-section .section-subtitle { color: rgba(250,250,247,0.6); }
.form-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}
.form-benefits { display: flex; flex-direction: column; gap: 20px; }
.form-benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.form-benefit-icon {
  width: 48px; height: 48px;
  background: rgba(140,140,140,0.15);
  border: 1px solid rgba(140,140,140,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #D0D0D0;
}
.form-benefit-title { font-size: 15px; font-weight: 700; color: var(--col-white); margin-bottom: 4px; }
.form-benefit-body { font-size: 13px; color: rgba(250,250,247,0.6); line-height: 1.7; }
.form-tel-block {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(250,250,247,0.12);
}
.form-tel-label { font-size: 12px; color: rgba(250,250,247,0.5); margin-bottom: 12px; letter-spacing: 0.05em; }
.form-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #06C755;
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.form-line-btn:hover { background: #05a848; transform: translateY(-2px); }
.form-tel-hours { font-size: 12px; color: rgba(250,250,247,0.4); margin-top: 10px; }
.form-card {
  background: var(--col-white);
  border-radius: 10px;
  padding: 40px 36px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.3);
  width: 100%;
  box-sizing: border-box;
}
.form-offer {
  background: linear-gradient(135deg, var(--col-accent), var(--col-accent-dark));
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.form-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--col-earth); margin-bottom: 6px; }
.form-note { font-size: 12px; color: var(--col-text-light); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 12px; font-weight: 700; color: var(--col-earth); margin-bottom: 6px; letter-spacing: 0.03em; }
.form-label .required {
  display: inline-block;
  background: var(--col-accent);
  color: white;
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 2px;
  margin-left: 6px;
  vertical-align: middle;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--col-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--col-text);
  background: var(--col-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--col-accent);
  box-shadow: 0 0 0 3px rgba(140,140,140,0.15);
}
.form-textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  background: var(--col-accent);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 18px;
  cursor: pointer;
  margin-top: 8px;
  transition: background var(--transition), transform var(--transition);
}
.form-submit:hover { background: var(--col-accent-dark); transform: translateY(-1px); }
.form-privacy { font-size: 11px; color: var(--col-text-light); text-align: center; margin-top: 10px; line-height: 1.6; }
.form-micro {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.form-micro-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--col-text-light);
}
.form-micro-item::before { content: "✓"; color: var(--col-accent); font-weight: 700; }

/* ===== FOOTER ===== */
.footer {
  background: #141414;
  color: rgba(250,250,247,0.45);
  padding: 40px 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: rgba(250,250,247,0.7);
  margin-bottom: 8px;
}

/* ===== PAGE TRANSITION ===== */
#page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #FAFAFA;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: all;
}
#page-transition.is-loaded {
  transform: translateY(-100%);
  pointer-events: none;
}
#page-transition.is-leaving {
  transform: translateY(0) !important;
  pointer-events: all;
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}
#page-transition img {
  width: clamp(120px, 20vw, 200px);
  opacity: 1;
  transition: opacity 0.4s ease;
}
#page-transition.is-loaded img {
  opacity: 0;
}

/* ===== IMAGE PLACEHOLDERS ===== */
.img-placeholder {
  background: linear-gradient(135deg, var(--col-concrete) 0%, #D8D4CC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--col-text-light);
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* ===== SP HERO IMAGES ===== */
@media (max-width: 600px) {
  .hero-slide:nth-child(1) { background-image: url('images/hero-sp.jpg') !important; }
  .hero-slide:nth-child(2) { background-image: url('images/hero2.jpg') !important; }
  .hero-slide:nth-child(3) { background-image: url('images/hero3-sp.jpg') !important; }
  .hero-slide:nth-child(4) { background-image: url('images/hero4-sp.jpg') !important; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 100px; }
  .hero-stats { display: none; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .reasons-layout { grid-template-columns: 1fr; }
  .reasons-sticky { position: static; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .flow-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .flow-steps::before { display: none; }
  .voice-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item:nth-child(odd) { border-right: none; padding-right: 0; }
  .faq-item:nth-child(even) { padding-left: 0; }
  .about-layout { grid-template-columns: 1fr; }
  .about-img-deco { display: none; }
  .form-inner { grid-template-columns: 1fr; }
  .form-benefits { display: none; }
}
@media (max-width: 600px) {
  .pain-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr; }
  .hero-title { font-size: 30px; }
  .cases-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  .sticky-bar.show { gap: 6px; }
  .sticky-bar-btn, .sticky-bar-tel { font-size: 12px; padding: 10px 14px; }
  .form-section { padding: 60px 0; }
  .form-section .container { width: 92%; margin-left: auto; margin-right: auto; }
  .form-card { padding: 28px 20px; border-radius: 8px; width: 100%; margin: 0 auto; box-sizing: border-box; }
  .wpcf7 { width: 100% !important; margin: 0 !important; }
  .form-title { font-size: 18px; }
  .wpcf7-form input[type="text"],
  .wpcf7-form input[type="email"],
  .wpcf7-form input[type="tel"],
  .wpcf7-form select,
  .wpcf7-form textarea { font-size: 16px; padding: 12px 14px; }
  .wpcf7-form input[type="submit"] { font-size: 15px; padding: 18px 16px; }
}

/* ==================
   送信完了画面
================== */
.form-thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  gap: 16px;
}
.form-thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf5e8, #d6eccc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a8a2a;
  margin-bottom: 8px;
}
.form-thanks-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--col-dark);
  margin: 0;
  letter-spacing: 0.04em;
}
.form-thanks-body {
  font-size: 15px;
  color: var(--col-text-light);
  line-height: 1.8;
  margin: 0;
}
.form-thanks-body strong {
  color: var(--col-earth);
  font-weight: 700;
}
.form-thanks-line {
  width: 100%;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid #ede9e3;
}
.form-thanks-line-note {
  font-size: 12px;
  color: #aaa;
  margin: 0 0 12px;
  letter-spacing: 0.06em;
}

/* ==================
   CF7 スタイル
================== */
.wpcf7 {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.wpcf7 div.screen-reader-response {
  display: none;
}

/* CF7のfieldsetリセット（hidden-fields-containerの枠線を消す） */
.wpcf7-form fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

/* CF7がform-group外に自動生成するpタグ・brだけ非表示 */
.wpcf7-form > p,
.wpcf7-form > br { display: none; }

/* form-group内のp（CF7がフィールドをpで囲む）は表示 */
.wpcf7-form .form-group p { margin: 0; }
.wpcf7-form .form-group p > br { display: none; }

.wpcf7-form .form-group { margin-bottom: 22px; }

/* ラベル */
.wpcf7-form label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #5a4e40;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.wpcf7-form .required {
  background: var(--col-accent);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wpcf7-form .optional {
  background: transparent;
  color: #aaa;
  font-size: 9px;
  font-weight: 600;
  border: 1px solid #ddd;
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}

/* 入力フィールド共通 */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  box-sizing: border-box;
  background: #faf9f7;
  border: 1.5px solid #e2ddd6;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--col-dark);
  font-family: inherit;
  line-height: 1.5;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.wpcf7-form input[type="text"]::placeholder,
.wpcf7-form input[type="email"]::placeholder,
.wpcf7-form input[type="tel"]::placeholder,
.wpcf7-form textarea::placeholder {
  color: #bbb;
  font-size: 14px;
}

/* フォーカス */
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--col-earth);
  box-shadow: 0 0 0 4px rgba(139,115,85,0.1);
  background: #fff;
}

/* セレクトボックス */
.wpcf7-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b7355' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
  color: var(--col-dark);
}
.wpcf7-form select option[value=""] { color: #bbb; }

/* テキストエリア */
.wpcf7-form textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.7;
}

/* ファイル添付エリア */
.wpcf7-form .upload-area {
  border: 2px dashed #d8d2c9;
  border-radius: 10px;
  padding: 20px 18px;
  background: #faf9f7;
  transition: border-color 0.2s, background 0.2s;
}
.wpcf7-form .upload-area:hover {
  border-color: var(--col-earth);
  background: #fdf9f5;
}
.wpcf7-form .upload-hint {
  font-size: 12px;
  color: #999;
  margin-top: 8px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.wpcf7-form .upload-hint::before {
  content: '📷';
  flex-shrink: 0;
  font-size: 14px;
}
.wpcf7-form input[type="file"] {
  width: 100%;
  box-sizing: border-box;
  font-size: 13px;
  color: #666;
  cursor: pointer;
  font-family: inherit;
}

/* 送信ボタン */
.wpcf7-form input[type="submit"] {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #7a6248 0%, #5a4535 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(90,69,53,0.3);
  margin-top: 10px;
  position: relative;
}
.wpcf7-form input[type="submit"]:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(90,69,53,0.38);
}
.wpcf7-form input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(90,69,53,0.2);
}

/* ローディング中 */
.wpcf7-spinner {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}

/* バリデーションエラー */
.wpcf7-not-valid {
  border-color: #d9534f !important;
  box-shadow: 0 0 0 3px rgba(217,83,79,0.1) !important;
}
.wpcf7-not-valid-tip {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #d9534f;
  font-size: 12px;
  margin-top: 6px;
  font-weight: 500;
}
.wpcf7-not-valid-tip::before { content: '!'; display: inline-flex; align-items: center; justify-content: center; width: 14px; height: 14px; background: #d9534f; color: #fff; border-radius: 50%; font-size: 10px; font-weight: 700; flex-shrink: 0; }

/* 送信結果メッセージ */
.wpcf7-response-output {
  margin: 20px 0 0;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  border: none !important;
  line-height: 1.6;
}
.wpcf7-mail-sent-ok {
  background: linear-gradient(135deg, #edf7ee, #f0faf0);
  color: #2e7d32;
  border-left: 4px solid #4caf50 !important;
}
.wpcf7-mail-sent-ng,
.wpcf7-aborted {
  background: #fef0f0;
  color: #c62828;
  border-left: 4px solid #e53935 !important;
}
.wpcf7-spam-blocked {
  background: #fffbf0;
  color: #e65100;
  border-left: 4px solid #ff9800 !important;
}

/* ハニーポット非表示 */
.hp-field {
  opacity: 0;
  position: absolute;
  top: 0; left: 0;
  height: 0; width: 0;
  z-index: -1;
  overflow: hidden;
}
