/* ========================================
   基本設定（wellness-yaita.com風）
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background: #fff;
}

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

a {
    color: #0066cc;
    text-decoration: none;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.4;
}

.bg-light {
    background: #f7f9fc;
}

.bg-primary {
    background: #0066cc;
    color: #fff;
}

/* ========================================
   固定CTA（LINE最優先）
======================================== */
.fixed-cta {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta-btn {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    min-width: 180px;
    transition: transform 0.3s;
}

.cta-btn:hover {
    transform: translateX(-5px);
    opacity: 1;
}

.cta-line {
    background: #06c755;
}

.cta-request {
    background: #ff6b35;
}

.cta-briefing {
    background: #0066cc;
}

.cta-tel {
    background: #555;
}

/* ========================================
   ヘッダー
======================================== */
.site-header,
.header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.header-container,
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header-logo h1,
.logo h1 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.header-logo h1 a,
.logo h1 a {
    color: #333;
}

.header-logo .campus-name,
.logo span {
    font-size: 22px;
    color: #0066cc;
    display: block;
}

.header-nav ul,
.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.header-nav a,
.nav a {
    color: #333;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
}

.header-nav a.active {
    color: #0066cc;
    font-weight: 700;
}

.header-contact {
    text-align: right;
    display: none; /* PC では非表示 */
}

.header-contact .tel {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
}

.header-contact .hours {
    font-size: 12px;
    color: #666;
}

/* ========================================
   ヒーロー
======================================== */
.hero {
    background: #f7f9fc;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-inner img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-text {
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.hero-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-lead {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
}

.hero-sub {
    font-size: 16px;
}

/* ========================================
   LINE専用ブロック
======================================== */
.line-block {
    background: #f0f8ff;
    padding: 40px 0;
    border-top: 4px solid #06c755;
}

.line-block-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.line-block-text {
    flex: 1;
}

.line-block-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #06c755;
}

.line-block-text p {
    font-size: 16px;
    margin-bottom: 16px;
}

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

.line-benefits li {
    padding: 8px 0;
    font-weight: 500;
}

.line-block-qr {
    text-align: center;
}

.line-block-qr img {
    max-width: 180px;
    margin-bottom: 8px;
}

.line-block-qr p {
    font-size: 14px;
    color: #666;
}

/* ========================================
   ボタン
======================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-line {
    background: #06c755;
    color: #fff;
}

.btn-line:hover {
    background: #05a847;
    opacity: 1;
}

.btn-line-large {
    background: #06c755;
    color: #fff;
    padding: 18px 48px;
    font-size: 18px;
}

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

.btn-white:hover {
    background: transparent;
    color: #fff;
    opacity: 1;
}

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

.btn-outline:hover {
    background: #0066cc;
    color: #fff;
    opacity: 1;
}

/* ========================================
   イントロ
======================================== */
.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.9;
    text-align: center;
}

/* ========================================
   コース紹介
======================================== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.course-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 0 0 32px 0;
}

.course-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.course-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 24px 24px 12px 24px;
}

.course-card p {
    padding: 0 24px;
    margin-bottom: 16px;
}

.course-features {
    list-style: none;
    padding: 0 24px;
    margin-bottom: 24px;
}

.course-features li {
    padding: 6px 0;
    color: #666;
}

.course-card .btn {
    margin: 0 24px;
}

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

.reason-item {
    padding: 32px;
    background: #f7f9fc;
    border-radius: 12px;
    border-left: 4px solid #0066cc;
}

.reason-num {
    font-size: 48px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 16px;
    line-height: 1;
}

.reason-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* ========================================
   CTA セクション
======================================== */
.cta-section {
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.contact-info {
    margin-top: 24px;
}

.contact-tel, .contact-email {
    font-size: 16px;
    margin: 8px 0;
}

.contact-tel a, .contact-email a {
    color: #fff;
    font-weight: 700;
}

/* ========================================
   フッター
======================================== */
.site-footer,
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 0 24px 0;
}

.footer-container,
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-info p {
    margin: 8px 0;
    line-height: 1.8;
}

.footer-address, .footer-tel, .footer-email, .footer-hours {
    margin: 8px 0;
}

.site-footer a,
.footer a {
    color: #fff;
}

.footer-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.footer-bottom,
.footer-copy {
    text-align: center;
    font-size: 14px;
    color: #aaa;
    border-top: 1px solid #444;
    padding-top: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   ページヒーロー（下層ページ用）
======================================== */
.page-hero {
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 16px;
}

/* ========================================
   悩みカード（初めての方へ）
======================================== */
.worry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.worry-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
}

