/* ==========================================================================
   Base Styles & Theme
   ========================================================================== */
:root {
    --color-orange: #ff6400;
    --color-orange-dark: #c77c00;
    --color-brown: #3e2723;
    --color-cream: #fef9f0;
    --color-white: #ffffff;
    --color-cream1: #FFF0C0;
    --color-gray-light: #f5f5f5;
    --color-gray-border: #eeeeee;
    --color-whitesmoke: whitesmoke;
    --font-main: 'Noto Sans JP', sans-serif;
    --container-width: 1100px;
    --container-topinner-width: 85%;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    color: var(--color-brown);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.l-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.top-l-container {
    max-width: var(--container-topinner-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    letter-spacing: 5px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* ==========================================================================
   Header
   ========================================================================== */
.l-header__shop { width: 100%; }
.rr-header__shop-top { background-color: var(--color-orange); color: #fff; padding: 8px 0; }
.r-header-flex { display: flex; justify-content: space-between; align-items: center; }
.l-header__shop_txt { font-size: 11px; }
.r-header-shopItemBox { display: flex; gap: 20px; }
.rent-header-shopItem { font-size: 10px; text-align: center; }

.r-header_shop_inner { padding: 12px 0; border-bottom: 
    /* 1px solid var(--color-gray-border);  */
}

.l-header__shop_left { display: flex; align-items: center; gap: 20px; }
.l-header__shop_logo img { height: 35px; }
.l-header__tel-img { height: 30px; }

.r-header__shop-nav { display: flex; gap: 15px; margin-left: auto; }
.r-header__shop-nav-item { font-size: 11px; font-weight: 700; text-align: center; }

/* ==========================================================================
   1. Hero Senior
   ========================================================================== */
.hero-senior { position: relative; width: 100%; }
.hero-senior__bg img { width: 100%; }

.hero-senior__container {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.hero-senior__content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* align-items: center; */
    width: 100%;
    pointer-events: auto;
}

.hero-senior__left-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    /* border-radius: 10px; */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

li::marker {
  content: "";
}

.hero-senior__catch-sub { font-size: 20px; font-weight: 700; margin-bottom: 10px; text-align: center;}
.hero-senior__main-title { font-size: 48px; font-weight: 900; line-height: 1.2; }
.text-orange { color: var(--color-orange); }
.hero-senior__lead-sub { font-size: 18px; font-weight: 700; margin-top: 15px; }

.hero-senior__right-box { max-width: 450px; }
.hero-senior__text-img-large { width: 100%; }

/* ==========================================================================
   2. Room Selection
   ========================================================================== */
.room-selection { padding: 80px 0; }
.section-title-wrapper { text-align: center; margin-bottom: 50px; }
.section-title-orange {
    font-size: 32px;
    font-weight: 900;
    color: var(--color-orange);
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}
.section-title-orange::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-orange);
}

.room-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.room-card {
    background: #fff;
    border: 1px solid var(--color-gray-border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}
.room-card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.05); transform: translateY(-5px); }
.room-card__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.room-card__body { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.room-card__title { font-size: 16px; font-weight: 900; color: var(--color-orange); margin-bottom: 12px; text-align: center; }
.room-card__desc { font-size: 13px; line-height: 1.5; margin-bottom: 20px; flex-grow: 1; }
.room-card__btn {
    display: block;
    background: var(--color-orange);
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 25px;
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 3px 0 var(--color-orange-dark);
}

/* ==========================================================================
   3. Sticky CTA Bar
   ========================================================================== */
.sticky-cta-bar { background: var(--color-whitesmoke); padding: 30px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.sticky-cta-bar__inner { display: flex; justify-content: center; align-items: center; gap: 80px; }
.sticky-cta-label { font-size: 14px; font-weight: 900; margin-bottom: 10px; text-align: center; }
.sticky-cta-btn {
    display: block;
    background: var(--color-orange);
    color: #fff;
    padding: 15px 85px;
    /* border-radius: 35px; */
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 5px 0 var(--color-orange-dark);
}
.sticky-cta-tel-content { display: flex; align-items: center; gap: 15px; justify-content: center;}
.sticky-cta-tel-icon { height: 28px;text-align: center; margin: 10px auto;}
.sticky-cta-tel-num { font-size: 36px; font-weight: 900; color: var(--color-orange); line-height: 1; }
.sticky-cta-tel-time { font-size: 11px; font-weight: 700; margin-top: 5px; }

/* ==========================================================================
   4. Senior Worries
   ========================================================================== */
.senior-worries { padding: 80px 0; background: #fff; }
.worries-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    /* background: #fff9f0; */
    padding: 60px;
    border-radius: 30px;
    margin-bottom: -225px;
}
.worries-visual { position: relative; flex: 1; text-align: center; z-index: 0;}
.worries-couple { max-height: 250px; margin: 0 auto; }

.worries-bubbles-left { position: absolute; top: -75px; left: 0; width: 80%; height: 100%; pointer-events: none; }
.worries-bubbles-right { position: absolute; top: -103px; left: 30px; width: 80%; height: 100%; pointer-events: none; }


.w-bubble-01 { position: absolute; top: -20px; left: -20px; width: 160px; z-index: -1;}
.w-bubble-02 { position: absolute; bottom: 100px; right: -20px; width: 160px; z-index: -1;}
.worries-content { 
    flex: 3;
    position: relative;
    z-index: 9999;
    bottom: -16px;
}
.worries-thought-img { width: 100%; }
.sticky-cta-item{
background: white;
padding: 20px;
}


@media screen and (max-width: 599px) {


    .sticky-cta-bar__inner {
        display: flex !important;
        flex-direction: column;
        gap: 20px;
    }


.rakumori-service-header{
    margin: 70px 30px;
}


.businessImage{
display: none;
}


.advantage-grid1 {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 30px !important;
    margin-bottom: 50px !important;
    width: 90% !important;
    /* justify-content: start; */
    /* align-items: stretch; */
    /* align-content: end; */
    /* justify-items: start; */
    margin: 0 auto;
    grid-auto-flow: column dense;
}

.worries-couple {
    max-height: 150px;
    margin: 0 auto;
}


}







/* ==========================================================================
   5. Rentlife Advantage
   ========================================================================== */
.rentlife-advantage { 
    /* text-align: center; 
    padding: 80px 0; 
    background-color: #fff9e6; Full width background */

    position: relative;
    text-align: center;
    padding: 80px 0;
    background-color: #fff9e6;
    z-index: 10;
    margin: -90px;

}


div#circle {
    position: relative;
    width: 100%;
    /* height: 100px; */
    background: #fff9e6;
    margin: 0 auto;
    aspect-ratio: 10 / 1;
    border-radius: 50%;
    /* border-radius: 100px; */
    z-index: 2;
  
}


div#circle1 {
    position: relative;
    width: 100%;
    /* height: 100px; */
    background: #fef9f0;
    margin: 0 auto;
    aspect-ratio: 12 / 1;
    border-radius: 50%;
    /* border-radius: 100px; */
    z-index: 2;
}






.advantage-header { margin-bottom: 40px; }
.advantage-title-img { max-width: 650px; margin: 0 auto; }

.advantage-grid {
    display: grid;
    grid-template-columns: 1fr 200px 1fr;
    grid-template-areas:
        "p1 center p2"
        "p3 center p4";
    gap: 30px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.advantage-item:nth-child(1) { grid-area: p1; position: relative; left: 120px;}
.advantage-item:nth-child(2) { grid-area: p2; position: relative; right: 120px;}
.advantage-center-img { grid-area: center; display: flex; justify-content: center; align-items: center; }
.advantage-item:nth-child(4) { grid-area: p3; }
.advantage-item:nth-child(5) { grid-area: p4; }

.advantage-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantage-icon-circle {
    /* width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); */
}

.advantage-icon {
    width: 80%;
    height: auto;
    text-align: center;
    margin: 15px auto;
}

.advantage-businessman {
    max-width: 100%;
    position: relative;
    bottom: -200px;
}

.advantage-item-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--color-orange);
    margin-bottom: 8px;
}

