@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
/*
Theme Name: My WordPress Theme
Theme URI: http://example.com/my-wordpress-theme
Author: Your Name
Author URI: http://example.com
Description: A custom WordPress theme for demonstration purposes.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom, responsive, blog
*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Inter:700|Noto+Sans+JP:900");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  background-color: #eaf9ff;
  color: #333;
  font-family: "Noto Sans JP", Helvetica;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (min-width: 700px) {
  body {
    transform-origin: top center;
    position: relative;
  }
}

h1,
h2,
h3 {
  color: #2c3e50;
}

a {
  color: #3498db;
}
a:hover {
  color: #2980b9;
}

img {
  pointer-events: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* === popup (global) === */
.header {
  display: flex;
  height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 29px;
  position: relative;
  background-color: #ffffff;
  width: 100%;
  max-width: 700px;
  overflow: hidden;
}
.header .h1 {
  position: relative;
  margin-left: 10px;
  width: 240px;
  height: 30px;
}
.header .BL-logo {
  position: absolute;
  width: 133px;
  height: 30px;
  top: 0;
  left: 0;
  overflow: hidden;
}
.header .div {
  position: absolute;
  width: 96px;
  height: 23px;
  top: 4px;
  left: 37px;
}
.header .img {
  position: absolute;
  width: 54px;
  height: 6px;
  top: 17px;
  left: 21px;
}
.header .group-2 {
  position: absolute;
  width: 96px;
  height: 14px;
  top: 0;
  left: 0;
}
.header .vector {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
}
.header .badge-container {
  position: absolute;
  width: 100px;
  height: 24px;
  top: 2px;
  left: 142px;
}
.header .overlap-group {
  position: relative;
  width: 98px;
  height: 24px;
  border-radius: 4.5px;
}
.header .badge-text {
  position: absolute;
  top: 4px;
  left: 12px;
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #4aacdf;
  font-size: 10.8px;
  text-align: center;
  letter-spacing: 0;
  line-height: 18.3px;
  white-space: nowrap;
}
.header .badge-background {
  position: absolute;
  width: 98px;
  height: 24px;
  top: 0;
  left: 0;
  border-radius: 4.5px;
  border: 0.9px solid;
  border-color: #4bace0;
}
.header .button-container {
  position: relative;
  width: 120px;
  height: 62px;
  background: linear-gradient(90deg, #ff3700 0%, #ffa600 100%);
}
.header .button-link {
  display: block;
  width: 120px;
  height: 62px;
}
.header .button-content {
  position: relative;
  width: 92px;
  height: 27px;
  top: 18px;
  left: 16px;
}
.header .layer {
  position: absolute;
  width: 17px;
  height: 17px;
  top: 5px;
  left: 0;
}
.header .button-text {
  position: absolute;
  top: -1px;
  left: 20px;
  font-family: "Noto Sans JP", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  letter-spacing: 1.92px;
  line-height: 27.2px;
  white-space: nowrap;
}

header {
  display: none !important;
}

.main {
  display: flex;
  flex-direction: column;
  height: auto;
  align-items: flex-start;
  position: relative;
  background-color: #ffffff;
}
.main .main-img {
  width: 100%;
  max-width: 700px;
  float: left;
  display: block;
}

.cta-container {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.cta-container .cta-button-container {
  position: absolute;
  bottom: 10%;
}
.cta-container .cta-button-container .cta-button {
  display: block;
  width: 85%;
  box-sizing: border-box;
  margin: 0 auto;
}
.cta-container .cta-button-container .cta-button .cta-button-img {
  width: 100%;
  box-sizing: border-box;
}
.cta-container .pulse-animation {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.page-contact-top {
  width: 100%;
  box-sizing: border-box;
  max-width: 700px;
}
.page-contact-top img {
  width: 100%;
  box-sizing: border-box;
}

.container-popup {
  width: 100%;
  box-sizing: border-box;
  max-width: 700px;
}
.container-popup img {
  width: 100%;
  box-sizing: border-box;
}

/* =========================================================
   削減額訴求シミュレーションLP（ss-cntc / ss-thx）共通トークン
========================================================= */
/* =========================================================
   共通：ロゴ / ヘッダー / フッター
========================================================= */
.ss-contact-page header#masthead,
.ss-thanks-page header#masthead {
  display: none !important;
}
.ss-contact-page,
.ss-thanks-page {
  background-color: #ffffff;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  overflow: hidden;
}
.ss-contact-page img,
.ss-thanks-page img {
  pointer-events: auto;
}

.ss-header {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  background: #ffffff;
}

.ss-fv__img {
  display: block;
  width: 100%;
  height: auto;
}

.ss-logo {
  display: flex;
  align-items: center;
}
.ss-logo__img {
  display: block;
  height: 26px;
  width: auto;
}
.ss-logo--footer {
  justify-content: center;
}

.ss-footer {
  padding: 28px 20px;
  text-align: center;
  background: #ffffff;
}
.ss-footer__links {
  margin-top: 14px;
  font-size: 12px;
}
.ss-footer__links a {
  color: #666;
  text-decoration: underline;
}
.ss-footer__copy {
  margin-top: 6px;
  font-size: 11px;
  color: #999;
}

/* =========================================================
   グリーンエリア（フォーム）
========================================================= */
.ss-hero {
  position: relative;
  background: #00b154;
  padding: 28px 20px 40px;
  text-align: center;
}

.ss-deco {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
}
.ss-deco::before, .ss-deco::after {
  content: "\\";
  display: inline-block;
  margin: 0 6px;
  opacity: 0.85;
}
.ss-deco::after {
  content: "/";
}
.ss-deco {
  margin-bottom: 14px;
  color: #feec73;
}
.ss-deco::before, .ss-deco::after {
  color: #feec73;
}

.ss-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fd8f01;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  margin-bottom: 22px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.08);
}
.ss-badge__icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* ---- ステップ進捗インジケーター ---- */
.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.form-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #bfc5c3;
  color: #ffffff;
  transition: background-color 0.25s ease;
}
.form-progress__num {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.form-progress__label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 1px;
}
.form-progress__step.is-active {
  background: #0b3158;
}
.form-progress__step.is-done {
  background: rgba(11, 49, 88, 0.55);
}
.form-progress__sep {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  font-weight: 700;
}

