/* Base */
* {
  box-sizing: 
  border-box; 
 }

html, body 
{ margin: 0; 
  padding: 0; 
}

body {
 font-family: 'Noto Sans JP', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
 color: #14202a;
 background: #fff;
 line-height: 1.8; /* 変更 */
 font-size: 17px; /* 追加 */
}
a { color: #0d6efd; text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* Header */
.site-header {
 position: sticky;
 top: 0;
 background: rgba(255,255,255,0.9);
 backdrop-filter: saturate(180%) blur(10px);
 border-bottom: 1px solid #eef2f6;
 z-index: 50;
}

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

.brand { display: flex; align-items: baseline; gap: 10px; }
.logo { font-weight: 900; font-size: 20px; letter-spacing: 0.08em; }
.brand-sub { font-size: 12px; color: #6b7c8f; }

.nav { display: flex; align-items: center; gap: 20px; }
.nav a { color: #14202a; font-weight: 500; }
.btn { display: inline-block; padding: 12px 18px; border-radius: 10px; font-weight: 700; transition: .2s; text-align: center; }
.btn-sm { padding: 8px 12px; border-radius: 8px; }
.btn-primary { background: #0d6efd; color: #fff; }
.btn-primary:hover { filter: brightness(0.95); text-decoration: none; }
.btn-outline { border: 1px solid #d6dde5; color: #14202a; }
.btn-outline:hover { background: #f7f9fc; text-decoration: none; }
.btn.full { width: 100%; }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #14202a; margin: 6px 0; transition: .2s; }
.nav.open { display: flex; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  background-image: url("./ハウスクリーニング\ \(1\).png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #0b1b2a;
  /* padding: 56px 0 72px; */
  height: 70vh;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0.2) 70%, rgba(255, 255, 255, 0) 100%);
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  height: 100%;
}

.hero-header {
  display: flex;
  align-items: flex-start;
  margin-left: 100px;
  gap: 30px;
  margin-top: 3%;
}

.hero-body {
  flex: 1;
  display: flex;
  align-items: center; /* 垂直中央寄せ */
  justify-content: center; /* 水平中央寄せ */
  gap: 0px;
  /* margin-right: 35%; 削除 (中央寄せのため) */
}

.hero-copy {
  flex: 1;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.hero-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #2b3a48;
}
.hero-brand-main {
  font-size: 18px;
}
.hero-brand-sub {
  font-size: 14px;
  letter-spacing: 0.2em;
}
.hero-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* === 電話番号アイコン (変更箇所) === */
.hero-phone-label {
  grid-area: icon;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f2f5; 
  border-radius: 8px; 
  width: 50px;
  height: 50px;
  font-size: 0; /* テキストを非表示 */
  color: transparent;
  padding: 0;
}

.hero-phone-label::before {
  content: '📞';
  font-size: 26px;
  color: #14202a;
  line-height: 1;
}

.hero-phone {
  display: grid;
  grid-template-areas: "icon number"
                       "icon hours";
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 10px;
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: #d83434;
  font-weight: 900;
  line-height: 1.2;
}

.hero-phone:hover {
  text-decoration: none;
  filter: none;
}

.hero-phone-number {
  grid-area: number;
  font-size: 26px;
  font-weight: 900;
  color: #d83434;
  line-height: 1.1;
}

.hero-phone-hours {
  grid-area: hours;
  font-size: 12px;
  color: #21303b;
  font-weight: 500;
  line-height: 1;
}
/* === 電話番号アイコン (ここまで) === */

.hero-form-btn {
  background: linear-gradient(135deg, #06C755 0%, #06C755 100%);
  color: #fff;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(13, 110, 253, 0.25);
  font-weight: bold;
  letter-spacing: 0.06em;
}
.hero-form-btn:hover {
  text-decoration: none;
  filter: brightness(0.95);
}
.hero-copy .lead {
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  color: #2b3a48;
  font-weight: 500;
  text-align: center;
}


.hero-feature-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  margin-bottom: 24px;
}
.hero-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.hero-copy h1 {
  font-size: clamp(36px, 4vw, 52px);
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  width: max-content;
  max-width: 100%;
}
.hero-plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 999px;
  background: #0d6efd;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.12em;
  box-sizing: border-box;
}
.hero-feature-circles-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.hero-feature-circles {
  display: flex;
  gap: 18px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  justify-content: center;
}

.hero-feature-circles::-webkit-scrollbar {
  height: 6px;
}

.hero-feature-circles::-webkit-scrollbar-thumb {
  background: rgba(13, 110, 253, 0.25);
  border-radius: 999px;
}

.feature-circle {
  flex: 0 0 200px;
  min-width: 200px;
  max-width: 200px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffef69;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-circle-title {
  font-size: 15px;
  font-weight: 700;
  color: #0b1b2a;
}

.feature-circle-text {
  font-size: 16px;
  font-weight: 900;
  color: #0b1b2a;
  margin-top: 6px;
}

.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #0b57d0;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  align-self: center;
}

.hero-location-icon {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: relative;
}

.hero-location-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: #0b57d0;
}

.hero-time-text {
  background: rgba(255, 255, 255, 0.92);
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 16px;
  color: #1d2a37;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  align-self: center;
  width: fit-content;
}

.division{
  margin-bottom: 10px;
  display: flex;
  justify-content: right;
}

.division .hero-location-badge{
  padding-left: 20px;
}

/* Sections */
.section { padding: 30px 0; }
.section h2 {
  font-size: 32px; /* 変更 */
  margin: 0 0 20px; 
  text-align: center; 
}
.section .center { text-align: center; }

.cards { display: grid; gap: 16px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border: 1px solid #eef2f6; border-radius: 14px; padding: 18px; box-shadow: 0 2px 6px rgba(20,32,42,.04); }
.card h3 { margin: 0 0 6px; font-size: 18px; }
.card p { margin: 0; color: #394b59; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature { background: #fbfdff; border: 1px solid #e6eef7; border-radius: 14px; padding: 18px; }
.feature h3 { margin: 0 0 6px; font-size: 18px; }
.feature ul { margin: 0; padding-left: 18px; }

.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; height: 34px; padding: 0 12px; border-radius: 999px; background: #f2f6fb; border: 1px solid #e5ecf3; font-weight: 700; font-size: 13px; }

.mt { margin-top: 12px; }
.mt-lg { margin-top: 28px; }


/* Footer */
.site-footer { background: #0b1b2a; color: #c9d6e2; padding: 20px 0; margin-top: 0px; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 16px; align-items: center; }
.site-footer .brand .logo { color: #fff; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: #c9d6e2; }
.footer-links a:hover { color: #fff; }
.copyright { grid-column: 1 / -1; margin: 0; text-align: right; font-size: 12px; }


/* --------------------------------
* キャンペーンセクション (.problems を流用)
* -------------------------------- */
.problems {
 background: #b8e7ff; /* 画像から抽出した水色の背景 */
}

.problems h2 {
 font-size: 26px; /* 既存の28px から少し変更 */
 color: #0d6efd; /* プライマリカラー */
 font-weight: 900;
}

.campaign-lead {
 font-size: 1.1rem; /* 17.6px */
 font-weight: 500;
 color: #0b1b2a; /* フッターの濃い色 */
 margin-top: 16px;
 margin-bottom: 24px;
 line-height: 1.8;
}

.campaign-coupon-box {
 background: #ffff33; /* 画像から抽出した黄色い背景 */
 border-radius: 16px;
 padding: 32px;
 max-width: 640px; /* ボックスが横に広がりすぎないように */
 margin: 0 auto; /* .container.center と合わせて中央に配置 */
}
.campaign-coupon-box p {
 margin: 0;
 font-size: 1.25rem; /* 20px */
 font-weight: 700;
 color: #14202a; /* 基本の文字色 */
 line-height: 1.8;
}
.campaign-coupon-box .coupon-highlight {
 font-size: 1.6rem; /* 25.6px */
 font-weight: 900;
 color: #14202a;
 display: inline-block;
 margin: 4px 0;
}

/* --------------------------------
* サービス一覧セクション (旧 solution/plans)
* -------------------------------- */
.service-list {
 padding: 0; /* .section の上下パディングをリセット */
 background: #f9f9f9; /* 画像の背景色 (白より少しグレー) */
}

/* 青いヘッダーバー */
.service-header-bar {
 background: #0d6efd; /* プライマリカラー (画像の青に近い) */
 color: #fff;
 padding: 24px 0;
}
.service-header-bar h2 {
 color: #fff;
 margin: 0;
 font-size: 24px;
 text-align: center; /* 全体のデザインに合わせて中央寄せ */
}

/* 白い背景部分のタイトル */
.service-list .container {
 padding-top: 48px;
 padding-bottom: 64px;
}
.service-title {
 font-size: 28px;
 margin: 0 0 20px;
 text-align: center;
}

/* サービスカードのグリッド */
.service-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr); /* 3カラム */
 gap: 20px;
}

/* サービスカード */
.service-card {
 background: #fff;
 border: 1px solid #eef2f6;
 border-radius: 16px;
 box-shadow: 0 4px 12px rgba(20, 32, 42, .05);
 overflow: hidden; /* 画像の角丸のため */
 transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
 transform: translateY(-4px);
 box-shadow: 0 6px 16px rgba(20, 32, 42, .08);
}

.service-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; /* 画像のアスペクト比を設定 */
  overflow: hidden; /* 画像がはみ出さないように */
}

/* キラキラエフェクト */
.service-card-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  z-index: 5;
  transition: left 0.5s;
}

.service-card:hover .service-card-image::before {
  left: 100%;
  transition: left 0.6s ease-in-out;
}

/* キラキラの星を追加 */
.service-card-image::after {
  content: '✨';
  position: absolute;
  top: 20%;
  right: 15%;
  font-size: 24px;
  opacity: 0;
  z-index: 6;
  animation: sparkle 1.5s ease-in-out infinite;
  pointer-events: none;
}

.service-card:hover .service-card-image::after {
  opacity: 1;
  animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(180deg);
  }
}

/* キラキラの光るエフェクトを強化 */
.service-card:hover .service-card-image {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6),
              0 0 40px rgba(255, 215, 0, 0.4),
              0 0 60px rgba(255, 255, 255, 0.3);
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6),
                0 0 40px rgba(255, 215, 0, 0.4),
                0 0 60px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8),
                0 0 60px rgba(255, 215, 0, 0.6),
                0 0 90px rgba(255, 255, 255, 0.5);
  }
}

