/* ==========================================
   FAQ CSS
   ========================================== */
/* --- レイアウト構造 --- */
.content-wrapper { 
	margin: 30px auto; 
	max-width: 1000px; 
	padding: 0 15px;
}
/* コンテンツ全体のコンテナ */
.faq-content {
    padding: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.faq-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    line-height: 1.4;
    font-size: 1.0rem;
}

.faq-item {
    padding: 8px 0;
    margin-left: 10px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    overflow: hidden;
}

.faq-question {
    padding: 0 10px !important;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none !important;
    transition: background 0.3s;
}

.faq-question:hover { background: #fcfcfc; }

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--accent-blue);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    background: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}


/* --- レスポンシブ調整（スマホ 768px以下） --- */
@media (max-width: 768px) {

}

