/* ========================================
   基本設定
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* カラー */
    --primary-color: #2c7da0;
    --primary-dark: #1d5a7a;
    --primary-light: #61a5c2;
    --secondary-color: #52b788;
    --accent-color: #06d6a0;
    --text-color: #333;
    --text-light: #666;
    --text-lighter: #999;
    --bg-color: #fff;
    --bg-gray: #f8f9fa;
    --bg-light: #f0f4f7;
    --border-color: #e0e0e0;
    --line-green: #06c755;
    
    /* フォント */
    --font-main: 'Noto Sans JP', sans-serif;
    
    /* スペーシング */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* その他 */
    --border-radius: 8px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 16px;
    background: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ========================================
   共通コンポーネント
======================================== */
/* セクション */
.section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1rem;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.sp-br {
    display: none;
}

.sp-only {
    display: none;
}

/* ボタン */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 125, 160, 0.3);
}

.btn-line {
    background: var(--line-green);
    color: #fff;
}

.btn-line:hover {
    background: #05b84a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ========================================
   ヘッダー
======================================== */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 1.5rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-tel a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.header-tel a i {
    font-size: 1rem;
}

.header-hours {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   ファーストビュー
======================================== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.hero-text {
    max-width: 600px;
}

.hero-subtitle {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    font-weight: 700;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
}

.hero-feature i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-placeholder {
    text-align: center;
    color: var(--primary-color);
    padding: 2rem;
}

.hero-image-placeholder i {
    font-size: 6rem;
    margin-bottom: 1rem;
    display: block;
}

.hero-image-placeholder p {
    font-size: 1.25rem;
    font-weight: 500;
}

/* ========================================
   お悩み訴求
======================================== */
.concerns {
    background: var(--bg-gray);
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.concern-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.concern-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.concern-item p {
    color: var(--text-color);
    line-height: 1.6;
}

.concerns-message {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-top: 3rem;
}

/* ========================================
   選ばれる理由
======================================== */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.reason-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.reason-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.reason-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.5;
}

.reason-text {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   はじめての方へ
======================================== */
.flow {
    background: var(--bg-gray);
}

.flow-steps {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.flow-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 60px;
    width: 2px;
    height: calc(100% + 1rem);
    background: var(--border-color);
}

.flow-step-number {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.flow-step-content {
    flex: 1;
}

.flow-step-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flow-step-title i {
    color: var(--primary-color);
}

.flow-step-text {
    color: var(--text-light);
    line-height: 1.7;
}

.flow-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 0 auto 3rem;
    max-width: 800px;
}

.flow-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.flow-info-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.flow-info-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   症状別案内
======================================== */
.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.symptom-card {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
}

.symptom-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.symptom-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.symptom-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.symptom-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.symptom-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.symptom-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.symptom-link:hover {
    gap: 0.75rem;
}

/* ========================================
   スタッフ紹介
======================================== */
.staff {
    background: var(--bg-gray);
}

.staff-main {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    background: #fff;
    padding: 3rem;
    border-radius: var(--border-radius);
    max-width: 900px;
    margin: 0 auto;
}

.staff-photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius);
}

.staff-photo-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.staff-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.staff-name {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.staff-license {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.staff-text {
    margin-bottom: 2rem;
}

.staff-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.staff-career h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.staff-career ul {
    list-style: none;
}

.staff-career li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.staff-career li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.25rem;
}

/* ========================================
   院内紹介
======================================== */
.interior-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.interior-photo {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    overflow: hidden;
}

.interior-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.interior-photo i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.interior-photo p {
    font-weight: 500;
}

.interior-caption {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========================================
   料金・保険案内
======================================== */
.price {
    background: var(--bg-gray);
}

.price-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
}

.price-section {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--border-radius);
}

.price-section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
}

.price-section-title i {
    font-size: 1.75rem;
}

