
.site-header {
  width: 100%;
  border-bottom: 1px solid #eee;
}

.header-inner {
  max-width: 1200px;   /* ← これが効く */
  margin: 0 auto;      /* ← 中央寄せ */
  padding: 8px 24px;  /* ← 端から離す */

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 40px;   /* ← 基準サイズ */
  width: auto;    /* ← 横長維持 */
  display: block; /* ← 余計な隙間防止 */
}

.header-tel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 4px 18px;
  min-height: 40px;
  border-radius: 40px;

  background: #158F98;      /* やさしいグリーン */
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;

  text-decoration: none;
  transition: background 0.2s ease;
}

.header-tel a:hover {
  background: #5c9e7d;
}

.headerimg {
  padding-right: 8px;
}

body {
  font-family: "M PLUS 1p", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-weight: 500; 
}

/* タイトルやボタンなどは、さらに太くするとロゴっぽくて可愛くなります */
h1, h2, h3, .btn-main, .fixed-cta {
  font-weight: 800; /* ExtraBold */
}

/* --- 背景エリア --- */
.heroback {
background: linear-gradient(to bottom, #FFFBF5 50%, #E0F2F1 50%);
  width: 100%;

}

/* --- スライダー本体 --- */
.hero-slider {
  width: 100%;
  max-width: 1200px; /* PCでの最大幅を一応決めておく */
  margin: 0 auto;
}

/* --- スライドごとの設定 --- */
.slide {
  /* Slickの仕様で崩れないように念のため */
  outline: none; 
}

/* --- 画像の制御（ここが重要） --- */
.hero-slider img {
  width: 100%;         /* 基本は親に合わせる */
  max-width: 90%;      /* PCでは90%に制限（元のデザインを維持） */
  height: auto;        /* 比率を維持 */
  display: block;
  margin: 0 auto;      /* 中央寄せ */
  object-fit: cover;   /* トリミング調整 */
  
  /* PC画像に少し影をつけて、背景から浮かせる（オプション：お好みで） */
  box-shadow: 0 10px 25px rgba(0,0,0,0.05); 
}

.banner-wrap {
  background-color: #E0F2F1; /* 下のセクションより少し薄い青 */
  position: relative;
  padding-bottom: 80px;
}

/* 下のセクションとの境界に波をいれる（簡易版） */
.banner-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #4ac2c3; /* 次のセクションと同じ色 */
  clip-path: ellipse(60% 100% at 50% 100%);
}
.banner1 {
  padding-top: 64px;
  display: flex;
  justify-content: center; /* 横中央 */
}

/* ボタン外側（中央寄せ） */
.campaign-btn-wrap {
  display: flex;
  justify-content: center;
  padding: 24px 0 40px; /* 上下余白 */
}

/* ボタン本体 */
.campaign-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 36px;
  min-width: 280px;

  background: #ff6400;       /* 青基調 */
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;

  border-radius: 999px;      /* ← しっかり丸い */
  box-shadow: 0 6px 16px rgba(46, 111, 168, 0.25);

  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* hover（PC） */
.campaign-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(46, 111, 168, 0.3);
}

/*Pain section */
/* --- Pain Section (PC) --- */
.pain-section {
 background-color: #4ac2c3; /* ベースの色 */
  
  /* CSSで作るドット柄（画像不要！） */
  background-image: radial-gradient(#E5E0D8 2px, transparent 2px);
  background-size: 20px 20px; /* ドットの間隔 */
  
  padding: 80px 16px;
  position: relative;
}

.pain-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
}

.pain-container {
  width: 100%;
  max-width: 800px; /* 少し幅を広げてゆとりを持たせる */
  display: flex;
  flex-direction: column;
  gap: 40px; /* 上下の箱の間隔を広げる */
  z-index: 2;
}

/* 共通ボックス設定 */
.pain-box {
  background: #fff;
  border-radius: 16px; /* 角を丸くして親しみやすく */
  padding: 40px 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* 軽い影で浮かせる */
}

/* --- お悩みチェックリスト部分 --- */
.pain-box--check {
  border: 2px solid #E5E7EB; /* 薄い枠線 */
}

.pain-title {
  font-size: 36px;
  font-weight: 800;
  color: #374151;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  background-color: #fff;
}

