/* ========================================
   FAQ ページスタイル
   ======================================== */
.faq_wrap {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 100px;
}

.faq-item {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.faq-summary {
    padding: 20px 15px 20px 10px !important;
    border-top: none !important;
    border-radius: 10px;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.2em;
    flex-shrink: 0;
}

.q-icon {
    width: 45px;
	margin: 0;
}

.a-icon {
	width: 45px;
	margin: 0;
	padding-top: 25px;
}

.faq-text {
    font-size: 1em;
    line-height: 1.6;
    font-weight: 500;
}

.faq-answer {
	color: var(--color-navy);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 10px 25px !important;
	background-color: rgba(255, 255, 255, 0.7);
}

.faq-answer .faq-icon {
    margin-top: 0;
}

.faq-answer-text {
    flex: 1;
}

.faq-answer-text p {
    font-size: 0.95em;
    line-height: 1.8;
    margin: 0 0 15px;
}

.square_arrow {
	color: var(--color-pink);
	background-color: #fff;
	padding: 0 3px;
	margin-right: 5px;
	margin-left: 5px;
}

.faq_notes {
	font-size: 0.85em !important;
	line-height: 1.7 !important;
	margin: 0 0 7px !important;
}

.bg_important {
	background-color: var(--color-light-yellow);
	padding-right: 7px;
	padding-left: 7px;
	padding-bottom: 1px;
}

.faq-answer-text p:last-child {
    margin-bottom: 0;
}

.faq-answer-text ul {
    margin: 10px 0 15px 20px;
    padding: 0;
}

.faq-answer-text ul li {
    font-size: 0.95em;
    line-height: 1.8;
    margin-bottom: 5px;
    list-style: disc;
}

.faq-answer-text a {
    color: var(--color-pink);
    text-decoration: underline;
	font-weight: 500;
}

.faq-answer-text a:hover {
    text-decoration: none;
}

.faq-answer-text strong {
    color: var(--color-yellow);
}

.faq-answer-text .dl01 {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	width: 100%;
	margin: 30px 0 0;
}

.faq-answer-text .dl01 dt {
	font-size: 0.9em;
    line-height: 1.8;
	color: #fff;
	text-align: center;
	background-color: var(--color-light-navy);
	margin: 0 10px 10px 0;
	padding: 0 10px 1px;
	width: 100px;
}

.faq-answer-text .dl01 dd {
	font-size: 0.95em;
    line-height: 1.8;
	flex: 1;
	text-align: left;
	margin: 0 0 10px 0;
	padding: 0 10px 1px;
}


/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .faq-icon {
        width: 32px;
        height: 32px;
        font-size: 1em;
    }

    .faq-question {
        gap: 10px;
    }

    .faq-answer {
        gap: 10px;
    }

    .faq-summary {
        padding: 15px 10px !important;
    }
	
	.a-icon {
    margin: 0;
    padding-top: 35px;
}
}

@media screen and (max-width: 640px) {
.faq-answer-text .dl01 {
    display: flex;
    flex-direction: column;
}

.faq-answer-text .dl01 dd {
    flex: 1;
    text-align: left;
    margin: 0 0 10px 0;
    padding: 0 0 1px;
}
}
