@import url("base.css");
@import url("header.css");
@import url("footer.css");


/* ==============================
    Layout
============================== */
#sContainer {
    position: relative;
    margin-bottom: 200px;
}


/* ==============================
    Right Fixed Menu
============================== */
#right {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: 795px;
    transform: translateY(-50%);
    z-index: 100;
}

.doctor_consult {
    position: relative;
    width: 97px;
    height: 141px;
    margin-bottom: 30px;
    overflow: hidden;
}

.doctor_consult li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    opacity: 0;
    transition: opacity 0.5s ease;
}

.doctor_consult li.active {
    opacity: 1;
}

.doctor_consult li img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right_nav {
    margin-bottom: 10px;
    border-radius: 5px;
    background: #144891;
}


/* ==============================
    Sub Visual
============================== */
.sub_visual {
    width: 100%;
    margin-bottom: 50px;
    padding: 0;
}

.sub_visual_bg {
    position: relative;
    width: 100%;
    height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    background: url('/img/sub/bg_01.png') center center / cover no-repeat;
}

.sub_visual_bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;

    background: rgba(0, 0, 0, 0.48);
}

.sub_visual_inner {
    width: 1520px;
    margin: 0 auto;
}

.sub_visual_text {
    position: relative;
    z-index: 2;

    text-align: center;
    color: #fff;
}

.sub_visual_text .plus {
    font-family: 'Pretendard_SB';
    font-size: 40px;
    line-height: 1;
}

.sub_visual_text h2 {
    margin: 10px 0;

    font-family: 'Pretendard_SB';
    font-size: 48px;
}

.sub_visual_text p {
    margin: 0;

    font-size: 20px;
    color: #eee;
}


/* ==============================
    Sub Title
============================== */
.sub_title {
    margin-bottom: 80px;
    text-align: center;
}

.sub_title span {
    display: block;
    margin-bottom: 16px;

    font-size: 16px;
    font-weight: 700;
    color: #1459aa;
    letter-spacing: 0.16em;
}

.sub_title h2 {
    margin-bottom: 24px;

    font-size: 48px;
    font-weight: 800;
    color: #111;
}

.sub_title p {
    font-size: 22px;
    line-height: 1.6;
    color: #444;
}


.certificate_container {
    width: 100%;
    background: #fff;
}

.certificate_inner {
    width: 1520px;
    margin: 0 auto;
    /* padding: 100px 0 140px; */
}
.cert_intro {
    padding: 60px 70px;
    border-radius: 28px;
    background: #f5f8fc;
    margin-bottom: 80px;
}

.cert_intro h3 {
    font-size: 38px;
    font-weight: 800;
    color: #111;
    margin-bottom: 24px;
}

.cert_intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.call_info {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin: 32px 0 18px;
    padding: 18px 32px;
    border-radius: 50px;
    background: #1459aa;
    color: #fff;
}

.call_info span {
    font-size: 17px;
    font-weight: 600;
}

.call_info strong {
    font-size: 28px;
    font-weight: 900;
}

.notice {
    color: #1459aa !important;
    font-weight: 700;
}

.cert_section {
    margin-bottom: 80px;
}

.section_title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.section_title span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1459aa;
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section_title h3 {
    font-size: 32px;
    font-weight: 800;
    color: #111;
}

.process_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.process_list li {
    position: relative;
    min-height: 170px;
    padding: 36px 30px;
    border-radius: 22px;
    border: 1px solid #e4e8ef;
    background: #fff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.04);
}

.process_list li::after {
    content: "";
    position: absolute;
    right: -16px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #1459aa;
    border-right: 2px solid #1459aa;
    transform: translateY(-50%) rotate(45deg);
}

.process_list li:last-child::after {
    display: none;
}

.process_list span {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #1459aa;
    margin-bottom: 22px;
}

.process_list strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #111;
}

.table_wrap {
    width: 100%;
    overflow-x: auto;
}

.cert_table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid #111;
    table-layout: fixed;
}

.cert_table caption {
    display: none;
}

.cert_table th,
.cert_table td {
    padding: 22px 24px;
    border-bottom: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    word-break: keep-all;
}

.cert_table th:last-child,
.cert_table td:last-child {
    border-right: 0;
}

.cert_table thead th {
    background: #1459aa;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
}

.cert_table tbody th {
    background: #f7f9fc;
    color: #111;
    font-weight: 800;
    text-align: center;
    vertical-align: middle;
}

.cert_table td {
    background: #fff;
}

.table_notice {
    margin-top: 18px;
    font-size: 16px;
    color: #666;
}

.text_box {
    padding: 36px 42px;
    border-radius: 22px;
    background: #f7f9fc;
}

.text_box p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.text_box p + p {
    margin-top: 14px;
}

.dot_list {
    padding: 38px 44px;
    border-radius: 22px;
    border: 1px solid #e4e8ef;
    background: #fff;
}

.dot_list li {
    position: relative;
    padding-left: 18px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.dot_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #1459aa;
}

.download_area {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    padding: 42px;
    border-radius: 24px;
    background: #111;
}

.download_btn {
    min-width: 120px;
    height: 40px;
    padding: 0 10px;
    border-radius: 20px; 
    background: #1459aa;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
}