@charset "utf-8";
.section-service_list {
    margin: 0 auto;
    max-width: 1040px;
    padding-left: 0;
}
.section-service_list-item {
    display: flex;
    margin-bottom: 120px;
}
.section-service_list-item:last-child {
    margin-bottom: 140px;
}
.section-service_card {
    flex:1;
    background-image: url(../images/texture.jpg);
    width: 410px;
    min-height: 500px;
}
.section-service_image {
    flex: 1;
    width: 630px;
    height: 500px;
}
.section-service_service-name {
    font-size: 3rem;
    padding: 60px 0 40px;
    margin-top: 0;
}
.decoration-text {
    text-align: right;
    padding: 45px 30px 0 0;
    color: #7c7c3e;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center; /* 垂直中心 */
    justify-content: flex-end; /* 水平中心 */
}
.decoration-text::before {
    background-color: #7c7c3e; /* 横線の色 */
    content: "";
    height: 1px; /* 横線の高さ */
    width: 50px; /* 横線の長さ */
    margin: 10px;
}
.section-service_service-description {
    text-align: left;
    line-height: 1.8;
    width: 310px;
    margin: 0 auto;
}
@media(max-width:1040px) {
    .section-service_list {
        max-width: 375px;
        padding: 0;
    }
    .section-service_list-item {
        flex-direction: column-reverse;
        margin-bottom: 40px;
    }
    .section-service_list-item:last-child {
        margin-bottom: 60px;
    }
    .section-service_image {
        flex: 1;
        width: 325px;
        height: auto;
        margin: 0 auto;
    }
    .section-service_card {
        max-width: 325px;
        min-height: 315px;
        margin: 0 auto;
    }
    .section-service_service-name {
        font-size: 1.8rem;
        padding: 15px 0;
    }
    .decoration-text {
        text-align: right;
        padding-top: 0;
        color: #7c7c3e;
        font-size: 1.2rem;
        display: flex;
        align-items: center; /* 垂直中心 */
        justify-content: flex-end; /* 水平中心 */
    }
    .decoration-text::before {
        background-color: #7c7c3e; /* 横線の色 */
        content: "";
        height: 1px; /* 横線の高さ */
        width: 50px; /* 横線の長さ */
        margin: 10px;
    }
    .section-service_service-description {
        text-align: left;
        max-width: 290px;
        line-height: 1.8;
        padding-bottom: 40px;
        
    }
}