@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_03.jpg') 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;
}


/* ==============================
   Page Common
================================ */
.sub_content {
    width: 100%;
    overflow: hidden;
}

.content_inner {
    width: 1520px;
    margin: 0 auto;
    /* padding: 120px 0 150px; */
}


/* ==============================
   Title Common
================================ */
.title_box,
.section_title {
    text-align: center;
}

.title_box span,
.section_title span {
    display: block;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 800;
    color: #005baa;
    letter-spacing: 0.12em;
}

.title_box h3,
.section_title h3 {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    line-height: 1.35;
    letter-spacing: -0.05em;
}

.title_box strong {
    display: block;
    margin-top: 12px;
    font-size: 46px;
    font-weight: 900;
    color: #005baa;
    letter-spacing: -0.05em;
}

.section_title p {
    margin-top: 22px;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.7;
    color: #666;
    letter-spacing: -0.04em;
}

/* ==============================
   Intro
================================ */
.lasek_intro {
    margin-bottom: 140px;
}

.intro_box {
    display: grid;
    grid-template-columns: 720px 1fr;
    align-items: center;
    gap: 80px;
    margin-top: 70px;
}

.intro_img {
    height: 500px;
    overflow: hidden;
    /* background: #f5f5f5; */
}

.intro_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro_text {
    padding-right: 40px;
}

.intro_text p {
    margin-bottom: 22px;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.85;
    color: #444;
    letter-spacing: -0.04em;
    word-break: keep-all;
}

.intro_text p:last-child {
    margin-bottom: 0;
}

/* ==============================
   Target Section
================================ */
.target_section {
    margin-bottom: 140px;
    padding: 100px 90px;
    background: #f5f9fc;
}

.target_list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    margin-top: 60px;
}

.target_list li {
    min-height: 250px;
    padding: 42px 28px 38px;
    background: #fff;
    border: 1px solid #e5edf4;
    transition: 0.35s;
}

.target_list li:hover {
    transform: translateY(-10px);
    border-color: #005baa;
    box-shadow: 0 20px 40px rgba(0, 60, 120, 0.12);
}

.target_list li span {
    display: block;
    margin-bottom: 32px;
    font-size: 38px;
    font-weight: 900;
    color: #005baa;
    line-height: 1;
}

.target_list li p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.65;
    color: #333;
    letter-spacing: -0.04em;
    word-break: keep-all;
}

/* ==============================
   Solution Section
================================ */
.solution_section {
    width: 100%;
}

.solution_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
    margin-top: 70px;
}

.solution_card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 34px;
    align-items: center;
    min-height: 310px;
    padding: 36px;
    border: 1px solid #e5e5e5;
    background: #fff;
    transition: 0.35s;
}

.solution_card:hover {
    border-color: #005baa;
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 60, 120, 0.1);
}

.solution_img {
    height: 230px;
    overflow: hidden;
    /* background: #f3f3f3; */
}

.solution_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s;
}

.solution_card:hover .solution_img img {
    transform: scale(1.06);
}

.solution_text span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #005baa;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
}

.solution_text h4 {
    margin-bottom: 8px;
    font-size: 26px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.05em;
}

.solution_text strong {
    display: block;
    margin-bottom: 18px;
    font-size: 19px;
    font-weight: 800;
    color: #005baa;
    letter-spacing: -0.04em;
}

.solution_text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: #555;
    letter-spacing: -0.04em;
    word-break: keep-all;
}