/* ============================================================
   custom.css — 既存スタイルへのオーバーライド
   ============================================================ */

/* ビジュアル非表示（SEO用隠しテキスト） */
.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* フローティングCTA：ロゴ・▲削除後のレイアウト調整 */

/* PC */
@media screen and (min-width: 768px) {
  /* ロゴがなくなったので中央寄せに */
  .p-pageup {
    justify-content: center;
  }

  /* ▲ボタン分のmargin-rightをリセット、中央配置 */
  .p-pageup_list {
    margin-left: 0;
    margin-right: 0;
  }

  /* ボタン幅を拡大 */
  .p-pageup_list_tel {
    width: 320px;
  }

  .p-pageup_list_web.-cal {
    width: 320px;
  }
}

/* SP */
@media screen and (max-width: 767px) {
  /* 2ボタン均等割り */
  .p-pageup_list_tel {
    width: 50%;
  }

  .p-pageup_list_web.-cal {
    width: 50%;
  }
}

/* ============================================================
   FV直下 CV誘導セクション (p-cv--fv)
   ============================================================ */

/* PC — FVの女性画像に少し被せる */
@media screen and (min-width: 768px) {
  section.p-cv--fv {
    margin-top: -40px;
    position: relative;
    z-index: 1;
  }
}

/* テキストをロゴ(::before)より前面に出す */
section.p-cv--fv .c-txt_center {
  position: relative;
  z-index: 1;
}

/* SP — 縦幅70%スケール */
@media screen and (max-width: 767px) {
  section.p-cv--fv {
    padding: 80px 0 28px;
  }

  section.p-cv--fv::before {
    top: -28px;
    width: min(80%, 300px); /* 375px以上でもロゴを300px以下に抑え、テキストとの被りを防ぐ */
  }

  section.p-cv--fv .p-cv_tel {
    height: 56px;
  }

  section.p-cv--fv .p-cv_web {
    height: 56px;
  }

  section.p-cv--fv .p-cv_tel_num {
    font-size: 2.6rem;
  }

  section.p-cv--fv .p-cv_web p {
    font-size: 1.8rem;
    padding-left: 38px;
  }
}
