@charset "UTF-8";

/* ==========================================================================
   株式会社Blue Leaf LP スタイルシート
   ========================================================================== */

/* --- 1. CSSリセット & 基本設定 --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  width: 100%;
}

body {
  font-family: var(--font-base);
  background-color: var(--color-bg-base);
  color: var(--color-text-main);
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-weight: 350;
  overflow-x: clip;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  padding-top: 90px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

body.no-scroll {
  overflow: hidden;
}

/* SP専用 改行ユーティリティ */
.u-sp-only {
  display: none !important;
}

@media (max-width: 768px) {
  .u-sp-only {
    display: inline !important;
  }
}

:root {
  /* 添付画像に基づくアース・ナチュラルモダンカラー */
  --color-bg-base: #fbf9f4;         /* 添付画像の温かみのあるアイボリー背景 */
  --color-bg-white: #ffffff;
  --color-bg-subtle: #f5f1e8;       /* 落ち着いたサンドベージュ */
  --color-bg-light: #f7f4ed;
  
  /* テキストカラー（上品なダークブラウン系） */
  --color-text-main: #38312b;       /* 濃いチャコールブラウン */
  --color-text-sub: #5e544b;        /* ミディアムブラウン */
  --color-text-muted: #8c8075;      /* 控えめなグレージュ */
  
  /* ポイントカラー（濃い黄緑） */
  --color-point-green: #78b828;     /* 添付画像の鮮やかで濃い黄緑 */
  --color-point-green-dark: #669e20;/* ホバー時の深みのある濃い黄緑 */
  --color-point-green-light: #eef7e4;/* 背景用の極めて淡い黄緑 */
  --color-point-green-border: #bfe399;
  
  /* ボーダー・ライン */
  --color-border: #e6e0d5;          /* 添付画像の繊細なベージュ境界線 */
  --color-border-light: #f0ebe2;
  --color-pill-border: #c8c2b5;
  --color-dark-badge: #443a34;

  /* フォントスタック：若干細めの上品な文字組み */
  --font-base: 'Plus Jakarta Sans', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-en: 'Plus Jakarta Sans', sans-serif;

  /* シャドウ・装飾 */
  --shadow-sm: 0 2px 6px rgba(56, 49, 43, 0.04);
  --shadow-md: 0 4px 16px rgba(56, 49, 43, 0.06);
  --shadow-lg: 0 10px 25px rgba(56, 49, 43, 0.08);
  --shadow-button: 0 4px 12px rgba(120, 184, 40, 0.3);

  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  /* コンテナ幅 */
  --container-max: 1200px;
  --transition: 0.25s ease-in-out;
}



img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

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

ul, ol {
  list-style: none;
}

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

/* 共通コンテナ */
.l-container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.l-section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .l-section {
    padding: 55px 0;
  }
}

/* ==========================================================================
   ヘッダー (Header)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-bg-base);
  z-index: 1010;
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 249, 244, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 90px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.header-logo-img {
  height: 60px;
  width: auto;
  max-width: none;
  object-fit: contain;
  flex-shrink: 0;
}

.header-shop-name {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text-main);
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.header-nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text-sub);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color var(--transition);
}

.header-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-point-green);
  transition: width var(--transition);
}

.header-nav-link:hover {
  color: var(--color-point-green-dark);
}

.header-nav-link:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* WEB & LINE CTAボタン群（添付画像スタイル） */
.header-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-btn-web {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-bg-white);
  color: var(--color-text-main);
  border: 1px solid var(--color-pill-border);
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition);
}

.header-btn-web:hover {
  background-color: #f5f1e8;
  border-color: #a89f92;
  transform: translateY(-1px);
}

.header-btn-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-point-green);
  color: #ffffff;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-button);
  transition: var(--transition);
}

.header-btn-line:hover {
  background-color: var(--color-point-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(102, 158, 32, 0.35);
}

.header-btn-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ハンバーガーメニューボタン */
.header-menu-toggle {
  display: none;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1005;
  flex-shrink: 0;
  padding: 0;
}

.header-menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-main);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.header-menu-toggle span:nth-child(1) {
  top: 0;
}

.header-menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header-menu-toggle span:nth-child(3) {
  bottom: 0;
}

.header-menu-toggle.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.header-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}

.header-menu-toggle.is-active span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* ==========================================================================
   ① FV (First View) - 錦ヶ丘天文台前治療院 仕様（Swiper背景＋Ken Burnsズーム＋文字出現アニメーション）
   ========================================================================== */
.fv {
  position: relative;
  height: calc(100vh - 90px);
  min-height: 640px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background-color: var(--color-bg-base);
}

.fv-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.fv-slide-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 6s linear;
}

.fv-bg-1 {
  background-image: url('../img/FV1.jpg');
}

.fv-bg-2 {
  background-image: url('../img/FV2.jpg');
}

.swiper-slide-active .fv-slide-img {
  transform: scale(1.1);
}

.fv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(20, 18, 16, 0.65) 0%, rgba(30, 26, 23, 0.45) 50%, rgba(40, 35, 30, 0.35) 100%);
  z-index: 2;
}

