@charset "utf-8";

/* faq_section */
.faq_list {
    display: flex;
    flex-wrap: wrap;
}
.faq_item {
    width: 50%;
    padding: 8px;
    box-sizing: border-box;
}
.faq_accordion {
    background-color: #FFF;
}
.faq_accordion summary {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 16px 16px 16px 48px;
    border-radius: 5px;
    background-color: #EFF9FA;
    cursor: pointer;
    transition: .4s;
}
.faq_accordion[open] summary {
    color: #FFF;
    background-color: #5FC1C7;
}
.faq_accordion summary::before {
    content: "Q";
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 16px;
    color: #FFF;
    background-color: #1D4763;
}
.faq_accordion summary::-webkit-details-marker {
    display: none;
}
.faq_accordion summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-bottom: 1px solid #1D4763;
    border-right: 1px solid #1D4763;
    content: '';
    transition: transform .3s;
}
.faq_accordion[open] summary::after {
    transform: rotate(225deg);
    border-color: #FFF;
}
.faq_accordion p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 16px 16px 16px 48px;
    color: #1d4763;
    transition: .4s;
}
.faq_accordion p::after {
    content: "A";
    position: absolute;
    top: 12px;
    left: 8px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 16px;
    color: #FFF;
    background-color: #C75F5F;
}
.faq_accordion[open] p {
    transform: none;
    opacity: 1;
}
.faq_btn {
    text-align: center;
}
.faq_item a {
    color: inherit;
    text-decoration: underline;
    transition: .4s;
}
.faq_item a:hover {
    color: #5FC1C7;
}
/* faq_sectionここまで */

/* レスポンシブ */
@media screen and (max-width: 1024px) {

}
@media screen and (max-width: 599px) {

}
/* レスポンシブここまで */