/* ==========================================
   パトロール給油LP スタイル
   ========================================== */

/* CSS変数定義 */
:root {
  /* カラー */
  --color-primary: #f8571e;
  --color-secondary: #ffaf16;
  --color-bg-white: #ffffff;
  --color-bg-cream: #fff7e9;
  --color-text-main: #382014;
  --color-text-sub: #5a4030;
  --color-border: #e0d5c8;
  --color-footer-bg: #382014;

  /* フォント */
  --font-main: "Noto Sans JP", sans-serif;
  --font-accent: "Quicksand", sans-serif;

  /* サイズ */
  --container-max: 1200px;
  --header-height: 80px;

  /* トランジション */
  --transition: all 0.3s ease;
}

/* リセット */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-main);
  background-color: var(--color-bg-white);
  letter-spacing: 0.025em;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* コンテナ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================
   ヘッダー
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: transparent;
  box-shadow: none;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background-color: var(--color-bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 160px;
  height: auto;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-main);
  letter-spacing: 0.05em;
}

.footer .logo-text {
  color: var(--color-bg-white);
  font-size: 22px;
}

.nav {
  display: flex;
}

.nav-list {
  display: flex;
  gap: 18px;
  flex-wrap: nowrap;
}

.nav-list a {
  font-size: 13px;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}

.nav-list a:hover {
  color: var(--color-primary);
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition);
}

.nav-list a:hover::after {
  width: 100%;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.business-hours {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  text-align: right;
  color: var(--color-text-sub);
}

.tel-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
}

.tel-button:hover {
  opacity: 0.8;
}

.tel-icon {
  font-size: 18px;
}

.tel-number {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 700;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-main);
  transition: var(--transition);
}

/* ==========================================
   セクションタイトル
   ========================================== */
.section-title {
  margin-bottom: 50px;
}

.section-title.center {
  text-align: center;
}

.section-title-en {
  display: block;
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.section-title-ja {
  display: block;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
}

/* ==========================================
   ヒーローセクション
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  background-color: #fed25f;
}

.hero > .container {
  width: 100%;
}

.hero-inner {
  display: block;
  max-width: 100%;
}

.hero-content {
  color: var(--color-text-main);
  padding: 60px 0;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.hero-image {
  position: absolute;
  right: 40px;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  max-width: 50%;
}

.hero-image img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.hero-sub {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-catch {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 40px;
  color: var(--color-text-main);
}

/* ヒーローバッジ */
.hero-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.hero-tel-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  padding: 20px 40px;
  border-radius: 10px;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(248, 87, 30, 0.4);
}

.hero-tel-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(248, 87, 30, 0.5);
}

.hero-tel-icon {
  font-size: 32px;
}

.hero-tel-text {
  display: flex;
  flex-direction: column;
}

.hero-tel-label {
  font-size: 14px;
  opacity: 0.9;
}

.hero-tel-number {
  font-family: var(--font-accent);
  font-size: 28px;
  font-weight: 700;
}

.hero-hours {
  font-size: 14px;
  color: var(--color-text-sub);
}

/* ==========================================
   お困りごと（カード形式）
   ========================================== */
.troubles {
  padding: 80px 0;
  background-color: #FFFEF9;
}

.troubles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.troubles-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 課題カード（上部・白背景） */
.trouble-card {
  position: relative;
  background-color: #fff;
  border: 2px solid #333;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  padding-bottom: 32px;
  flex-grow: 1;
}