.fv-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-max);
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
}

.fv-text-box {
  color: #ffffff;
  max-width: 800px;
}

.fv-tagline {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: fvFadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
}

.fv-catch {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.65);
}

.fv-catch-line {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.fv-catch-line span {
  display: inline-block;
  animation: fvRevealText 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  transform: translateY(100%);
  opacity: 0;
}

.fv-catch-line:nth-child(1) span {
  animation-delay: 0.7s;
}

.fv-catch-line:nth-child(3) span {
  animation-delay: 0.9s;
}

.fv-catch-line:nth-child(5) span {
  animation-delay: 1.1s;
}

/* FV Badges */
.fv-badges {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fvFadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 1.3s forwards;
}

.fv-badge-item {
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text-main);
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--color-point-green);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fv-badge-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Scroll down indicator */
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.scroll-down-text {
  font-family: var(--font-en);
  font-size: 0.75rem;
  color: #ffffff;
  letter-spacing: 0.25em;
  margin-bottom: 8px;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  font-weight: 600;
}

.scroll-down-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.35);
  position: relative;
  overflow: hidden;
}

.scroll-down-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  animation: fvScrollDownAnim 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes fvScrollDownAnim {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

@keyframes fvRevealText {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fvFadeInUp {
  0% {
    transform: translateY(24px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .fv {
    height: calc(100vh - 70px);
    min-height: 520px;
  }

  .fv-tagline {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .fv-catch {
    font-size: 1.8rem;
    line-height: 1.45;
  }

  .fv-badges {
    margin-top: 22px;
    gap: 8px;
  }

  .fv-badge-item {
    font-size: 0.82rem;
    padding: 6px 14px;
    border-width: 1.5px;
  }

  .scroll-down {
    bottom: 12px;
  }

  .scroll-down-line {
    height: 40px;
  }
}

/* ==========================================================================
   ② お悩みセクション (worries) - 添付画像の配置を忠実に再現
   ========================================================================== */
.trouble-section {
  position: relative;
  z-index: 2;
  background-color: var(--color-bg-base);
  padding: 90px 0 80px;
  border-bottom: 1px solid var(--color-border);
}

.worries-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}

/* 左側カラム：worries + 日本語サブ見出し */
.worries-left {
  position: sticky;
  top: 120px;
}

.worries-title {
  font-family: var(--font-en);
  font-size: 58px;
  font-weight: 500;
  color: var(--color-text-main);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.worries-subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text-sub);
  letter-spacing: 0.02em;
}

.worries-leaf-img {
  width: 22px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

/* 右側カラム：お悩みリスト（添付画像のNewsリストスタイル） */
.worries-right {
  width: 100%;
}

.worries-list {
  border-top: 1px solid var(--color-border);
}

.worries-item {
  display: flex;
  align-items: center;
  padding: 22px 4px;
  gap: 16px;
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition);
}

.worries-item:hover {
  background-color: rgba(255, 255, 255, 0.6);
  padding-left: 8px;
}

.worries-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-point-green);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(120, 184, 40, 0.15);
}

.worries-item-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-main);
  line-height: 1.6;
  letter-spacing: 0.02em;
  flex-grow: 1;
}

/* 下部メッセージ：横線を削除し、自然で上品な余白で配置 */
.worries-message-wrap {
  margin-top: 55px;
  padding-top: 0;
  border-top: none;
  text-align: center;
}

.worries-message-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.worries-message-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-sub);
  line-height: 1.85;
  max-width: 800px;
  margin: 0 auto;
}

/* ==========================================================================
   固定背景ビジュアルバナー (background1 / SP: SPbackground1)
   モダン clip-path: inset(0) + position: fixed パターン
   PC・iOS Safari・Android・全ブラウザで確実＆滑らかな固定背景（Parallax Window）を実現
   ========================================================================== */