/* タイトルの下に波線などを入れると「悩み感」が出ます（任意） */
.pain-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background: rgba(239, 68, 68, 0.1); /* 薄い赤で注意喚起 */
  position: absolute;
  bottom: 4px;
  left: 0;
  z-index: -1;
}
/* --- pc.css 追記・修正用 --- */

/* お悩みリスト（6個：左右3列） */
.pain-list {
  display: grid;
  grid-template-columns: 1fr 1fr; /* きっちり2列 */
  gap: 20px 40px; /* 縦の間隔20px、横の間隔40px（少し離してキャラに寄せる） */

margin: 0;
  padding: 0;    
  list-style: none;
}

/* 共通スタイル */
.pain-list li {
  position: relative;
  background: #5a6a7b; /* 暗いグレー */
  color: #fff;
  border-radius: 30px;
  padding: 20px 10px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
  font-size: 20px;
  font-weight: bold;
  
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  overflow: visible; /* しっぽを表示させる */
}

/* 既存のチェックマークなどを消去 */
.pain-list li::before {
  content: none;
}

/* --- しっぽの共通設定 --- */
.pain-list li::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 12px solid transparent;
}


/* 左へ突き出すしっぽ */
.pain-list li:nth-child(odd)::after {
  left: -20px; 
  border-right-color: #5a6a7b; /* 右方向（本体）への色 */
}



/* 右へ突き出すしっぽ */
.pain-list li:nth-child(even)::after {
  right: -20px; 
  border-left-color: #5a6a7b; /* 左方向（本体）への色 */
}



.pain-box--message {
  /* display: flex; は削除 */
  position: relative;
  z-index: 0;
  text-align: left;   /* テキスト左寄せ */
  
  /* ★重要★ テキストが画像に被らないよう、右側に大きな余白を作る */
  padding-right: 350px; 
  
  /* 上下中央揃えのための設定 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px; /* ボックスの最低限の高さを確保 */
  overflow: hidden;
}

.pain-box--message::before {
  content: "";
  position: absolute;
  /* 位置調整：少し上に離す */
  top: -40px; 
  left: 50%;
  
  /* 正方形の右と下だけに線を引き、45度回転させて「∨」を作る */
  width: 20px;
  height: 20px;
  border-right: 5px solid #3E8BC9;
  border-bottom: 5px solid #3E8BC9;
  transform: translateX(-50%) rotate(45deg); /* 回転 */
  
  /* 念のため既存の三角形設定を打ち消し */
  border-left: none;
  border-top: none;
  background: transparent;
}

.pain-catch {
  font-size: 36px;
  font-weight: 800;
  color: #1F2937;
  margin: auto;
}