.service-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.service-card-image .image-default {
  opacity: 1; /* デフォルト画像は表示 */
  z-index: 1;
}

.service-card-image .image-hover {
  opacity: 0; /* ホバー画像は非表示 */
  z-index: 2;
}

.service-card:hover .service-card-image .image-default {
  opacity: 0; /* ホバー時にデフォルト画像を非表示 */
}

.service-card:hover .service-card-image .image-hover {
  opacity: 1; /* ホバー時にホバー画像を表示 */
}

/* オレンジ色のタグ */
.service-card-tag {
 position: absolute;
 top: 12px;
 left: 12px;
 background: #fd980d; /* 画像のオレンジ色 */
 color: #fff;
 font-weight: 700;
 font-size: 14px;
 padding: 6px 14px;
 border-radius: 8px;
 z-index: 10; /* 画像の上に常に表示 */
}

.service-card-body {
 padding: 16px 20px;
}

/* 価格表記 */
.service-card-price {
 margin: 0;
 font-weight: 700;
 color: #14202a;
}
.service-card-price .label {
 font-size: 14px;
 display: inline-block;
 margin-right: 8px;
 vertical-align: baseline;
}
.service-card-price .price {
 font-size: 36px; /* 変更 */
 font-weight: 900;
 color: #e53935; /* 画像の赤色 */
 letter-spacing: -0.02em;
}
.service-card-price small {
 font-size: 12px;
 font-weight: 500;
 color: #394b59;
 margin-left: 2px;
 vertical-align: baseline;
}
.service-card-price .price + span {
 font-size: 16px;
 vertical-align: baseline;
}

