.section-title-middle {
    color: #0E62A9;
    padding-left: 1rem;
}

.sp-only {
    display: none;
}

/* Q&Aコンテナ */
.qa-container {
    width: 57vw;
    margin: 0 auto;
    text-align: center;
}

.qa-container .section-title{
    margin-bottom: 3rem;
}

/* Q&Aタイトルアイコン */ 
.qa-container .section-title::before {
    content: url('../.././images/title-icon/qa.png');
    display: block;
    line-height: 0;
}

/* セクションスタイル */
.qa-section {
    margin-bottom: 40px;
    text-align: left;
}

/* アコーディオン */
.accordion-item {
    border-bottom: 1px solid #222222;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 1rem;
    cursor: pointer;
    text-align: left;
    position: relative;
}

.q-icon::before {
    content: "Q";
    color: white;
    font-family: 'Arial';
}

.q-icon {
    width: 24px;
    height: 24px;
    background: #0E62A9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.a-icon::before {
    content: "A";
    color: #0E62A9;
    font-family: 'Arial';
}

.a-icon {
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    border: 1px solid #0E62A9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1rem;
    flex-shrink: 0;
}

.question {
    flex-grow: 1;
    font-size: 1.125rem;
    font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;;
    font-weight: 400;
    line-height: 24.52px;
    padding-right: 1.5rem;
    color: #222222;
}

.toggle-icon {
    position: absolute;
    right: 20px;
    width: 20px;
    height: 20px;
}

.toggle-icon::before,
.toggle-icon::after {
    content: '';
    position: absolute;
    background: #0E62A9;
}

.toggle-icon::before {
    width: 2px;
    height: 20px;
    left: 9px;
    top: 0;
}

.toggle-icon::after {
    width: 20px;
    height: 2px;
    left: 0;
    top: 9px;
}

.accordion-item.active .toggle-icon::before {
    transform: rotate(90deg);
}

.accordion-content {
    border-top: 1px dotted #222222;
    padding: 1.5rem ;
    display: none;
    text-align: left;
}

.accordion-content p {
    margin-bottom: 1rem;
}

.accordion-item.active .accordion-content {
    display: flex;
}

/* お問い合わせセクション */
.contact-section {
    background: #ECF5FC;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
}

/* コンタクトタイトルアイコン */ 
.contact-section .section-title::before {
    content: url('../.././images/title-icon/mail.png');
    margin-right: 1rem;
}

.contact-section .section-title,p {
    margin-bottom: 3rem;
	font-size: 1.2rem;
}

.link-button:hover {
    background: #0052a3;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .qa-container .section-title::before,
    .contact-section .section-title::before {
        display: block;
        margin: 0 auto 1rem;
    }

    .section-title-middle {
        margin-bottom: 0;
    }

    .qa-container {
        margin: 0 auto;
        width: 85vw;
    }

    .accordion-header {
        align-items: flex-start;
    }

    .contact-section {
        padding: 3rem ;
    }

    .contact-section .section-title,p {
        margin-bottom: 2rem;
    }

    .sp-only {
        display: block;
    }
}

@media (max-width: 480px) {
    .q-icon, .a-icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }

    .link-button {
        margin: 2rem auto;
        display: block;
        min-width: 180px;
        max-width: 350px;
        width: 100%;
    }
	.question {
    font-size: 1rem;
}
}