@charset "UTF-8";

/* リセットとベーススタイル */
body {
		margin: 0;
		padding: 0;
		/* ページの背景色はbodyに適用し、PCで左右の余白部分まで色を付ける */
		background-color: #f5f5f5; 
		font-family: 'Noto Sans JP', sans-serif;
		line-height: 1.6;
		color: #333;
		text-align: center;
		font-size:  1.2rem; /* 12px */
}

a {
		text-decoration: none;
}

li {
		list-style: none;
}

/* -------------------- 共通コンテナ設定 (.lp-containerのみで制御) -------------------- */
.lp-container {
		width: 100%; /* モバイルでは画面いっぱいに */
		
		/* PCでの中央揃えと固定幅の設定 */
		margin: 0 auto;
		
		/* LPのコンテンツ領域の背景色（白） */
		background-color: #ffffff;

		/* モバイルでの左右の余白（コンテンツが画面端に張り付かないように） */
		/* bodyにpaddingを入れる代わりに、lp-containerの子要素で対応 */
}

/* PC・タブレットでの幅固定と中央揃え */
@media (min-width: 601px) {
		/* bodyへの設定を外し、lp-containerにのみ適用 */
		.lp-container {
				max-width: 600px;
				box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
		}
}

/* 【画像】常に親要素の幅に合わせる */
img {
	max-width: 100%;
	height: auto;
	display: block;
	/* 全てのブロックレベルの画像を中央揃えにする */
	margin-left: auto; 
	margin-right: auto;
}

/* -------------------- 最初のセクション (FV) -------------------- */

/* 全体のレイアウト設定 */
.fv-section {
    position: relative;
}

/* 1. 最上部ヘッダーバー */
.fv-top-bar {
    position: relative;
    height: 60px; /* バッジがはみ出すのを考慮した高さ */
    display: flex;
    align-items: center;
    padding: 10px 20px 13px 2px;
}

.pr {
    font-size: 0.5rem;
}

.media-title img {
    width: 155px;
}

/* 右上の60秒バッジ（絶対配置で右上に固定） */
.badge-60sec {
    position: absolute;
    top: 0;
    right: 7%;
    width: 110px;
    z-index: 10;
}

/* 2. メインコピー */
.fv-main-copy {
    position: absolute; /* 絶対配置に変更 */
    left: 0;
    width: 100%;
    z-index: 5;         /* 画像より上に表示 */
    padding: 0;         /* 余白をリセット */
    background: none;   /* 背景色を消す */
    text-align: left; /* 中央揃え */
}

.fv-main-copy h1 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin: 13px 0 0 15px;
    display: inline-block;
    text-align: left;    /* 行頭は左に揃える */
    /* 背景が明るい場合、文字に少し影をつけると読みやすくなります */
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

/* 「あなたの不動産、」などの白背景・黒枠風装飾 */
.fv-main-copy h1 span, 
.fv-main-copy h1 strong {
    background: #fff;
    display: inline-block;
}

.fv-main-copy strong {
    font-size: 2.5rem;
    color: #000;
    padding-bottom: 2px;
}

/* 3. メインビジュアルボックス (画像に要素を重ねる) */
.fv-visual-box {
    position: relative;
    width: 100%;
    overflow: hidden; /* はみ出し防止 */
}

.main-img {
    width: 100%;
    display: block;
}

/* 1,000万人バッジ（左上に配置） */
.trust-circle {
    position: absolute;
    top: 113px;
    left: 15px;
    width: 90px;
    z-index: 6;
}

/* チェックリスト（画像の下部に重ねる） */
.pain-point-list {
    position: absolute;
    bottom: 5px;
    left: 5%;
    width: 90%;
    z-index: 6;
}

.pain-point-list li {
  /*  横幅をコンテンツ（文字とアイコン）に合わせる */
    width: fit-content;
    margin: 5px 0 5px;
    background: rgba(255, 255, 255, 0.95);
    margin-bottom: 5px;
    padding: 1px 5px;
    font-size: 0.7rem;
    font-weight: bold;
    text-align: left;
    display: flex;
    align-items: center;
}

