/* ==================== FAQページ固有スタイル ==================== */

.faq-container {
    padding: 0;
}

/* FAQヒーロー */
.faq-hero {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 2px;
}

.faq-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 5px;
    opacity: 0.9;
}

/* FAQコンテンツ */
.faq-content {
    padding: 80px 0;
    background-color: #fffbf0;
}

.faq-content .inner {
    max-width: 900px;
}

.faq-intro {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-bottom: 50px;
    border-top: 4px solid #f59e0b;
}

.faq-intro p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.faq-intro a {
    color: #d97706;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.faq-intro a:hover {
    color: #f59e0b;
}

/* カテゴリー */
.faq-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #d97706;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f59e0b;
}

/* FAQ項目 */
.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.q-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding-top: 3px;
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    padding-left: 10px;
}

.a-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #fff;
    border: 2px solid #f59e0b;
    color: #f59e0b;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    line-height: 26px;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
    padding-top: 3px;
}

.faq-answer a {
    color: #d97706;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.faq-answer a:hover {
    color: #f59e0b;
}

/* お問い合わせセクション */
.faq-contact {
    background: linear-gradient(135deg, #fffbf0, #fff);
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid #f59e0b;
    margin-top: 60px;
}

.faq-contact h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d97706;
    margin-bottom: 15px;
}

.faq-contact p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.contact-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(217, 119, 6, 0.4);
}

/* 戻るリンク */
.back-link {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #d97706;
    border: 2px solid #d97706;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #d97706;
    color: #fff;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .faq-hero {
        padding: 60px 20px;
    }

    .faq-hero h1 {
        font-size: 2.2rem;
    }

    .faq-hero-subtitle {
        font-size: 1rem;
    }

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

    .faq-intro {
        padding: 25px;
        margin-bottom: 40px;
    }

    .faq-category {
        margin-bottom: 40px;
    }

    .category-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .faq-item {
        padding: 25px;
        margin-bottom: 15px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .faq-contact {
        padding: 35px 25px;
    }

    .faq-contact h3 {
        font-size: 1.3rem;
    }

    .contact-button {
        padding: 12px 35px;
        font-size: 0.95rem;
    }

    .back-link {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}
