.faq {

    h1 {
        position: relative;
        text-align: center;
        background-color: rgb(245, 225, 187);

        font-weight: bold;
        font-family: 'Shippori Mincho', serif;
        font-size: 18px;

        color: rgb(31, 45, 61);
        /* header ネイビーブルー */

        padding: 12px;
        margin: 0 -18px 16px;

        @media (width <=767px) {
            margin: 0 -14px 16px;
        }

        &::before {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 8px;
            width: 8px;
            height: 100%;
            background-color: rgb(31, 45, 61);
        }
    }

    .faq-intro {
        line-height: 1.8;
        margin-bottom: 3rem;
    }

    .faq-category {
        margin-bottom: 3rem;


        h2 {
            position: relative;
            font-size: 18px;
            font-weight: bold;
            margin-top: 32px;
            margin-bottom: 16px;
            padding-left: 12px;

            text-decoration-style: wavy;

            /* 文字と線の距離 */
            &::before {
                content: "";
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                width: 6px;
                height: 70%;
                background: rgb(255, 128, 0);
                /* ctaボタンカラー オレンジ */
                border-radius: 3px;
            }
        }

        .faq-item {
            background: #fff;
            border: 1px solid #ccc;
            border-radius: 8px;
            padding: 1rem 1.2rem;
            margin-bottom: 1rem;

            h3 {
                margin-bottom: 0.5rem;
                font-size: 1rem;
                font-weight: 600;
                color: #111827;
            }

            p {
                margin: 0;
                line-height: 1.6;
                color: #333;
            }
        }
    }

    @media (width <=768px) {
        padding: 2rem 1rem;
    }

    .section-btn-wrap {
        p {
            margin-bottom: 24px;
        }
    }
}