@charset "UTF-8";

/* faq */
.faq {
    padding: 90px 0;
}

.faq-list {
    width: 810px;
    margin: 20px auto 0;
}

.faq-box {
    border-bottom: 1px solid #f5f5f5;
    padding: 20px 0;
}

.faq-box:last-child {
    border: none;
}

.faq-box:first-child .acc-cnt {
    display: block;
}

.faq-q,
.faq-a {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
    line-height: 1.7;
}

.faq-q::before,
.faq-a::before {
    display: block;
    width: 30px;
    text-align: center;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 36px;
    font-weight: bold;
}

.faq-q::before {
    content: "Q";
    color: #f69b81;
    transform: translateY(4px);
}

.faq-a::before {
    content: "A";
    color: #ed582d;
    transform: translateY(6px);
}

.faq-q::after {
    content: "";
    display: block;
    background-image: url('/tanomu/faq/assets/images/pc/faq_icon_plus.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    transition: all 0.3s;
}

.active .faq-q::after {
    background-image: url('/tanomu/faq/assets/images/pc/faq_icon_minus.svg');
}

.faq-q-txt {
    width: 720px;
    font-size: 20px;
    font-weight: bold;
}

.faq-a-txt {
    width: 760px;
    font-size: 16px;
    color: #383838;
    margin-top: 20px;
}

.faq-a-txt .accent {
    font-weight: bold;
}

.faq-a-txt a {
    text-decoration: underline;
}

.faq-a-txt a:hover {
    text-decoration: none;
}

.faq .cv-tel-head {
    background-color: #fff;
}

@media (max-width: 1200px) {
    .faq {
        padding: calc(90vw / 1100 * 100) 0;
    }

    .faq-list {
        width: calc(810vw / 1100 * 100);
        margin: calc(20vw / 1100 * 100) auto 0;
    }

    .faq-box {
        border-bottom: calc(1vw / 1100 * 100) solid #f5f5f5;
        padding: calc(20vw / 1100 * 100) 0;
    }

    .faq-q::before,
    .faq-a::before {
        width: calc(30vw / 1100 * 100);
        font-size: calc(36vw / 1100 * 100);
    }

    .faq-q::before {
        transform: translateY(calc(4vw / 1100 * 100));
    }

    .faq-a::before {
        transform: translateY(calc(6vw / 1100 * 100));
    }

    .faq-q::after {
        width: calc(20vw / 1100 * 100);
        height: calc(20vw / 1100 * 100);
    }

    .faq-q-txt {
        width: calc(720vw / 1100 * 100);
        font-size: calc(20vw / 1100 * 100);
    }

    .faq-a-txt {
        width: calc(760vw / 1100 * 100);
        font-size: calc(16vw / 1100 * 100);
        margin-top: calc(20vw / 1100 * 100);
    }
}

@media (max-width: 750px) {
    .faq {
        padding: calc(110vw / 750 * 100) 0;
    }

    .faq-list {
        width: 100%;
        margin-top: calc(45vw / 750 * 100);
    }

    .faq-box {
        padding: calc(10vw / 750 * 100) 0 calc(30vw / 750 * 100);
    }

    .faq-q::before,
    .faq-a::before {
        width: calc(56vw / 750 * 100);
        font-size: calc(45vw / 750 * 100);
    }

    .faq-q::before {
        transform: translate(calc(-12vw / 750 * 100), calc(2vw / 750 * 100));
    }

    .faq-a::before {
        transform: translate(calc(-12vw / 750 * 100), calc(2vw / 750 * 100));
    }

    .faq-q::after {
        width: calc(35vw / 750 * 100);
        height: calc(35vw / 750 * 100);
        margin-left: calc(15vw / 750 * 100);
        transform: translateY(calc(7vw / 750 * 100));
    }

    .faq-q-txt {
        width: calc(550vw / 750 * 100);
        font-size: calc(28vw / 750 * 100);
    }

    .faq-a-txt {
        width: calc(616vw / 750 * 100);
        font-size: calc(26vw / 750 * 100);
        margin-top: calc(55vw / 750 * 100);
    }
}