.pain-catch .highlight {
  background: linear-gradient(transparent 40%, #BAE6FD 80%); /* マーカー風の下線 */
  padding: 0 4px;
}

.pain-note {
  font-size: 18px;
  line-height: 1.6;
  color: #6B7280;
}

/* イラスト */
.pain-illust {
  position: absolute;
  bottom: 258px;
  width: 300px;
  opacity: 1; /* はっきり見せる */
}
.pain-illust--left { left: -20%; }
.pain-illust--right { right: -22%; }

/* 1. 解決策ボックスの調整（矢印のスペース確保） */
.pain-box--message {
  /* 以前の display: flex; などの設定は維持しつつ、以下を確認/追加 */
  position: relative;
  overflow: visible !important; /* 枠外に矢印を出すために必須 */
  margin-top: 60px; /* 上のボックスとの距離を少し広げる（矢印用） */
}

/* 2. ドドンとした派手な矢印（▼）の追加（PC用ビッグサイズ） */
.pain-box--message::before {
  content: "";
  display: block;
  position: absolute;
  top: -45px; /* ボックスの上に配置 */
  left: 50%;
  
  /* 以前の細い線の設定（border-right/bottomなど）をリセット */
  width: 0;
  height: 0;
  border: none;
  transform: none; /* 回転リセット */
  
  /* 大きな逆三角形を作る */
  border-style: solid;
  border-width: 40px 35px 0 35px; /* スマホ版より大きく！ */
  border-color: #F59E0B transparent transparent transparent; /* 濃いオレンジ色 */
  
  /* 影をつけて立体的に */
  filter: drop-shadow(0 6px 3px rgba(0,0,0,0.1));
  z-index: 10;
  
  /* アニメーション設定（上下に弾む） */
  animation: arrowBouncePC 1s infinite alternate ease-in-out;
}

/* PC用矢印のアニメーション定義 */
@keyframes arrowBouncePC {
  0% { transform: translateX(-50%) translateY(0); } /* 定位置 */
  100% { transform: translateX(-50%) translateY(-15px); } /* 大きく浮く */
}


.pain-note {
  margin-top: 16px;
  font-size: 20px; /* PCなので文字も少し大きく読みやすく */
  line-height: 1.6;
}

.pain-message-content {
  position: relative;
  z-index: 2; /* ★画像より手前 */
  width: 100%;
}
.pain-message-visual {
  position: absolute; /* 絶対配置 */
  top: 68%;           /* 上下中央配置の起点 */
  transform: translateY(-50%); /* 上下中央に合わせる */
  right: 0px;
  width: 160px;       /* 大きめに */
  height: auto;
  z-index: 1;         /* ★テキスト(2)より奥 */
  
  /* リセット系 */
  margin: 0; border: none; background: none; box-shadow: none; flex-shrink: 0;
}

/* 画像本体 */
.pain-message-visual img {
  width: 100%;
  height: auto;
  display: block;}

/* --- pc.css 修正版：テキストを中央寄せにする --- */

.pain-box--message {
    width: 100% !important;       /* 横幅いっぱいに強制 */
    max-width: none !important;   /* 幅制限を解除 */
    box-sizing: border-box !important;
    padding: 50px 16px 30px !important; /* 矢印用のスペース(上)と余白 */
    
    /* Flexboxで並び順を制御 */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; /* 中身を中央揃え */
    
    /* 配置のリセット */
    grid-column: 1 / -1 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    
    /* 以前のスタイル維持 */
    background: #ffffff !important;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    position: relative !important;
    overflow: visible !important;
    order: 3 !important; 
  }

  .pain-box--message::before {
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: -70px !important; /* ボックスの上に配置 */
    
    /* 矢印の形 */
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 25px 0 25px;
    border-color: #F59E0B transparent transparent transparent;
    filter: drop-shadow(0 4px 2px rgba(0,0,0,0.1));
    z-index: 10;
    animation: arrowBounce 1s infinite alternate ease-in-out;
  }
/* テキストの包み（念のため幅指定を解除して中央へ） */
.pain-message-content {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2; /* 画像より手前 */
}

/* キャッチコピー（その家事〜）の調整 */
.pain-catch {
  display: inline-block; /* マーカー（黄色）を文字幅に合わせるため */
  margin: 0 auto 10px;
}



/* --- Service Section --- */
.service-section {
  position: relative;
  margin: 0;
  background-image: url("bg1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}




.service-inner {
  max-width: 1260px;
  margin: 0 auto;
}

/* 3カラムレイアウト */
.service-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 60px;
}

.service-card {
  flex: 1;
  background: #FFFFFF;
  padding: 40px 24px;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 28px;
  font-weight: 500;
  color: #1F2937;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  letter-spacing: 4px;
}

/* タイトルの下の短い線（アクセント） */
.service-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background: #3E8BC9;
  margin: 8px auto 0;
  border-radius: 2px;
}

.service-lead {
  font-size: 20px;
  color: #4B5563;
  margin-bottom: 24px;
  min-height: 3em; /* 高さを揃えるため */
}

/* 写真プレースホルダー */
.service-img-placeholder {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: #E2E8F0;
  border-radius: 8px;
  margin-bottom: 24px;
  justify-content: center;
  overflow: hidden;
}

.service-img-placeholder img {
  width: 100%;       /* 幅を枠いっぱいに */
  height: 100%;      /* 高さも枠いっぱいに */
  object-fit: cover; /* 重要：縦横比を崩さず、枠全体を埋めるようにトリミング表示 */
  position: relative;/* テキストより前面に出す */
  z-index: 1;
}

.service-img-placeholder span {
  font-size: 13px;
  color: #718096;
  line-height: 1.5;
}

/* 箇条書きリスト */
.service-points {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
  margin: 0 auto;
}

.service-points li {
  font-size: 18px;
  color: #1F2937;
  margin-bottom: 10px;
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.service-points li::before {
  content: "・";
  color: #3E8BC9;
  font-weight: bold;
}

/* --- 下部フッターエリア --- */
.service-footer {
  text-align: center;
  border-top: 1px solid;
  padding-top: 40px;
}

.service-footer-note {
  font-size: 22px;
  color: #4B5563;
  margin-bottom: 18px;
  line-height: 1.6;
}

.service-footer-check {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.service-footer-check li {
  font-weight: 700;
  color: #1F2937;
  position: relative;
  padding-left: 28px;
}

/* チェックマークのデザイン */
.service-footer-check li::before {
  content: "◎";
  position: absolute;
  left: 0;
  color: #3E8BC9;
  font-weight: 900;
}

.sp-only { display: none; }

/* --- Plan Section --- */
.plan-section {
  padding: 80px 20px;
background-color: #fffceb;
}

.plan-inner {
  max-width: 1200px;
  margin: 0 auto;
}


.section-lead {
  text-align: center;
  font-size: 20px;
  color: #4B5563;
  margin-bottom: 48px;
}

/* 2x2のグリッド設定 */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* PCは2列 */
  gap: 24px;
}

.plan-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.plan-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  margin: auto;
}


.plan-name {
  font-size: 22px;
  font-weight: 600;
  color: #1F2937;
}

.plan-tagline {
  font-size: 16px;
    font-weight: 600;
  color: #3E8BC9; /* アクセントブルー */
  line-height: 1.4;
  margin: auto;
  padding-bottom: 24px;
  padding-top: 8px;
}

/* 全体の並び */
.plan-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;           /* 画像と＋の間隔 */
  margin-bottom: 24px; /* 下の文字との余白 */
  width: 100%;
}

