/*
 * 富山安心駆除サービス LP 専用CSS
 * プロフェッショナルで洗練されたデザイン
 */

/* ブランドカラー定義 */
:root {
  --primary-navy: #2d4059;
  --primary-navy-light: #3d5a73;
  --primary-navy-dark: #1a2a3a;
  --accent-orange: #FF9500;
  --accent-orange-light: #FFB84D;
  --accent-orange-dark: #E68500;
  --secondary-dark: #1a1a1a;
  --secondary-gray: #333;
  --secondary-light-gray: #666;
  --bg-white: #ffffff;
  --bg-light: #f9f6f2;
  --bg-lighter: #f5f7fa;
  --bg-navy-light: #f0f4f8;
  --text-primary: #2c3e50;
  --text-secondary: #444;
  --text-tertiary: #666;
  --accent-success: #00a86b;
  --accent-warning: #ffcc00;
  --spacing-xs: 10px;
  --spacing-sm: 20px;
  --spacing-md: 40px;
  --spacing-lg: 50px;
  --spacing-xl: 60px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

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

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5em 0;
  line-height: 1.4;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

/* SP用/PC用表示切り替え */
.sp-only {
  display: none;
}

.pc-only {
  display: block;
}

/* ボタン */
.btn {
  display: inline-block;
  padding: 18px 45px;
  border-radius: 50px;
  text-align: center;
  font-weight: 700;
  font-size: 1.05em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange-light) 0%, var(--accent-orange) 100%);
  color: var(--bg-white);
  box-shadow: 0 4px 20px rgba(255, 106, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 106, 0, 0.4);
}

.btn-cta {
  font-size: 1.2em;
  padding: 22px 60px;
  font-weight: 800;
}

/* ヘッダー */
.site-header {
  background-color: var(--primary-navy);
  padding: 14px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.site-header .container {
  padding: 0 10px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo h1 {
  font-size: 1.4em;
  margin: 0;
  font-weight: 700;
  color: var(--bg-white);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-contact .hours {
  font-size: 0.75em;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  white-space: nowrap;
}

.header-contact .phone {
  font-size: 1.8em;
  font-weight: 800;
  color: var(--accent-orange);
  margin: 0;
}

.header-contact .btn-header {
  white-space: nowrap;
  padding: 10px 28px;
  font-size: 0.95em;
  font-weight: 700;
}

/* セクション共通 */
.section-title {
  font-size: 2.5em;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  font-weight: 900;
  color: var(--primary-navy);
  line-height: 1.3;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-orange);
  margin: 20px auto 0;
  border-radius: 2px;
}

section {
  padding: 60px 0;
}

/* ファーストビュー - PC版 */
.hero-section {
  background-image: url('images/toyama1.jpg');
  background-size: cover;
  background-position: center;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 90vh;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(100, 130, 70, 0.4) 0%, rgba(120, 150, 85, 0.4) 100%);
  backdrop-filter: blur(5px);
  z-index: 1;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  flex: 0 0 40%;
  text-align: left;
  margin-top: -2cm;
}

.hero-image {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  margin-top: -5cm;
  margin-left: -1cm;
  padding: 20px;
}

.hero-image-caption {
  color: #FFFFFF;
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.7);
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.4);
  paint-order: stroke fill;
  transform: translate(0.5cm, 3cm);
}

.hero-title {
  font-size: 3.5em;
  margin-bottom: 0.4em;
  color: #FFFFFF;
  font-weight: 800;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.6);
  paint-order: stroke fill;
  margin-left: -3cm;
}

.no-wrap {
  white-space: nowrap;
}