.advantage-item-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    max-width: 240px;
}

.advantage-footer-text {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.6;
}

.highlight-orange { color: var(--color-orange); }

/* ==========================================================================
   6. Rakumori Service Detail
   ========================================================================== */
.rakumori-service-detail { padding: 80px 0; background: #fff; }
.rakumori-service-header { text-align: center; margin: 80px; }
.rakumori-service-title { font-size: 32px; font-weight: 900; color: var(--color-orange); margin-bottom: 25px; }
.rakumori-service-lead { font-size: 18px; font-weight: 700; line-height: 1.8; }

.rakumori-features-box {
    margin-bottom: 100px;
    background: var(--color-cream);
    padding: 60px 40px;
    /* border-radius: 40px; */
    position: relative;
    z-index: 10;
    margin: -70px 0px 0px;
}
.rakumori-features-title { font-size: 26px; font-weight: 900; text-align: center; margin-bottom: 60px; }
.rakumori-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.rakumori-f-item { text-align: center; }
.rakumori-f-circle {
    width: 200px;
    height: 200px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.rakumori-f-num {
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 45px;
    background: var(--color-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 22px;
}
.rakumori-f-img { max-width: 185px; }
.rakumori-f-title { font-size: 20px; font-weight: 900; color: var(--color-orange); margin-bottom: 15px; }
.rakumori-f-text { font-size: 14px; text-align: left; }

.rakumori-flow { text-align: center; margin: 80px; }
.rakumori-flow-title { font-size: 24px; font-weight: 900; color: var(--color-orange); margin-bottom: 20px; }
.rakumori-flow-lead { font-size: 16px; font-weight: 700; margin-bottom: 40px; }
.rakumori-flow-visual { max-width: 900px; margin: 0 auto; }

.rakumori-graph { text-align: center; }
.rakumori-graph-title { font-size: 20px; font-weight: 900; margin-bottom: 30px; }
.rakumori-graph-visual { max-width: 800px; margin: 0 auto; }

/* ==========================================================================
   7. Closing CTA
   ========================================================================== */
.closing-cta { padding-bottom: 80px; }
.orange-full-band { 
    background: var(--color-orange); 
    color: #fff; 
    padding: 60px 0 80px; /* Increased bottom padding to accommodate hanging box */
    position: relative; 
    margin-bottom: 0; /* Removed margin to connect with box below */
    border-top: 4px solid #fff;
    border-bottom: 4px solid #fff;
}
.closing-band-container { display: flex; align-items: center; justify-content: center; }
.closing-band-title { font-size: 36px; font-weight: 900; line-height: 1.4; text-align: center; color: white;}
.closing-band-illust  {
    position: absolute;
    right: 20%;
    bottom: 47px;
    height: 250px;
}

.price-display {
    text-align: center;
    margin: -4px auto 80px;
    background: var(--color-cream1);
    max-width: 100%;
    padding: 20px 20px;
    /* border-radius: 20px; */
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.price-label { 
    font-size: 30px; 
    font-weight: 900; 
    color: var(--color-orange); 
    margin-bottom: 10px; 
}
.price-amount { 
    font-size: 36px; 
    font-weight: 900; 
    color: var(--color-brown);
    margin-bottom: 15px; 
}
.price-note { font-size: 14px; font-weight: 700; color: #666; }

.final-contact-box {
    background: #eeeeee;
    border-radius: 20px;
    padding: 50px;
    /* box-shadow: 0 15px 40px rgba(0,0,0,0.08); */
}
.final-contact-title { font-size: 22px; font-weight: 900; text-align: center; margin-bottom: 40px; }
.final-contact-flex { display: flex; justify-content: center; align-items: center; gap: 50px; margin-bottom: 30px; }
.final-search-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--color-orange);
    color: #fff;
    padding: 20px 60px;
    border-radius: 15px;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 6px 0 var(--color-orange-dark);
}
.final-search-icon {
    height: 30px;
    text-align: center;
    margin: 10px auto;
}

.final-tel-shop { font-size: 14px; font-weight: 900; margin-bottom: 5px; }
.final-tel-num-box { display: flex; align-items: center; gap: 15px; }
.final-tel-icon { height: 35px; }
.final-tel-num { font-size: 44px; font-weight: 900; color: var(--color-orange); line-height: 1; }
.final-tel-time { font-size: 11px; font-weight: 700; margin-top: 5px; }
.final-contact-footer { text-align: center; font-size: 20px; font-weight: 700; }

/* ==========================================================================
   8. Special Articles
   ========================================================================== */
.special-articles { padding: 80px 0; background: var(--color-white); }
.articles-flex-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.article-item { border: 1px solid var(--color-gray-border); border-radius: 12px; overflow: hidden; transition: 0.3s; }
.article-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.article-item__img img { width: 100%; aspect-ratio: 16/9; object-fit: contain; background: #fff; }
.article-item__body { padding: 25px; }
.article-item__title { font-size: 16px; font-weight: 900; line-height: 1.5; margin-bottom: 15px; height: 3em; overflow: hidden; }
.article-item__date { font-size: 12px; color: #999; }
.articles-more { text-align: center; margin-top: 50px; }
.articles-more-link { display: inline-block; padding: 12px 40px; border: 1px solid #ccc; border-radius: 5px; font-weight: 700; color: #666; }

/* ==========================================================================
   Footer
   ========================================================================== */
/* .l-footer { background: #333; color: #fff; padding: 40px 0; } */

/* ==========================================================================
   Responsive Overrides
   ========================================================================== */
@media (max-width: 1000px) {


.sticky-cta-btn {
    padding: 15px 50px;
}


.senior-worries {
    padding: 40px 0;
}



.closing-band-illust {
    position: absolute;
    right: 4%;
    bottom: 94px;
    height: 195px;
}
    .advantage-item:nth-child(4) { grid-area: p3; position: relative; left: 120px;}
    .advantage-item:nth-child(5) { grid-area: p4; position: relative; right: 120px;}


    .rent-appear--pc { display: none !important; }
    .hero-senior__container { 
       position: absolute;
        left: 0;
        transform: none;
        height: auto;
        padding: 40px 20px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .hero-senior__text-img-large { width: 80%; display: none;}

    .hero-senior__content-wrapper { 
        /* flex-direction: column; gap: 30px;  */
    }

    .hero-senior__catch-sub { font-size: 14px; font-weight: 700; margin-bottom: 10px; text-align: center;}
    .hero-senior__main-title { font-size: 20px; font-weight: 900; line-height: 1.2; }

    .hero-senior__left-box { width: 100%; text-align: center; }

    .hero-senior__left-box {
    background: rgba(255, 255, 255, 0.6);
    padding: 40px;
    /* border-radius: 10px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    }

    .room-grid { grid-template-columns: repeat(2, 1fr); }
    .sticky-cta-bar__inner {
         /* flex-direction: column; gap: 30px;  */
        }

    .advantage-grid {
        /* display: block !important; */
        grid-template-columns: 1fr 200px 1fr;
        grid-template-areas:         "p1 center p2"        "p3 center p4";
        gap: 30px;
        align-items: center;
        /* max-width: 1000px; */
        /* margin: 0 auto 50px; */
        width: 100%;
    }
   
    .final-contact-flex { flex-direction: column; }
    .articles-flex-grid { grid-template-columns: 1fr; }




.worries-container{
    margin-bottom: 0 !important;
}

.advantage-businessman{
    display: none;
}


}



@media screen and (max-width: 700px) {

    div#circle{
        display: none;
    }


    div#circle1{
        display: none;
    }

.rentlife-advantage{
    width: 100% !important;
    margin: 0 !important;
    padding: 40px;
}


.rakumori-features-box{
    margin: 0;
}



.senior-worries {
    padding: 80px 0 40px !important;
}


.advantage-grid{

display:block  !important;
width: 80% !important;

}


.sticky-cta-item{
    width: 100%;
}

.sticky-cta-btn {

text-align: center;

}




.sticky-cta-bar__inner{
    display: block;
}

.advantage-item:nth-child(1) { grid-area: p1; position: relative; right: 0 !important; left: 0 !important;}
.advantage-item:nth-child(2) { grid-area: p2; position: relative; right: 0 !important; left: 0 !important;}
.advantage-center-img { grid-area: center; display: flex; justify-content: center; align-items: center; }
.advantage-item:nth-child(4) { grid-area: p3; position: relative; right: 0 !important; left: 0 !important;}
.advantage-item:nth-child(5) { grid-area: p4; position: relative; right: 0 !important; left: 0 !important;}


    .final-contact-footer{
        font-size: 14px;
    }

    .closing-band-title{  font-size: 26px !important; color: white;}
    .price-amount{font-size: 30px !important;}
.advantage-title-img {
width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.senior-worries{
    padding: 45px 0;
}


.worries-container { flex-direction: column; padding: 40px 20px; }

.rakumori-features-grid { grid-template-columns: 1fr !important; }
.closing-band-illust {
    position: absolute;
    right: 20%;
    bottom: 47px;
    height: 250px;
    display: none;
}

.worries-bubbles {
    position: absolute;
    top: -33px;
    left: -75px;
    width: 60%;
    font-size: 12px;
    height: 100%;
    pointer-events: none;
}

.final-tel-num-box {
    display: flex;
    align-items: center;
    gap: 17px;
    justify-content: center;
}

.final-tel-num {
    font-size: 24px !important;
    font-weight: 900;
    color: var(--color-orange);
    line-height: 1;
}


div#circle {
display: none;
}


div#circle1 {
display: none;
}

.room-selection {
    padding: 80px 0;
}


.final-search-btn{
    padding:20px 40px;
    font-size: 14px;

}

.rakumori-flow {
    text-align: center;
    margin: 80px 20px;
}

.advantage-title-img{
    padding: 0;
}

.rentlife-advantage{
    padding: 40px 0px;
}

.rakumori-service-header {
    margin: 80px 10px;
}

.rakumori-service-detail{
    padding: 0px 0px 80px;
}


}


