/* ================================================
   FAQ Page Styles
   元サイト faq.html のインライン <style> を移設したもの。
   移植時にこのページのCSSが抜け落ちていたため復元した。
   ================================================ */

body {
    background: #0F1214;
    color: #FFFFFF;
}

.faq-hero {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.faq-hero .hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.faq-hero .hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.faq-section {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(11, 255, 183, 0.3);
    transform: translateY(-2px);
}

.faq-item h2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0BFFB7;
    margin-bottom: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-item h2::before {
    content: 'Q';
    display: inline-block;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #12ce96, #0bffb7);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-item p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    padding-left: 42px;
}

.faq-cta {
    text-align: center;
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.faq-cta-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.faq-cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .faq-hero {
        padding: 120px 0 60px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-item {
        padding: 2rem 1.5rem;
    }

    .faq-item h2 {
        font-size: 1.1rem;
    }

    .faq-item p {
        font-size: 0.95rem;
        padding-left: 0;
        margin-top: 0.75rem;
    }

    .faq-item h2::before {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .faq-cta {
        padding: 60px 0;
    }
}
