@charset "UTF-8";

/* 基本リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4; /* PC時の背景色 */
}

/* 画像の基本設定 */
img {
    width: 100%;
    display: block;
}

/* PC背景・レイアウト調整 */
.pc-background {
    display: flex;
    justify-content: center;
    background-color: #e0e0e0; /* 外側の背景色（お好みで画像などに変更可） */
    min-height: 100vh;
}

/* スマホ表示エリア（ここが実質的なメイン） */
.sp-container {
    width: 100%;
    max-width: 480px; /* スマホビューの最大幅 */
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1); /* PCで見た時の境界線 */
}

/* 各セクション共通 */
section {
    width: 100%;
    padding: 0; /* 書き出したPNGを敷き詰めるなら0、テキスト入れるなら適宜調整 */
}


/* ヘッダー設定 */
.header {
    width: 100%;
    background-color: #fff;
    padding: 15px 0; /* 上下の余白 */
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #eee; /* 薄く境界線を入れる場合 */
}

.header h1 {
    width: 180px; /* ロゴの表示幅に合わせて調整 */
    margin: 0;
    line-height: 0;
}

.header img {
    width: 100%;
    height: auto;
}

.section-fv {
    width: 100%;
    position: relative;
    background-color: #fff;
}

.fv-inner {
    position: relative;
    width: 100%;
}

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

/* ボタンを画像の下部に重ねる */
.fv-cta-container {
    position: absolute;
    bottom: -78px; /* 画像の下端からボタンを半分（30pxほど）外に出す */
    left: 0;
    right: 0;
    margin: auto;
    width: 90%; /* ボタンの横幅を調整 */
    z-index: 10; /* 画像より上に表示 */
}

/* ボタン自体のスタイル（前回のものを微調整） */
.btn-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #ff9d25, #f37021);
    color: #fff;
    text-decoration: none;
    border-radius: 60px; 
    padding: 8px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* 浮いている感じを出す影 */
    transition: transform 0.1s;
}

.btn-cta:active {
    transform: translateY(2px) scale(0.98);
}

.btn-sub {
    font-size: 32px;
    font-weight: bold;
}

.btn-main {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 0.05em;
}


.section-problem {
    background-color: #fdfaf5; /* デザインに合わせた薄いベージュ系 */
    padding: 130px 20px 40px; /* FVボタンが被るため上を広めに */
}

.problem-title {
    width: 90%;
    margin: 0 auto 30px;
}

.problem-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.problem-image {
    width: 60%;
    margin-bottom: 20px;
}

.problem-list {
    list-style: none;
    padding: 0;
    width: 100%;
}

.problem-list li {
    position: relative;
    background-color: #fff;
    border: 2px solid #669933; /* デザインの緑色に合わせる */
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 15px 15px 15px 50px; /* 左側にチェックアイコン用の余白 */
    font-weight: bold;
    font-size: 22px;
    line-height: 1.5;
}

/* チェックアイコンを擬似要素で作成（画像にしてもOK） */
.problem-list li::before {
    content: '✔';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #669933;
    font-size: 24px;
}

/* 「選ばれる理由」セクション */
.section-reason {
    background-color: #fff; /* 白背景 */
    padding: 40px 20px;
}

.section-heading {
    width: 90%; /* 見出し画像の幅を調整 */
    margin: 0 auto 30px;
}

.section-heading img {
    width: 100%;
    height: auto;
    display: block;
}

.reason-point {
    margin-bottom: 40px; /* 次のポイントとの間隔 */
}

.reason-image {
    width: 100%; /* ポイント画像は横幅いっぱい */
    margin-bottom: 20px;
}

.reason-image img {
    width: 100%;
    height: auto;
    display: block;
}

.reason-text {
    padding: 0 10px; /* テキストの左右余白 */
}

.reason-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 1em;
}

.reason-text .annotation {
    font-size: 12px;
    color: #666;
    margin-top: 20px;
}

/* 見出し画像を幅いっぱいに */
.section-heading {
    width: 100%; /* 90%から100%に変更 */
    margin: 0;   /* 左右の余白をなくす */
    margin-bottom: 40px;
}

.section-heading img {
    width: 100%;
    height: auto;
    display: block;
}

/* もし親要素（.section-reason）に左右パディングがある場合は、
   見出しだけそれを無視して広げる設定が必要です */
.section-reason {
    padding: 40px 0; /* 左右の20pxを0にする */
}

/* その代わり、テキストが入る部分にだけ左右余白を戻します */
.reason-point, .reason-text {
    padding-left: 20px;
    padding-right: 20px;
}

