/* ふとんキャンペーン画像表示用スタイル */
.futon-campaign-container {
  width: 100%;
  max-width: 1320px;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 0;
}

.campaign-image-wrapper {
  width: 100%;
  line-height: 0; /* 画像の下にできる微妙な隙間（隙間問題）を解消 */
}

.campaign-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===========================
   LACURI ローカルSEO
   エリアページ用 デザイン
   =========================== */

/* 目次
   1.  共通ルール
   2.  ボタン類
   3.  ヘッダー
   4.  パンくずリスト
   5.  冒頭部分 ( hero section )
   6.  目次ナビ
   7.  エリア向け 紹介文 ( solution section )
   8.  ご利用の流れ ( flow section )
   9.  数字と実績 ( trust section )
   10. 口コミ
   11. クリーニングプラン紹介
   12. FAQ
   13. CTA
   14. フッター
   15. 地図セクション ※/area のみ
   16. スマホ版 設定
   17. PC版 設定
   18. その他
 */


/* ==========================================================================
   1. 共通ルール
   ========================================================================== */

:root {

  /* 実績数値 */
  --stat-accumulated:   "114万着";     /* 累計お預かり実績 */
  --stat-satisfaction:  "90.8%";      /* お客様満足度 */
  --stat-repeat:        "62.7%";      /* リピート率 */
  --stat-staff:         "19名";       /* クリーニング師在籍数 */

  /* ループアニメーション速度（秒） */
  --marquee-duration: 32s;

  /* ブランドカラー */
  --primary:        #4a5568;
  --primary-dark:   #d4dce2;
  --primary-light:  #edf1f4;
  --navy:           #4a5568;
  --navy-dark:      #2d3748;
  --navy-light:     #6b7a8d;
  --green:          #10b981;

  /* グレースケール */
  --white:      #ffffff;
  --gray-50:    #f8fafc;
  --gray-100:   #f7f5f2;
  --gray-200:   #edeae5;
  --gray-300:   #dbd6cf;
  --gray-400:   #bfb9b0;
  --gray-500:   #9e9790;
  --gray-600:   #7a726a;
  --gray-700:   #5c564f;
  --gray-800:   #3d3832;
  --gray-900:   #231f1b;

  /* シャドウ */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl:  0 16px 48px rgba(0,0,0,0.16);

  /* 角丸 */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  /* アニメーション */
  --transition: all 0.3s ease;

  /* フォント */
  --font-sans:  'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;

}

/* ベーススタイル */

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  
  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: var(--font-sans);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: bottom;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
  }

  ul { list-style: none; }

  button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
  }

  .container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2%;
  }


/* ==========================================================================
   2. ボタン類
   ========================================================================== */

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
  }

  .btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(14,165,233,0.3);
  }

  .btn-primary:hover {
    background: var(--primary-dark); 
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14,165,233,0.4);
  }

  .btn-secondary {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
  }

  .btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
  }

  .btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
  }

  .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
  }

  .btn-sm   { padding: 10px 20px; font-size: 13px; }

  .btn-hero {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 900;
  }

  .btn-block { width: 100%; }

  .scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 90;
  }

  .scroll-top.visible { opacity: 1; transform: translateY(0); }
  .scroll-top:hover { background: var(--primary); transform: translateY(-4px); }


/* ==========================================================================
   3. ヘッダー
   ========================================================================== */

  .section-header { text-align: center; margin-bottom: 48px; }

  .section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
  }

  .section-eyebrow-light { background: rgba(255,255,255,0.15); color: #bae6fd; }

  .section-title {
    font-size: clamp(24px, 5vw, 40px);
    margin-bottom: 10px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.4;
    letter-spacing: -0.02em;
  }

  .section-title-light { color: var(--white); }
  .section-desc { margin-top: 16px; color: var(--gray-500); font-size: 15px; line-height: 1.8; }
  .section-desc-light { color: #edf1f4; }

  .logo-img {
    height: 40px;
    width: auto;
    display: block;
  }

  .site-header {
    background: #ffffff;
    border-bottom: 1px solid #edf1f4;
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    margin-bottom: 0;
  }

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

  .header-nav { display: flex; align-items: center; }

  .g-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
  }

  .g-menu-item { position: relative; }

  .nav-link {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    padding: 10px 0;
    text-decoration: none;
    display: block;
  }

  .g-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 220px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    padding: 10px 0;
    z-index: 100;
    list-style: none;
    margin: 0;
  }

  .g-menu-item:hover .g-submenu { opacity: 1; visibility: visible; }

  .g-submenu li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
  }

  .g-submenu li a:hover { background: #f8fafc; color: var(--primary); }

  .header-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: 20px;
  }

/* ハンバーガーメニュー */
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: 0.3s;
  }

/* モバイルメニューパネル */
  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 1100;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
  }

  .mobile-nav.is-active {
    transform: translateX(0);
  }

  .menu-close {
    display: block;
    margin-left: auto;
    margin-bottom: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: #333;
    padding: 10px;
    cursor: pointer;
  }

  .mobile-nav-link {
    display: block;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #edf1f4;
  }

  .mobile-nav-link:hover {
    background-color: #f8fafc;
  }


/* ==========================================================================
   4. パンくずリスト
   ========================================================================== */
  .breadcrumb-container {
      background-color: #f8f9fa;
      border-bottom: 1px solid #eee;
      padding-top: 5px;
      padding-bottom: 5px;
      padding-left: 0;
      padding-right: 0;
      margin-top: 0;
  }

  .breadcrumb-list {
      display: flex;
      flex-wrap: wrap;
      list-style: none;
      margin: 0;
      padding: 0;
      font-size: 13px;
      line-height: 1.4;
  }

  .breadcrumb-list li {
      display: flex;
      align-items: center;
      color: #666;
  }

  .breadcrumb-list li + li::before {
      content: "\f105";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      margin: 0 12px;
      color: #ccc;
      font-size: 11px;
  }

  .breadcrumb-list a {
      color: #1a2a40;
      text-decoration: none;
      transition: color 0.2s ease, opacity 0.2s ease;
      display: flex;
      align-items: center;
  }

  .breadcrumb-list a i {
      margin-right: 6px;
      font-size: 14px;
  }

  .breadcrumb-list a:hover {
      color: #d4a373;
      opacity: 0.8;
  }

  .breadcrumb-list .current {
      font-weight: 600;
      color: #888;
  }


