/*
Theme Name: Lightning Child
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/

/* ===============================
   FV上部：２つの丸ボタン配置
   =============================== */
.hero-hand-buttons {
  display: flex;
  justify-content: center;  /* 中央を基準に */
  align-items: flex-start;   /* 上下位置をそろえる */
  gap: 45vw;                 /* 左右の距離（広すぎる場合は14〜15vwに） */
  position: relative;
  margin-top: 300px;          /* 必要なら全体位置を少し下げる */
}

/* 🎯 左右のボタン共通 ＋ 波紋のベース設定 */
.hand-button {
  /* ◆ サイズ・形 */
  width: 200px;          /* 基本サイズ：変えたくなければこのまま */
  aspect-ratio: 1 / 1;   /* 🔒 必ずタテヨコ 1:1（＝真円） */
  border-radius: 50%;
  flex: 0 0 auto;        /* flex で引き伸ばされないように */

  /* ◆ 見た目 */
  background: #009FE3;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  line-height: 1.8;
  box-sizing: border-box;
  box-shadow:
    0 12px 20px rgba(0, 0, 0, 0.25),
    inset 0 -4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* ◆ 波紋エフェクト用 */
  position: relative;   /* 擬似要素の基準にする */
  overflow: visible;    /* 波紋が外にはみ出せるように */
}



/* ホバー時：ふわっと持ち上がるように */
.hand-button:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 24px rgba(0, 0, 0, 0.35),
    inset 0 -2px 6px rgba(0, 0, 0, 0.1);
}


/* 🎯 左右の位置微調整 */
.hero-hand-buttons .hand-button:first-child {
  transform: translateY(-15px);   /* ハウスクリーニング：やや下げる */
}
.hero-hand-buttons .hand-button:last-child {
  transform: translateY(-20px);  /* 買取：手の高さに合わせて上げる */
}



/* 共通の波紋（2重） */
.hand-button::before,
.hand-button::after {
  content: "";
  position: absolute;
  inset: 0;                 /* ボタンのちょうど中心から広がる */
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #009FE3;  /* ボタンと同じ青 */
  box-sizing: border-box;
  pointer-events: none;
  animation: hand-pulsate 2.8s ease-out infinite;
}

/* 2枚目の波紋だけ少し遅らせる */
.hand-button::after {
  animation-delay: 1.4s;  /* 全体の半分くらい */
}

/* 波紋のアニメーション */
@keyframes hand-pulsate {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(2.1);
    opacity: 0;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}

/* スマホでは少しゆっくりに */
@media (max-width: 768px) {
   .hand-button {
    width: 120px;
  }
  .hand-button span {
    font-size: clamp(12px, 3.2vw, 16px) !important;
    line-height: 1.3;
  }
  .hand-button::before,
  .hand-button::after {
    animation-duration: 3.4s;
  }

}

/* アニメ苦手設定の人には停止（アクセシビリティ） */
@media (prefers-reduced-motion: reduce) {
  .hand-button::before,
  .hand-button::after {
    animation: none;
  }
}

/* スマホ時：FVカバー画像を上に寄せて、人の顔をロゴの下に持ってくる */
@media (max-width: 768px) {
  .wp-block-cover.v-fv-hero .wp-block-cover__background {
    background-position: 50% -30% !important;
  }
}







/* ===== 配色（必要ならここだけ調整） ======================= */
:root{
  --brand-blue: #0b59ff;
  --brand-blue-dark: #093fc0;
  --brand-line: #06C755;
  --brand-line-dark: #04a745;
  --brand-pink: #F8A5C2;
  --brand-pink-dark: #e18aa9;
}

/* ===== FV下：3つボタン本体（PCは画像内で横3・スマホは縦3） ===== */
.hero-bottom-buttons{
  position: absolute;                 /* 画像の中に重ねる */
  left: 50%;
  top: 100%;                           /* 位置は好みで 70〜82% で微調整 */
  transform: translateX(-50%);
  width: min(1200px, 92vw);           /* 全体幅 */
  display: flex;
  justify-content: center;
  gap: 2.5%;
  z-index: 2;
}

/* PCだけボタン位置を少し下げる */
@media (min-width: 769px){
  .hero-bottom-buttons{
    top: 170%;  /* 130〜145%あたりで好みで調整 */
  }
}