.works {
 position: relative;
 overflow: hidden; /* 両端の背景がはみ出ないように */
 background: #fff;
}

/* 両端の水色グラデーション背景 */
.works::before,
.works::after {
 content: '';
 position: absolute;
 top: 0;
 width: 200px;
 height: 100%;
 background: linear-gradient(to right, rgba(225, 245, 254, 0.9), rgba(225, 245, 254, 0));
 opacity: 0.8;
 z-index: 0;
}
.works::before {
 left: 0;
}
.works::after {
 right: 0;
 transform: scaleX(-1); /* グラデーションを反転 */
}

/* コンテンツは背景より手前に表示 */
.works .container {
 position: relative;
 z-index: 1;
}

/* 導入テキスト */
.works-lead {
 max-width: 800px;
 margin-left: auto;
 margin-right: auto;
 color: #394b59;
 font-size: 15px; /* 16pxより少し小さめ */
 line-height: 1.9;
}

/* メインタイトル */
.works-title {
 font-size: 28px;
 font-weight: 900;
 text-align: center;
 color: #14202a;
 margin-top: 32px;
 margin-bottom: 32px;
 line-height: 1.6;
}

/* 実績グリッド */
.works-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 20px;
}

/* 実績カード */
.work-card {
 position: relative; /* タグの基準位置 */
 border-radius: 14px;
 overflow: hidden;
 box-shadow: 0 4px 12px rgba(20, 32, 42, .06);
 border: 1px solid #eef2f6;
}
.work-card img {
 width: 100%;
 aspect-ratio: 4 / 3;
 object-fit: cover;
 display: block;
}

