@charset "UTF-8";

    .pop_wrap_paper { max-width: 720px; }
    .pop_paper_tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
    .pop_paper_tab { display: inline-block; padding: 6px 14px; background: #f0f4f8; border-radius: 20px; font-size: 14px; color: #333; font-weight: 500; border: none; cursor: pointer; transition: background 0.2s, color 0.2s; }
    .pop_paper_tab:hover { background: #dce6f0; }
    .pop_paper_tab.active { background: #1a5c9e; color: #fff; }
    .pop_paper_panel { display: none; }
    .pop_paper_panel.active { display: block; }
    .pop_paper_list { list-style: none; padding: 0; margin: 0; counter-reset: paper; max-height: 400px; overflow-y: auto; }
    .pop_paper_list li { counter-increment: paper; position: relative; padding: 14px 0 14px 36px; border-bottom: 1px solid #eee; font-size: 14px; line-height: 1.7; color: #444; }
    .pop_paper_list li:last-child { border-bottom: none; }
    .pop_paper_list li::before { content: counter(paper) "."; position: absolute; left: 0; top: 14px; font-weight: 700; color: #1a5c9e; }
    .pop_paper_list li em { font-style: normal; }

.ptxt { margin-bottom: 70px; }
.ptxt.center { text-align: center; }
.ptxt h2 { font-size: var(--fs42); font-weight: 600; display: inline-block; position: relative; }

/* PC 헤더 */
#header { width: 100%; position: fixed; top: 0; left: 0; z-index: 999; background: #fff; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); transition: 0.3s all; }
.header_width { width: 92%; margin: 0 auto; max-width: 1700px; }
.head_menu { display: flex; justify-content: space-between; align-items: center; height: 100px; }
.head_menu .logo a { display: block; }
.head_menu .logo img { width: 100%; }
.main_menu { display: flex; align-items: center; }
.main_menu .dept1 { padding: 36px 20px; text-align: center; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100px; gap: 4px; cursor: pointer; }
.main_menu .dept1 .nav_active { width: 11px; height: 11px; opacity: 0; transition: 0.3s opacity; }
.main_menu .dept1.on .nav_active { opacity: 1; }
.main_menu .dept1 > a { font-size: var(--fs18); font-weight: 500; color: #111; letter-spacing: -0.45px; white-space: nowrap; }
.main_menu .dept1 > a:hover { color: var(--color); }
.main_menu .dept1.on > a { color: var(--color); }

/* 모바일 헤더 */
.mob_header { display: none; position: fixed; top: 0; left: 0; width: 100%; z-index: 999; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15); }
.mob_header_top { display: flex; justify-content: space-between; align-items: center; height: 60px; padding: 0 15px; }
.mob_logo { width: 200px; }
.mob_logo img { width: 100%; }
.mob_menu_btn { width: 30px; height: 24px; position: relative; background: none; border: none; cursor: pointer; padding: 0; }
.mob_menu_btn span { display: block; width: 100%; height: 2px; background: #333; position: absolute; left: 0; transition: 0.3s all; }
.mob_menu_btn span:nth-child(1) { top: 0; }
.mob_menu_btn span:nth-child(2) { top: 11px; }
.mob_menu_btn span:nth-child(3) { top: 22px; }
.mob_header.open .mob_menu_btn span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.mob_header.open .mob_menu_btn span:nth-child(2) { opacity: 0; }
.mob_header.open .mob_menu_btn span:nth-child(3) { top: 11px; transform: rotate(-45deg); }
.mob_nav { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: #fff; border-top: 1px solid #eee; }
.mob_header.open .mob_nav { max-height: 500px; }
.mob_nav a { display: block; padding: 16px 20px; font-size: 1.6rem; font-weight: 500; color: #333; border-bottom: 1px solid #f2f2f2; }
.mob_nav a:last-child { border-bottom: none; }
.mob_nav a.on { color: var(--color); font-weight: 600; }
.mob_dim { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0, 0, 0, 0.4); z-index: 998; }
.mob_dim.active { display: block; }

/* 메인비주얼 */
.visual { position: relative; margin-top: 100px; }
.visualSwiper { height: 850px; }
.v_slide { position: relative; background-size: cover; background-position: center; }
.v_slide::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.24); z-index: 1; }
.v_slide .width { height: 100%; z-index: 2; }
.v_slide1 { background-image: url('../img/visual01.png'); }
.v_slide2 { background-image: url('../img/visual2.png'); }
.v_slide3 { background-image: url('../img/visual3.png'); }
.v_text { position: absolute; top: 50%; transform: translateY(-50%); left: 0; }
.v_text h2 { font-size: 5.6rem; font-weight: 700; color: #fff; line-height: 1.3; letter-spacing: -0.025em; }
.v_text p { margin-top: 28px; font-size: var(--fs20); font-weight: 500; color: #fff; letter-spacing: -0.025em; }
.v_prev, .v_next { width: 68px; height: 68px; border-radius: 100px; border: 1px solid rgba(255, 255, 255, 0.5); background: none; position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; transition: 0.3s background; }
.v_prev:hover, .v_next:hover { background: rgba(255, 255, 255, 0.15); }
.v_prev { left: 120px; }
.v_next { right: 120px; }
.v_prev svg, .v_next svg { width: 24px; height: 24px; }
.v_pagination { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; align-items: center; gap: 24px; }
.v_pagination .swiper-pagination { position: static; display: flex; align-items: center; gap: 12px; }
.v_pagination .swiper-pagination-bullet { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.6); opacity: 1; margin: 0 !important; cursor: pointer; transition: 0.3s all; }
.v_pagination .swiper-pagination-bullet-active { width: 30px; height: 10px; border-radius: 5px; background: #fff; }
.v_pause { width: 16px; height: 16px; background: none; border: none; cursor: pointer; position: relative; display: flex; align-items: center; justify-content: center; gap: 3px; padding: 0; }
.v_pause span { display: block; width: 2px; height: 11px; background: #fff; border-radius: 1px; transition: 0.3s all; }
.v_pause.play span { background: transparent; }
.v_pause.play { width: 0; height: 0; border-style: solid; border-width: 6px 0 6px 10px; border-color: transparent transparent transparent #fff; gap: 0; }
.v_pause.play span { display: none; }
.common:first-of-type { margin-top: 0; }

/* Main1: 의료진 소개 */
.main1 { position: relative; overflow: visible; }
.m1_emblem { position: absolute; left: -24px; top: calc(50% + 128px); transform: translateY(-50%); width: 428px; opacity: 0.03; pointer-events: none; z-index: 0; }
.main1 .width { display: flex; flex-direction: column; justify-content: center; min-height: 480px; }
.m1_text, .m1_tag { max-width: 35%; }
.m1_text span { font-size: var(--fs20); font-weight: 500; color: #111; }
.m1_text h2 { margin-top: 16px; font-size: 4.8rem; font-weight: 700; color: var(--color); line-height: 1.3; letter-spacing: -0.025em; }
.m1_tag { margin-top: 60px; display: flex; flex-direction: column; gap: 12px; }
.m1_tag span { display: inline-block; padding: 16px 28px; border: 1px solid #E5E5EC; border-radius: 100px; font-size: var(--fs18); font-weight: 500; color: #111; background: #fff; width: max-content; }
.m1_slide_wrap { position: absolute; top: 50%; transform: translateY(-50%); left: 42%; width: 58%; overflow: hidden; }
.m1Swiper { overflow: visible; }
.m1Swiper .swiper-slide { width: 480px; height: 480px; border-radius: 24px; overflow: hidden; flex-shrink: 0; }
.m1Swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.m1_progress { margin-top: 32px; width: 100%; max-width: 1070px; height: 4px; background: #D9D9D9; border-radius: 2px; position: relative; }
.m1_progress_bar { height: 100%; background: #111; border-radius: 2px; width: 33.33%; transition: 0.3s width; }

/* Main2: 선택받는 이유 */
.main2 { background: #F7F7F7; }
.m2_text { display: flex; flex-direction: column; gap: 16px; margin-bottom: 70px; }
.m2_text span { font-size: var(--fs20); font-weight: 500; color: #111; letter-spacing: -0.025em; }
.m2_text h2 { font-size: 4.8rem; font-weight: 700; color: var(--color); line-height: 1.3; letter-spacing: -0.025em; }
.m2_card { position: relative; }
.m2_deco { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 266px; pointer-events: none; }
.m2_card .box_wrap { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 96px 0; }
.m2_card .box { width: 37.5%; aspect-ratio: 1; border-radius: 24px; overflow: hidden; position: relative; }
.m2_card .box:nth-child(even) { margin-top: 60px; }
.m2_card .box > img { width: 100%; height: 100%; object-fit: cover; }
.m2_card .box .text { position: absolute; bottom: 0; left: 0; width: 100%; padding: 28px; background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%); display: flex; flex-direction: column; gap: 4px; }
.m2_card .box .text span { font-size: var(--fs24); font-weight: 700; color: #fff; }
.m2_card .box .text p { font-size: var(--fs32); font-weight: 700; color: #fff; letter-spacing: -0.025em; line-height: 1.3; }

/* Main3: 의료진 상세 소개 */
.main3 { padding-bottom: 0; }
.m3_title { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 60px; }
.m3_title img { width: 28px; margin-bottom: 20px; }
.m3_title p { font-size: var(--fs20); font-weight: 500; color: #111; letter-spacing: -0.025em; margin-bottom: 12px; }
.m3_title h2 { font-size: 4.8rem; font-weight: 700; color: var(--color); line-height: 1.3; letter-spacing: -0.025em; }
.m3_profile { display: flex; gap: 80px; align-items: flex-start; }
.m3_img { width: 50%; max-width: 640px; flex-shrink: 0; border-radius: 24px; overflow: hidden; box-shadow: 4px 4px 20px 0px rgba(35, 48, 59, 0.16); }
.m3_img img { width: 100%; }
.m3_info { flex: 1; padding-top: 40px; }
.m3_badge { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.m3_badge span { font-size: var(--fs20); font-weight: 600; color: var(--color2); letter-spacing: -0.025em; }
.m3_dot { width: 4px; height: 4px; border-radius: 50%; background: var(--color2); }
.m3_name { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; }
.m3_name strong { font-size: 4.8rem; font-weight: 700; color: #111; line-height: 1.3; letter-spacing: -0.025em; }
.m3_name span { font-size: 4.8rem; font-weight: 500; color: #111; line-height: 1.3; letter-spacing: -0.025em; }
.m3_tab { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; }
.m3_tab button { height: 48px; padding: 0 24px; border: none; border-radius: 100px; background: none; font-size: var(--fs18); font-weight: 600; color: #999; cursor: pointer; letter-spacing: -0.025em; transition: 0.3s all; }
.m3_tab button.on { background: var(--color2); color: #fff; }
.m3_tab_content ul { display: none; list-style: none; padding: 0; margin: 0; }
.m3_tab_content ul.on { display: flex; flex-direction: column; gap: 10px; }
.m3_tab_content li { font-size: var(--fs18); font-weight: 500; color: #505050; letter-spacing: -0.025em; line-height: 1.4; padding-left: 12px; position: relative; }
.m3_tab_content li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 3px; border-radius: 50%; background: #505050; }
.m3_btn { display: none; align-items: center; gap: 24px; padding: 15px 40px; background: #F7F7F7; border-radius: 100px; margin-top: 32px; transition: 0.3s all; }
.m3_btn.on { display: inline-flex; }
.m3_btn:hover { background: #EDEDF0; }
.m3_btn span { font-size: var(--fs18); font-weight: 600; color: #505050; letter-spacing: -0.025em; }
.m3_btn img { width: 24px; }
.m3_marquee { margin-top: 60px; overflow: hidden; height: 120px; display: flex; align-items: center; background: #fff; }
.m3_marquee_track { display: flex; align-items: center; gap: 60px; white-space: nowrap; animation: m3_scroll 20s linear infinite; }
.m3_marquee_track span { font-size: 9.0rem; font-weight: 500; color: #F7F7F7; line-height: 1.3; flex-shrink: 0; }
@keyframes m3_scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* Main4: 진료과목 */
.main4 { position: relative; background: url('../img/m4-bg.png') center / cover no-repeat; overflow: hidden; }
.main4::before { content: ''; position: absolute; inset: 0; background: rgba(247, 247, 247, 0.92); }
.main4 .width, .main4 .m4_slider { position: relative; z-index: 1; }
.m4_title { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 60px; }
.m4_title img { width: 28px; margin-bottom: 20px; }
.m4_title p { font-size: var(--fs20); font-weight: 500; color: #111; letter-spacing: -0.025em; margin-bottom: 12px; }
.m4_title h2 { font-size: 4.8rem; font-weight: 700; color: var(--color); line-height: 1.3; letter-spacing: -0.025em; }
.m4_slider { position: relative; }
.m4Swiper { overflow: hidden; }
.m4_slide { width: 800px; opacity: 0.4; transition: 0.4s opacity; }
.m4Swiper .swiper-slide-active { opacity: 1; }
.m4_img { position: relative; border-radius: 24px; overflow: hidden; }
.m4_img > img { width: 100%; height: 440px; object-fit: cover; filter: grayscale(100%); transition: 0.4s filter; }
.m4Swiper .swiper-slide-active .m4_img > img { filter: grayscale(0%); }
.m4_overlay { position: absolute; inset: 0; border-radius: 24px; background: linear-gradient(180deg, rgba(0,0,0,0) 67.5%, rgba(0,0,0,0.4) 100%); }
.m4_tag { position: absolute; left: 24px; bottom: 24px; display: flex; gap: 8px; z-index: 2; }
.m4_tag span { display: flex; align-items: center; justify-content: center; height: 48px; padding: 0 28px; border: 1px solid #E5E5EC; border-radius: 100px; font-size: var(--fs18); font-weight: 600; color: #fff; letter-spacing: -0.025em; }
.m4_text { padding: 0 14px; margin-top: 28px; }
.m4_text h3 { font-size: 3.6rem; font-weight: 700; color: #111; line-height: 1.3; margin-bottom: 20px; }
.m4_text p { font-size: var(--fs18); font-weight: 400; color: #505050; line-height: 1.4; letter-spacing: -0.025em; opacity: 0; max-height: 0; overflow: hidden; transition: 0.4s opacity, 0.4s max-height; }
.m4Swiper .swiper-slide-active .m4_text p { opacity: 1; max-height: 200px; }
.m4_prev, .m4_next { width: 68px; height: 68px; border-radius: 100px; border: 1px solid rgba(229, 229, 236, 0.5); background: none; position: absolute; top: 220px; z-index: 10; display: flex; align-items: center; justify-content: center; padding: 0; transition: 0.3s background; }
.m4_prev:hover, .m4_next:hover { background: rgba(0, 0, 0, 0.05); }
.m4_prev { left: 16.7%; }
.m4_next { right: 16.7%; transform: rotate(180deg); }
.m4_prev img, .m4_next img { width: 24px; }

/* Main5: 비수술 치료 */
.main5 { padding-bottom: 0; }
.m5_title { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 60px; }
.m5_title img { width: 28px; margin-bottom: 20px; }
.m5_title p { font-size: var(--fs20); font-weight: 500; color: #111; letter-spacing: -0.025em; margin-bottom: 12px; }
.m5_title h2 { font-size: 4.8rem; font-weight: 700; color: var(--color); line-height: 1.3; letter-spacing: -0.025em; }
.main5 .box_wrap { display: flex; flex-direction: column; }
.main5 .box { position: relative; border-radius: 32px 32px 0 0; padding: 100px 0 130px; }
.main5 .box + .box { margin-top: -80px; }
.main5 .m5_light { background: #F7F7F7; }
.main5 .m5_light .text h3 { color: #111; }
.main5 .m5_light .text p { color: #505050; }
.main5 .m5_light .m5_icon span { color: #505050; }
.main5 .m5_light .m5_icon { border-color: rgba(17, 17, 17, 0.08); }
.main5 .m5_cyan { background: var(--color2); }
.main5 .m5_cyan .text h3 { color: #fff; }
.main5 .m5_cyan .text p { color: rgba(255, 255, 255, 0.9); }
.main5 .m5_cyan .m5_icon span { color: #fff; }
.main5 .m5_cyan .m5_icon { border-color: rgba(255, 255, 255, 0.2); }
.main5 .m5_dark { background: var(--color); }
.main5 .m5_dark .text h3 { color: #fff; }
.main5 .m5_dark .text p { color: rgba(255, 255, 255, 0.9); }
.main5 .m5_dark .m5_icon span { color: #fff; }
.main5 .m5_dark .m5_icon { border-color: rgba(255, 255, 255, 0.2); }
.main5 .box > .width { display: flex; justify-content: space-between; align-items: center; gap: 108px; }
.main5 .text { flex: 1; }
.main5 .text h3 { font-size: 4.8rem; font-weight: 700; line-height: 1.4; letter-spacing: -0.025em; margin-bottom: 20px; }
.main5 .text p { font-size: var(--fs18); font-weight: 400; line-height: 1.4; letter-spacing: -0.025em; }
.main5 .img { width: 42%; flex-shrink: 0; border-radius: 24px; overflow: hidden; }
.main5 .img img { width: 100%; }
.main5 .m5_item { display: flex; align-items: center; margin-top: 60px; }
.main5 .m5_icon { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 25%; border-right: 1px solid; }
.main5 .m5_icon:last-child { border-right: none; }
.main5 .m5_icon img { width: 48px; }
.main5 .m5_icon span { font-size: 1.6rem; font-weight: 400; line-height: 1.375; letter-spacing: -0.025em; text-align: center; }

/* Main6: 맞춤 영양 수액 클리닉 */
.main6{background: url(../assets/m6-bg.png) no-repeat; background-position: center; background-size: cover;;}
.m6_title { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 40px; }
.m6_title img { width: 28px; margin-bottom: 20px; }
.m6_title h2 { font-size: 4.8rem; font-weight: 700; color: var(--color); line-height: 1.3; letter-spacing: -0.025em; }
.m6_hero { max-width: 720px; margin: 0 auto 40px; border-radius: 24px; overflow: hidden; }
.m6_hero img { width: 100%; }
.m6_desc { text-align: center; font-size: var(--fs18); color: #505050; line-height: 1.4; letter-spacing: -0.025em; }
.m6_desc p{font-size: 1.8rem;}
.m6_desc p + p { margin-top: 12px; }
.main6 .box_wrap { display: flex; flex-direction: column; gap: 60px; margin-top: 60px; }
.main6 .box { display: flex; align-items: center; }
.main6 .box.reverse { flex-direction: row-reverse; }
.main6 .img { width: 50%; border-radius: 24px; overflow: hidden; flex-shrink: 0; }
.main6 .img img { width: 100%; }
.main6 .text { width: 50%; padding: 0 60px; text-align: center; }
.m6_badge { display: inline-flex; align-items: center; justify-content: center; height: 36px; padding: 0 24px; background: var(--color2); border-radius: 100px; font-size: var(--fs18); font-weight: 600; color: #fff; letter-spacing: -0.025em; }
.main6 .text h3 { font-size: var(--fs32); font-weight: 600; color: #111; line-height: 1.3; letter-spacing: -0.025em; margin-top: 12px; }
.main6 .text p { font-size: var(--fs18); color: #505050; line-height: 1.4; letter-spacing: -0.025em; margin-top: 20px; }

/* Main7: 장비 시스템 */
.main7 { background: #F7F7F7; }
.m7_title { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 60px; }
.m7_title img { width: 28px; margin-bottom: 20px; }
.m7_title p { font-size: var(--fs20); font-weight: 500; color: #111; letter-spacing: -0.025em; margin-bottom: 12px; }
.m7_title h2 { font-size: 4.8rem; font-weight: 700; color: var(--color); line-height: 1.3; letter-spacing: -0.025em; }
.m7_tab { display: flex; justify-content: center; gap: 8px; margin-bottom: 60px; }
.m7_tab button { height: auto; padding: 12px 40px; border: none; border-radius: 100px; background: none; font-size: var(--fs18); font-weight: 600; color: #999; cursor: pointer; letter-spacing: -0.025em; transition: 0.3s all; }
.m7_tab button.on { background: var(--color2); color: #fff; }
.m7_content .box_wrap { display: none; flex-wrap: wrap; gap: 40px 20px; }
.m7_content .box_wrap.on { display: flex; }
.main7 .box { width: calc(33.333% - 14px); }
.main7 .img { background: #fff; border-radius: 24px; overflow: hidden; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; padding: 8%; }
.main7 .img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.main7 .text { padding: 24px; }
.main7 .text span { font-size: 1.6rem; font-weight: 600; color: var(--color2); line-height: 1.3; letter-spacing: -0.025em; }
.main7 .text strong { display: block; font-size: var(--fs24); font-weight: 700; color: #111; line-height: 1.3; letter-spacing: -0.025em; margin-top: 12px; }

/* Main8: 둘러보기 */
.m8_title { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 60px; }
.m8_title img { width: 28px; margin-bottom: 20px; }
.m8_title p { font-size: var(--fs20); font-weight: 500; color: #111; letter-spacing: -0.025em; margin-bottom: 12px; }
.m8_title h2 { font-size: 4.8rem; font-weight: 700; color: var(--color); line-height: 1.3; letter-spacing: -0.025em; }
.m8_slider { position: relative; }
.m8Swiper { overflow: hidden; padding: 20px 0;}
.m8Swiper .swiper-slide { width: 740px; height: 414px; border-radius: 24px; overflow: hidden; box-shadow: 0 0 20px rgba(0,0,0,0.16); }
.m8Swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.m8_prev, .m8_next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 68px; height: 68px; border-radius: 100px; background: rgba(17,17,17,0.5); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.3s background; }
.m8_prev:hover, .m8_next:hover { background: rgba(17,17,17,0.7); }
.m8_prev { left: calc((100% - 1540px) / 2); }
.m8_next { right: calc((100% - 1540px) / 2); }

/* Main9: 오시는 길 */
.m9_wrap { display: flex; }
.m9_map { width: 50%; border: 1px solid #E5E5EC; min-height: 857px; position: relative; background: #eee; }
.m9_map #kakaoMap { width: 100%; height: 100%; position: absolute; inset: 0; }
.m9_info { width: 50%; background: #F7F7F7; position: relative; overflow: hidden; min-height: 857px; }
.m9_content { position: absolute; top: 50%; left: 70px; transform: translateY(-50%); max-width: 563px; }
.m9_addr { border-bottom: 1px solid #ccc; padding-bottom: 32px; }
.m9_addr h2 { font-size: 4.8rem; font-weight: 700; color: var(--color); line-height: 1.3; letter-spacing: -1.2px; margin-bottom: 20px; }
.m9_address { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.m9_main { font-size: var(--fs20); font-weight: 500; color: #505050; line-height: 1.4; letter-spacing: -0.5px; }
.m9_sub { font-size: var(--fs18); font-weight: 400; color: #505050; line-height: 1.4; letter-spacing: -0.45px; }
.m9_address .m9_main + .m9_sub { margin-top: 0; }
.m9_address .m9_sub + .m9_main { margin-top: 4px; }
.m9_address_top { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.m9_reserve { display: inline-flex; align-items: center; justify-content: center; padding: 12px 40px; background: #00abc9; color: #fff; border-radius: 100px; font-size: var(--fs18); font-weight: 600; letter-spacing: -0.45px; line-height: 1.4; text-decoration: none; white-space: nowrap; flex-shrink: 0; transition: opacity 0.2s; }
.m9_reserve:hover { opacity: 0.85; }
.m9_parking { display: flex; flex-direction: column; gap: 12px; }
.m9_parking > p { font-size: var(--fs20); font-weight: 500; color: #505050; line-height: 1.4; letter-spacing: -0.5px; }
.m9_label { display: flex; align-items: center; gap: 6px; }
.m9_label img { width: 24px; height: 24px; }
.m9_label span { font-size: var(--fs20); font-weight: 600; color: #111; letter-spacing: -0.5px; line-height: 1.4; }
.m9_contact { border-bottom: 1px solid #ccc; padding: 32px 0; display: flex; gap: 80px; }
.m9_phone, .m9_fax { display: flex; flex-direction: column; gap: 20px; }
.m9_phone > p, .m9_fax > p { font-size: var(--fs32); font-weight: 500; color: #111; line-height: 1.3; }
.m9_hours { padding-top: 32px; }
.m9_hours > .m9_label { margin-bottom: 20px; }
.m9_schedule { display: flex; flex-direction: column; gap: 8px; }
.m9_row { display: flex; align-items: center; gap: 28px; font-size: var(--fs20); font-weight: 500; line-height: 1.4; }
.m9_day { width: 102px; display: flex; justify-content: space-between; align-items: center; color: #111; letter-spacing: -0.5px; }
.m9_day i { display: inline-block; width: 1px; }
.m9_day i.m9_dot { width: 3px; height: 3px; border-radius: 50%; background: #505050; }
.m9_lunch { letter-spacing: 0; }
.m9_time { display: flex; align-items: center; gap: 12px; color: #505050; }
.m9_time > span { letter-spacing: -0.5px; }
.m9_tilde { color: #505050; }
.m9_night { color: var(--color2); }
.m9_badge { display: inline-flex; align-items: center; justify-content: center; padding: 3px 12px; background: var(--color); border-radius: 100px; font-size: 1.6rem; font-weight: 600; color: #fff; line-height: 1.4; margin-left: -20px; }
.m9_note { margin-top: 20px; font-size: 1.6rem; font-weight: 400; color: #767676; line-height: 1.5; letter-spacing: -0.4px; }
.m9_deco { position: absolute; right: 0; bottom: 0; width: 252px; pointer-events: none; }
.root_daum_roughmap_landing{width: 100% !important; height: 100%;}
.root_daum_roughmap .wrap_map{height: 100% !important;}
.root_daum_roughmap .cont .section{display: none;}

/* Footer */
#ft { background: #333; }
.ft_nav { height: 76px; border-top: 1px solid rgba(255,255,255,0.3); border-bottom: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; }
.ft_nav .width { display: flex; align-items: center; gap: 24px; }
.ft_nav a { font-size: var(--fs14); font-weight: 400; color: #fff; letter-spacing: -0.35px; line-height: 20px; }
.ft_nav .ft_popup_btn { font-weight: 600; }
.ft_bar { display: inline-block; width: 1px; height: 10px; background: rgba(255,255,255,0.3); }
.ft_body { padding: 28px 0; }
.ft_body .width { display: flex; align-items: flex-start; gap: 120px; }
.ft_logo { width: 276px; flex-shrink: 0; }
.ft_logo img { width: 100%; }
.ft_info { display: flex; flex-direction: column; gap: 4px; align-items: flex-start;}
.ft_info p { font-size: 1.5rem; font-weight: 400; color: #fff; line-height: 1.5; letter-spacing: -0.375px; }
.ft_sep { display: inline-block; width: 0; margin: 0 6px; }

/* 팝업 */
.pop_dim { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9999; justify-content: center; align-items: center; }
.pop_dim.on { display: flex; }
.pop_wrap { background: #fff; border-radius: 24px; width: 92%; max-width: 720px; max-height: 85vh; overflow: hidden; display: flex; flex-direction: column; }
.pop_head { display: flex; justify-content: space-between; align-items: center; padding: 28px 32px; border-bottom: 1px solid #E5E5EC; }
.pop_head h3 { font-size: var(--fs24); font-weight: 700; color: #111; }
.pop_close { width: 40px; height: 40px; border: none; background: none; cursor: pointer; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.2s background; }
.pop_close:hover { background: #F7F7F7; }
.pop_body { padding: 28px 32px; overflow-y: auto; }
.pop_table { width: 100%; border-collapse: collapse; }
.pop_table th { background: var(--color); color: #fff; font-size: var(--fs14); font-weight: 600; padding: 14px 16px; text-align: center; }
.pop_table td { font-size: var(--fs14); font-weight: 400; color: #333; padding: 14px 16px; border-bottom: 1px solid #E5E5EC; text-align: center; }
.pop_table td:first-child { font-weight: 600; color: #111; background: #F7F7F7; }
.pop_notice { margin-top: 16px; font-size: 1.4rem; color: #767676; }

/* Quick Menu */
.quick { position: fixed; right: 20px; top: 50%; transform: translateY(-50%); width: 125px; background: #fff; border-radius: 12px; overflow: hidden; z-index: 950; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.qm_item { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 16px; border: 1px solid #E5E5EC; text-decoration: none; }
.qm_item + .qm_item { border-top: none; }
.qm_item img { width: 50px; height: 50px; }
.qm_item span { font-size: 15px; font-weight: 600; color: #111; letter-spacing: -0.375px; line-height: 22px; text-align: center; }
.qm_top { width: 100%; padding: 16px 0; background: #00abc9; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; }

/* 반응형: 1400px */
@media all and (max-width: 1400px) {
	html { font-size: 55% !important; }
	:root { --fs42: 3.6rem; --fs32: 2.8rem; --fs28: 2.4rem; }
	.main_menu .dept1 { padding: 36px 14px; }
	.v_prev { left: 40px; }
	.v_next { right: 40px; }
	/* Main1 */
	.m1_text h2 { font-size: 4.0rem; }
	.m1Swiper .swiper-slide { width: 400px; height: 400px; }
	/* Main2 */
	.m2_text h2 { font-size: 4.0rem; }
	.m2_card .box_wrap { gap: 60px 0; }
	.m2_card .box:nth-child(even) { margin-top: 40px; }
	/* Main3 */
	.m3_title h2 { font-size: 4.0rem; }
	.m3_profile { gap: 60px; }
	.m3_name strong, .m3_name span { font-size: 4.0rem; }
	.m3_marquee_track span { font-size: 7.0rem; }
	/* Main4 */
	.m4_title h2 { font-size: 4.0rem; }
	.m4_slide { width: 650px; }
	.m4_img > img { height: 360px; }
	.m4_text h3 { font-size: 3.0rem; }
	.m4_prev, .m4_next { width: 56px; height: 56px; top: 180px; }
	/* Main5 */
	.m5_title h2 { font-size: 4.0rem; }
	.main5 .box { padding: 80px 0 100px; }
	.main5 .box > .width { gap: 80px; }
	.main5 .text h3 { font-size: 4.0rem; }
	.main5 .m5_item { margin-top: 48px; }
	/* Main6 */
	.m6_title h2 { font-size: 4.0rem; }
	.main6 .text h3 { font-size: 2.6rem; }
	.main6 .text { padding: 0 40px; }
	/* Main7 */
	.m7_title h2 { font-size: 4.0rem; }
	/* Main8 */
	.m8_title h2 { font-size: 4.0rem; }
	.m8Swiper .swiper-slide { width: 600px; height: 336px; }
	.m8_prev, .m8_next { width: 56px; height: 56px; }
	.m8_prev { left: 40px; }
	.m8_next { right: 40px; }
	/* Main9 */
	.m9_map, .m9_info { min-height: 760px; }
	.m9_content { left: 50px; max-width: 500px; }
	.m9_addr h2 { font-size: 4.0rem; }
	.m9_contact { gap: 60px; }
	.m9_deco { width: 200px; }
	/* Footer */
	.ft_body .width { gap: 80px; }
	.ft_logo { width: 240px; }
}

/* 반응형: 1024px */
@media all and (max-width: 1024px) {
    .v_prev, .v_next{display: none;}
	.common { padding: 60px 0; }
	#header { display: none; }
	.mob_header { display: block; }
	.common:first-of-type { margin-top: 0; }
	.visual { margin-top: 60px; }
	.visualSwiper { height: 500px; }
	.v_text h2 { font-size: 3.2rem; }
	.v_text p { font-size: 1.6rem; }
	.v_prev { left: 15px; width: 48px; height: 48px; }
	.v_next { right: 15px; width: 48px; height: 48px; }
	/* Main1 */
	.main1 .width { min-height: auto; }
	.m1_text, .m1_tag { max-width: 100%; }
	.m1_text h2 { font-size: 3.4rem; }
	.m1_tag { margin-top: 28px; flex-direction: row; flex-wrap: wrap; }
	.m1_tag span { padding: 12px 20px; font-size: 1.5rem; }
	.m1_slide_wrap { position: relative; top: auto; transform: none; width: 92%; margin: 0 auto; margin-top: 40px;left: initial; }
	.m1Swiper .swiper-slide { width: 320px; height: 320px; }
	.m1Swiper .swiper-slide:first-child { margin-left: 4%; }
	/* Main2 */
	.m2_text h2 { font-size: 3.4rem; }
	.m2_text { margin-bottom: 40px; }
	.m2_card .box { width: 48%; }
	.m2_card .box:nth-child(even) { margin-top: 40px; }
	.m2_card .box_wrap { gap: 40px 0; }
	.m2_deco { width: 180px; }
	/* Main3 */
	.m3_title { margin-bottom: 40px; }
	.m3_title h2 { font-size: 3.4rem; }
	.m3_profile { flex-direction: column; gap: 40px; }
	.m3_img { width: 70%; max-width: none; }
	.m3_info { padding-top: 0; width: 100%; }
	.m3_name strong, .m3_name span { font-size: 3.4rem; }
	.m3_name { margin-bottom: 28px; }
	.m3_tab { flex-wrap: wrap; }
	.m3_marquee { margin-top: 40px; height: 80px; }
	.m3_marquee_track span { font-size: 5.0rem; }
	/* Main4 */
	.m4_title { margin-bottom: 40px; }
	.m4_title h2 { font-size: 3.4rem; }
	.m4_slide { width: 500px; }
	.m4_img > img { height: 300px; }
	.m4_text { margin-top: 20px; }
	.m4_text h3 { font-size: 2.6rem; margin-bottom: 14px; }
	.m4_text p { font-size: 1.5rem; }
	.m4_tag span { height: 40px; padding: 0 20px; font-size: 1.5rem; }
	.m4_prev, .m4_next { width: 48px; height: 48px; top: 150px; }
	/* Main5 */
	.m5_title { margin-bottom: 40px; }
	.m5_title h2 { font-size: 3.4rem; }
	.main5 .box { padding: 60px 0 80px; }
	.main5 .box > .width { flex-direction: column; gap: 40px; }
	.main5 .img { width: 70%; }
    .main5 .text{width: 70%;}
	.main5 .text h3 { font-size: 3.4rem; }
	.main5 .text p { font-size: 15px; }
	.main5 .m5_item { margin-top: 36px; }
	.main5 .m5_icon img { width: 40px; }
	.main5 .m5_icon span { font-size: 15px; }
	/* Main6 */
	.m6_title { margin-bottom: 32px; }
	.m6_title h2 { font-size: 3.4rem; }
	.m6_hero { max-width: 100%; border-radius: 16px; margin-bottom: 32px; }
	.m6_desc { font-size: 1.5rem; }
	.main6 .box_wrap { gap: 40px; margin-top: 40px; }
	.main6 .box { flex-direction: column-reverse;gap: 20px 0; }
	.main6 .box.reverse { flex-direction: column-reverse; }
	.main6 .img { width: 100%; border-radius: 16px; }
	.main6 .text { width: 100%; padding: 24px 0 0; }
	.main6 .text h3 { font-size: 2.8rem; }
	.main6 .text p { font-size: 15px; }
    .m6_desc p{font-size: 16px;}
	/* Main7 */
	.m7_title { margin-bottom: 40px; }
	.m7_title h2 { font-size: 3.4rem; }
	.main7 .box { width: calc(50% - 10px); }
	.main7 .img { border-radius: 16px; }
	.main7 .text { padding: 16px; }
	/* Main8 */
	.m8_title { margin-bottom: 40px; }
	.m8_title h2 { font-size: 3.4rem; }
	.m8Swiper .swiper-slide { width: 480px; height: 268px; border-radius: 16px; }
	.m8_prev, .m8_next { width: 48px; height: 48px; }
	.m8_prev { left: 15px; }
	.m8_next { right: 15px; }
	/* Main9 */
	.m9_wrap { flex-direction: column; }
	.m9_map { width: 100%; min-height: 400px; }
	.m9_info { width: 100%; min-height: auto; }
	.m9_content { position: relative; top: auto; left: auto; transform: none; max-width: none; padding: 60px 4%; }
	.m9_addr h2 { font-size: 3.4rem; }
	.m9_contact { gap: 60px; }
	.m9_deco { width: 180px; }
	/* Footer */
	.ft_nav { height: 56px; }
	.ft_body .width { flex-direction: column; gap: 28px; }
	.ft_logo { width: 220px; }
	.ft_sep { display: block; height: 0; margin: 0; }
}

/* 반응형: 768px */
@media all and (max-width: 768px) {
	.pc { display: none !important; }
	.mob { display: block !important; }
	.quick { display: none; }
	/* 비주얼 */
	.visualSwiper { height: 400px; }
	.v_text { text-align: center; width: 100%;}
	.v_text h2 { font-size: 2.6rem; }
	.v_text p { font-size: 1.4rem; margin-top: 16px; }
	.v_prev, .v_next { width: 40px; height: 40px; }
	.v_prev { left: 10px; }
	.v_next { right: 10px; }
	.v_prev svg, .v_next svg { width: 18px; height: 18px; }
	.v_pagination { bottom: 24px; gap: 16px; }
	/* Main1 */
	.m1_emblem { display: none; }
	.m1_text span { font-size: 1.5rem; }
	.m1_text h2 { font-size: 2.8rem; }
	.m1_tag { gap: 8px; }
	.m1_tag span { padding: 10px 18px; font-size: 1.4rem; }
	.m1Swiper .swiper-slide { width: 260px; height: 260px; border-radius: 20px; }
	.m1_progress { margin-top: 24px; }
	/* Main2 */
	.m2_text span { font-size: 1.5rem; }
	.m2_text h2 { font-size: 2.8rem; }
	.m2_text { margin-bottom: 32px; }
	.m2_card .box { width: 48%; border-radius: 16px; }
	.m2_card .box:nth-child(even) { margin-top: 20px; }
	.m2_card .box_wrap { gap: 20px 0; }
	.m2_card .box .text { padding: 16px; }
	.m2_card .box .text span { font-size: 1.6rem; }
	.m2_card .box .text p { font-size: 1.8rem; }
	.m2_deco { width: 120px; }
	/* Main3 */
    .main3{padding-bottom: 0;;}
	.m3_title p { font-size: 1.5rem; }
	.m3_title h2 { font-size: 2.8rem; }
    .m3_title h2 br{display: none;}
	.m3_title { margin-bottom: 32px; }
	.m3_img { width: 100%; border-radius: 16px; }
	.m3_badge span { font-size: 1.5rem; }
	.m3_name strong, .m3_name span { font-size: 2.8rem; }
	.m3_name { gap: 10px; margin-bottom: 20px; }
	.m3_tab { gap: 4px; margin-bottom: 20px; }
	.m3_tab button { height: 40px; padding: 0 16px; font-size: 16px; }
	.m3_tab_content li { font-size: 15px; }
	.m3_btn { padding: 12px 28px; gap: 16px; margin-top: 24px; }
	.m3_btn span { font-size: 1.5rem; }
	.m3_btn img { width: 20px; }
	.m3_marquee { margin-top: 32px; height: 60px; }
	.m3_marquee_track span { font-size: 3.6rem; }
	.m3_marquee_track { gap: 32px; }
	/* Main4 */
	.m4_title p { font-size: 1.5rem; }
	.m4_title h2 { font-size: 2.8rem; }
	.m4_title { margin-bottom: 28px; }
	.m4_slide { width: 80%; }
	.m4_img { border-radius: 16px; }
	.m4_img > img { height: 240px; }
	.m4_text { margin-top: 16px; }
	.m4_text h3 { font-size: 2.2rem; margin-bottom: 10px; }
	.m4_text p { font-size: 1.4rem; }
	.m4_tag span { height: 34px; padding: 0 16px; font-size: 1.3rem; }
	.m4_tag { left: 16px; bottom: 16px; gap: 6px; }
	.m4_prev, .m4_next { display: none; }
	/* Main5 */
	.m5_title p { font-size: 1.5rem; }
	.m5_title h2 { font-size: 2.8rem; }
	.m5_title { margin-bottom: 28px; }
	.main5 .box { padding: 40px 0 60px; border-radius: 24px 24px 0 0; }
	.main5 .box + .box { margin-top: -20px; }
	.main5 .box > .width { flex-direction: column; gap: 28px; }
	.main5 .img { width: 100%; border-radius: 16px; }
	.main5 .text h3 { font-size: 2.8rem; margin-bottom: 16px; }
	.main5 .m5_item { margin-top: 28px; flex-wrap: wrap; gap: 20px 0; }
	.main5 .m5_icon { width: 50%; border-right: none; }
	.main5 .m5_icon img { width: 36px; }
    .main5 .text{width: 100%;}
	/* Main6 */
	.m6_title h2 { font-size: 2.8rem; }
	.m6_title { margin-bottom: 24px; }
	.m6_hero { margin-bottom: 24px; }
	.m6_desc { font-size: 1.4rem; }
	.main6 .box_wrap { gap: 32px; margin-top: 32px; }
	.main6 .text h3 { font-size: 2.2rem; }
	.main6 .text p { font-size: 15px; margin-top: 12px; }
	.m6_badge { height: 32px; padding: 0 20px; font-size: 1.4rem; }
    .m6_desc p{font-size: 15px;}
	/* Main7 */
	.m7_title h2 { font-size: 2.8rem; }
	.m7_title { margin-bottom: 28px; }
	.m7_tab button { padding: 10px 24px; font-size: 1.5rem; }
	.m7_content .box_wrap { gap: 24px 2%; }
	.main7 .box { width: 100%; }
	.main7 .img { border-radius: 16px; }
	.main7 .text { padding: 16px; }
	.main7 .text span { font-size: 1.4rem; }
	.main7 .text strong { font-size: 2.0rem; margin-top: 8px; }
	/* Main8 */
	.main8 { padding-left: 4%; padding-right: 4%; }
	.m8_title p { font-size: 1.5rem; }
	.m8_title h2 { font-size: 2.8rem; }
	.m8_title { margin-bottom: 28px; }
	.m8Swiper .swiper-slide { width: 320px; height: 180px; border-radius: 16px; }
	.m8_prev, .m8_next { width: 40px; height: 40px; }
	.m8_prev svg, .m8_next svg { width: 18px; height: 18px; }
	.m8_prev { left: 10px; }
	.m8_next { right: 10px; }
	/* Main9 */
	.m9_map { min-height: 300px; }
	.m9_content { padding: 40px 4%; }
	.m9_addr h2 { font-size: 2.8rem; }
	.m9_addr { padding-bottom: 24px; }
	.m9_address { margin-bottom: 20px; }
	.m9_reserve { padding: 10px 28px; font-size: 1.5rem; }
	.m9_contact { gap: 40px; padding: 24px 0; flex-wrap: wrap; }
	.m9_phone > p, .m9_fax > p { font-size: 2.4rem; }
	.m9_hours { padding-top: 24px; }
	.m9_row { gap: 20px; flex-wrap: wrap; }
	.m9_day { width: 90px; }
	.m9_badge { font-size: 1.4rem; padding: 2px 10px; }
	.m9_note { font-size: 1.4rem; }
	.m9_deco { width: 140px; }
	/* Footer */
	.ft_nav { height: 48px; }
	.ft_nav .width { gap: 16px; }
	.ft_body .width { flex-direction: column; gap: 20px; }
	.ft_logo { width: 200px; }
	.ft_info p { font-size: 1.3rem; text-align: left;}
	/* 팝업 */
	.pop_wrap { border-radius: 16px; max-height: 90vh; }
	.pop_head { padding: 20px; }
	.pop_head h3 { font-size: var(--fs20); }
	.pop_body { padding: 20px; }
	.pop_table th, .pop_table td { padding: 10px 8px; font-size: 1.3rem; }
}

