.elementor-1368 .elementor-element.elementor-element-6ef752e{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1368 .elementor-element.elementor-element-8183b9f{--display:flex;--padding-top:0px;--padding-bottom:100px;--padding-left:0px;--padding-right:0px;}@media(max-width:767px){.elementor-1368 .elementor-element.elementor-element-8183b9f{--padding-top:0px;--padding-bottom:40px;--padding-left:20px;--padding-right:20px;}}/* Start custom CSS for html, class: .elementor-element-3863202 *//* --- 全体設定 --- */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif !important;
}

/* カテゴリ見出し：ゴシック体 ＆ 上部に大きな隙間 */
.faq-category-title {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif !important;
    font-size: 24px;
    font-weight: 800;
    color: #184c7d;
    /* 上に80pxの隙間、下に30pxの隙間 */
    margin: 80px 0 30px 0; 
    padding: 5px 0 5px 20px;
    border-left: 6px solid #184c7d;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

/* 最初の見出しだけは、ページ最上部に来る場合を考えて隙間を調整（任意） */
.faq-category-title:first-of-type {
    margin-top: 40px;
}

/* FAQアイテムの基本構造 */
.faq-item {
    margin-bottom: 15px;
    border-radius: 40px; 
    overflow: hidden;
    background-color: #f6f6f6;
}

/* --- 質問部分（Q） --- */
.faq-question {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 18px 35px;
    background-color: #e2eff3;
    position: relative;
    z-index: 2;
    border-radius: 40px;
}

.faq-item[open] .faq-question {
    border-radius: 40px 40px 0 0;
}

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

/* --- 回答部分（A） --- */
.faq-answer {
    display: flex;
    padding: 25px 35px 35px;
    background-color: #f6f6f6;
    border-radius: 0 0 40px 40px;
    animation: faq-fadeIn 0.4s ease-out;
}

@keyframes faq-fadeIn {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- アイコンとテキスト --- */
.faq-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.faq-icon.q { background-color: #184c7d; }
.faq-icon.a { background-color: #b33e54; }

.faq-text {
    font-family: inherit !important;
    margin: 0;
    color: #333;
    line-height: 1.6;
    font-weight: 600;
    font-size: 18px;
}

/* --- トグル記号 --- */
.faq-toggle {
    position: absolute;
    right: 35px;
    width: 20px;
    height: 2px;
    background-color: #184c7d;
}

.faq-toggle::after {
    content: "";
    position: absolute;
    width: 100%; height: 100%;
    background-color: #184c7d;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-toggle::after { transform: rotate(0deg); }

/* --- レスポンシブ設定 --- */
@media (max-width: 768px) {
    .faq-category-title { 
        font-size: 20px !important; 
        margin: 50px 0 20px 0; /* スマホ時は少し隙間を縮める */
        padding-left: 15px;
    }
    .faq-item, .faq-question { border-radius: 10px; }
    .faq-item[open] .faq-question { border-radius: 10px 10px 0 0; }
    .faq-answer { border-radius: 0 0 10px 10px; padding: 20px; }
    .faq-question { padding: 12px 50px 12px 15px; }
    .faq-question .faq-text { font-size: 16px !important; }
    .faq-answer .faq-text { font-size: 14px !important; font-weight: 500; }
    .faq-icon { width: 32px; height: 32px; font-size: 16px; margin-right: 12px; }
    .faq-toggle { right: 20px; width: 16px; }
}/* End custom CSS */