.archive-surveys_wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 共通 */
.orange {
    color: #E48F45;
}

.result_design-line {
    border: #E48F45 2px solid;
    border-radius: 5px;
    margin: 5px 0 30px;
}

.archive-surveys_wrapper section {
    margin-bottom: 70px;
}

/* 抜き打ち調査結果 */
.section_result {
    padding-top: 50px;
}

.result_banner_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.result_banner_area {
    width: 49%;
    text-align: center;
    margin-bottom: 20px;
}

.result_banner {
    width: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result_banner:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.result_banner_link img {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
}

.result_banner_badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF5656;
    line-height: 1.3rem;
    color: white;
    padding: 24px 14px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.result_banner:hover .result_banner_badge {
    transform: translateY(-5px);
}

.banner_title {
    font-weight: bold;
    padding-top: 10px;
}

@media screen and (max-width: 678px) {
    .result_banner_wrapper {
        display: block
    }

    .result_banner_area {
        width: 100%;
        max-width: 420px;
        margin: 0 auto 20px;
    }
}

/* 過去の調査結果 */
.old-result {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.old-result li {
    background: linear-gradient(to right, #E48F45 20px, #FFF6EC 20px);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    padding: 20px 100px 20px 120px;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.old-result li:hover {
    transform: scale(1.05);
}


/* レンタル会社別調査レポート */
.service_report {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service_report li {
    background-color: #ffffff;
    border-radius: 15px;
    width: 270px;
    position: relative;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}

.service_report_img {
    width: 100%;
    border-radius: 15px 15px 0 0;
}

.list-inner {
    padding: 20px;
}

.service-name {
    padding-bottom: 5px;
    font-weight: bold;
}

.service-name_detail {
    font-size: 0.8em;
}

.detail_btn {
    display: block;
    text-align: center;
    width: 100%;
    border: #333 1px solid;
    padding: 5px;
    margin-top: 20px;
    border-radius: 100px;
    font-size: 0.8em;
}

.detail_btn:hover {
    background-color: #f2f1f1;
}

@media screen and (max-width: 900px) {
    .ranking_top-three {
        display: block;
        margin: 0 auto;
    }

    .ranking_top-three li {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 30px;
    }
}