@charset "UTF-8";
/*****************
ご利用ガイドページCSS
*****************/

/*　▼▼よくある質問▼▼　*/
div.content-faq {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    width: 100%;
    margin: 1em auto;
}

div.content-faq h2 {
    width: 100%;
    text-align: center;
    margin: 4em 0 2em;
}
.list-faq
{
    width: 100%;
    max-width: 1000px;
    margin: 1em auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
    justify-content: flex-start;
    align-items: flex-end;
    }

ul.list-faq a {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

ul.list-faq li {
    width: calc(95% / 4);
    border-bottom: 1px solid;
    padding: .6em 1em;
    margin: .6em 0;
}

ul.list-faq li a:after {
    content: "";
    display: inline-block;
    width: .6em;
    height: .6em;
    border: 2px solid #777;
    border-right: none;
    border-bottom: none;
    rotate: 135deg;
    margin-top: 4px;
}
.accordion-faq {
    margin-bottom: 7px;
    border-bottom: 1px solid #ababab;
}

.accordion-faq summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.accordion-faq summary::-webkit-details-marker {
    display: none;
}

.accordion-faq summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .3s;
}

.accordion-faq[open] summary::after {
    transform: rotate(225deg);
}

.accordion-faq p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
    line-height: 2em;
}

.accordion-faq[open] p {
    transform: none;
    opacity: 1;
}
details.accordion-faq p a {
    color: chocolate;
    font-weight: 600;
    display: block;
    margin-top: .4em;
    text-decoration: underline;
}

details.accordion-faq p a:before {
    content: "";
    display: inline-block;
    width: .5em;
    height: .5em;
    border: 2px solid;
    rotate: 45deg;
    border-bottom: none;
    border-left: none;
    margin-right: .4em;
}