.about_wrapper {
    padding-bottom: 80px;
}

.about_top-area {
    background-color: #FFF6EC;
}

.about_top-area p {
    padding: 50px 15px 0;
    font-size: clamp(22px, 2vw, 32px);
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}

.about_red {
    color: #FF5656;
}

.about_top-area img {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 0 auto;
}

.about_item-area {
    padding: 70px 15px 0;
}

.about_item {
    width: 100%;
    max-width: 860px;
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0 auto;
    padding-bottom: 40px;
}

.about_item:nth-child(odd) {
    flex-direction: row-reverse;
}

.about_item:nth-child(even) {
    flex-direction: row;
}

.about_item_title {
    font-weight: bold;
    font-size: 1.3rem;
}

.about_design-line {
    border: #F4A737 1px solid;
    margin: 15px 0;
}

.about_item img {
    display: block;
    width: 45%;
}

@media screen and (max-width: 768px) {
    .about_top-area {
        width: 100% max-width:;
    }

    .about_item {
        display: block;
        max-width: 550px;
    }

    .about_item_title {
        text-align: center;
    }

    .about_item img {
        width: 100%;
        max-width: 300px;
        padding-bottom: 30px;
        margin: 0 auto;
    }
}

.section_shikumi {
    width: 100%;
    height: fit-content;
    background-image: url('/wp-content/themes/tantei2025/assets/images/shikumi_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 40px;
}

.section_shikumi h4 {
    font-weight: bold;
    padding-top: 40px;
    text-align: center;
    font-size: clamp(18px, 2vw, 28px);
}

.shikumi_img_yoko {
    display: block;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 0 30px;
}

.shikumi_img_tate {
    display: none;
}

@media screen and (max-width: 768px) {
    .shikumi_img_tate {
        display: block;
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
        padding: 10px 0;
    }

    .shikumi_img_yoko {
        display: none;
    }

}

.section_cta {
    background-color: #FFCA00;
    padding: 30px 15px;
}

.cta_title {
    text-align: center;
    font-weight: bold;
    font-size: clamp(18px, 2vw, 28px);
}

.cta_text {
    font-size: 12px;
    text-align: center;
}

.cta_btn_area {
    display: flex;
    gap: 20px;
    margin: 0 auto;
    justify-content: center;
    padding: 30px 15px;
}

.cta_btn {
    display: flex;
    gap: 15px;
    background-color: #fff;
    width: 100%;
    max-width: 300px;
    font-weight: bold;
    align-items: center;
    padding: 13px 0;
    border-radius: 30px;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
    transition: transform 0.2s ease;
}

.cta_btn:hover {
    transform: scale(1.05);
}

.cta_btn img {
    width: 25px;
}

@media screen and (max-width: 580px) {
    .cta_btn_area {
        display: block;
        padding: 10px 15px;
    }

    .cta_btn {
        margin: 10px auto;
    }

}