/* -----------------------------------------------FAQ */

.faq {
    padding: 64px 20px 100px;
}

.faq_inner {
    max-width: 820px;
    margin: 0 auto;
}

.faq_title {
    margin-bottom: 80px;
    text-align: center;
}

.faq_title h1 {
    margin-bottom: 48px;
    color: #002b65;
    font-size: 2.5rem;
    font-weight: bold;
}

.faq_title p {
    font-size: 0.8125rem;
}

.faq_section {
    margin-bottom: 56px;
}

.faq_section h2 {
    padding-bottom: 10px;
    border-bottom: 1px solid #555;
    font-size: 1.375rem;
    font-weight: bold;
}

.faq_item {
    padding: 40px 20px 0;
}

.faq_item dt,
.faq_item dd {
    position: relative;
    padding-left: 28px;
    font-size: 0.875rem;
    line-height: 2;
}

.faq_item dt {
    margin-bottom: 8px;
}

.faq_item dd {
    padding-bottom: 12px;
}

.faq_item dt::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "Q：";
}

.faq_item dd::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "A：";
}

.faq_contact {
    margin-top: 60px;
    text-align: center;
}

.faq_contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 350px;
    width: 100%;
    min-height: 56px;
    border-radius: 100px;
    background-color: #1684df;
    color: #fff;
    font-size: 0.875rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
    .faq_contact a:hover {
        opacity: 0.75;
    }
}

@media (hover: none) {
    .faq_contact a:active {
        opacity: 0.75;
    }
}

@media screen and (max-width:767px) {

    /* -----------------------------------------------FAQ */

    .faq {
        padding: 40px 16px 64px;
    }

    .faq_title {
        margin-bottom: 56px;
    }

    .faq_title h1 {
        margin-bottom: 32px;
        font-size: 1.625rem;
    }

    .faq_title p {
        font-size: 0.75rem;
    }

    .faq_section {
        margin-bottom: 48px;
    }

    .faq_section h2 {
        font-size: 1.1875rem;
    }

    .faq_item {
        padding: 20px 0 0;
    }

    .faq_item dt,
    .faq_item dd {
        padding-left: 26px;
        font-size: 0.8125rem;
        line-height: 1.9;
    }

    .faq_contact {
        margin-top: 48px;
    }
}