:root {
    --primary:       #E8637A;
    --primary-light: #FBE8EC;
    --primary-dark:  #C94E64;
    --accent:        #F9A8B6;
    --cream:         #FEF6F0;
    --brown:         #5C3D2E;
    --text:          #444444;
    --text-light:    #888888;
    --white:         #FFFFFF;
    --shadow:        rgba(232, 99, 122, 0.18);
    --shadow-sm:     rgba(0,0,0,0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Kosugi Maru', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.8;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    box-shadow: 0 2px 12px var(--shadow-sm);
}

.header-top {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 28px;
    border-bottom: 1px solid #F5E8EA;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-sakura { font-size: 2rem; }

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.logo-main {
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--brown);
}

.logo-sub {
    font-size: 0.72rem;
    color: var(--primary);
    letter-spacing: 0.1em;
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.header-contact-label {
    font-size: 0.75rem;
    color: var(--text-light);
}

.header-tel-num {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}

.header-tel-num:hover { color: var(--primary-dark); }

/* Nav bar */
.header-nav {
    background: var(--primary);
}

.header-nav ul {
    display: flex;
    list-style: none;
    max-width: 1100px;
    margin: 0 auto;
}

.header-nav a {
    display: block;
    padding: 11px 20px;
    color: white;
    text-decoration: none;
    font-size: 0.88rem;
    transition: background 0.2s;
    white-space: nowrap;
}

.header-nav a:hover { background: rgba(255,255,255,0.18); }

/* Hamburger */
.hamburger {
    display: none;
    position: absolute;
    right: 16px;
    top: 16px;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 210;
}

.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--brown);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== Hero ===== */
.hero {
    margin-top: 100px;
    background:
        linear-gradient(135deg,
            rgba(255, 240, 243, 0.82) 0%,
            rgba(254, 230, 220, 0.72) 45%,
            rgba(255, 248, 225, 0.65) 100%
        ),
        url('../images/clinic.jpg.png') center / cover no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 60px 28px;
}

.hero-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.deco {
    position: absolute;
    font-size: 2rem;
    opacity: 0.18;
    animation: spin 20s linear infinite;
}
.d1 { top: 8%;  left: 5%;   font-size: 2.5rem; animation-duration: 18s; }
.d2 { top: 15%; right: 8%;  font-size: 1.8rem; animation-duration: 25s; }
.d3 { bottom: 15%; left: 12%; font-size: 2rem; animation-duration: 22s; }
.d4 { bottom: 10%; right: 15%; font-size: 3rem; animation-duration: 30s; }
.d5 { top: 45%; left: 48%;  font-size: 1.5rem; animation-duration: 15s; }

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text { flex: 1; }

.hero-text h1 {
    font-size: 2rem;
    line-height: 1.6;
    color: var(--brown);
    margin-bottom: 20px;
}

.hero-h1-accent {
    color: var(--primary);
    font-size: 2.2rem;
}

.hero-sub {
    font-size: 1rem;
    color: #7A5546;
    line-height: 2;
    margin-bottom: 28px;
}

.btn-hero {
    display: inline-block;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: bold;
    padding: 14px 36px;
    border-radius: 40px;
    box-shadow: 0 4px 16px var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
}

.hero-tel-note {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 10px;
}

.hero-mascot {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-bubble {
    background: white;
    border: 2px solid var(--accent);
    border-radius: 18px;
    padding: 12px 20px;
    font-size: 0.93rem;
    line-height: 1.7;
    text-align: center;
    box-shadow: 0 2px 10px var(--shadow);
    animation: float 3s ease-in-out infinite;
    position: relative;
}

.hero-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: white;
}

.hero-bubble::before {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    border: 9px solid transparent;
    border-top-color: var(--accent);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
}

.hero-cat {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--accent);
    box-shadow: 0 6px 24px var(--shadow);
}

