@charset "UTF-8";
/*/////////////////////////////////////////////////////////////////////////////

              // CTAエリア改修（参考LP style-plus-ev のレイアウトを踏襲 / 配色は本LPに合わせて調整） //
              // ・レイアウト/文言：参考LPのカード型CTAをベースに、カード全体を大型ボタン化
              // ・配色：本LPのオレンジ #fa8200・イエロー #fce632・黒枠＋ハードシャドウの
              //         ボタン意匠、グリーン #004d40/#008646 のアクセントを採用
              // 既存 .cta-btn / .btn-culm 等と衝突しないよう rx- で名前空間を分離

/////////////////////////////////////////////////////////////////////////////*/
.rx-cta,
.rx-fixed {
  --rx-orange: #fa8200;
  --rx-orange-d: #d76f00;
  --rx-yellow: #fce632;
  --rx-yellow-d: #e0cf00;
  --rx-green: #008646;
  --rx-green-d: #004d40;
  --rx-ink: #1a1a1a;
}

/* GTM等のクリック計測フックとして旧 .cta-btn / .f-btn クラスを各CVリンクに残しているため、
   旧CTA（style.css）の .cta-btn / .fixed-cta .cta-btn スタイルが新デザインに干渉しないよう打ち消す。
   見た目は rx- 側のスタイルで統一。 */
.rx-cta .rx-card.cta-btn,
.rx-fixed .rx-fbtn.cta-btn {
  width: auto;
  height: auto;
  min-height: 0;
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

/* 上の打ち消しはレイアウト系のみだったため、ホバー時の配色も打ち消す。
   旧CTAの .fixed-cta .cta-btn:hover > span { background: #008646 } が
   新デザインの直下span（アイコン円 .rx-fico と文言ラッパ .rx-ftxt）にも当たり、
   オンマウス時に文字の背景とアイコン円が緑に塗られてしまう。 */
.rx-fixed .rx-fbtn.cta-btn:hover > span {
  background: none;
}
.rx-fixed .rx-fbtn.cta-btn:hover .rx-fico {
  background: #ffffff;
}

/* 帯の内側 */
.rx-cta .rx-cta-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
}

/* 「簡単5分・ネット完結」バッジ */
.rx-cta .rx-mini {
  display: inline-block;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--rx-orange);
  background: #ffffff;
  border: 2px solid var(--rx-orange);
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 12px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, .12);
}

/* 見出し（1行） */
.rx-cta .rx-cta-ttl {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 6px;
  white-space: nowrap;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .28);
}
.rx-cta .rx-cta-ttl .rx-z {
  color: #ffe100;
  font-size: 1.22em;
}

/* 大きなリード見出し「お申込みはこちら！」 */
.rx-cta .rx-cta-sub {
  font-size: 4.0rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 22px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, .3);
}

/* カード群 */
.rx-cta .rx-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 460px;
  margin: 0 auto;
}

/* カード自体を大型ボタン化 */
.rx-cta .rx-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  border: 3px solid #000000;
  border-radius: 22px;
  padding: 24px 48px 26px;
  box-sizing: border-box;
  box-shadow: 0 8px 0 0 #000000;
  transition: transform .15s, box-shadow .15s, filter .2s;
}
.rx-cta .rx-card--switch {
  background: var(--rx-orange);
  color: #ffffff;
}
.rx-cta .rx-card--move {
  background: var(--rx-yellow);
  color: var(--rx-ink);
}

/* アイコン円 */
.rx-cta .rx-ico {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
}
.rx-cta .rx-ico svg {
  width: 38px;
  height: 38px;
  display: block;
}
.rx-cta .rx-card--switch .rx-ico {
  color: var(--rx-orange);
}
.rx-cta .rx-card--move .rx-ico {
  color: var(--rx-ink);
}

/* リード文言（最も目立たせる） */
.rx-cta .rx-card-lead {
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .01em;
}
/* サブ文言 */
.rx-cta .rx-card-sub {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 5px;
  opacity: .92;
}

/* カード右端の丸囲み矢印 */
.rx-cta .rx-arw {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}
.rx-cta .rx-arw svg {
  width: 16px;
  height: 16px;
  display: block;
}
.rx-cta .rx-card--switch .rx-arw svg {
  color: var(--rx-orange);
}
.rx-cta .rx-card--move .rx-arw svg {
  color: var(--rx-ink);
}

/* PC：カードを横並び */
@media screen and (min-width: 768px) {
  .rx-cta .rx-cards {
    flex-direction: row;
    max-width: 760px;
    gap: 20px;
    align-items: stretch;
  }
  .rx-cta .rx-card {
    flex: 1;
    padding: 28px 52px 30px;
  }
  .rx-cta .rx-ico {
    width: 84px;
    height: 84px;
  }
  .rx-cta .rx-ico svg {
    width: 46px;
    height: 46px;
  }
  .rx-cta .rx-card-lead {
    font-size: 3.0rem;
  }
  .rx-cta .rx-card-sub {
    font-size: 1.7rem;
  }
  .rx-cta .rx-card:hover {
    transform: translateY(4px);
    box-shadow: 0 4px 0 0 #000000;
    filter: brightness(1.03);
    opacity: 1;
  }
}