/* 画像の枠（正方形を作る） */
.plan-visual-img {
  width: 150px;        /* PCでのサイズ */
  height: 150px;       /* 正方形にする */
  overflow: hidden;   /* はみ出し防止 */
  background: #f3f4f6;/* 画像がない時の背景色 */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* ほんのり影 */
  border: 1px solid #eee;
  flex-shrink: 0;     /* 縮まないようにする */
}

/* 中の画像 */
.plan-visual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* 枠いっぱいにトリミングして表示 */
  display: block;
}

/* ＋マーク */
.plan-visual-plus {
  font-size: 20px;
  font-weight: 900;
  color: #3E8BC9;    
  margin-top: -2px;   /* 微調整：少し上にずらすと真ん中に見えやすい */
}

.plan-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plan-content h4 {
  font-size: 13px;
  font-weight: 800;
  color: #9CA3AF;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-content ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-content li{
  font-size: 18px;
  color: #374151;
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 6px;
  line-height: 1.5;
}


.section-title {
  text-align: center;
  font-size: 22px;
  color: #4B5563;
  margin-bottom: 24px;
}

.section-lead {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

/* 作業内容のドット */
.plan-content li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #3E8BC9;
  font-weight: bold;
}

/* --- Voice Section --- */
/* --- pc.css : Voice Section (New Elegant Design) --- */


.voice-section {
  position: relative;
  /* 1. 全体の背景：中心(#FFF9F0)から外側(#FFD1A4)へ広がるグラデーション */
  background: radial-gradient(circle at center, #FFF9F0 50%, hsl(30, 93%, 83%) 100%) !important;
  
  padding: 120px 20px !important;
  z-index: 1;
}



.voice-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}



/* タイトル周り */
.voice-header {
  text-align: center;
  margin-bottom: 80px;
}

.voice-main-title {
  font-size: 36px;
  font-weight: 600;
  color: #1F2937;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.voice-sub-title {
  font-size: 16px;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: sans-serif;
}

/* --- 行のレイアウト (ジグザグ) --- */
.voice-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 100px; /* 各お客様の声の間隔 */
}

/* 偶数番目（逆向き）の設定 */
.voice-row--reverse {
  flex-direction: row-reverse;
}

/* --- 画像エリア（ふんわりぼかし） --- */
.voice-img-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.voice-img-inner {
  position: relative;
  width: 100%;
  max-width: 400px; /* 画像の最大サイズ */
  aspect-ratio: 1 / 1; /* 正方形に近い比率 */
  border-radius: 50%; /* 丸く切り抜く場合（四角のままならここを削除） */
  overflow: hidden;
}

/* 画像本体 */
.voice-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ★画像の周りを白くぼかす魔法のフィルター（背景色と同じ色を指定） */
.voice-img-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  /* 内側に影を落としてフェードアウトさせる */
  box-shadow: inset 0 0 40px 20px #FDFCF8; 
  pointer-events: none;
}