/* ==========================================================================
   5. 冒頭部分( hero section )
   ========================================================================== */

  .hero {
    position: relative;
    background: #f0f9ff;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
  }

  .hero .container {
    padding-bottom: 0;
  }

  .hero-bg-decoration { position: absolute; inset: 0; pointer-events: none; }

  .circle-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
  }

   .circle-2 {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30,58,95,0.06) 0%, transparent 70%);
  }

   .hero-grid { display: flex; flex-direction: column; }

   .hero-content {
    display: flex;
    flex-direction: column;
    z-index: 2; order: 1;
  }

  .hero-headline {
    order: 1;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
    padding-top: 10px;
  }

  .nobr { display: inline-block; white-space: nowrap; }
  .hero-service-intro { order: 2; margin-bottom: 20px; padding: 0 15px; }

  .hero-sub {
    font-size: 15px;
    color: var(--gray-600);
    text-align: center;
    line-height: 1.5;
  }

  .hero-sub strong { color: var(--primary); font-weight: 800; }

  .hero-details-group {
    display: flex;
    flex-direction: column;
    order: 4;
    padding: 0 20px;
  }

  .hero-desc {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
    justify-content: center;
  }

  .hero-badges li {
    font-size: 11px;
    font-weight: 700;
    background: #fff;
    border: 1px solid #edf1f4;
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
    justify-content: center;
  }

  .hero-note {
    font-size: 10px;
    color: var(--gray-400);
    margin-bottom: 30px;
    text-align: center;
  }

/* ヒーロー画像エリア (hero-visual) */

  .hero-visual {
    flex: 1.5;
    position: relative;
    align-self: stretch;
    margin-top: 10px;
    margin-right: calc(50% - 50vw);
    overflow: hidden;
  }

  .hero-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .hero-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    object-position: center; 
    display: block;
  }

  .hero-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to right, 
      #edf1f4 0%,
      #edf1f4 15%,
      rgba(237, 241, 244, 0.8) 22%,
      transparent 35%
    );
  }


/* ==========================================================================
   6. 目次ナビ
   ========================================================================== */

  .toc-nav {
    display: block;
    width: 100%;
    background-color: #4a5568; 
    border-bottom: 4px solid #1e3a5f;
    z-index: 100;
    position: sticky;
    top: 0;
  }

  .toc-nav .container {
    display: flex;
    justify-content: space-around;
    padding: 0 5%;
    max-width: 1320px;
  }

  .toc-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 2px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-left: 1px solid rgba(30, 58, 95, 0.2);
    position: relative;
    transition: all 0.3s ease;
  }

  .toc-link:first-child { 
    border-left: none; 
  }

  .toc-link span {
    white-space: nowrap;
    font-size: clamp(10px, 2.5vw, 15px);
    line-height: 1;
    display: block;
  }

  .toc-link::after {
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 10%;
    width: 80%; 
    height: 4px; 
    background-color: #ffffff;
    opacity: 0.8;
  }

  .toc-link:hover,
  .toc-link.active {
    background-color: rgba(30, 58, 95, 0.05);
  }




/* ==========================================================================
   7. エリア向け 紹介文 ( solution section )
   ========================================================================== */

  .solution-section { 
    padding: 60px 0; 
    background-color: var(--white);
  }

  .solution-inner { 
    display: block; 
    max-width: 960px; 
    margin: 0 auto;   
    text-align: center; 
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .solution-content { 
    margin: 0 auto;
    text-align: center; 
  }

  .solution-headline {
    font-size: clamp(22px, 4vw, 32px); 
    font-weight: 700; 
    color: var(--navy);
    line-height: 1.6; 
    margin-bottom: 24px; 
    letter-spacing: 0.12em;
    display: inline-block;
    font-family: "Shippori Mincho", "MS PMincho", serif;
  }

  .solution-sub-headline {
    display: block;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 40px;
    font-weight: 500;
    opacity: 0.85;
    letter-spacing: 0.05em;
  }

  .solution-text { 
    font-size: 15px; 
    color: #4a5568; 
    line-height: 2.2; 
    margin-top: 28px; 
    margin-bottom: 28px; 
    text-align: justify; 
    max-width: 960px; 
    margin-left: auto; 
    margin-right: auto; 
    opacity: 0.9;
  }

  .solution-text strong { 
    color: var(--primary-dark); 
    font-weight: 700; 
  }

  .text-highlight { color: var(--primary); font-weight: 900; }



/* ==========================================================================
   8. ご利用の流れ ( flow section )
   ========================================================================== */

  .flow-section { padding: 60px 0; background: var(--white); }
  .flow-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; }

  .flow-item {
    background: white;
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
  }

  .flow-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
  }

  .flow-connector {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    color: var(--primary);
    font-size: 20px;
    transform: rotate(90deg);
  }
  
  .flow-step-num {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
  }

  .flow-step-num span {
    font-size: 18px;
    font-weight: 900;
    font-family: var(--font-serif);
  }

  .flow-img-wrap {
    width: 100%;
    height: 160px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
  }
  .flow-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
  }

  .flow-item:hover .flow-img { transform: scale(1.04); }

  .flow-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
   }

  .flow-item p  {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.8;
    text-align: left;
   }

  .flow-note {
    background: linear-gradient(135deg, #685a55, #5f544d);
    border-radius: var(--radius-xl);
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px; color: white;
  }

  .flow-note-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }

  .flow-note-text { display: flex; flex-direction: column; gap: 6px; }
  .flow-note-text strong { font-size: 16px; font-weight: 700; }
  .flow-note-text span   { font-size: 14px; opacity: 0.9; line-height: 1.7; }