.trouble-card p {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.trouble-card .highlight {
  color: #dc2626;
}

/* 課題カード内の画像 */
.trouble-card-image {
  width: 100%;
  height: 160px;
  background-color: #f3f4f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 8px;
}

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

.trouble-card-image svg {
  width: 64px;
  height: 64px;
  color: #9ca3af;
}

/* 吹き出しの三角形 */
.speech-triangle {
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  z-index: 10;
}

/* 解決カード（下部・黄色背景） */
.solution-card {
  margin-top: 16px;
  background-color: var(--color-secondary);
  border: 2px solid #333;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.solution-card-label {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}

.solution-card p {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.8;
}

/* 見出しのマーカー線 */
.marker-underline {
  background: linear-gradient(transparent 60%, var(--color-secondary) 60%);
  display: inline-block;
  padding: 0 4px;
}

/* レスポンシブ対応 */
@media (max-width: 900px) {
  .troubles-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ==========================================
   選ばれる理由
   ========================================== */
.reasons {
  padding: 80px 0;
  background-color: var(--color-bg-cream);
}

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

.reason-card {
  background-color: var(--color-bg-white);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reason-number {
  font-family: var(--font-accent);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.reason-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.reason-desc {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.8;
}

/* ==========================================
   サービス詳細
   ========================================== */
.service-detail {
  padding: 80px 0;
  background-color: var(--color-bg-white);
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail-lead {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--color-text-main);
}

.service-detail-list {
  background-color: var(--color-bg-cream);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.service-detail-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
}

.service-detail-list li:last-child {
  margin-bottom: 0;
}

.service-detail-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 18px;
}

.service-detail-cta {
  margin-top: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(248, 87, 30, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(248, 87, 30, 0.4);
}

.service-detail-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   対応エリア
   ========================================== */
.area {
  padding: 0 0 80px 0;
  background-color: var(--color-bg-cream);
  overflow: hidden;
}

.area-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.area-info .section-title {
  text-align: left;
  margin-bottom: 30px;
}

.area-map {
  position: relative;
  margin-right: calc(-50vw + 50%);
}

.area-map img {
  width: 100%;
  height: auto;
}

#area-radar-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.area-subtitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.area-cities {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 20px;
  color: var(--color-text-sub);
}

.area-note {
  font-size: 14px;
  color: var(--color-text-sub);
  padding: 15px 20px;
  background-color: var(--color-bg-white);
  border-radius: 8px;
  border-left: 4px solid var(--color-primary);
}

/* ==========================================
   ご利用の流れ
   ========================================== */
.flow {
  padding: 80px 0;
  background-color: var(--color-bg-white);
}

.flow-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.flow-step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 30px 20px;
  background-color: var(--color-bg-cream);
  border-radius: 10px;
  transition: var(--transition);
}

.flow-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.flow-step-number {
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.flow-step-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.flow-step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.flow-step-desc {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.7;
}

.flow-arrow {
  display: flex;
  align-items: center;
  font-size: 40px;
  color: var(--color-primary);
  font-weight: 700;
  padding-top: 80px;
}

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

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-bg-white);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: var(--color-text-main);
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--color-bg-cream);
}

.faq-toggle {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 25px 30px;
  color: var(--color-text-sub);
  line-height: 1.8;
}

/* ==========================================
   会社情報
   ========================================== */
.company {
  padding: 80px 0;
  background-color: var(--color-bg-white);
}

.company-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.company-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table tr {
  border-bottom: 1px solid var(--color-border);
}

.company-table th,
.company-table td {
  padding: 20px 15px;
  text-align: left;
}

.company-table th {
  width: 120px;
  font-weight: 600;
  color: var(--color-text-main);
  background-color: var(--color-bg-cream);
}

.company-table td {
  color: var(--color-text-sub);
}

.company-table a {
  color: var(--color-primary);
  font-weight: 600;
}

.company-table a:hover {
  text-decoration: underline;
}

/* ==========================================
   CTA
   ========================================== */
.cta {
  position: relative;
  padding: 100px 0;
  background-image: url('images/contact-back.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* オーバーレイ */
.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.85) 0%, rgba(255, 175, 22, 0.85) 100%);
  z-index: 1;
}

.cta > .container {
  position: relative;
  z-index: 2;
}

.cta-content {
  text-align: center;
  color: var(--color-bg-white);
}

/* モバイルではパララックスを無効化（パフォーマンス対策） */
@media (max-width: 768px) {
  .cta {
    background-attachment: scroll;
  }
}

.cta-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-desc {
  margin-bottom: 35px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.cta-tel {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--color-bg-white);
  color: var(--color-text-main);
  padding: 20px 35px;
  border-radius: 10px;
  transition: var(--transition);
}

.cta-tel:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-tel-icon {
  font-size: 28px;
}

.cta-tel-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cta-tel-label {
  font-size: 12px;
  color: var(--color-text-sub);
}

.cta-tel-number {
  font-family: var(--font-accent);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-primary);
}

.cta-hours {
  font-size: 14px;
  opacity: 0.9;
}

/* ==========================================
   フッター
   ========================================== */
.footer {
  background-color: var(--color-footer-bg);
  color: var(--color-bg-white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
  margin-bottom: 20px;
  max-width: 180px;
  filter: brightness(0) invert(1);
}

.footer-company {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-address,
.footer-tel {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 5px;
}

.footer-nav ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.footer-nav a {
  font-size: 14px;
  opacity: 0.8;
}

.footer-nav a:hover {
  color: var(--color-secondary);
  opacity: 1;
}

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

.copyright {
  font-size: 12px;
  opacity: 0.6;
}

/* ==========================================
   固定フッターCTA
   ========================================== */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 10px 15px;
  background-color: var(--color-primary);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
}

.fixed-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background-color: var(--color-bg-white);
  color: var(--color-primary);
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  transition: var(--transition);
}

