    /* ==========================================================================
    FAQ一覧ページ用：メインエリアの余白調整
    ========================================================================== */
    .faq-page-main {
        padding: 20px 20px 0 20px; /* 下側の余白をゼロにしてフッターと近づけます */
        width: clamp(400px, 70vw, 1200px);
        margin: 0 auto;
    }

    /* タイトルと説明文のブラウザ初期マージンをリセットしてきれいに詰める */
    .faq-page-main h1 {
        font-size: 1.75rem;
        text-align: center;
        margin: 20px 0 10px 0; /* 上下に余計な広が白が出ないように固定 */
    }

    .faq-page-main p {
        font-size: clamp(14px, 2vw, 23.2px);
        text-align: center; 
        color: #666; 
        margin: 0 0 20px 0; /* 下の「ご質問一覧」との間隔を狭く調整 */
    }

    footer.faq-section {
        background-color: #f9f9f9;
        padding: 40px 20px;
        border-top: 1px solid #ddd;
    }
    .faq-container {
        width: clamp(400px, 70vw, 1200px);
        margin: 0 auto;
    }
    .faq-section h2 {
        font-size: clamp(14px, 2vw, 23.2px);
        margin-bottom: 20px;
        border-bottom: 2px solid #0066cc;
        padding-bottom: 8px;
    }
    /* アコーディオン全体のスタイル */
    .faq-item {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 4px;
        margin-bottom: 12px;
        overflow: hidden;
    }
    /* 質問部分（クリックできるエリア） */
    .faq-q {
        font-family: inherit;
        font-weight: bold;
        padding: 15px;
        cursor: pointer;
        outline: none;
        background-color: #fff;
        transition: background-color 0.2s;
        list-style: none;
        display: flex; 
        width: 100%;
        box-sizing: border-box;
        justify-content: flex-start;
        text-align: left;
        font-size: clamp(12px, 1.3vw, 20.2px);			
    }
    .faq-q::-webkit-details-marker {
        display: none;
    }
    .faq-q:hover {
        background-color: #f2f7fc;
    }
    .faq-q::before {
        content: "Q.";
        color: #0066cc;
        margin-right: 8px;
        flex-shrink: 0;
    }
    
    /* 回答部分全体の枠組み */
    .faq-a {
        font-family: inherit;
        padding: 15px;
        border-top: 1px solid #eee;
        background: #fafafa;
        margin: 0;
        display: flex; 
        justify-content: flex-start;
    }
    /* 回答文の先頭に「A.」を配置 */
    .faq-a::before {
        content: "A.";
        font-weight: bold;
        color: #e65c00;
        margin-right: 8px;
        flex-shrink: 0;
    }

    /* テキストと画像を縦に並べるためのコンテナ */
    .faq-a-content {
        display: flex;
        flex-direction: column; /* 上下に並べる */
        gap: 12px; /* テキストと画像の間のすき間 */
        width: 100%;
    }

    /* 【修正】回答内のテキストの余白をなくし、完全に左詰めにする */
    .faq-a-text {
        font-family: inherit;
        font-size: clamp(18px, 1.7vw, 23.2px);
        margin: 0;
        padding: 0;
        text-align: left;
        width: 100%;
    }

    /* 回答内の画像用 */
    .faq-a-img {
        max-width: 100%; 
        height: auto;
        display: block;
        border-radius: 4px; 
        border: 1px solid #eee; 
    }
        /* 【追加】ボタンを中央配置するためのコンテナ */
    .faq-more-container {
        text-align: center;
        margin-top: 25px;
    }

    /* 【追加】「もっと見る」ボタンのスタイル */
    .faq-more-btn {
        display: inline-block;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.95rem;
        color: #0066cc; /* ボタンの文字色 */
        background-color: #fff; /* ボタンの背景色 */
        border: 2px solid #0066cc; /* ボタンの枠線 */
        padding: 12px 40px;
        border-radius: 50px; /* 角を丸くしてカプセル型にする */
        transition: all 0.3s ease; /* マウスを乗せたときのアニメーション */
    }

    /* 【追加】ボタンにマウスを乗せたときの見た目 */
    .faq-more-btn:hover {
        color: #fff; /* 文字色を白に反転 */
        background-color: #0066cc; /* 背景色を青に反転 */
        box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2); /* ほんのり影をつける */
    }

    /* 【追加】お問い合わせ案内エリアのスタイル */
    .faq-contact-box {
        margin-top: 20px;
        padding: 30px;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        text-align: center;
    }
    .faq-contact-title {
        font-size: 1.15rem;
        font-weight: bold;
        margin-bottom: 10px;
        color: #111;
    }
    .faq-contact-text {
        font-size: 0.9rem;
        color: #666;
        margin: 0 0 20px 0;
    }

/* お問い合わせボタン */
.faq-contact-btn {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
    background-color: #333;
    padding: 14px 50px;
    border-radius: 50px; /* 角を丸くする */
    transition: all 0.3s ease;
    margin-left: 20px;
}

    .faq-contact-btn:hover {
        background-color: #0066cc;
        box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    }
/*----------------------------------------------------------------------------
モバイル用設定（ｐｘ以下）
---------------------------------------------------------------------------*/
@media screen and (max-width:1024px) {
    /* お問い合わせボタン */
    .faq-contact-btn {
        margin-left: 0px;
        margin-top: 20px;
    }

    /* 質問部分（クリックできるエリア） */
    .faq-q {
        font-family: inherit;
        font-weight: bold;
        padding: 15px;
        cursor: pointer;
        outline: none;
        background-color: #fff;
        transition: background-color 0.2s;
        list-style: none;
        display: flex; 
        width: 100%;
        box-sizing: border-box;
        justify-content: flex-start;
        text-align: left;
        font-size: clamp(14px, 1.3vw, 20.2px);			
    }
}