/* FAQコンテンツの初期化（JSで動かすため、CSSでのtransitionは一切行わない） */
.faq-content {
    /* インラインスタイルで初期値を書いているため、ここは空でも良い */
    will-change: height, opacity;
}

/* アウトラインテキスト（他セクション共通） */
.stroke-text {
    -webkit-text-stroke: 1.5px #1e40af;
    color: transparent;
}

/* 背景文字の薄さ */
#faq-bg-text {
    color: #f8fafc;
}

/* ホバー時の背景変化のみCSSで */
.faq-module {
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.faq-module:hover {
    background-color: #ffffff;
}