.fixed-bg-banner {
  position: relative;
  width: 100%;
  height: 520px;
  clip-path: inset(0);
  -webkit-clip-path: inset(0);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  box-shadow: inset 0 8px 24px rgba(0, 0, 0, 0.08), inset 0 -8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.fixed-bg-banner-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url('../img/background1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  pointer-events: none;
}

/* ==========================================================================
   ③ 私たちについて (About Us) - 添付画像（コラージュスタイル）に忠実なデザイン
   ========================================================================== */
.about-section {
  position: relative;
  z-index: 2;
  background-color: var(--color-bg-base);
  padding: 110px 0;
  border-bottom: 1px solid var(--color-border);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.about-hero-content {
  max-width: 580px;
}

.about-hero-title {
  font-size: 36px;
  font-weight: 500;
  color: var(--color-text-main);
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
}

.about-hero-text {
  font-size: 16px;
  font-weight: 350;
  color: #4d443c;
  line-height: 2.15;
  letter-spacing: 0.03em;
  margin-bottom: 40px;
}

.about-hero-text p + p {
  margin-top: 22px;
}

.about-hero-action {
  display: flex;
  align-items: center;
}

/* 添付画像のピル型「当社について →」ボタン */
.about-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  color: var(--color-text-main);
  border: 1px solid #baa996;
  padding: 12px 34px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(56, 49, 43, 0.04);
  transition: all var(--transition);
}

.about-hero-btn:hover {
  background-color: #f7f3ec;
  border-color: #8c8075;
  color: var(--color-text-main);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(56, 49, 43, 0.08);
}

.about-hero-btn .btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.about-hero-btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* 右側：2枚の写真が重なり合うモダンコラージュ */
.about-collage-wrap {
  position: relative;
  width: 100%;
  max-width: 470px;
  height: 480px;
  margin-left: auto;
}

/* 奥の写真（右上、縦長、青空と家族） */
.about-photo-back {
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(56, 49, 43, 0.09);
  background-color: var(--color-bg-subtle);
}

.about-photo-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 手前の写真（左下、横長寄り、電球の手元、オーバーラップ） */
.about-photo-front {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58%;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid var(--color-bg-base);
  box-shadow: 0 16px 36px rgba(56, 49, 43, 0.13);
  background-color: var(--color-bg-subtle);
  z-index: 2;
}

.about-photo-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ABOUTセクション末尾の相談CTAボックス */
.about-cta-strip {
  margin-top: 60px;
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 36px 44px;
  box-shadow: var(--shadow-sm);
}

.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.about-cta-desc {
  flex: 1 1 320px;
}

.about-cta-badge {
  display: inline-block;
  padding: 8px 24px;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #8cb839 0%, #6ea426 100%);
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 14px rgba(110, 164, 38, 0.3);
}

.about-cta-lead {
  font-size: 16px;
  color: var(--color-text-main);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

.about-cta-action {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

/* 電話のデザイン（添付画像に忠実に再現） */
.about-cta-tel-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition);
}

.about-cta-tel-wrap:hover {
  opacity: 0.85;
}

.about-cta-tel-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-point-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(120, 184, 40, 0.28);
}

.about-cta-tel-icon svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

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

.about-cta-tel-num {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 700;
  color: #38312b;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.about-cta-tel-time {
  font-size: 12.5px;
  font-weight: 400;
  color: #8c8075;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* LINEとWEBボタン（上下並び） */
.about-cta-btn-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 190px;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition);
}

.about-cta-line {
  background-color: #06c755;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(6, 199, 85, 0.22);
}

.about-cta-line:hover {
  background-color: #05b04a;
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(6, 199, 85, 0.32);
}

.about-cta-web {
  background-color: var(--color-bg-base);
  color: var(--color-text-main);
  border: 1px solid var(--color-pill-border);
}

.about-cta-web:hover {
  background-color: #ede5da;
  border-color: #9c9284;
  transform: translateY(-1px);
}

.about-cta-btn-icon {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ==========================================================================
   ④ 選ばれる理由 (Reason) - スクロール連動ダークセクション
   ========================================================================== */
.reason-section {
  position: relative;
  height: 280vh; /* 3枚のスライドを適度なスクロール量で切り替え */
  background-color: #433f3c; /* 深みのある温かいチャコール */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.reason-sticky-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 90px; /* 固定ヘッダー(90px)の下にぴったり固定 */
  height: calc(100vh - 90px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.reason-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

/* 左側固定テキストコンテンツ */
.reason-left {
  max-width: 360px;
}

.reason-title {
  font-family: var(--font-en);
  font-size: 54px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.reason-subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.reason-leaf-img {
  width: 22px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.reason-lead {
  font-size: 15px;
  font-weight: 350;
  color: #d1cbc4;
  line-height: 2.0;
  margin-top: 32px;
  letter-spacing: 0.02em;
}

/* 右側スクロール連動カードエリア */
.reason-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.reason-slider-container {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 600px;
}

.reason-cards-viewport {
  position: relative;
  width: 100%;
  height: 520px;
  min-height: 520px;
}

/* スライド：スクロール進捗に応じて上下からスムーズにフェードイン・アウト */
.reason-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(35px) scale(0.97);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.45s;
  pointer-events: none;
}

.reason-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

.reason-slide.is-passed {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-35px) scale(0.97);
  z-index: 1;
}

/* 白い角丸カード */
.reason-slide-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 32px 36px 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: 100%;
  justify-content: space-between;
}

.reason-card-top {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 4px;
}

.reason-card-num {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 500;
  color: var(--color-point-green);
  line-height: 1;
  letter-spacing: 0.02em;
}

.reason-card-visual {
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.reason-card-img {
  max-height: 185px;
  max-width: 380px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.reason-card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-main);
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.reason-card-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-point-green);
  margin: 12px 0 10px;
}

.reason-card-desc {
  font-size: 14.5px;
  font-weight: 350;
  color: #554d45;
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.reason-card-badge {
  display: inline-block;
  align-self: flex-start;
  margin-top: 14px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 500;
  color: #6e6459;
  background-color: #f7f4ed;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
}

/* 縦並びインジケータードット群 */
.reason-dots {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
}

.reason-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.reason-dot:hover {
  background-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.reason-dot.is-active {
  background-color: var(--color-point-green);
  transform: scale(1.4);
  box-shadow: 0 0 10px rgba(120, 184, 40, 0.75);
}

/* ==========================================================================
   ⑤ 対応サービス (Service) - 単独フルワイドセクション
   ========================================================================== */
.services-section {
  position: relative;
  padding: 95px 0;
  background-color: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border);
}

.services-section .service-block-header {
  margin-bottom: 48px;
}

.service-title {
  font-family: var(--font-en);
  font-size: 58px;
  font-weight: 500;
  color: var(--color-text-main);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-main);
  letter-spacing: 0.04em;
}

.service-leaf-img {
  width: 22px;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
  flex-shrink: 0;
}

.service-lead {
  font-size: 16px;
  font-weight: 400;
  color: #4a423a;
  line-height: 2.0;
  margin-top: 26px;
  max-width: 100%;
  letter-spacing: 0.01em;
}

@media (min-width: 1024px) {
  .service-lead {
    white-space: nowrap;
  }
}

.services-section .service-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-card-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg-subtle);
  position: relative;
}