/* --- テキストエリア --- */
.voice-content {
  flex: 1;
  position: relative;
}

/* 大きな引用符（❝） */
.voice-content::before {
  content: "“";
  position: absolute;
  top: -45px;
  left: -20px;
  font-size: 120px;
  font-family: serif;
  color: #E6DCC8; /* 淡いゴールド/ベージュ */
  line-height: 1;
  opacity: 0.6;
  pointer-events: none;
}

/* 見出しメッセージ */
.voice-heading {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 500;
  color: #4B3621; /* 焦げ茶色 */
  margin-bottom: 16px;
  position: relative; /* 引用符より上に */
}

/* 属性（エリア・家族構成） */
.voice-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 24px;
}

/* 本文 */
.voice-body {
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 24px;
  text-align: justify;
}

/* タグエリア */
.voice-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: #fff;
}

.voice-tags span:first-child {
  color: #6B5B4E; /* 「ご利用サービス」の文字色 */
  font-weight: bold;
}

.tag-label {
  background-color: #8C7B6C; /* 落ち着いたブラウン背景 */
  padding: 4px 12px;
  border-radius: 2px;
}

/* --- CTA Section (強化版) --- */
.cta-section {
  /* 背景をリッチな青系グラデーションに変更し、特別感を演出 */
  background: linear-gradient(135deg, #3E8BC9 0%, #2C5282 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden; /* 光のエフェクトがはみ出さないように */
}

/* 背景にうっすら光の模様を入れる（オプション） */
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
background-color: #4ac2c3;
  transform: rotate(30deg);
  pointer-events: none;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 40px 40px;
  /* 影を強くして、背景からくっきりと浮き立たせる */
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  text-align: center;
  position: relative; /* z-indexのために必要 */
  z-index: 1;
}

.cta-title {
  font-size: 32px; /* 少し大きく */
  font-weight: 800;
  color: #1F2937;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.cta-price-wrapper {
  display: flex;
  justify-content: center; /* 中央寄せ */
  align-items: center;     /* 上下中央揃え */
  gap: 80px;               /* 価格と写真の間の隙間 */
  margin-bottom: 30px;
  position: relative;
}

.cta-price-label {
  display: inline-block;
  background: #EF4444;
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 12px;
  box-shadow: 0 4px 6px rgba(239, 68, 68, 0.2);
}

.cta-price-main {
  font-size: 28px;
  color: #1F2937;
  margin: 0;
  line-height: 1;
}

.cta-price-main strong {
  font-size: 70px; /* さらに巨大化 */
  font-weight: 900;
  color: #E60012; /* セール価格の赤 */
  font-family: "Arial Black", sans-serif; /* 太いゴシック体 */
  letter-spacing: -2px; /* 数字をギュッと詰める */
  margin: 0 10px;
  text-shadow: 
    2px 2px 0 #fff, 
    -1px -1px 0 #fff, 
    1px -1px 0 #fff, 
    -1px 1px 0 #fff, 
    1px 1px 0 #fff;
}

.cta-price-main span {
  font-size: 20px;
  font-weight: bold;
}

/* メインコンテンツエリア */
.cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
  border-bottom: 1px solid #E2E8F0;
  padding-bottom: 40px;
}

.cta-features ul {
list-style: none;
  padding: 0;
  margin: 0;
  display: flex; /* 横並びにする */
  justify-content: center; /* 中央に配置 */
  gap: 20px 40px; /* 上下左右の間隔 */
  flex-wrap: wrap; /* 画面が狭いときは折り返し */
}

.cta-features li {
font-size: 18px;
  font-weight: 700;
  color: #1F2937;
  position: relative;
  padding-left: 32px;
  text-align: left;
}


.cta-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fff;
  background: #3E8BC9; /* チェックを青背景の白文字にして目立たせる */
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
}

/* 3. 特徴リスト（家事組み合わせ自由...）の調整 */
.cta-features {
  margin-bottom: 40px;
  text-align: center; /* テキスト中央寄せ */
}


/* スタッフ写真 */
.cta-staff {
display: block;
}