/* 赤系のタグ */
.work-tag {
 position: absolute;
 top: 16px; /* 画像の上からの位置 */
 left: 50%;
 transform: translateX(-50%); /* 水平中央寄せ */
 background: #e96d71; /* 画像から抽出した赤系 */
 color: #fff;
 font-weight: 700;
 font-size: 15px;
 padding: 8px 18px;
 border-radius: 999px;
 box-shadow: 0 2px 4px rgba(0,0,0,0.1);
 z-index: 2;
}


/* --------------------------------
* 新しいフロー/お問い合わせセクション (Process Flow)
* -------------------------------- */
.process-flow {
 background: #fdfdff; /* わずかに青みがかった白 */
}

.flow-step-item {
 max-width: 800px;
 margin: 0 auto 48px auto; /* 各ステップの間隔 */
 padding-bottom: 32px;
 border-bottom: 2px dashed #d6e6ff; /* 画像内の区切り線 */
}
.flow-step-item:last-child {
 border-bottom: none;
 margin-bottom: 0;
}

/* ステップヘッダー (青いバー) */
.flow-step-header {
 background: #0d6efd; /* プライマリカラー (画像の青) */
 color: #fff;
 border-radius: 8px;
 padding: 16px 24px;
 text-align: center;
 margin-bottom: 32px;
 box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}
.flow-step-header span {
 display: block;
 font-size: 14px;
 font-weight: 500;
 letter-spacing: 0.05em;
 opacity: 0.9;
}
.flow-step-header h3 {
 margin: 0;
 font-size: 24px;
 font-weight: 900;
 letter-spacing: 0.05em;
}

/* ステップのコンテンツ (画像 + テキスト) */
.flow-step-content {
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 text-align: center;
 padding: 20px 0;
}

.flow-step-text {
 width: 100%;
 text-align: center;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
}

.flow-step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.flow-step-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  padding: 40px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(13, 110, 253, 0.15);
  border: 2px solid #90caf9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow-step-item:hover .flow-step-icon-wrapper {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(13, 110, 253, 0.25);
}