/* ==========================================================================
   9. 数字と実績 ( trust section )
   ========================================================================== */

  .trust-section { padding: 0; }

  .trust-bg {
    background: linear-gradient(145deg, var(--navy) 0%, #5f544d 100%);
    padding: 60px 0;
  }

  .trust-stats {
    display: grid; grid-template-columns: repeat(2,1fr);
    gap: 16px;
    margin-bottom: 8px;
  }

  .trust-stat {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-xl);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center; gap: 6px;
    text-align: center; transition: var(--transition);
  }

  .trust-stat:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-4px);
  }

  .trust-stat-num {
    font-size: 36px;
    font-weight: 900;
    color: white;
    line-height: 1;
    font-family: var(--font-serif);
  }

  .trust-stat-num small { font-size: 16px; }
  .trust-stat-label { font-size: 12px; color: rgba(255,255,255,0.6); }

  .trust-note-area {
    margin-top: 20px;
    margin-bottom: 40px;
    text-align: left;
  }

  .trust-note {
    font-size: 11px;
    color: #888;
    margin: 0;
    padding: 2px 0;
    line-height: 1.4;
    letter-spacing: -0.02em;
  }

  .trust-cards { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 16px; 
    margin-bottom: 60px; 
  }

  .trust-card {
    background: #ffffff; 
    border: 1px solid #edf1f4; 
    border-radius: var(--radius-xl); 
    padding: 28px 24px;
    text-align: center; 
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  }

  .trust-card:hover { 
    background: #ffffff; 
    transform: translateY(-4px); 
    border-color: #1e3a5f; 
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }

  .trust-card-icon {
    width: 48px; 
    height: 48px;
    color: #ffffff;
    border-radius: var(--radius-md);
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 22px; 
    margin: 0 auto 16px;
  }

  .trust-card:nth-child(1) .trust-card-icon { background-color: #2d5282; }
  .trust-card:nth-child(2) .trust-card-icon { background-color: #5a4f48; }
  .trust-card:nth-child(3) .trust-card-icon { background-color: #6a7d6a; }
  .trust-card:nth-child(4) .trust-card-icon { background-color: #a68b7c; }

  .trust-card h3 { 
    font-size: 16px; 
    font-weight: 700; 
    color: #1e3a5f; 
    line-height: 1.5; 
    margin-bottom: 10px; 
  }

  .trust-card p { 
    font-size: 13px; 
    color: #4b5563; 
    line-height: 1.8; 
    text-align: left; 
  }



/* ==========================================================================
   10. 口コミ
   ========================================================================== */

  .reviews-title {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 28px;
  }

  .reviews-marquee-outer {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 8px;
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  }

  .reviews-marquee-outer:hover .reviews-marquee-track {
    animation-play-state: paused;
  }

  .reviews-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marqueeScroll var(--marquee-duration) linear infinite;
  }

/* レビューカード */

  .review-card {
    background: #ffffff;
    border: 1px solid #edf1f4;
    border-radius: var(--radius-xl);
    padding: 24px;
    width: 300px;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
  }

  .review-card:hover {
    background: #f8fafc;
    transform: translateY(-2px);
  }

  .review-stars {
    color: #ffde59;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    gap: 3px;
  }

  .review-stars .star-off {
    color: #e2e8f0; 
  }

  .review-text {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 8px;
    font-style: italic;
    text-align: left;
    position: relative;
    max-height: 4.8em;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .review-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1.5em;
    background: linear-gradient(transparent, #ffffff);
    pointer-events: none;
  }

  .read-more-label {
    display: block;
    font-size: 11px;
    color: #1e3a5f;
    font-weight: 700;
    text-align: right;
    margin-bottom: 16px;
    cursor: pointer;
    position: relative;
    z-index: 2;
  }

  .read-more-label::before { content: "…全文を読む"; }

  .review-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
  }

  .review-name {
    font-size: 13px;
    font-weight: 700;
    color: #1e3a5f;
  }

  .review-info { font-size: 12px; color: #718096; }

  .reviews-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    margin-top: 12px;
  }

  .review-card.is-expanded .review-text {
    max-height: 1000px;
  }

  .review-card.is-expanded .review-text::after {
    display: none;
  }

  .review-card.is-expanded .read-more-label::before {
    content: "× 閉じる";
  }

  .review-card.is-expanded .read-more-label {
    color: #718096;
  }

  .review-nav-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: #1e3a5f;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    cursor: pointer;
  }

  .review-product-box {
    position: relative;
    margin-top: 8px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    box-sizing: border-box;
  }

  .review-product-badge {
    position: absolute;
    top: -9px;
    left: 12px;
    background: #ffffff;
    padding: 0 6px;
    font-size: 11px;
    color: #718096;
    font-weight: 500;
    line-height: 1;
  }

  .review-product-link {
    display: flex;
    align-items: stretch;
    gap: 12px;
    padding: 12px;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
  }

  .review-product-thumb {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #f7fafc;
  }

  .review-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .review-product-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
  }

  .review-product-title {
    margin: 0 0 2px 0;
    font-size: 13px;
    font-weight: 700;
    color: #1e3a5f;
    line-height: 1.3;
  }

  .review-product-desc {
    margin: 0 0 4px 0;
    font-size: 11px;
    color: #718096;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }

  .review-product-action {
    align-self: flex-end;
    font-size: 11px;
    font-weight: 700;
    color: #1e3a5f;
    transition: color 0.2s ease;
  }

  .review-product-action i {
    font-size: 9px;
    margin-left: 2px;
  }

  @keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }


/* ==========================================================================
   11. クリーニングプラン紹介
   ========================================================================== */

  .plans-section {
    padding: 60px 0;
    background: var(--gray-50);
  }

  .plans-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }

  .plan-tab {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-600);
    background: white;
    border: 1px solid var(--gray-300);
  }

  .plan-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
  }

  .plan-tab:not(.active):hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--white);
  }

  .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) ;
    gap: 24px; /* 16pxから少し広げてゆとりを */
    margin-bottom: 24px;
  }

  .plan-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    position: relative;
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column; /* 内部要素を縦に並べて高さを揃える */
  }

  .plan-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
  }

  .plan-card-featured {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.15);
    background: linear-gradient(180deg, #f0f9ff 0%, white 100%);
  }

  .plan-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    z-index: 10;
  }

  .plan-header {
    margin-bottom: 16px;
  }

  .plan-count {
    font-size: 36px;
    font-weight: 900;
    color: var(--navy);
    font-family: var(--font-serif);
    display: block;
    line-height: 1;
  }

  .plan-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-500);
    margin-top: 8px;
  }


  .plan-image {
    width: 100%;
    aspect-ratio: 10 / 10;
    overflow: hidden;
    margin-bottom: 24px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
  }

  .plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
  }

  .plan-features {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    flex-grow: 1;
  }

  .plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.4;
  }

  .plan-features li i {
    color: var(--green);
    font-size: 14px;
    flex-shrink: 0;
  }

  .plans-note {
    font-size: 12px;
    color: var(--gray-400);
    text-align: center;
    margin-top: 16px;
  }

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


