#report_wrapper {
    .text_red {
        color: #e60012;
    }

    /* head */
    .report_head {
        text-align: center;
        font-weight: 600;
        font-size: 2.8vw;
    }

    .report_head span {
        color: #e60012;
    }

    /* explanation */
    #report_explanation {
        h3 {
            color: #fff;
            background-color: #e60012;
            border-radius: 40px;
            font-size: 1.6vw;
            padding: 6px 0;
            text-align: center;
            margin-bottom: 26px;
        }

        p {
            font-weight: 500;
            text-align: left;
        }
    }

    /* report_img_wrapper */
    .report_img_wrapper {
        margin-bottom: 50px;
    }

    .report_img_wrapper {
        h3 {
            text-align: center;
            font-weight: 500;
            font-size: 1.8vw;
        }

        .col {
            margin-bottom: 20px;
        }

        .colBox {
            margin-top: 20px;
        }

        .colBox .img {
            border-radius: 0px;
        }

        .colBox .col img {
            border: 1px #d3d3d3 solid;
        }

        .loupe_block {
            display: flex;
        }

        .loupe_block img {
            width: 26px;
            object-fit: cover;
            margin-right: 10px;
        }

        .loupe_block p {
            font-weight: 600;
        }
    }

    /* report_list */
    #report_list {
        margin-bottom: 40px;
    }

    #report_list {
        ol {
            display: grid;
            grid-auto-flow: column;
            grid-template-rows: repeat(
                <?php echo ceil($count_list / 2) ; ?>,
                auto
            );
            grid-template-columns: 1fr 1fr;
        }

        li {
            position: relative;
            padding: 0 10px;
        }

        dl {
            margin-bottom: 20px;
        }

        dt {
            color: #e60012;
            margin-bottom: 10px;
        }

        dd {
        }
    }

    .report_list_num {
        padding: 5px 10px;
        font-family: "Roboto";
        font-size: 1rem;
        line-height: 1.3125;
        color: #fff;
        background-color: #e60012;
        border-radius: 2px;
        margin-right: 10px;
    }

    /* not_necessary_report_wrapper */
    #not_necessary_report_wrapper {
        background-color: #fff0dc;
        border-radius: 20px;
        padding: 10px;
    }

    #not_necessary_report_wrapper {
        .top_block {
            display: flex;
            width: fit-content;
            margin: 0 auto 20px;
            align-items: center;
            padding-top: 20px;
        }

        .top_block p {
            font-size: clamp(1rem, calc(1.2rem + 0.225vw), 1.6rem);
            font-weight: 600;
        }

        .top_block p:nth-child(3) {
            color: #e60012;
            font-size: clamp(1.2rem, calc(1.4rem + 0.225vw), 2rem);
            border-bottom: 6px #e60012 solid;
            width: fit-content;
        }

        .top_block img {
            width: 10vw;
        }

        .top_text {
            margin-left: 10px;
        }

        .top_text_flex {
            display: flex;
        }

        .bottom_block {
            padding: 0 10px;
            font-size: clamp(0.8rem, calc(0.7rem + 0.225vw), 1.2rem);
            font-weight: 500;
            margin-bottom: 10px;
        }

        .caution_block {
            padding: 0 10px;
            font-size: clamp(0.6rem, calc(0.5rem + 0.225vw), 1rem);
            font-weight: 500;
            margin-bottom: 20px;
        }
    }
}

/* SP */
@media (max-width: 767px) {
    #report_wrapper {
        /* head */
        .report_head {
            font-size: 4.6vw;
        }

        /* explanation */
        #report_explanation {
            h3 {
                font-size: 3vw;
                margin-bottom: 18px;
            }

            p {
                font-size: 2.6vw;
            }
        }

        /* report_img_wrapper */
        .report_img_wrapper {
            h3 {
                font-size: 3.6vw;
            }
        }

        /* report_list */
        #report_list {
            ol {
                display: block;
            }
        }

        #not_necessary_report_wrapper {
            .top_block {
                margin: 0 10px 20px;
                padding-top: 20px;
                justify-content: space-between;
                width: auto;
            }

            .top_block p {
                font-size: clamp(3vw, calc(4vw), 6vw);
            }

            .top_block p:nth-child(3) {
                font-size: clamp(4.4vw, calc(4.6vw), 6vw);
            }

            .top_block img {
                width: 20vw;
            }

            .top_text_flex {
                display: block;
            }

            .bottom_block {
            }

            .caution_block {
            }
        }
    }
}
