/* ================================================
   賃貸マンション事業ページ専用スタイル
   ================================================ */

/* ページヒーロー */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 43, 74, 0.3), rgba(44, 82, 130, 0.2));
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ページヒーロー内のパンくずリスト */
.page-hero > .breadcrumb {
    position: absolute;
    top: 1rem;
    left: 2rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.page-hero .breadcrumb ul {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-hero .breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.page-hero .breadcrumb li::after {
    content: '>';
    color: rgba(255, 255, 255, 0.6);
}

.page-hero .breadcrumb li:last-child::after {
    content: '';
}

.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.page-hero .breadcrumb a:hover {
    opacity: 1;
    color: white;
}

.page-hero .breadcrumb i {
    font-size: 0.85rem;
}

/* パンくずバー（ヒーロー外配置用） */
.breadcrumb-bar {
    background: #f8f9fa;
    padding: 1rem 0;
    font-size: 0.9rem;
}

.breadcrumb-bar .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-bar a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-bar a:hover {
    color: var(--accent-gold);
}

.breadcrumb-bar span {
    color: var(--text-secondary);
}

/* セクション */
.section-padding {
    padding: 6rem 0;
}

.bg-light {
    background-color: #f7fafc;
}

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

.lead-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.pc-only {
    display: inline;
}

.sp-only {
    display: none;
}

/* オンライン内覧バナー */
.online-viewing-banner {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.15);
}

.banner-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f6b93b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.banner-content {
    flex: 1;
}

.banner-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.3rem;
}

.banner-title .highlight {
    color: var(--accent-gold);
}

.banner-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.banner-button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-navy) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 82, 130, 0.3);
}

.banner-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 82, 130, 0.4);
}

@media screen and (max-width: 768px) {
    .online-viewing-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .banner-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .banner-title {
        font-size: 1.1rem;
    }
    
    .banner-text {
        font-size: 0.9rem;
    }
    
    .banner-button {
        width: 100%;
        justify-content: center;
    }
}

/* 物件カード */
.property-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.property-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.property-card.special {
    border: 3px solid #f6b93b;
    position: relative;
}

.property-card.special::before {
    content: 'デザイナーズルーム';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #f6b93b, #d4a574);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.property-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.property-card.special .property-image {
    margin-top: 2.5rem;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #2c5282, #1a2b4a);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    z-index: 1;
}

.property-badge.special-badge {
    background: linear-gradient(135deg, #f6b93b, #d4a574);
}

.vacancy-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 1;
}

.vacancy-badge.available {
    background: linear-gradient(135deg, #ff4757, #ff6b35);
    color: white;
    animation: pulse-available 1.5s infinite;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

@keyframes pulse-available {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 71, 87, 0.6);
    }
}

.vacancy-badge.limited {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.property-content {
    padding: 2.5rem;
}

.property-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2b4a;
    margin-bottom: 1rem;
}

.property-address {
    color: #718096;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.property-address i {
    color: #d4a574;
    margin-right: 0.5rem;
}

.property-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: #2d3748;
}

.detail-item i {
    color: #2c5282;
    font-size: 1.1rem;
    width: 20px;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #edf2f7;
    color: #2d3748;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.feature-tag i {
    color: #2c5282;
}

.feature-tag.special {
    background: linear-gradient(135deg, #fff5e6, #ffe5b4);
    color: #1a2b4a;
    border: 2px solid #f6b93b;
}

.feature-tag.special i {
    color: #f6b93b;
}

.property-catch {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.btn-property-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2c5282, #1a2b4a);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-property-detail:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(44, 82, 130, 0.3);
}

.btn-property-detail.special {
    background: linear-gradient(135deg, #f6b93b, #d4a574);
}

.btn-property-detail.special:hover {
    box-shadow: 0 4px 20px rgba(246, 185, 59, 0.4);
}

/* サービスグリッド */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.service-item {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2c5282, #d4a574);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 2rem;
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2b4a;
    text-align: center;
    margin-bottom: 0.5rem;
}

.service-subtitle {
    text-align: center;
    color: #d4a574;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-item > p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.service-benefits {
    list-style: none;
    padding: 0;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #2d3748;
}

.service-benefits i {
    color: #48bb78;
    font-size: 1rem;
}

/* 選ばれる理由 */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.reason-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.reason-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4a574, #f6b93b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.reason-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2b4a;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.reason-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
}

/* CTA セクション（旧スタイル - 互換性のため残す） */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a2b4a, #3a4f6a);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-note {
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.cta-note p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

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

.cta-note i {
    color: #f6b93b;
    margin-right: 0.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-large.primary {
    background: linear-gradient(135deg, #d4a574, #f6b93b);
    color: white;
}

.btn-large.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-large.secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-large.secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* CTA セクション - 新スタイル（ライト版） */
.cta-section-estate {
    padding: 5rem 0;
    background: #f5f7fa;
    text-align: center;
}

.cta-content-estate {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-estate h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Noto Serif JP', serif;
    color: #1a2b4a;
    line-height: 1.4;
    text-align: center;
}

.cta-content-estate > p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color: #555;
    line-height: 1.8;
}

.cta-buttons-estate {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-cta-estate {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta-estate.primary {
    background: linear-gradient(135deg, #1a2b4a 0%, #3a5a8a 100%);
    color: white;
}

.btn-cta-estate.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 43, 74, 0.3);
}

.btn-cta-estate.secondary {
    background: white;
    color: #1a2b4a;
    border: 2px solid #1a2b4a;
}

.btn-cta-estate.secondary:hover {
    background: #1a2b4a;
    color: white;
    transform: translateY(-3px);
}

.cta-note-estate {
    font-size: 0.9rem;
    color: #666;
    line-height: 2;
}

.cta-note-estate i {
    color: #d4a574;
    margin-right: 0.3rem;
}

/* レスポンシブ */
@media screen and (max-width: 1024px) {
    .property-cards {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .property-cards {
        grid-template-columns: 1fr;
    }
    
    .property-image {
        height: 220px;
    }
    
    .property-content {
        padding: 2rem;
    }
    
    .property-name {
        font-size: 1.5rem;
    }
    
    .property-details {
        padding: 1rem;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons-estate {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-estate {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .cta-content-estate h2 {
        font-size: 1.6rem;
    }
    
    .cta-note-estate {
        font-size: 0.85rem;
        line-height: 1.8;
    }
    
    .sp-only {
        display: inline;
    }
    
    .pc-only {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .page-title {
        font-size: 1.75rem;
    }
    
    .property-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .property-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
    
    .vacancy-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .property-features {
        gap: 0.5rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}