/* ==========================================================================
   11. 対応地域情報
   ========================================================================== */

  .local-section {
    padding: 60px 0;
    background: var(--white);
  }

  .local-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
  }

/* 左側部分(全域対応) */
  .local-map-visual {
    background: linear-gradient(135deg, #f9f9f9, #f0f0f0);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
  }

  .nara-map-placeholder {
    width: 100%;
  }

  .nara-map-placeholder > i {
    font-size: 60px;
    color: var(--gray-400);
    opacity: 0.4;
    display: block;
    margin-bottom: 12px;
  }

  .nara-map-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
  }

  .nara-map-sub {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 20px;
  }

  .area-sub-group-left {
    width: 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
  }

  .local-area-title-sm {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    display: block;
  }

  .local-area-tags-left {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: left;
  }

  .local-area-tags-left span {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    white-space: nowrap;
  }

  .local-area-tags-left a {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    background: #f0f7ff;
    color: var(--navy);
    border: 1px solid #c2d9ff;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .local-area-tags a {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    background: #f0f7ff;
    color: var(--navy);
    border: 1px solid #c2d9ff;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
   }

  .local-area-tags-left a:hover,
  .local-area-tags a:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .local-area-tags-left span,
  .local-area-tags span {
    padding: 5px 12px;
    border-radius: 4px;
    background: var(--white);
    color: var(--gray-500);
    border: 1px solid var(--gray-200);
    cursor: default;
  }


/* 【右側】詳細情報エリア */
  .local-content {
    text-align: left;
  }

  .local-area-title-main {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .local-area-title-main::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
  }

  .area-group-lead {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 24px;
  }

  .area-sub-group {
    margin-bottom: 24px;
    padding-left: 15px;
    border-left: 1px solid var(--gray-200);
  }

  .local-area-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    display: block;
  }

  .local-area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
  }

  .local-area-tags span {
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
  }

  .expandable-area {
    position: relative;
    max-height: 84px; 
    overflow: hidden;
    transition: max-height 0.5s ease;
    margin-bottom: 8px;
  }

  .expandable-area.is-expanded {
    max-height: 1000px;
  }

  .area-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .expandable-area.is-expanded .area-overlay {
    opacity: 0;
  }

  .btn-show-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid var(--gray-300);
    color: var(--gray-600);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 12px;
    margin-bottom: 24px;
    transition: 0.3s;
  }

  .btn-show-more:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: var(--gray-50);
  }

  .delivery-notes {
    background: var(--gray-50);
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 32px;
    border: 1px dashed var(--gray-300);
  }

  .delivery-notes p {
    font-size: 11px;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
    text-indent: -1em;
    padding-left: 1.2em;
  }

  .local-seo-keywords {
    border-top: 1px solid var(--gray-100);
    padding-top: 24px;
  }

  .keyword-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-600);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .keyword-title i {
    color: var(--primary);
  }

  .keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .keywords span {
    font-size: 11px;
    color: var(--gray-500);
    background: var(--gray-50);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid var(--gray-200);
  }


