@charset "utf-8";
/*―――――――――――――――――――――――――――――――――――――――
Theme Name: Specialized WordPress Theme
Theme URI: https://www.theboysandgirls.jp/
Description: The Boys&Girls のテーマ
Version: 1.0
Author: The Boys&Girls
Author URI: https://www.theboysandgirls.jp/
Copyright: Copyright(C) www.theboysandgirls.jp All Rights Reserved.
―――――――――――――――――――――――――――――――――――――――*/
/* FAQセクションの基本スタイル */
.qa-section-title {
    font-size: 1.8em;
    color: #c0392b; /* 重要なセクションであることを示す色 */
    border-bottom: 2px solid #f39c12;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* 個々のFAQアイテム（detailsタグ）のスタイル */
.qa-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #ffffff;
}

/* 質問部分（summaryタグ）のスタイル */
.qa-question {
    padding: 12px;
    cursor: pointer;
    background-color: #f7f7f7;
    border-radius: 5px;
    position: relative;
    /* 開閉アイコンの調整（ブラウザのデフォルトを使用） */
}

.qa-question:hover {
    background-color: #eee;
}

/* 回答部分（detailsの中身）のスタイル */
.qa-answer {
    padding: 10px 15px 15px;
    border-top: 1px solid #e0e0e0;
}

.qa-answer p {
    margin-top: 0;
}
