/* ========================================
   JOLLYGOOD+ Rental Page Styles
   /about/price/rental/ — レンタルプラン
   Uses design tokens from /common.css
======================================== */


/* ==========================
   Rental Intro
========================== */
.rental-intro {
    padding: 32px 0 48px;
    text-align: center;
}
.rental-intro__banner img {
    width: 100%;
    max-width: 720px;
    height: auto;
    margin-bottom: 36px;
}
.rental-intro__txt {
    font-size: var(--fs-body, 1.6rem);
    line-height: 2.1;
    color: #555;
    max-width: 640px;
    margin: 0 auto 36px;
}
.rental-intro__img {
    margin: 0 auto 36px;
}
.rental-intro__img img {
    width: 100%;
    max-width: 480px;
    height: auto;
}
.rental-intro__desc {
    font-size: var(--fs-body, 1.6rem);
    line-height: 2.1;
    color: #555;
    max-width: 640px;
    margin: 0 auto;
}


/* ==========================
   Rental Plan Cards
========================== */
.rental-plan__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 760px;
    margin: 0 auto 28px;
}
.rental-plan__card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    overflow: hidden;
    text-align: center;
}
.rental-plan__card-header {
    padding: 18px 16px;
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    letter-spacing: 0.04em;
}
.rental-plan__card-header--7  { background: #E874A6; }
.rental-plan__card-header--30 { background: #e23e85; }

.rental-plan__card-body {
    padding: 28px 24px 36px;
}
.rental-plan__row {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}
.rental-plan__row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.rental-plan__row-label {
    font-size: var(--fs-small, 1.3rem);
    color: #888;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.rental-plan__row-price {
    font-size: var(--fs-h2, 2.4rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.3;
}
.rental-plan__row-price span {
    font-size: 0.78rem;
    font-weight: 400;
    color: #888;
    margin-left: 4px;
}
.rental-plan__row-note {
    font-size: var(--fs-small, 1.3rem);
    color: #e23e85;
    font-weight: 600;
    margin-top: 8px;
    line-height: 1.5;
}
.rental-plan__note {
    text-align: center;
    font-size: 0.88rem;
    color: #888;
    margin-top: 20px;
    line-height: 1.8;
}
.rental-plan__note a {
    color: #00A2FA;
    text-decoration: underline;
}


/* ==========================
   Rental CTA Button
========================== */
.rental-btn {
    display: inline-block;
    padding: 16px 44px;
    background: #e23e85;
    color: #fff;
    font-weight: 700;
    font-size: var(--fs-btn, 1.5rem);
    border-radius: 60px;
    text-decoration: none;
    transition: background .3s, transform .3s;
    letter-spacing: 0.02em;
}
.rental-btn:hover {
    background: #c12d6f;
    transform: translateY(-2px);
}
.rental-btn--blue {
    background: #00A2FA;
}
.rental-btn--blue:hover {
    background: #008bd6;
}


/* ==========================
   Rental Genre Grid
========================== */
.rental-genre {
    padding: 48px 0;
}
.rental-genre__heading {
    text-align: center;
    font-size: clamp(0.95rem, 3vw, 1.3rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 48px;
    letter-spacing: 0.02em;
}
.rental-genre__list {
    list-style: none;
    padding: 0;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.rental-genre__item {
    display: flex;
    align-items: center;
    gap: 28px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    padding: 24px 32px;
}
.rental-genre__item:nth-child(even) {
    flex-direction: row-reverse;
}
.rental-genre__item-img {
    flex-shrink: 0;
    width: 200px;
    border-radius: 12px;
    overflow: hidden;
}
.rental-genre__item-img img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}
.rental-genre__item-body {
    flex: 1;
}
.rental-genre__item-title {
    font-size: var(--fs-h4, 1.4rem);
    font-weight: 700;
    color: #e23e85;
    margin-bottom: 10px;
    line-height: 1.4;
}
.rental-genre__item-txt {
    font-size: var(--fs-body, 1.6rem);
    line-height: 1.8;
    color: #555;
}


/* ==========================
   Rental Price Table
========================== */
.rental-table {
    padding: 48px 0;
    text-align: center;
}
.rental-table__heading {
    font-size: clamp(0.95rem, 3vw, 1.3rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 36px;
    letter-spacing: 0.02em;
}
.rental-table__img img {
    width: 100%;
    max-width: 660px;
    height: auto;
}
.rental-table__note {
    font-size: 0.88rem;
    color: #888;
    margin-top: 20px;
    line-height: 1.9;
}
.rental-table__note a {
    color: #00A2FA;
}


/* ==========================
   Normal Plan CTA Card
========================== */
.rental-normal-cta {
    max-width: 560px;
    margin: 32px auto;
    background: #fafafa;
    border-radius: 20px;
    padding: 44px 40px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.rental-normal-cta__txt {
    font-size: var(--fs-btn, 1.5rem);
    line-height: 2;
    color: #555;
    margin-bottom: 28px;
}


/* ==========================
   Responsive
========================== */
@media (max-width: 768px) {
    .rental-plan__grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }
    .rental-genre__item,
    .rental-genre__item:nth-child(even) {
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
    }
    .rental-genre__item-img {
        width: 100%;
    }
    .rental-genre__item-img img {
        height: 200px;
    }
    .rental-normal-cta {
        padding: 32px 24px;
    }
}
