/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0b0b0b;
    font-family: "Pretendard Variable", Pretendard,
                 -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

.no_margintop {
    margin-top: 0px !important;
}

/* =========================
   Section1
========================= */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 420px;
    background: url('/landing/img/en/section1.jpg') center / cover no-repeat;
}

.hero_title {
    position: absolute;
    bottom: 18%;
    left: 0;
    width: 100%;
    padding: 0 250px;
}

.hero_title h1 {
    font-size: 100px;
    font-weight: 700;
    line-height: 1.1;
    text-indent: -0.05em;
	margin-bottom: 20px;
}

.hero_title h2 {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.1;
    text-indent: -0.05em;
}

.hero_title p {
    margin-top: 30px;
    font-size: 24px;
    opacity: 0.8;
	font-weight: 300;
	line-height: 36px;
}

.hero_btn_mo {
    display: none;
}

.point_mo {
    color: inherit;
}

/* =========================
   Section 2
========================= */

.doctor_sect {
    background: #fff;
    color: #000;
    padding: 60px 15px 0px 15px;
}

.sect_title_s h2,
.pc_title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    text-indent: -0.05em;
    color: #11386d;
}

.sect_title_s h2 {
    text-align: center;
    margin-bottom: 40px;
}

.pc_title {
	font-size: 45px;
    margin-bottom: 60px;
}


.doctor_profile {
    display: flex;
    align-items: center;
    gap: 60px;

    max-width: 1450px;
    margin: 0 auto;
}

.doctor_img {
    flex-shrink: 0;
}

.doctor_img img {
    max-width: 100%;
    height: auto;
    display: block;
}

.doctor_img .doctor_img_pc {
    display: block;
}

.doctor_img .doctor_img_mo {
    display: none;
}

.doctor_info {
	margin-bottom: 50px;
}

.doctor_info h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.doctor_history {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
	font-size: 18px;
}

.doctor_history li {
    margin-bottom: 8px;
    line-height: 1.6;
    text-align: left;
}

.mo_only {
    display: none;
}

/* =========================
   Mobile
========================= */

@media (max-width: 768px) {
	.doctor_sect {
		padding: 80px 15px;
	}

    .doctor_profile {
        flex-direction: column;
        text-align: center;
		gap: 40px;
    }

    .doctor_info {
        text-align: left;
        width: 100%;
		margin-bottom: 0px;
    }

    .pc_title {
        display: none;
    }

    .mo_only {
        display: block;
    }

    .doctor_img .doctor_img_pc {
        display: none;
    }

    .doctor_img .doctor_img_mo {
        display: block;
        margin: 0 auto;
    }

	.doctor_info h3 {
		font-size: 20px;
	}

	.doctor_history {
		font-size: 16px;
	}
}




/* =========================
   Section 3 / 4
========================= */
.clinic_sect {
    padding: 120px 0 140px;
    background-color: #11386d;
}

.sect_title {
    text-align: left;
    margin-bottom: 50px;
    padding: 0 40px;
}

.sect_title h2 {
    font-size: 75px;
    font-weight: 700;
    line-height: 1.1;
    text-indent: -0.05em;
}

.sect_title p {
    margin-top: 14px;
    font-size: 20px;
    opacity: 0.8;
}

.clinic_wrap {
    padding: 0 40px;
}

.clinic_list {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    justify-content: space-around;
}

.clinic_list::-webkit-scrollbar {
    display: none;
}

.item {
    position: relative;
    flex: 0 0 440px;
    height: 400px;
    border-radius: 22px;
    overflow: hidden;
    transition: flex-grow 0.45s ease, flex-basis 0.45s ease;
}

.small {
    flex: 0 0 283px;
}

.clinic_list:has(.item:hover) .item {
    flex-basis: 380px;
}

.clinic_list:has(.small:hover) .item {
    flex-basis: 260px;
}

.clinic_list .item:hover {
    flex-grow: 1.1;
    flex-basis: 260px;
}

.clinic_list .small:hover {
    flex-grow: 0.5;
    flex-basis: 260px;
}

.img_box {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 22px;
}

.img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
}

.item:hover .img_box img {
    object-position: center left;
}

.item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
}

