/* よくあるご質問ページ専用スタイル */

/* FAQセクション */
.faq {
    background-color: #EDEDEA;
    min-height: 100vh;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: 24px;
}

/* FAQ Item */
.faq-item {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 16px;
    padding: 0 16px 24px;
    border-bottom: 1px solid #CCCCCC;
}

.faq-item:last-child {
    border-bottom: none;
}

.title-section {
    padding: 16px 16px 35px !important;
}

body > section.faq > div > div > div.title-section > div > h1.main-title.title24 {
    font-weight: 700 !important;
}
/* FAQ Question */
.faq-question {
    display: flex;
    flex-direction: row;
    align-self: stretch;
    gap: 8px;
}

/* FAQ Answer */
.faq-answer {
    display: flex;
    flex-direction: row;
    align-self: stretch;
    gap: 8px;
}

/* FAQ Label (Q. / A.) */
.faq-label {
    font-family: 'YuMincho', serif;
    font-weight: 800;
    font-size: 16px;
    line-height: 1.3;
    color: #B10100;
    width: 20px;
    flex-shrink: 0;
    padding: 2px;
}

/* FAQ Text */
.faq-text {
    font-family: 'YuGothic', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
    flex: 1;
}

.faq-text-answer {
    font-family: 'YuGothic', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.05rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
    flex: 1;
}
/* タブレット表示 */
@media (min-width: 768px) {
    .faq-list {
        gap: 32px;
    }
    
    .faq-item {
        gap: 20px;
        padding: 0 24px 32px;
    }
    
    .faq-question,
    .faq-answer {
        gap: 12px;
    }
    
    .faq-label {
        font-size: 18px;
        width: 24px;
    }
    
    .faq-text {
        font-size: 18px;
    }
}

/* デスクトップ表示 */
@media (min-width: 1024px) {
    .faq-list {
        gap: 40px;
    }
    
    .faq-item {
        gap: 24px;
        padding: 0 24px 40px;
    }
    
    .faq-question,
    .faq-answer {
        gap: 16px;
    }
    
    .faq-label {
        font-size: 20px;
        width: 28px;
    }
    
    .faq-text {
        font-size: 18px;
    }
}

/* アクセシビリティ */
@media (prefers-reduced-motion: reduce) {
    .faq-item {
        transition: none;
    }
}

/* 高コントラストモード対応 */
@media (prefers-contrast: high) {
    .faq-text {
        color: #000000;
    }
    
    .faq-label {
        font-weight: 900;
    }
}

