/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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;
}


/* =========================
   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.jpg') center / cover no-repeat;
        width: 100%;
        height: auto;
        min-height: unset;
        aspect-ratio: 400 / 765;
    }

    .hero_title {
        padding: 0 20px;
		margin-bottom: 0px;
		bottom: 6%;
    }

	.sect_title {
        padding: 0 20px;
        margin-bottom: 20px;
    }

	.hero_title h1,
    .sect_title h1 {
        font-size: 45px;
        line-height: 1.2;
    }

    .hero_title h2,
    .sect_title h2 {
        font-size: 29px;
        line-height: 1.2;
    }

    .hero_title p,
    .sect_title p {
		font-size: 15px;
        margin-top: 10px;
        line-height: 24px;
        margin-bottom: 15px;
    }

	.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;
    }
}