/* SP微調整 */
@media screen and (max-width: 767px) {
  .rx-cta .rx-cta-inner {
    padding: 0 14px;
  }
  .rx-cta .rx-mini {
    font-size: 1.3rem;
  }
  .rx-cta .rx-cta-ttl {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .rx-cta .rx-cta-sub {
    font-size: 2.7rem;
    margin-bottom: 18px;
  }
  .rx-cta .rx-card {
    padding: 20px 44px 22px;
  }
  .rx-cta .rx-ico {
    width: 62px;
    height: 62px;
    margin-bottom: 8px;
  }
  .rx-cta .rx-ico svg {
    width: 34px;
    height: 34px;
  }
  .rx-cta .rx-card-lead {
    font-size: 2.4rem;
  }
  .rx-cta .rx-card-sub {
    font-size: 1.4rem;
  }
}

/*/////////////////////////////////////////////////////////////////////////////

              // 追従CTA（下部固定）: ページ内CVに合わせた配色・アイコン・左右並び //
              // ・左=オレンジ=今の住所のまま(切替) / 右=イエロー=お引越し先で(新規)
              // ・アイコンは横並びにして縦幅を抑える / リード文言を強調

/////////////////////////////////////////////////////////////////////////////*/
/* ページ最下部（フッター到達時）は追従CTAを非表示 */
body.on .fixed-cta.is-bottom {
  opacity: 0;
  pointer-events: none;
}
/* フッター下部の余白調整（旧・追従CTA確保用の過剰な余白 120px を適正化）。
   0 では詰まりすぎるため、バランスの取れた 16px に設定（.footer-wrap 下24px と合わせ約40px） */
.footer-section {
  padding-bottom: 16px;
}
.rx-fixed .rx-fixed-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 16px 12px;
  box-sizing: border-box;
  text-align: center;
}
/* キャラ＋ボタンの行（左側にりみまるのイラストを配置） */
.rx-fixed .rx-fixed-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
}
/* りみまる：スロットは低背のまま、画像を下にはみ出させて下部を見切れさせる */
.rx-fixed .rx-fchara {
  position: relative;
  flex-shrink: 0;
  align-self: flex-end;
  width: 92px;
  height: 52px;
  margin: 0;
}
.rx-fixed .rx-fchara img {
  position: absolute;
  left: 0;
  bottom: -22px;
  width: 98px;
  height: auto;
  display: block;
}
.rx-fixed .rx-fixed-btns {
  flex: 0 1 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* 各ボタン（アイコン＋文言を横並びで低背に） */
.rx-fixed .rx-fbtn {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border: 2px solid #000000;
  border-radius: 14px;
  padding: 8px 16px;
  box-sizing: border-box;
  box-shadow: 0 5px 0 0 #000000;
  transition: transform .15s, box-shadow .15s, filter .2s;
}
.rx-fixed .rx-fbtn--switch {
  background: var(--rx-orange);
  color: #ffffff;
}
.rx-fixed .rx-fbtn--move {
  background: var(--rx-yellow);
  color: var(--rx-ink);
}
.rx-fixed .rx-fico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .18);
}
.rx-fixed .rx-fico svg {
  width: 24px;
  height: 24px;
  display: block;
}
.rx-fixed .rx-fbtn--switch .rx-fico {
  color: var(--rx-orange);
}
.rx-fixed .rx-fbtn--move .rx-fico {
  color: var(--rx-ink);
}
.rx-fixed .rx-ftxt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  line-height: 1.2;
}
.rx-fixed .rx-flead {
  font-size: 2.0rem;
  font-weight: 800;
  letter-spacing: .01em;
}
.rx-fixed .rx-fsub {
  font-size: 1.2rem;
  font-weight: 700;
  opacity: .9;
}

@media screen and (min-width: 768px) {
  .rx-fixed .rx-fbtn:hover {
    transform: translateY(3px);
    box-shadow: 0 2px 0 0 #000000;
    filter: brightness(1.03);
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .rx-fixed .rx-fixed-inner {
    padding: 7px 10px 9px;
  }
  .rx-fixed .rx-fixed-row {
    gap: 5px;
  }
  .rx-fixed .rx-fchara {
    width: 46px;
    height: 38px;
  }
  .rx-fixed .rx-fchara img {
    width: 50px;
    bottom: -13px;
  }
  .rx-fixed .rx-fixed-btns {
    gap: 8px;
  }
  .rx-fixed .rx-fbtn {
    gap: 5px;
    padding: 6px 7px;
    border-radius: 11px;
    box-shadow: 0 4px 0 0 #000000;
  }
  .rx-fixed .rx-fico {
    width: 28px;
    height: 28px;
  }
  .rx-fixed .rx-fico svg {
    width: 17px;
    height: 17px;
  }
  .rx-fixed .rx-flead {
    font-size: 1.35rem;
  }
  .rx-fixed .rx-fsub {
    font-size: 1.0rem;
  }
}

/*/////////////////////////////////////////////////////////////////////////////

              // 紹介キャンペーン訴求バナー（各CVエリア直下・オレンジ帯・省スペース） //

/////////////////////////////////////////////////////////////////////////////*/
.rx-refcp {
  background: #fa8200;
  border-bottom: 4px solid #333333;
}
.rx-refcp-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 20px;
  text-decoration: none;
  color: #ffffff;
  transition: filter .2s;
}
.rx-refcp-ico {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rx-refcp-ico svg {
  width: 100%;
  height: 100%;
  display: block;
}
.rx-refcp-txt {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.3;
}
.rx-refcp-lead {
  font-size: 1.7rem;
  font-weight: 800;
}
.rx-refcp-pre {
  font-size: 0.78em;
  font-weight: 700;
  margin-right: 3px;
}
.rx-refcp-main {
  font-size: 1.24em;
}
.rx-refcp-lead strong {
  color: #ffe100;
  font-size: 1.18em;
  font-weight: 800;
  padding: 0 1px;
}
.rx-refcp-lead .rx-nb {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .rx-refcp {
    border-bottom-width: 2px;
  }
  .rx-refcp-inner {
    gap: 9px;
    padding: 9px 14px;
  }
  .rx-refcp-ico {
    width: 28px;
    height: 28px;
  }
  .rx-refcp-lead {
    font-size: 1.35rem;
  }
}
