

   /* ── メインマップセクション ── */
   .map-section {
    background: var(--white);
    padding: 72px 0;
   }
   .map-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: stretch;
   }
   .map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 480px;
   }
   .map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: none;
    display: block;
   }

   /* ── 情報パネル ── */
   .info-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
   }
   .info-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 26px;
    transition: box-shadow 0.2s;
   }
   .info-card:hover {
    box-shadow: var(--shadow);
   }
   .info-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 2px dashed var(--primary-light);
   }
   .info-card-head h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
   }
   .info-card-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
   }
   .info-row {
    display: flex;
    gap: 10px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
   }
   .info-row:last-child {
    margin-bottom: 0;
   }
   .info-lbl {
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    min-width: 52px;
   }

   /* 電話ボタン */
   .btn-tel-lg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--primary);
    color: #fff;
    padding: 16px;
    border-radius: 32px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(87, 186, 231, 0.4);
   }
   .btn-tel-lg:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(87, 186, 231, 0.5);
   }
   .btn-tel-lg small {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.85;
   }

   .btn-net-reserve {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--accent);
    color: #fff;
    padding: 14px;
    border-radius: 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s;
   }
   .btn-net-reserve:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
   }

   /* ── 診療時間 ── */
   .hours-section {
    background: var(--primary-light);
    padding: 72px 0;
   }
   .hours-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
   }

   /* 診療時間テーブル */
   .hours-table-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
   }
   .hours-table-wrap h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
   }
   .hours-tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
   }
   .hours-tbl th {
    background: var(--primary);
    color: #fff;
    padding: 10px 8px;
    text-align: center;
    font-weight: 700;
   }
   .hours-tbl th.sat {
    background: #57bae7cc;
   }
   .hours-tbl th.sun {
    background: #aaa;
   }
   .hours-tbl th.time-col {
    text-align: left;
    padding-left: 14px;
    font-weight: 600;
    background: var(--primary-dark);
   }
   .hours-tbl td {
    text-align: center;
    padding: 12px 8px;
    border-bottom: 1px solid var(--border);
    font-weight: 700;
   }
   .hours-tbl td.time-col {
    text-align: left;
    padding-left: 14px;
    font-weight: 600;
    color: var(--text);
    background: #f8fdff;
    white-space: nowrap;
   }
   .hours-tbl .dot {
    color: var(--primary);
    font-size: 18px;
   }
   .hours-tbl .star {
    color: var(--accent);
    font-size: 18px;
   }
   .hours-tbl .dash {
    color: #ccc;
    font-size: 16px;
   }
   .hours-note {
    margin-top: 14px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
    padding: 12px 16px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
   }

   /* 休診カレンダー補足 */
   .holiday-info {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
   }
   .holiday-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
   }
   .holiday-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
   }
   .holiday-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius-sm);
    background: #f8fdff;
    border: 1px solid var(--border);
   }
   .holiday-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
   }
   .holiday-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
   }
   .holiday-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
   }

   /* ── アクセス方法 ── */
   .access-section {
    background: var(--white);
    padding: 72px 0;
   }
   .access-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
   }
   .access-method {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all 0.2s;
   }
   .access-method:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
   }
   .access-method-icon {
    font-size: 40px;
    margin-bottom: 14px;
    display: block;
   }
   .access-method h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
   }
   .access-method p,
   .access-method ul {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.9;
   }
   .access-method ul {
    padding-left: 16px;
   }
   .access-method li {
    margin-bottom: 4px;
   }

   /* 地図リンクバナー */
   .map-link-banner {
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
    border: 2px solid var(--primary-light);
    border-radius: var(--radius);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
   }
   .map-link-banner p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
   }
   .btn-map-link {
    flex-shrink: 0;
    /* アイコンと文字を横並び・中央揃えにする
       （全体設定の img{display:block} で改行されるのを防ぐ） */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.2s;
   }
   .btn-map-link .btn-map-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
   }
   .btn-map-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
   }

   /* ── CTA ── */
   .access-cta {
    background: linear-gradient(
     135deg,
     var(--primary-dark) 0%,
     var(--primary) 100%
    );
    padding: 64px 0;
    text-align: center;
    color: #fff;
   }
   .access-cta h2 {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 700;
    margin-bottom: 16px;
   }
   .access-cta p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 32px;
   }
   .cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
   }
   .btn-cta-white {
    background: #fff;
    color: var(--primary-dark);
    padding: 14px 32px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s;
   }
   .btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
   }
   .btn-cta-outline {
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
   }
   .btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
   }

   /* ── responsive ── */
   @media (max-width: 960px) {
    .map-layout {
     grid-template-columns: 1fr;
    }
    .hours-layout {
     grid-template-columns: 1fr;
    }
    .access-methods {
     grid-template-columns: 1fr;
    }
    .map-link-banner {
     flex-direction: column;
     text-align: center;
    }
   }
   @media (max-width: 640px) {
    .hours-tbl {
     font-size: 12px;
    }
    .hours-tbl td,
    .hours-tbl th {
     padding: 8px 4px;
    }
    .hours-tbl .time-col {
     font-size: 12px;
     padding-left: 8px;
     white-space: normal;
    }
    .map-section {
     padding: 48px 0;
    }
    .hours-section {
     padding: 48px 0;
    }
    .access-section {
     padding: 48px 0;
    }
   }
