/* ===============================================
 * 自分史づくりページ スタイル
 * =============================================== */

/* ----- 共通スタイル ----- */
.main-content-area {
    /* メインコンテンツエリア全体 */
    width: 100vw;
    overflow: hidden;
    /* はみ出し防止 */
}

.container {
    max-width: 1100px;
    /* コンテンツの最大幅 */
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.bg-light-beige {
    background-color: var(--bgColorSection);
    /* 温かみのある薄いベージュ系（仮） */
    /* または既存のCSS変数 var(--bgColorSection) などを使用 */
    /* background-color: var(--bgColorSection); */
}


.section-title-asset {
    height: 120px;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--subColor);
}

span.section-title-asset-sub {
    display: block;
    font-size: 0.9rem;
    color: var(--textColor, #6e6d6d);
    /* margin-top: 5px; */
    font-family: sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

.section-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--textColor, #6e6d6d);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button,
.cta-button--secondary {
    /* 共通ボタンスタイルを流用・調整 */
    display: inline-block;
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    border: none;
    background-image: linear-gradient(to bottom, #feb12c, #fc5903);
    /* サイト共通カラー */
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    transition: transform 0.1s ease, filter 0.2s ease;
    cursor: pointer;
}

.cta-button:hover,
.cta-button:focus,
.cta-button--secondary:hover,
.cta-button--secondary:focus {
    color: #ffffff;
    filter: brightness(110%);
}

.cta-button:active,
.cta-button--secondary:active {
    transform: scale(0.98);
    filter: brightness(100%);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* セカンダリボタン（例：枠線のみ） */
.cta-button--secondary {
    background-image: none;
    background-color: #fff;
    color: #fc5903;
    /* メインカラー */
    border: 2px solid #fc5903;
}

.cta-button--secondary:hover,
.cta-button--secondary:focus {
    background-color: #fff7e9;
    /* 薄いオレンジ */
    color: #d94d02;
    /* 濃いオレンジ */
    filter: none;
}

.section-button-area {
    text-align: center;
    margin-top: 40px;
}

.pc-only {
    display: inline;
}

.sp-only {
    display: none;
}

@media screen and (max-width: 767px) {
    .container {
        padding-top: 50px;
    }

    .section-padding {
        padding-top: 0;
        padding-bottom: 0;
    }

    .pc-only {
        display: none;
    }

    .sp-only {
        display: inline;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-lead {
        font-size: 1rem;
    }
}


/* ----- 1. ファーストビュー ------------------------------------------------------ */
.asset-hero {
    position: relative;
    height: 60vh;
    /* ビューポートの高さの60% */
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
	z-index: -1;
}

.asset-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.asset-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 画像をエリアに合わせて調整 */
    object-position: center 90%;
}

.asset-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* 少し暗くして文字を見やすく */
    z-index: -1;
}

.asset-hero__content {
    max-width: 800px;
    padding: 20px;
}

.asset-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 30px;
    line-height: 1.3;
    font-weight: bold;
    /* font-family: var(--notom); */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.asset-hero__subtitle {
    font-size: clamp(0.95rem, 4vw, 1.3rem);
    margin-bottom: 40px;
}

.asset-hero__cta {
    /* CTAボタン用のマージンなど */
}

@media screen and (max-width: 991px) {
   
    
}

@media screen and (max-width: 767px) {
    .asset-hero__title {
        font-size: clamp(1.7rem, 5vw, 3.5rem);
    }

    .asset-hero__subtitle {
        font-size: clamp(0.82rem, 2.1vw, 1.1rem);
        margin-bottom: 40px;
    }
}

/* ----- 2. サポート内容 ----- */
.asset-support__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.support-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 5px;
    border-left: 5px solid var(--subColor, #12372a);
    /* 左にアクセント */
}

.support-item__title {
    /* h3 */
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--subColor, #12372a);
}

p.section-lead.asset-support__explain {
    text-align: center;
}

.support-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--textColor, #6e6d6d);
    margin: 0;
}

@media screen and (max-width: 767px) {
    section.asset-support.section-padding.bg-light-beige {
        padding-bottom: 50px;
    }

    .asset-support h2.section-title-asset {
        margin-bottom: 20px;
        font-size: clamp(1.66rem, 2.1vw, 1.1rem);
    }
}

/* ----- 3. 制作の流れ ----- */
.asset-process__steps {
    list-style: none;
    padding: 0;
    margin: 27px auto 27px;
    max-width: 900px;
    position: relative;
}

/* 縦線の例 */
.asset-process__steps::before {
    content: '';
    position: absolute;
    top: 30px;
    /* アイコンの半径分 */
    bottom: 30px;
    left: 30px;
    /* 番号/アイコンの左に配置 */
    width: 2px;
    background-color: #e0e0e0;
    z-index: -1;
}


.process-step {
    position: relative;
    padding-left: 80px;
    /* 番号とアイコン用のスペース */
    padding-bottom: 40px;
    /* ステップ間のスペース */
    min-height: 60px;
    /* アイコンの高さに合わせる */
}

.process-step:last-child {
    padding-bottom: 0;
}

/* 番号とアイコンを左に配置 */
.process-step__number {
    position: absolute;
    left: -39px;
    top: -5px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--subColor);
    opacity: 0.6;
}

.process-step__icon {
    position: absolute;
    left: 0px;
    /* 番号と重ならないように調整 */
    top: 30px;
    /* アイコンの中心が線に来るように */
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #e0e0e0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.process-step__icon img {
    width: 86%;
    height: auto;
    object-fit: contain;
}

img.process-step__icon-mail {
    width: 71%;
    padding-bottom: 4px;
    padding-left: 1px;
}

img.process-step__icon-suggestion {
    width: 82%;
    margin-bottom: 6px;
    margin-left: 5px;
}

img.process-step__icon-handshake {
    margin-top: 5px;
}

.process-step__title {
    /* h3 */
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--subColor, #12372a);
}

.process-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--textColor, #6e6d6d);
    margin: 0;
}

