img, iframe {
    max-width: 100%;
    height: auto;
}

/* Hero Section */
.hero {
    background-image: url('../assets/clinic__facade.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.hero__container {
    max-width: 800px;
    margin: 0 auto;
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero__cta-button {
    padding: 10px 20px;
    font-size: 1.2rem;
    background-color: #f39c12;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.hero__cta-button:hover {
    background-color: #e67e22;
}

/* Services Section */
.services {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.services__title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}

.services__list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.services__item {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(100% - 40px);
    max-width: 300px;
    transition: transform 0.3s ease;
    text-align: left;
    box-sizing: border-box;
    margin: 10px;
}

.services__item:hover {
    transform: translateY(-5px);
}

.services__item-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.services__item-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* 診療案内ボタン */
.services__more {
    text-align: center;
    margin-top: 20px;
}

.services__more-button {
    padding: 10px 20px;
    background-color: #f39c12;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.services__more-button:hover {
    background-color: #e67e22;
}

/* News Section */
.news {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.news__title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.news__list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
    text-align: left;
}

.news__item {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.news__item-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.news__item-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* もっと見るボタン */
.news__more {
    text-align: center;
    margin: 20px 0;
}

.news__more-button,
.hero__cta-button {
    padding: 10px 20px;
    background-color: #f39c12;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.news__more-button:hover,
.hero__cta-button:hover {
    background-color: #e67e22;
}

/* 診療時間 Section */
.hours__title {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.hours__table {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 40px;
    border-collapse: collapse;
}

.hours__table th, .hours__table td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.hours__table th {
    background-color: #2c3e50;
    color: white;
}

/* アクセス情報 Section */
.access__title {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.access__address, .access__station {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.access__map {
    text-align: center;
    margin: 20px 0;
}

.map-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* スタッフ紹介 Section */
.staff__title {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.staff__container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.staff__member {
    text-align: center;
    flex: 1 1 calc(50% - 20px);
    max-width: 200px;
    box-sizing: border-box;
    margin: 10px;
}

.staff__photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.staff__name {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.staff__role {
    font-size: 1rem;
    color: #555;
}

/* メディアクエリ */
@media screen and (max-width: 768px) {
    .hero__title {
        font-size: 2.5rem;
    }
    .hero__subtitle {
        font-size: 1.2rem;
    }
    .hero {
        padding: 80px 10px;
    }
    .services__item {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .staff__member {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .staff__photo {
        width: 80px;
        height: 80px;
    }
    .hours__table {
        font-size: 0.9rem;
    }
}