.service-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.service-card:hover .service-card-thumb img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 16px 14px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  justify-content: space-between;
}

.service-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-main);
  line-height: 1.45;
  margin-bottom: 14px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background-color: var(--color-point-green);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  box-shadow: 0 2px 6px rgba(120, 184, 40, 0.25);
}

.service-card-btn:hover {
  background-color: var(--color-point-green-dark);
  box-shadow: 0 4px 10px rgba(102, 158, 32, 0.35);
}

.service-card-btn svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

/* --- 料金の目安 (Price) --- */
.service-price-block {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--color-border);
}

.service-price-header {
  margin-bottom: 30px;
}

.service-price-title {
  font-family: var(--font-en);
  font-size: 46px;
  font-weight: 500;
  color: var(--color-text-main);
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-price-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-main);
  letter-spacing: 0.04em;
}

.service-price-leaf-img {
  width: 20px;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
  flex-shrink: 0;
}

/* 料金表テーブル */
.service-price-table-wrap {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-price-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.service-price-table thead tr {
  background-color: #f7f5ee;
  border-bottom: 2px solid var(--color-border);
}

.service-price-table th {
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-main);
  letter-spacing: 0.02em;
}

.service-price-table tbody tr {
  border-bottom: 1px solid var(--color-border-light);
  transition: background-color var(--transition);
}

.service-price-table tbody tr:last-child {
  border-bottom: none;
}

.service-price-table tbody tr:hover {
  background-color: rgba(120, 184, 40, 0.035);
}

.service-price-table td {
  padding: 18px 28px;
  font-size: 16px;
  color: var(--color-text-main);
}

.service-price-table .price-madori {
  font-weight: 600;
  color: var(--color-text-main);
  width: 32%;
}

.service-price-table .price-ninzu {
  color: var(--color-text-sub);
  width: 28%;
}

.service-price-table .price-cost {
  font-family: var(--font-en), var(--font-base);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-point-green-dark);
  text-align: right;
  letter-spacing: 0.02em;
}

.service-price-table th:last-child {
  text-align: right;
}

.service-price-note {
  font-size: 13.5px;
  color: #3e3832;
  font-weight: 500;
  margin-top: 12px;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
  padding-left: 1.2em;
  text-indent: -1.2em;
  line-height: 1.6;
}

/* 2カラムカード：基本料金に含まれるもの ＆ オプション */
.service-price-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.service-price-card {
  background: #fdfbf7;
  border-radius: 20px;
  padding: 32px 34px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.price-card-base {
  border-top: 4px solid var(--color-point-green);
}

.price-card-option {
  border-top: 4px solid #b39b75;
}

.price-card-head {
  margin-bottom: 22px;
}

.price-card-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  color: #ffffff;
  background-color: var(--color-point-green);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.price-card-badge.option-badge {
  background-color: #9e845c;
}

.price-card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-main);
  letter-spacing: 0.02em;
}

/* チェックリスト */
.price-check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: var(--color-text-main);
  line-height: 1.6;
}

.price-check-icon {
  width: 18px;
  height: 18px;
  fill: var(--color-point-green);
  flex-shrink: 0;
  margin-top: 4px;
}

/* オプションリスト */
.price-option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.price-option-list li {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--color-text-main);
  display: inline-flex;
  align-items: center;
  transition: all var(--transition);
}

.price-option-list li:hover {
  background-color: #f5efe4;
  border-color: #baa78e;
}

.price-option-list li.price-option-etc {
  background: transparent;
  border: none;
  font-weight: 500;
  color: var(--color-text-sub);
  padding: 8px 6px;
}

/* ==========================================================================
   ⑥ 対応エリア (Area) - 添付画像準拠のモダンマップアートスタイル
   ========================================================================== */
.area-map-section {
  position: relative;
  background-color: var(--color-bg-white); /* SERVICEと同じ白 */
  padding: 95px 0 90px;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.area-map-container {
  position: relative;
}

/* 左上タイトルグループ（添付画像2枚目のCompanyスタイルに準拠） */
.area-map-header {
  margin-bottom: 32px;
}

.area-map-title {
  font-family: var(--font-en);
  font-size: 58px;
  font-weight: 500;
  color: var(--color-text-main);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.area-map-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-main);
  letter-spacing: 0.04em;
}

