@charset "utf-8";

.faq__txt {
    color: #2F4B25;
    font-family: "Hina Mincho";
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.9;
    margin: 30px 6.8% 0;
}

.faq {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.faq__content {
    margin: 30px 6.8% 0;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background: #F5F5F5;
}

.faq__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    position: relative;
}

.faq__item::after{
    display: block;
    border-bottom: 0.5px solid #D9D9D9;
    content: "";
    position: absolute;
    width: 100%;
    bottom: -15px;
}

.faq__item:last-of-type::after {
    display: none;
}

.faq__mark {
    color:#2F4B25;
    font-family: "Zen Old Mincho";
    font-size: 19px;
    font-weight: 500;
    line-height: 23px;
}

.faq__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.faq__question {
    text-align: start;
    color: #2F4B25;
    font-size: 1.6rem;
    font-weight: 350;
    line-height: 1.5;
}

.faq__answer {
    text-align: start;
    margin: 0;
    color: #96A78F;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 350;
    line-height: 1.6;
}

/* menu pc */
@media screen and (min-width: 769px) {


    .faq__content {
        gap: 80px;
        padding: 50px;
        align-items: flex-start;
        margin: 0 14%;
    }

    .faq__txt {
        font-size: 2.4rem;
        line-height: 2;
        font-weight: 400;
        padding: 70px 20.8% 40px;
        margin: 0px;
    }

    .faq__question {
        font-size: 2.2rem;
        font-weight: 400;
        line-height: 1; /* 100% */ 
    }

    .faq__mark {
        font-size: 2.2rem;
        font-weight: 500;
        line-height: 1;
    }

    .faq__answer {
        color: #96A78F;
        font-size: 2rem;
        font-weight: 400;
    }
}