@charset "utf-8";
.top_page {
    margin-bottom: 0;
    overflow: hidden;
}
.owner_itemWrap {
    background-color: #F9F9F9;
    padding: 1.875rem 0;
    margin-bottom: 7.5rem;
    position: relative;
}
.owner_itemWrap::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: -1000px;
    width: 1000px;
    background: #F9F9F9;
}
.owner_itemWrap::after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    right: -1000px;
    width: 1000px;
    z-index: -1;
    background: #F9F9F9;
}
.owner_comment {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 7.5rem;
}
.owner_comment:nth-child(2n+1) {
    flex-direction: row-reverse;
}
.owner_comment:last-child {
    margin-bottom: 0;
}
.owner_comment_text {
    max-width: 60%;
    width: 100%;
}
.contents_inner_title {
    line-height: 1.5;
}
.contents_text {
    text-align: left;
    line-height: 2;
}
.contents_img {
    max-width: 40%;
    width: 100%;
    margin: 0 auto;
}


@media screen and (max-width: 768px) {
}


@media screen and (max-width: 480px) {
    .owner_itemWrap {
        margin-bottom: 4rem;
    }
    .owner_comment {
        flex-wrap: wrap;
        padding: 0 1.25rem;
        gap: 0;
    }
    .owner_comment_text {
        max-width: 100%;
    }
    .contents_inner_title {
        font-size: 1.25rem;
    }
    .contents_text {
        padding: 0;
    }
    .contents_img {
        max-width: 100%;
    }
}