/* ポイントごとの区切りを分かりやすくする場合 */
.reason-point {
    margin-bottom: 50px; /* ポイント間の余白を少し広めに */
}

.reason-point:last-child {
    margin-bottom: 0; /* 最後のポイントの下は余白なし */
}

.reason-text p {
    font-size: 18px;
    line-height: 1.7;
    /* デザインに合わせてテキストのフォントウェイトを調整 */
    font-weight: 500; 
}

/* 保険料セクション */
.section-price {
    background-color: #f5f5f5; /* 薄いグレー */
    padding: 60px 20px;
    text-align: center;
}

.price-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

/* 見出しの下に飾り線を入れる場合（お好みで） */
.price-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #669933; /* ポイントカラーの緑 */
}

.price-image {
    width: 100%;
    margin-bottom: 30px;
}

.price-image img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* 角を少し丸めると柔らかい印象に */
}

.price-annotation {
    text-align: left; /* 注釈は左寄せが読みやすい */
    display: inline-block; /* 中央寄せの中の左寄せを実現 */
}

.price-annotation p {
    font-size: 12px;
    line-height: 1.6;
    color: #666;
}


/* CTAセクション全体 */
.section-cta-entry {
    background-color: #fff;
    padding: 80px 20px 40px; /* 上パディングを広めにとって男性のスペースを確保 */
    position: relative;
}

/* 上から指をさす男性の配置 */
.cta-person {
    position: absolute;
    top: -100px; /* 前のセクションに食い込む量 */
    left: 50%;   /* 親要素の50%の位置に配置 */
    transform: translateX(-50%); /* 自身の幅の半分だけ左に戻して中央揃え */
    width: 200px; /* 少し大きくした方がインパクトが出るかもしれません */
    z-index: 20;
}
.cta-person img {
    width: 100%;
}

/* 中身のコンテンツ */
.cta-content {
    background-color: #fdfaf5; /* 囲み枠の背景色 */
    border: 2px solid #eecb82; /* 枠線 */
    border-radius: 15px;
    padding: 40px 15px 30px;
    text-align: center;
}

.cta-main-title {
    font-size: 22px;
    color: #d35400; /* 強調カラー（濃いオレンジ） */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.4;
}

.cta-sub-text {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333;
}

/* 電話ボタン（CSSのみで作成） */
.btn-tel {
    display: block;
    background: linear-gradient(to bottom, #ff9d25, #f37021);
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    padding: 15px 0;
    border-radius: 50px;
    box-shadow: 0 4px 0 #c75a1a;
    margin-bottom: 25px;
}

.btn-tel::before {
    content: "📞";
    font-size: 22px;
    margin-right: 10px;
}

.cta-image {
    width: 100%;
    margin-bottom: 20px;
}

.cta-image img {
    width: 100%;
    border-radius: 10px;
}

/* ポイントリスト */
.cta-points {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block; /* 中央寄せの中の左寄せ */
}

.cta-points li {
    font-size: 22px;
    font-weight: bold;
    color: #669933;
    margin-bottom: 4px;
    position: relative;
    padding-left: 25px;
}

.cta-points li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #669933;
}



/* セクション全体 */
.section-cta-entry {
    background-color: #fff;
    padding: 60px 20px 40px;
    position: relative;
}

/* 枠の上に乗る男性 */
.cta-person {
    position: absolute;
    /* 枠線(.cta-content)の開始位置よりさらに上に配置 */
    top: -46px; 
    left: 50%;
    transform: translateX(-50%);
    width: 220px; /* サイズは適宜調整 */
    z-index: 10; /* 枠線より上に表示 */
}

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

/* 枠線のあるボックス */
.cta-content {
    /* 男性の画像の高さに合わせて上の余白を調整 */
    margin-top: 13px; 
    background-color: #fdfaf5;
    border: 2px solid #eecb82;
    border-radius: 15px;
    /* 男性の画像とテキストが被りすぎないよう、内側の上余白を広めに */
    padding: 36px 15px 30px; 
    text-align: center;
    position: relative; /* z-indexを有効にするため */
    z-index: 5;
}

