/* Penta Koubou Demo Site */
/* ===========================
   Medical C - 清潔感のあるデザイン（歯科）
   =========================== */

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

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.8;
    color: #333;
    background: #fff;
}

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

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

/* 段落のマージン */
p {
    margin-bottom: 0.5rem;
}

/* コンテナ */
.med-c-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   ヘッダー
   =========================== */
.med-c-header {
    background: #fff;
    box-shadow: 0 1px 5px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}

.med-c-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.med-c-logo a {
    font-size: 24px;
    font-weight: bold;
    color: #1976d2;
}

.med-c-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.med-c-nav a {
    color: #333;
    font-weight: 500;
}

.med-c-nav a:hover {
    color: #1976d2;
}

.med-c-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.med-c-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .med-c-nav {
        display: none;
    }
    
    .med-c-menu-toggle {
        display: flex;
    }
}

/* ===========================
   タイムライン形式
   =========================== */
.med-c-hero-timeline {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.med-c-hero-timeline .med-c-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px !important;
}

.med-c-hero-timeline .med-c-timeline-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.med-c-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 0 100px;
}

/* タイムラインの縦線 */
.med-c-container::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #1976d2;
    z-index: 1;
}

.med-c-hero-timeline .med-c-container::before {
    display: none;
}

.med-c-timeline-item {
    position: relative;
    margin-bottom: 80px;
}

.med-c-timeline-item:last-child {
    margin-bottom: 0;
}

/* タイムラインドット */
.med-c-timeline-dot {
    position: absolute;
    left: -75px;
    top: 0;
    width: 20px;
    height: 20px;
    background: #1976d2;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px #1976d2;
    z-index: 2;
}

/* ヒーロー部分のタイムラインドットを非表示 */
.med-c-hero-timeline .med-c-timeline-dot,
.med-c-hero-timeline .med-c-timeline-item .med-c-timeline-dot {
    display: none !important;
}

/* CTAセクションのタイムラインドットも非表示 */
.med-c-cta .med-c-timeline-dot,
.med-c-cta .med-c-timeline-item .med-c-timeline-dot {
    display: none !important;
}

/* CTAセクションのタイムラインの縦線も非表示 */
.med-c-cta .med-c-container::before {
    display: none !important;
}

.med-c-timeline-dot-last {
    box-shadow: 0 0 0 3px #fff;
}

.med-c-timeline-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.med-c-hero-title {
    font-size: 42px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: left;
}

.med-c-hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
    text-align: left;
}

.med-c-hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* ヒーロー部分のテキストを中央寄せ */
.med-c-hero-timeline .med-c-hero-title,
.med-c-hero-timeline .med-c-hero-subtitle,
.med-c-hero-timeline .med-c-timeline-content .med-c-hero-title,
.med-c-hero-timeline .med-c-timeline-content .med-c-hero-subtitle {
    text-align: center !important;
}

.med-c-hero-timeline .med-c-hero-cta,
.med-c-hero-timeline .med-c-timeline-content .med-c-hero-cta {
    justify-content: center !important;
}

/* CTAセクションのテキストも中央寄せ */
.med-c-cta .med-c-timeline-content h2,
.med-c-cta .med-c-timeline-content p,
.med-c-cta h2,
.med-c-cta p {
    text-align: center !important;
    color: #ffffff !important;
}

.med-c-cta .med-c-timeline-content {
    text-align: center;
}

@media (max-width: 768px) {
    .med-c-container {
        padding: 0 20px;
    }
    
    .med-c-container::before {
        display: none;
    }
    
    .med-c-timeline-dot {
        display: none;
    }
    
    .med-c-hero-timeline .med-c-container {
        padding: 0 20px;
    }
    
    .med-c-hero-title {
        font-size: 28px;
    }
    
    .med-c-hero-cta {
        flex-direction: column;
    }
}

/* ===========================
   セクション共通
   =========================== */
section {
    padding: 80px 0;
}