/* ==========================================================================
   12. FAQ
   ========================================================================== */

  .faq-section {
    padding: 60px 0;
    background: var(--gray-50);
  }

  .faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction:
    column; gap: 8px;
  }

  .faq-item {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
  }

  .faq-item.open {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
  }

  .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 24px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    background: white;
    cursor: pointer;
    transition: var(--transition);
  }

  .faq-question:hover { color: var(--primary); }

  .faq-icon {
    font-size: 14px;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .faq-item.open .faq-icon { transform: rotate(45deg); }

  .faq-link {
    color: var(--navy);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
    padding: 2px 4px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .faq-link:hover {
    color: var(--primary-dark);
    background-color: rgba(30, 58, 95, 0.05);
    text-decoration: none;
  }

  .fa-line {
    color: #06C755;
    font-size: 1.1em;
  }

  .faq-answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.4s ease, padding 0.3s ease; 
    padding: 0 24px; 
    background-color: #fcfcfc; 
  }

  .faq-item.open .faq-answer { 
    max-height: 800px; 
    padding: 0 24px 24px; 
  }

  .faq-answer p { 
    font-size: 14px; 
    color: #4a5568; 
    line-height: 2.1;
    border-top: 1px solid var(--gray-200); 
    padding-top: 20px; 
    margin: 0;
    letter-spacing: 0.03em;
  }

  .faq-answer strong { 
    color: #a52a2a;
    font-weight: 700;
  }


/* ==========================================================================
   13. CTA
   ========================================================================== */

  .cta-section { padding: 0; }

  .cta-bg {
    background: linear-gradient(145deg, #4a5568 0%, var(--navy) 20%, #4a5568 100%);
    padding: 60px 0; position: relative; overflow: hidden;
  }

  .cta-decoration {
    position: absolute; inset: 0; pointer-events: none;
  }

  .cta-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: white;
  }

  .cta-circle-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
  .cta-circle-2 { width: 300px; height: 300px; bottom: -80px; left: -80px; }
  .cta-inner { text-align: center; position: relative; }

  .cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #7dd3fc;
    background: rgba(255,255,255,0.1);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
  }

  .cta-headline {
    font-size: clamp(22px,5vw,40px);
    font-weight: 900; color: white;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }

  .cta-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8; margin-bottom: 32px;
  }

  .cta-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
  }

  .cta-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
  }

  .cta-badges i { color: #4ade80; }

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

  .cta-buttons .btn {
    background-color: #1e3a5f;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    transition: background-color 0.3s ease;
  }

  .cta-buttons .btn:hover { background-color: #6d5f5a; }

  .btn-cta-primary {
    background: white;
    color: var(--primary-dark);
    padding: 18px 36px;
    font-size: 17px;
    font-weight: 900;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  }

  .btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 18px 36px;
    font-size: 17px;
    font-weight: 700;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,0.5);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-3px);
  }

  .cta-tel-note { font-size: 12px; color: rgba(255,255,255,0.5); }


/* ==========================================================================
   14. フッター
   ========================================================================== */
  .site-footer {
    background-color: #f8fafc;
    padding: 60px 0 30px;
    border-top: 1px solid #e2e8f0;
    color: #1e3a5f;
  }

  .footer-top-brand {
    text-align: center;
    margin-bottom: 40px;
  }

  .f-logo img {
    height: auto;
    max-width: 180px;
  }

  .footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }

  .footer-nav-group h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e3a5f;
    border-bottom: 2px solid #1e3a5f;
    display: inline-block;
  }

  .footer-nav-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-nav-group ul li {
    margin-bottom: 8px;
  }

  .footer-nav-group ul li a {
    text-decoration: none;
    color: #5a4f48;
    font-size: 14px;
    transition: color 0.3s;
  }

  .footer-nav-group ul li a:hover {
    color: #1e3a5f;
    text-decoration: underline;
  }

  .sns-nav {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin-top: 20px;
  }

  .sns-nav i {
    font-size: 24px;
    color: #1e3a5f;
  }

  .footer-bottom {
    text-align: center;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
  }

  .copyright {
    font-size: 12px;
    color: #94a3b8;
  }

  .disclaimer {
    font-size: 10px;
    color: #cbd5e1;
    margin-top: 5px;
  }

/* LINE固定ボタン */
  .footer-navi {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #06c755;
    z-index: 1000;
    text-align: center;
    padding: 10px 0;
  }

  .footer-navi a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: block;
  }