.hero-text {
  font-size: 1.7em;
  margin-bottom: 1.5em;
  line-height: 1.8;
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text-background {
  background-color: rgba(45, 64, 89, 0.7);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-left: -3.2cm;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-text strong {
  color: #ff8c42;
  font-weight: 700;
}

.btn-hero {
  display: inline-block;
  margin-top: 15px;
  font-size: 1.4em;
  padding: 18px 45px;
  background: linear-gradient(135deg, var(--accent-orange-light) 0%, var(--accent-orange) 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 6px 24px rgba(255, 140, 66, 0.4) !important;
  font-weight: 800;
  margin-left: 0;
}

.btn-hero:hover {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(255, 140, 66, 0.5) !important;
}

/* 数字で分かる実績セクション */
.hero-stats-section {
  margin: -2cm 30px 10px 0;
  padding: 25px 15px 25px 25px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  max-width: calc(100% - 40px);
  box-sizing: border-box;
}

.hero-stats-title {
  color: #FFFFFF;
  font-size: 2em;
  font-weight: 700;
  text-align: left;
  margin-bottom: 30px;
  margin-left: 2cm;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-family: 'Noto Sans JP', sans-serif;
}

.hero-stats-grid {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  margin-left: 0;
}

.hero-stat-card {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-stat-wreath {
  position: relative;
  width: 120px;
  height: 120px;
  background-image: url('images/award3.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.hero-stat-number {
  font-size: 1.9em;
  font-weight: 900;
  color: #FBBF24;
  text-shadow: 0 3px 8px rgba(251, 191, 36, 0.5);
  line-height: 1;
}

.hero-stat-unit {
  font-size: 1.2em;
  font-weight: 700;
  color: #FBBF24;
  text-shadow: 0 3px 8px rgba(251, 191, 36, 0.5);
  line-height: 1;
}

.hero-stat-label {
  font-size: 1.1em;
  font-weight: 600;
  color: #FFFFFF;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  text-align: center;
  line-height: 1.3;
  margin: 0;
  padding: 0 10px;
  white-space: nowrap;
}

.hero-stat-label::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: var(--accent-orange);
  margin: 8px auto 0;
  border-radius: 1px;
}

/* 悩み共感 */
.problems-section {
  background-color: #f9f6f2;
  padding: 40px 0;
}

.problems-content {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.problem-image {
  flex: 0 0 350px;
  max-width: 350px;
}

.problem-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  flex: 1;
}

.problem-item {
  background: linear-gradient(135deg, var(--bg-white) 0%, #fefefe 100%);
  padding: 35px 25px;
  text-align: center;
  position: relative;
  line-height: 1.9;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(26, 42, 90, 0.08);
  font-size: 1.05em;
  color: var(--text-primary);
  padding-top: 55px;
}

.problem-item::before {
  content: "✓";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 15px;
  color: var(--bg-white);
  background: var(--accent-orange);
  font-weight: bold;
  font-size: 1.3em;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(255, 106, 0, 0.3);
}

/* 理由 */
.reasons-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.reason-card {
  background-color: var(--bg-white);
  padding: 40px 30px;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.reason-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-sm);
}

.reason-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
  color: var(--bg-white);
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: 900;
  margin-right: 15px;
  box-shadow: 0 4px 16px rgba(255, 106, 0, 0.3);
  vertical-align: middle;
  text-align: center;
}

.reason-card h3 {
  margin: 0;
  font-size: 1.8em;
  color: var(--primary-navy);
  font-weight: 800;
}

.reason-card p {
  line-height: 1.9;
  color: var(--text-secondary);
  font-size: 0.95em;
  margin: 0;
}

/* エリア */
.areas-section {
  background-color: #f5f7fa;
  text-align: center;
  padding: 25px 0 20px 0;
}

.areas-section-enhanced {
  background-color: var(--bg-lighter);
  padding: 60px 0;
}

.areas-lead-text {
  font-size: 1.3em;
  line-height: 1.8;
  margin-bottom: 40px;
  color: var(--text-primary);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.areas-section .section-title {
  font-size: 2.3rem;
  margin-bottom: 18px;
}

.areas-hours {
  max-width: 900px;
  margin: 10px auto 15px;
  line-height: 1.5;
  font-size: 1em;
  color: var(--text-primary);
  font-weight: 600;
}

.areas-text {
  max-width: 900px;
  margin: 25px auto 0;
  line-height: 1.7;
  font-size: 1em;
  color: var(--text-secondary);
}

.areas-label {
  font-size: 1.3em;
  font-weight: 800;
  color: #000000;
}

.areas-map {
  max-width: 1000px;
  margin: 40px auto;
  background: transparent;
}

.areas-map img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
}

.areas-cta {
  text-align: center;
  margin: 15px auto 15px;
  max-width: 800px;
}

.areas-cta-large {
  margin: 0 auto 40px;
  max-width: 1000px;
}

.areas-cta-text {
  font-size: 1em;
  margin-bottom: 14px;
  line-height: 1.6;
  color: var(--text-primary);
  font-weight: 600;
  margin-top: 0;
}

.areas-cta .btn {
  font-size: 1.05em;
  padding: 13px 32px;
}

.btn-cta-large {
  font-size: 4em;
  padding: 60px 120px;
  font-weight: 800;
  box-shadow: 0 8px 30px rgba(255, 106, 0, 0.4);
  margin-left: 3cm;
}

.areas-cta-note {
  font-size: 1.1em;
  margin-top: 20px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 500;
}

/* サービス内容 */
.services-section {
  background: #f5f7fa;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.services-section .section-title {
  margin-bottom: 15px;
  color: var(--primary-navy);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.service-item {
  border: 2px solid rgba(255, 106, 0, 0.2);
  border-radius: 16px;
  padding: 0;
  background: white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff6a00 0%, #ff9a00 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.92em;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.4);
}

.service-item-title {
  font-size: 1.4em;
  color: #1a2a5a;
  font-weight: 800;
  text-align: left;
  margin: 0;
  padding: 12px 20px 10px;
  border-bottom: 2px solid #f3f4f6;
  position: relative;
}

.service-item-title::before {
  content: '';
  position: absolute;
  left: 24px;
  bottom: -2px;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff6a00 0%, #ff9a00 100%);
}

.service-images {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.service-image-main {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-item:first-child .service-image-main {
  height: 200px;
}

.service-item:last-child .service-image-main {
  height: 200px;
}

.service-item .service-text {
  padding: 12px 20px 15px;
  flex: 1;
}

.service-item .service-text p {
  line-height: 1.7;
  color: #333;
  font-size: 0.98em;
  margin: 0;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  border-top: 1px solid #e9ecef;
}

.feature-item {
  text-align: center;
  padding: 10px 8px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.92em;
  font-weight: 700;
  color: #1a2a5a;
}

.service-guarantee {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f0ff 100%);
  border-top: 1px solid #e0e7f0;
}

.service-guarantee .guarantee-icon {
  flex-shrink: 0;
}

.service-guarantee .guarantee-icon img {
  width: 40px;
  height: 40px;
}

.service-guarantee .guarantee-content h4 {
  margin: 0 0 5px 0;
  color: #1a2a5a;
  font-size: 1.08em;
  font-weight: 700;
}

.service-guarantee .guarantee-content p {
  margin: 0;
  color: #333;
  font-size: 0.92em;
  line-height: 1.5;
}

/* 作業の流れ */
.flow-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.flow-section .section-title {
  margin-bottom: 40px;
}

.flow-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: var(--spacing-lg);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.flow-step {
  background-color: var(--bg-white);
  padding: 25px 30px;
  border-radius: var(--radius-md);
  text-align: left;
  border: 2px solid #e0e0e0;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 25px;
}

.flow-step-content {
  flex: 1;
}

.flow-step h4 {
  margin-bottom: 10px;
  margin-top: 0;
  color: var(--text-primary);
  font-size: 1.1em;
  font-weight: 700;
}

.flow-step p {
  line-height: 1.7;
  color: var(--text-secondary);
  font-size: 0.95em;
  margin: 0;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
  color: var(--bg-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.5em;
  box-shadow: 0 4px 16px rgba(26, 42, 90, 0.3);
  border: 3px solid var(--bg-white);
}

.flow-step img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

/* 料金・保証 */
.pricing-section {
  background: #f5f7fa;
  padding: 60px 0 40px 0;
  position: relative;
  overflow: hidden;
  border-top: 3px solid #E2E8F0;
}

.pricing-section .section-title {
  margin-bottom: 20px;
  font-size: 2em;
}

.pricing-category {
  margin-bottom: 8px;
}

.pricing-category:nth-child(2) {
  margin-top: 10px;
}

.category-title {
  font-size: 2em;
  font-weight: 800;
  color: var(--bg-white);
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
  text-align: center;
  margin-bottom: 20px;
  padding: 20px 30px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(255, 106, 0, 0.3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 15px;
  margin-bottom: 8px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* 1行目：蜂3つを中央に配置 */
.pricing-grid .pricing-item:nth-child(1) {
  grid-column: 2 / span 2;
  grid-row: 1;
}

.pricing-grid .pricing-item:nth-child(2) {
  grid-column: 4 / span 2;
  grid-row: 1;
}

.pricing-grid .pricing-item:nth-child(3) {
  grid-column: 6 / span 2;
  grid-row: 1;
}

/* 2行目：動物4つを並べる */
.pricing-grid .pricing-item:nth-child(4) {
  grid-column: 1 / span 2;
  grid-row: 2;
}

.pricing-grid .pricing-item:nth-child(5) {
  grid-column: 3 / span 2;
  grid-row: 2;
}

.pricing-grid .pricing-item:nth-child(6) {
  grid-column: 5 / span 2;
  grid-row: 2;
}

.pricing-grid .pricing-item:nth-child(7) {
  grid-column: 7 / span 2;
  grid-row: 2;
}

.pricing-grid-4col {
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.pricing-grid-3col-centered {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 15px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid-3col-centered .pricing-item:nth-child(1) {
  grid-column: 2 / 4;
}

.pricing-grid-3col-centered .pricing-item:nth-child(2) {
  grid-column: 4 / 6;
}

.pricing-grid-3col-centered .pricing-item:nth-child(3) {
  grid-column: 6 / 8;
}

.pricing-item {
  background-color: var(--bg-white);
  border: 2px solid #e0e0e0;
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-header {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
  padding: 10px 10px;
  text-align: center;
  border-bottom: 2px solid var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}

.pricing-header h3 {
  margin: 0;
  font-size: 1.2em;
  font-weight: 800;
  color: var(--bg-white);
  line-height: 1.3;
}

.pricing-image {
  width: 100%;
  overflow: hidden;
}

.pricing-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.pricing-price {
  padding: 20px 15px;
  text-align: center;
  background-color: var(--bg-white);
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
}

.price-amount {
  display: inline-block;
  font-size: 2em;
  font-weight: 900;
  color: var(--accent-orange);
  line-height: 1;
}

.price-unit {
  font-size: 1.1em;
  color: var(--text-tertiary);
  font-weight: 600;
}

.pricing-note {
  font-size: 0.95em;
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
  color: var(--text-tertiary);
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 35px;
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F9FC 100%);
  border: none;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-orange-light) 100%);
}

.guarantee-card h4 {
  margin-top: 0;
  color: #1A2B4C;
  font-size: 1.4em;
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.guarantee-card p {
  line-height: 1.9;
  color: var(--text-secondary);
  margin: 0;
  font-size: 1.05em;
}

/* LP限定特典 */
.campaign-section {
  background: transparent;
  border-radius: 20px;
  padding: 40px 40px 45px;
  max-width: 1200px;
  margin: 30px auto 0;
}

.campaign-title {
  text-align: center;
  font-size: 2em;
  color: #1A2B4C;
  font-weight: 800;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.campaign-title-leaf {
  width: 80px;
  height: auto;
  display: inline-block;
}

.campaign-title-leaf-right {
  transform: scaleX(-1);
}

.campaign-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.campaign-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F9FC 100%);
  border: none;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.campaign-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-orange-light) 100%);
}

.campaign-icon {
  flex-shrink: 0;
}

.campaign-icon img {
  width: 70px;
  height: 70px;
  display: block;
}

.campaign-content {
  flex: 1;
  text-align: left;
}

.campaign-label {
  font-size: 1.6em;
  color: #1A2B4C;
  font-weight: 700;
  margin: 0 0 15px 0;
}

.campaign-text {
  font-size: 1.3em;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0 0 18px 0;
  font-weight: 600;
}

.campaign-highlight {
  font-size: 1.9em;
  color: #F97316;
  font-weight: 900;
  margin: 0;
  line-height: 1.2;
}

/* 施工事例 */
.cases-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.story-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

.story-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.story-tag {
  background-color: #f0f4f8;
  color: var(--primary-navy);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 600;
  border: 1px solid #dce4ec;
}

.story-header {
  margin-bottom: 15px;
  border-bottom: 2px solid var(--accent-orange);
  padding-bottom: 15px;
}

.story-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
  color: var(--bg-white);
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.85em;
  font-weight: 800;
  margin-bottom: 12px;
}

.story-header h3 {
  font-size: 1.4em;
  color: var(--primary-navy);
  margin: 0;
  font-weight: 700;
}

.story-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  margin-bottom: 50px;
  align-items: flex-start;
  min-height: 220px;
}

.story-section-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.section-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 1em;
  font-weight: 800;
  margin-bottom: 15px;
}

.before-badge {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: var(--bg-white);
}

.after-badge {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  color: var(--bg-white);
}

.story-section-content p {
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.95em;
}

.story-section-image {
  width: 100%;
  height: 160px;
}

.story-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.customer-voice {
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f0ff 100%);
  padding: 20px 22px;
  border-radius: var(--radius-md);
  border-left: 5px solid var(--primary-navy);
  position: relative;
  margin-top: auto;
}

.customer-voice .voice-text {
  line-height: 1.8;
  color: var(--text-primary);
  font-size: 1em;
  margin: 0;
  padding-top: 0;
  font-style: normal;
  font-weight: 400;
}

/* その他の施工事例 */
.recent-cases-section {
  background-color: var(--bg-white);
  padding: 60px 0;
}

.recent-cases-section .section-title {
  color: var(--primary-navy);
  margin-bottom: 40px;
}

.recent-case-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.recent-case-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #e8e8e8;
}

.recent-case-card--wide {
  grid-column: 2 / span 2;
  flex-direction: row-reverse;
  align-items: flex-start;
  position: relative;
  left: -5cm;
}

.recent-case-card--wide .recent-case-image {
  flex: 0 0 50%;
  height: 100%;
}

.recent-case-card--wide .recent-case-content-wrapper {
  flex: 1;
  padding: 30px;
}

.recent-case-header {
  padding: 15px 20px 10px;
  border-bottom: 1px solid #f0f0f0;
}

.recent-case-label {
  display: inline-block;
  background-color: var(--primary-navy);
  color: var(--bg-white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75em;
  font-weight: 700;
  margin-bottom: 8px;
}

.recent-case-header h3 {
  font-size: 1.0rem;
  color: var(--primary-navy);
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

.recent-case-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.recent-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-case-card--wide .recent-case-image img {
  object-fit: contain;
  transform: translateX(-5mm);
}

.recent-case-content {
  padding: 15px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.recent-case-text {
  font-size: 1em;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* 安全・信頼 */
.safety-section {
  background-color: #f5f7fa;
  padding: 80px 0;
}

.safety-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.safety-text {
  padding: var(--spacing-md);
  line-height: 1.9;
  font-size: 1.3em;
  color: var(--text-secondary);
}

.safety-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.safety-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

/* FAQ */
.faq-section {
  background-color: var(--bg-white);
  padding: 80px 0;
}

.faq-items {
  max-width: 900px;
  margin: 0 auto;
}

.faq-items details {
  border-bottom: 2px solid #f0f0f0;
  padding: 20px 10px;
  margin-bottom: 5px;
  background-color: transparent;
}

.faq-items summary {
  font-weight: bold;
  cursor: pointer;
  font-size: 1.05em;
  padding-left: 30px;
  position: relative;
  color: #222;
}

.faq-items summary::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  background: var(--primary-navy);
  color: #fff;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  font-size: 0.9em;
}

.faq-items p {
  margin-top: 15px;
  font-size: 1em;
  line-height: 1.8;
  padding-left: 30px;
  color: #555;
}

/* CTA */
.cta-section {
  background: var(--bg-white);
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-sm);
}

.cta-title {
  font-size: 2.5em;
  margin-bottom: var(--spacing-md);
  font-weight: 800;
  line-height: 1.4;
  color: var(--text-primary);
}

.cta-text {
  font-size: 1.15em;
  margin-bottom: var(--spacing-lg);
  line-height: 1.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-secondary);
}

.cta-section .btn-primary {
  background: linear-gradient(135deg, var(--accent-orange-light) 0%, var(--accent-orange) 100%);
  color: var(--bg-white);
  box-shadow: 0 6px 30px rgba(255, 106, 0, 0.3);
  font-size: 1.3em;
  padding: 25px 60px;
}

.cta-note {
  font-size: 0.95em;
  margin-top: var(--spacing-md);
  color: var(--text-tertiary);
}

/* フッター */
.site-footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 0 20px;
  font-size: 0.95em;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: var(--accent-orange);
}

.footer-section h4 {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 600;
}

.footer-description {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.footer-contact {
  margin-top: 20px;
}

.footer-phone {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-phone a {
  color: var(--accent-orange);
  text-decoration: none;
}

.footer-hours {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
}

.footer-copyright {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9em;
}

.footer-note {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85em;
}

.hero-image-container {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  max-width: 500px;
  z-index: 10;
}

.hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
  margin-left: -2cm;
}

.recent-case-voice {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  font-style: italic;
  color: #555;
  font-size: 0.95em;
  position: relative;
  padding-left: 25px;
}

.recent-case-voice::before {
  content: "💬";
  position: absolute;
  left: 0;
  top: 15px;
  font-size: 1.2em;
  opacity: 0.7;
}

/* ============================================
   モバイル版スタイル (768px以下)
   ============================================ */

/* SP-only class to show on mobile */
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }

  .pc-only {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-xl: 50px;
    --spacing-lg: 35px;
    --spacing-md: 25px;
  }

  .container {
    padding: 0 20px;
  }

  /* ヘッダー調整 */
  .header-inner {
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
  }

  .header-contact {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .header-contact .phone {
    font-size: 1.5em;
  }

  .header-contact .btn-header {
    white-space: nowrap;
    padding: 12px 30px;
    font-size: 0.95em;
  }

  .header-contact .btn-header.sp-only {
    display: inline-block;
  }

  /* ヒーローセクション */
  .hero-section {
    padding: 40px 0 20px 0;
    min-height: auto;
    height: auto;
  }

  .hero-inner {
    flex-direction: column;
    gap: 10px;
  }

  /* PC用レイアウト調整をリセット */
  .hero-content,
  .hero-image {
    flex: 1;
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 1.9em;
    text-align: center;
    margin: 0;
    line-height: 1.3;
  }

  .hero-text-background {
    margin: 10px 0 0 0;
    padding: 10px;
    display: block;
  }

  .hero-text {
    font-size: 1.2em;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.5;
  }

  .btn-hero {
    margin: 15px 0 0 0;
    padding: 16px 28px;
    font-size: 1.1em;
    width: 100%;
    max-width: 350px;
  }

  .hero-image {
    gap: 15px;
  }

  .hero-image-caption {
    transform: none;
    font-size: 1.4em;
    margin-bottom: 0;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.4);
    position: static;
    order: 2;
  }

  .hero-image img {
    width: 100%;
    max-width: 450px;
    order: 3;
  }

  .hero-stats-section {
    order: 1;
    width: 100%;
    max-width: 100%;
    padding: 20px 15px;
    margin: 10px 0 0 0;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
  }

  .hero-stats-title {
    font-size: 1.3em;
    text-align: center;
    margin-bottom: 15px;
    margin-left: 0;
    color: #FFFFFF;
  }

  .hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-items: center;
    align-items: start;
  }

  .hero-stat-card {
    gap: 2px;
  }

  .hero-stat-wreath {
    width: 65px;
    height: 65px;
  }

  .hero-stat-number {
    font-size: 1.2em;
  }

  .hero-stat-unit {
    font-size: 0.7em;
  }

  .hero-stat-label {
    font-size: 0.7em;
    white-space: normal;
    line-height: 1.1;
  }

  .hero-stat-label::after {
    display: none;
  }

  .hero-image::after {
    display: none;
  }

  /* 他セクションの微調整 */
  .section-title {
    font-size: 1.6em;
    margin-bottom: 40px;
  }

  .problems-content {
    flex-direction: column;
  }

  .problems-section .section-title {
    font-size: 1.35em;
    white-space: nowrap;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .flow-steps {
    gap: 25px;
  }

  .flow-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    gap: 0;
  }

  .flow-step-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    width: 100%;
    margin-bottom: 15px;
  }

  .flow-step-header h4 {
    margin: 0;
  }

  .flow-step img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    max-width: 100%;
    margin-bottom: 15px;
  }

  p.flow-step-description {
    width: 100%;
    text-align: left;
    line-height: 1.8;
    margin: 0;
  }

  .pricing-grid-3col-centered,
  .pricing-grid-4col {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid-3col-centered .pricing-item:nth-child(1),
  .pricing-grid-3col-centered .pricing-item:nth-child(2),
  .pricing-grid-3col-centered .pricing-item:nth-child(3) {
    grid-column: auto;
  }

  .campaign-cards {
    grid-template-columns: 1fr;
  }

  .recent-case-cards {
    grid-template-columns: 1fr !important;
  }

  .recent-case-card--wide .recent-case-content-wrapper {
    flex-direction: column;
  }

  .areas-map {
    margin: 20px auto;
  }

  .btn-cta-large {
    font-size: 1.5em;
    padding: 20px 30px;
    margin-left: 0;
    margin-right: 0;
    display: block;
    margin: 0 auto;
    text-align: center;
  }

  .areas-cta-note {
    font-size: 1em;
  }

  footer.site-footer {
    padding: 30px 0 20px;
  }

  footer .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }

  footer .footer-section {
    margin-bottom: 25px;
  }

  footer .footer-section:last-of-type {
    margin-bottom: 0;
  }

  footer .footer-section h3 {
    font-size: 1.3em;
  }

  footer .footer-section h4 {
    margin-bottom: 10px;
    font-size: 1.1em;
  }

  footer .footer-links {
    padding-left: 0;
    list-style: none;
    margin: 0;
  }

  footer .footer-section:nth-child(2) .footer-links li {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 2px;
  }

  footer .footer-section:nth-child(3) .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 15px;
    max-width: 320px;
    margin: 0 auto;
  }

  footer .footer-section:nth-child(3) .footer-links li {
    text-align: left;
    font-size: 14px;
  }

  .footer-bottom {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
  }

  .footer-copyright,
  .footer-note {
    font-size: 11px;
    line-height: 1.4;
  }

  /* ヘッダー詳細 */
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
  }

  .logo {
    width: 100%;
  }

  .logo h1 {
    font-size: 1em;
  }

  .header-contact {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .header-contact .hours {
    font-size: 0.7em;
  }

  .header-contact .phone {
    font-size: 1em;
  }

  .header-contact .btn-header {
    width: 100%;
    max-width: 300px;
    padding: 8px 16px;
    font-size: 0.8em;
  }

  /* ボタン */
  .btn {
    padding: 14px 30px;
    font-size: 0.95em;
  }

  .btn-cta {
    padding: 16px 35px;
    font-size: 1.05em;
  }

  section {
    padding: 50px 0;
  }

  /* 悩み共感セクション */
  .problems-content {
    flex-direction: column;
    gap: 30px;
  }

  .problem-image {
    flex: 1;
    max-width: 100%;
  }

  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .problem-item {
    padding: 25px 15px;
    padding-top: 45px;
    font-size: 0.9em;
  }

  .problem-item::before {
    left: 50%;
    transform: translateX(-50%);
    top: 12px;
    width: 30px;
    height: 30px;
    font-size: 1.1em;
  }

  .reasons-grid,
  .voice-cards,
  .guarantee,
  .numbers-grid,
  .story-cards,
  .campaign-cards {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .pricing-grid-3col-centered .pricing-item:nth-child(1),
  .pricing-grid-3col-centered .pricing-item:nth-child(2),
  .pricing-grid-3col-centered .pricing-item:nth-child(3) {
    grid-column: auto;
  }

  /* ストーリーカード - モバイル調整 */
  .story-card {
    padding: 20px;
  }

  .story-section {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .story-section-image {
    height: 180px;
  }

  .story-section-image img {
    height: 100%;
  }

  .story-header h3 {
    font-size: 1.2em;
  }

  .customer-voice {
    padding: 20px;
  }

  /* LP限定特典 - モバイル調整 */
  .campaign-section {
    padding: 35px 10px;
    margin: 30px auto 0;
  }

  .campaign-title {
    font-size: 1.5em;
    flex-direction: row;
    gap: 10px;
  }

  .campaign-title-leaf {
    width: 40px;
    height: auto;
  }

  .campaign-section .campaign-cards {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .campaign-card {
    padding: 15px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .campaign-icon img {
    width: 40px;
    height: 40px;
  }

  .campaign-content {
    text-align: center;
  }

  .campaign-label {
    font-size: 0.9em;
    margin: 0 0 5px 0;
  }

  .campaign-text {
    font-size: 0.65em;
    line-height: 1.5;
    margin: 0 0 8px 0;
  }

  .campaign-highlight {
    font-size: 1.0em;
  }

  /* 数字セクション - モバイル調整 */
  .numbers-image {
    flex: 0 0 220px;
    max-width: 220px;
  }

  /* 料金セクション - モバイル調整 */
  .category-title {
    font-size: 1.4em;
    margin-bottom: 15px;
  }

  .pricing-header {
    padding: 20px 15px;
    min-height: 75px;
  }

  .pricing-header h3 {
    font-size: 1.6em;
  }

  .price-amount {
    font-size: 3em;
  }

  /* サービス - モバイル調整 */
  .services-section {
    padding: 50px 0;
  }

  .services-emergency-badge {
    font-size: 0.95em;
    padding: 8px 18px;
  }

  .services-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .stat-number {
    font-size: 2.5em;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-item {
    padding: 0;
  }

  .service-badge {
    top: 10px;
    right: 10px;
    font-size: 0.75em;
    padding: 5px 12px;
  }

  .service-item-title {
    font-size: 1.3em;
    padding: 24px 20px 16px;
  }

  .service-item-title::before {
    left: 20px;
    width: 50px;
  }

  .service-features {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 20px;
  }

  .feature-item {
    padding: 12px 10px;
    font-size: 0.9em;
  }

  .service-item .service-text {
    padding: 24px 20px 28px;
  }

  .service-item .service-text p {
    font-size: 1em;
  }

  .service-image-main {
    height: 200px;
  }

  .service-images-sub img {
    height: 140px;
  }

  .service-item:first-child .service-image-main {
    height: 281px;
  }

  .service-item:last-child .service-image-main {
    height: 281px;
  }

  .services-cta {
    padding: 35px 20px;
  }

  .services-cta-text {
    font-size: 1em;
  }

  /* 対応エリアセクション - モバイル調整 */
  .areas-section-enhanced {
    padding: 40px 0;
  }

  .areas-section-enhanced .section-title {
    font-size: 1.6em;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .areas-lead-text {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .areas-cta-large {
    margin: 0 auto 30px;
  }

  .btn-cta-large {
    font-size: 1.2em;
    padding: 18px 30px;
    width: 100%;
    max-width: 350px;
  }

  .areas-cta-note {
    font-size: 0.85em;
    margin-top: 15px;
    line-height: 1.6;
  }

  /* 対応エリアCTA - モバイル調整 */
  .areas-cta {
    margin: 30px auto 25px;
  }

  .areas-cta-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .areas-cta .btn {
    font-size: 1.05em;
    padding: 16px 35px;
  }

  /* 作業の流れ */
  .flow-steps {
    grid-template-columns: 1fr;
  }

  .flow-image {
    height: 300px;
  }

  /* 施工事例・安全 */
  .safety-content,
  .case-content {
    grid-template-columns: 1fr;
  }

  .safety-image {
    height: 300px;
  }

  .case-images img {
    height: 250px;
  }

  /* CTA */
  .cta-title {
    font-size: 1.6em;
  }

  .cta-text {
    font-size: 1em;
  }

  /* --- 料金セクションのスマホ表示を2列に修正 --- */
  .pricing-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .pricing-grid .pricing-item,
  .pricing-grid .pricing-item:nth-child(1),
  .pricing-grid .pricing-item:nth-child(2),
  .pricing-grid .pricing-item:nth-child(3),
  .pricing-grid .pricing-item:nth-child(4),
  .pricing-grid .pricing-item:nth-child(5),
  .pricing-grid .pricing-item:nth-child(6),
  .pricing-grid .pricing-item:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
  }

  .pricing-item .pricing-header {
    padding: 15px 10px;
    min-height: 60px;
  }

  .pricing-item .pricing-header h3 {
    font-size: 1.1em !important;
  }

  .pricing-item .pricing-price {
    padding: 15px 10px;
    flex-direction: column;
    gap: 2px;
    align-items: center;
  }

  .pricing-item .price-amount {
    font-size: 2.2em !important;
  }

  .pricing-item .price-unit {
    font-size: 0.9em !important;
  }

  .pricing-grid .pricing-item:last-child {
    grid-column: 1 / -1;
  }

  /* LP限定特典セクションの調整 */
  .campaign-section {
    padding: 20px 0;
  }

  .campaign-cards {
    gap: 15px;
  }

  .campaign-card {
    padding: 10px;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .campaign-icon img {
    width: 50px;
    height: 50px;
  }

  .campaign-content {
    text-align: center;
  }

  .campaign-label {
    font-size: 1.0em;
    margin-bottom: 5px;
  }

  .campaign-text {
    font-size: 0.7em;
    line-height: 1.3;
    margin: 0 0 5px 0;
  }

  .campaign-highlight {
    font-size: 1.5em;
    line-height: 1.1;
  }

  /* フッターのサービス内容の各項目を中央揃え */
  footer .footer-section:nth-child(3) .footer-links li {
    text-align: center;
  }

  /* --- 施工事例・お客様の声のスマホ表示修正 --- */
  .recent-case-cards {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .recent-case-card {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    padding: 0 !important;
  }

  .recent-case-card .recent-case-header {
    padding: 15px 20px 10px;
  }

  .recent-case-card .recent-case-image {
    padding-left: 0;
    padding-right: 0;
  }

  .recent-case-card .recent-case-content {
    padding: 15px 20px;
  }

  .recent-case-card .customer-voice {
    margin: 0 20px 20px;
    width: auto;
  }

  .recent-case-card--wide {
    position: static !important;
    grid-column: auto !important;
    left: auto !important;
  }

  .recent-case-card--wide .recent-case-content-wrapper {
    display: contents;
  }

  .recent-case-card--wide .recent-case-header {
    order: 1;
  }

  .recent-case-card--wide .recent-case-image {
    order: 2;
    width: 100%;
    height: auto;
  }

  .recent-case-card--wide .recent-case-content {
    order: 3;
  }

  .recent-case-card--wide .customer-voice {
    order: 4;
  }

  .recent-case-card--wide .recent-case-image img {
    transform: none !important;
  }

  .recent-case-header h3 {
    font-size: 1em;
  }

  .recent-case-image {
    height: 160px;
  }

  .recent-case-content {
    padding: 12px 15px;
  }

  .recent-case-text {
    font-size: 0.85em;
  }

  .numbers-content {
    flex-direction: column;
    gap: 30px;
  }

  .numbers-image {
    flex: 1;
    max-width: 100%;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hero-stat-card {
    flex: 1;
    text-align: center;
    gap: 2px;
  }

  .hero-stat-wreath {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    filter: none;
  }

  .hero-stat-number,
  .hero-stat-unit {
    text-shadow: none;
  }

  .hero-stat-number {
    font-size: 1em;
  }

  .hero-stat-unit {
    font-size: 0.7em;
  }

  .hero-stat-label {
    font-size: 0.6em;
    white-space: normal;
    line-height: 1.2;
    padding: 0;
  }

  .hero-stat-label::after {
    display: block;
    width: 30px;
    height: 4px;
  }
}