.ss-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;
}

/* ---- ステップ表示切り替え ---- */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

/* ---- ステップ見出し ---- */
.ss-hero .cf7-q p {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* ---- STEP1：住居タイプ カード ---- */
.form-step--1 .cf7-a-radio {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-step--1 .cf7-a-radio label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  background: #ffffff;
  color: #009246;
  font-size: 18px;
  font-weight: 700;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  padding: 12px 20px;
  transition: transform 0.15s ease;
}
.form-step--1 .cf7-a-radio label:active {
  transform: scale(0.98);
}

.form-step--1 .cf7-a-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* ---- STEP1：マンション・アパート選択時の注意書き ---- */
.form-step--1__warning {
  display: none;
  margin-top: 14px;
  padding: 14px 16px;
  background: #ffffff;
  color: #fb0007;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}
.form-step--1__warning.is-visible {
  display: block;
}

.wpcf7-list-item {
  margin: 0 !important;
}

/* ---- 住所入力 / お客様情報 フィールド共通 ---- */
.cf7-field {
  display: block;
  text-align: left;
  margin-bottom: 16px;
}
.cf7-field__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}

.cf7-required {
  display: inline-block;
  background: #fb0007;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1.4;
}

.cf7-field input[type=text],
.cf7-field input[type=tel],
.cf7-field input[type=email],
.cf7-field select {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 13px 14px;
  font-size: 15px;
  font-family: inherit;
  color: #333;
  background: #ffffff;
  border: 1px solid #c9cdcb;
  border-radius: 10px;
  appearance: none;
}

.form-step--2 .h-adr {
  display: block;
  background: #f4faf8;
  border-radius: 20px;
  padding: 22px 20px 20px;
  text-align: left;
}

.form-step--3 .cf7-a {
  display: block;
  text-align: left;
}

.form-step--2 .h-adr .cf7-field:last-child,
.form-step--3 .cf7-a .cf7-field:last-child {
  margin-bottom: 0;
}

.form-step--2 .cf7-field__label,
.form-step--3 .cf7-field__label {
  color: #ffffff;
}

.form-step--2 .cf7-note {
  color: #feec73;
}

.cf7-field select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23999' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
}

