@charset "UTF-8";
.wrapper {
    font-family: "Pretendard", sans-serif;

    --container: var(--container-xl);
    --hd-h: 5.25em;
    --ellipsis: 1;
    --swiper-theme-color: var(--primary-500);
}

* { scrollbar-width: thin; scrollbar-color: var(--gray-500) var(--white); }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--gray-500); border-radius: var(--radius-full); }
::selection { background-color: var(--primary-bg); color: var(--primary-dk); }

#debug { position: fixed; left: 0; bottom: 0; margin: 1em; background-color: rgba(0,0,0,0.6); color: #00ffd5; padding: 0.5em 1em; z-index: 9999; display: none; }

/* -------------------------------------------------------
    header
------------------------------------------------------- */
.hd { position: fixed; top: 0; left: 0; width: 100%; z-index: var(--z-sticky); border-bottom: 1px solid var(--gray-300); background-color: var(--white); }
.hd_inner { height: var(--hd-h); display: flex; align-items: center; }

/* hd_logo */
.hd_logo img { max-height: 2.75em; }

/* hd_gnb */
.hd_gnb { margin: 0 auto; }
.hd_gnb .gnb_d1 { display: flex; justify-content: flex-start; align-items: center; gap: 2em }
.hd_gnb .gnb_d1_item { position: relative; }
.hd_gnb .gnb_d1_item > a { font-size: 1.125em; padding: 0.625em; display: block; }
.hd_gnb .gnb_d2 { position: absolute; left: 50%; top: 95%; transform: translateX(-50%); padding: 0.25em; background-color: var(--white); border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); border-radius: var(--radius-sm); opacity: 0; pointer-events: none; margin-top: 0.5em; transition: var(--ts-md); }
.hd_gnb .gnb_d2_item { font-size: 0.9375em; color: var(--gray-600); }
.hd_gnb .gnb_d2_item:hover { color: var(--gray-900); }
.hd_gnb .gnb_d2_item a { padding: 0.25em 0.5em; aspect-ratio: 12/1; display: block; white-space: nowrap; }
.hd_gnb .gnb_d1_item:hover .gnb_d2 { opacity: 1; pointer-events: auto; margin-top: 0; }