.staff-img {
  display: flex;
  flex-direction: column;  /* ←これが超重要：画像の下にテキスト */
  align-items: center;
}
.staff-img img {
  width: 160px;
  height: 160px;
  border-radius: 10%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  object-fit: cover;
  background: #E2E8F0;
}

.micro-copy {
  font-size: 14px;
  font-weight: 800;
  color: #3E8BC9;
  margin-bottom: -10px; /* ボタンに近づける */
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 2px 12px;
  border-radius: 4px;
}



.staff-img span {
  /* 吹き出しっぽくする */
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  margin-top: -15px; /* 写真に少し重ねる */
  background: #3E8BC9;
  padding: 6px 16px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* ボタン類 */
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* キラッと光るアニメーションの定義 */
@keyframes shine {
  0% { left: -100%; opacity: 0; }
  50% { opacity: 0.5; }
  100% { left: 100%; opacity: 0; }
}

.btn-main {
/* 既存のレイアウト設定は維持しつつ、色を劇的に変更 */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  padding: 24px;
  
  /* ★ここが変更点：情熱のオレンジグラデーション */
  background: linear-gradient(135deg, #FFB347 0%, #FF6B00 50%, #FF4500 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 32px; /* サイズアップ！ */
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;

  /* 影もオレンジ色にして発光感を出す */
  box-shadow: 0 10px 25px -5px rgba(255, 69, 0, 0.5), 
              0 4px 10px -5px rgba(255, 100, 0, 0.5) inset;
  
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* 光るエフェクトの要素 */
.btn-main::after {
content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  animation: shine 3s infinite;
}

.btn-main:hover {
transform: scale(1.05); /* ドンと大きく */
  box-shadow: 0 15px 35px -5px rgba(255, 69, 0, 0.6);
  filter: brightness(1.1);
}

.cta-reassurance {
  font-size: 16px;
  color: #4B5563;
  line-height: 1.6;
  font-weight: 500;
}

.btn-sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 14px 22px;
  border-radius: 999px;

  background: #F0F9FF;          /* 薄い水色 */
  border: 2px solid #3E8BC9;     /* メインと同系色 */
  color: #2C5282;                /* ちょい濃い青 */

  font-weight: 800;
  font-size: 24px;
  text-decoration: none;

  box-shadow: 0 8px 18px -10px rgba(62, 139, 201, 0.45);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn-sub:hover {
  background: #E6F4FF;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -12px rgba(62, 139, 201, 0.55);
}

.btn-sub .free {
  color: #EF4444;
}


/* 通常料金 */
.cta-standard-price {
  margin-top: 30px;
  padding-top: 0; /* 線を消したのでpadding調整 */
  border-top: none; /* 線を消してスッキリさせる */
}

.cta-standard-price p {
  font-size: 13px;
  color: #9CA3AF;
  margin-bottom: 8px;
}

.cta-standard-price ul {
  display: flex;
  justify-content: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  font-size: 14px;
  color: #6B7280;
  font-weight: 500;
}

/* --- Footer Section --- */
.footer-section {
  background: #1F2937; /* ヘッダーや文字色と合わせた濃いグレー */
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* SNSエリア */
.footer-sns {
  margin-bottom: 50px;
}

.footer-sns-title {
  font-size: 14px;
  color: #9CA3AF;
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-sns-list {
  display: flex;
  justify-content: center;
  gap: 24px;
}

/* SNSボタン（丸形） */
.sns-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #374151; /* ボタンの背景色 */
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid #4B5563;
}

/* ホバー時の動き */
.sns-item:hover {
  background: #3E8BC9; /* テーマカラーの青 */
  border-color: #3E8BC9;
  transform: translateY(-3px); /* ぽこっと浮く */
}

/* 会社情報エリア */
.footer-info {
  border-top: 1px solid #374151; /* 薄い区切り線 */
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* スマホで折り返す */
  gap: 20px 30px;
}

.footer-links a {
  color: #D1D5DB;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-corporate {
  margin-bottom: 10px;
}

.company-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}

.company-address {
  font-size: 13px;
  color: #9CA3AF;
}

.copyright {
  font-size: 11px;
  color: #6B7280;
}
/* --- 固定CTA（PC/SP 共通） --- */
.fixed-cta {
  position: fixed;
    z-index: 999999 !important;
  display: flex;
  gap: 12px;
  box-sizing: border-box; /* ←【重要】これで右端切れが直ります */
}

/* --- 固定CTA（PC/SP 共通） --- */
.fixed-cta {
  position: fixed;
  z-index: 999;
  display: flex;
  gap: 12px;
  box-sizing: border-box; /* ←【重要】これで右端切れが直ります */
}

/* ボタン共通設定 */
.fixed-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800; /* 太字で視認性UP */
  line-height: 1.2;
  border-radius: 50px; /* スマホで押しやすいよう丸みを強く */
  padding: 14px 12px;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  user-select: none;
  position: relative; /* 吹き出しの基準点 */
}

.fixed-cta__btn:active {
  transform: translateY(2px);
}

/* 左：無料相談フォーム */
.fixed-cta__btn--sub {
  background: #fff;
  color: #3E8BC9;
  border: 2px solid #E2E8F0; /* 枠線を少し太く、色は薄めに */
}

/* 固定CTAのメインボタン（オレンジ化） */
.fixed-cta__btn--main {
  /* オレンジグラデーション */
  background: linear-gradient(135deg, #FF9D00 0%, #FF5500 100%);
  color: #fff;
  border: 2px solid #fff; /* 白い縁取りを入れてポップに */
  box-shadow: 0 4px 15px rgba(255, 85, 0, 0.4); /* オレンジの影 */
}

.fixed-cta__btn--main:hover {
  box-shadow: 0 8px 20px rgba(255, 85, 0, 0.6);
}

/* --- 【追加】マイクロコピー（吹き出し）の設定 --- */
.fixed-cta__btn--main::before {
  content: "＼ 1分で完了 ／";
  position: absolute;
  top: -32px; /* ボタンの上に配置 */
  left: 50%;
  transform: translateX(-50%);
  background: #E60012;/* 目立つ赤（またはオレンジ） */
  color: #fff;
  color: #FFFF00;
  font-size: 11px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  z-index: 10;
  /* ふわふわ動かすアニメーション */
  animation: floatBalloon 2s infinite ease-in-out;
}

/* 吹き出しの三角（しっぽ） */
.fixed-cta__btn--main::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #E60012;
  z-index: 10;
  animation: floatBalloon 2s infinite ease-in-out;
}

/* 吹き出しのアニメーション定義 */
@keyframes floatBalloon {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -4px); }
}