.flow-step-icon {
  font-size: 80px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.flow-step-icon-label {
  font-size: 18px;
  font-weight: 700;
  color: #0d6efd;
  letter-spacing: 0.05em;
  text-align: center;
}

.flow-step-text p,
.flow-step-content p {
 margin: 0;
 font-size: 18px;
 font-weight: 500;
 color: #14202a;
 line-height: 1.8;
 text-align: center;
 align-items: center;
}

/* process-flow内のすべてのpタグを見やすく */
.process-flow p {
 font-size: 18px;
 font-weight: 500;
 color: #14202a;
 line-height: 1.8;
 letter-spacing: 0.02em;
}

/* STEP1専用: お問い合わせ情報 */
.flow-step-contact-info {
 margin-top: 32px;
 text-align: center;
}
.contact-lead {
 font-weight: 700;
 font-size: 16px;
 margin: 0 0 16px;
}

.contact-methods {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 align-items: center;
 gap: 16px 24px;
}

/* 電話番号 */
.contact-phone {
 text-align: left;
 margin-right: 16px;
}
.phone-badge {
 display: inline-block;
 background: #e53935; /* 赤色 */
 color: #fff;
 font-size: 12px;
 font-weight: 700;
 padding: 4px 8px;
 border-radius: 4px;
 margin-bottom: 4px;
}
.phone-number {
 font-size: 38px;
 font-weight: 900;
 color: #14202a;
 letter-spacing: -0.01em;
 display: block;
 line-height: 1.1;
 text-decoration: none;
}
.phone-number .phone-icon::before {
 content: '📞'; /* 電話アイコン (絵文字) */
 margin-right: 8px;
 font-size: 28px;
 vertical-align: middle;
}

/* フォーム・LINEボタン */
.contact-buttons {
 display: flex;
 gap: 12px;
}

.btn-form, .btn-line {
 display: flex;
 align-items: center;
 justify-content: center;
 flex-direction: column;
 width: 120px;
 height: 80px;
 border-radius: 12px;
 font-weight: 700;
 font-size: 14px;
 color: #fff;
 text-decoration: none;
 line-height: 1.4;
 box-shadow: 0 4px 8px rgba(0,0,0,0.1);
 transition: transform 0.2s, box-shadow 0.2s;
}

.btn-form {
 background: #0d6efd; /* プライマリカラー */
}

.btn-line {
 background: #06C755; /* LINEグリーン */
}

.btn-form:hover, .btn-line:hover {
 filter: brightness(0.95);
 transform: translateY(-3px);
 text-decoration: none;
 box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* アイコン (簡易版) */
.btn-form .icon-mail::before {
 content: '✉️';
 font-size: 24px;
 line-height: 1;
 margin-bottom: 4px;
}

.btn-line .icon-line::before {
 content: 'L'; /* LINEロゴ風 (簡易) */
 font-family: sans-serif;
 font-weight: 900;
 font-size: 22px;
 border: 2px solid #fff;
 border-radius: 6px;
 width: 28px;
 height: 28px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 line-height: 1;
 margin-bottom: 4px;
}


/* --------------------------------
* フッターCTAセクション
* -------------------------------- */
.footer-cta {
  background: #0d6efd; /* 鮮やかな青 */
  background-image: 
    repeating-linear-gradient(60deg, rgba(255,255,255,0.1) 0px, rgba(255,255,255,0.1) 1px, transparent 1px, transparent 8px),
    repeating-linear-gradient(-60deg, rgba(255,255,255,0.1) 0px, rgba(255,255,255,0.1) 1px, transparent 1px, transparent 8px);
  background-size: 20px 20px;
  padding: 32px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 無料サービスバブル */
.free-service-bubbles {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 32px;
  width: 100%;
}

.bubble {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  flex: 1;
  max-width: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.bubble:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.bubble-icon {
  font-size: 36px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.bubble-text {
  font-size: 15px;
  font-weight: 700;
  color: #14202a;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.bubble-price {
  font-size: 22px;
  font-weight: 900;
  color: #e53935;
  letter-spacing: 0.02em;
}

/* メインメッセージ */
.footer-cta-message {
  text-align: center;
  margin-bottom: 28px;
}

.footer-cta-title {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-cta-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  opacity: 0.95;
}

/* コンテンツエリア */
.footer-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 10px;
  max-width: 100%;
  text-align: center;
}

/* スタッフ画像 */
.footer-cta-staff {
  display: flex;
  justify-content: center;
}

.staff-image-placeholder {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  background: #fff;
}

/* 連絡先情報 */
.footer-cta-contact {
  color: #fff;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-contact-lead {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
  text-align: center;
  width: 100%;
}

.footer-contact-badge {
  background: #e53935;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  display: block;
  margin: 0 auto 16px auto;
  text-align: center;
  width: auto;
}

.footer-phone-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 24px auto;
  width: 100%;
}

.footer-phone-icon {
  font-size: 32px;
}

.footer-phone-link {
  font-size: 42px;
  font-weight: 900;
  color: #ffd700;
  text-decoration: none;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-phone-link:hover {
  color: #ffed4e;
  text-decoration: none;
}

/* CTAボタン */
.footer-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.footer-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  min-width: 140px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.footer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.footer-btn-form {
  background: #fff;
  color: #14202a;
}

.footer-btn-line {
  background: #06C755;
  color: #fff;
}

.footer-btn-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.footer-btn-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-btn-main {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.footer-btn-sub {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}