.med-c-section-title {
    font-size: 36px;
    text-align: left;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.med-c-section-subtitle {
    text-align: left;
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.med-c-section-badge {
    font-size: 14px;
    color: #1976d2;
    text-align: left;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* ===========================
   ボタン
   =========================== */
.med-c-btn-primary {
    display: inline-block;
    padding: 18px 50px;
    background: #1976d2;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.2);
}

.med-c-btn-primary:hover {
    background: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 3px 12px rgba(25, 118, 210, 0.3);
}

.med-c-btn-secondary {
    display: inline-block;
    padding: 18px 50px;
    background: #fff;
    color: #1976d2;
    border: 2px solid #1976d2;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.med-c-btn-secondary:hover {
    background: #1976d2;
    color: #fff;
}

/* ===========================
   お知らせ
   =========================== */
.med-c-news {
    background: #fafafa;
}

.med-c-news-list {
    max-width: 900px;
    margin: 0 auto;
}

.med-c-news-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
}

.med-c-news-date {
    color: #1976d2;
    font-weight: 600;
    min-width: 100px;
}

.med-c-news-category {
    display: inline-block;
    padding: 5px 15px;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 20px;
    font-size: 14px;
    min-width: 100px;
    text-align: center;
}

.med-c-news-item a {
    color: #333;
    flex: 1;
}

.med-c-news-item a:hover {
    color: #1976d2;
}

@media (max-width: 768px) {
    .med-c-news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ===========================
   診療内容
   =========================== */
.med-c-services {
    background: #fff;
    padding: 100px 0;
}

.med-c-services-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.med-c-service-timeline-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.med-c-service-timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.med-c-service-image {
    width: 100%;
    background-size: cover;
    background-position: center;
}

.med-c-service-content {
    padding: 30px;
}

.med-c-service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.med-c-service-icon {
    font-size: 32px;
    display: inline-block;
}

.med-c-service-content p {
    color: #666;
    line-height: 1.8;
}

.med-c-services-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===========================
   診療時間
   =========================== */
.med-c-hours {
    background: #fafafa;
    padding: 100px 0;
}

.med-c-hours-content {
    max-width: 100%;
}

.med-c-hours-table {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    margin-bottom: 30px;
}

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

.med-c-hours-table th,
.med-c-hours-table td {
    padding: 20px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.med-c-hours-table th {
    background: #1976d2;
    color: #fff;
    font-weight: 600;
}

.med-c-hours-table td {
    background: #fff;
    color: #333;
}

.med-c-hours-note {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.med-c-hours-note p {
    margin-bottom: 10px;
}

/* ===========================
   当院について
   =========================== */
.med-c-about {
    background: #fff;
    padding: 100px 0;
}

.med-c-about-image {
    width: 100%;
    background-size: cover;
    background-position: center;
}

.med-c-about-content p {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
}

.med-c-about-content .med-c-btn-secondary {
    margin-top: 20px;
}

/* ===========================
   医院の様子（ギャラリー）
   =========================== */
.med-c-gallery {
    background: #fafafa;
    padding: 100px 0;
}

.med-c-gallery-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.med-c-gallery-timeline-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.med-c-gallery-timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.med-c-gallery-image {
    width: 100%;
    background-size: cover;
    background-position: center;
}

.med-c-gallery-label {
    font-size: 18px;
    font-weight: 600;
    color: #1976d2;
    text-align: center;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.med-c-gallery-icon {
    font-size: 24px;
    display: inline-block;
}

/* ===========================
   CTA
   =========================== */
.med-c-cta {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.med-c-cta .med-c-container {
    padding: 0 20px;
}

.med-c-cta .med-c-timeline-content {
    max-width: 900px;
    margin: 0 auto;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.med-c-cta h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff !important;
    line-height: 1.5;
}

.med-c-cta p {
    margin-bottom: 40px;
    font-size: 18px;
    color: #ffffff !important;
    opacity: 1;
    line-height: 1.8;
}

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

.med-c-cta .med-c-btn-primary {
    background: #ffffff;
    color: #1976d2;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.med-c-cta .med-c-btn-primary:hover {
    background: #fafafa;
    transform: translateY(-2px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.med-c-cta .med-c-btn-secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
}

.med-c-cta .med-c-btn-secondary:hover {
    background: #ffffff;
    color: #1976d2;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .med-c-cta {
        padding: 60px 0;
    }
    
    .med-c-cta h2 {
        font-size: 28px;
        line-height: 1.4;
    }
    
    .med-c-cta p {
        font-size: 16px;
    }
    
    .med-c-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .med-c-cta .med-c-btn-primary,
    .med-c-cta .med-c-btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* ===========================
   フッター
   =========================== */
.med-c-footer {
    background: #fafafa;
    color: #333;
    padding: 50px 0 0;
    border-top: 1px solid #e5e5e5;
}

.med-c-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 35px;
}

.med-c-footer-info h3 {
    color: #333;
    font-size: 22px;
    margin-bottom: 18px;
    font-weight: 600;
}

.med-c-footer-info p {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #666;
    font-size: 14px;
}

.med-c-footer-links h4 {
    color: #333;
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 16px;
}

.med-c-footer-links ul {
    list-style: none;
}

.med-c-footer-links li {
    margin-bottom: 10px;
}

.med-c-footer-links a {
    color: #666;
    font-size: 14px;
}

.med-c-footer-links a:hover {
    color: #1976d2;
}

.med-c-footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #999;
}

.med-c-footer-credit {
    margin-top: 8px;
    font-size: 11px;
    color: #999;
}

@media (max-width: 768px) {
    .med-c-footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===========================
   下層ページ共通
   =========================== */
.med-c-page-header {
    background: #1976d2;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.med-c-page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.med-c-page-header p {
    font-size: 16px;
    opacity: 0.95;
}

.med-c-page-content {
    padding: 80px 0;
    background: #fff;
}

.med-c-content {
    max-width: 900px;
    margin: 0 auto;
    color: #333;
    line-height: 1.6;
}

/* ===========================
   診療内容詳細ページ
   =========================== */
.med-c-service-detail {
    background: #fafafa;
    padding: 100px 0;
}

.med-c-service-detail-item {
    background: #fff;
    border-radius: 15px;
    padding: 50px;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.med-c-service-detail-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.med-c-service-detail-item.reverse .med-c-service-detail-content {
    order: 2;
}

.med-c-service-detail-item.reverse .med-c-service-detail-image {
    order: 1;
}

.med-c-service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
    border-left: 5px solid #1976d2;
    padding-left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.med-c-service-detail-content h2 .med-c-service-icon {
    font-size: 36px;
}

.med-c-service-lead {
    font-size: 18px;
    margin-bottom: 35px;
    color: #666;
    line-height: 1.6;
}

.med-c-service-features h3,
.med-c-service-note h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.med-c-service-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.med-c-service-features li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #666;
    line-height: 1.8;
}

.med-c-service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1976d2;
    font-weight: bold;
    font-size: 18px;
}

.med-c-service-note p {
    color: #666;
    line-height: 1.6;
}

.med-c-service-detail-image {
    width: 100%;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

@media (max-width: 992px) {
    .med-c-service-detail-item,
    .med-c-service-detail-item.reverse {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .med-c-service-detail-item.reverse .med-c-service-detail-content,
    .med-c-service-detail-item.reverse .med-c-service-detail-image {
        order: unset;
    }
}

/* ===========================
   医院案内ページ
   =========================== */
.med-c-clinic {
    background: #fafafa;
    padding: 100px 0;
}

.med-c-clinic-content {
    background: #fff;
    border-radius: 15px;
    padding: 50px;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.med-c-clinic-text h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
    border-left: 5px solid #1976d2;
    padding-left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.med-c-clinic-text h2 .med-c-service-icon {
    font-size: 36px;
}

.med-c-clinic-text p {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
}

.med-c-clinic-photo {
    width: 100%;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.med-c-clinic-info {
    background: #fff;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.med-c-clinic-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.med-c-clinic-info h2 .med-c-service-icon {
    font-size: 36px;
}

.med-c-clinic-table {
    width: 100%;
    border-collapse: collapse;
    background: #fafafa;
    border: 2px solid #1976d2;
}

.med-c-clinic-table th,
.med-c-clinic-table td {
    padding: 20px 30px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.med-c-clinic-table th {
    background: #1976d2;
    color: #fff;
    font-weight: 600;
    width: 200px;
    vertical-align: top;
}

.med-c-clinic-table td {
    background: #fff;
    color: #333;
    line-height: 2;
}

@media (max-width: 992px) {
    .med-c-clinic-content {
        grid-template-columns: 1fr;
    }
    
    .med-c-clinic-table th {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .med-c-clinic-table th,
    .med-c-clinic-table td {
        display: block;
        width: 100%;
    }
    
    .med-c-clinic-table th {
        padding-bottom: 10px;
    }
    
    .med-c-clinic-table td {
        padding-top: 10px;
    }
}

/* ===========================
   お問い合わせページ
   =========================== */
.med-c-contact {
    background: #fafafa;
    padding: 100px 0;
}

.med-c-contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.med-c-contact-intro p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.med-c-contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.med-c-contact-method {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.med-c-contact-method h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.med-c-contact-method h3 .med-c-service-icon {
    font-size: 28px;
}

.med-c-contact-method .med-c-btn-primary {
    margin-top: 20px;
    display: inline-block;
}

.med-c-contact-tel {
    font-size: 32px;
    font-weight: bold;
    color: #1976d2;
    margin: 20px 0;
}

.med-c-contact-method p {
    color: #666;
}

/* ===========================
   急患の場合は
   =========================== */
.med-c-emergency {
    background: #fff;
    border-radius: 15px;
    padding: 50px;
    margin-top: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.med-c-emergency h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.med-c-emergency h2 .med-c-service-icon {
    font-size: 32px;
}

.med-c-emergency-content {
    text-align: center;
}

.med-c-emergency-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.med-c-emergency-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    text-align: left;
}

.med-c-emergency-info p {
    background: #fafafa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 0;
}

.med-c-emergency-info p strong {
    display: block;
    color: #1976d2;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.med-c-access {
    background: #fff;
    padding: 100px 0;
}

.med-c-access-image {
    width: 100%;
    margin-bottom: 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.med-c-access-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.med-c-access-map iframe {
    border-radius: 15px;
}

.med-c-access-info {
    background: #fafafa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.med-c-access-info h2,
.med-c-access-info h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #1976d2;
    font-weight: 700;
    border-bottom: 3px solid #1976d2;
    padding-bottom: 15px;
}

.med-c-access-info p {
    margin-bottom: 20px;
    color: #333;
    line-height: 1.6;
}

.med-c-access-info p strong {
    display: block;
    color: #1976d2;
    font-weight: 600;
    margin-bottom: 5px;
}

@media (max-width: 992px) {
    .med-c-emergency-info {
        grid-template-columns: 1fr;
    }
    
    .med-c-access-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .med-c-contact-tel {
        font-size: 24px;
    }
}