.area-leaf-img {
  width: 22px;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
  flex-shrink: 0;
}

/* エリアマップ表示エリア（枠線なし・中央配置） */
.area-map-wrapper {
  position: relative;
  width: 100%;
  margin: 10px auto 0;
  display: flex;
  justify-content: center;
}

.area-map-inner {
  position: relative;
  width: 100%;
  max-width: 820px;
  display: inline-block;
}

.area-map-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* 添付画像準拠のピン＆同心円オーラ（会津若松市拠点・猪苗代湖西側） */
.area-target-pin {
  position: absolute;
  top: 41%;
  left: 40%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

/* 同心円（3層の柔らかな円形オーラ ＆ 鮮明なもわ〜っと広がる2重波紋・パルスモーション） */
.area-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  transform-origin: center center;
  will-change: transform, opacity;
}

/* 外層オーラ（大きく呼吸するように伸縮） */
.area-aura-outer {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(248, 206, 138, 0.5) 0%, rgba(246, 218, 168, 0.4) 60%, rgba(246, 233, 206, 0.25) 100%);
  box-shadow: 0 0 35px rgba(244, 180, 80, 0.25);
  animation: auraPulseOuter 2.8s ease-in-out infinite alternate;
}

/* もわ〜っと連続して広がる波紋 1（手前） */
.area-aura-outer::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 175, 75, 0.45) 0%, rgba(248, 200, 120, 0.25) 45%, rgba(248, 210, 140, 0) 75%);
  border: 1.5px solid rgba(242, 170, 70, 0.45);
  transform: translate(-50%, -50%) scale(0.65);
  animation: auraRipple 2.8s cubic-bezier(0.15, 0.7, 0.35, 1) infinite;
  pointer-events: none;
}

/* もわ〜っと連続して広がる波紋 2（時間差で追従） */
.area-aura-outer::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 175, 75, 0.35) 0%, rgba(248, 200, 120, 0.15) 50%, rgba(248, 210, 140, 0) 75%);
  border: 1.5px solid rgba(242, 170, 70, 0.35);
  transform: translate(-50%, -50%) scale(0.65);
  animation: auraRipple 2.8s cubic-bezier(0.15, 0.7, 0.35, 1) infinite 1.4s;
  pointer-events: none;
}

/* 中間層オーラ */
.area-aura-middle {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(246, 192, 115, 0.65) 0%, rgba(244, 210, 150, 0.55) 100%);
  box-shadow: 0 0 25px rgba(242, 170, 70, 0.2);
  animation: auraPulseMiddle 2.8s ease-in-out infinite alternate 0.35s;
}

/* 内層オーラ（中心近くで濃く温かいオレンジ） */
.area-aura-inner {
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(244, 176, 85, 0.78) 0%, rgba(242, 195, 125, 0.68) 100%);
  box-shadow: 0 0 20px rgba(240, 160, 50, 0.3);
  animation: auraPulseInner 2.8s ease-in-out infinite alternate 0.7s;
}

/* もわ〜っと大きく呼吸・脈動するキーフレーム定義 */
@keyframes auraPulseOuter {
  0% {
    transform: translate(-50%, -50%) scale(0.90);
    opacity: 0.45;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.16);
    opacity: 0.35;
  }
}

@keyframes auraPulseMiddle {
  0% {
    transform: translate(-50%, -50%) scale(0.88);
    opacity: 0.5;
  }
  50% {
    opacity: 0.95;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.14);
    opacity: 0.6;
  }
}

@keyframes auraPulseInner {
  0% {
    transform: translate(-50%, -50%) scale(0.86);
    opacity: 0.65;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.12);
    opacity: 0.75;
  }
}

/* 外側へもわ〜んと広がり消える波紋キーフレーム */
@keyframes auraRipple {
  0% {
    transform: translate(-50%, -50%) scale(0.55);
    opacity: 0.85;
  }
  50% {
    opacity: 0.55;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.45);
    opacity: 0;
  }
}

/* ピン本体（丸ピン ＋ 針） */
.area-pin-marker {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-2px);
}

.area-pin-dot {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #8bb733;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 10px rgba(139, 183, 51, 0.5);
}

.area-pin-dot::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 1.5px solid #8bb733;
  animation: pinPulse 2.8s ease-out infinite;
  pointer-events: none;
}

@keyframes pinPulse {
  0% {
    transform: scale(0.8);
    opacity: 0.9;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.area-pin-stem {
  width: 2px;
  height: 14px;
  background-color: #796a54;
  margin-top: -1px;
}

/* 右下説明テキスト（枠を薄くすっきり配置） */
.area-bottom-desc {
  position: absolute;
  right: 15px;
  bottom: 20px;
  z-index: 3;
  text-align: right;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid rgba(56, 49, 43, 0.04);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
}

.area-desc-main {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text-main);
  line-height: 1.5;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.area-desc-sub {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   よくあるご質問 (FAQ)
   ========================================================================== */
.faq-section {
  padding: 85px 0 90px;
  background-color: var(--color-bg-base);
  border-bottom: 1px solid var(--color-border);
}

.faq-header {
  margin-bottom: 38px;
}

.faq-title {
  font-family: var(--font-en);
  font-size: 58px;
  font-weight: 500;
  color: var(--color-text-main);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.faq-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-main);
  letter-spacing: 0.04em;
}

.faq-leaf-img {
  width: 22px;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
  flex-shrink: 0;
}

/* 横に長いデザイン・1つずつ縦並び */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 28px 36px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56, 49, 43, 0.07);
  border-color: rgba(120, 184, 40, 0.4);
}

