/* ===== 設備・貸し出しページ専用スタイル ===== */

/* ページヘッダー（共通） */
.page-header {
    background-color: #F5F5F5;
    padding: 60px 60px;
}

.page-header-container {
    max-width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 40vh;
}

.page-header-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 0;
}

.page-header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 40px 0 40px 40px;
}

.page-main-title {
    font-size: 72px;
    font-weight: 400;
    color: #666;
    letter-spacing: 0.05em;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.page-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #999;
    padding-top: 30px;
    width: 100%;
}

.page-nav-link {
    color: #999;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1em;
    padding: 18px 0;
    border-bottom: 1px solid #E0E0E0;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.page-nav-link:hover {
    color: #D48FB1;
    padding-left: 15px;
    border-bottom-color: #D48FB1;
}

/* 貸し出しセクション */
.rental-section {
    padding: 100px 20px;
    background-color: #fff;
}

.rental-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.rental-intro p {
    font-size: 16px;
    line-height: 2;
    color: #666;
}

.rental-cards {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.rental-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid #F0F0F0;
}

.rental-card.featured {
    border-color: #D48FB1;
}

.rental-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(212, 143, 177, 0.25);
}

.rental-card-header {
    padding: 40px 35px 25px;
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE8F0 100%);
    text-align: center;
}

.rental-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #D48FB1 0%, #E8B4C8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rental-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
    stroke-width: 2;
}

.rental-card-header h3 {
    font-size: 24px;
    color: #333;
    font-weight: 700;
    font-family: 'Shippori Mincho', serif;
}

.rental-card-body {
    padding: 35px;
}

.rental-price {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #F0F0F0;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #D48FB1;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.price-unit {
    font-size: 24px;
    color: #666;
    margin-left: 5px;
}

.price-per {
    font-size: 16px;
    color: #999;
    margin-left: 5px;
}

.rental-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: #D48FB1;
    stroke-width: 2.5;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.rental-description {
    font-size: 14px;
    line-height: 1.9;
    color: #666;
    margin: 0;
}

.rental-note {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 35px;
    background-color: #FFF5F8;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-left: 4px solid #D48FB1;
}

.note-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D48FB1 0%, #E8B4C8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.note-icon svg {
    width: 26px;
    height: 26px;
    color: #fff;
    stroke-width: 2;
}

.note-content h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.note-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin: 0;
}

/* バリアフリーセクション */
.barrier-free-section {
    padding: 100px 20px;
}

.barrier-free-section.gray-bg {
    background-color: #FAFAFA;
}

.barrier-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.barrier-intro p {
    font-size: 16px;
    line-height: 2;
    color: #666;
}

.barrier-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.barrier-image-section {
    position: sticky;
    top: 100px;
}

.barrier-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.barrier-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: linear-gradient(135deg, #D48FB1 0%, #E8B4C8 100%);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(212, 143, 177, 0.4);
}

.barrier-features-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.barrier-feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.barrier-feature-card:hover {
    border-left-color: #D48FB1;
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(212, 143, 177, 0.15);
}

.barrier-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D48FB1 0%, #E8B4C8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.barrier-feature-icon svg {
    width: 30px;
    height: 30px;
    color: #fff;
    stroke-width: 2;
}

.barrier-feature-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 700;
}

.barrier-feature-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin: 0;
}

/* ご利用条件セクション */
.terms-section {
    padding: 100px 20px;
    background-color: #fff;
}

.terms-grid {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.terms-card {
    background-color: #FAFAFA;
    padding: 40px 35px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.terms-card:hover {
    background-color: #FFF5F8;
    border-color: #D48FB1;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 143, 177, 0.2);
}

.terms-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(212, 143, 177, 0.15);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.terms-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Shippori Mincho', serif;
}

.terms-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin: 0;
}

.terms-note {
    max-width: 900px;
    margin: 0 auto;
    padding: 25px 30px;
    background-color: #FFF5F8;
    border-radius: 10px;
    border-left: 4px solid #D48FB1;
}

.terms-note p {
    font-size: 14px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 5px;
}

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

/* CTAセクション */
.equipment-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #D48FB1 0%, #E8B4C8 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.6;
    font-family: 'Shippori Mincho', serif;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #fff;
    color: #D48FB1;
    border: 2px solid #fff;
}

.btn-primary:hover {
    background-color: transparent;
    color: #fff;
}

.btn-primary svg {
    stroke: currentColor;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #D48FB1;
}

/* 関連ページ（3枚バナー） */
.related-pages {
    background-color: #F5F1E8;
    padding: 100px 20px;
    overflow: hidden;
}

.related-banners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    perspective: 1000px;
    min-height: 450px;
}

.related-banner {
    position: relative;
    width: 380px;
    height: 480px;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.related-banner:nth-child(1) {
    transform: rotate(-8deg) translateX(40px);
    z-index: 1;
}

.related-banner:nth-child(2) {
    transform: rotate(0deg) scale(1.1);
    z-index: 3;
    margin: 0 -50px;
}

.related-banner:nth-child(3) {
    transform: rotate(8deg) translateX(-40px);
    z-index: 1;
}

.related-banner:hover {
    transform: rotate(0deg) scale(1.15) translateY(-20px) !important;
    z-index: 10 !important;
    box-shadow: 0 30px 80px rgba(212, 143, 177, 0.4);
}

.banner-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
    filter: brightness(0.9);
}

.related-banner:hover .banner-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    color: #fff;
    z-index: 1;
    transition: all 0.4s;
}

