/* 共通部分 */
body {
    color: #333333;
}

picture ,img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ttlbox {
    text-align: center;
    margin-bottom: 81px;
}

.subttl {
    font-size: 16px;
    font-weight: bold;
    color: #CC545D;
    letter-spacing: 0;
}

.ttl {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1;
    color: #585051;
    margin-top: 10px;
    padding-bottom: 24px;
    position: relative;
}

.ttl::after {
    content: '';
    width: 24px;
    height: 3px;
    background-color: #FFCC21;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.back-to-top {
    display: none;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.scroll_btm .back-to-top {
    opacity: 1;
    display: block;
}

@media screen and (min-width: 768px) {
    .delay1 {
        transition-delay: 0.25s;
    }

    .delay2 {
        transition-delay: 0.5s;
    }

    .delay3 {
        transition-delay: 0.75s;
    }

    .delay4 {
        transition-delay: 1s;
    }
}

@media (max-width: 767px) {
    .ttlbox {
        margin-bottom: 51px;
    }

    .subttl {
    }

    .ttl {
        font-size: 24px;
        margin-top: 8px;
        padding-bottom: 20px;
    }

    .ttl::after {
        width: 20px;
    }

    .scroll_btm .back-to-top {
         bottom: 100px;
    }
}


@media (min-width: 768px) {
    .nonePC {
        display: none!important;
    }
}

@media (max-width: 767px) {
    .noneSP {
        display: none!important;
    }
}
/* 共通部分 */

/* タイトル部分 */
.hero.hero--big {
    padding-left: 0;
}

.hero__title {
    font-size: 30px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero__title span {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 16px;
}

.hero__subhead {
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    letter-spacing: 0;
    color: #FFCC21;
}
.hero__subhead span {
    display: inline-block;
}

.hero__subhead span:first-child::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 16px;
    background-color: #FFCC21;
    vertical-align: middle;
    margin: 0 6px;
}

@media (max-width: 767px) {
    /* タイトル部分 */
    .hero__title {
        font-size: 18px;
        letter-spacing: -0.057em;
        gap: 5.5px;
        white-space: nowrap;
    }

    .hero__title span {
        font-size: 14px;
        line-height: 1;
    }

    .hero__subhead {
    }
    .hero__subhead span {
    }

    .hero__subhead span:first-child::after {
    }
    /* タイトル部分 */
}
/* タイトル部分 */

/* ページ内リンク */
.page-menu {
    grid-template-columns: repeat(3, 1fr);
    font-weight: 600;
}
/* ページ内リンク */

/* リノアル */
.rinoal {
    width: 100%;
    height: auto;
    padding: 97px 0;
    background-color: #FDFBF7;
}

.rinoal-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 8%;
}

.rinoal-ttl {
    width: 445px;
    height: auto;
}

.rinoal-ttl img {
    object-fit: contain;
}

.rinoal-text {
    font-size: 16px;
    line-height: 36px;
    font-weight: 500;
    letter-spacing: 0;
    margin-top: 48px;
}

.rinoal-image {
    width: 772px;
    height: auto;
    border-radius: 7px 0 0 7px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .rinoal {
        padding: 36px 0 52px;
    }
    
    .rinoal-inner {
        flex-direction: column;
        align-items: start;
        justify-content: start;
        gap: 37px;
    }

    .rinoal-cont {
        padding: 0 23px;
    }
    
    .rinoal-ttl {
        width: 279px;
        margin: 0 auto 30px;
    }
    
    .rinoal-ttl img {
    }
    
    .rinoal-text {
        margin-top: 32px;
        line-height: 31px;
    }
    
    .rinoal-image {
        width: calc(100% - 20px);
        height: 289px;
        border-radius: 0 7px 7px 0;
    }
}   
/* リノアル */


/* サービス */
.service {
    width: 100%;
    padding: 121px 0 87px;
}

