@charset "utf-8";

.faqList {
    margin: 0 0 10px 0;
}

.faqList:last-child {
    margin: 0;
}

.accordionBtn {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.questionBox {
    padding: 15px 3%;
    transition: all .3s;
    background: rgb(54, 104, 153);
    background: radial-gradient(circle, rgba(54, 104, 153, .5) 0%, rgba(15, 50, 84, .8) 100%);
}

.questionBox:hover {
    opacity: .7;
    transition: all .3s;
}

.faqIcon01 {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 30px;
    width: 100%;
    height: 30px;
    margin: 0 2% 0 0;
    border-radius: 50%;
    border: 1px solid #fff;
    font-family: "Marcellus", serif;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0;
    white-space: nowrap;
}

.question {
    width: 100%;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1.5em;
}

.answerBox {
    display: none;
}

.answerInBox {
    display: flex;
    align-items: flex-start;
    padding: 10px 3% 0;
}

.faqIcon02 {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 30px;
    width: 100%;
    height: 30px;
    margin: 0 2% 0 0;
    border-radius: 50%;
    border: 1px solid #fff;
    font-family: "Cormorant Garamond", system-ui;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0;
    white-space: nowrap;
}

.answer {
    width: 100%;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1.5em;
}

.answer>a {
    display: inline-block;
}

.faqList {
    overflow: hidden;
}

.accordionIcon {
    position: relative;
    width: 100%;
    max-width: 20px;
    height: 20px;
    margin: 0 0 0 5%;
}

.accordionIconItem01 {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 20px;
    height: 2px;
    background-color: #fff;
    top: 50%;
    transform: rotate(0deg);
}

.accordionIconItem02 {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 20px;
    height: 2px;
    background-color: #fff;
    top: 50%;
    transform: rotate(90deg);
    transition: all .3s;
}

.accordionIcon.active>.accordionIconItem01 {
    display: none;
}

.accordionIcon.active>.accordionIconItem02 {
    top: 50%;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transition: all .3s;
}

@media screen and (min-width:768px) {

    .answerInBox {
        align-items: center;
    }

    .faqIcon01,
    .faqIcon02 {
        max-width: 40px;
        height: 40px;
        padding: 0 0 4px 0;
        font-size: 20px;
    }

}

@media screen and (min-width:1024px) {

    .faqList {
        margin: 0 0 20px 0;
    }

    .faqList:last-child {
        margin: 0;
    }

    .answerInBox {
        padding: 20px 3% 0;
    }

    .faqIcon01,
    .faqIcon02 {
        max-width: 60px;
        height: 60px;
        padding: 0 0 4px 0;
        font-size: 40px;
    }

}