.hd_cta { background-color: var(--primary-500); color: #fff; font-size: 1.5em; font-weight: 700; border-radius: var(--radius-full); padding: 0.5em 0.875em; line-height: 1; }

/*  hd_anb_btn */
.hd_anb_btn { font-size: 1.25em; width: 1.5em; aspect-ratio: 1.125/0.875; position: relative; background-color: transparent; border: 0; z-index: var(--z-fixed); display: none; margin-left: auto; }
.hd_anb_btn .bar { display: inline-block; width: 100%; height: 2px; background-color: currentColor; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border-radius: var(--radius-full); transition: var(--ts-md); }
.hd_anb_btn .bar-1 { top: 0%; }
.hd_anb_btn .bar-3 { top: 100%; }
.hd_anb_btn.is-close .bar { top: 50%; }
.hd_anb_btn.is-close .bar-1 { transform: translateX(-50%) rotate(-45deg); }
.hd_anb_btn.is-close .bar-2 { width: 0; }
.hd_anb_btn.is-close .bar-3 { transform: translateX(-50%) rotate(45deg); }

/* hd_anb */
.hd_anb { width: 100%; height: calc(var(--vh) * 100); background-color: rgba(0,0,0,0.5); z-index: var(--z-fixed); position: fixed; right: 0; top: 0; opacity: 0; pointer-events: none; transition: var(--ts-md); display: none; }
.hd_anb .anb_inner { width: 100%; max-width: 680px; height: calc(var(--vh) * 100); background-color: var(--white); position: absolute; right: 0; top: 0; transform: translateX(100%); transition: var(--ts-md); padding-top: var(--hd-h); }
.hd_anb .anb_d1 { padding: 0 1em; }
.hd_anb .anb_d1 a { display: block; }
.hd_anb .anb_d1_item { font-size: 1.375em; }
.hd_anb .anb_d1_item.is-active > a { color: var(--primary-500); }
.hd_anb .anb_d1_item > a { padding: 0.75em 1em; }
.hd_anb .anb_d2 { padding: 0 0.75em; display: none; color: var(--gray-600); }
.hd_anb .anb_d2_item { font-size: 0.9375em; }
.hd_anb .anb_d2_item a { padding: 0.375em 1em; }
.hd_anb.is-open { opacity: 1; pointer-events: auto; }
.hd_anb.is-open .anb_inner { transform: translateX(0); }

/* -------------------------------------------------------
    footer
------------------------------------------------------- */
.ft { background-color: var(--gray-900); color: var(--gray-300); padding: 4em 0 5em; }
.ft_inner { font-weight: 300; }
.ft_con { display: flex; justify-content: space-between; align-items: center; }
.ft_logo img { max-height: 3em; filter: brightness(0) invert(1); }
.ft_fnb { display: flex; align-items: center; justify-content: flex-start; gap: 0.75em; }
.ft_info { margin: 2em 0; line-height: 2; }
.ft_info .divider { vertical-align: middle; margin: -0.2em 0.5em 0; }
.ft_info span { white-space: nowrap; }
.ft_copy { font-size: 0.9375em; color: var(--gray-600); }

/* floating */
.floating { position: fixed; right: 3%; bottom: 6%; z-index: var(--z-fixed); display: flex; flex-direction: column; gap: 1em; }
.floating_btn { font-size: 0.75em; width: 6em; aspect-ratio: 1/1; display: inline-flex; flex-direction: column; justify-content: center; align-items: center; border-radius: var(--radius-md); gap: 0.5em; box-shadow: var(--shadow-sm); cursor: pointer; }
.floating_btn img { max-width: 30%; }
.floating_map { color: var(--primary-500); background-color: #fff; }
.floating_top { color: #fff; background-color: var(--primary-500); }
.floating_cta { color: var(--primary-500); background-color: #fff; display: none; gap: 0.75em; }

/* -------------------------------------------------------
    default
------------------------------------------------------- */
.main { margin-top: var(--hd-h); padding: 6em 0; }

.page_title { text-align: center; margin-bottom: 3em; }
.page_title h2 { font-size: 2em; font-weight: 700; }
.page_title p { font-size: 1.125em; margin-top: 0.5em; color: var(--gray-700); }

/* -------------------------------------------------------
    sub
------------------------------------------------------- */
.sub { padding: 2em 0 4em; }
.sub > section { padding: 5em 0; }

.sub .page_title { margin-bottom: 5em; }
.sub .page_title h2 { font-size: 3em; }

/* 효과 */
.motion-split[data-split=char],
.motion-split[data-split=word] { overflow: hidden; }

/* 유틸리티 */
.asset { position: absolute; }
.reverse { flex-direction: row-reverse; }
.emph { color: var(--primary-500); }
.divider { width: 0.125em; height: 0.875em; background-color: currentColor; opacity: 0.4; border-radius: var(--radius-full); display: inline-block; }
.ellipsis { width: 100%; display: -webkit-box !important; -webkit-line-clamp: var(--ellipsis); -webkit-box-orient: vertical; overflow: hidden; -ms-text-overflow: ellipsis; text-overflow: ellipsis; }
.icon { display: inline-flex; justify-content: center; align-items: center; aspect-ratio: 1/1; }

/* 배지 */
.badge { display: inline-flex; justify-content: center; align-items: center; padding: 0.5em 0.875em;  border-radius: var(--radius-full); line-height: 1.6; background-color: var(--bg); color: var(--c); line-height: 1; }
.badge   { --bg: var(--primary-500); --c: #fff; }
.badge-1 { --bg: var(--primary-50); --c: var(--primary-500); }
.badge-2 { --bg: var(--info-50); --c: var(--info-500); }
.badge-3 { --bg: var(--success-50); --c: var(--success-500); }
.badge-4 { --bg: var(--error-50); --c: var(--error-500); } 
.badge-5 { --bg: var(--warning-50); --c: var(--warning-500); }
 
/* 탭 메뉴 */
.tab { margin-bottom: 1.5em; }
.tab_list { display: grid; grid-template-columns: repeat(auto-fit, minmax(3em, max-content)); gap: 0.5em; justify-content: start; align-items: center; }
.tab_list a { display: inline-flex; justify-content: center; align-items: center; padding: 0.5em 1em; background-color: var(--gray-100); color: var(--gray-600); border-radius: var(--radius-full); }
.tab_list a:hover { background-color: var(--primary-50); color: var(--primary-500); }
.tab_list #bo_cate_on { background-color: var(--primary-500); color: var(--white); }

/* -------------------------------------------------------
    소개
------------------------------------------------------- */
/* promise ------------------------------------------------------- */
.promise_con { position: relative; text-align: center; padding: 11.5em 0 2em; }

.promise_box { position: relative; text-align: center; }
.promise_box img { width: 45%; max-width: 650px; }
.promise_box .promise_bg { animation: rotate_bg 40s linear infinite; transform-origin: center center; }
.promise_box .promise_img { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); }

.promise_list { position: absolute; left: 0; top: 0; width: 100%; height: 100%; display: flex; gap: 3em; }
.promise_item { flex: 1 1 20%; position: relative; }
.promise_txt h5 { font-size: 1.5em; }
.promise_txt h5 b::before { content:"·"; font-weight: 900; color: var(--primary-500); margin-right: 0.25em; }
.promise_txt h5 small { font-size: 0.75em; font-weight: 600; margin-left: 0.25em; }
.promise_txt p { font-size: 1.0625em; margin-top: 0.5em; }

.promise_dot { display: inline-block; width: 0.875em; aspect-ratio: 1/1; border-radius: var(--radius-full); background-color: #83B3CC; }
.promise_line { display: block; border-width: 0; border-style: solid; border-color: #83B3CC; }
.promise_plus { width: 1.75em; font-size: 2em; font-weight: 600; color: #fff; background-color: var(--primary-500); border-radius: var(--radius-full); position: absolute; z-index: 5; }

.promise_item1 { align-self: flex-end; }
.promise_item1 .promise_dot { vertical-align: top; }
.promise_item1 .promise_line { margin-left: 52%; height: 3em; border-left-width: 2px; border-top-width: 2px; transform: skew(-20deg); }
.promise_item1 .promise_plus { right: 0; top: 0; transform: translate(50%,-50%); }

.promise_item2 { align-self: flex-start; }
.promise_item2 .promise_dot { vertical-align: bottom; }
.promise_item2 .promise_line { width: 2px; height: 5em; background-color: #83B3CC; margin: 0 auto; }
.promise_item2 .promise_plus { left: 50%; top: 100%; transform: translate(-50%,-50%); }

.promise_item3 { align-self: flex-end; }
.promise_item3 .promise_dot { vertical-align: top; }
.promise_item3 .promise_line { margin-right: 52%; height: 3em; border-right-width: 2px; border-top-width: 2px; transform: skew(20deg); }
.promise_item3 .promise_plus { left: 0; top: 0; transform: translate(-50%,-50%); }

/* equipment ------------------------------------------------------- */
.equipment { overflow: hidden; }
.equipment_swiper { text-align: center; overflow: visible !important; }
.equipment_item:nth-child(even) { margin-top: 7em; }
.equipment_img { aspect-ratio: 1/1.2; border-radius: var(--radius-lg); background-color: var(--primary-50); display: flex; justify-content: center; align-items: center; padding: 2em 1em; }
.equipment_img img { max-width: 100%; max-height: 100%; }
.equipment_txt { margin-top: 1em; }
.equipment_txt h5 { font-size: 1.625em; font-weight: 700; }
.equipment_txt p { font-weight: 500; }

.disinfect_box { display: flex; align-items: flex-start; justify-content: space-between; }
.disinfect_img { width: 45%; position: sticky; top: calc(var(--hd-h) + 5em); }
.disinfect_img img { max-width: 100%; border-radius: var(--radius-xl); }
.disinfect_txt { width: 50%; padding-top: 2.5em; }
.disinfect_txt li { opacity: 0.4; transition: var(--ts-md); margin-bottom: 5em; }
.disinfect_txt li.is-active { opacity: 1; }
.disinfect_txt .badge { font-size: 1.125em; }
.disinfect_txt h5 { font-size: 1.625em; font-weight: 700; margin-top: 0.5em; }
.disinfect_txt p { font-size: 1.125em; margin-top: 1em; }

/* doctor ------------------------------------------------------- */
.doctor { background: url(../img/doctor_bg.png) no-repeat center/100%; }
.doctor_item { display: flex; justify-content: space-between; align-items: center; }
.doctor_item.reverse { margin-top: 9em; }

.doctor_img { width: 35%; background-color: #EBF1F6; border-radius: var(--radius-full); overflow: hidden; }
.doctor_img img { width: 100%; }

.doctor_box { width: 58%; padding: 0 3em; }
.doctor_txt { border-bottom: 1px solid var(--primary-500); padding-bottom: 1.5em; margin-bottom: 1.5em; }
.doctor_txt h4 { margin-bottom: 0.5em; display: flex; justify-content: flex-start; align-items: center; gap: 1em; }
.doctor_txt h4 .badge { font-size: 1.25em; }
.doctor_txt h4 b { font-size: 3em; }
.doctor_txt p { font-size: 1.0625em; line-height: 1.6; }
.doctor_career h5 { font-size: 1.25em; font-weight: 700; line-height: 1.6; margin-bottom: 0.875em; }
.doctor_career p { font-size: 1.125em; margin-bottom: 0.5em; color: var(--gray-800); }
.doctor_career p::before { content:"·"; font-weight: 800; margin-right: 0.5em; }

/* interior ------------------------------------------------------- */
.interior_txt h4 { font-size: 2em; font-weight: 700; line-height: 1.3; }
.interior_txt p { font-size: 1em; line-height: 1.6; margin-top: 1em; }
.interior_txt h5 { font-size: 1.125em; font-weight: 600; margin-top: 0.75em; }
.interior_box { margin-top: 3em; }
.interior_box img { width: 100%; border-radius: var(--radius-lg); }

.sub:has(.interior.bg) { padding-bottom: 0; }
.interior.bg { background-color: var(--primary-50); overflow: hidden; } 
.interior.bg .interior_box { display: flex; justify-content: center; align-items: center; gap: 1.2em; }
.interior.bg .interior_swiper { width: 70%; margin: 0 !important; overflow: visible !important; }
.interior.bg .swiper-slide { aspect-ratio: 1/0.6; overflow: hidden; -webkit-border-radius: 2em;-moz-border-radius: 2em;border-radius: 2em; }
.interior.bg .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.interior.bg .swiper-pagination { position: static !important; margin-top: 3em; }
.interior.bg .swiper-btn { font-size: 2.625em; position: relative; z-index: 5; cursor: pointer; background-color: #fff; border: 1px solid var(--primary-100); color: var(--primary-500); aspect-ratio: 1/1; width: 1.5em; display: flex; justify-content: center; align-items: center; border-radius: var(--radius-full); }
.interior.bg .swiper-btn.swiper-button-disabled { filter: grayscale(1); opacity: 0.6; }

/* location ------------------------------------------------------- */
.location_map { width: 100%; aspect-ratio: 1/0.35; border-radius: var(--radius-lg); }

.location_list { display: grid; grid-template-columns: repeat(3,1fr); gap: 2em; margin: 2em 0; }
.location_list li { display: flex; align-items: center; gap: 1.5em; padding: 1.25em 1.5em; background-color: var(--primary-50); border-radius: var(--radius-lg); }
.location_icon { width: 25%; max-width: 55px; }
.location_icon img { width: 100%; }
.location_txt h5 { font-weight: 600; }
.location_txt p { font-size: 0.9375em; margin-top: 0.25em; }

.location_method { display: grid; grid-template-columns: repeat(2,1fr); gap: 2em; }
.location_method li { padding: 1.5em 2em; border: 1px solid #C9DBE4; border-radius: var(--radius-lg); }
.location_method h5 { font-size: 1.125em; font-weight: 700; }
.location_method p { font-size: 0.875em; margin-top: 0.5em; gap: 0.5em; color: var(--gray-800); display: flex; justify-content: flex-start; align-items: center; }

/* -------------------------------------------------------
    치료 공통
------------------------------------------------------- */
.treatment { --margin: 8em; }
.treatment img { max-width: 100%; vertical-align: top; }
.treatment h3 { font-size: 2em; font-weight: 700; text-align: center; }
.treatment h3::after { content:""; width: 1em; height: 3px; background-color: var(--primary-500); display: block; margin: 0.75em auto 1.5em; }
.treatment h4 { font-size: 1.5em; font-weight: 700; text-align: center; margin-bottom: 2em; }
.treatment p { line-height: 1.6; }

.treatment .img_circle { width: 70%; max-width: 430px; margin: 0 auto; }

.treatment .txt_box { background-color: var(--primary-50); border-radius: var(--radius-xl); padding: 2.5em 1.5em; text-align: center; position: relative; margin-top: 2em; }
.treatment .txt_box h5 { font-size: 1.5em; font-weight: 700; }
.treatment .txt_box p { font-size: 1.0625em; margin-top: 0.5em; }
.treatment .txt_box:has(.icon) { padding-top: 0; margin-top: 4em; }
.treatment .txt_box .icon { font-size: 2.5em; width: 1.5em; background-color: var(--primary-500); color: #fff; border-radius: var(--radius-full); margin-top: -0.75em; margin-bottom: 0.5em; }

.treatment .list { margin-top: var(--margin); }
.treatment .list li { display: flex; justify-content: space-between; align-items: center; gap: 5%; }
.treatment .list li:not(:last-child) { margin-bottom: 4em; }
.treatment .list .img { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--gray-200); }
.treatment .list .badge { font-size: 1em; margin-bottom: 1em; }
.treatment .list .txt { margin: auto; }
.treatment .list .txt h3 { text-align: left; }
.treatment .list .txt h3::after { margin: 0.5em 0; }
.treatment .list .txt h5 { font-size: 1.75em; font-weight: 700; }
.treatment .list .txt p { font-size: 1.125em; margin-top: 0.5em; }
.treatment .list .txt strong { font-size: 1.125em; font-weight: 700; color: var(--primary-500); display: block; margin-top: 1em; }
.treatment .list .txt strong::before { content: "·"; font-weight: 900; font-size: 1.25em; margin-right: 0.25em; }

.treatment .circle_list { margin-top: var(--margin); }
.treatment .circle_list ul { display: flex; text-align: center; justify-content: center; padding-left: 1.5em; }
.treatment .circle_list li { width: 25%; max-width: 250px; aspect-ratio: 1/1; display: flex; justify-content: center; align-items: center; flex-direction: column; gap: 1em; border: 1px solid rgba(0,100,150,0.5); border-radius: var(--radius-full); margin-left: -1.5em; }
.treatment .circle_list li:nth-child(odd) { background-color: rgba(242,247,249,0.9); }
.treatment .circle_list li:nth-child(even) { background-color: rgba(198,224,237,0.4); position: relative; z-index: 5; }
.treatment .circle_list h5 { font-size: 0.9375em; }
.treatment .circle_list p { font-size: 1.0625em; font-weight: 700; }

.treatment .step { margin-top: var(--margin); }
.treatment .step ul { display: grid; grid-template-columns: repeat(2,1fr); gap: 2em 2em; }
.treatment .step li { background-color: var(--primary-50); border-radius: var(--radius-lg); padding: 1.5em 2em; display: flex; justify-content: flex-start; align-items: center; gap: 1em; }
.treatment .step .icon { font-size: 1.25em; font-weight: 700; width: 3em; border-radius: var(--radius-full); overflow: hidden; background-color: var(--primary-500); color: #fff; }
.treatment .step .txt h5 { font-size: 1.125em; font-weight: 700; }
.treatment .step .txt p { line-height: 1.4; margin-top: 0.25em; }

.treatment .tbl { margin-top: var(--margin); }
.treatment .tbl th,
.treatment .tbl td { border: 1px solid #D8E1E5; padding: 0.75em; font-size: 1.125em; }
.treatment .tbl th { color: var(--primary-500); background-color: var(--primary-50); font-weight: 700; }

.treatment .round { margin-top: var(--margin); }
.treatment .round ul { display: flex; justify-content: space-between; align-items: center; gap: 2em; }
.treatment .round li { flex: 1 1 40%; display: flex; align-items: center; gap: 2em; position: relative; }
.treatment .round li::before { content:""; width: 90%; height: 80%; position: absolute; right: 0; top: 10%; background-color: var(--primary-50); border-radius: var(--radius-full); }
.treatment .round .img { position: relative; z-index: 5; }
.treatment .round .txt { position: relative; }
.treatment .round .txt h5 { font-size: 1.5em; font-weight: 700; }
.treatment .round .txt h5::before { content: "·"; font-weight: 900; font-size: 1.25em; margin-right: 0.25em; color: var(--primary-500); }
.treatment .round .txt p { font-size: 1.125em; line-height: 1.6; position: relative; padding: 1em 2em 1em 0; }
.treatment .round .txt p::before { content:""; width: 95%; height: 50%; position: absolute; left: -1.5em; top: 0.4em; border-left: 1px solid var(--primary-500); border-top: 1px solid var(--primary-500); display: block; transform: skew(-45deg); }

.treatment .radial { margin-top: var(--margin); text-align: center; }
.treatment .radial_box { position: relative; max-width: 770px; margin: 0 auto; }

.treatment .radial_center { position: relative; margin-top: -2em; }
.treatment .radial_bg { animation: rotate_bg 20s linear infinite; transform-origin: center center; }
.treatment .radial_img { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 70%; max-width: 430px; }

.treatment .radial_item { position: absolute; display: inline-flex; align-items: center; justify-content: center; flex-direction: column; }
.treatment .radial_item p { font-size: 1.125em; font-weight: 600; line-height: 1.4; }
.treatment .radial_item .icon { color: #fff; background-color: var(--primary-500); border-radius: var(--radius-full); font-size: 1.25em; width: 1.5em; margin: 0.5em 0; }
.treatment .radial_item1 { position: static; } 
.treatment .radial_item4,
.treatment .radial_item5 { flex-direction: column-reverse; }

.treatment .radial_item2 { left: 0; bottom: 50%; }
.treatment .radial_item2 .radial_line { transform: translate(300%,-10%) rotate(-55deg); transform-origin: 0 0; }

.treatment .radial_item3 { right: 0; bottom: 50%; }
.treatment .radial_item3 .radial_line { transform: translate(-300%,-10%) rotate(55deg); transform-origin: 0 0; }

.treatment .radial_item4 { left: 0; top: 75%; }
.treatment .radial_item4 .radial_line { transform: translate(300%,5%) rotate(55deg); transform-origin: 0 100%; }

.treatment .radial_item5 { right: 0; top: 75%; }
.treatment .radial_item5 .radial_line { transform: translate(-300%,5%) rotate(-55deg); transform-origin: 0 100%; }

/* gum ------------------------------------------------------- */
.gum { background: url(../img/gum_bg.png) no-repeat center bottom/100%; }

/* implant ------------------------------------------------------- */
.implant .circle_list { margin-top: 0; }

/* -------------------------------------------------------
    idx
------------------------------------------------------- */
.hd.idx { background-color: transparent; color: #fff; }
.hd.idx .hd_logo img { filter: brightness(0) invert(1); }
.hd.idx .hd_cta { background-color: rgba(255,255,255,0.2); }

.idx { text-align: center; --radius-md: 0.75em; --radius-lg: 2em; margin-top: 0; padding: 0; }
.idx section { padding: 9.1em 0; overflow: hidden; position: relative; }

.idx .asset { position: absolute; font-size: 13em; line-height: 1; font-weight: 900; color: #F5F9FB; text-transform: uppercase; left: 50%; transform: translate(-50%,-20%); }
.idx .container { position: relative; }

.idx .more { font-size: 1em; line-height: 1; padding: 0.75em 2.25em; border-radius: var(--radius-md); color: #fff; background-color: var(--primary-500); transition: background 0.3s, color 0.3s; }
.idx .more i { font-size: 1.5em; }

.idx .title { margin-bottom: 4em; }
.idx .title h2 { font-size: 3em; line-height: 1.2; font-weight: 700; }
.idx .title p { font-size: 1.125em; color: var(--gray-700); margin-top: 1.5em; }
.idx .title a { margin-top: 3em; }

/* visual */
.idx .visual { color: #fff; --swiper-theme-color: #fff; }
.idx .visual .swiper-slide { height: calc(var(--vh) * 100); background: no-repeat center/cover; display: flex; justify-content: center; align-items: center; }
.idx .visual strong { font-size: 1.25em; font-weight: 600; display: block; }
.idx .visual h2 { font-size: 3.5em; font-weight: 700; }
.idx .visual p { font-size: 1.25em; margin-top: 1em; }
.idx .visual a { border-radius: var(--radius-full); background-color: rgba(255,255,255,0.15); margin-top: 2em; }
.idx .visual a:hover { background-color: rgba(255,255,255,0.35); }
.idx .visual .swiper-pagination { bottom: 10%; }
.idx .visual .swiper-pagination-bullet { width: 0.625em; height: 0.625em; border-radius: var(--radius-full); background-color: #fff; opacity: 0.4; transition: var(--ts-sm); }
.idx .visual .swiper-pagination-bullet-active { width: 2em; opacity: 1; }

/* promise */
.idx .promise { background: url(../img/idx/promise_bg.png) no-repeat center bottom/100%; }
.idx .promise .list { display: flex; justify-content: space-around; text-align: left; }
.idx .promise .item { width: 30%; border-radius: var(--radius-lg); overflow: hidden; background-color: #fff; }
.idx .promise .thumb { width: 100%; aspect-ratio: 1/0.7; overflow: hidden; }
.idx .promise .thumb img { width: 100%; height: 100%; object-fit: cover; }
.idx .promise .icon { width: 5.25em; background-color: var(--primary-500); border: 0.4em solid #D8E4EA; border-radius: var(--radius-full); margin-top: -2.5em; }
.idx .promise .icon img { max-width: 50%; }
.idx .promise .txt { padding: 0 3em 3em; position: relative; }
.idx .promise .txt b { position: absolute; top: 35%; right: 2%; color: var(--primary-50); font-size: 15em; font-weight: 700; line-height: 0.7; }
.idx .promise .txt h5 { font-size: 1.5em; font-weight: 700; margin-top: 0.5em; position: relative; }
.idx .promise .txt p { font-size: 1.125em; color: var(--gray-700); margin-top: 0.5em; position: relative; }
.idx .promise a:hover { background-color: var(--primary-400); }

/* since */
.idx .since { height: calc(var(--vh) * 90); display: flex; align-items: center; background: #fff url(../img/idx/since_bg.png) no-repeat center bottom/100%; position: relative; }
.idx .since .img { position: absolute; }
.idx .since .img1 { width: 25%; max-width: 467px; left: 20%; top: 20%; transform: rotate(-18deg); animation: wobble 2.5s ease-in-out infinite; }
.idx .since .img2 { width: 13%; max-width: 267px; right: 25%; top: 50%; transform: rotate(30deg); animation: wobble2 3s ease-in-out infinite; }
.idx .since .container { position: relative;  margin-top: calc(var(--hd-h) * -0.5); }
.idx .since .year { font-size: 7.5em; line-height: 0.6; font-weight: 700; }

/* doctor */
.idx .doctor { background: url(../img/idx/doctor_bg.png) no-repeat center top/100%; }
.idx .doctor .asset { color: #0C6FA1; }
.idx .doctor .title { color: #fff; }
.idx .doctor .title p { color: #fff; }
.idx .doctor .list { display: flex; justify-content: space-between; gap: 2em; }
.idx .doctor .item { width: 30%; position: relative; }
.idx .doctor .box { height: 100%; padding: 3em 2em; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); background-color: #fff; }
.idx .doctor .img { width: 65%; aspect-ratio: 1/1; margin: auto; overflow: hidden; background-color: #E1EDF3; border-radius: var(--radius-full); margin-bottom: 1.5em; padding-top: 1em; }
.idx .doctor .img img { width: 100%; }
.idx .doctor .txt h3 { display: flex; flex-direction: column; align-items: center; gap: 0.75em; }
.idx .doctor .txt h3 small { font-size: 1.125em; background-color: transparent; color: var(--gray-800); padding: 0; }
.idx .doctor .txt h3 b { font-size: 2em; }
.idx .doctor .career { text-align: left; display: none; }
.idx .doctor .career h4 { font-size: 1.125em; font-weight: 600; } 
.idx .doctor .big { font-size: 1.25em; font-weight: 700; margin: 0.25em 0; }
.idx .doctor .small { font-size: 1.125em; color: var(--gray-800); }
.idx .doctor .small li::before { content:"·"; font-weight: 900; margin-right: 0.25em; }
.idx .doctor .more { background-color: #E1EDF3; color: var(--primary-500); margin-top: 1.5em; cursor: pointer; }
.idx .doctor .more:hover { background-color: var(--primary-500); color: #fff; }

.idx .doctor .is-active { flex-grow: 1; }
.idx .doctor .is-active .box { display: flex; padding-bottom: 0; padding-top: 4em; gap: 3em; }
.idx .doctor .is-active .img { width: 45%; margin: 0; background-color: transparent; border-radius: 0; padding-top: 0; position: relative; overflow: visible; }
.idx .doctor .is-active .img img { width: auto; height: 125%; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);  }
.idx .doctor .is-active .txt { flex-grow: 1; text-align: left; background: url(../img/idx/doctor_img.png) no-repeat right bottom 35%/55%; }
.idx .doctor .is-active .txt small { padding: 0.5em 0.875em; background-color: #E1EDF3; color:  var(--primary-500); }
.idx .doctor .is-active .txt h3 { flex-direction: row; margin-bottom: 2em; }
.idx .doctor .is-active .career { display: block; }
.idx .doctor .is-active .more { margin-top: 3em; }

/* product */
.idx .product { background: #E6F2F6 url(../img/idx/product_bg.png) no-repeat center bottom/100%; }
.idx .product .box { display: flex; align-items: center; justify-content: center; gap: 2em; }
.idx .product .swiper-btn { font-size: 2.625em; position: relative; z-index: 5; cursor: pointer; background-color: #fff; border: 1px solid var(--primary-100); color: var(--primary-500); aspect-ratio: 1/1; width: 1.5em; display: flex; justify-content: center; align-items: center; border-radius: var(--radius-full); }
.idx .product .swiper-btn.swiper-button-disabled { filter: grayscale(1); opacity: 0.6; }
.idx .product .swiper { width: 100%; max-width: 450px; margin: 0; overflow: visible; }
.idx .product .swiper-wrapper { align-items: center; }
.idx .product .circle { width: 100%; aspect-ratio: 1/1; display: flex; flex-direction: column; background-color: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-full); align-items: center; justify-content: center; transform: scale(0.8); }
.idx .product .circle h5 { font-size: 2em; font-weight: 700; color: var(--primary-500); }
.idx .product .circle p { font-size: 1.25em; color: var(--gray-700); padding: 0 2em; }
.idx .product .circle .img { width: 70%; height: 45%; margin-top: 1em; }
.idx .product .circle .img img { max-width: 90%; max-height: 180%;  }

.idx .product .swiper-slide-active .circle { background-color: var(--primary-500); transform: scale(1); }
.idx .product .swiper-slide-active .circle h5 { color: #fff; }
.idx .product .swiper-slide-active .circle p { color: #fff; }

/* disinfect */
.idx .disinfect { background: url(../img/idx/disinfect_bg.png) no-repeat center bottom/100%; }
.idx .disinfect .list { display: flex; justify-content: space-around; }
.idx .disinfect .list li { width: 15%; }
.idx .disinfect .list .img { border-radius: var(--radius-full); background-color: var(--primary-50); aspect-ratio: 1/1; display: flex; justify-content: center; align-items: center; padding: 3em; }
.idx .disinfect .list .img img { width: 100%; }
.idx .disinfect .list h5 { font-size: 1.375em; font-weight: 700; margin-top: 1em; }
.idx .disinfect .list p { font-size: 1.125em; color: var(--gray-700); margin-top: 0.25em; }

/* interior */
.idx .interior { background: #EEF6F9 url(../img/idx/interior_bg.png) no-repeat right 5% top 15%/20%; }
.idx .interior .box { display: grid; grid-template-columns: 0.35fr 0.65fr; gap: 2em; }
.idx .interior .list { display: grid; grid-template-columns: repeat(3,1fr); gap: 2em; }
.idx .interior .img { aspect-ratio: 1/1; overflow: hidden; border-radius: var(--radius-lg); }
.idx .interior .img img { width: 100%; height: 100%; object-fit: cover; }
.idx .interior .big { aspect-ratio: auto; }

/* location */
.idx .location .box { display: flex; gap: 5%; }
.idx .location .map { width: 48%; background-color: #eee; overflow: hidden; border-radius: var(--radius-lg); }
.idx .location .con { flex-grow: 1; text-align: left; }
.idx .location .divider_line { width: 100%; height: 1px; background-color: #C4D8E2; margin: 1.25em 0; }
.idx .location .list h5 { display: flex; justify-content: flex-start; align-items: center; gap: 0.5em; margin-bottom: 0.75em; }
.idx .location .list h5 img { height: 1.5em; }
.idx .location .list h5 span { font-size: 1.25em; font-weight: 700; }
.idx .location .list p { font-size: 1.125em; display: flex; justify-content: flex-start; align-items: center; line-height: 1.6; }
.idx .location .list p strong { font-size: 1.875em; }
.idx .location .list .word { width: 6em; display: flex !important; justify-content: space-between; align-items: center; margin-right: 1.5em; }

/*
.idx .location .title { margin-bottom: 0; }
.idx .location .title,
.idx .location .list { text-align: left; }
.idx .location .address { display: flex; justify-content: flex-start; align-items: center; gap: 1em; margin: 2em 0; }
.idx .location .address .icon { background-color: #EDF5F8; width: 3.5em; border-radius: var(--radius-md); }
.idx .location .address p { font-size: 1.25em; font-weight: 700; }
.idx .location .list { display: flex; gap: 1.5em; }
.idx .location .list li { flex: 1 1 40%; border-radius: var(--radius-lg); display: flex; flex-direction: column; padding: 3em 2.5em 2em; align-items: flex-start; }
.idx .location .list h5 { text-transform: uppercase; font-size: 1.5em; font-weight: 700; margin-top: 0.5em; margin-bottom: auto; }
.idx .location .list p { font-size: 1.25em; }
.idx .location .list p:nth-of-type(1) { margin-top: 1.5em; }
.idx .location .list small { font-size: 0.9375em; }
.idx .location .list li:nth-child(1) { background: var(--primary-500) url(../img/idx/location_bg.png) no-repeat right 10% top 20% / 45%; color: #fff; }
.idx .location .list li:nth-child(2) { background: #E6F2F6; }
.idx .location .list li:nth-child(2) p { font-size: 1.125em; }
*/
