/* FANZA Movie FAQ Block Styles */
.fanza-movie-faq {
    margin: 2em 0;
}

.fanza-movie-faq-heading {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 1em;
    color: #333;
}

.fanza-movie-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75em;
}

.fanza-movie-faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.fanza-movie-faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fanza-movie-faq-item[open] {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.fanza-movie-faq-question {
    font-weight: bold;
    font-size: 1.1em;
    padding: 1em 1.2em;
    color: #333;
    background-color: #f8f9fa;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
}

.fanza-movie-faq-question::-webkit-details-marker {
    display: none;
}

.fanza-movie-faq-question-text {
    flex: 1;
}

.fanza-movie-faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
    transform: rotate(90deg);
}

.fanza-movie-faq-item[open] .fanza-movie-faq-icon {
    transform: rotate(-90deg);
}

.fanza-movie-faq-item[open] .fanza-movie-faq-question {
    background-color: #e9ecef;
    border-bottom: 1px solid #e0e0e0;
}

.fanza-movie-faq-question:hover {
    background-color: #e9ecef;
}

.fanza-movie-faq-answer {
    padding: 1.2em 1.2em;
    color: #555;
    line-height: 1.8;
    background-color: #ffffff;
}

.fanza-movie-faq-answer p {
    margin: 0;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .fanza-movie-faq-heading {
        font-size: 1.3em;
    }
    
    .fanza-movie-faq-question {
        font-size: 1em;
        padding: 0.9em 1em;
        padding-right: 2.5em;
    }
    
    .fanza-movie-faq-answer {
        padding: 1em;
        font-size: 0.95em;
    }
    
}