.info_box {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 60px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.info_text {
    max-width: calc(100% - 20px);
}

.info_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.info_desc {
    opacity: 0.75;
    line-height: 1.4;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.info_arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.item:hover .info_title {
    font-size: 33px;
}

.item:hover .info_desc {
    font-size: 20px;
    max-height: 60px;
}

.item:hover .info_arrow {
    opacity: 1;
    transform: translateX(0);
}

.card_img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card_img.mo {
    display: none;
}

/* =========================
   Map Section
========================= */

.map_sect {
    background: #fff;
    color: #000;
    padding: 120px 0;
}

.map_wrap {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.map_box {
    flex: 1.2;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    background: #eee;
}

.map_box iframe,
.map_box #map {
    width: 100%;
    height: 100%;
    border: 0;
}

.map_info {
    flex: 1;
}

.address {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.map_buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
	border-bottom: 1px solid #d7d7d7;
    padding-bottom: 40px;
	width: 100%
}

.map_buttons .btn {
    display: inline-flex;
    align-items: center;
	justify-content: center;
    gap: 5px;
    padding: 12px 10px;
    border-radius: 8px;
    font-size: 15px;
    background: #white;
    color: #000;
	border: 1px solid #aaaaaa;
	width: 20%;
}

.btn_icon {
    width: 17px;
    height: 17px;
    display: block;
}

.hours h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}

.hours ul {
    list-style: none;
}

.hours li {
    display: flex;
    font-size: 14px;
    padding: 6px 0;
}

.hours li .fix_w {
	width: 100px;
}

/* =========================
   Footer Section
========================= */

.footer {
	background-color: #11386d;
	color: #fff;
	font-size: 14px;
	padding: 40px 20px;
}

.footer-inner {
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}

.footer-left {
	display: flex;
    align-items: center;
}

.footer-center,
.footer-right {
	flex: 1 1 300px;
}

.footer-logo {
	width: 120px;
}

.footer-center {
	font-size: 13px;
	line-height: 1.6;
}

/* =========================
   Mobile
========================= */
@media (max-width: 768px) {
    .hero {
        background: url('/landing/img/en/m_section1-2.jpg') center / cover no-repeat;
        width: 100%;
        height: auto;
        min-height: unset;
        aspect-ratio: 449 / 840;
    }

    .hero_title {
        padding: 0 20px;
		margin-bottom: 0px;
		bottom: 9%;
    }

	.sect_title {
        padding: 0 20px;
        margin-bottom: 20px;
    }

	.hero_title h1,
    .sect_title h1 {
        font-size: 45px;
        line-height: 1.2;
    }

    .hero_title h2 {
        font-size: 26px;
        line-height: 1.2;
		margin-bottom: 25px;
    }

    .sect_title h2 {
        font-size: 29px;
        line-height: 1.2;
    }

    .hero_title p {
		font-size: 16px;
        line-height: 24px;
        margin-bottom: 40px;
    }

    .sect_title p {
		font-size: 15px;
        margin-top: 10px;
        line-height: 24px;
        margin-bottom: 15px;
    }

	.point_mo {
        color: #cccccc;
		font-size: 22px;
		font-weight: 500;
    }

	.hero_btn_mo {
        display: flex;
        flex-direction: column;
        gap: 13px;
    }

    .hero_btn_mo .hero_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80%;
        height: 48px;
        font-size: 18px;
        font-weight: 700;
        text-decoration: none;
        border-radius: 10px;
        box-sizing: border-box;
    }

    .hero_btn_mo .hero_btn_blue {
        background: #9fc1e8;
        color: black;
    }

    .hero_btn_mo .hero_btn_white {
        background: #ffffff;
        color: black;
    }

	.sect_title_s h2 {
		font-size: 25px;
	}

    .clinic_wrap {
        padding: 0 20px;
    }

    .clinic_list {
        display: flex;
        flex-direction: column;
        gap: 14px;
        overflow: visible;
    }

	.clinic_sect {
        padding: 60px 0 80px;
    }

    .item {
        width: 100%;
        height: 200px;
        flex: none;
        border-radius: 16px;
    }

    .card_img.pc {
        display: none;
    }

    .card_img.mo {
        display: block;
    }

    .img_box img {
        object-fit: cover;
    }

	.small {
        flex: none;
    }

    .info_box {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .info_title {
        margin-bottom: 4px;
    }

    .info_desc {
        font-size: 14px;
        opacity: 0.85;
        max-height: none;
    }

    .info_arrow {
        width: 32px;
        height: 32px;
        font-size: 16px;
        opacity: 1;
        transform: none;
    }

    .quickbar {
        right: 25px;
        bottom: 25px;
    }

    .quickbar a {
        width: 65px;
        height: 65px;
    }

	.map_sect {
        padding: 80px 0;
    }

    .map_wrap {
        flex-direction: column;
        gap: 0px;
        padding: 0 20px;
    }

    .map_box {
        height: 210px;
        width: 100%;
        flex: none;
    }

    .map_buttons {
        flex-wrap: wrap;
		border-bottom: none;
		padding-bottom: 0px;
		order: 2;
        margin-bottom: 20px;
    }

	.map_buttons .btn {
		width: 48%;
	}

	.map_info {
        display: contents;
    }

    .address {
		font-size: 17px;
        order: 1;
		margin-bottom: 20px;
		font-weight: 500;
    }

    .map_box {
        order: 3;
        margin-bottom: 35px;
    }

    .hours {
        order: 4;
    }

	.hours h4 {
		font-size: 17px;
	}

	.hours li {
		font-size: 15px;
		padding: 5px 0;
	}

	.view-more {
        display: none !important;
    }

	.footer {
		text-align: center;
		padding: 40px 20px;
	}

	.footer-inner {
		display: block;
	}

	.footer-left {
		display: block;
		margin-bottom: 20px;
	}
}

/* =========================
   PC / Mobile br처리
========================= */
.pc_only {
    display: inline;
}
.mo_only {
    display: none;
}

@media (max-width: 768px) {
    .pc_only {
        display: none;
    }
	.mo_only {
        display: inline;
    }
}

/* =========================
   Mobile – hover 완전 제거
========================= */
@media (hover: none), (pointer: coarse) {

    .clinic_list:has(.item:hover) .item,
    .clinic_list .item:hover {
        flex-grow: 0 !important;
        flex-basis: auto !important;
        transform: none !important;
    }

    .item:hover .img_box img {
        object-position: center !important;
        transform: none !important;
    }

    .item:hover .info_title {
        font-size: inherit !important;
    }

    .item:hover .info_desc {
        font-size: inherit !important;
        max-height: none !important;
    }

    .item:hover .info_arrow {
        opacity: 1 !important;
        transform: none !important;
    }
}

@font-face {
    font-family: 'GmarketSansLight';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GmarketSansBold';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@media (min-width: 1025px) {
.mo_br {display:none;}
.global_map {width: 100vw; max-width:1903px; height: 31.14583vw; background-image: url('/new/img/main/global_map_en.png'); background-size: cover; position: relative;}
.global_map .title_text {width: 26.5625vw; height: 6.927083vw; position: absolute; top: 11.09375vw; left: 2.6vw;}
.global_map .title_text p {font-size: 1.979167vw; padding:0; margin:0; line-height: 1.4; color: white; font-family:'GmarketSansLight'; letter-spacing: -1px;}
.global_map .title_text p span {font-family:'GmarketSansBold';}
.global_map .asia_box {width: 4.166667vw; height: 4.166667vw; display: flex;  align-items:center; justify-content:center; position: absolute; top: 9.1vw; left: 57.9vw;}
.global_map .asia_box p {font-size: 2.1875vw; font-weight: 700; font-family:'GmarketSansBold' !important;}
.global_map .asia_box p .pct {font-size: 1.25vw;}
.global_map .eu_box {width: 3.125vw; height: 3.125vw; display: flex;  align-items:center; justify-content:center; position: absolute; top: 10.8vw; left: 48.2vw;}
.global_map .eu_box p {font-size: 1.354167vw; font-family:'GmarketSansBold' !important;}
.global_map .eu_box p .pct {font-size: 0.833333vw;}
.global_map .af_box {width: 2.08333vw; height: 2.08333vw; display: flex;  align-items:center; justify-content:center; position: absolute; top: 17.65vw; left: 43.7vw;}
.global_map .af_box p {font-size: 1.041667vw; font-family:'GmarketSansBold' !important;}
.global_map .af_box p .pct {font-size: 0.625vw;}
.global_map .na_box {width: 3.125vw; height: 3.125vw; display: flex;  align-items:center; justify-content:center; position: absolute; top: 10.3vw; left: 35.61875vw;}
.global_map .na_box p {font-size: 1.666667vw; font-family:'GmarketSansBold' !important;}
.global_map .na_box p .pct {font-size: 1.041667vw;}
.global_map .country p{color : #003B81; padding:0; margin: 0;}
.global_map .global_num { font-weight: normal !important;}
.global_map .count_title_box {width: 23.02083vw; height: 10vw; position: absolute; top: 10.9375vw; right: 7.6vw;}
.global_map .count_title_box p {margin:0; padding:0; height: 1.5625vw; margin-bottom: 1.25vw; font-size: 1.510417vw; font-family:'GmarketSansMedium'; color: white; display: flex; align-items: center; line-height: 1; letter-spacing: -1px;}
.global_map .count_title_box p:last-child {font-size:1.015625vw;}
.global_map .count_title_box p span {color: #7A9ABF; font-family:'GmarketSansMedium';}
.global_map .count_num_box {width: 3.645833vw; height: 10vw; position: absolute; top: 10.9375vw; right: 4.166667vw;}
.global_map .count_num_box p {margin:0; padding:0; height: 1.5625vw; margin-bottom: 1.25vw; font-size: 1.510417vw; font-family:'GmarketSansMedium'; color: #0BB7FF; display: flex; align-items: center; line-height: 1; letter-spacing: -1px;}
.global_map .count_num_box p span {font-family:'GmarketSansMedium';}
}
@media (max-width: 1024px) {
.mo_br {display:block;}
.global_map {width: 100vw; height: 178.75vw; background-image: url('/new/img/main/global_map2_en_m.png'); background-size: cover; position: relative;}
.global_map .title_text{position: absolute; top: 20vw; left: 8vw; width: 84vw; height: 21vw;}
.global_map .title_text p {color: white; font-family:'GmarketSansLight'; font-size:6.25vw; margin:0; padding:0; text-align:center; line-height: 1.2; letter-spacing: -0.5px;}
.global_map .title_text p span {font-family:'GmarketSansMedium';}
.global_map .asia_box {position: absolute;  top:63.5vw; right: 15.5vw;}
.global_map .asia_box p {font-size: 6vw;}
.global_map .asia_box p .pct {font-size: 3vw;}
.global_map .eu_box {position: absolute;  top:67.5vw; right: 43.5vw;}
.global_map .eu_box p {font-size: 4vw;}
.global_map .eu_box p .pct {font-size: 2vw;}
.global_map .na_box {position: absolute;  top:66.7vw; left: 18.7vw;}
.global_map .na_box p {font-size: 4.8vw;}
.global_map .na_box p .pct {font-size: 2.4vw;}
.global_map .af_box {position: absolute;  top:86.2vw; left: 39.5vw;}
.global_map .af_box p {font-size: 3.5vw;}
.global_map .af_box p .pct {font-size: 1.5vw;}
.global_map .country p{color : #003B81; padding:0; margin: 0; font-family:'GmarketSansBold' !important;}
.global_map .count_title_box {position: absolute; bottom:20vw; left: 10vw;}
.global_map .count_title_box p {margin:0; padding:0; margin-bottom: 3.75vw; font-size: 4vw; font-family:'GmarketSansBold'; color: white; line-height: 1.35; letter-spacing: -1px;}
.global_map .count_title_box p:last-child {margin-bottom: 0; letter-spacing:}
.global_map .count_title_box p span {color: #7A9ABF; font-family:'GmarketSansMedium';}
.global_map .count_num_box {position: absolute; bottom:20vw; right: 10.5vw;}
.global_map .count_num_box p {margin:0; padding:0; margin-bottom: 3.75vw; height: 9.6vw; font-size: 5.5vw; font-family:'GmarketSansBold'; color: #0BB7FF; display: flex; align-items: center; line-height: 1.2;}
.global_map .count_num_box p:last-child {margin-bottom: 0;}
}