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

:root {
  --green-900: #0e3a1d;
  --green-800: #145227;
  --green-700: #1f6b2e;
  --green-600: #2d8a3e;
  --green-500: #3aa84f;
  --green-100: #e8f5e9;
  --green-50: #f1f9f3;
  --green-bg: #fafff7;

  --yellow-500: #ffd400;
  --yellow-400: #ffe14d;
  --yellow-100: #fff8d4;

  --red-700: #c52a0d;
  --red-600: #e63312;
  --red-500: #ff3b1f;
  --orange-500: #ff8800;

  --gray-900: #1a1a1a;
  --gray-700: #4a4a4a;
  --gray-500: #888;
  --gray-300: #d4d4d4;
  --gray-100: #f5f5f5;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

  --radius-sm: 8px;
  --radius: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-900);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 80px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green-700);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.85;
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 60px 0;
}

/* ===== Section Common ===== */
.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-en {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--green-600);
  margin-bottom: 8px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--green-900);
  position: relative;
  display: inline-block;
  padding: 0 28px;
  line-height: 1.3;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--green-600);
  transform: translateY(-50%);
}

.section-title::before {
  left: 0;
}

.section-title::after {
  right: 0;
}

.section-lead {
  text-align: center;
  font-size: 15px;
  color: var(--gray-700);
  margin-top: 12px;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--green-600);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-900);
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--green-700);
  color: var(--yellow-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(31, 107, 46, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-700);
  letter-spacing: 0.02em;
}

.logo-text small {
  font-size: 11px;
  color: var(--gray-700);
  font-weight: 500;
}

.header-tel {
  text-align: right;
}

.tel-badge {
  display: inline-block;
  background: var(--red-600);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.header-tel a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  font-weight: 800;
  color: var(--red-600);
  letter-spacing: 0.02em;
}

.tel-ico {
  font-size: 18px;
  animation: ring 2s ease-in-out infinite;
  transform-origin: top center;
  display: inline-block;
}

@keyframes ring {
  0%, 50%, 100% {
    transform: rotate(0deg);
  }
  10%, 30% {
    transform: rotate(-12deg);
  }
  20%, 40% {
    transform: rotate(12deg);
  }
}

/* ===== Main Visual ===== */
.mv {
  background: linear-gradient(135deg, #f1f9f3 0%, #fff8d4 100%);
  position: relative;
  overflow: hidden;
}

.mv::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(31, 107, 46, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.mv::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 212, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.mv-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 60px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.mv-eyebrow {
  display: inline-block;
  background: var(--green-700);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 2px 6px rgba(31, 107, 46, 0.25);
  letter-spacing: 0.05em;
}

.mv-lead {
  font-size: 17px;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 4px;
}

.mv-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
}

.mv-title .title-small {
  color: var(--green-900);
  font-size: 36px;
  display: block;
  font-weight: 800;
}

.mv-title .title-phone {
  background: linear-gradient(135deg, var(--red-500), var(--orange-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 64px;
  display: inline-block;
  position: relative;
  font-weight: 900;
}

.mv-title .title-phone::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: var(--yellow-500);
  z-index: -1;
  border-radius: 4px;
  opacity: 0.7;
}

.mv-sub {
  display: inline-block;
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.7);
  padding: 6px 12px;
  border-radius: 8px;
}

.mv-price {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.price-item {
  background: #fff;
  border: 2px solid var(--green-600);
  border-radius: var(--radius);
  padding: 14px 18px;
  flex: 1;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.price-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 4px;
  background: var(--green-500);
  border-radius: 0 0 4px 4px;
}

.price-item.price-truck {
  background: var(--yellow-500);
  border-color: var(--red-600);
  border-width: 3px;
}

.price-item.price-truck::before {
  background: var(--red-500);
}

.price-item .price-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-700);
  margin: 6px 0 4px;
  letter-spacing: 0.05em;
}

.price-item .price-num {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--red-600);
  line-height: 1;
}

.price-item .price-num .price-unit {
  font-size: 16px;
  font-weight: 700;
  margin-right: 2px;
}

.price-item .price-num small {
  font-size: 16px;
  font-weight: 700;
  margin-left: 1px;
}

.mv-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.btn-tel,
.btn-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex: 1;
  justify-content: center;
  min-width: 200px;
}

.btn-tel {
  background: linear-gradient(135deg, var(--red-500), var(--red-600));
  color: #fff;
  box-shadow: 0 4px 12px rgba(230, 51, 18, 0.3);
}

.btn-mail {
  background: #fff;
  color: var(--green-700);
  border: 2px solid var(--green-600);
}

.btn-ico {
  font-size: 18px;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.btn-text small {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.95;
}

.btn-text strong {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.btn-tel:hover,
.btn-mail:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.btn-tel:hover {
  box-shadow: 0 6px 16px rgba(230, 51, 18, 0.4);
}

.btn-mail:hover {
  box-shadow: var(--shadow-md);
}

.mv-note {
  font-size: 12px;
  color: var(--gray-700);
  text-align: center;
  margin-top: 4px;
}

.mv-image {
  position: relative;
}

.mv-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
}

/* ===== Trust Strip ===== */
.trust-strip {
  background: #fff;
  padding: 24px 0;
  border-bottom: 1px solid var(--green-100);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--green-bg);
  border-radius: var(--radius);
  border: 1px solid var(--green-100);
}

