.education-page {
    padding: 60px 20px;
}

.education-container {
    max-width: 1100px;
    margin: auto;
}

.edu-title {
    text-align: center;
    margin-bottom: 20px;
}

.edu-title h1 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.edu-title h1::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #ff4a4a;
}

.edu-title p {
    color: #666;
    margin-top: 10px;
}

.edu-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 14px;
    margin: 20px 0;
}

.edu-lead {
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.edu-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.edu-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: center top;
}

.edu-card:nth-child(1) img {
    object-position: center 87%;
}

.section-head img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.edu-card-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
}

.edu-card-bar .left-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.edu-card-bar .left-icon-box {
    width: 40px;
    height: 40px;
    background: #FEF2F2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edu-card-bar .arrow-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    opacity: 0.7;
    transition: .2s;
}

.edu-body {
    padding: 0 15px 15px 15px;
}

.edu-body h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.edu-body p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tags span {
    border: 1px solid #ddd;
    color: #455;
    padding: 4px 8px;
    font-size: 15px;
    border-radius: 15px;
    background: #F8FAFC;
}

/* ===== 教育 会社概要 ===== */

.edu-company {
    margin-top: 60px;
}

.edu-company .company-box {
    background: #fff;
    border-radius: 16px;
    padding: 30px 40px;
    border: 1px solid #e3e6ea;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

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

.edu-company th {
    width: 180px;
    text-align: left;
    color: #6b7280;
    font-weight: 500;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.edu-company td {
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 500;
}

.edu-company tr:last-child th,
.edu-company tr:last-child td {
    border-bottom: none;
}

/* =========================
スマホレスポンシブ
========================= */
@media (max-width:768px) {
    /* ===== TITLE ===== */

    .edu-title h1 {
        font-size: 26px;
    }

    .edu-title p {
        font-size: 14px;
    }

    /* ===== HERO ===== */

    .edu-hero img {
        height: 220px;
        border-radius: 10px;
        margin: 16px 0;
    }

    .edu-lead {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .edu-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .edu-card img {
        height: 180px;
    }

    .edu-card-bar {
        padding: 10px 14px;
    }

    .edu-card-bar .left-icon-box {
        width: 34px;
        height: 34px;
    }

    .edu-card-bar .left-icon {
        width: 18px;
        height: 18px;
    }

    .edu-card-bar .arrow-icon {
        width: 16px;
        height: 16px;
    }

    .edu-body {
        padding: 0 14px 14px 14px;
    }

    .edu-body h3 {
        font-size: 15px;
    }

    .edu-body p {
        font-size: 13px;
    }

    .tags span {
        font-size: 12px;
        padding: 3px 8px;
    }

    .edu-company {
        margin-top: 40px;
    }

    .edu-company .company-box {
        padding: 20px;
    }

    .edu-company th {
        width: 110px;
        font-size: 13px;
        padding: 12px 0;
    }

    .edu-company td {
        font-size: 13px;
        padding: 12px 0;
    }

}