.cf7-hint {
  display: block;
  color: #fb0007;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 6px;
}

.cf7-note {
  display: block;
  color: #fb0007;
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.6;
}

.wpcf7-not-valid-tip {
  color: #fff !important;
  background: rgba(0, 0, 0, 0.25);
  font-size: 11px !important;
  margin-top: 4px;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
}

/* ---- プライバシー同意 ---- */
.form-step__privacy {
  margin-top: 4px;
  margin-bottom: 18px;
}

.cf7-accept {
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  line-height: 1.5;
  text-align: left;
}
.cf7-accept label {
  display: inline-flex;
  align-items: center;
}
.cf7-accept input[type=checkbox] {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}
.cf7-accept .wpcf7-list-item-label {
  margin-left: 6px;
}

/* ---- 戻る / 送信ナビゲーション ---- */
.form-step__nav {
  position: relative;
  min-height: 20px;
  padding-top: 20px;
}

.form-step__prev {
  position: absolute;
  top: 24px;
  left: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  cursor: pointer;
}
.form-step__prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  width: 10px;
  height: 10px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.form-step--1 .form-step__nav,
.form-step--1 .form-step__prev {
  display: none;
}

.form-step__nav--last {
  /* 戻る円ボタン（top:46px, 高さ40px = 下端86px）と、
     下に続くキャプション文言・送信ボタンが重ならないよう、
     余白（16px）を確保した分だけ padding-top を広げてある。 */
  padding-top: 102px;
}

.form-step__nav--last .form-step__prev {
  top: 46px;
}

/* STEP2 は戻るボタンの下に「次へ進む」ボタンが縦に並ぶため、
   戻るボタンを絶対配置ではなく通常の要素として扱い、
   マージンで間隔を確保する（矢印アイコンの位置基準にするため
   position だけは relative を維持する）。 */
.form-step--2 .form-step__prev {
  position: relative;
  top: auto;
  left: auto;
  display: block;
  margin: 0 auto 16px 0;
}

/* ---- ステップ2：次へ進むボタン ---- */
.form-step__next {
  display: block;
  width: 100%;
  margin-top: 8px;
  background: #fd8f01;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 16px 20px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease;
}
.form-step__next:active {
  transform: scale(0.98);
}
.form-step__next::after {
  content: "▶";
  margin-left: 8px;
  font-size: 12px;
}

.cf7-submit {
  text-align: center;
}

.cf7-submit-caption {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
}
.cf7-submit-caption::before, .cf7-submit-caption::after {
  content: "\\";
  display: inline-block;
  margin: 0 6px;
  opacity: 0.85;
}
.cf7-submit-caption::after {
  content: "/";
}
.cf7-submit-caption {
  margin-bottom: 12px;
}

.cf7-submit input[type=submit] {
  width: 100%;
  background: #fd8f01;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 18px 20px;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
}
.cf7-submit input[type=submit]::after {
  content: "\\25B6";
  margin-left: 8px;
  font-size: 13px;
}

.cf7-submit .wpcf7-spinner {
  display: block;
  margin: 10px auto 0;
}