.worry-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0066cc;
}

.worry-card p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.worry-answer {
    background: #f0f8ff;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

/* ========================================
   フローステップ
======================================== */
.flow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.flow-step {
    text-align: center;
    padding: 32px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.flow-num {
    display: inline-block;
    background: #0066cc;
    color: #fff;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 24px;
    margin-bottom: 20px;
}

.flow-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* ========================================
   転入・編入情報
======================================== */
.transfer-info {
    max-width: 800px;
    margin: 0 auto;
}

.transfer-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 32px 0 16px 0;
    color: #0066cc;
}

.transfer-steps {
    background: #f7f9fc;
    padding: 24px 24px 24px 48px;
    border-radius: 8px;
    margin: 16px 0;
}

.transfer-steps li {
    margin: 12px 0;
    line-height: 1.8;
}

.note {
    background: #fff3cd;
    border-left: 4px solid #ff6b35;
    padding: 12px 16px;
    margin: 16px 0;
    border-radius: 4px;
}

/* ========================================
   質問テンプレ
======================================== */
.template-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 32px auto;
}

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

.template-card {
    background: #f7f9fc;
    padding: 24px;
    border-radius: 12px;
}

.template-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0066cc;
}

.template-card ul {
    list-style: none;
}

.template-card li {
    padding: 6px 0;
    line-height: 1.6;
}

.template-note {
    text-align: center;
    margin-top: 24px;
    font-weight: 500;
}

/* ========================================
   LINEテンプレボタン
======================================== */
.line-cta-template {
    background: #f0f8ff;
    padding: 60px 0;
}

.line-cta-template .section-title {
    margin-bottom: 16px;
}

.line-cta-template > .container > p {
    text-align: center;
    margin-bottom: 32px;
}

.template-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.template-button {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.template-button h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0066cc;
}

.template-button textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    resize: vertical;
    font-family: 'Noto Sans JP', sans-serif;
}

.template-button .btn {
    width: 100%;
    text-align: center;
}

/* ========================================
   電話番号はスマホのみ表示
======================================== */
.tel-only-sp {
    display: none;
}

@media (max-width: 768px) {
    .tel-only-sp {
        display: block;
    }
}

/* ========================================
   レスポンシブ
======================================== */
@media (max-width: 768px) {
    .site-header,
    .header {
        padding: 15px 0;
    }

    .header-container,
    .header-inner {
        flex-direction: column;
        gap: 16px;
    }

    .header-logo h1,
    .logo h1 {
        font-size: 16px;
        text-align: center;
    }

    .header-logo .campus-name,
    .logo span {
        font-size: 18px;
    }

    .header-contact {
        display: block; /* スマホでは表示 */
        text-align: center;
    }

    .header-nav ul,
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        font-size: 13px;
    }

    .header-nav li,
    .nav li {
        flex: 0 0 auto;
    }

    .header-nav a,
    .nav a {
        font-size: 13px;
        padding: 5px 10px;
    }

    .fixed-cta {
        bottom: 0;
        top: auto;
        right: 0;
        left: 0;
        transform: none;
        flex-direction: row;
        justify-content: space-around;
    }

    .cta-btn {
        border-radius: 0;
        min-width: auto;
        flex: 1;
        font-size: 12px;
        padding: 10px 8px;
    }

    .hero-text {
        padding: 30px 20px;
    }

    .hero-text h2 {
        font-size: 24px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .hero-sub {
        font-size: 14px;
    }

    .line-block-inner {
        flex-direction: column;
    }

    .courses-grid, .reasons-grid {
        grid-template-columns: 1fr;
    }

    .footer-container,
    .footer-inner {
        flex-direction: column;
        gap: 32px;
    }

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

    .section-title {
        font-size: 24px;
    }

    .worry-grid, .template-grid, .flow-steps, .template-buttons {
        grid-template-columns: 1fr;
    }

    .daily-schedule,
    .annual-events,
    .club-list,
    .facilities-list,
    .equipment-list,
    .uniform-info,
    .environment-features,
    .testimonials,
    .recommend-grid,
    .specialized-courses,
    .career-paths,
    .visit-options {
        grid-template-columns: 1fr;
    }

    .schedule-item,
    .point-item,
    .facility-card {
        flex-direction: column;
        text-align: center;
    }

    .schedule-time,
    .point-icon,
    .facility-icon,
    .feature-number {
        margin: 0 auto 10px auto;
    }

    .course-intro {
        flex-direction: column;
    }

    .course-intro-image {
        flex: 1;
        max-width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .schedule-table {
        font-size: 14px;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 10px;
    }
}

/* ========================================
   パンくずリスト
======================================== */
.breadcrumb-container {
    background: #f7f9fc;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    list-style: none;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 14px;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
    color: #999;
}

.breadcrumb a {
    color: #0066cc;
}

.breadcrumb li:last-child {
    color: #666;
}

/* ========================================
   学校生活ページ
======================================== */
.daily-schedule {
    max-width: 900px;
    margin: 0 auto;
}

.schedule-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: #f7f9fc;
    border-radius: 12px;
    margin-bottom: 16px;
}