/* ===== Common Section ===== */
.section { padding: 80px 28px; }
.bg-cream { background: var(--cream); }

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.5rem;
    color: var(--brown);
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 14px;
    position: relative;
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* ===== Symptoms ===== */
.symptoms {
    padding: 60px 28px;
    background: var(--white);
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.symptom-card {
    background: var(--white);
    border: 2px solid var(--primary-light);
    border-radius: 18px;
    padding: 28px 16px;
    text-align: center;
    box-shadow: 0 3px 12px var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.symptom-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow);
}

.symptom-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
    background: var(--primary-light);
    width: 72px; height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.symptom-card h3 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.symptom-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Message ===== */
.message-wrap {
    display: flex;
    gap: 36px;
    align-items: flex-start;
}

.message-cat {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.msg-cat-img {
    width: 120px; height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--accent);
    box-shadow: 0 4px 14px var(--shadow);
}

.msg-bubble {
    background: white;
    border: 2px solid var(--accent);
    border-radius: 14px;
    padding: 10px 14px;
    font-size: 0.85rem;
    line-height: 1.7;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 2px 8px var(--shadow);
}

.message-card {
    flex: 1;
    background: white;
    border-radius: 18px;
    padding: 32px 36px;
    box-shadow: 0 4px 18px var(--shadow-sm);
    border-left: 5px solid var(--primary);
    line-height: 2.1;
}

.message-card p + p { margin-top: 14px; }

.message-sign {
    text-align: right;
    color: var(--text-light);
    margin-top: 18px;
    font-size: 0.92rem;
}

/* ===== Two-column ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

.col-block {
    background: white;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 3px 14px var(--shadow-sm);
}

.col-title {
    font-size: 1.15rem;
    color: var(--brown);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.col-icon { font-size: 1.2rem; }

/* お知らせ */
.news-list { list-style: none; }

.news-item {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 0;
    border-bottom: 1px solid #F5EAEA;
    font-size: 0.9rem;
}

.news-date { color: var(--text-light); font-size: 0.82rem; white-space: nowrap; }

.news-tag {
    font-size: 0.72rem;
    padding: 2px 10px;
    border-radius: 12px;
    white-space: nowrap;
    font-weight: bold;
}

.tag-important { background: #FFE0E0; color: #C94E64; }
.tag-info      { background: var(--primary-light); color: var(--primary); }

/* 診療時間テーブル */
.table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow-sm);
    margin-bottom: 16px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 380px;
}

.hours-table th {
    background: var(--primary);
    color: white;
    padding: 10px 6px;
    text-align: center;
    font-size: 0.88rem;
}

.hours-table td {
    padding: 12px 6px;
    text-align: center;
    border-bottom: 1px solid #FEE8EC;
    font-size: 0.88rem;
}

.time-label {
    background: #FFF5F7;
    font-weight: bold;
    color: var(--brown);
    padding: 12px 10px !important;
    text-align: left !important;
    line-height: 1.5;
}

.time-label small { font-size: 0.72rem; color: #9A7066; }

.open   { color: var(--primary); font-size: 1.2rem; font-weight: bold; }
.closed { color: #CCBBBB; }

.hours-note {
    font-size: 0.85rem;
    line-height: 2;
    color: #7A5546;
}

/* ===== Access ===== */
.access-list { margin-bottom: 20px; }

.access-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.ai-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

.parking-sticker {
    width: 80px;
    height: auto;
    object-fit: contain;
    margin-left: auto;
    flex-shrink: 0;
}
.ai-label { font-weight: bold; color: var(--primary); font-size: 0.85rem; margin-bottom: 2px; }

.tel-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
}
.tel-link:hover { text-decoration: underline; }

.map-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px var(--shadow-sm);
}

/* 初めての方へ */
.first-visit {}

.first-cat-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.first-cat-img {
    width: 80px; height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--accent);
}

.first-bubble {
    background: var(--primary-light);
    border-radius: 14px;
    padding: 10px 16px;
    font-size: 0.88rem;
    line-height: 1.7;
}

.first-card {
    background: var(--cream);
    border-radius: 12px;
    padding: 18px 20px;
}