/* =========================================================
   シミュレーション例
========================================================= */
.ss-examples {
  background: #f4faf8;
  padding: 36px 0 0;
  text-align: center;
}
.ss-examples__icon {
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto 10px;
}
.ss-examples__title {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
  padding-bottom: 6px;
}
.ss-examples__title::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 0;
  height: 4px;
  background: #feec73;
  border-radius: 2px;
}
.ss-examples__lead {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 22px;
}
.ss-examples__cta {
  margin: 22px 20px 0;
  border: 2px solid #00b154;
  border-radius: 14px;
  padding: 16px;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  background: #ffffff;
}
.ss-examples__cta-lead {
  font-size: 15px;
}
.ss-examples__cta-strong {
  margin-top: 2px;
}
.ss-examples__cta-strong-em {
  color: #009246;
  font-size: 23px;
  font-weight: 700;
}
.ss-examples__cta-strong-sub {
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700;
}
.ss-examples__houses {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 26px;
}

.ss-carousel {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 8px;
}
.ss-carousel::-webkit-scrollbar {
  display: none;
}
.ss-carousel__track {
  display: flex;
  gap: 14px;
  padding: 0 calc(50% - 118px);
}
.ss-carousel__card {
  flex: none;
  width: 236px;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 768px) {
  .ss-carousel__track {
    padding: 0 20px;
  }
}
/* =========================================================
   STEP2：プライバシーポリシー
========================================================= */
.cf7-step2-privacy {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ---- 「プライバシーポリシーを確認する」 ---- */
.cf7-privacy-details {
  width: 100%;
  margin-bottom: 14px;
  text-align: left;
}

/* summary */
.cf7-privacy-summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.cf7-privacy-summary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.8);
}
.cf7-privacy-summary:active {
  transform: scale(0.98);
}
.cf7-privacy-summary::-webkit-details-marker {
  display: none;
}
.cf7-privacy-summary::marker {
  content: "";
}
.cf7-privacy-summary::before {
  content: "ⓘ";
  font-size: 12px;
  line-height: 1;
}
.cf7-privacy-summary::after {
  content: "＋";
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.cf7-privacy-details[open] .cf7-privacy-summary {
  margin-bottom: 10px;
}
.cf7-privacy-details[open] .cf7-privacy-summary::after {
  content: "−";
}

/* 開いたとき */
.cf7-privacy-details[open] .cf7-privacy-summary {
  margin-bottom: 10px;
}
.cf7-privacy-details[open] .cf7-privacy-summary::after {
  content: "−";
}

/* ---- PP本文 ---- */
.cf7-privacy-body {
  max-height: 220px;
  overflow-y: auto;
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  color: #444;
  font-size: 11px;
  line-height: 1.8;
  text-align: left;
  -webkit-overflow-scrolling: touch;
}
.cf7-privacy-body p {
  margin: 0 0 12px;
}
.cf7-privacy-body p:last-child {
  margin-bottom: 0;
}
.cf7-privacy-body h4 {
  margin: 16px 0 6px;
  color: #222;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}
.cf7-privacy-body h4:first-of-type {
  margin-top: 4px;
}

/* ---- STEP2：PP同意 ---- */
.cf7-accept--step2 {
  width: 100%;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  /* 中央寄せ */
  text-align: center;
}
.cf7-accept--step2 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.cf7-accept--step2 .wpcf7-form-control {
  display: flex;
  justify-content: center;
  width: 100%;
}
.cf7-accept--step2 .wpcf7-list-item {
  display: block;
  margin: 0 !important;
}
.cf7-accept--step2 label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cf7-accept--step2 input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
  cursor: pointer;
}
.cf7-accept--step2 .wpcf7-list-item-label {
  margin-left: 7px;
}

/* ---- 一時保存についての補足 ---- */
.cf7-privacy-note {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.ss-thanks-page header#masthead {
  display: none !important;
}
.ss-thanks-page {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  overflow: hidden;
}

/* ---- ヒーロー（完了メッセージ） ---- */
.ss-thanks-hero {
  background: #00b154;
  text-align: center;
  padding: 30px 24px 40px;
}
.ss-thanks-hero__check {
  width: 58px;
  height: 76px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ss-thanks-hero__check img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ss-thanks-hero__title {
  color: #ffffff;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 18px;
}
.ss-thanks-hero__lead {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 18px;
}
.ss-thanks-hero__note {
  color: rgba(255, 255, 255, 0.92);
  font-size: 23px;
  line-height: 1.6;
  text-align: left;
}

/* ---- お客様写真 ---- */
.ss-thanks-photo {
  background: #00b154;
  padding: 0 24px 30px;
}
.ss-thanks-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 4px solid rgba(255, 255, 255, 0.9);
}

/* ---- しつこい営業はありません（白カード） ---- */
.ss-thanks-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  margin: 0 24px 34px;
  padding: 22px 20px 26px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.ss-thanks-trust__icon {
  width: 50px;
  height: 40px;
  margin-bottom: 8px;
}
.ss-thanks-trust__title {
  color: #009246;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.ss-thanks-trust__text {
  color: #444;
  font-size: 19px;
  line-height: 1.8;
  text-align: center;
}

/* しつこい営業はありません区画そのものは緑背景の続き */
.ss-thanks-trust-wrap {
  background: #00b154;
  padding: 0 0 34px;
}

/* ---- セクション見出し（左右に線） ---- */
.ss-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #009246;
  font-size: 21px;
  font-weight: 700;
  margin: 0 24px 20px;
}
.ss-section-heading::before, .ss-section-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #cfe3d6;
}