.fixed-cta-btn:hover {
  transform: scale(1.02);
}

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

/* PC表示では右下に固定ボタン */
@media (min-width: 769px) {
  .fixed-cta {
    left: auto;
    right: 30px;
    bottom: 30px;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }

  .fixed-cta-btn {
    width: auto;
    padding: 16px 28px;
    background-color: var(--color-primary);
    color: var(--color-text);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-size: 16px;
  }

  .fixed-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  }

  body {
    padding-bottom: 0;
  }
}

/* スマホ表示では固定CTA分の余白を確保 */
@media (max-width: 768px) {
  body {
    padding-bottom: 80px;
  }
}

/* ==========================================
   アニメーション
   ========================================== */
.animate-target {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-target.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.reason-card:nth-child(2) {
  transition-delay: 0.1s;
}

.reason-card:nth-child(3) {
  transition-delay: 0.2s;
}

.flow-step:nth-child(2) {
  transition-delay: 0.1s;
}

.flow-step:nth-child(3) {
  transition-delay: 0.2s;
}

/* モバイルナビゲーション */
@media (max-width: 1024px) {
  .nav.active {
    display: block;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: var(--color-bg-white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }

  .nav.active .nav-list {
    flex-direction: column;
    gap: 15px;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* ==========================================
   レスポンシブ
   ========================================== */
@media (max-width: 1024px) {
  .nav {
    display: none;
  }

  .header-contact {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-image {
    max-width: 40%;
    right: 20px;
  }

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

@media (max-width: 900px) {
  .hero-image {
    max-width: 35%;
  }

  .hero-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  /* ヒーロー */
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 40px;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }

  .hero-content {
    display: contents;
  }

  .hero-sub {
    order: 1;
    text-align: left;
  }

  .hero-title {
    order: 2;
    text-align: left;
  }

  .hero-catch {
    order: 3;
    text-align: left;
  }

  .hero-badges {
    justify-content: flex-start;
  }

  .hero-image {
    order: 5;
    position: static;
    height: auto;
    max-width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 0 30px 0;
  }

  .hero-image img {
    height: auto;
    width: 100%;
    max-width: 400px;
  }

  .hero-cta {
    order: 6;
    align-items: center;
    width: 100%;
  }

  .hero-tel-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-hours {
    text-align: center;
  }

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

  .hero-sub {
    font-size: 13px;
  }

  .hero-catch {
    font-size: 15px;
    white-space: nowrap;
  }

  .hero-tel-btn {
    padding: 15px 25px;
  }

  .hero-tel-number {
    font-size: 22px;
  }

  /* セクションタイトル */
  .section-title-ja {
    font-size: 22px;
  }

  /* お困りごと */
  .trouble-item {
    padding: 15px 20px;
  }

  .trouble-text {
    font-size: 15px;
  }

  .troubles-solution {
    font-size: 18px;
  }

  .troubles-solution strong {
    font-size: 22px;
  }

  /* 選ばれる理由 */
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  /* サービス詳細 */
  .service-detail-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail-image {
    order: -1;
  }

  .service-detail-cta .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .service-detail-lead {
    font-size: 18px;
  }

  /* 対応エリア */
  .area {
    padding-top: 80px;
  }

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

  .area-info {
    display: contents;
  }

  .area-info .section-title {
    order: 1;
    text-align: center;
  }

  .area-map {
    order: 2;
    margin-right: 0;
  }

  .area-subtitle {
    order: 3;
    font-size: 20px;
    text-align: center;
  }

  .area-cities {
    order: 4;
    text-align: center;
  }

  .area-note {
    order: 5;
  }

  /* ご利用の流れ */
  .flow-steps {
    flex-direction: column;
    align-items: center;
  }

  .flow-step {
    max-width: 100%;
    width: 100%;
  }

  .flow-arrow {
    transform: rotate(90deg);
    padding: 0;
    font-size: 30px;
  }

  /* FAQ */
  .faq-question {
    padding: 20px;
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 20px 20px;
    font-size: 14px;
  }

  /* 会社情報 */
  .company-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .company-table th {
    width: 100px;
    font-size: 14px;
  }

  .company-table td {
    font-size: 14px;
  }

  /* CTA */
  .cta-title {
    font-size: 22px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-tel {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* フッター */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-nav ul {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