/* スマホ時：3つボタンの位置を下に下げる */
@media (max-width: 768px){
  .hero-bottom-buttons{
    margin-top: 75px !important; /* ← 20〜60pxで調整OK */
  }
}



/* ボタン共通 */
.square-btn{
  flex: 1 1 31%;
  max-width: 420px;
  min-width: 280px;                   /* つぶれ防止 */
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border-radius: 0px;
  color: #fff; text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600; line-height: 1.2; font-size: 18px;
  border: 2px solid transparent;
  box-shadow: 0 6px 16px rgba(0,0,0,.22);
  transition: transform .25s ease, box-shadow .25s ease, background .2s ease;
  position: relative;                 /* ← オーバーレイ用 */
  overflow: hidden;                   /* ← オーバーレイはみ出し防止 */
}

/* 内側に白フチ線を入れる（やまとくん風） */
.square-btn::before {
  content: "";
  position: absolute;
  inset: 4px; /* ← 枠の内側にオフセット。小さいほど線が端に近づく */
  border: 1.8px solid rgba(255,255,255,0.8); /* 白っぽい線（少し透過で柔らかく） */
  pointer-events: none; /* ←クリックを邪魔しない */
  z-index: 1;
}

/* アイコンの丸バッジ */
.square-btn .icon-badge{
  display: inline-grid; place-items: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: #fff; font-size: 16px;      /* Font Awesomeのサイズ */
}

/* 2行テキスト：上段小／下段大 */
.square-btn .text{ display:flex; flex-direction:column; }
.square-btn .caption{
  font-weight: 600;
  font-size: clamp(10px, 1.6vw, 14px);
  opacity: .95;
}
.square-btn .title{
  font-weight: 800; letter-spacing: .02em;
  font-size: clamp(16px, 2.1vw, 20px);
}

/* カラー（フッターと統一） */
.square-btn.is-line{ background: var(--brand-line);  border-color: var(--brand-line-dark); }
.square-btn.is-line:hover{ background: var(--brand-line-dark); transform: translateY(-3px); }

.square-btn.is-pink{ background: var(--brand-pink);  border-color: var(--brand-pink-dark); }
.square-btn.is-pink:hover{ background: var(--brand-pink-dark); transform: translateY(-3px); }

.square-btn.is-blue{ background: var(--brand-blue);  border-color: var(--brand-blue-dark); }
.square-btn.is-blue:hover{ background: var(--brand-blue-dark); transform: translateY(-3px); }


/* ===============================
   下段：四角ボタン 立体＆キラッ演出（常時）
   =============================== */

