@charset "UTF-8";

.before_after_parts {
    display: flex;
    justify-content: space-between;
}
.img_wrap {
    width: 48%;
}
.before_img {
    position: relative;
    width: 100%;
}
.before_img:after {
    position: absolute;
    content: "before";
    top: 1rem;
    left: 1rem;
    background: #fff;
    font-weight: 700;
    padding: 0.5rem;
    width: 70px;
    text-align: center;
}
.after_img {
    position: relative;
    width: 100%;
    margin-top: 2rem;
}
.after_img:after {
    position: absolute;
    content: "after";
    top: 1rem;
    left: 1rem;
    background: #fff;
    font-weight: 700;
    padding: 0.5rem;
    width: 70px;
    text-align: center;
}
.before_img img, .after_img img {
    object-fit: cover;
}
.textarea {
    width: 48%;
}
.textarea h3 {
    font-size: 2.4rem;
}
.textarea .date {
    text-align: right;
    font-size: 1.4rem;
}
.textarea p {
    margin-top: 2rem;
}
.sp_ttl {
    display: none;
}
.sp_date {
    display: none;
}

@media screen and (max-width: 768px) {
.before_after_parts {
    display: block;
}
.img_wrap {
    width: 100%;
    margin-top: 1rem;
}
.textarea {
    width: 100%;
    margin-top: 2rem;
}
.textarea h3 {
    display: none;
}
.textarea .date {
    display: none;
}
.sp_ttl {
    display: block;
    font-size: 2.4rem;
}
.sp_date {
    display: block;
    text-align: right;
    font-size: 1.4rem;
}
}