.faq {
    padding-top: 30px;
    padding-bottom: 80px;
}

.page-title.page-title__faq {
    font-family: "Noto Sans JP";
    font-weight: var(--font-weight-light);
}

.faq__category {
    margin-bottom: 45px;
}

.faq__category--pc {
    display: none;
}

.faq__select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url(../images/home/shop_list/area_select.svg);
    background-repeat: no-repeat;
    background-size: 10px 5.74px;
    background-position: right 20px center;
    width: 315px;
    height: 50px;
    border: solid 1px #cccccc;
    padding-left: 20px;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: var(--font-size-base);
    background-color: var(--color-white);
    margin: auto;
    cursor: pointer;
}

/* FAQアコーディオン */

.faq__asked--title {
    font-size: var(--font-size-xl);
    text-align: center;
    margin-bottom: 24px;
    font-family: "Noto Sans JP", sans-serif;
}

.faq__list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.faq__item {
    margin-bottom: 10px;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.faq__question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 10px;
    padding-bottom: 23px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.faq__question-content {
    display: flex;
    align-items: flex-start;
    flex: 1;
    gap: 10px;
}

.faq__icon {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    padding-top: 3px;
}

.faq__icon img {
    display: block;
}

.faq__text {
    flex: 1;
}

.faq__text ul {
    list-style: disc;
    padding-left: 1em;
}

.faq__question .faq__text p {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    line-height: 26px;
}

.faq__text p {
    margin: 0;
    font-size: var(--font-size-base);
    line-height: 30px;
}

.faq__toggle {
    flex-shrink: 0;
    padding-top: 3px;
}

.faq__item.active .faq__toggle {
    padding-top: 0px;
}


.faq__toggle-icon {
    transition: opacity 0.2s ease;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    background-color: #fff;
}

.faq__answer-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 5px 10px 31px;
}

/* タブレット以上 */
@media (min-width: 768px) {
    .faq {
        padding-top: 30px;
        padding-bottom: 100px;
    }

    .faq__toggle {
        padding-top: 8px;
    }

    .faq__item.active .faq__toggle {
        padding-top: 2px;
    }
}

/* デスクトップ以上 */
@media (min-width: 1024px) {
    .faq__category {
        margin-bottom: 95px;
    }

    .faq__category--pc {
        display: block;
    }

    .faq__category--sp {
        display: none;
    }

    .faq__category--title {
        text-align: center;
        font-size: var(--font-size-3xl);
        margin-bottom: 45px;
        font-weight: var(--font-weight-light);
    }

    .faq__category--list {
        display: flex;
        width: fit-content;
        justify-content: center;
        flex-wrap: wrap;
        margin-right: auto;
        margin-left: auto;
        gap: 10px;
    }

    .faq__category--list::after {
        content: "";
        width: 292px;
        height: 60px;
        display: block;
    }

    .faq__category--item {
        background-color: var(--color-primary);
        width: 292px;
        height: 60px;
        border-radius: 5px;
    }

    .faq__category--link {
        color: var(--color-white);
        display: flex;
        justify-content: start;
        align-items: center;
        width: 100%;
        height: 100%;
        position: relative;
        padding-left: 20px;
        transition: all .5s;
        font-size: 14px;
    }

    .faq__category--link:hover {
        opacity: 0.7;
    }

    .faq__category--link::after {
        content: "";
        background-image: url(../images/common/faq_icon.svg);
        width: 20px;
        height: 20px;
        background-position: center;
        background-size: contain;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* FAQアコーディオン */

    .faq__asked--title {
        font-size: var(--font-size-3xl);
        margin-bottom: 45px;
        font-weight: var(--font-weight-light);
    }


    .faq__question {
        padding-top: 10px;
        padding-left: 10px;
        padding-bottom: 10px;
        padding-right: 30px;
        gap: unset;
        justify-content: space-between;
    }


    .faq__question-content {
        gap: 20px;
        align-items: center;
    }

    .faq__icon {
        width: 40px;
        height: 40px;
    }

    .faq__answer-content {
        padding-top: 30px;
        padding-bottom: 44px;
        padding-left: 10px;
        padding-right: 80px;
        gap: 20px;
    }

}