/* ページ内リンク */
.pc {
    display: block;
}

.sp {
    display: none !important;
}

@media screen and (max-width:900px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }
}

.faq {
    .l-mv {
        background-image: url(../../images/faq/mv-bg_pc.jpg);
        background-position: top;
    }

    p {
        line-height: 2;
    }

    @media screen and (max-width: 768px) {
        .l-mv {
            background-image: url(../../images/faq/mv-bg_sp.jpg);
        }
    }

    .page-title {
        margin-bottom: 120px;
    }

    .entry-content-nav {
        display: flex;
        justify-content: center;
        gap: 36px;

        @media screen and (max-width:498px) {
            display: block;
            margin-left: 0;
        }

        li {
            list-style: none;
            width: 40%;

            @media screen and (max-width:498px) {
                width: 90%;
                margin: 30px auto;
            }

            a {
                display: block;
                background-color: #F5FAFD;
                color: #0E4D8F;
                border-radius: 20px;
                text-align: center;
                padding: 15px;
                font-size: 22px;
                text-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
                box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
                background-image: url(../../images/faq/button_arrow.png);
                background-repeat: no-repeat;
                background-position: 95% center;
            }
        }
    }

    .entry-content h2 {
        margin: 90px 0 30px;
        border-bottom: 1px #AAAAAA solid;
        padding-bottom: 15px;

        @media screen and (max-width:498px) {
            margin: 60px 0 30px;
        }
    }

    .entry-content h3 {
        border-bottom: none !important;
        margin-bottom: 60px;
    }

    .entry-content p {
        margin-bottom: 0;
        line-height: 2;
    }

    .work_about_message {
        display: flex;
        justify-content: space-between;
        align-items: center;

        img {
            width: 25%;
        }

        p {
            width: 70%;
            padding: 10px 0;
        }
    }

    .work_about_wrap {
        display: flex;
        justify-content: space-between;
        margin-top: 60px;
    }

    .work_about_single {
        /* background-color: #fcc; */
        width: 48%;
    }

    .about_single_wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;

        img {
            width: 20%;
        }

        p {
            width: 75%;

            @media screen and (max-width:498px) {
                font-size: 16px !important;
            }
        }
    }

    h4 {
        font-size: 20px;
        color: #0C4B8E;
    }

    .people_wrap img,
    .envi_wrap img {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);

    }

    .people_wrap,
    .envi_wrap {
        margin-top: 60px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .people_single,
    .envi_single {
        width: 48%;
        margin-bottom: 30px;
    }

    .people_single_bottom {
        width: 100%;
        margin-bottom: 30px;
    }

    @media screen and (max-width:498px) {
        .work_about_message {
            display: block;

            img,
            p {
                width: 100%;
            }
        }

        .work_about_wrap {
            display: block;
        }

        .work_about_single {
            width: 100%;
        }

        .people_wrap,
        .envi_wrap {
            display: block;
        }

        .people_single,
        .envi_single {
            width: 100%;
        }
    }

}