/* --- 以下、ボタンなどの装飾（前回同様） --- */
.btn-tel {
    display: block;
    background: linear-gradient(to bottom, #ff9d25, #f37021);
    color: #fff;
    text-decoration: none;
    font-size: 26px;
    font-weight: bold;
    padding: 15px 0;
    border-radius: 50px;
    box-shadow: 0 4px 0 #c75a1a;
    margin: 20px 0;
}




/* お客様の声セクション */
.section-voice {
    background-color: #fff;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 40px;
}

/* カード全体のスタイル */
.voice-card {
    background-color: #fcfaf5; /* 優しい色味の背景 */
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* ヘッダー部分（画像と名前） */
.voice-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.voice-thumb {
    width: 70px;
    height: 70px;
    margin-right: 15px;
}

.voice-thumb img {
    width: 100%;
    height: auto;
    border-radius: 50%; /* 丸いアイコンにする */
    border: 2px solid #fff;
}

.voice-profile {
    font-weight: bold;
    line-height: 1.4;
    font-size: 18px;
    color: #444;
}

/* コメント部分 */
.voice-body p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    position: relative;
}

/* 吹き出し風の装飾を入れたい場合はこちら */
.voice-body {
    padding: 10px 5px;
}



/* 特徴セクション全体 */
.section-features-detail {
    background-color: #fdfaf5; /* 優しいベージュ系 */
    padding: 60px 20px;
}

/* 各特徴のブロック */
.feature-block {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.feature-block:last-child {
    margin-bottom: 0;
}

/* 特徴画像 */
.feature-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* 特徴の中身（テキスト） */
.feature-content {
    padding: 25px 15px;
    text-align: center;
}

/* 強調キャッチコピー */
.feature-catch {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #333;
}

/* フォント色変更部分 */
.text-highlight {
    color: #e67e22; /* オレンジ系（デザインに合わせて調整してください） */
    font-size: 1.1em;
}

/* 説明文 */
.feature-desc {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    text-align: left; /* 長い説明文は左寄せが読みやすい */
}



/* 会社概要セクション */
.section-outline {
    background-color: #fff;
    padding: 60px 20px;
}

.outline-table {
    border-top: 2px solid #669933; /* ポイントカラーの緑 */
}

.outline-table dl {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.outline-table dt {
    font-weight: bold;
    color: #669933;
    font-size: 14px;
    margin-bottom: 10px;
}

.outline-table dd {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-left: 0;
}

/* 拠点名の装飾 */
.office-name {
    font-weight: bold;
    margin-top: 15px;
    color: #555;
}
.office-name:first-child { margin-top: 0; }

/* 保険会社カテゴリー */
.ins-category {
    margin-bottom: 20px;
}
.cat-title {
    display: inline-block;
    background: #f0f0f0;
    padding: 2px 10px;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 8px;
    border-radius: 4px;
}

.ins-category ul {
    list-style: none;
    padding: 0;
}

.ins-category ul li {
    font-size: 13px;
    padding-left: 1em;
    text-indent: -1em;
    margin-bottom: 3px;
}
.ins-category ul li::before {
    content: "・";
    color: #ccc;
}



/* 固定CTAのコンテナ */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px; /* sp-containerの幅に合わせる */
    padding: 10px 15px 20px; /* 下に少し余裕を持たせる */
    z-index: 100;
    /* 背景を少し透過させて、後ろのコンテンツをチラ見せすると圧迫感が減ります */
    background: rgba(255, 255, 255, 0.9); 
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

/* ボタン本体 */
.btn-fixed {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #ff9d25, #f37021);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    padding: 8px 0;
    box-shadow: 0 4px 0 #c75a1a;
    transition: transform 0.2s;
}

.btn-fixed:active {
    transform: translateY(2px);
    box-shadow: none;
}

.fixed-sub {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 2px;
}

.fixed-main {
    font-size: 20px;
    font-weight: bold;
}

/* 固定CTAの初期状態（非表示） */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%); /* 画面の下に隠しておく */
    width: 100%;
    max-width: 480px;
    padding: 10px 15px 20px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease; /* ふわっと動かすアニメーション */
    visibility: hidden;
    opacity: 0;
}

/* スクロール後に付与するクラス */
.fixed-cta.is-show {
    transform: translate(-50%, 0); /* 定位置に戻る */
    visibility: visible;
    opacity: 1;
}



/* フッター */
.footer {
    background-color: #2c3e50; /* 濃いネイビー（信頼感のある色） */
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    padding-bottom: 120px;
}

.footer-logo {
    width: 140px;
    margin: 0 auto 20px;
    /* ロゴがカラーの場合は、CSSフィルタで白抜きにすることも可能です */
    filter: brightness(0) invert(1);
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-copy {
    font-size: 11px;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

/* ページ全体の最下部、スマホのナビゲーション等に被らないよう調整 */
.sp-container {
    padding-bottom: 0;
}