.trust-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--green-600);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
}

.trust-list strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1.2;
}

.trust-list small {
  display: block;
  font-size: 11px;
  color: var(--gray-700);
  margin-top: 2px;
}

/* ===== Catch ===== */
.catch {
  background: var(--yellow-500);
  padding: 32px 20px;
  text-align: center;
}

.catch h2 {
  font-size: 34px;
  font-weight: 900;
  color: var(--green-900);
  line-height: 1.3;
}

.catch h2 span {
  background: #fff;
  padding: 0 12px;
  border-radius: 8px;
  display: inline-block;
  margin: 0 4px;
}

.catch-sub {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
}

/* ===== Services ===== */
.services {
  background: var(--green-bg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--green-100);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-500);
  box-shadow: var(--shadow-md);
}

.service-card .ico {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
}

.service-card:hover .ico {
  background: var(--green-600);
  color: #fff;
}

.service-card .ico svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-700);
  margin-bottom: 6px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ===== Pricing ===== */
.pricing {
  background: #fff;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.price-card {
  background: #fff;
  border: 2px solid var(--green-100);
  border-radius: var(--radius-md);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card > .price-card-head {
  border-radius: 14px 14px 0 0;
}

.price-card > .price-card-body {
  border-radius: 0 0 14px 14px;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.price-card-featured {
  border-color: var(--red-600);
  border-width: 3px;
  box-shadow: var(--shadow-md);
}

.price-card-head {
  background: var(--green-600);
  color: #fff;
  padding: 14px;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.price-card-featured .price-card-head {
  background: var(--red-600);
}

.price-card-body {
  padding: 28px 20px;
}

.price-big {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  color: var(--red-600);
  line-height: 1;
}

.price-big .unit {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-700);
  margin-right: 2px;
}

.price-big .num {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.price-big .yen {
  font-size: 20px;
  font-weight: 800;
}

.price-card-body ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 14px;
  color: var(--gray-700);
}

.price-card-body ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--green-600);
  font-weight: 900;
}

.recommend {
  position: absolute;
  top: -14px;
  right: 12px;
  background: var(--yellow-500);
  color: var(--red-600);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.05em;
}

.price-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-500);
}

/* ===== Flow ===== */
.flow {
  background: var(--green-bg);
}

.flow-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.flow-list li {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--green-100);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flow-list li:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.flow-step {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 4px 12px rgba(31, 107, 46, 0.3);
}

.flow-step strong {
  font-size: 22px;
  font-weight: 900;
  display: block;
  margin-top: 2px;
}

.flow-content h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-700);
  margin-bottom: 4px;
}

.flow-content p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ===== Area ===== */
.area {
  background: #fff;
}

.area-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

.area-img img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--green-100);
}

.area-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.area-block {
  background: var(--green-bg);
  border-radius: var(--radius-md);
  padding: 20px;
  border-left: 5px solid var(--green-600);
}

.area-block h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-700);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.area-block > p {
  font-size: 13px;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.area-block summary {
  cursor: pointer;
  font-size: 13px;
  color: var(--green-700);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 4px 0;
}

.area-block summary::-webkit-details-marker {
  display: none;
}

.area-block summary::after {
  content: "+";
  font-size: 16px;
  font-weight: 400;
  color: var(--green-600);
}

.area-block details[open] summary::after {
  content: "−";
}

.area-block details p {
  margin-top: 10px;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.8;
  color: var(--gray-700);
}

.area-note {
  font-size: 12px;
  color: var(--gray-500);
  padding-left: 20px;
}

/* ===== Voice ===== */
.voice {
  background: var(--green-bg);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.voice-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--yellow-500);
}

.voice-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.voice-area {
  background: var(--green-700);
  color: #fff;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
}

.voice-stars {
  color: var(--yellow-500);
  font-size: 14px;
  letter-spacing: 1px;
}

.voice-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--green-900);
  margin-bottom: 8px;
  line-height: 1.4;
}

.voice-card p {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.8;
}

.voice-img {
  max-width: 600px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ===== Q&A ===== */
.qa {
  background: #fff;
}

.qa-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qa-list details {
  background: var(--green-bg);
  border: 1px solid var(--green-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.qa-list details[open] {
  border-color: var(--green-600);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.qa-list summary {
  padding: 16px 20px;
  font-weight: 800;
  color: var(--green-700);
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 50px;
  letter-spacing: 0.02em;
}

.qa-list summary::-webkit-details-marker {
  display: none;
}

.qa-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--green-600);
  transition: transform 0.2s ease;
}

.qa-list details[open] summary::after {
  content: "−";
}

.qa-list details p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.9;
}

/* ===== CTA Block ===== */
.cta-block {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 212, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-block h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
  position: relative;
}

.cta-block h2 span {
  background: var(--yellow-500);
  color: var(--red-600);
  padding: 0 12px;
  border-radius: 8px;
  display: inline-block;
}

.cta-lead {
  font-size: 15px;
  margin-bottom: 24px;
  opacity: 0.95;
}

.big-tel {
  display: block;
  max-width: 500px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--yellow-500), var(--yellow-400));
  color: var(--red-600);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.big-tel:hover {
  transform: translateY(-3px);
  opacity: 1;
}