/* --- PC (769px以上) --- */
@media (min-width: 769px) {
  .fixed-cta {
    right: 30px;
    bottom: 30px;
    flex-direction: column;
    width: 260px;
 /* ★修正点：ボタン同士の隙間を広げる */
    gap: 50px; /* 元の gap: 10px; などから広げてスペース確保 */
  }

  .fixed-cta__btn {
    font-size: 16px;
    padding: 18px;
    border-radius: 16px; /* PCは少し角ばらせる */
  }

  .fixed-cta__btn--sub {
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  }

  .fixed-cta__btn--main {
    box-shadow: 0 12px 24px rgba(62,139,201,0.4);
  }

  /* ホバー時の挙動 */
  .fixed-cta__btn:hover {
    transform: translateY(-3px);
  }
  .fixed-cta__btn--main:hover {
    box-shadow: 0 16px 32px rgba(62,139,201,0.5);
  }
}

/* すべてのセクションに共通の広めの余白を設定 */
.pain-section,
.service-section,
.plan-section,
.voice-section,
.cta-section {
  padding: 120px 20px !important; /* 60pxから120pxへ大幅アップ！これがプロのゆとりです */
}

/* .highlight クラスの上書き */
.pain-catch .highlight,
.section-lead .highlight { /* 汎用的に使えるように */
  /* 蛍光ペンのような太い黄色ライン */
  background: linear-gradient(transparent 50%, #FFF500 50%);
  padding: 0 4px;
  font-weight: bold;
  color: #1F2937; /* 文字色は黒くはっきり */
}

/* チェックマークなど */
.cta-features li::before {
  background: #158F98; /* 丸背景の場合 */
  /* 文字だけの場合は color: #158F98; */
}
/* ※ .cta-features li::before は背景色指定なので background を変更 */
.cta-features li::before {
  background: #158F98;
}

/* サービスタイトルの下の線 */
.service-title::after {
  background: #FDB746; /* ここはあえてオレンジにして温かみを出す */
}

/* メッセージボックスの枠線 */
.pain-box--message {
  border-color: #158F98;
}
