
/* ===================================
   リセット & 基本設定
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* カラー設定 */
    --primary-color: #f97316; /* 信頼感のあるブルー #2563E8*→#1884A7 */
    --primary-dark: #E5362D; /* #1e40af
    --secondary-color: #10b981; /* 安心感のあるグリーン */
    --accent-color: #f97316; /* 温かみのあるオレンジ */
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-padding-top: 90px;
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x:hidden;
}


/* ===================================
   共通コンポーネント
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* セクション共通スタイル */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    border-bottom:dotted 2px var(--text-dark);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-top: 16px;
}

/* ボタン */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}


.btn-shika {
    margin-top:15px;
    background: #4f88f3;
    color: white;
}

.btn-shika:hover {
    background: #3377f2;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}


.btn-ika {
    margin-top:15px;
    background: #31bc8f;
    color: white;
}

.btn-ika:hover {
    background: #0db17c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}


.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-cta {
    background: var(--accent-color);
    color: white;
    padding: 20px 40px;
    font-size: 1.25rem;
}

.btn-cta:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-cta-label {
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-cta-number {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* ===================================
   ヘッダー
   =================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: var(--shadow-md);
}

.header-top {
    background: var(--primary-color);
    color: white;
    padding: 12px 0;
}

.header-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;

    font-size: 1.25rem;
}

.phone-link:hover {
    color: #fbbf24;
}

.phone-number {
    letter-spacing: 0.05em;
}

.header-hours {
    font-size: 0.9rem;
}

/* ナビゲーション */
.nav {
    padding: 16px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.logo-subtitle {
    font-size: 0.875rem;
    color: var(--text-medium);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1px;
    align-items: center;
    font-size: 0.8rem;
}

.nav-menu li a {
    padding: 10px 10px;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: var(--primary-color);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===================================
   ヒーローセクション
   =================================== */
.hero {
    position: relative;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    color: white;
    padding: 120px 0 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 500;
    opacity: 0.95;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.3);
}

.badge i {
    font-size: 1.25rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===================================
   お知らせバナー
   =================================== */
.news-banner {
    /*background: #fef3c7;*/
    background: #feefe4;
    border-bottom: 2px solid brown;
    padding: 16px 0;
}

.news-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.news-label {
    background: brown;
    color: white;
    padding: 4px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.875rem;
}

.news-text {
    color: #000000;
}

/* ===================================
   特徴セクション
   =================================== */
.features-section {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-bottom: 24px;
}

.feature-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-medium);
}

.feature-list li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.feature-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

/* ===================================
   診療案内セクション
   =================================== */
.services-section {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image i {
    font-size: 3rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-points {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.service-points li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.service-points li::before {
    content: '●';
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-size: 0.75rem;
}

/* ===================================
   医科歯科連携セクション
   =================================== */
.collaboration-intro {
    background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
    padding: 80px 0;
}

.collaboration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.collaboration-text .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.collaboration-text .section-title::after {
    margin: 16px 0 0;
}

.collaboration-description {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.collaboration-benefits {
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-dark);
    font-weight: 500;
}

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

.collaboration-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.visual-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.visual-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.visual-card h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.visual-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.visual-connector {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-connector i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.visual-result {
    background: linear-gradient(135deg, var(--secondary-color), #059669);
    color: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    width: 100%;
    max-width: 300px;
    margin-top: 16px;
}

.visual-result i {
    font-size: 2rem;
    margin-bottom: 16px;
}

.visual-result h4 {
    font-size: 1.5rem;
    font-weight: 700;
}

/* ===================================
   院長メッセージセクション
   =================================== */
.doctor-message {
    background: white;
    padding: 80px 0;
}

.doctor-message-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

.doctor-photo {
    position: sticky;
    top: 100px;
}

.doctor-photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-lg);
}

.doctor-photo-placeholder i {
    font-size: 6rem;
    color: var(--text-light);
}

.doctor-info {
    text-align: center;
}

.doctor-info h3 {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.doctor-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.doctor-title {
    font-size: 1rem;
    color: var(--text-medium);
}

.doctor-text .section-title {
    text-align: left;
    margin-bottom: 32px;
}

.doctor-text .section-title::after {
    margin: 16px 0 0;
}

.message-text {
    font-size: 1.125rem;
    line-height: 2;
    color: var(--text-medium);
    margin-bottom: 24px;
}

/* ===================================
   おすすめセクション
   =================================== */
.recommended {
    background: var(--bg-light);
    padding: 80px 0;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.recommended-item {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.recommended-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.recommended-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.recommended-item p {
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.6;
}

/* ===================================
   アクセスセクション
   =================================== */
.access-section {
    background: white;
    padding: 80px 0;
}

.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.access-info {
    padding: 20px 0;
}

.access-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: start;
}

.info-item i {
    font-size: 1.75rem;
    color: var(--primary-color);
    width: 32px;
    flex-shrink: 0;
    margin-top: 4px;
}

.info-label {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.info-text {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.125rem;
}

.phone-link-accent {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

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

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 8px 0;
    color: var(--text-medium);
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    width: 80px;
}

.access-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
}

/* ===================================
   CTAセクション
   =================================== */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===================================
   フッター
   =================================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;


  background-image: url("$point/img/footer_back.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



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

.footer-clinic h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-clinic p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-clinic a {
    color: white;
}

.footer-clinic a:hover {
    color: var(--accent-color);
}

.footer-menu h4 {
    font-size: 1.125rem;
    margin-bottom: 16px;
    color: var(--accent-color);
}

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

.footer-menu ul li {
    margin-bottom: 8px;
}

.footer-menu ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-menu ul li a:hover {
    color: white;
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ===================================
   ページトップボタン
   =================================== */
.page-top {
    position: fixed;
    right: 220px;
    bottom: 22px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 999;
}

.page-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

.page-top.show {
    display: flex;
}

/* ===================================
   レスポンシブデザイン
   =================================== */

/* タブレット */
\@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .collaboration-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .doctor-message-content {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }

    .access-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* スマートフォン */
\@media (max-width: 768px) {
    /* 共通 */
    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 16px;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* ヘッダー */
    .header-contact {
        justify-content: center;
    }

    .phone-link {
        font-size: 1.125rem;
    }

    .header-hours {
        display: none;
    }

    .nav-wrapper {
        position: relative;
    }

    .logo h1 {
        font-size: 1.25rem;
    }

    .logo-subtitle {
        font-size: 0.75rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
	display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        gap: 0;
    }

    .nav-menu.active {
	display: block;
        max-height: 600px;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 12px 16px;
        border-radius: 8px;
    }

    /* ヒーロー */
    .hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-badges {
        gap: 12px;
    }

    .badge {
        padding: 10px 16px;
        font-size: 0.875rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    /* 特徴グリッド */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* 診療案内グリッド */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* 院長メッセージ */
    .doctor-message-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .doctor-photo {
        position: static;
    }

    .message-text {
        font-size: 1rem;
    }

    /* おすすめ */
    .recommended-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 16px;
    }

    .recommended-item {
        padding: 24px 16px;
    }

    .recommended-item i {
        font-size: 2rem;
    }

    .recommended-item p {
        font-size: 0.875rem;
    }

    /* アクセス */
    .access-map {
        height: 300px;
    }

    /* CTA */
    .cta-title {
        font-size: 1.75rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .btn-cta {
        width: 100%;
        padding: 16px 24px;
    }

    .btn-cta-number {
        font-size: 1.25rem;
    }

    /* フッター */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* ページトップ */
    .page-top {
        width: 45px;
        height: 45px;
        left: 22px;
        bottom: 16px;
    }

    /* SP用の改行表示 */
    .sp-only {
        display: inline;
    }
}

\@media (min-width: 769px) {
    .sp-only {
        display: none;
    }
}

/* ===================================
   ページ別スタイル
   =================================== */

/* サブページ共通ヘッダー */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-shadow:0 2px 8px rgba(0,0,0,0.7);
    font-weight:700;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* コンテンツエリア */
.page-content {
    padding: 80px 0;
    background: white;
}

.content-section {
    margin-bottom: 60px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary-color);
}

.content-text {
    font-size: 1.125rem;
    line-height: 2;
    color: var(--text-medium);
    margin-bottom: 24px;
}

/* ボックス */
.info-box {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 24px;
    margin: 24px 0;
    border-radius: 8px;
}

.info-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.info-box p {
    color: var(--text-medium);
    line-height: 1.8;
}

.warning-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 24px;
    margin: 24px 0;
    border-radius: 8px;
}

.success-box {
    background: #d1fae5;
    border-left: 4px solid var(--secondary-color);
    padding: 24px;
    margin: 24px 0;
    border-radius: 8px;
}







/* クリニックのタイトル画像 */
.ttl_img{
  max-width:352px;
  min-width:300px;
  height:auto;
}




/* ご予約はお電話でのブロック */


.reserve-box{
/* background: linear-gradient(to bottom, #74A3FF, #6699FF 40%, #4F7FE0); */
background: linear-gradient(to bottom, #D2A679, #A67C52 40%, #6B4A2F);
  border-radius:16px;
  padding:40px;
  margin:40px 0;
  color:#fff;
}

.reserve-inner{
  display:flex;
  align-items:center;
  gap:40px;
}

.reserve-text{
  flex:1;
}

.reserve-text h2{
  font-size:1.8rem;
  margin-bottom:15px;
}

.reserve-lead{
  margin-bottom:25px;
  line-height:1.8;
}

.reserve-button{
  background:#FF7A1A;
  padding:18px 22px;
  border-radius:10px;
  display:inline-block;
  margin-bottom:20px;
}

.reserve-title{
  font-size:0.9rem;
  margin-bottom:4px;
}

.reserve-tel{
  font-size:1.8rem;
  font-weight:bold;
}

.reserve-tel a{
  color:#fff;
  text-decoration:none;
}

.tel-icon{
  margin-right:10px;
}

.reserve-time{
  font-size:0.95rem;
}

.reserve-photo{
  flex:1;
}

.reserve-photo img{
  width:100%;
  height:auto;
  border-radius:12px;
}

/* ご予約はお電話でのブロック スマホ */

\@media (max-width:768px){

  .reserve-inner{
    flex-direction:column;
  }

  .reserve-box{
    padding:25px;
  }

  .reserve-tel{
    font-size:1.6rem;
  }

}

.reserve-button:hover{
  background:#F28C28;
}




/* インスタ＋院長ブログ右上固定 */
.floating-sns{
  position:fixed;
  top:100px;
  right:20px;
  display:flex;
  gap:10px;
  z-index:1000;
}

/* 共通ボタン */
.sns-btn{
  width:44px;
  height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;

  color:#fff;
  font-size:18px;
  text-decoration:none;

  box-shadow:0 4px 10px rgba(0,0,0,0.15);
  transition:0.2s;
}

/* Instagram */
.sns-btn.instagram{
  background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
}

/* ブログ */
.sns-btn.blog{
  background:#2a7dbf;
}

/* ホバー */
.sns-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 6px 16px rgba(0,0,0,0.2);
}