.faq-q-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--color-border);
}

.faq-q-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-point-green);
  color: #ffffff;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(120, 184, 40, 0.3);
}

.faq-q-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-main);
  line-height: 1.5;
}

.faq-a-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.faq-a-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f5efe4;
  color: #967d53;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-a-text {
  font-size: 16px;
  color: var(--color-text-main);
  line-height: 1.75;
  padding-top: 3px;
}

/* ==========================================================================
   ⑥ 店舗情報 (Shop Information)
   ========================================================================== */
.shop-section {
  padding: 95px 0 100px;
  background-color: #433f3c; /* reasonセクションと同じ温かみのあるチャコール */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-header {
  margin-bottom: 38px;
}

.shop-title {
  font-family: var(--font-en);
  font-size: 58px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.shop-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.shop-leaf-img {
  width: 22px;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
  flex-shrink: 0;
}

.shop-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  background: #fdfbf7;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

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

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

.shop-table tr:last-child {
  border-bottom: none;
}

.shop-table th {
  width: 110px;
  padding: 12px 10px 12px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-main);
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

.shop-table td {
  padding: 12px 0;
  font-size: 16px;
  color: var(--color-text-sub);
  line-height: 1.7;
  font-weight: 350;
}

.shop-map-wrap {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.shop-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
}

/* ==========================================================================
   最下部 CTA セクション (Aboutセクションと同じCTA)
   ========================================================================== */
.bottom-cta-section {
  padding: 85px 0 90px;
  background-color: var(--color-bg-base);
  border-bottom: 1px solid var(--color-border);
}

.bottom-cta-section .about-cta-strip {
  margin-top: 0;
}

/* ==========================================================================
   フッター (Footer)
   ========================================================================== */
.site-footer {
  background-color: var(--color-bg-base);
  border-top: 1px solid var(--color-border);
  padding: 50px 0 30px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo-wrap img {
  height: 44px;
  width: auto;
}

.footer-nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav-link {
  font-size: 13.5px;
  color: var(--color-text-sub);
  font-weight: 400;
}

.footer-nav-link:hover {
  color: var(--color-point-green-dark);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 25px;
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: center;
}

.copyright {
  text-align: center;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   TOPに戻るボタン（常時右下に固定表示）
   ========================================================================== */
.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  background-color: var(--color-point-green);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(120, 184, 40, 0.38), 0 2px 6px rgba(0, 0, 0, 0.08);
  z-index: 990;
  text-decoration: none;
  transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.back-to-top svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  transition: transform var(--transition);
}

.back-to-top:hover {
  background-color: var(--color-point-green-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(120, 184, 40, 0.48);
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

/* ==========================================================================
   モバイル用フローティングCTAバー
   ========================================================================== */
.mobile-floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-bg-base);
  box-shadow: 0 -3px 12px rgba(56, 49, 43, 0.08);
  border-top: 1px solid var(--color-border);
  z-index: 1020;
  padding: 10px 14px;
}

.mobile-floating-cta-inner {
  display: flex;
  gap: 10px;
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-pill);
  padding: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
}

/* ==========================================================================
   レスポンシブ対応 (Media Queries)
   ========================================================================== */
@media (max-width: 1200px) {
  /* SP時 ヘッダーのWEB/LINEボタンを非表示化 */
  .header-cta-group {
    display: none !important;
  }

  .header-menu-toggle {
    display: block;
  }

  /* ドロワーメニュー（ヘッダー下からスムーズスライドイン・ヘッダー常時表示） */
  .header-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 90px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    height: calc(100dvh - 90px);
    background: rgba(251, 249, 244, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: right 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease, visibility 0.35s ease;
    visibility: hidden;
    opacity: 0;
    padding: 40px 24px 80px;
    overflow-y: auto;
  }

  .header-nav.is-open {
    right: 0;
    visibility: visible;
    opacity: 1;
  }

  .header-nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
  }

  .header-nav-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-main);
    display: inline-block;
    padding: 10px 0;
    letter-spacing: 0.05em;
    width: 100%;
    border-bottom: 1px solid rgba(56, 49, 43, 0.08);
  }

  .header-nav-link:hover {
    color: var(--color-point-green);
  }

  .dual-columns-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-dual-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-action-wrap {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .header-logo-img {
    height: 50px;
  }

  .header-shop-name {
    font-size: 19px;
  }

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

  .worries-left {
    position: static;
  }

  .worries-title {
    font-size: 44px;
  }

  /* About セクション：画像（コラージュ） → テキスト の順 */
  .about-section {
    padding: 80px 0;
  }

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

  .about-collage-wrap {
    order: 1;
    margin: 0 auto 32px;
    max-width: 440px;
    height: 420px;
  }

  .about-hero-content {
    order: 2;
    max-width: 100%;
  }

  .about-hero-title {
    margin-bottom: 20px;
  }

  .about-hero-text {
    max-width: 100%;
  }

  /* CTA セクション（謎の空白解消） */
  .about-cta-strip {
    padding: 28px 24px;
    margin-top: 40px;
    height: auto;
    min-height: auto;
  }

  .about-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    width: 100%;
  }

  .about-cta-desc {
    width: 100%;
    flex: none;
  }

  .about-cta-badge {
    font-size: 15px;
    padding: 5px 16px;
    margin-bottom: 10px;
  }

  .about-cta-lead {
    font-size: 14px;
    line-height: 1.6;
  }

  .about-cta-action {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
  }

  .about-cta-tel-wrap {
    gap: 12px;
  }

  .about-cta-tel-num {
    font-size: 24px;
  }

  .about-cta-btn-column {
    width: 100%;
    max-width: 320px;
    gap: 10px;
  }

  .about-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 11px 18px;
    font-size: 13.5px;
  }

  /* Reason セクション（SP最適化：固定解除・縦並びカードレイアウト） */
  .reason-section {
    height: auto !important;
    min-height: auto !important;
    padding: 75px 0 65px;
    overflow: visible !important;
  }

  .reason-sticky-wrap {
    position: static !important;
    top: auto !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    padding: 0;
    display: block !important;
    overflow: visible !important;
  }

  .reason-layout {
    display: flex;
    flex-direction: column;
    gap: 36px;
    width: 100%;
    max-width: 100%;
  }

  .reason-left {
    max-width: 100%;
    text-align: left;
    margin-bottom: 0;
  }

  .reason-title {
    font-size: 42px;
    margin-bottom: 6px;
    text-align: left;
  }

  .reason-subtitle {
    justify-content: flex-start;
  }

  .reason-lead {
    margin: 12px 0 0 0;
    max-width: 100%;
    line-height: 1.8;
    text-align: left;
    font-size: 14px;
  }

  .reason-right {
    width: 100%;
    display: block !important;
  }

  .reason-slider-container {
    display: block !important;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .reason-cards-viewport {
    position: static !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 24px;
    width: 100%;
  }

  .reason-slide {
    position: static !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    width: 100% !important;
    margin: 0;
  }

  .reason-slide-card {
    min-height: auto !important;
    height: auto !important;
    padding: 30px 24px 32px;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  }

  .reason-card-visual {
    height: 180px;
    margin-bottom: 14px;
  }

  .reason-card-img {
    max-height: 175px;
    max-width: 380px;
  }

  .reason-dots {
    display: none !important;
  }
}

