        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans CJK JP', sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* ヘッダー */
        .header {
            background: white;
            padding: 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: relative;
            z-index: 1000;
        }
        
        .header-top {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
            padding: 10px 0;
            font-size: 0.9rem;
            text-align: center;
        }
        
        .header-main {
            padding: 20px 0;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-icon {
            width: 80px;
            height: 80px;
            background-image: url('img/logo.jpg');
            background-size: cover;
            background-position: center;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        
        .logo-icon:hover {
            transform: scale(1.05);
        }
        
        .company-info h1 {
            font-size: 1.8rem;
            font-weight: bold;
            color: #2c5530;
            margin-bottom: 5px;
        }
        
        .company-tagline {
            font-size: 0.9rem;
            color: #666;
            font-weight: normal;
        }
        
        .header-contact {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .contact-info {
            text-align: right;
        }
        
        .phone-number {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ff6b35;
            text-decoration: none;
            display: block;
            margin-bottom: 5px;
        }
        
        .phone-sub {
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
        }
        
        .header-cta {
            display: flex;
            gap: 10px;
        }
        
        .header-btn {
            padding: 12px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-phone {
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }
        
        .btn-line {
            background: linear-gradient(45deg, #00c851, #007e33);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 200, 81, 0.3);
        }
        
        .btn-mail {
            background: linear-gradient(45deg, #007bff, #0056b3);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
        }
        
        .header-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        }
        
         /* メインヒーローセクション */
        .hero {
            position: relative;
            /* height: 153vh; */
            color: white;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        /* 背景画像スライドショー */
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }

        /* 警告バナー画像の見た目 */
    .warning-banner{text-align:center;margin-bottom:40px}
    .warning-banner img{max-width:100%;height:auto;border-radius:12px;box-shadow:0 8px 20px rgba(0,0,0,.15)}

        .bg-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            animation: slideShow 24s infinite;
            
        }

          .ba-total{
    display:flex;justify-content:space-between;align-items:baseline;
    gap:1rem;padding:12px 14px;margin:12px 0 6px;
    background:#fff8e6;border:1px solid #f5d7a7;border-radius:10px;
  }
  .ba-total .label{font-weight:700;letter-spacing:.04em}
  .ba-total .price{font-variant-numeric:tabular-nums;font-weight:800}
  /* 内訳の見た目は変えないが、金額だけ右寄せ（不要なら以下2行を削除） */
  .ba-cost ul{list-style:none;padding-left:0;margin:8px 0 0}
  .ba-cost li{display:flex;justify-content:space-between;gap:12px}
  .ba-cost li>.amount{min-width:9ch;text-align:right;font-variant-numeric:tabular-nums}
  .ba-tax-note,.ba-tax-note-global{margin-top:8px;color:#666;font-size:.9rem}
  @media (max-width:480px){.ba-total{padding:10px 12px}}

        .ba-cost ul{list-style:none;margin:0;padding:0;display:grid;gap:10px;margin-top: 10px;}
.ba-cost li{
  display:grid;
  grid-template-columns: 1fr auto;      /* 左：ラベル / 右：価格 */
  align-items:center;
  padding:10px 12px;
  border:1px solid rgba(0,0,0,.06);
  border-radius:12px;
  background:linear-gradient(180deg,#fff, #f8fafc);
  box-shadow:0 1px 6px rgba(0,0,0,.04);
  color:#0f172a;
  font-weight:600;
  position:relative;
}
/* ラベルの視認性 */
.ba-cost li .label{ color:#334155; letter-spacing:.01em; }
/* 価格を右端で目立たせるピル */
.ba-cost .price{
  justify-self:end;
  font-variant-numeric: tabular-nums;
  font-weight:800;
  font-size:1.05rem;
  color:#025e57;
  background:rgba(2,94,87,.08);
  padding:4px 10px;
  border-radius:10px;
  border:1px solid rgba(2,94,87,.18);
  white-space:nowrap;
}
/* ラベル→価格の誘導（点線リーダー） */
.ba-cost li::after{
  content:"";
  grid-column:1/-1; order:-1; height:1px;
  background-image: radial-gradient(currentColor 1px,transparent 1.2px);
  background-size:6px 2px; background-repeat:repeat-x;
  opacity:.28; transform: translateY(12px);
   display: none !important;
}
/* 税別注記 */
.ba-cost .tax-note{
  margin:8px 2px 0;
  font-size:.82rem;
  color:#64748b;
  letter-spacing:.01em;
}
/* モバイル微調整 */
@media (max-width:520px){
  .ba-cost li{ padding:10px 10px; }
  .ba-cost .price{ font-size:1rem; }
}

        /* 蜂駆除専門業者らしい緊急性ある背景画像 */
        .bg-slide:nth-child(1) {
            background-image:  linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.5)),
                              url('img/top.jpg');
            animation-delay: 0s;
        }

        .bg-slide:nth-child(2) {
            background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.5)),
                              url('img/top2.jpg');
            animation-delay: 6s;
        }

        .bg-slide:nth-child(3) {
            background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.5)),
                              url('img/top3.jpg');
            animation-delay: 12s;
        }

        .bg-slide:nth-child(4) {
            background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.5)),
                              url('img/top4.jpg');
            animation-delay: 18s;
        }

        @keyframes slideShow {
            0% { opacity: 0; }
            8% { opacity: 1; }
            25% { opacity: 1; }
            33% { opacity: 0; }
            100% { opacity: 0; }
        }

        /* コンテンツエリア */
        .hero-content {
            text-align: center;
            z-index: 10;
            max-width: 1000px;
            width: 100%;
        }

        /* 緊急対応バッジ */
        .emergency-badge {
            background: linear-gradient(45deg, #dc3545, #ff0000);
            color: white;
            padding: 18px 45px;
            border-radius: 35px;
            font-size: 1.2rem;
            font-weight: 900;
            margin-bottom: 30px;
            display: inline-block;
            animation: emergencyPulse 1s ease-in-out infinite;
            box-shadow: 0 8px 30px rgba(220, 53, 69, 0.8), 0 0 0 3px rgba(255, 255, 255, 0.3);
            border: 4px solid #ffffff;
            text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @keyframes emergencyPulse {
            0%, 100% { 
                transform: scale(1); 
                box-shadow: 0 8px 30px rgba(220, 53, 69, 0.8), 0 0 0 3px rgba(255, 255, 255, 0.3);
            }
            50% { 
                transform: scale(1.08); 
                box-shadow: 0 12px 40px rgba(255, 0, 0, 0.9), 0 0 0 5px rgba(255, 255, 255, 0.5);
            }
        }

        /* メインタイトル */
        .hero h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.2;
            animation: fadeInUp 1s ease-out 0.3s both;
            text-shadow: 4px 3px 10px rgba(0, 0, 0, 0.8);
        }

        /* サブタイトル */
        .hero .subtitle {
            font-size: 1.5rem;
            margin-bottom: 10px;
            font-weight: 600;
            animation: fadeInUp 1s ease-out 0.5s both;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
        }

        .hero .description {
            font-size: 1.3rem;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease-out 0.7s both;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
            line-height: 1.5;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 特徴カード（3つ横並び） */
        .features-top {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease-out 0.9s both;
        }

        .features-top .feature-card {
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .features-top .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(0, 0, 0, 0.7);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .features-top .feature-card .icon {
            font-size: 2.5rem;
            margin-bottom: 5px;
            display: block;
        }

        .features-top .feature-card .title {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 5px;
            color: white;
        }

        .features-top .feature-card .desc {
            font-size: 1rem;
            color: #ddd;
        }

        /* ボタンエリア（3つ横並び） */
        .hero-buttons {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease-out 1.1s both;
        }

        .contact-button {
            padding: 18px 25px;
            font-size: 1.2rem;
            font-weight: bold;
            border-radius: 25px;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .phone-button {
            background: linear-gradient(45deg, #dc3545, #ff0000);
            color: white;
            border: 4px solid #ffffff;
            box-shadow: 0 6px 25px rgba(220, 53, 69, 0.7), 0 0 0 2px rgba(255, 0, 0, 0.3);
            animation: emergencyButtonPulse 1.2s ease-in-out infinite;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .phone-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 0, 0, 0.9), 0 0 0 3px rgba(255, 255, 255, 0.5);
        }

        @keyframes emergencyButtonPulse {
            0%, 100% { 
                box-shadow: 0 6px 25px rgba(220, 53, 69, 0.7), 0 0 0 2px rgba(255, 0, 0, 0.3);
                transform: scale(1);
            }
            50% { 
                box-shadow: 0 8px 30px rgba(255, 0, 0, 0.9), 0 0 0 4px rgba(255, 255, 255, 0.4);
                transform: scale(1.03);
            }
        }

        .line-button {
            background: #06c755;
            color: white;
        }

        .line-button:hover {
            transform: translateY(-2px);
            background: #05b04a;
            box-shadow: 0 8px 20px rgba(6, 199, 85, 0.4);
        }

        .mail-button {
            background: #1e88e5;
            color: white;
        }

        .mail-button:hover {
            transform: translateY(-2px);
            background: #1976d2;
            box-shadow: 0 8px 20px rgba(30, 136, 229, 0.4);
        }

        /* 受付時間カード（2つ横並び） */
        .reception-info {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            animation: fadeInUp 1s ease-out 1.3s both;
        }

        .reception-card {
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
        }

        .reception-card .icon {
            font-size: 2rem;
            margin-bottom: 10px;
            display: block;
        }

        .reception-card .title {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 5px;
            color: white;
        }

        .reception-card .time {
            font-size: 1rem;
            color: #ddd;
        }

        .reception-card .note {
            font-size: 0.85rem;
            color: #aaa;
            margin-top: 5px;
        }

        /* === 他社比較（カード） === */
        .comparison-section{ padding:80px 0; background:#fff; }
        .comparison-wrap{ max-width:1000px; margin:0 auto; }
        .plan-cards{ display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin-top:2rem; }
        .plan-card{ flex:1; min-width:200px; max-width:260px; background:#fff; border:1px solid #e5e5e5; border-radius:8px; padding:1.5rem 1rem; text-align:center; box-shadow:0 2px 6px rgba(0,0,0,.05); position:relative; }
        .plan-card.highlight{ border:2px solid #ff6b00; box-shadow:0 4px 12px rgba(255,107,0,0.2); }
        .plan-badge{ position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:#ff6b00; color:#fff; font-size:12px; padding:2px 8px; border-radius:12px; }
        .plan-title{ font-size:1.2rem; margin:0.5rem 0; font-weight:700; }
        .plan-sub{ font-size:.85rem; color:#777; margin-bottom:.8rem; }
        .plan-price{ font-size:1.6rem; font-weight:700; color:#ff6b00; margin-bottom:1rem; }
        .plan-price span{ display:block; font-size:.8rem; color:#777; font-weight:400; }
        .plan-features{ list-style:none; padding:0; margin:0; font-size:.9rem; color:#444; }
        .plan-features li{ padding:.3rem 0; border-top:1px solid #f0f0f0; }
        .plan-features li:first-child{ border-top:none; }

        /* ===== Variation A: Before→After スライダー（Testimonials） ===== */
        .ba-wrap{ padding:100px 0; background:linear-gradient(135deg,#f8f9fa 0%,#e9ecef 100%); }
        .ba-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); gap:28px; }
        .ba-card{
          background:#fff; border-radius:16px; overflow:hidden; box-shadow:0 10px 30px rgba(0,0,0,.08);
          border:1px solid #eee;
        }
        .ba-slider{ position:relative; aspect-ratio: 16/10; background:#000; }
        .ba-slider img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }
        .ba-after{ clip-path: inset(0 0 0 50%); transition: clip-path .12s ease; }
        .ba-handle{ position:absolute; inset:0; pointer-events:none; --x:50%; }
        .ba-line{ position:absolute; top:0; bottom:0; left:calc(var(--x) - 1px); width:2px; background:rgba(255,255,255,.95); }
        .ba-knob{
          position:absolute; top:50%; left:var(--x); transform:translate(-50%,-50%);
          width:44px; height:44px; border-radius:50%; background:#fff; color:#000; display:grid; place-items:center; font-weight:700;
          box-shadow:0 6px 16px rgba(0,0,0,.35); pointer-events:auto; cursor:ew-resize;
        }
        .ba-range{ position:absolute; inset:0; opacity:0; width:100%; cursor:ew-resize }
        .ba-labels{ position:absolute; inset:12px auto auto 12px; display:flex; gap:8px; z-index:2 }
        .tag{ padding:6px 10px; border-radius:999px; font-size:12px; font-weight:700; letter-spacing:.02em; }
        .tag.before{ background:rgba(248,113,113,.18); color:#b91c1c; border:1px solid rgba(248,113,113,.35) }
        .tag.after{ background:rgba(52,211,153,.18); color:#065f46; border:1px solid rgba(52,211,153,.35) }

        .ba-meta{ padding:16px 18px }
        .ba-meta h3{ font-size:1.1rem; color:#2c5530; margin:0 0 6px; }
        .ba-meta p{ margin:0; color:#555; font-size:.95rem; line-height:1.6 }
        .ba-badges{display:flex;gap:8px;margin-top:10px;flex-wrap:wrap;margin-bottom: 10px;}
        .ba-badge{ font-size:.8rem; padding:4px 8px; border-radius:999px; background:#f3f4f6; color:#333; border:1px solid #eee }


        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero .subtitle {
                font-size: 1.2rem;
            }
            
            .hero .description {
                font-size: 1rem;
            }

            .features-top {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }

            .hero-buttons {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }

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

            .features-top .feature-card,
            .reception-card {
                padding: 20px 15px;
            }

            .contact-button {
                padding: 5px 11px;
                font-size: 1rem;
            }
        }
        
        /* 営業時間表示 */
        .contact-hours {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .hours-item {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 20px 25px;
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.3);
            text-align: center;
            min-width: 200px;
        }
        
        .hours-icon {
            font-size: 1.5rem;
            display: block;
            margin-bottom: 8px;
        }
        
        .hours-text {
            color: white;
            font-size: 0.95rem;
            line-height: 1.4;
        }
        
        .hours-text strong {
            font-size: 1.1rem;
        }
        
        .hours-text small {
            font-size: 0.85rem;
            opacity: 0.9;
        }
        
        /* 特徴セクション */
        .features {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: #2c5530;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            border-radius: 2px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .features-grid .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .features-grid .feature-card:hover {
            transform: translateY(-8px);
            border-color: #ff6b35;
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #3d7c47, #2c5530);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
            box-shadow: 0 8px 20px rgba(61, 124, 71, 0.3);
        }
        
        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #2c5530;
        }
        
        /* ハチの種類と危険箇所セクション */
        .bee-types-section {
            padding: 100px 0;
            background: white;
        }
        
        .bee-identification {
            margin-bottom: 80px;
            text-align: center;
        }
        
        .identification-image {
            margin: 40px 0;
            position: relative;
        }
        
        .identification-image img {
            width: 100%;
            max-width: 900px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            margin: 0 auto;
            display: block;
            transition: transform 0.3s ease;
        }
        
        .identification-image img:hover {
            transform: scale(1.02);
        }
        
        .danger-cases {
            margin-top: 80px;
        }
        
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .case-item {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .case-item:hover {
            transform: translateY(-8px);
            border-color: #ff6b35;
            box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
        }
        
        .case-image {
            position: relative;
            overflow: hidden;
            height: 280px;
        }
        
        .case-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .case-item:hover .case-image img {
            transform: scale(1.1);
        }
        
        .case-item.text-only {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border: 2px solid #3b82f6;
        }
        
        .case-item.text-only:hover {
            border-color: #1d4ed8;
            box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
        }
        
        .case-icon {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 20px;
            padding: 20px 0;
        }
        
        .case-description {
            padding: 30px;
        }
        
        .case-description h4 {
            font-size: 1.4rem;
            color: #2c5530;
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        .case-description p {
            color: #555;
            line-height: 1.7;
            font-size: 1rem;
        }
        
        .warning-notice {
            background: linear-gradient(135deg, #ff4757, #ff6b7d);
            color: white;
            padding: 40px;
            border-radius: 20px;
            margin: 60px auto;
            max-width: 900px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(255, 71, 87, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .warning-notice::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: shimmer 3s infinite;
        }
        
        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }
        
        .warning-notice h4 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .warning-notice p {
            font-size: 1.2rem;
            line-height: 1.7;
            position: relative;
            z-index: 2;
        }
        
        /* 蜂駆除の流れセクション */
        .process-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .process-steps {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .process-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 50px;
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .process-step:hover {
            transform: translateY(-5px);
            border-color: #ff6b35;
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
        }
        
        .step-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin-right: 30px;
            flex-shrink: 0;
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
        }
        
        .step-content h3 {
            font-size: 1.5rem;
            color: #2c5530;
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        .step-content p {
            color: #555;
            line-height: 1.8;
            font-size: 1.1rem;
        }
        
        .step-arrow {
            text-align: center;
            font-size: 2.5rem;
            color: #ff6b35;
            margin: 20px 0;
            font-weight: bold;
        }
        
        /* 料金セクション */
        .pricing {
            padding: 100px 0;
            background: white;
        }
        
        .price-banner {
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
            border: 3px solid #ff6b35;
            border-radius: 25px;
            padding: 50px 40px;
            margin-bottom: 60px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .price-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.05), transparent);
            animation: shimmer 3s infinite;
        }
        
        .price-main {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
        }
        
        .price-label {
            font-size: 1.3rem;
            color: #2c5530;
            font-weight: bold;
        }
        
        .price-amount {
            font-size: 4rem;
            font-weight: 900;
            color: #ff6b35;
            text-shadow: 2px 2px 4px rgba(255, 107, 53, 0.3);
        }
        
        .price-from {
            font-size: 1.6rem;
            color: #2c5530;
            font-weight: bold;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }
        
        .pricing-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            border: 3px solid transparent;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .pricing-card:hover {
            border-color: #3d7c47;
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(61, 124, 71, 0.2);
        }
        
        .pricing-card.featured {
            grid-column: span 3;
            border: 3px solid #ff6b35;
            background: linear-gradient(135deg, #fff5f0, #fff);
        }
        
        .pricing-type {
            font-size: 1.4rem;
            font-weight: bold;
            color: #2c5530;
            margin-bottom: 20px;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ff6b35;
            /* margin-bottom: 15px; */
        }
        
        .price-note {
            font-size: 0.95rem;
            color: #666;
        }
        
        /* 対応エリア */
        .service-area {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .area-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }
        
        .area-item {
            background: white;
            padding: 25px 20px;
            border-radius: 15px;
            text-align: center;
            font-weight: bold;
            color: #2c5530;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .area-item:hover {
            transform: translateY(-5px);
            border-color: #ff6b35;
            box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
        }

        /* よくある質問 */
        .faq-section {
            padding: 100px 0;
            background: white;
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            margin-bottom: 20px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .faq-item:hover {
            border-color: #ff6b35;
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
        }
        
        .faq-question {
            display: flex;
            align-items: center;
            padding: 25px 30px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            position: relative;
        }
        
        .faq-question:hover {
            background-color: rgba(255, 107, 53, 0.05);
        }
        
        .faq-item.active .faq-question {
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            color: white;
        }
        
        .faq-icon {
            font-size: 1.5rem;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .faq-question h3 {
            flex: 1;
            font-size: 1.2rem;
            font-weight: bold;
            color: #2c5530;
            margin: 0;
            line-height: 1.4;
        }
        
        .faq-item.active .faq-question h3 {
            color: white;
        }
        
        .faq-toggle {
            font-size: 2rem;
            font-weight: bold;
            color: #ff6b35;
            transition: all 0.3s ease;
            margin-left: 15px;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
            color: white;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 25px 30px;
            border-top: 1px solid rgba(255, 107, 53, 0.2);
        }
        
        .faq-answer p {
            margin: 0;
            color: #555;
            line-height: 1.8;
            font-size: 1rem;
        }
        
        .faq-answer strong {
            color: #2c5530;
            font-weight: bold;
        }

        /* お客様の声 */
        .testimonials {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .testimonial-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 35px;
            border-radius: 20px;
            border-left: 5px solid #3d7c47;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(61, 124, 71, 0.2);
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -5px;
            left: 25px;
            font-size: 5rem;
            color: #3d7c47;
            opacity: 0.2;
            font-family: serif;
        }

        .case-before-after {
            margin-bottom: 20px;
        }

        .case-image-container img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .image-caption {
            font-size: 0.9rem;
            color: #666;
            text-align: center;
            font-style: italic;
        }
        
        .customer-info {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .customer-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: linear-gradient(45deg, #3d7c47, #2c5530);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.3rem;
            box-shadow: 0 4px 15px rgba(61, 124, 71, 0.3);
        }
        
        .customer-details {
            flex: 1;
        }
        
        .customer-name {
            font-weight: bold;
            color: #2c5530;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        .customer-location {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 5px;
        }
        
        .customer-rating {
            color: #ffd700;
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .customer-date {
            font-size: 0.85rem;
            color: #888;
        }
        
        .work-details {
            background: linear-gradient(135deg, #e8f5e8, #f0f9f0);
            padding: 20px 25px;
            border-radius: 15px;
            margin: 20px 0;
            border-left: 4px solid #3d7c47;
            box-shadow: 0 4px 15px rgba(61, 124, 71, 0.1);
        }

        .work-details-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .work-details-header .detail-icon {
            font-size: 1.2rem;
        }

        .work-details-header h4 {
            font-size: 1.1rem;
            color: #2c5530;
            margin: 0;
        }
        
        .work-details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 15px;
        }
        
        .detail-item {
            display: flex;
            flex-direction: column;
        }
        
        .detail-label {
            font-size: 0.9rem;
            color: #666;
            font-weight: normal;
            margin-bottom: 5px;
        }
        
        .detail-value {
            font-size: 1.1rem;
            font-weight: bold;
            color: #2c5530;
        }

        .testimonial-content {
            position: relative;
            margin-top: 20px;
        }

        .testimonial-quote-mark {
            position: absolute;
            top: -10px;
            left: -5px;
            font-size: 3rem;
            color: #3d7c47;
            opacity: 0.3;
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-text {
            font-style: italic;
            line-height: 1.8;
            color: #555;
            font-size: 1.05rem;
            position: relative;
            z-index: 1;
            padding-left: 20px;
        }
        
        /* 固定コンタクトボタン */
        .fixed-contact {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 8px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .fixed-contact.hidden { opacity: 0; pointer-events: none; } /* ←重要 */
        
        .fixed-btn {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
            border: 3px solid rgba(255,255,255,0.2);
        }
        
        .fixed-btn::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: shimmer 2s infinite;
            opacity: 0;
        }
        
        .fixed-btn:hover::before {
            opacity: 1;
        }
        
        .fixed-btn:hover {
            transform: scale(1.15) translateY(-2px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.25);
        }
        
        .fixed-phone {
            background: linear-gradient(135deg, #dc3545, #ff6b35);
            animation: urgentPhonePulse 1.5s infinite;
            border: 4px solid #ffffff;
            box-shadow: 0 10px 30px rgba(220, 53, 69, 0.6);
        }
        
        .fixed-line {
            background: linear-gradient(135deg, #00c851, #06d755);
            border: 3px solid #ffffff;
            box-shadow: 0 8px 25px rgba(0, 200, 81, 0.4);
        }
        
        .fixed-mail {
            background: linear-gradient(135deg, #007bff, #0056b3);
            border: 3px solid #ffffff;
            box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
        }
        
        @keyframes urgentPhonePulse {
            0%, 100% { 
                transform: scale(1); 
                box-shadow: 0 10px 30px rgba(220, 53, 69, 0.6);
            }
            50% { 
                transform: scale(1.08); 
                box-shadow: 0 12px 40px rgba(220, 53, 69, 0.8);
            }
        }
        
        .fixed-btn-label {
            position: absolute;
            right: 80px;
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            padding: 12px 16px;
            border-radius: 25px;
            font-size: 0.95rem;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            transform: translateX(15px);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            pointer-events: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .fixed-btn-label::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid #2c3e50;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
        }
        
        .fixed-btn:hover .fixed-btn-label {
            opacity: 1;
            transform: translateX(0);
        }
        
        .phone-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            font-size: 0.7rem;
            font-weight: bold;
            padding: 4px 8px;
            border-radius: 12px;
            animation: badge-pulse 2s infinite;
            box-shadow: 0 2px 8px rgba(231, 76, 60, 0.5);
        }
        
        @keyframes badge-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        /* トップに戻るボタン */
        .scroll-to-top {
            position: fixed;
            bottom: 20px;
            left: 20px;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #2c5530, #3d7c47);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            opacity: 0;
            transform: translateY(100px);
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 4px 15px rgba(44, 85, 48, 0.3);
        }
        
        .scroll-to-top.visible { pointer-events: auto; }
        
        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(44, 85, 48, 0.4);
        }
        
        /* お問い合わせフォーム */
        .contact-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .contact-info-panel {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: fit-content;
        }
        
        .contact-info-panel h3 {
            font-size: 1.5rem;
            color: #2c5530;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .contact-benefits {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .benefit-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }
        
        .benefit-text h4 {
            font-size: 1.1rem;
            color: #2c5530;
            margin-bottom: 5px;
        }
        
        .benefit-text p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.5;
        }
        
        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            font-weight: bold;
            color: #2c5530;
            margin-bottom: 8px;
            font-size: 1rem;
        }
        
        .required {
            color: #ff6b35;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ff6b35;
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .checkbox-label {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            font-size: 0.95rem;
        }
        
        .checkbox-label input[type="checkbox"] {
            width: auto;
            margin: 0;
        }
        
        .privacy-link {
            color: #007bff;
            text-decoration: none;
        }
        
        .privacy-link:hover {
            text-decoration: underline;
        }
        
        .submit-btn {
            width: 100%;
            background: linear-gradient(45deg, #007bff, #0056b3);
            color: white;
            border: none;
            padding: 18px 30px;
            font-size: 1.2rem;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
        }
        
        .form-note {
            text-align: center;
            font-size: 0.9rem;
            color: #666;
            margin-top: 20px;
            line-height: 1.5;
        }
        
        .form-note a {
            color: #ff6b35;
            text-decoration: none;
            font-weight: bold;
        }
        
        .form-note a:hover {
            text-decoration: underline;
        }

        .headbtn{
  position: fixed;
  left: 16px;
  right: 16px;
  /* 下部バーに隠れないよう safe-area を考慮 */
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 9999;
  display: flex;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
  border-radius: 16px;
  background: linear-gradient(180deg,#ff0000 0%,#ff0000 100%);
  color:#fff; text-decoration:none; font-weight:800;
  box-shadow: 0 10px 28px rgba(0,0,0,.22), 0 2px 8px rgba(0,0,0,.15);
  transform: translateY(140%); opacity:0; visibility:hidden;

}

/* 本文の下マージンも安全に確保（被り防止） */
body{
  padding-bottom: 98px;
}
@supports (padding: max(0px)){
  body{ padding-bottom: max(98px, env(safe-area-inset-bottom)); }
}
        
        /* フッター */
        .footer-cta {
            background: linear-gradient(135deg, #2c5530, #3d7c47);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .footer-hours-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .footer-hours-item {
            background: rgba(255,255,255,0.1);
            padding: 15px 25px;
            border-radius: 10px;
            font-size: 1rem;
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .footer {
            background: #1a1a1a;
            color: white;
            padding: 40px 0;
        }
        
        .footer-content {
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .footer-link {
            color: #ccc;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .footer-link:hover {
            color: #ff6b35;
            transform: translateY(-1px);
        }
        
        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            transition: width 0.3s ease;
        }
        
        .footer-link:hover::after {
            width: 100%;
        }
        
        .footer-copyright {
            color: #888;
            font-size: 0.9rem;
            margin: 0;
        }
        
        /* 対応エリア地図スタイル */
        .service-area {
            padding: 60px 0;
            background-color: #f8f9fa;
        }

        .map-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 40px;
        }

        .kanto-map {
            width: 100%;
            max-width: 600px;
            height: auto;
        }

        .area-description {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .area-description p {
            font-size: 1.2rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .prefecture-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 30px;
        }

        .prefecture-item {
            background: white;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            color: #333;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .prefecture-item:hover {
            transform: translateY(-3px);
        }

        .tokyo { border-left: 5px solid #dc3545; }
        .kanagawa { border-left: 5px solid #ffc107; }
        .chiba { border-left: 5px solid #8e44ad; }
        .saitama { border-left: 5px solid #fd7e14; }
        .ibaraki { border-left: 5px solid #007bff; }
        .tochigi { border-left: 5px solid #20c997; }
        .gunma { border-left: 5px solid #28a745; }
        
        /* レスポンシブ */
        @media (max-width: 768px) {
            .container {
                padding: 0px 0px;
            }
            
            /* ヘッダーモバイル対応 */
            .header-top {
                font-size: 0.8rem;
                padding: 8px 0;
                line-height: 1.4;
            }
            
            .header-main {
                padding: 20px 0px;
            }
            
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .logo-section {
                justify-content: center;
                gap: 12px;
            }
            
            .logo-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
            
            .company-info h1 {
                font-size: 1.4rem;
            }
            
            .company-tagline {
                font-size: 0.8rem;
            }
            
            .header-contact {
                flex-direction: column;
                gap: 15px;
                width: 100%;
            }
            
            .contact-info {
                text-align: center;
            }
            
            .phone-number {
                font-size: 1.8rem;
                display: block;
                margin-bottom: 5px;
            }
            
            .phone-sub {
                font-size: 0.85rem;
            }
            
            .header-cta {
                justify-content: center;
                width: 100%;
                gap: 10px;
            }
            
            .header-btn {
                flex: 1;
                max-width: 100px;
                padding: 12px 8px;
                font-size: 13px;
                text-align: center;
                justify-content: center;
            }
            
            /* ヒーローモバイル対応 */
            .hero {
                padding: 40px 0 60px;
            }
            
            .hero-badge {
                font-size: 0.85rem;
                padding: 8px 16px;
                margin-bottom: 20px;
            }
            
            .hero h1 {
                font-size: 2rem;
                margin-bottom: 20px;
                line-height: 1.3;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
                margin-bottom: 30px;
                padding: 0 10px;
            }
            
            .hero-features {
                flex-direction: row;
                justify-content: space-between;
                gap: 10px;
                margin: 30px 0;
                padding: 0 10px;
            }
            
            .hero-feature {
                padding: 15px 8px;
                flex: 1;
                min-width: 0;
            }
            
            .hero-feature-icon {
                font-size: 1.5rem;
                margin-bottom: 8px;
            }
            
            .hero-feature-text {
                font-size: 0.8rem;
                line-height: 1.2;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
                padding: 0 20px;
            }

             /* ここから：スマホではみ出し対策（料金プラン用） */
    .estimate-cta{padding:64px 0;overflow:hidden}
    .estimate-cta .container{padding:0 20px}
    .estimate-cta .cta-inner{max-width:880px;margin:0 auto;text-align:center}
    .estimate-cta .cta-sub{font-size:1.15rem;color:#ff6b35;margin:12px 0 22px;font-weight:600}
    .estimate-cta .cta-tel{margin-bottom:14px}
    .estimate-cta .cta-call{display:block;width:100%;max-width:560px;margin:14px auto 0;transform-origin:center center}
    @media (max-width:640px){
      .estimate-cta .container{padding:0 16px !important}
      .estimate-cta .phone-number{font-size:1.9rem;word-break:keep-all}
      .estimate-cta .phone-sub{font-size:.9rem}
      .estimate-cta .cta-call{padding:14px 10px;box-shadow:0 6px 22px rgba(220,53,69,.55),0 0 0 2px rgba(255,0,0,.25)}
    }
    @media (max-width:390px){
      .estimate-cta .phone-number{font-size:1.6rem}
      .estimate-cta .cta-call{max-width:100%}
    }
            
            .cta-button {
                width: 100%;
                max-width: 320px;
                padding: 18px 20px;
                font-size: 1.1rem;
            }
            
            /* 営業時間表示モバイル */
            .contact-hours {
                flex-direction: column;
                align-items: center;
                gap: 15px;
                margin-top: 25px;
                padding: 0 20px;
            }
            
            .hours-item {
                min-width: auto;
                width: 100%;
                max-width: 280px;
                padding: 15px 20px;
            }
            
            .hours-text {
                font-size: 0.9rem;
            }
            
            .hours-text strong {
                font-size: 1rem;
            }
            
            .footer-hours-info {
                flex-direction: column;
                align-items: center;
                gap: 15px;
                margin-bottom: 25px;
                padding: 0 20px;
            }
            
            .footer-hours-item {
                font-size: 0.9rem;
                padding: 12px 20px;
                text-align: center;
            }
            
            /* お問い合わせフォーム */
            .contact-section {
                padding: 60px 0;
            }
            
            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 0 15px;
            }
            
            .contact-info-panel,
            .contact-form {
                padding: 30px 20px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
            
            .form-group {
                margin-bottom: 20px;
            }
            
            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 15px;
                font-size: 16px; /* iOSのズーム防止 */
            }
            
            .submit-btn {
                padding: 20px 30px;
                font-size: 1.1rem;
            }
            
            /* 各セクションモバイル対応 */
            .features, .bee-types-section, .process-section, 
            .pricing, .service-area, .testimonials {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2rem;
                margin-bottom: 40px;
                padding: 0 10px;
            }
            
            /* 特徴セクション */
            .features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .features-grid .feature-card {
                padding: 30px 20px;
                margin: 0 10px;
            }
            
            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .feature-title {
                font-size: 1.3rem;
            }
            
            /* ハチの種類セクション */
            .bee-identification h3 {
                font-size: 1.5rem !important;
                padding: 0 15px;
            }
            
            .identification-image {
                padding: 0 15px;
            }
            
            .identification-image img {
                border-radius: 15px;
            }
            
            .danger-cases h3 {
                font-size: 1.5rem !important;
                padding: 0 15px;
            }
            
            .cases-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 15px;
            }
            
            .case-image {
                height: 220px;
            }
            
            .case-description {
                padding: 25px 20px;
            }
            
            .case-description h4 {
                font-size: 1.2rem;
            }
            
            .case-description p {
                font-size: 0.95rem;
            }
            
            .warning-notice {
                margin: 40px 15px !important;
                padding: 30px 25px !important;
            }
            
            .warning-notice h4 {
                font-size: 1.4rem !important;
            }
            
            .warning-notice p {
                font-size: 1.1rem !important;
            }
            
            /* プロセスセクション */
            .process-steps {
                padding: 0 15px;
            }
            
            .process-step {
                padding: 25px 20px;
                margin-bottom: 25px;
            }
            
            .step-number {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
                margin-right: 20px;
            }
            
            .step-content h3 {
                font-size: 1.2rem;
                margin-bottom: 12px;
            }
            
            .step-content p {
                font-size: 0.95rem;
            }
            
            .step-arrow {
                font-size: 2rem;
                margin: 15px 0;
            }
            
            /* 料金セクション */
            .price-banner {
                margin: 0 15px 40px;
                padding: 30px 20px;
            }
            
            .price-main {
                /* flex-direction: column; */
                gap: 5px;
            }
            
            .price-amount {
                font-size: 3rem;
            }
            
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                padding: 0 15px;
            }
            
            .pricing-card {
                padding: 25px 15px;
            }
            
            .pricing-type {
                font-size: 1.1rem;
            }
            
            .price {
                font-size: 2rem;
            }
            
            /* 対応エリア */
            .area-list, .prefecture-list {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                padding: 0 15px;
            }
            
            .area-item, .prefecture-item {
                padding: 20px 15px;
                font-size: 0.95rem;
            }
            
            /* よくある質問 */
            .faq-section {
                padding: 60px 0;
            }
            
            .faq-container {
                padding: 0 15px;
            }
            
            .faq-item {
                margin-bottom: 15px;
            }
            
            .faq-question {
                padding: 20px 20px;
                flex-wrap: wrap;
            }
            
            .faq-icon {
                font-size: 1.3rem;
                margin-right: 12px;
            }
            
            .faq-question h3 {
                font-size: 1.1rem;
                line-height: 1.3;
            }
            
            .faq-toggle {
                font-size: 1.8rem;
                margin-left: 10px;
            }
            
            .faq-answer {
                transition: all 0.4s ease;
            }
            
            .faq-item.active .faq-answer {
                padding: 20px 20px;
            }
            
            .faq-answer p {
                font-size: 0.95rem;
                line-height: 1.6;
            }

            /* お客様の声 */
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 15px;
            }
            
            .testimonial-card {
                padding: 25px 20px;
            }
            
            .customer-avatar {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
            
            .customer-name {
                font-size: 1rem;
            }
            
            .customer-rating {
                font-size: 0.9rem;
            }
            
            .work-details {
                padding: 15px 20px;
            }
            
            .work-details-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            
            .detail-item {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 8px 0;
                border-bottom: 1px solid rgba(61, 124, 71, 0.1);
            }
            
            .detail-item:last-child {
                border-bottom: none;
            }
            
            .detail-label {
                flex: 1;
            }
            
            .detail-value {
                text-align: right;
                flex-shrink: 0;
            }
            
            .testimonial-text {
                font-size: 0.95rem;
                line-height: 1.6;
            }
            
            /* フッターCTA */
            .footer-cta {
                padding: 60px 0;
            }
            
            .footer-cta h2 {
                font-size: 2rem !important;
                margin-bottom: 20px !important;
                padding: 0 15px;
            }
            
            .footer-cta p {
                font-size: 1.1rem !important;
                margin-bottom: 30px !important;
                padding: 0 20px;
            }
            
            /* 固定ボタンモバイル対応 */
            .fixed-contact {
                bottom: 15px;
                right: 15px;
                gap: 6px;
            }
            
            .fixed-btn {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
                border: 2px solid rgba(255,255,255,0.2);
            }
            
            .fixed-btn-label {
                display: none; /* モバイルではラベル非表示 */
            }
            
            .phone-badge {
                top: -5px;
                right: -5px;
                font-size: 0.6rem;
                padding: 3px 6px;
            }
            
            .scroll-to-top {
                bottom: 15px;
                left: 15px;
                width: 45px;
                height: 45px;
                font-size: 1rem;
                z-index: 9999;
            }
            
            /* フッターモバイル対応 */
            .footer-links {
                gap: 20px;
                margin-bottom: 15px;
            }
            
            .footer-link {
                font-size: 0.9rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

              .pricing-card.featured {
            grid-column: span 2;
            border: 3px solid #ff6b35;
            background: linear-gradient(135deg, #fff5f0, #fff);
        }
        }

    </style>