.search_block {
    width: 90%;
    margin: 100px auto 0;
    max-width: 1300px;
}

.search_block .text_search {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.search_block .text_search input {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    padding: 0 25px 0 60px;
    background-color: #f1f5ff;
    border: solid 1.5px #007260;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
}

.search_block .text_search input::placeholder {
    font-weight: 700;
    color: #929292;
}

.search_block .text_search button {
    width: 26px;
    height: 26px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    margin: auto;
    background-image: url(../img/btn_search2.svg);
    background-size: 100% 100%;
}

.search_block .category_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    gap: 15px 12px;
}

.search_block .category_list label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    height: 34px;
    border-radius: 7px;
    background-color: white;
    border: solid 1px #007260;
    position: relative;
    transition: all 0.3s;
}

.search_block .category_list label:has(input:checked) {
    background-color: #007260;
}

.search_block .category_list label input {
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.search_block .category_list label p {
    font-size: 14px;
    color: #007260;
    transition: all 0.3s;
}

.search_block .category_list label:has(input:checked) p {
    color: white;
}

.search_block .toggle_btn {
    display: none;
}

.report_list {
    max-width: 1300px;
    width: 90%;
    display: flex;
    margin: 115px auto 0;
    gap: 60px 3.8%;
    flex-wrap: wrap;
}

.report_list .report {
    position: relative;
    width: calc(92.4% / 3);
}

/* .report_list .report::before {
    content: "";
    width: calc(100% + 40px);
    height: calc(100% + 45px);
    border-radius: 20px;
    background-color: white;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
}
.report_list .report:hover::before {
    opacity: 0.5;
} */

.report_list .report .img_box {
    width: 100%;
    aspect-ratio: 400/225;
    position: relative;
}

.report_list .report .img_box .detail_img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border-bottom-right-radius: 32.5% 57.78%;
    overflow: hidden;
}

.report_list .report .img_box .detail_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}
.report_list .report:hover .img_box .detail_img img {
    /* transform: scale(1.2); */
    opacity: 0.6;
}

.report_list .report .img_box .arrow {
    width: 20%;
    aspect-ratio: 80/78;
    position: absolute;
    bottom: 0;
    right: 0;
    background-size: 100% 100%;
    background-position: bottom right;
    background-image: url(../img/arrow_bg_report.svg);
}

.report_list .report .img_box .arrow img {
    width: 7.5%;
    position: absolute;
    right: 12.96%;
    bottom: 20.88%;
    transition: all 0.3s;
}
.report_list .report:hover .img_box .arrow img {
    right: 5%;
}

.report_list .report .report_content {
    position: relative;
}

.report_list .report .info_wrap .genre {
    display: inline-flex;
    align-items: center;
    height: 22px;
    border-radius: 4.5px;
    border: solid 1.5px #007260;
    background-color: #cce3df;
    padding: 0 8px;
    font-size: 12px;
    color: #007260;
}

.report_list .report .item_content {
    margin-top: 20px;
    position: relative;
}

.report_list .report .item_content .detail_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.report_list .report .detail_info .genre_wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.report_list .report .detail_info .genre_wrap .genre {
    display: flex;
    align-items: center;
    height: 22px;
    border-radius: 4.5px;
    border: solid 1.5px #007260;
    background-color: #cce3df;
    padding: 0 8px;
    font-size: 12px;
    color: #007260;
}

.report_list .report .detail_info .genre_wrap .status {
    font-size: 20px;
    line-height: 1;
}

.report_list .report .detail_info .genre_wrap .status.new {
    color: #ca1d25;
}

.report_list .report .detail_info .genre_wrap .status.pickup {
    color: #007260;
}

.report_list .report .detail_info .date {
    font-size: 14px;
    line-height: 1;
    color: #808080;
}

.report_list .report .ttl {
    font-size: 18px;
    line-height: 28px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 15px;
}

.report_list .report .keyword {
    display: flex;
    align-items: center;
    gap: 5px 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.report_list .report .keyword p {
    font-size: 14px;
    line-height: 1;
    color: #007260;
}

.btn_block {
    display: flex;
    justify-content: center;
    max-width: 1300px;
    width: 90%;
    margin: 120px auto 0;
}

.btn_block .link_btn {
    display: flex;
    gap: 20px;
}

.btn_block .link_btn a {
    width: 380px;
    height: 170px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding-left: 55px;
    background-color: #f1f5f9;
    box-shadow: 5px 5px 5px rgba(138, 163, 212, 0.5);
    background-repeat: no-repeat;
}

.btn_block .link_btn a.lb01 {
    background-image: url(../img/report_btn_illust01.svg);
    background-size: 25.26%;
    background-position: bottom right 25px;
}
.btn_block .link_btn a.lb02 {
    background-image: url(../img/report_btn_illust02.svg);
    background-size: 33.42%;
    background-position: bottom right;
}

.btn_block .link_btn a p {
    font-size: 22px;
    line-height: 32px;
    color: #007260;
}

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

@media screen and (max-width: 1000px) {
    .btn_block .link_btn {
        width: 100%;
    }

    .btn_block .link_btn a {
        width: calc(calc(100% - 20px) / 2);
        height: auto;
        aspect-ratio: 380/170;
        padding-left: 55px;
        max-width: 380px;
    }
}

@media screen and (max-width: 750px) {
    .search_block {
        margin-top: 30px;
    }

    .search_block .category_list {
        gap: 12px;
        justify-content: flex-start;
    }

    .search_block .toggle_btn {
        width: 120px;
        display: block;
        margin: 10px auto 0;
    }

    .search_block .toggle_btn img {
        width: 100%;
    }

    .search_block .toggle_btn .close_btn {
        display: none;
    }

    .report_list {
        margin: 40px auto 0;
        gap: 40px 3.8%;
    }

    .report_list .report {
        width: calc(96.2% / 2);
    }

    .report_list .report .item_content {
        margin-top: 15px;
    }

    .report_list .report .item_content .detail_info {
        flex-flow: column-reverse;
        gap: 5px;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .report_list .report .ttl {
        font-size: 16px;
        line-height: 20px;
    }

    .btn_block {
        margin: 65px auto 0;
    }

    .btn_block .link_btn {
        gap: 10px;
        justify-content: center;
    }

    .btn_block .link_btn a {
        width: calc(calc(100% - 10px) / 2);
        aspect-ratio: auto;
        height: 80px;
        border-radius: 14px;
        padding-left: 25px;
        max-width: 200px;
    }

    .btn_block .link_btn a.lb01 {
        background-image: url(../img/report_btn_illust01_sp.svg);
        background-size: 115px;
        background-position: bottom right -14px;
    }
    .btn_block .link_btn a.lb02 {
        background-image: url(../img/report_btn_illust02_sp.svg);
        background-size: 115px;
        background-position: bottom right -12px;
    }

    .btn_block .link_btn a p {
        font-size: 13px;
        line-height: 19px;
        width: 100%;
    }
}