/* ==========================================================================
   15. 地図セクション ※/area のみ
   ========================================================================== */  

  .area-portal { 
    padding: 60px 0; 
    background: #fff; 
    font-family: "Noto Sans JP", sans-serif;
  }

  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .section-subtitle {
    color: #666;
    font-size: 1rem;
  }

  .sp-only { display: none; }
  .pc-only { display: block; }

  .mobile-area-selector {
    margin-bottom: 50px;
  }

  .near-me-btn {
    width: 100%;
    padding: 16px;
    background: #1a2a40;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(26, 42, 64, 0.2);
    transition: all 0.2s;
  }

  .near-me-btn:active {
    transform: scale(0.98);
    background: #d4a373;
  }

  .selector-label {
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
    color: #1a2a40;
    font-size: 14px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .selector-label::before,
  .selector-label::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background: #eee;
    max-width: 50px;
  }

  .sp-area-grid {
      display: grid;
     grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .sp-area-grid button {
    background: #fff;
    border: 1px solid #eef0f2;
    padding: 15px 0;
    border-radius: 8px;
    font-size: 14px;
    color: #1a2a40;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
  }

  .sp-area-grid button:active {
    background: #f8f9fa;
    border-color: #d4a373;
    color: #d4a373;
  }

  .map-section {
    position: relative;
    max-width: 850px;
    margin: 0 auto 100px;
 }

  .map-wrapper {
    position: relative;
    width: 100%;
    user-select: none;
  }

  .japan-map {
    width: 100%;
    height: auto;
    display: block;
  }

  .map-hotspot {
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hotspot-trigger {
    position: relative;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hotspot-trigger::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background: #1a2a40;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
  }

  .hotspot-label {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #1a2a40;
    padding: 4px 14px;
    border-radius: 30px; 
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    border: 1px solid #eef0f2;
    z-index: 10;
    transition: all 0.3s ease;
    pointer-events: auto; 
    cursor: pointer;
  }

  .hotspot-label:hover {
    background: #1a2a40;
    color: #fff;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 42, 64, 0.2);
  }

  .hotspot-trigger:hover::before {
    background: #d4a373;
    transform: scale(1.2);
  }

  .hotspot-trigger:hover .hotspot-label {
    background: #1a2a40;
    color: #fff;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 42, 64, 0.2);
  }

  .map-hotspot.label-top .hotspot-label {
    top: auto;
    bottom: 28px;
  }

  .map-hotspot.label-top .hotspot-trigger:hover .hotspot-label {
    transform: translateX(-50%) translateY(-5px);
  }

  .map-popover {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 280px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none; 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  .map-popover.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .map-hotspot.label-top .map-popover {
    bottom: 85px;
  }

  .popover-line {
    position: absolute;
    bottom: -70px;
    left: 50%;
    width: 1px;
    height: 70px;
    background: linear-gradient(to bottom, #1a2a40, rgba(26, 42, 64, 0.1));
    z-index: 1;
    pointer-events: none;
  }

  .map-hotspot.label-top .popover-line {
    height: 85px;
    bottom: -85px;
  }

  .popover-content {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  }

  .popover-header {
    font-weight: bold;
    color: #1a2a40;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    font-size: 15px;
    text-align: center;
  }

  .popover-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .popover-body button {
    background: #f8f9fa;
    border: 1px solid #eee;
    padding: 10px 0;
    font-size: 13px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    color: #333;
  }

  .popover-body button:hover {
    background: #1a2a40;
    color: #fff;
    border-color: #1a2a40;
  }

  .popover-note {
    margin-top: 15px;
    font-size: 11px;
    line-height: 1.5;
    color: #c53030;
    border-top: 1px dashed #ddd;
    padding-top: 10px;
  }

  .popover-body.single-btn {
    display: block;
  }

  .popover-body.single-btn button {
    width: 100%;
    background: #1a2a40;
    color: #fff;
    font-weight: bold;
    padding: 12px;
  }

/* エリア検索結果 */

  .area-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
    margin-top: 20px;
  }

  .area-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    gap: 15px;
    height: 100%; 
  }

  .area-panel:hover {
    border-color: #d4a373;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transform: translateY(-2px);
  }

  .panel-content {
    flex: 1;
    min-width: 0;
  }

  .city-name {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-weight: bold;
    font-size: 18px;
    color: #1a2a40;
    margin-bottom: 4px;
  }

  .pref-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1px 6px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    color: #718096;
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    transform: translateY(-1px); 
  }

  .sub-info {
    display: block;
    font-size: 0.85rem;
    color: #718096;
    font-size: 14px;
    margin-top: 4px;
    line-height: 1.5;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    max-width: none;
  }

  .go-btn {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: bold;
    color: #d4a373;
    white-space: nowrap;
  }

/* 他のエリアを探す */

  .area-nav-support {
    padding: 40px 0;
    background-color: #fff;
    text-align: center;
  }

  .area-nav-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 1px dashed #cbd5e0;
  }

  .area-nav-card p {
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a2a40;
  }

  .btn-area-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1a2a40;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease;
  }

  .btn-area-back:hover {
    background-color: #d4a373;
    transform: translateY(-2px);
  }


/* 離島リスト */

  .island-caution-box {
    margin: 30px 0;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  }

  .island-caution-header {
    background-color: #ff9800;
    padding: 12px 20px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
  }

  .island-caution-body {
    padding: 20px;
  }

  .caution-text {
    margin-bottom: 15px;
    font-size: 15px;
    color: #1f2937;
    line-height: 1.6;
  }

  .caution-text strong {
    color: #e53e3e;
    font-size: 1.1em;
  }

  .island-toggle {
    border: 1px solid #edf2f7;
    border-radius: 8px;
    background-color: #f8fafc;
  }

  .island-toggle summary {
    padding: 12px 15px;
    cursor: pointer;
    font-weight: 600;
    color: #1a2a40;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .island-toggle summary::after {
    content: "＋";
    font-size: 12px;
    background: #cbd5e0;
    padding: 2px 8px;
    border-radius: 4px;
  }

  .island-toggle[open] summary::after {
    content: "ー";
  }

  .island-list-content {
    padding: 0 15px 15px;
    border-top: 1px dashed #cbd5e0;
  }

  .island-name-list {
    font-size: 14px;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    list-style: none;
    padding: 15px 0;
    margin: 0;
  }

  .island-name-list li {
    color: #4a5568;
    display: flex;
  }

  .island-name-list li::before {
    content: "•";
    color: #ff9800;
    margin-right: 6px;
    font-weight: bold;
  }

  .island-name-list a {
    color: #1a0dab;
    display: inline-flex;
    text-decoration: underline;
  }

  .island-name-list a:hover {
    color: #3b82f6;
  }

  .island-name-list a::before {
    content: "•";
    color: #ff9800;
    margin-right: 6px;
    font-weight: bold;
    text-decoration: none;
  }

  .island-sub-note {
    font-size: 12px;
    color: #718096;
    margin-top: 10px;
  }

  .pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding: 20px 0;
  }

  .pagination-wrapper button,
  .pagination-wrapper a,
  .pagination-wrapper span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 8px;
    border: 1px solid var(--gray-200);
    background-color: var(--white);
    color: var(--navy);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
  }

  .pagination-wrapper button:hover:not(:disabled),
  .pagination-wrapper a:hover {
    background-color: var(--gray-100);
    border-color: var(--navy-light);
    color: var(--primary);
  }

  .pagination-wrapper .active,
  .pagination-wrapper .current {
    background-color: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }

  .pagination-wrapper .prev-btn,
  .pagination-wrapper .next-btn {
    padding: 0 16px;
    font-weight: 700;
  }

  .pagination-wrapper button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: var(--gray-50);
  }


/* ==========================================================================
   16. その他
   ========================================================================== */