/* チェックアイコンを疑似要素で作成（または画像を指定） */
.pain-point-list li::before {
    content: '✔';
    /* 1. チェックマークの色をオレンジに */
    color: #f39800; 
    
    /* 2. 中の色を白に */
    background: #fff; 
    
    /* 3. 囲む線をオレンジに */
    border: 2px solid #f39800; 
    
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* 角丸（2枚目の画像に合わせた形） */
    border-radius: 5px; 
    
    margin-right: 3px;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
    
    /* ボックスサイジングで枠線を含めたサイズ固定にする */
    box-sizing: border-box;
}

.text-container {
  background-color: #F5F5F5;
  padding: 5px;
}

.lead-text {
    margin: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.solve-text {
    font-size: 0.9rem;
    margin: 5px 0 0px;
}

.solve-text strong {
    color: #f39800;
    font-size: 1.3rem;
}

/* --- アニメーションの定義 --- */
@keyframes pulse-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}


/* 5. 共通CTAボタン (cv-button) */
.fv-cta-container {
  padding: 20px 15px;
}

.cv-button {
    background: linear-gradient(to bottom, #ff0000, #cc0000); /* 赤のグラデーション */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 10px;
    box-shadow: 0 4px 0 #880000; /* 立体感 */
    transition: transform 0.2s;
    max-width: 90%;
    margin: 0 auto;

      /* ↓↓↓ アニメーションの設定 ↓↓↓ */
	transform: scale(1); /* transformの初期値 */
	animation-name: pulse-animation;
	animation-duration: 1.5s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
}

/* ボタンの動きアニメーション */
.cv-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #880000;
}

.btn-icon {
    width: 30px;
    height: auto;
    margin: 0 20px 0 0;
}

.btn-text-group {
    display: flex;
    flex-direction: column;
    color: #fff;
    text-align: center;
}

