@charset "UTF-8";

.container {
    max-width: 800px;
}

/* タイトルバー */
.title-bar {
    background-color: #1b6b85;
    /* 画像に近い濃い青緑色 */
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 40px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* グリッド（テーブル）構造 */
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 横に3つ並べる */
    gap: 20px;
}

/* 各カードのスタイル */
.card {
    background-color: #e9f1f5;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* 画像エリア */
.image-placeholder {
    width: 100%;
    margin-bottom: 15px;
}

/* テキストエリア */
.card p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
}

/* スマホ対応：画面が狭いときは1列にする */
@media (max-width: 768px) {
    .treatment-grid {
        grid-template-columns: 1fr;
    }

    .title-bar {
        font-size: 20px;
    }
}


/* mobile
-----------------------------------------------------------*/
@media (max-width: 767px) {}

@media (max-width: 375px) {}