/* AOSアニメーション制御 */

  [data-aos] { 
    opacity: 0; 
    transform: translateY(24px); 
    transition: opacity 0.6s ease, transform 0.6s ease; 
  }

  [data-aos].aos-animate { 
    opacity: 1; 
    transform: translateY(0); 
  }

  [data-aos="fade-right"] { transform: translateX(-24px); }

  [data-aos="fade-left"]  { 
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  [data-aos="fade-right"].aos-animate { 
    transform: translateX(0); 
  }

  [data-aos="fade-left"].aos-animate { 
    opacity: 1;
    transform: translateX(0); 
  }

/* プリント時、特定のセクションを非表示 */
  @media print {
    .site-header, .scroll-top, .mobile-nav, .cta-section { display: none; }
  }


/* 都道府県ページのみ：集荷・お届けの縦表示 */
  #pref .local-inner {
    display: block;
  }

  #pref .local-content.is-full-width {
    max-width: 850px;
    margin: 0 auto;
    float: none;
    width: 100%;
  }

  #pref .area-group-master {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #pref .area-group-lead {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
  }

  #pref .local-area-title-sm {
    text-align: center;
    margin-bottom: 15px;
    color: #1e3a5f;
  }

  #pref .local-area-tags-left {
    justify-content: left;
    display: flex;
    flex-wrap: wrap; gap: 8px;
  }

  #pref .local-area-tags-left span,
  #pref .local-area-tags span {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    margin: 0;
  }

  #pref .local-area-tags-left a,
  #pref .local-area-tags a {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #c2d9ff;
    background: #f0f7ff;
    color: var(--navy);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 4px;
  }

  #pref .local-area-tags-left a:hover,
  #pref .local-area-tags a:hover {
    background: var(--navy);
    color: #ffffff;
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }

  #pref .local-area-tags-left span:not(:has(a)),
  #pref .local-area-tags span:not(:has(a)) {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    background: #ffffff;
    color: var(--gray-500);
    border: 1px solid var(--gray-200);
    cursor: default;
    margin: 4px;
  }

  #pref .delivery-notes {
    margin-top: 10px;
    margin-bottom: 40px;
    padding: 24px;
    background-color: #f8fafc;
    border-radius: 12px;
    width: 100%;
    text-align: left;
    border: 1px solid #edf1f4;
    box-sizing: border-box;
  }

  #pref .local-seo-keywords {
    margin-top: 20px;
    width: 100%;
    border-top: 1px dashed #d1e3f5;
    padding-top: 30px;
  }

  #pref .local-seo-keywords .keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 10px;
    margin-top: 15px;
  }

  #pref .island-caution-box {
    width: 100%;
    box-sizing: border-box;
  }


/* 提供エリア一覧のみ */

  .text-accent    { color: var(--primary); }

  .pc-only-text { display: inline; }
  .sp-only-text { display: none; }

  @media (max-width: 1023px) {
    .pc-only-text { display: none; }
    .sp-only-text { display: inline; }
  }

/* ==========================================================================
   16. スマホ(SP)版 設定
   ========================================================================== */

@media (max-width: 480px) {
    .pagination-wrapper {
      gap: 6px;
    }
    .pagination-wrapper button,
    .pagination-wrapper a {
      min-width: 38px;
      height: 38px;
      font-size: 14px;
    }
}


@media (max-width: 768px) {

  /* パンくずリスト */
     .breadcrumb-container {
        padding: 10px 0;
     }
     .breadcrumb-list {
        font-size: 12px;
     }
     .breadcrumb-list li + li::before {
        margin: 0 8px;
     }

  /* エリア向け紹介文 */
     .solution-section {
        padding: 60px 0px;
     }
     .solution-headline {
        font-size: 1.4rem;
        letter-spacing: 0.05em;
     }
     .solution-text {
        text-align: left;
     }


  /* 口コミ */
     .reviews-marquee-outer {
        mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        padding: 0;
     }
     .reviews-marquee-track {
        animation: none;
        display: flex;
        transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        width: max-content;
        gap: 15px;
        padding-left: 0; /* JSで中央寄せ計算するため0にする */
     }
     .review-card {
        width: 80vw; /* 左右チラ見せのためのサイズ */
        flex-shrink: 0;
        margin: 0;
     }
     .review-nav-btn {
        display: flex;
     }
     .review-prev { left: 10px; }
     .review-next { right: 10px; }


  /* 地域店舗情報 */
     .local-seo-keywords .keywords {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px;
        width: 100%;
     }
     .local-seo-keywords .keywords span {
        display: inline-block;
        width: auto;
        flex: 0 1 auto;
        text-align: left;
        white-space: nowrap;
        padding: 6px 12px;
        font-size: 11px;
     }
     .local-seo-keywords .keyword-title {
        justify-content: flex-start;
        text-align: left;
     }
     #pref .area-sub-group-left {
        width: 100%;
        margin-bottom: 30px;
        background: #f0f7ff;
        border: 1px solid #d1e3f5;
        border-radius: 12px;
        padding: 25px;
        box-sizing: border-box;
     }
     #pref .area-group-sub {
        text-align: center;
        color: #718096;
        margin-bottom: 40px;
        font-size: 14px;
        width: 100%;
     }
     #pref .delivery-notes {
        padding: 15px;
        margin-bottom: 30px;
     }

  /* クリーニングプラン紹介 */
     .plans-grid {
        grid-template-columns: 1fr;
        gap:
     }
     .plan-card {
        display: table;
        width: 100%;
        padding: 20px 16px;
        text-align: left;
     }
     .plan-features {
        display: none;
     }
     .plan-header {
        display: block;
        margin-bottom: 12px;
        width: calc(100% - 100px);
        float: left;
     }
     .plan-name {
        margin-top: 0;
        margin-bottom: 4px;
        font-size: 12px;
     }
     .plan-count {
        font-size: 20px;
        display: inline-block;
     }
     .plan-card .btn-block {
        display: inline-flex;
        width: auto;
        min-width: 140px;
        padding: 10px 16px;
        font-size: 13px;
        clear: left;
        float: left;
        margin-top: 4px;
     }
     .plan-image {
        width: 88px;
        height: 88px;
        margin-bottom: 0;
        float: right;
        position: absolute;
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
     }
     .plan-popular-badge {
        left: 16px;
        transform: none;
        top: -10px;
        font-size: 10px;
        padding: 2px 10px;
     }
     .plan-card::after {
        content: "";
        display: block;
        clear: both;
     }



  /* 地図セクション */
     .pc-only { display: none; }
     .sp-only { display: block; }
     .area-panel-grid {
        grid-template-columns: 1fr;
        gap: 15px;
     }
     .results-section {
        padding: 30px 20px;
     }
     .results-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
     }
     #resultsTitle {
        font-size: 1.25rem;
     }
     .area-panel {
        padding: 20px;
     }


  /* FAQ */
     .faq-question {
        padding: 14px 20px;
        font-size: 14px;
     }
     .faq-answer {
        padding-left: 20px;
        padding-right: 20px;
        line-height: 1.7;
        word-break: break-all;
        box-sizing: border-box;
     }
     .faq-item.open .faq-answer {
        padding-top: 0;
        padding-bottom: 20px;
     }
     .faq-answer p {
        font-size: 14px;
        margin: 0;
        padding-top: 12px;
        border-top: 1px solid var(--gray-200);
     }


  /* フッター */
     .pc-display-tel { display: none; }
     .footer-nav-grid { grid-template-columns: 1fr 1fr; }

}