.btn-text {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.btn-sub-text {
    font-size: 0.7rem;
}

/* -------------------- 売れる理由セクション -------------------- */

.reason-section {
    padding: 30px 0;
    background-color: #fff;
}

/* 見出しの装飾（高く・早くの上の点々） */
.reason-head .section-title {
    font-size: 1.4rem;
    color: #f39800; /* 茶系のオレンジ */
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
}

.reason-head .section-title span {
    position: relative;
    font-size: 1.7rem;
}

/* タイトル上の黄色の点 */
.reason-head .section-title::before {
	content: '・・　・・'; 
	position: absolute;
	top: 33px;
    left: 35%;
	transform: translateX(-50%);
	color: #ffeb3b; 
	font-size: 1.2rem;
	line-height: 1;
	letter-spacing: 10px; 
	z-index: 2;
}

/* 女の子と吹き出しエリア */
.top-class-reason {
    width: 100%;
    margin-bottom: 15px;
}

.character-img img {
    width: 100%; /* 背景画像を横幅いっぱいに表示 */
    height: auto;
    display: block;
}

/* 特徴ボックス（共通） */
.feature-box {
    padding: 20px 18px;
    text-align: left;
}

.feature-box h3 {
    color: #f39800;
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 15px;
    padding: 0 25px;
}

.feature-img {
    width: 75%;
    padding: 0 10px;
    margin: auto;
}

/* 黄色のマーカー */ 
.yellow-line {
		background: linear-gradient(transparent 60%, #ffee9c 60%); 
		padding: 0 5px;
    display: inline-block;
}

.feature-content {
    display: flex;
    gap: 17px;
    margin: 0 8px;
    flex-direction: column;
    align-items: flex-start;
}

.feature-text {
    font-size: 0.8rem;
    line-height: 1.7;
    text-align: justify;
    padding: 0 24px;
}

/* 3つの実績リスト */
.check-point-list {
    margin-top: 30px;
    padding: 0px 0 0 30px;
}

.check-point-list li {
    display: flex;
    align-items: center;
    margin-bottom: 17px;
}

.list-icon {
    width: 25px; /* アイコンサイズ */
    height: auto;
    margin: 0;
    flex-shrink: 0;
}

.list-content {
    display: flex;
    flex-direction: column;
    padding: 0 0 0 3px;
}

.list-label {
    font-weight: bold;
    font-size: 0.8rem;
}

.list-text {
    font-size: 0.68rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    padding-left: 7px;
}

/* ネットワークマップエリア */
.final-conv-area {
    position: relative; /* ボタンを重ねるための基準点 */
    width: 100%;
}

/* ボタン部分を画像の上に浮かせる */
.final-conv-area .fv-cta-container {
    position: absolute;  /* 絶対配置 */
    bottom: 20px;
    left: 40%;
    transform: translateX(-50%); /* 自身の幅の半分戻して中央揃え */
    width: 80%;       
    padding: 0;          /* 余計な余白をリセット */
    z-index: 10;         /* 画像より上に表示 */
}

/* ボタン自体の微調整（必要であれば） */
.final-conv-area .cv-button {
    margin: 0 auto;
    /* すでに定義済みのスタイルが適用されます */
}

.final-conv-area .btn-text  {
    font-size: 1rem;
}

.map-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.map-visual {
    width: 100%;
    margin-bottom: 25px;
}


/* -------------------- 3ステップセクション -------------------- */

.step-section {
    background-color: #c5eaeb; /* 画像のような淡い水色 */
    padding: 40px 15px;
    text-align: center;
    border-radius: 53px;
    margin: 0 25px;
}

/* タイトルエリア */
.step-head {
    margin-bottom: 30px;
}

.step-title {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #000;
}

/* 「たったの3ステップ！」の黄色いマーカー装飾 */
.step-title .marker {
    background: linear-gradient(transparent 60%,  #ffee9c 60%);
    padding: 0 5px;
}

/* 「3」の強調スタイル */
.num-highlight {
    color: #f39800; /* オレンジ色 */
    font-size: 2.5rem; /* 他の文字より大きく */
    font-weight: bold;
    font-family: Arial, sans-serif;
    margin: 0 2px;
}

.step-sub-lead {
    font-size: 0.85rem;
    margin: 0;
}

.step-sub-lead strong {
    color: #000;
    font-weight: bold;
}

/* ステップカード全体 */
.step-card {
    margin-bottom: 40px;
    text-align: center;
}

.step-img {
    width: 265px; /* 画像サイズ調整 */
    margin: 0 auto 15px;
}

.step-img img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* ステップごとの説明文 */
.step-desc {
    text-align: left;
    max-width: 450px;
    margin: 0 auto;
    padding: 5px;
}

.step-desc h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.step-desc p {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* グレーの補足ボックス */
.step-note {
    background-color: rgba(255, 255, 255, 0.7); /* 白透過で背景に馴染ませる */
    border-radius: 3px;
    padding: 10px;
    display: flex;
    align-items: center;
}

.note-icon {
    width: 25px;
    height: auto;
    margin: 0 10px 0 0;
    flex-shrink: 0;
}

.step-note p {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #333;
}

/* CTA部分の余白調整 */
.step-section .fv-cta-container {
    padding: 0;
}

.step-section .btn-text {
    font-size: 1.1rem;
}


/* -------------------- 変動、エンディング部分 -------------------- */

.closing-visual-area {
  margin: 40px 0 10px 0;
}

.final-trust-visual {
  margin: 20px 0 0 0;
}

.final-cta {
    padding: 0px 15px;
    text-align: center;
}

.final-cta .fv-cta-container {
  padding: 0px 15px 20px 15px;
}


/* ＼ 最大6社を比較 ／ 部分 */
.cta-decoration {
    font-size: 1.3rem;
    font-weight: bold;
}

.cta-decoration .marker {
    background-color: #ffee9c; /* 黄色のマーカー背景 */
    padding: 2px;
}

/* 共通の .cv-button スタイルを上書き・補完 */
.final-cta .cv-button {
    width: 90%;
    max-width: 500px;
    padding: 8px 10px;
    background: linear-gradient(to bottom, #ff0000, #cc0000);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 0 #880000;
}

/* アイコンサイズ */
.final-cta .btn-icon {
    width: 28px;
    height: auto;
    margin-right: 12px;
}

/* テキストグループ（縦並びを強制し、行間を詰める） */
.final-cta .btn-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2; /* 重なりすぎず、離れすぎない設定 */
}

/* 【重要】メインテキストの強制強調 */
.final-cta .btn-main-text {
    font-size: 1.2rem;      /* サイズを大きく */
    font-weight: 900;       /* 太さを最大に（ブラウザによりBoldより太くなる） */
    color: #ffffff;
    display: block;
    letter-spacing: 0.02em; /* 文字の間隔を少しだけ開けて読みやすく */
}

/* 【重要】サブテキストの強調 */
.final-cta .btn-sub-text {
    font-size: 0.7rem;
    color: #ffffff;
    display: block;
    margin-top: 2px;
}

.company {
    font-size: 0.5rem;
    padding: 3px 0 0px 0;
}


.company a {
	color: #333;
	text-decoration: underline;
}

/* --- 標準設定（スマホ）：改行を有効にする --- */
.sp-only-br {
    display: inline; /* 通常どおり改行として機能 */
}

/* --- 555px以上の設定：改行を消して横に繋げる --- */
@media (min-width: 555px) {
    .sp-only-br {
        display: none; /* 改行を「存在しないもの」にする */
    }

}

/* -------------------- PC・タブレット向けの調整 -------------------- */
@media (min-width: 555px) {
    .fv-top-bar {
        height: 73px;
    }

    .pr {
    font-size: 0.6rem;
    }

    .media-title img {
        width: 186px;
    }

    .feature-content {
        flex-direction: row; /* 横並びに */
        align-items: flex-start;
        gap: 3px;
    }
    
    .feature-content.reverse {
        flex-direction: row-reverse; /* 画像と文字を入れ替え */
    }
    
    .feature-img {
        width: 40%;
        flex-shrink: 0;
    }

    .feature-box {
      padding: 20px 75px;
    }

    .fv-main-copy h1 {
        font-size: 2.5rem;
        margin: 21px 0 0 20px;
    }

    .fv-main-copy strong {
    font-size: 3.3rem;
    }

    .pain-point-list li {
      padding: 5px 12px;
      font-size: 0.9rem;
    }

    .pain-point-list li::before {
      margin-right: 10px;
      width: 22px;
      height: 22px;
    }

    .trust-circle  {
      top: 170px;
      left: 15px;
      width: 140px;
    }

    .solve-text {
    font-size: 1.4rem;
    }

    .solve-text strong {
      font-size: 1.6rem;
    }

    .btn-text {
      font-size: 1.6rem;
    }

    .final-conv-area .btn-text {
        font-size: 1.6rem;
    }

    .btn-sub-text {
      font-size: 0.8rem;
    }

    .cv-button {
      padding: 15px 10px;
    }

    .reason-section {
        padding: 40px 0;
    }

    .reason-head .section-title {
      font-size: 1.8rem;
    }

    .reason-head .section-title span {
      font-size: 1.8rem;
    }

    .reason-head .section-title::before {
        top: 44px;
		left: 39%;
    }

    .top-class-reason {
        margin-bottom: 30px;
    }

    .feature-text {
        font-size: 0.95rem;
    }

    .feature-box h3 {
        font-size: 1.5rem;
    }

    .feature-box {
        padding: 20px 20px;
    }

    .list-content {
        flex-direction: row;
        padding-top: 1px;
    }

    .list-text {
        font-size: 0.9rem;
    }

    .list-label {
    font-size: 1rem;
    }


    .list-icon {
        width: 28px; /* アイコンサイズ */
    }

    .check-point-list {
        margin-top: 30px;
        padding: 0 30px;
    }

    .check-point-list li {
        align-items: flex-start;
    }

    .step-title {
        font-size: 1.6rem;
    }

    .num-highlight {
        font-size: 3rem; /* 他の文字より大きく */
    }

    .step-sub-lead {
        font-size: 0.9rem;
    }

    .step-desc h3 {
        font-size: 1.25rem;
    }

    .step-desc p {
        font-size: 0.95rem;
    }

    .step-note p {
        font-size: 0.85rem;
    }

    .step-section .fv-cta-container {
        padding-top: 10px;
    } 

    .step-section .btn-text {
        font-size: 1.6rem;
    }

    .final-cta .btn-main-text {
        font-size: 1.6rem;      /* サイズを大きく */
    }

    .final-cta .cv-button {
        padding: 15px 10px;
    }

    .cta-decoration {
        font-size: 1.7rem;
    }
    
    .final-cta .btn-sub-text {
        font-size: 0.85rem;
    }

    .company {
        font-size: 0.6rem;
        padding: 5px 0 3px 0;
    }

    .final-conv-area .fv-cta-container {
        bottom: 31px;
        left: 43%;
        width: 90%; 
    }

    .final-conv-area .cv-button {
        max-width: 80%;
    }

    .step-img {
        width: 280px; /* 画像サイズ調整 */
    }
}