.first-card h3 {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: bold;
}

.flow-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flow-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.flow-num {
    background: var(--primary);
    color: white;
    width: 24px; height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.bring-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
}

.first-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #FFF5E0;
    border: 2px solid #F6A623;
    border-radius: 12px;
    padding: 14px 16px;
    margin-top: 16px;
    font-size: 0.88rem;
    line-height: 1.75;
    color: #7A5200;
}

.first-notice-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }

/* ===== お知らせセクション ===== */
.news-sec-header {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.news-sec-cat {
    width: 220px;
    height: 220px;
    object-fit: contain;
    animation: float 3.5s ease-in-out infinite;
}

/* フィルタータブ */
.news-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.nf-btn {
    background: white;
    border: 2px solid var(--primary-light);
    border-radius: 25px;
    padding: 8px 20px;
    font-family: inherit;
    font-size: 0.88rem;
    color: var(--brown);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.nf-btn:hover  { background: var(--primary-light); }

.nf-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    font-weight: bold;
}

/* カード一覧 */
.news-cards {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-card {
    background: white;
    border-radius: 14px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 10px var(--shadow-sm);
    border-left: 5px solid var(--primary-light);
    transition: transform 0.15s, box-shadow 0.15s;
}

.news-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px var(--shadow);
}

.news-card[data-category="kyushin"]  { border-left-color: #F6A623; }
.news-card[data-category="important"] { border-left-color: #E8637A; }
.news-card[data-category="info"]      { border-left-color: #7BC8A4; }

.nc-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    min-width: 90px;
}

.nc-date {
    font-size: 0.78rem;
    color: var(--text-light);
    white-space: nowrap;
}

.nc-tag {
    font-size: 0.72rem;
    font-weight: bold;
    padding: 3px 12px;
    border-radius: 12px;
    white-space: nowrap;
}

.tag-kyushin  { background: #FFF0D8; color: #D4881A; }
.tag-important { background: #FFE0E5; color: #C94E64; }
.tag-info      { background: #E0F5EC; color: #2E9E6E; }

.nc-text {
    font-size: 0.93rem;
    line-height: 1.75;
    color: var(--text);
    flex: 1;
}

.news-card.hidden { display: none; }

/* ===== おしえて先生 ===== */
.oshiete-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.oshiete-cat {
    width: 110px;
    height: 110px;
    object-fit: contain;
    flex-shrink: 0;
}

.oshiete-lead {
    color: var(--text-light);
    font-size: 0.92rem;
}

.oshiete-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.tab-btn {
    background: white;
    border: 2px solid var(--primary-light);
    border-radius: 25px;
    padding: 10px 22px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--brown);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.tab-btn:hover { background: var(--primary-light); }

.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    font-weight: bold;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.qa-item {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px var(--shadow-sm);
}

.qa-q {
    width: 100%;
    background: white;
    border: none;
    border-left: 5px solid var(--primary);
    padding: 16px 50px 16px 20px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--brown);
    text-align: left;
    cursor: pointer;
    position: relative;
    line-height: 1.6;
    transition: background 0.2s;
}

.qa-q:hover { background: #FFF5F7; }

.qa-q::after {
    content: '＋';
    position: absolute;
    right: 18px; top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.qa-item.open .qa-q { background: #FFF0F3; }
.qa-item.open .qa-q::after { transform: translateY(-50%) rotate(45deg); }

.qa-a {
    display: none;
    background: var(--cream);
    border-left: 5px solid var(--accent);
    padding: 18px 22px;
    font-size: 0.92rem;
    line-height: 1.95;
    color: #6B4C3B;
}

.qa-item.open .qa-a { display: block; }

/* Q&A 内ポイントボックス */
.qa-point {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    border-radius: 10px;
    padding: 12px 16px;
    margin-top: 12px;
}

.qa-point-title {
    font-weight: bold;
    color: var(--primary-dark);
    margin-bottom: 6px;
    font-size: 0.9rem;
}

/* Q&A バッジ */
.qa-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.qa-badge {
    font-size: 0.78rem;
    font-weight: bold;
    padding: 4px 14px;
    border-radius: 20px;
}

.badge-ok   { background: #E0F5EC; color: #2E7D5E; }
.badge-warn { background: #FFE8E0; color: #C94E30; }

/* ===== 予約ボタン ===== */
.btn-yoyaku-header {
    background: #F6A623;
    color: white;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: bold;
    padding: 10px 18px;
    border-radius: 25px;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.btn-yoyaku-header:hover { background: #D4881A; transform: scale(1.03); }

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.btn-yoyaku {
    background: #F6A623 !important;
    box-shadow: 0 4px 14px rgba(246,166,35,0.45) !important;
}
.btn-yoyaku:hover { background: #D4881A !important; }

.cta-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 14px;
}

.btn-tel-yoyaku {
    background: #F6A623 !important;
    box-shadow: 0 6px 22px rgba(246,166,35,0.45) !important;
}
.btn-tel-yoyaku:hover { background: #D4881A !important; }

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, #FFF0E8 100%);
    padding: 70px 28px;
    text-align: center;
}

.cta-lead {
    font-size: 1.1rem;
    color: var(--brown);
    margin-bottom: 20px;
}

.btn-tel {
    display: inline-block;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-size: 1.7rem;
    font-weight: bold;
    padding: 18px 40px;
    border-radius: 50px;
    box-shadow: 0 6px 22px var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-tel:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 28px var(--shadow);
}

.cta-note { font-size: 0.82rem; color: var(--text-light); }

/* ===== Footer ===== */
.footer {
    background: var(--brown);
    color: #F5E6DC;
    padding: 48px 28px 32px;
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-logo {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    font-size: 0.88rem;
    line-height: 1.9;
    margin-bottom: 24px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 18px;
    margin-bottom: 18px;
}

.footer-nav a {
    color: #D5C0B5;
    text-decoration: none;
    font-size: 0.82rem;
    padding: 4px 16px;
    border-right: 1px solid rgba(255,255,255,0.15);
    transition: color 0.2s;
}

.footer-nav a:first-child { padding-left: 0; }
.footer-nav a:last-child  { border-right: none; }
.footer-nav a:hover { color: white; }

.footer-copy {
    font-size: 0.75rem;
    color: #A09080;
}

/* ===== Fade-in ===== */
.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== Mobile ===== */
@media (max-width: 900px) {
    .symptoms-grid { grid-template-columns: repeat(2, 1fr); }
    .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header-top { padding: 12px 16px 12px 12px; }
    .logo-main { font-size: 0.95rem; }
    .header-contact { display: none; }
    .btn-yoyaku-header { display: none; }

    .header-nav {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(232,99,122,0.97);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 190;
    }
    .header-nav.open { display: flex; }
    .header-nav ul { flex-direction: column; align-items: center; gap: 8px; }
    .header-nav a { font-size: 1.1rem; padding: 14px 32px; }

    .hamburger { display: flex; }

    .hero { margin-top: 72px; padding: 48px 20px; }
    .hero-inner { flex-direction: column-reverse; gap: 28px; text-align: center; }
    .hero-text h1 { font-size: 1.5rem; }
    .hero-h1-accent { font-size: 1.6rem; }
    .hero-cat { width: 150px; height: 150px; }

    .symptoms-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .message-wrap { flex-direction: column; align-items: center; }
    .message-card { padding: 24px 20px; }

    .section { padding: 56px 16px; }
    .symptoms { padding: 48px 16px; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-nav { gap: 4px; }
    .footer-nav a { padding: 4px 10px; font-size: 0.78rem; }

    .btn-tel { font-size: 1.3rem; padding: 16px 36px; }
}

@media (max-width: 480px) {
    .symptoms-grid { grid-template-columns: 1fr 1fr; }
    .oshiete-tabs { gap: 8px; }
    .tab-btn { padding: 8px 14px; font-size: 0.82rem; }
}