/* ----- レスポンシブ対応 ------------------------------------------------------------------- */
@media screen and (max-width: 991px) {

    .asset-process .container {
        padding-left: 40px;
    }

    /* タブレットなど (少し狭い画面) */
    .asset-benefits__grid {
        gap: 20px;
        /* 列間の隙間を少し狭く */
    }

    .process-step__number {
        top: -23px;
        left: -20px;
        font-size: 1.3rem;
    }

    .asset-process__steps::before {
        bottom: 60px;
    }


    .asset-benefits__grid>div:nth-child(2) {
        flex-basis: 300px;
        /* 画像の基準幅を少し小さく */
    }

    .asset-benefits__grid>div:nth-child(2) img {
        width: 300px;
        /* 画像の表示幅も合わせる */
    }

    /* テキスト列内のアイテム間の隙間も調整 */
    .asset-benefits__grid>div:nth-child(1),
    .asset-benefits__grid>div:nth-child(3) {
        /* ネストdiv対応 */
        gap: 20px;
    }
}

@media screen and (max-width: 767px) {
    .asset-process .container {
        padding-left: 15px;
        padding-bottom: 41px;
        padding-right: 15px;
    }

    .asset-process__explain {
        text-align: justify;
    }

    /* スマホでは縦線を中央に */
    .asset-process__steps::before {
        bottom: 100px;
    }

    .process-step {
        padding-left: 80px;
    }

    .process-step__number {
        top: -30px;
        left: 0px;
        font-size: 1.2rem;
        /* top: 0; */
    }

    .process-step__icon {
        left: 0;
        top: 30px;
    }

    .asset-benefits__grid {
        margin-top: 0;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    /* 各列（今は縦に積まれたブロック）の設定 */
    .asset-benefits__grid>div {
        flex-basis: auto;
        /* flexの基準幅リセット */
        width: 100%;
        /* 幅を100%に */
        max-width: 400px;
        /* でも最大幅は指定して読みやすく */
    }

    /* 画像列の調整 */
    .asset-benefits__grid>div:nth-child(2) {
        order: -1;
        width: auto;
        max-width: 300px;
        margin-bottom: 20px;
    }

    .asset-benefits__grid>div:nth-child(2) img {
        width: 100%;
        /* 画像自体の幅はコンテナに合わせる */
        max-width: 300px;
        /* ただし最大幅は指定 */
    }

    /* テキスト列内のアイテム間隔 */
    .asset-benefits__grid>div:nth-child(1),
    .asset-benefits__grid>div:nth-child(3) {
        gap: 25px;
        /* 縦の隙間を維持 */
    }

    .asset-support__grid {
        padding-bottom: 20px;
        grid-template-columns: 1fr;
    }
}

/* ----- 4. 料金について ----- */

.asset-pricing-content {
    font-size: var(--f5);
    text-align: center;
}

.asset-pricing .asset-pricing__image {
    display: block;
    height: auto;
    margin: 65px auto 0;
}

.asset-pricing .asset-pricing__image img {
    width: 45%;
    border-radius: 3%;
}

.asset-pricing .asset-pricing p {
    text-align: center;
    margin-bottom: 1.5em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.asset-pricing p:nth-child(1) {
    margin-bottom: 15px;
}

.asset-pricing p.asset-pricing-explain {
    margin-top: 14px;
}

@media screen and (max-width: 1350px) {
    .asset-pricing .container {
        position: static;
    }

    .asset-pricing__image {
        position: static;
        display: block;
        margin: 41px auto 0;
    }
}

@media screen and (max-width: 767px) {
    .asset-pricing .container {
        padding: 50px 25px 25px 25px;
    }

    .asset-pricing p {
        text-align: justify;
    }

    .asset-pricing p.asset-pricing-explain {
        line-height: 1.5;
    }

    .asset-pricing .asset-pricing__image img {
        width: 69%;
        border-radius: 3%;
    }

}

/* ----- 5. よくあるご質問 (FAQ) ----- */
.faq-item {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #eee;
}

.faq-item__q {
    /* h3 */
    font-size: 1.2rem;
    color: var(--subColor, #12372a);
    margin-bottom: 10px;
    position: relative;
    padding-left: 2em;
    /* Q用スペース */
}

.faq-item__q::before {
    content: 'Q.';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--red);
    font-weight: bold;
}


.faq-item__a {
    /* p */
    font-size: 1rem;
    line-height: 1.7;
    color: var(--textColor, #6e6d6d);
    margin: 0;
    padding-left: 2em;
    /* Qと揃える */
}

@media screen and (max-width: 767px) {
    .asset-faq .container {
        padding-bottom: 70px;
    }

    h3.faq-item__q {
        margin-bottom: 25px;
        font-size: 1.2rem;
        text-align: justify;
        letter-spacing: -1px;
        line-height: 1.4;
    }

    .container>.faq-item:nth-child(5) {
        margin-bottom: 0;
    }

}