.related-banner:hover .banner-overlay {
    padding-bottom: 50px;
    background: linear-gradient(to top, rgba(212, 143, 177, 0.9) 0%, rgba(212, 143, 177, 0.6) 60%, transparent 100%);
}

.banner-overlay h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    transform: translateY(0);
    transition: transform 0.4s;
}

.related-banner:hover .banner-overlay h3 {
    transform: translateY(-5px);
}

.banner-overlay p {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* レスポンシブ（タブレット） */
@media (max-width: 768px) {
    .page-header {
        min-height: auto;
        padding: 40px 20px;
    }

    .page-header-container {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }

    .page-header-title {
        padding: 20px 0;
        justify-content: flex-start;
    }

    .page-header-nav {
        padding: 20px 0;
        justify-content: flex-start;
    }

    .page-main-title {
        font-size: 60px;
    }

    .page-nav {
        padding-top: 20px;
    }

    .page-nav-link {
        font-size: 14px;
        padding: 15px 0;
    }

    .rental-section {
        padding: 60px 20px;
    }

    .rental-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .rental-card-header {
        padding: 35px 30px 20px;
    }

    .rental-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 18px;
    }

    .rental-icon svg {
        width: 35px;
        height: 35px;
    }

    .rental-card-header h3 {
        font-size: 22px;
    }

    .rental-card-body {
        padding: 30px 25px;
    }

    .price-amount {
        font-size: 42px;
    }

    .rental-note {
        padding: 25px 25px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .note-icon {
        width: 45px;
        height: 45px;
    }

    .note-icon svg {
        width: 22px;
        height: 22px;
    }

    .barrier-free-section {
        padding: 60px 20px;
    }

    .barrier-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .barrier-image-section {
        position: static;
    }

    .terms-section {
        padding: 60px 20px;
    }

    .terms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .terms-card {
        padding: 35px 30px;
    }

    .terms-number {
        font-size: 40px;
        top: 18px;
        right: 22px;
    }

    .terms-card h3 {
        font-size: 20px;
    }

    .equipment-cta {
        padding: 60px 20px;
    }

    .cta-content h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }

    .related-banners {
        flex-direction: column;
        gap: 30px;
        min-height: auto;
        perspective: none;
    }

    .related-banner {
        width: 100%;
        max-width: 400px;
        height: 350px;
        margin: 0 auto !important;
    }

    .related-banner:nth-child(1),
    .related-banner:nth-child(2),
    .related-banner:nth-child(3) {
        transform: rotate(0deg) !important;
        z-index: 1 !important;
    }

    .related-banner:hover {
        transform: scale(1.05) translateY(-10px) !important;
    }

    .banner-overlay {
        padding: 30px 25px;
    }

    .banner-overlay h3 {
        font-size: 22px;
    }
}

/* レスポンシブ（スマホ中） */
@media (max-width: 440px) {
    .page-main-title {
        font-size: 40px;
    }
}

/* レスポンシブ（スマホ） */
@media (max-width: 400px) {
    .page-header {
        padding: 40px 20px;
    }

    .page-header-title {
        padding: 15px 0;
    }

    .page-header-nav {
        padding: 15px 0;
    }

    .page-main-title {
        font-size: 42px;
    }

    .rental-section {
        padding: 50px 15px;
    }

    .rental-intro p {
        font-size: 14px;
    }

    .rental-card-header {
        padding: 30px 25px 18px;
    }

    .rental-icon {
        width: 65px;
        height: 65px;
    }

    .rental-card-header h3 {
        font-size: 20px;
    }

    .rental-card-body {
        padding: 25px 20px;
    }

    .price-amount {
        font-size: 38px;
    }

    .price-unit {
        font-size: 20px;
    }

    .rental-note {
        padding: 20px;
    }

    .note-content h4 {
        font-size: 16px;
    }

    .note-content p {
        font-size: 14px;
    }

    .barrier-free-section {
        padding: 50px 15px;
    }

    .barrier-intro p {
        font-size: 14px;
    }

    .image-badge {
        font-size: 13px;
        padding: 10px 20px;
        bottom: 20px;
        left: 20px;
    }

    .barrier-feature-card {
        padding: 25px 20px;
        gap: 18px;
    }

    .barrier-feature-icon {
        width: 50px;
        height: 50px;
    }

    .barrier-feature-icon svg {
        width: 25px;
        height: 25px;
    }

    .barrier-feature-content h3 {
        font-size: 18px;
    }

    .barrier-feature-content p {
        font-size: 14px;
    }

    .terms-section {
        padding: 50px 15px;
    }

    .terms-card {
        padding: 30px 25px;
    }

    .terms-number {
        font-size: 36px;
        top: 15px;
        right: 20px;
    }

    .terms-card h3 {
        font-size: 18px;
    }

    .terms-card p {
        font-size: 14px;
    }

    .terms-note {
        padding: 20px 20px;
    }

    .terms-note p {
        font-size: 13px;
    }

    .equipment-cta {
        padding: 50px 15px;
    }

    .cta-content h2 {
        font-size: 20px;
        line-height: 1.6;
    }

    .btn-primary,
    .btn-secondary {
        padding: 15px 30px;
        font-size: 16px;
    }

    .related-pages {
        padding: 50px 15px;
    }

    .related-banner {
        height: 300px;
    }

    .banner-overlay {
        padding: 25px 20px;
    }

    .banner-overlay h3 {
        font-size: 20px;
    }
}

/* レスポンシブ（スマホ極小） */
@media (max-width: 360px) {
    .page-main-title {
        font-size: 36px;
    }
}