/* ---- ご連絡について ---- */
.ss-thanks-contact {
  background: #f4faf8;
  padding: 32px 0 8px;
}

.ss-contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  margin: 0 20px 14px;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.ss-contact-card__icon {
  flex: none;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e4f0ff;
}
.ss-contact-card__icon img {
  width: 40px;
  height: 40px;
}
.ss-contact-card__body {
  display: flex;
  flex-direction: column;
  width: 288px;
  text-align: center;
}
.ss-contact-card__title {
  font-size: 19px;
  font-weight: 700;
  color: #1c3a5e;
  margin-bottom: 8px;
}
.ss-contact-card__desc {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}
.ss-contact-card__desc--full {
  font-size: 17px;
  color: #333;
  font-weight: 700;
  line-height: 1.7;
}
.ss-contact-card--warning {
  background: #eaf2ff;
  align-items: flex-start;
}
.ss-contact-card--warning .ss-contact-card__icon {
  background: transparent;
  width: 60px;
  height: 60px;
  color: #1c3a5e;
}

/* ---- 今後の流れ ---- */
.ss-thanks-flow {
  background: #f4faf8;
  padding: 10px 0 40px;
  text-align: center;
}

.ss-flow-list {
  list-style: none;
  margin: 0 24px 22px;
  padding: 0;
}
.ss-flow-list__item {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
}
.ss-flow-list__item + .ss-flow-list__item {
  margin-top: 26px;
}
.ss-flow-list__item + .ss-flow-list__item::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid #00b154;
}
.ss-flow-list__num {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #00b154;
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ss-flow-list__title {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #1c3a5e;
  margin-bottom: 8px;
}
.ss-flow-list__desc {
  display: block;
  font-size: 16px;
  color: #666;
}

.ss-thanks-flow__closing {
  font-size: 24px;
  font-weight: 700;
  color: #009246;
  line-height: 1.8;
  margin-bottom: 14px;
}
.ss-thanks-flow__closing-mark {
  background: linear-gradient(transparent 62%, #feec73 62%);
}

.ss-thanks-flow__leaf {
  width: 34px;
  height: auto;
  margin: 0 auto 14px;
  display: block;
}

.ss-thanks-flow__contact {
  font-size: 19px;
  color: #555;
  line-height: 1.8;
}

/* ---- 街並みイラスト（フッター直前の余白を白ではなく背景色で埋める） ---- */
.ss-thanks-page .ss-examples__houses {
  margin-top: 0;
  padding-top: 26px;
  background: #f4faf8;
}

/*# sourceMappingURL=style.css.map */