.schedule-time {
    flex: 0 0 100px;
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
}

.schedule-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.schedule-content p {
    color: #666;
    line-height: 1.7;
}

.annual-events {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
}

.event-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0066cc;
}

.event-card ul {
    list-style: none;
}

.event-card li {
    padding: 6px 0;
    line-height: 1.6;
    color: #666;
}

.club-activities {
    max-width: 1000px;
    margin: 0 auto;
}

.club-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
}

.club-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.club-card {
    background: #f7f9fc;
    padding: 24px;
    border-radius: 12px;
}

.club-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0066cc;
}

.club-card p {
    color: #666;
    line-height: 1.7;
}

.uniform-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.uniform-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.uniform-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0066cc;
}

.uniform-card p {
    color: #666;
    line-height: 1.7;
}

.school-life-points {
    max-width: 900px;
    margin: 0 auto;
}

.point-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: #f7f9fc;
    border-radius: 12px;
    margin-bottom: 16px;
}

.point-icon {
    flex: 0 0 60px;
    font-size: 40px;
}

.point-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.point-content p {
    color: #666;
    line-height: 1.7;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
}

.testimonial-text {
    color: #333;
    line-height: 1.8;
    margin-bottom: 16px;
}

.testimonial-author {
    text-align: right;
    color: #666;
    font-size: 14px;
    font-weight: 700;
}

/* ========================================
   施設紹介ページ
======================================== */
.intro-text {
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 16px;
    line-height: 1.9;
    text-align: center;
}

.facilities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.facility-card {
    display: flex;
    gap: 20px;
    background: #f7f9fc;
    padding: 24px;
    border-radius: 12px;
}

.facility-icon {
    flex: 0 0 60px;
    font-size: 40px;
}

.facility-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0066cc;
}

.facility-content p {
    color: #666;
    line-height: 1.7;
}

.environment-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-box {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.feature-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0066cc;
}

.feature-box p {
    color: #666;
    line-height: 1.7;
}

.equipment-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.equipment-item {
    background: #f7f9fc;
    padding: 24px;
    border-radius: 12px;
}

.equipment-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0066cc;
}

.equipment-item ul {
    list-style: none;
}

.equipment-item li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.equipment-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.visit-info {
    max-width: 900px;
    margin: 0 auto;
}

.visit-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
}

.visit-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.visit-card {
    background: #f7f9fc;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.visit-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0066cc;
}

.visit-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.visit-card .btn {
    display: inline-block;
}

/* ========================================
   チャレンジコースページ
======================================== */
.course-intro {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.course-intro-image {
    flex: 0 0 400px;
}

.course-intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.course-intro-text {
    flex: 1;
}

.course-intro-text p {
    line-height: 1.8;
    margin-bottom: 16px;
}

.recommend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.recommend-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.recommend-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0066cc;
}

.recommend-card p {
    color: #666;
    line-height: 1.7;
}

.features-list {
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: #f7f9fc;
    border-radius: 12px;
    margin-bottom: 16px;
}

.feature-number {
    flex: 0 0 60px;
    height: 60px;
    background: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-content p {
    color: #666;
    line-height: 1.7;
}

.specialized-courses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.specialized-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
}

.specialized-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0066cc;
}

.specialized-card p {
    color: #666;
    line-height: 1.7;
}

.schedule-example {
    max-width: 800px;
    margin: 0 auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}

.schedule-table th,
.schedule-table td {
    padding: 16px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.schedule-table thead {
    background: #0066cc;
    color: #fff;
}

.schedule-table tbody tr:nth-child(even) {
    background: #f7f9fc;
}

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

.career-paths {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.career-card {
    background: #f7f9fc;
    padding: 24px;
    border-radius: 12px;
}

.career-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0066cc;
}

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

.career-card li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.career-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

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

.faq-item {
    background: #f7f9fc;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0066cc;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
}

.cta-section {
    text-align: center;
}

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

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

.contact-tel {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-tel a {
    color: #0066cc;
}

.contact-hours {
    font-size: 14px;
    color: #666;
}

.note {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 24px;
}