@media (max-width: 1023px) {

  /* SP版：ヘッダーの高さ(60px)分だけ余白を作る */
     body {
        padding-top: 60px;
     }


  /* ヘッダー部 */
     .site-header { height: 60px; }
     .logo-img { height: 32px; }
     .header-nav { display: none; }
     .g-submenu { display: none; }
     .menu-toggle { display: flex; }
     .mobile-nav { top: 60px; height: calc(100vh - 60px); padding-top: 20px; }
     
     body.menu-open {
       overflow: hidden;
     }


  /* 冒頭部分 */
     .hero-bg-decoration { display: none; }


  /* ヒーロー画像 */
     .hero-grid {
        display: flex;
        flex-direction: column;
     }
     .hero-content {
        display: flex;
        flex-direction: column;
     }
     .hero-desc { display: none; }
     .hero-headline {
        order: 1;
        text-align: center;
     }
     .hero-visual {
        display: block;
        order: 2;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        margin-top: 10px;
        margin-bottom: 20px;
     }
     .hero-image-wrap {
        aspect-ratio: 3 / 1; /* 横3：縦1 */
        border-radius: 0;
     }
     .hero-img-fade-left, .hero-img-fade-bottom {
        display: none;
     }
     .hero-service-intro {
        order: 3;
        text-align: center;
     }
     .hero-details-group {
        order: 4;
        display: flex;
        flex-direction: column;
     }

  /* 地域店舗情報 */
     .local-map {
        margin-bottom: 40px;
     }


  /* 地図セクション */
     .sp-area-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
     }
     .area-grid-btn {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 12px 5px;
        font-size: 14px;
        color: #4a5568;
        transition: background 0.2s;
     }
     .area-grid-btn:active {
        background: #f7fafc;
     }
}


/* ==========================================================================
   17. PC版 設定
   ========================================================================== */

@media (min-width: 769px) {


  /* エリア向け紹介文 */
    .solution-section {
       background: var(--gray-50);
    }
    .solution-text {
       padding: 0 5%;
    }


  /* 数字と実績 */
    .trust-stats { grid-template-columns: repeat(4,1fr); }
    .trust-cards { grid-template-columns: repeat(2,1fr); }


  /* ご利用の流れ */
    .flow-steps {
       flex-direction: row;
       align-items: flex-start;
    }
    .flow-item { flex: 1; }
    .flow-connector {
       transform: rotate(0deg);
       padding: 60px 4px 0; 
    }

  /* フッター */
    .sp-display-tel { display: none; }
}


@media (min-width: 1024px) {

  /* ヒーロー画像 */
    .hero {
       background: linear-gradient(145deg, #f0f9ff 0%, #edf1f4 40%, #f8fafc 100%);
    }
    .hero-headline {
       margin-top: 20px;
       margin-bottom: 15px;
       text-align: left;
    }
    .hero-sub,
    .hero-badges,
    .hero-cta,
    .hero-note{
       text-align: left;
       justify-content: flex-start;
    }
    .hero .container {
       padding-bottom: 0;
       margin-bottom: 0;
    }
    .hero-details-group {
       padding: 0;
    }
    .hero-grid {
       display: flex;
       flex-direction: row;
       align-items: stretch;
       justify-content: space-between;
       width: 100%;
       overflow: hidden;
    }
    .hero-content {
       flex: 0 0 50%;
       padding-right: 40px;
       display: flex;
       flex-direction: column;
       justify-content: center;
       z-index: 3;
    }
    .hero-visual  {
       flex: 1;
       position: relative;
       margin: 10px;
       min-height: 100%;
       order: 2;
    }
    .hero-img-overlay {
       background: linear-gradient(to right, 
         #edf1f4 0%, 
         #edf1f4 18%, 
         rgba(237, 241, 244, 0.8) 28%, 
         transparent 45%
       );
    }


  /* 目次ナビ */
    .toc-link { 
       padding: 22px 10px; 
    }
    .toc-link span {
       font-size: 16px;
    }


  /* 利用の流れ */
    .flow-img-wrap {
       height: 200px;
    }


  /* 地域店舗情報 */
    .local-inner {
      grid-template-columns: 0.8fr 1.2fr;
      align-items: start;
      gap: 60px;
    }


  /* 地図セクション */
    .container { padding: 0 40px; }


  /* PC版：ヘッダーの高さ(80px)分だけ余白を作る */
    body {
      padding-top: 80px;
    }
}