@media (max-width: 768px) {
  /* 対応サービス（SERVICE）カードを2列並びにする */
  .services-section .service-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .service-card-thumb {
    height: 120px;
  }

  .service-card-body {
    padding: 12px 8px 14px;
  }

  .service-card-title {
    font-size: 13.5px;
    line-height: 1.35;
    margin-bottom: 8px;
    min-height: 36px;
  }

  .service-card-btn {
    font-size: 11px;
    padding: 6px 8px;
    gap: 4px;
  }

  .service-card-btn svg {
    width: 10px;
    height: 10px;
  }

  /* エリアマップのピンをさらに上へ移動 */
  .area-target-pin {
    top: 24% !important;
  }
}

@media (max-width: 640px) {
  body {
    padding-top: 70px;
    padding-bottom: 65px;
  }

  .header-nav {
    top: 70px;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
  }

  .mobile-floating-cta {
    display: block;
  }

  .site-header .header-inner {
    height: 70px;
    gap: 10px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-logo-img {
    height: 38px;
  }

  .header-shop-name {
    font-size: 15px;
  }

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

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

  .about-section {
    padding: 60px 0;
  }

  .about-collage-wrap {
    order: 1;
    max-width: 320px;
    height: 320px;
    margin: 0 auto 24px;
  }

  .about-photo-back {
    width: 72%;
    height: 250px;
    border-radius: 16px;
  }

  .about-photo-front {
    width: 62%;
    height: 180px;
    border-radius: 16px;
    border-width: 4px;
  }

  .about-hero-content {
    order: 2;
  }

  .about-hero-title {
    font-size: 25px;
    line-height: 1.45;
    margin-bottom: 20px;
  }

  .about-hero-text {
    font-size: 14px;
    line-height: 2.0;
    margin-bottom: 30px;
  }

  .worries-message-title {
    font-size: 20px;
  }

  .worries-message-desc {
    font-size: 14px;
  }

  .about-cta-strip {
    padding: 22px 16px;
    border-radius: 16px;
    margin-top: 32px;
  }

  .about-cta-badge {
    font-size: 12.5px;
    padding: 4px 14px;
    margin-bottom: 8px;
  }

  .about-cta-action {
    gap: 14px;
  }

  .about-cta-tel-wrap {
    gap: 10px;
  }

  .about-cta-tel-num {
    font-size: 23px;
  }

  .about-cta-tel-icon {
    width: 42px;
    height: 42px;
  }

  .about-cta-tel-icon svg {
    width: 18px;
    height: 18px;
  }

  .about-cta-tel-time {
    font-size: 11px;
  }

  .about-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
    font-size: 12.5px;
  }

  .reason-section {
    height: auto;
    padding: 60px 0 50px;
  }

  .reason-title {
    font-size: 34px;
    margin-bottom: 4px;
  }

  .reason-lead {
    font-size: 13px;
    line-height: 1.7;
    margin-top: 8px;
  }

  .reason-cards-viewport {
    gap: 18px;
  }

  .reason-slide-card {
    padding: 24px 18px 26px;
    border-radius: 18px;
  }

  .reason-card-num {
    font-size: 26px;
  }

  .reason-card-visual {
    height: 150px;
    margin-bottom: 12px;
  }

  .reason-card-img {
    max-height: 145px;
  }

  .reason-card-title {
    font-size: 16.5px;
    line-height: 1.4;
  }

  .reason-card-dot {
    margin: 10px 0 8px;
  }

  .reason-card-desc {
    font-size: 13.5px;
    line-height: 1.7;
  }

  .reason-card-badge {
    font-size: 10px;
    padding: 3px 8px;
    margin-top: 6px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- Area セクション レスポンシブ --- */
@media (max-width: 768px) {
  .area-map-section {
    padding: 70px 0 60px;
  }

  .area-map-title {
    font-size: 38px;
  }

  .area-aura-outer {
    width: 220px;
    height: 220px;
  }

  .area-aura-middle {
    width: 145px;
    height: 145px;
  }

  .area-aura-inner {
    width: 75px;
    height: 75px;
  }

  .area-pin-marker {
    transform: translateY(-5px);
  }

  .area-pin-text {
    font-size: 12.5px;
    margin-bottom: 3px;
  }

  .area-pin-dot {
    width: 11px;
    height: 11px;
  }

  .area-pin-stem {
    height: 10px;
  }

  .area-bottom-desc {
    position: static;
    margin: 18px auto 0;
    max-width: 100%;
    text-align: left;
    padding: 12px 16px;
    background: rgba(250, 248, 245, 0.55);
    border: 1px solid rgba(56, 49, 43, 0.05);
    box-shadow: none;
  }

  .area-desc-main {
    font-size: 15px;
    margin-bottom: 2px;
  }

  .area-desc-sub {
    font-size: 13px;
  }
}

/* --- 料金の目安 (Price) レスポンシブ --- */
@media (max-width: 768px) {
  .service-price-block {
    margin-top: 50px;
    padding-top: 40px;
  }

  .service-price-title {
    font-size: 38px;
  }

  .service-price-table th {
    padding: 12px 14px;
    font-size: 13.5px;
  }

  .service-price-table td {
    padding: 13px 14px;
    font-size: 14px !important;
  }

  .service-price-table .price-cost {
    font-size: 16px;
  }

  .service-price-note {
    font-size: 12px;
    margin-bottom: 28px;
    padding-left: 2px;
  }

  .service-price-details-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-price-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .price-card-title {
    font-size: 18px;
  }

  .price-check-list li {
    font-size: 14px !important;
    gap: 8px;
  }

  .price-option-list li {
    font-size: 13.5px;
    padding: 7px 12px;
  }
}

/* --- About CTA & Bottom CTA & FAQ & Back-to-Top レスポンシブ --- */
@media (max-width: 768px) {
  .about-cta-badge {
    font-size: 18.5px;
    padding: 6px 18px;
    margin-bottom: 10px;
  }

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

  .faq-card {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .faq-q-box {
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .faq-q-mark,
  .faq-a-mark {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }

  .faq-q-text {
    font-size: 15px;
  }

  .faq-a-box {
    gap: 10px;
  }

  .shop-section {
    padding: 70px 0;
  }

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

  .shop-content-grid {
    grid-template-columns: 1fr;
    padding: 24px 18px;
    border-radius: 18px;
    gap: 24px;
  }

  .bottom-cta-section {
    padding: 60px 0;
  }

  .fixed-bg-banner {
    height: 380px;
  }

  .fixed-bg-banner-inner {
    background-image: url('../img/SPbackground1.jpg');
  }

  .back-to-top {
    right: 16px;
    bottom: 82px; /* モバイル固定バーと被らない位置 */
    width: 42px;
    height: 42px;
  }

  .back-to-top svg {
    width: 22px;
    height: 22px;
  }
}

/* ==========================================================================
   ④ SP表示時 本文フォントサイズ 14px 統一
   ========================================================================== */
@media (max-width: 768px) {
  body,
  .worries-item-text,
  .worries-message-desc,
  .about-hero-text,
  .about-hero-text p,
  .about-cta-lead,
  .reason-lead,
  .reason-card-desc,
  .service-lead,
  .greeting-text-content p,
  .faq-a-text,
  .shop-table td,
  .footer-desc,
  .service-price-table td,
  .price-check-list li,
  .price-check-list li span,
  .area-desc-sub {
    font-size: 14px !important;
  }
}