/* カラーをCSS変数で一元管理（既存と互換） */
.square-btn.is-line { --btn-base:#06C755; --btn-dark:#04a745; --btn-light:#5EE083; }
.square-btn.is-pink { --btn-base:#F8A5C2; --btn-dark:#e18aa9; --btn-light:#FBD0DE; }
.square-btn.is-blue { --btn-base:#0b59ff; --btn-dark:#093fc0; --btn-light:#5a8cff; }

.hero-bottom-buttons .square-btn{
  position: relative;
  border-radius: 2px;                       /* ほんの少しだけ角に */
  border: 2px solid var(--btn-dark, #0000);
  color:#fff;
  /* 立体感：下に影＋内側の光沢 */
  box-shadow:
    0 10px 22px rgba(0,0,0,.22),
    0 3px 6px rgba(0,0,0,.12),
    inset 0 -3px 0 rgba(0,0,0,.12),
    inset 0 2px 8px rgba(255,255,255,.18);
  /* 上半分にうすいグロス、下はベース色のグラデ */
  background-image:
    linear-gradient(to bottom, rgba(255,255,255,.16), rgba(255,255,255,0) 48%),
    linear-gradient(to bottom, var(--btn-light, rgba(255,255,255,.12)) 0%, var(--btn-base, #666) 60%);
  background-blend-mode: screen, normal;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

/* ホバー/フォーカス時：少し持ち上げる（PC向け） */
.square-btn:hover,
.square-btn:focus-visible{
  transform: translateY(-3px);
  box-shadow:
    0 14px 28px rgba(0,0,0,.26),
    0 6px 12px rgba(0,0,0,.18),
    inset 0 -3px 0 rgba(0,0,0,.10),
    inset 0 3px 10px rgba(255,255,255,.22);
  outline: none;
}

/* 内側の“白い細枠”（見本のインセットライン） */
.hero-bottom-buttons .square-btn::after{
  content:"";
  position:absolute; inset:6px;
  border-radius: 2px;
  border:2px solid rgba(255,255,255,.75);
  pointer-events:none;
  /* ほんの少しソフトに見せる */
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

/* キラッと光が流れる帯（常時ループ） */
.hero-bottom-buttons .square-btn::before{
  content:"";
  position:absolute;
  top:-20%; left:-45%;
  width:42%; height:140%;
  transform: skewX(-20deg);
  pointer-events:none;
  background: linear-gradient(120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.45) 45%,
    rgba(255,255,255,.85) 50%,
    rgba(255,255,255,.45) 55%,
    rgba(255,255,255,0) 100%);
  filter: blur(0.2px); /* エッジを少しだけ柔らかく */
  animation: btnShimmer 3.4s ease-in-out infinite;
  animation-delay: var(--shine-delay, 0s);
}

/* 3つで時間差をつけて自然に */
.hero-bottom-buttons .square-btn:nth-child(1){ --shine-delay:.2s; }
.hero-bottom-buttons .square-btn:nth-child(2){ --shine-delay:1.2s; }
.hero-bottom-buttons .square-btn:nth-child(3){ --shine-delay:2.2s; }

@keyframes btnShimmer{
  0%   { left:-55%; opacity:0; }
  8%   { opacity:1; }
  32%  { left:115%; opacity:1; }
  40%  { left:130%; opacity:0; }
  100% { left:130%; opacity:0; }
}

/* 各色のベース（境界色も締める） */
.square-btn.is-line{ background-color: var(--btn-base); border-color: var(--btn-dark); }
.square-btn.is-pink{ background-color: var(--btn-base); border-color: var(--btn-dark); }
.square-btn.is-blue{ background-color: var(--btn-base); border-color: var(--btn-dark); }

/* モバイル：影をやや弱めて読みやすさ優先 */
@media (max-width:768px){
  .hero-bottom-buttons .square-btn{
    box-shadow:
      0 8px 18px rgba(0,0,0,.20),
      0 3px 8px rgba(0,0,0,.10),
      inset 0 -3px 0 rgba(0,0,0,.10),
      inset 0 2px 8px rgba(255,255,255,.16);
  }
}

/* 動きを抑制したいユーザー配慮 */
@media (prefers-reduced-motion: reduce){
  .hero-bottom-buttons .square-btn,
  .hero-bottom-buttons .square-btn::before{
    animation: none !important;
    transition: none !important;
  }
}


/* ===============================
   下段ボタン：アイコンを大きく＆背景円削除
   =============================== */

/* 背景の半透明丸を消す */
.hero-bottom-buttons .icon-badge {
  background: none !important;
  box-shadow: none !important;
  width: auto;
  height: auto;
}

/* アイコン自体を拡大 */
.hero-bottom-buttons .icon-badge i {
  font-size: 32px;   /* ← お好みで調整（例: 24〜32px） */
  line-height: 1;
  margin-right: 10px; /* テキストとの余白 */
  vertical-align: middle;
  color: #fff;        /* 白で統一（カラー別に変えるなら下で個別指定） */
}

/* 各色ボタンごとに微調整したい場合（任意） */
.square-btn.is-line .icon-badge i { color: #fff; }   /* LINE → 白 */
.square-btn.is-pink .icon-badge i { color: #fff; }   /* Instagram → 白 */
.square-btn.is-blue .icon-badge i { color: #fff; }   /* 電話 → 白 */

/* アイコンと文字の位置を揃える */
.hero-bottom-buttons .text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ===============================
   下段ボタン：テキストを中央揃え
   =============================== */

/* テキストブロック全体を中央寄せ */
.hero-bottom-buttons .square-btn .text {
  display: flex;
  flex-direction: column; /* 上下（キャプションとタイトル）を縦に並べる */
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

/* キャプションとタイトルの中央寄せ */
.hero-bottom-buttons .square-btn .caption,
.hero-bottom-buttons .square-btn .title {
  text-align: center;
  width: 100%;
}

/* アイコンとテキストの並び位置も中央 */
.hero-bottom-buttons .square-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

/* アイコンを右に寄せる */
.hero-bottom-buttons .icon-badge i {
  position: relative;
  left: 12px; /* ← 数値を調整：4〜8pxで微妙な差が出る */
}



/* スマホ時は余白を少し詰める */
@media (max-width: 768px) {
  .hero-bottom-buttons .square-btn {
    flex-direction: column;
    gap: 6px;
  }
}


/* モバイル時はやや小さめ */
@media (max-width: 768px){
  .hero-bottom-buttons .icon-badge i { font-size: 24px; }
}

/* ── SPレイアウト：3つのボタンは縦並び、ボタン内はアイコン左＋文字右 ── */
@media (max-width: 768px){

  /* ボタン3つを縦に */
  .hero-bottom-buttons{
    position: static;           /* 画像上の絶対配置を解除（必要に応じて） */
    transform: none;
    width: 92vw;
    margin: 12px auto 0;
    gap: 14px;
    flex-direction: column;
  }

  /* 各ボタン本体：横並びでアイコン→テキスト */
  .hero-bottom-buttons .square-btn{
    display: flex;
    align-items: center;
    justify-content: flex-start; /* ← 中央寄せを解除して左から詰める */
    gap: 12px;                   /* アイコンと文字の間隔 */
    padding: 14px 16px;
    width: 100%;
    min-height: 62px;            /* 行揃え安定のため */
  }

  /* アイコン位置・サイズ（左側固定のまま） */
  .hero-bottom-buttons .icon-badge{
    background: none !important; /* 半透明の円を消す指定が残っていれば維持 */
    width: auto; height: auto;
    border-radius: 0;
    padding: 0;
  }
  .hero-bottom-buttons .icon-badge i{
    font-size: 28px;             /* 24〜32pxで調整可 */
    line-height: 1;
    margin-right: 10px;          /* ← アイコンだけ少し右へ寄せる余白 */
    vertical-align: middle;
  }

  /* テキストブロックは左揃えのまま */
  .hero-bottom-buttons .text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;      /* ← 左揃え維持 */
    justify-content: center;
    text-align: left;
    gap: 4px;
    margin-left: 4px;             /* アイコンと距離を微調整したい時 */
  }

  /* 行サイズ（必要なら微調整） */
  .hero-bottom-buttons .caption{
    font-size: clamp(12px, 3.6vw, 14px);
  }
  .hero-bottom-buttons .title{
    font-size: clamp(16px, 4.2vw, 19px);
  }
}

@media (max-width: 768px){

  /* ボタン全体を縦に3つ並べる */
  .hero-bottom-buttons {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 92vw;
    margin: 0 auto;
  }

  /* 各ボタン本体：アイコン＋文字を横並びにする */
  .hero-bottom-buttons .square-btn {
    display: flex !important;
    flex-direction: row !important; /* ← 横並びを強制 */
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    box-sizing: border-box;
  }

  /* アイコン（左側） */
  .hero-bottom-buttons .icon-badge {
    background: none !important; /* 半透明円削除 */
    width: auto;
    height: auto;
    margin: 0;
  }

  .hero-bottom-buttons .icon-badge i {
    font-size: 26px;
    line-height: 1;
    margin-right: 10px; /* ← アイコンと文字の間隔 */
    color: #fff;
  }

  /* テキストブロック（右側） */
  .hero-bottom-buttons .text {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    gap: 3px;
  }

  .hero-bottom-buttons .caption {
    font-size: 13px;
    line-height: 1.2;
  }

  .hero-bottom-buttons .title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
  }
}





/* ===== スマホ（縦3つで表示が消えないよう absolute を解除） ===== */
@media (max-width: 768px){
  .hero-bottom-buttons{
    position: static;               /* ← これがポイント！ */
    transform: none;
    top: auto; left: auto;
    width: 100%;
    margin: 24px auto 0;
    padding: 0 16px;
    flex-direction: column;
    gap: 12px;
  }
  .square-btn{
    max-width: none; min-width: 0; width: 100%;
    font-size: 16px; padding: 14px 14px;
  }
  .square-btn .icon-badge{ width: 28px; height: 28px; font-size: 15px; }
  .square-btn .caption{ font-size: clamp(10px, 3.6vw, 14px); }
  .square-btn .title{   font-size: clamp(16px, 4.2vw, 19px); }
}

.fv-area { position: relative; }

/* ヒーロー画像を「トリミングしながらフィット」させる */
.top-fv-banner { position: relative; }

/* PC：高さ固定＋顔が少し上寄りに来るように */
.top-fv-banner img{
  width: 100%;
  height: min(66vh, 720px);      /* 画面高の約2/3を上限720pxで */
  object-fit: cover;             /* 重要：はみ出しトリミングでフィット */
  object-position: center 32%;   /* 被写体の位置（上=0%〜下=100%） */
  display: block;
}

/* タブレット：少しだけ高さを浅く */
@media (max-width: 1024px){
  .top-fv-banner img{
    height: min(60vh, 560px);
    object-position: center 36%;
  }
}

/* スマホ：横長を維持しつつ被写体センター寄りに */
@media (max-width: 768px){
  .top-fv-banner img{
    height: 72vw;                /* 画面幅基準で高さ可変（だいたい16:9弱） */
    object-position: center 42%; /* 顔が真ん中やや上に来るよう微調整 */
  }
}

.wp-block-cover__image-background{
  object-fit: cover;
  object-position: center 40%;
}




/* ===== カバー画像：PC/スマホでの見え方を統一 ===== */
.fv-area .wp-block-cover{
  /* ヒーローの高さ（画面幅に応じて伸縮） */
  min-height: clamp(520px, 68vw, 760px);
  background-attachment: scroll !important; /* iOSでのズーム防止 */
}

/* 画像のフィットと見せたい位置を強制（両方の描画パターンに対応） */
.fv-area .wp-block-cover__image-background,
.fv-area .wp-block-cover img {
  object-fit: cover !important;
  object-position: 50% 28% !important; /* ←PC：やや上寄せ（手と顔が出る） */
}

/* モバイル時はもう少し上を見せる */
@media (max-width: 768px){
  .fv-area .wp-block-cover{
    min-height: 78vh; /* 余白を確保してボタンが乗る高さに */
  }
  .fv-area .wp-block-cover__image-background,
  .fv-area .wp-block-cover img{
    object-position: 50% 35% !important; /* ←スマホ：少し下げたいなら 38〜42% に */
  }
}

/* もし「固定背景」がオンだとiOSで崩れるので強制OFF */
.fv-area .is-fixed-background{
  background-attachment: scroll !important;
}

/* ===== Coverブロックを“PC狭幅と同じ見え方”に固定 ===== */
.wp-block-cover.fv-hero {
  position: relative;
  /* ヒーローの高さ：端末に合わせて可変 */
  min-height: clamp(540px, 120vw, 900px) !important;
  overflow: hidden;
}

/* 画像が <img> に来る場合 */
.wp-block-cover.fv-hero .wp-block-cover__image-background {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  /* 顔がやや上に来るように中心を少し上へ：お好みで 45〜55% 付近を調整 */
  object-position: 50% 42% !important;
}

/* 画像が background に来る場合（テーマ差分対策） */
.wp-block-cover.fv-hero .wp-block-cover__background,
.wp-block-cover.fv-hero {
  background-size: cover !important;
  background-position: 50% 42% !important;
}

/* ヒーロー内のボタン達が必ず前面に来るように */
.wp-block-cover.fv-hero .hero-hand-buttons,
.wp-block-cover.fv-hero .hero-bottom-buttons {
  z-index: 3;
}

/* スマホは少しだけ浅く（お好みで調整OK） */
@media (max-width: 768px) {
  .wp-block-cover.fv-hero {
    min-height: clamp(520px, 110vw, 780px) !important;
  }
}

/* --- ① 最上部の余白をゼロに（Coverがページ先頭にある時） --- */
.page .entry-content > .wp-block-cover.fv-hero:first-child {
  margin-top: 0 !important;            /* ブロックの上マージンを消す */
}

/* テーマ側が “block-gap” を効かせてる場合の保険（先頭直後の余白も詰める） */
.page .entry-content > .wp-block-cover.fv-hero:first-child + * {
  margin-top: 0 !important;
}

/* --- ② SP のヒーローを少し背を高くする（青ボタンまで入るように） --- */
@media (max-width: 768px) {
  .wp-block-cover.fv-hero {
    /* 以前の値より少しだけ高め。端末幅に応じて可変 */
    min-height: clamp(680px, 135vw, 920px) !important;
  }

  /* 下段3ボタンの基準位置（必要なら微調整） */
  .hero-bottom-buttons {
    top: 88% !important;   /* 78〜85% の範囲で好み調整。数値↑で下に下がる */
  }
}

@media (max-width: 768px) {
  /* Coverブロック（背景画像方式）対応 */
  .wp-block-cover.fv-hero {
    background-size: 130% auto !important; /* ← 数値を下げるほど引きになる。例: 150→130→115 */
    background-position: 50% 42% !important; /* お好みで微調整 */
  }

  /* Coverブロック（<img>方式）対応 */
  .wp-block-cover.fv-hero .wp-block-cover__image-background {
    object-fit: contain !important; /* cover→containに変更して引き気味に */
    object-position: 50% 10% !important;
    transform: scale(1.1); /* ← 軽く拡大（1.0〜1.2で好み調整） */
  }

  /* 全体の高さを少し下げてバランスを取る */
  .wp-block-cover.fv-hero {
    min-height: clamp(640px, 120vw, 900px) !important;
  }
}

/* --- ヘッダー直下の余白を削除 --- */
.site-body {
  padding-top: 0 !important;
}

/* もし微妙に残る場合（他の親要素にも余白があるとき） */
body.page .site-body,
.page .entry-content,
.page .entry-content > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 固定ヘッダーでJSが自動的に余白を追加している場合の上書き */
body.admin-bar #site-header.site-header--layout-nav-float {
  margin-bottom: 0 !important;
}


/* 1) FVブロックだけ Lightning のモバイル余白変数を0にする */
.fv-area { --vk-margin-l: 0px !important; }

/* 2) カバーブロック自体の上余白を殺す（Gutenbergのデフォを上書き） */
.fv-area.wp-block-cover { margin-top: 0 !important; }

/* 3) 手の上の丸ボタンコンテナの位置を調整（PC） */
@media (min-width: 769px){
  .fv-area .hero-hand-buttons {
    margin-top: 320px !important;  /* ← 好きな位置になるまで 120〜200px くらいで調整 */
  }
}

/* スマホ版：丸ボタン位置 */
@media (max-width: 768px){
  .fv-area .hero-hand-buttons{
    margin-top: 160px !important; /* ←スマホ画面での最適位置に調整 */
  }
}


/* 4) 念のため：本文一番上のブロック余白も詰める */
body.home .entry-content > *:first-child,
body.page .entry-content > *:first-child { margin-top: 0 !important; }

/* 5) モバイルでだけ確実に0にする保険 */
@media (max-width: 576px){
  /* 変数を全体で0にしたくない場合は 1) の局所指定でOK。保険で使うならこれも。 */
  /* :root, body { --vk-margin-l: 0px !important; }  ←全体に影響するので通常は不要 */
}


/* ── HOMEのファーストビューだけ、モバイル固定ヘッダー余白を0にする ── */
@media (max-width: 576px){
  body.home { --vk-margin-l: 0 !important; }              /* 変数を上書き */
  body.home .site-body { margin-top: 0 !important; }      /* 実際の適用先を0に */
  body.home .entry-content > *:first-child {              /* 最初のブロック保険 */
    margin-top: 0 !important;
  }
}

/* カバー（FV）自体に余白が入るのも念のため潰す */
body.home .fv-area.wp-block-cover {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


/* スマホ・タブレット時のみ表示 */
@media (max-width: 991px) {
  .mobile-menu-cta {
    background-color: #0070c0; /* 青背景 */
    text-align: center;
    padding: 20px 10px;
    border-top: 1px solid rgba(255,255,255,0.2);
  }

  .mobile-menu-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  .mobile-menu-cta .cta-btn {
    display: inline-block;
    background-color: #f8c102; /* 黄色ボタン */
    color: #333;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .mobile-menu-cta .cta-btn:hover {
    opacity: 0.9;
  }

  .mobile-menu-cta .cta-tel a {
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
  }
}

.site-header-logo::after {
  content: "おそうじ物語";
  margin-left: 10px; /* 必要に応じて調整 */
}






/* Instagramボタンだけ背景変更 */

.hero-bottom-buttons .square-btn.is-pink {
  background: linear-gradient(45deg, #F58529, #F77737, #C13584, #405DE6);
  border: 1px solid #fff;
}

/* hover も少し濃いめにしたい */
.hero-bottom-buttons .square-btn.is-pink:hover {
  background: linear-gradient(45deg, #E35C0E, #EE6D1B, #B12D74, #324BCB);
}