﻿/* faq.css */

/* 全体の背景色と文字色をダークモードに */
body {
    background-color: #121212; /* 暗めのグレー（ほぼ黒） */
    color: #FFFFFF; /* 明るいグレー */
    font-family: sans-serif;
}

.faq-container {
    width: 960px; /* ★変更箇所：ページの幅を960pxに固定 */
    margin: 20px auto;
}

.faq-title {
    font-size: 2em;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 30px;
}

.category-heading {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    padding-bottom: 5px;
}

.faq-item {
    border-bottom: 1px solid #444;
    padding: 15px 0;
}

.question {
    font-weight: bold;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.question::before {
    content: "Q.";
    font-weight: bold;
    color: #3296ff;
}

.answer {
    display: none;
    padding: 10px 0 0 25px;
    line-height: 1.6;
    color: #FFFFFF;
    transition: all 0.3s ease-in-out;
}

.answer::before {
    content: "A.";
    font-weight: bold;
    color: #00c8c8;
    margin-right: 5px;
}

a {
    color: #3296ff;
}