.service-inner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.service-item {
    width: 50%;
    height: 449px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.service-item:nth-child(1) {
    background-image: url(../../../public/assets/images/renovation/service01.jpg);
}
.service-item:nth-child(2) {
    background-image: url(../../../public/assets/images/renovation/service02.jpg);
}
.service-item:nth-child(3) {
    background-image: url(../../../public/assets/images/renovation/service03.jpg);
}
.service-item:nth-child(4) {
    background-image: url(../../../public/assets/images/renovation/service04.jpg);
}

.service-cont {
    width: 526px;
    height: 303px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-top: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-subttl {
    font-size: 16px;
    font-weight: bold;
    color: #CC545D;
    letter-spacing: 0;
}

.service-subttl-num {
    display: inline-block;
    padding-left: 12px;
    position: relative;
}

.service-subttl-num::before {
    content: '';
    width: 1px;
    height: 16px;
    background-color: #CC545D;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 6px;
}

.service-ttl {
    width: 385px;
    height: auto;
    margin: 10px 0;
}

.service-ttl img {
    object-fit: contain;
}

.service-text {
    width: 443px;
    font-size: 15px;
    line-height: 27px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #585051;
}

@media (max-width: 767px) {
    .service {
        padding: 72px 0 75px;
    }
    
    .service-inner {
        flex-wrap: nowrap;
        flex-direction: column;
    }
    
    .service-item {
        width: 100%;
        height: 356px;
    }
    
    .service-item:nth-child(1) {
    }
    .service-item:nth-child(2) {
    }
    .service-item:nth-child(3) {
    }
    .service-item:nth-child(4) {
    }
    
    .service-cont {
        width: calc(100% - 40px);
        height: auto;
        border-radius: 8px;
        padding-top: 24px;
        padding-bottom: 28px;
    }
    
    .service-subttl {
        font-size: 13px;
    }
    
    .service-subttl-num {
        padding-left: 10px;
    }
    
    .service-subttl-num::before {
        height: 10px;
        left: 5px;
    }
    
    .service-ttl {
        width: auto;
        height: 47px;
        margin: 5px 0;
    }
    
    .service-ttl img {
    }
    
    .service-text {
        width: calc(100% - 60px);
        margin: 0 auto;
        text-align: justify;
    }
}
/* サービス */


/* ギャラリー */
.gallery {
    width: 100%;
    padding: 121px 0 0;
    background-color: #FDFBF7;
}

.gallery-inner {
    width: 100%;
    min-width: 1384px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.gallery-item {
    width: 685px;
    height: 495px;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 100%;
}

.gallery-text {
    width: fit-content;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1;
    color: #585051;
    background-color: #FDFBF7;
    border-radius: 51px 0 0 0;
    padding: 17px 15px 10px 32px;
    position: absolute;
    bottom: -1px;
    right: 0;
}

.gallery-text::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #EF6A6D;
    margin-right: 9px;
    margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
    .gallery {
        padding: 75px 0 54px;
    }
    
    .gallery-inner {
        width: calc(100% - 40px);
        min-width: auto;
        margin: 0 auto;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 24px;
    }
    
    .gallery-item {
        width: 100%;
        height: 242px;
    }
    
    .gallery-img {
    }
    
    .gallery-text {
        font-size: 15px;
        padding: 17px 15px 10px 20px;
    }
    
    .gallery-text::before {
        margin-right: 7px;
        margin-bottom: 2px;
    }
}
/* ギャラリー */

/* バナー */
.bnr {
    width: 1100px;
    height: 320px;
    margin: 165px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.bnr-img {
    width: 624px;
    height: 100%;
}

.bnr-img img {
    border-radius: 10px 0 0 10px;
}

.bnr-cont {
    width: calc(100% - 624px);
    height: 100%;
    padding: 81px 0 53px 40px;
    background-color: #585051;
    border-radius: 0 10px 10px 0;
    position: relative;
}

.bnr-subttl {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0;
}

.bnr-subttl::before, .bnr-subttl::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 20px;
    background-color: #fff;
}

.bnr-subttl::before {
    transform: rotate(-25deg);
    margin: 0 10px -5px 0;
}

.bnr-subttl::after {
    transform: rotate(25deg);
    margin: 0 0 -5px 10px;
}

.bnr-ttl {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 44px;
    color: #fff;
}

.bnr-ttl .strong {
    font-size: 30px;
    color: #FFCC21;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    text-decoration-color: #FFCC21;
}

.bnr-btn {
    color: #FFCC21;
    font-size: 19px;
    letter-spacing: 0.03em;
    line-height: 44px;
    position: absolute;
    bottom: 27px;
    right: 14px;
}

.bnr-btn-text {
    position: relative;
}

.bnr-btn-text::after {
    content: '';
    display: inline-block;
    width: 71px;
    height: 71px;
    background-image: url(../../../public/assets/images/renovation/ico_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 0 -27px 9px;
    position: relative;
    right: 0;
    transition: right 0.3s ease-in-out;
}

.bnr:hover .bnr-btn-text::after {
    right: -10px;
}

@media screen and (max-width: 767px) {
    .bnr {
        width: calc(100% - 40px);
        height: 356px;
        margin: 72px auto 0;
        flex-direction: column;
    }
    
    .bnr-img {
        width: 100%;
        height: 164px;
    }
    
    .bnr-img img {
        border-radius: 8px 8px 0 0;
    }
    
    .bnr-cont {
        width: 100%;
        height: 192px;
        padding: 23px 0 0;
        border-radius: 0 0 8px 8px;
    }
    
    .bnr-subttl {
        font-size: 16px;
        text-align: center;
    }
    
    .bnr-subttl::before, .bnr-subttl::after {
        height: 12px;
    }
    
    .bnr-subttl::before {
        transform: rotate(-25deg);
        margin: 0 10px -2px 0;
    }
    
    .bnr-subttl::after {
        transform: rotate(25deg);
        margin: 0 0 -2px 10px;
    }
    
    .bnr-ttl {
        font-size: 16px;
        text-align: center;
        line-height: 1.8;
    }
    
    .bnr-ttl .strong {
        font-size: 22px;
    }
    
    .bnr-btn {
        width: max-content;
        color: #fff;
        font-size: 15px;
        letter-spacing: 0;
        bottom: 19px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .bnr-btn-text {
    }
    
    .bnr-btn-text::after {
        width: 45px;
        height: 45px;
        background-image: url(../../../public/assets/images/renovation/ico_arrow_w.svg);
        margin: 0 0 -17px 9px;
    }
}
/* バナー */

/* フローティング */
.floating {
    width: 349px;
    height: auto;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 100;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(0.8);
}

.scroll_btm .floating {
    bottom: 80px;
}

.scrolled .floating {
    opacity: 1;
}

.floating-item {
    width: 100%;
    height: 136px;
    padding: 27px 0 27px 33px;
    display: flex;
    gap: 20px;
    position: relative;
    background-image: url(../../../public/assets/images/renovation/float_bg.svg);
}

.floating-item::before {
    content: '';
    background-image: url(../../../public/assets/images/renovation/ico_arrow_black.svg);
    width: 27px;
    height: 11px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.floating-item + .floating-item {
    margin-top: 13px;
}

.floating-item-img {
    width: 128px;
    height: 83px;
}

.floating-item img {
    object-fit: contain;
}

.floating-item-text {
    font-size: 18px;
    letter-spacing: 0;
    line-height: 29px;
    font-weight: 600;
    color: #000;
}

@media screen and (max-width: 767px) {
    .floating {
        width: calc(100% - 20px);
        margin: 0 10px;
        position: fixed;
        right: 0;
        bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        transform: scale(1);
    }

    .scroll_btm .floating {
        bottom: 20px;
    }
    
    .scrolled .floating {
        opacity: 1;
    }
    
    .floating-item {
        width: calc(50% - 4px);
        height: 67px;
        padding: 13px 0 13px 13px;
        gap: 8px;
        border-radius: 10px;
        overflow: hidden;
        background-size: cover;
        background-position: center;
    }
    .floating-item::before {
        right: 15px;
        bottom: 10px;
        width: 16px;
        height: 5px;
    }

    .floating-item-img {
        width: 65px;
        height: 41px;
    }
    
    .floating-item + .floating-item {
        margin-top: 0;
    }

    .floating-item-text {
        font-size: 13px;
        line-height: 17px;
        letter-spacing: -1px;
    }
}

/* フローティング */