  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 24px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hotel-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.hotel-card.show {
    opacity: 1;
    transform: translateY(0);
}

.hotel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hotel-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.area-tag {
    background-color: #6c5ce7;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    color: #666;
    font-size: 14px;
}

.info-value {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.price-header {
    text-align: center;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 15px 0 10px 0;
    padding-top: 15px;
    border-top: 2px solid #6c5ce7;
}

.price-section {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.price-box {
    flex: 1;
    background-color: #6c5ce7;
    color: white;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.2s ease;
}

.price-box:hover {
    transform: scale(1.05);
}

.price-type {
    font-size: 12px;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 16px;
    font-weight: 600;
}

.price-unavailable {
    background-color: #ddd;
    color: #999;
}

/* レスポンシブデザイン */
@media (max-width: 1200px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 10px;
    }
    
    .hotel-card {
        padding: 15px;
    }
}