.amuse-village-accommodation-hero {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.amuse-village-accommodation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,136,163,0.05) 0%, rgba(85,177,187,0.05) 100%);
    pointer-events: none;
}

.jr-fuji-five-lakes-accommodation-hero {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
    padding: 2rem;
    background: #cee6c1;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.jr-fuji-five-lakes-accommodation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.amuse-village-accommodation-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.jr-fuji-five-lakes-accommodation-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

/* JRプラン専用: 画像を左側、コンテンツを右側に */
.jr-fuji-five-lakes-accommodation-hero .accommodation-content {
    order: 2;
}

.jr-fuji-five-lakes-accommodation-hero .accommodation-image {
    order: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0088A3, #55B1BB);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,136,163,0.3);
    animation: pulse 2s infinite;
}

.jr-fuji-five-lakes-accommodation-hero .hero-badge {
    background: linear-gradient(135deg, #9eaf94, #576157);
}

.badge-icon {
    font-size: 1.1rem;
}

.amuse-village-accommodation-content h3,
.jr-fuji-five-lakes-accommodation-content h3 {
    text-align: left;
    margin: 0 0 1.5rem;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
    background: linear-gradient(135deg, #1a202c, #2d3748);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.amuse-village-accommodation-content .section-subtitle,
.jr-fuji-five-lakes-accommodation-content .section-subtitle {
    text-align: left;
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.8);
    padding: 0.75rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.amuse-village-accommodation-image {
    flex: 1;
    position: relative;
}

.jr-fuji-five-lakes-accommodation-image {
    flex: 1;
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.image-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

/* 全体SOLD OUT オーバーレイ */
.hero-sold-out-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    z-index: 20;
}

.hero-sold-out-content {
    text-align: center;
    color: white;
}

.hero-sold-out-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: inline-block;
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.5);
    animation: pulse 2s infinite;
}

.hero-sold-out-text {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    background: linear-gradient(45deg, #ffffff, #f0f0f0, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: -200% center;
    }
    50% {
        background-position: 200% center;
    }
}

/* 既存の画像内SOLD OUT オーバーレイ */
.sold-out-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    z-index: 10;
}

.sold-out-content {
    text-align: center;
    color: white;
}

.sold-out-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    animation: pulse 2s infinite;
}

.sold-out-text {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .amuse-village-accommodation-hero,
    .jr-fuji-five-lakes-accommodation-hero {
        gap: 0;
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .amuse-village-accommodation-content {
        order: 0; /* モバイルではコンテンツを上に */
    }

    .amuse-village-accommodation-image {
        order: 1; /* モバイルでは画像を下に */
    }

    .jr-fuji-five-lakes-accommodation-image {
        order: 1; /* モバイルでは画像を下に */
    }

    .amuse-village-accommodation-content h3,
    .jr-fuji-five-lakes-accommodation-content h3 {
        text-align: center;
    }
    
    .amuse-village-accommodation-content h3,
    .jr-fuji-five-lakes-accommodation-content h3 {
        font-size: 1.7em;
    }
    
    .hero-features {
        display: none;
        justify-content: center;
    }
    
    .feature-item {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }
}

/* ふるさと納税セクション */
.furusato-nouzei-section {
    margin: 3rem 0;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 20px;
    border: 2px solid #fecaca;
    position: relative;
    overflow: hidden;
}

.furusato-nouzei-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(239,68,68,0.05) 0%, rgba(220,38,38,0.05) 100%);
    pointer-events: none;
}

.furusato-nouzei-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
}

.furusato-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(239,68,68,0.3);
    animation: pulse 2s infinite;
}

.furusato-badge .badge-icon {
    font-size: 1.2rem;
}

.furusato-nouzei-content h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.furusato-nouzei-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.furusato-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 6px 25px rgba(220,38,38,0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.furusato-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.furusato-button:hover::before {
    left: 100%;
}

.furusato-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(220,38,38,0.4);
    background: linear-gradient(135deg, #b91c1c, #991b1b);
}

.furusato-button .button-icon {
    font-size: 1.3rem;
}

.furusato-button .button-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.furusato-button:hover .button-arrow {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .furusato-nouzei-section {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .furusato-nouzei-content h4 {
        font-size: 1.3rem;
    }
    
    .furusato-nouzei-content p {
        font-size: 1rem;
    }
    
    .furusato-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .furusato-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .sold-out-text {
        font-size: 2rem;
    }
    
    .sold-out-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .hero-sold-out-text {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }
    
    .hero-sold-out-badge {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}
  