.price-table {
    margin-bottom: 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.price-row:last-child {
    border-bottom: none;
}

.price-name {
    font-weight: 500;
    color: var(--text-color);
}

.price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.price-insurance p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price-insurance-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.price-insurance-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.price-insurance-list i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.price-insurance-note {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-text {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* ========================================
   アクセス
======================================== */
.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.access-name {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.access-details {
    margin-bottom: 2rem;
}

.access-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.access-detail i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.access-label {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.access-value {
    color: var(--text-light);
    line-height: 1.7;
}

.access-value a {
    color: var(--primary-color);
    font-weight: 700;
}

.access-hours h4 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.hours-table th,
.hours-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.hours-table th {
    font-weight: 700;
    color: var(--text-color);
    width: 100px;
}

.hours-table td {
    color: var(--text-light);
}

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

.map-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-weight: 500;
}

.map-note {
    font-size: 0.85rem;
    color: var(--text-lighter);
    margin-top: 0.5rem;
}

/* ========================================
   よくある質問
======================================== */
.faq {
    background: var(--bg-gray);
}

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

.faq-item {
    background: #fff;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.5;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 4rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   最終CTA
======================================== */
.cta-final {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    text-align: center;
}

.cta-final-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-final-text {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-final-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-final-hours {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.95rem;
    opacity: 0.9;
    flex-wrap: wrap;
}

.cta-final-hours p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ========================================
   フッター
======================================== */
.footer {
    background: #2a2a2a;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.footer-address {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-hours {
    color: #ccc;
    line-height: 1.6;
}

.footer-hours strong {
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-nav h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: #ccc;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.footer-note {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #777;
}

/* ========================================
   トップへ戻るボタン
======================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ========================================
   レスポンシブ（タブレット）
======================================== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        min-height: 300px;
    }
    
    .reasons-grid,
    .symptoms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .interior-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .concerns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   レスポンシブ（スマートフォン）
======================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .sp-br {
        display: inline;
    }
    
    .sp-only {
        display: inline;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    /* ヘッダー */
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        padding: 5rem 2rem 2rem;
        transition: var(--transition);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-list li {
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-list a {
        display: block;
        padding: 1rem 0;
    }
    
    .header-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* ファーストビュー */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-image {
        min-height: 250px;
        order: -1;
    }
    
    /* 各セクション */
    .concerns-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reasons-grid,
    .symptoms-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-info {
        grid-template-columns: 1fr;
    }
    
    .staff-main {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }
    
    .interior-grid {
        grid-template-columns: 1fr;
    }
    
    .access-content {
        grid-template-columns: 1fr;
    }
    
    .cta-final-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-final-hours {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        grid-template-columns: 1fr 1fr;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 0.85rem 1.75rem;
        font-size: 1rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   症状別ページ
======================================== */
/* パンくずリスト */
.breadcrumb {
    background: var(--bg-gray);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--text-lighter);
}

.breadcrumb-list a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.breadcrumb-list a:hover {
    color: var(--primary-color);
}

.breadcrumb-list li:last-child {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
}

/* 症状別ヒーロー */
.symptom-hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
    padding: 4rem 0 3rem;
    text-align: center;
}

.symptom-hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.symptom-hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* 症状別お悩み */
.symptom-concerns {
    background: var(--bg-gray);
}

.symptom-concerns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.symptom-concern-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.symptom-concern-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.symptom-concern-item p {
    color: var(--text-color);
    line-height: 1.6;
}

.symptom-concerns-note {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-top: 2rem;
}

/* 症状別リスク */
.symptom-risks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.symptom-risk-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid #fee;
    text-align: center;
}

.symptom-risk-icon {
    width: 70px;
    height: 70px;
    background: #fff5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.symptom-risk-icon i {
    font-size: 2rem;
    color: #e63946;
}

.symptom-risk-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.symptom-risk-text {
    color: var(--text-light);
    line-height: 1.7;
}

.symptom-risks-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 2rem;
}

/* 症状別アプローチ */
.symptom-approach {
    background: var(--bg-gray);
}

.symptom-approach-steps {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.symptom-approach-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.symptom-approach-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 60px;
    width: 2px;
    height: calc(100% + 1rem);
    background: var(--border-color);
}

.symptom-approach-number {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.symptom-approach-content {
    flex: 1;
}

.symptom-approach-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.symptom-approach-text {
    color: var(--text-light);
    line-height: 1.7;
}

.symptom-approach-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* 症状別ベネフィット */
.symptom-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.symptom-benefit-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid #e8f5e9;
    text-align: center;
}

.symptom-benefit-icon {
    width: 70px;
    height: 70px;
    background: #f1f8f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.symptom-benefit-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.symptom-benefit-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.symptom-benefit-text {
    color: var(--text-light);
    line-height: 1.7;
}

.symptom-benefits-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* 症状別お客様の声 */
.symptom-voices {
    background: var(--bg-gray);
}

.symptom-voices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.symptom-voice-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.symptom-voice-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.symptom-voice-profile {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.symptom-voice-concern {
    color: var(--text-light);
    font-size: 0.95rem;
}

.symptom-voice-text {
    color: var(--text-color);
    line-height: 1.8;
    font-style: italic;
}

.symptom-voices-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* 症状別FAQ */
.symptom-faq {
    background: var(--bg-gray);
}

/* 症状別料金 */
.symptom-price-content {
    max-width: 600px;
    margin: 0 auto 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
}

.symptom-price-item {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.symptom-price-item:last-child {
    border-bottom: none;
}

.symptom-price-item p {
    font-size: 1.05rem;
    color: var(--text-color);
}

/* 関連症状 */
.symptom-related {
    background: var(--bg-gray);
}

.symptom-related-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.symptom-related-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.symptom-related-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.symptom-related-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.symptom-related-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.symptom-related-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

/* 症状別ページのレスポンシブ */
@media (max-width: 1024px) {
    .symptom-risks-grid,
    .symptom-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .symptom-related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .symptom-hero {
        padding: 3rem 0 2rem;
    }
    
    .symptom-hero-title {
        font-size: 1.75rem;
    }
    
    .symptom-concerns-grid {
        grid-template-columns: 1fr;
    }
    
    .symptom-risks-grid,
    .symptom-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .symptom-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .symptom-hero-title {
        font-size: 1.5rem;
    }
    
    .symptom-related-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   予約ページ
======================================== */
/* 予約ヒーロー */
.reservation-hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
    padding: 3rem 0 2rem;
    text-align: center;
}

.reservation-hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reservation-hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* 予約の流れ */
.reservation-flow {
    background: var(--bg-gray);
}

.reservation-flow-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 3rem auto 2rem;
    max-width: 900px;
    flex-wrap: wrap;
}

.reservation-flow-step {
    text-align: center;
}

.reservation-flow-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 0.75rem;
}

.reservation-flow-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
}

.reservation-flow-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.reservation-flow-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* 予約フォーム */
.reservation-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.reservation-form-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-label.required::after {
    content: '必須';
    background: #e63946;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-help {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.form-radio-group,
.form-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-radio,
.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.form-radio input[type="radio"],
.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox-single {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.form-checkbox-single input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-link:hover {
    color: var(--primary-dark);
}

.form-datetime-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* 送信完了メッセージ */
.reservation-success {
    text-align: center;
    padding: 3rem 2rem;
}

.reservation-success-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.reservation-success-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.reservation-success-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* 注意事項 */
.reservation-notes {
    background: var(--bg-gray);
}

.reservation-notes-content {
    max-width: 800px;
    margin: 0 auto;
}

.reservation-note-item {
    display: flex;
    gap: 1.5rem;
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.reservation-note-item:last-child {
    margin-bottom: 0;
}

.reservation-note-item > i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.reservation-note-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.reservation-note-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* お問い合わせ */
.reservation-contact {
    text-align: center;
}

.reservation-contact-text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.reservation-contact-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.reservation-contact-hours {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .reservation-hero {
        padding: 2rem 0 1.5rem;
    }
    
    .reservation-hero-title {
        font-size: 1.75rem;
    }
    
    .reservation-flow-steps {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .reservation-flow-arrow {
        transform: rotate(90deg);
    }
    
    .reservation-form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-datetime-group {
        grid-template-columns: 1fr;
    }
    
    .reservation-note-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .reservation-contact-actions {
        flex-direction: column;
        align-items: stretch;
    }
}


