
.hero {
    background: linear-gradient(90deg, #f8fafc 0%, #e6e9f0 100%);
    padding: 48px 0 24px 0;
    text-align: center;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    color: #5a4a2f;
    font-weight: 500;
    margin-bottom: 8px;
  }

  .hero {
    position: relative;
    overflow: hidden;
    margin-top: -120px;
    /* 他のスタイルはそのまま */
}

.hero-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-image {
    position: relative;
}


/* グラデーションオーバーレイ追加 */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgb(225, 255, 233) 10%,
        rgba(255, 255, 255, 0.2) 25%,
        rgba(255, 255, 255, 0.2) 82%,
        rgb(255, 255, 255) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    
}

.hero-text {
    color: #595656;
    text-align: center;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    padding: 30px;
    border-radius: 15px;

    background: radial-gradient(
        circle,
        rgb(255, 232, 184) 0%,
        rgba(255, 232, 184, 0.9) 30%,
        rgba(255, 232, 184, 0.5) 50%,
        rgba(255, 255, 255, 0.0) 70%
    );
    
    
}

.open-date {
    font-weight: bold;
    text-align: center;
}

.new-open {
    font-size: 36px;
    color: #ff6b6b;
    font-weight: bold;
    text-align: center;
}

.new-badge {
    background: #ff4444;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin-left: 10px;
}

.clinic-interior {
    width: 100%;
}

.clinic-info {
    background: rgba(234, 255, 238, 0.0);
    padding: 20px;
    border-radius: 15px;
    margin-top: 24px;
    line-height: 1em;
    font-weight: 700;
}

.clinic-info h3 {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.clinic-info2 {
    background: rgba(234, 255, 238, 0.9);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}


/* レスポンシブ */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .new-open {
        font-size: 28px;
    }    
}