.big-tel .tel-label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
}

.big-tel .tel-num {
  display: block;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.big-tel .tel-time {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-900);
}

.cta-note {
  margin-top: 16px;
  font-size: 13px;
  opacity: 0.9;
}

/* ===== Contact Form ===== */
.contact {
  background: var(--green-bg);
}

.form {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.form dl {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.form dt {
  font-weight: 800;
  color: var(--green-900);
  font-size: 14px;
  text-align: right;
}

.form .req {
  background: var(--red-500);
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s ease;
  background: #fff;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--green-600);
}

.form input::placeholder,
.form textarea::placeholder {
  color: var(--gray-500);
  font-size: 13px;
}

.form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-privacy {
  margin: 20px 0;
  text-align: center;
}

.form-privacy label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
  color: var(--green-700);
  font-size: 13px;
}

.form-privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green-600);
}

.form-submit {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--red-500), var(--orange-500));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(230, 51, 18, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.05em;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(230, 51, 18, 0.4);
}

.form-success {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.form-success h3 {
  font-size: 22px;
  color: var(--green-700);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--gray-700);
  line-height: 1.8;
}

/* ===== Company ===== */
.company {
  background: #fff;
  padding: 40px 0;
}

.company h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--green-700);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.company-info {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 6px 16px;
}

.company-info dt {
  font-weight: 800;
  color: var(--green-700);
  padding: 10px 0;
  border-bottom: 1px dashed var(--green-100);
  font-size: 13px;
}

.company-info dd {
  padding: 10px 0;
  border-bottom: 1px dashed var(--green-100);
  color: var(--gray-700);
  font-size: 14px;
}

/* ===== Footer ===== */
.footer {
  background: var(--green-900);
  color: #fff;
  text-align: center;
  padding: 28px 20px;
}

.footer a {
  color: #fff;
  text-decoration: underline;
  font-size: 13px;
}

.footer .copyright {
  margin-top: 6px;
  font-size: 11px;
  opacity: 0.8;
}

/* ===== Fixed CTA ===== */
.cta-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  z-index: 99;
  padding: 8px;
  gap: 8px;
  border-top: 3px solid var(--red-600);
}

.cta-fixed-tel,
.cta-fixed-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  transition: transform 0.2s ease;
}

.cta-fixed-tel {
  background: linear-gradient(135deg, var(--red-500), var(--red-600));
  color: #fff;
  flex: 2;
}

.cta-fixed-mail {
  background: var(--green-600);
  color: #fff;
  flex: 1;
  flex-direction: column;
  font-size: 12px;
  gap: 0;
}

.cta-fixed-ico {
  font-size: 22px;
}

.cta-fixed-tel div {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  align-items: flex-start;
}

.cta-fixed-tel small {
  font-size: 9px;
  font-weight: 500;
  opacity: 0.95;
}

.cta-fixed-tel strong {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.cta-fixed-mail span {
  font-size: 18px;
  line-height: 1;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .mv-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mv-image {
    order: -1;
  }

  .mv-title {
    font-size: 42px;
  }

  .mv-title .title-small {
    font-size: 28px;
  }

  .mv-title .title-phone {
    font-size: 50px;
  }

  .trust-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .price-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .area-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  section {
    padding: 40px 0;
  }

  .header-tel a {
    font-size: 17px;
  }

  .logo-text strong {
    font-size: 15px;
  }

  .logo-text small {
    font-size: 10px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .mv-title {
    font-size: 36px;
  }

  .mv-title .title-small {
    font-size: 22px;
  }

  .mv-title .title-phone {
    font-size: 42px;
  }

  .mv-price {
    flex-direction: column;
  }

  .price-item .price-num {
    font-size: 28px;
  }

  .btn-tel,
  .btn-mail {
    padding: 12px 16px;
    font-size: 14px;
    min-width: 0;
  }

  .btn-text strong {
    font-size: 17px;
  }

  .section-title {
    font-size: 26px;
  }

  .catch h2 {
    font-size: 26px;
  }

  .catch-sub {
    font-size: 14px;
  }

  .service-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .flow-list li {
    padding: 16px;
    gap: 12px;
  }

  .flow-step {
    width: 64px;
    height: 64px;
  }

  .flow-step strong {
    font-size: 18px;
  }

  .form {
    padding: 20px;
  }

  .form dl {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .form dt {
    text-align: left;
  }

  .company-info {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .company-info dt {
    padding: 12px 0 4px;
  }

  .company-info dd {
    padding: 0 0 12px;
  }

  .big-tel .tel-num {
    font-size: 36px;
  }

  .cta-block h2 {
    font-size: 24px;
  }
}
