main {
    letter-spacing: .14em;
    margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
    main {
        margin-bottom: 80px;
    }
}
section {
    max-width: 1250px;
    margin: 0 auto;
}
@media screen and (max-width: 1180px) {
    .br_none {
        display: none;
    }
}


/* #page_title
---------------------------------------- */
@media screen and (min-width: 1271px) {
    #page_title {
        /*padding-top: 20px;*/
    }
}
.page_title_container {
    display: flex;
}
.page_title_text {
    width: 32%;
    background: url(../images/common/renewal/mortar_gray.png);
    color: #212121;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 40px;
}
.page_title_text h2 {
    font-size: 24px;
}
.page_title_text span {
    display: block;
    font-size: 14px;
}

.page_title_text p {
    display: block;
    margin-top: 20px;
    font-size: 18px;
}
.page_title_image {
    width: 68%;
}
.page_title_image img {
    display: block;
    width: 100%;
}

@media screen and (min-width: 801px) {
    .page_title_container {
        height: 400px;
    }
    .page_title_image img {
        height: 100%;
        object-fit: cover;
    }
}
@media screen and (max-width: 800px) {
    .page_title_container {
        flex-direction: column-reverse;
        aspect-ratio: 1 / 1;
    }
    .page_title_text,
    .page_title_image {
        width: 100%;
    }
    .page_title_text {
        align-items: flex-start;
        aspect-ratio: 2 / .6;
        padding: 25px;
    }
    .page_title_text h2 {
        font-size: 23px;
    }
    .page_title_text span {
        margin-top: -3px;
    }
    .page_title_text p {
        margin-top: 10px;
        font-size: 17px;
    }
}
@media screen and (max-width: 414px) {
    .page_title_text {
        padding: 20px 30px;
    }
}

/* スライダー */
.swiper-container {
    height: 100%;
}
.mv-button-next,
.mv-button-prev {
    width: 33px;
    height: 33px;
    background: url(../images/common/top/mv_arrow.svg) no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all .2s;
}
.mv-button-next {
    right: 0;
}
.mv-button-prev {
    left: 0;
    transform: rotate(180deg);
}
.mv-button-next:hover,
.mv-button-prev:hover {
    opacity: .7;
}
.swiper-button-next.swiper-button-disabled, 
.swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: text;
    pointer-events: unset;
}
.swiper-button-prev:after, 
.swiper-container-rtl .swiper-button-next:after {
    content: '';
}
.swiper-button-next:after, 
.swiper-container-rtl 
.swiper-button-prev:after {
    content: '';
}

/*swiper ページネーション（■ のところ）*/
.mv-slider .swiper-pagination {
    text-align: right;
    left: unset;
    right: 15px;
}
.mv-slider.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 5px;
}
.mv-slider .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: unset;
    background: #fff;
    opacity: .3;
    margin: 0 1px;
}
.mv-slider.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 1px;
}
.mv-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

@media screen and (max-width: 800px) {
    .mv-button-next,
    .mv-button-prev {
        width: 28px;
        height: 28px;
    }
}

@media screen and (max-width: 1339px) {
    .mv-button-next {
        right: 0;
    }
    .mv-button-prev {
        left: 0;
    }
}

/* --- PCとSPの出し分け設定 --- */
.pc_only_visual {
    display: none;
}
.sp_only_visual {
    display: block;
}
@media screen and (min-width: 801px) {
    .pc_only_visual {
        display: block;
        height: 100%;
    }
    .sp_only_visual {
        display: none;
    }
}

/* #renewal_intro
---------------------------------------- */
.renewal_intro {
    margin-top: 70px;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.renewal_intro_container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.renewal_intro_left {
    width: 30%;
    padding-right: 25px;
}

.renewal_intro_left h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    color: #212121;
}

.renewal_intro_right {
    width: 70%;
    padding-left: 45px;
    border-left: 2px solid #EBEAE9;
}

.renewal_intro_right p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 2em;
    color: #333;
    text-align: justify;
}

.renewal_intro_right p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
    .renewal_intro {
        padding-inline: 20px;
    }
}

/* --- スマホ表示（800px以下） --- */
@media screen and (max-width: 800px) {
    .renewal_intro {
        margin-top: 40px;
        margin-bottom: 50px;
        padding: 0 25px;
    }

    .renewal_intro_container {
        flex-direction: column;

        background: #fff;
    }

    .renewal_intro_left {
        width: 100%;
        padding-right: 0;
        padding-bottom: 20px;
        border-right: none;
        margin-bottom: 25px;
        position: relative;
    }
    
    .renewal_intro_left::after {
        content: "";
        display: block;
        width: 110px;
        height: 2px;
        background: #EBEAE9;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .renewal_intro_left h3 {
        font-size: 22px;
    }

    .renewal_intro_right {
        width: 100%;
        padding-left: 0;
        border: none;
    }

    .renewal_intro_right p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 1.5em;
    }
}
@media screen and (max-width: 1110px) {
    .nobr_1110 {
        display: none;
    }
}
@media screen and (max-width: 930px) {
    .nobr_930 {
        display: none;
    }
}

/* #renewal_details
---------------------------------------- */
#renewal_details {
    max-width: 1250px;
    margin: 0 auto;
    background-color: #EBEAE9;
    letter-spacing: 1px;
}

.details_block {
    display: flex;
    align-items: stretch;
}

.details_block.reverse {
    flex-direction: row-reverse;
}

.details_text, .details_image {
    width: 50%;
    position: relative;
}

.details_text {
    padding: 7% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.details_block.reverse .details_text {
    padding: 5%;
}

.details_text h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 38px;
    line-height: 1.4;
    letter-spacing: 0.1em;
}

.details_text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1.5em;
    text-align: justify;
}

.details_text p:last-child {
    margin-bottom: 0;
}

.details_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- スマホ表示（800px以下） --- */
@media screen and (max-width: 800px) {

    .details_block, 
    .details_block.reverse {
        flex-direction: column;
        margin-bottom: 0;
    }

    .details_text, .details_image {
        width: 100%;
    }

    .details_text,
    .details_block.reverse .details_text {
        padding: 40px 25px;
    }

    .details_text h3 {
        margin-bottom: 32px;
    }

    .details_image {
        aspect-ratio: 3 / 2;
    }
}

#renewal_office {
    margin-top: 90px;
    margin-bottom: 80px;
} 

@media screen and (max-width: 800px) {
    #renewal_office {
        margin-top: 40px;
        margin-bottom: 50px;
    }
}

/* #renewal_gallery
---------------------------------------- */
#renewal_gallery {
    max-width: 100%;
    margin: 0 auto 100px;
}

.gallery_container {
    display: flex;
    flex-wrap: nowrap;
    gap: 2px;
}

.gallery_item {
    width: 33.333%;
}

.gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
}

/* --- スマホ表示（800px以下） --- */
@media screen and (max-width: 800px) {
    #renewal_gallery {
        margin: 0 auto 50px;
    }
    .gallery_container {
        flex-direction: column;
    }

    .gallery_item {
        width: 100%;
    }
    
    .gallery_item img {
        aspect-ratio: 3 / 2;
    }
}

/* #company_brochure
---------------------------------------- */
.company_brochure_banner {
    max-width: 1110px;
    margin: 50px auto 40px;
}

@media screen and (max-width: 800px) {
    .company_brochure_banner {
        margin: 30px auto 20px;
        padding-inline: 25px;
    }
}