@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif+KR:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@font-face {
    font-family: 'GMS_Light';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GMS_Medium';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GMS_Bold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Cafe24Shiningstar';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_twelve@1.1/Cafe24Shiningstar.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html {
    width: 100%;
}

html, body {
    font-family: 'Noto Sans KR', sans-serif;
}
body {
    min-width: 1500px;
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
}
body {
    overflow-y: scroll;
    color: #101820;
    font-size: 1.6rem;
    line-height: 1.4;
    letter-spacing: -0.8px;
}

.section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 0;
	display: flex;
}

#go2top {
    position: fixed;
    bottom: 100px;
    right: 50px;
    width: 77px;
    height: 77px;
    background: url(../images/icon_top_button.png) no-repeat;
    z-index: 110;
}

#quick {
    display: none;
}
.dropdown {
  position: relative;
}

/* 초기 상태에서 드롭다운 메뉴를 숨김 */
.dropdown-lang {
  visibility: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 1.3s ease, opacity 0.8s ease; /* 트랜지션 설정 */
  position: absolute;
  left: -10px;
  top: 44px;
  z-index: 10110;
}

/* 버튼 스타일링 */
.dropdown-button {
  cursor: pointer;
}

/* 드롭다운 메뉴 아이템 스타일링 */
.dropdown-lang li {
  padding: 10px;
}

/* 드롭다운 메뉴 아이템 링크 스타일링 */
.dropdown-lang li a {
  color: #333;
  text-decoration: none;
}

/* 드롭다운 메뉴가 보여질 때 스타일링 */
.dropdown-lang.active {
  visibility: visible;
  max-height: 200px; /* 최대 높이 설정 (원하는 값으로 조절) */
  opacity: 1;
  transition: max-height 5.3s ease, opacity 1.4s ease; /* 트랜지션 설정 */
}

/*
.header {
    position: fixed;
    width: 100%;
    max-width: 1920px;
    min-height: 109px;
    transition: top 0.2s;
    -webkit-transform: translate3d(0,0,0);
    z-index: 9999;
    display: flex;
    margin: 0 auto;
    min-width: 1400px;
}
*/

.bg-color {
    background-color: rgba(0, 0, 0, 0.7); /* 변경할 배경색 설정 */
}

.header {
	margin: 0 auto;
	display: flex;
    position: absolute;
    width: 100%;
	min-width: 1500px;
    max-width: 1920px;
    min-height: 107px;
    box-sizing: border-box;
    transition: top 0.2s;
    -webkit-transform: translate3d(0,0,0);
    z-index: 9999;
}
.logo {
	width: 188px;
	height: 64px;
	position: absolute;
	background: url(../images/logo.png) no-repeat;
	background-size: 188px 64px;
}

header.fixed {
    transition: top 0.2s;
    -webkit-transform: translate3d(0,0,0);
    background-color: #fff;
	border-bottom: 1px solid #e3e3e3;
}
header.fixed #gnb > li:first-child > span a {
    background: url(../images/logo_black.png) no-repeat;
}
header.fixed #gnb > li > span a {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: center;
    color: #333;
}
header.on {
    border-bottom: 1px solid #e2e2e2;
    background-color: #fff;
	color: #333;
}

header.on #gnb > li:first-child > span a {
	background: url(../images/logo_black.png) no-repeat;
}

header.on #gnb > li > span a {
	color: #333;
}

.welcome {
    color: #fff;
    font-size: 40px;
    line-height: 53px;
    letter-spacing: -3px;
    font-weight: 300;
    display: block;
    padding-left: 40px;
    padding-top: 11px;
    padding-bottom: 49px;
    flex-basis: 100%;
    background-color: #172683;
}

.box-login {
    background-color: #172683;
    padding-bottom: 40px;
    padding-left: 40px;
    padding: 10px 40px 40px;
}

.box-login a:first-child {
    margin-right: 5px;
    display: inline-block;
    width: 200px;
    line-height: 66px;
    border: 2px solid #fff;
    color: #fff;
    text-align: center;
    background: transparent;
    font-size: 26px;
}

.box-login a:nth-child(2) {
    display: inline-block;
    width: 200px;
    line-height: 66px;
    border: 2px solid #fff;
    color: #fff;
    text-align: center;
    background: transparent;
    font-size: 26px;
}

.mobile_nav {
    display:none;
}
#mobile_gnb {
    display: none;
}
.header .nav {
    width: 100%;
    margin: 0 auto;
}
header #gnb {
	display: flex;
}

header #gnb > li:first-child, header #gnb > li:last-child span {
    justify-content: end;
}

header #gnb > li:first-child {
    width: 410px;
}

header #gnb > li:last-child {
    width: calc(100%/8);
    text-align: center;
}

header #gnb > li {
	width: calc(100%/8);
	text-align: center;
}

header #gnb .depth1-8 span {
    justify-content: flex-end;
    padding-right: 40px;
    box-sizing: border-box;
}

header #gnb .depth1-8 span a {
    font-size: 15px;
}

header #gnb .depth1-8 span::before {
    display: none;
}

header #gnb > li > span {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	height: 107px;
}
header #gnb > li:last-of-type > span::after {
	display: none;
}
header #gnb > li:first-child > span::before {
	position: absolute;
	background-color: transparent;
}
header #gnb > li > span::before {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 3px;
	background-color: #1b31af;
	transform: translateX(-50%);
	/*
	transition: width 0.3s;
	*/
	content:'';
}
header #gnb > li:last-child > span::before {
	position: absolute;
	background-color: transparent;
}
header #gnb > li:hover > span::before {
	width: 100%;
}
header #gnb > li > span a {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.67;
	letter-spacing: -0.9px;
	text-align: center;
	color: #fff;
    left: 40px;
}
header #gnb .snb {
	display: none;
	height: calc(100% - 107px);
	padding-top:30px;
	box-sizing: border-box;
}
header #gnb .snb.hospital {
	padding-top: 75px;
    background-color: rgb(226, 234, 244);
}
header #gnb .snb.on {
	display: inline-block;
    text-align: left;
    width: 100%;
    border-right: 1px solid #e3e3e3;
    border-top: 1px solid #e3e3e3;
	min-height: 335px;
}
header #gnb .snb a:hover {
	color:#3f97c9;
}
header #gnb .snb > li:first-child {
	display: table;
    margin: 0 auto;
}
header #gnb .snb > li {
	text-align: center;
}
header #gnb .snb > li+li {
	margin-top: 8px;
}
header #gnb .snb > li > a {
	letter-spacing: -0.85px;
	word-break: keep-all;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 17px;
	font-weight: 400;
	text-align: center;
	color: #6d6d6d;
	line-height: 2.0;
}
.bl_nav_hospital {
	width: 114px;
	float: left;
}
.img_nav_hospital {
	width: 114px;
	height: 151px;
}

@media screen and (max-width:1600px) {
    .bl_nav_hospital {
        width: 100px;
        float: left;
    }
    .img_nav_hospital {
        width: 100px;
        height: auto;
    }
}

header .m-close {
	display: none;
}

.m-sns {
    display: flex;
    align-items: flex-start;
    padding-right: 30px;
}

.m-sns > a {
	margin-right: 20px;
	display: inline-block;
}
header.on .m-sns .youtube, header.fixed .m-sns .youtube {
    width: 23px;
    height: 17px;
    vertical-align: initial;
	background: url(../images/icon_utube.png) no-repeat;
}

header .m-sns .youtube {
    width: 23px;
    height: 17px;
    vertical-align: initial;
	background: url(../images/utub_white.png) no-repeat;
}

header.on .m-sns .kakao, header.fixed .m-sns .kakao {
	width: 25px;
    height: 23px;
    vertical-align: text-top;
	background: url(../images/icon_kakao.png) no-repeat;
}

header .m-sns .kakao {
	width: 25px;
    height: 23px;
    vertical-align: text-top;
	background: url(../images/kakao_white.png) no-repeat;
}

header.on .m-sns .blog, header.fixed .m-sns .blog {
	width: 25px;
    height: 23px;
    vertical-align: text-bottom;
	width: 25px;
	background: url(../images/icon_blog.png) no-repeat;
}

header .m-sns .blog {
	width: 25px;
    height: 23px;
    vertical-align: text-bottom;
	width: 25px;
	background: url(../images/blog_white.png) no-repeat;
}

.m-sns .language {
	width: 26px;
	height: 26px;
    vertical-align: text-bottom;
	background: url(../images/icon_earth.png) no-repeat;
}

.dropdown-lang.active li a img {
    width: 25px;
}

.login .txt-welcome {
    text-align: center;
    margin-top: 10px;
    font-size: 20px;
    margin-bottom: 20px;
}

.pageTitle {
    height: 64px;
    text-align: center;
    background-size: auto 7rem;
    background-repeat: no-repeat;
    background-position: 50%;
    font-size: 0;
}

.pageTitle.login {
    background-image: url(/public/images/logo-bobo.png);
    background-size: 180px 44px;
}

.modal-box {
    display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 10000000;
}

.modal-box .modal {
	position: absolute;
	top: 15%;
	bottom: 15%;
	left: 50%;
	width: 800px;
	padding: 30px;
	background-color: #fff;
	transform: translateX(-50%);
}

.modal-box .modal.small {
	width: 80%;
    height: fit-content;
}

.modal-box .modal .close {
	display: block;
    position: absolute;
    top: -40px;
    right: -70px;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 4rem;
    font-weight: 400;
}

.loginWrap {
	background-size: 2.6rem;
}

.loginWrap .inputTxt {
	display: block;
	width: 100%;
	line-height: 3.3rem;
	margin: 0 0 1.75rem;
	padding: 0 10px;
	border: 0;
	border-bottom: 0.2rem solid #c0c8d6;
	font-size: 1.4rem;
	box-sizing: border-box;
}

.loginWrap .loginOption {
	position: relative;
	margin: 1.5rem 0 3rem;
}

.loginWrap .loginOption .link {
	position: absolute;
	top: 0;
	right: 0;
	color: #333;
}

.loginWrap .btnSns {
	/*margin: 1rem 0 3rem;*/
	padding: 1.5rem 0 0;
	text-align: center;
}

.loginWrap .btnSns ._each {
    display: flex;
    border: 1px solid #ddd;
}

.loginWrap .btnSns ._each:first-child {
    margin-bottom: 10px;
}

.loginWrap .btnSns ._each .icon {
    padding: 0 30px 0 30px;
    border-right: 1px solid #ddd;
}

.loginWrap .btnSns ._each .icon img {
    width: 30px;
}

.loginWrap .btnSns ._each .txt {
    display: flex;
    align-items: center;
    /*padding-left: 30px;*/
	font-size: 2.2rem;
	font-weight:bold;
}

.loginWrap .btnSns a~a {
	margin-left: 4.5rem;
}

.loginWrap .btnSns [class*="btn"] {
	display: inline-block;
}

.loginWrap .btnSns [class*="btn"]:before {
	content: "";
	display: inline-block;
	width: 3rem;
	height: 3rem;
	margin-right: 0.8rem;
	background-size: cover;
	background-repeat: no-repeat;
	vertical-align: -10px;
}

.loginWrap .btnSns [class*="btn"].btnNaver {
	color: #1cbf00;
}

.loginWrap .btnSns [class*="btn"].btnNaver:before {
	background-image: url("/resource/images/naver.png");
}

.loginWrap .btnSns [class*="btn"].btnKakao {
	color: #412e34;
}

.loginWrap .btnSns [class*="btn"].btnKakao:before {
	background-image: url("/resource/images/kakao.png");
}

.loginWrap .helpTxt {
	margin: 2rem 1rem 0;
	text-align: left;
    font-size: 1.6rem;
}

/*
.logo {
	position: absolute;
    left: 50px;
}
.logo > a {
    display: block;
    width: 145px;
    height: 32px;
    text-indent: -9999px;
    box-sizing: border-box;
    background-image: url(../images/logo.png);
    background-repeat: no-repeat;
    margin: 42px 0 0 51px;
}
*/

/* location */
#location {
	/*
    padding-right: clamp(50px, 13%, 310px);
    padding-left: clamp(50px, 13%, 310px);
	*/
	padding-right: clamp(50px, 15%, 300px);
	padding-left: clamp(50px, 15%, 300px);
	display: flex;
	height: 59px;
	border-top: 1px solid #e3e3e3;
	border-bottom: 1px solid #e3e3e3;
}

@media screen and (max-width:1600px) { 
    #location {
        /*
        padding-right: clamp(50px, 13%, 310px);
        padding-left: clamp(50px, 13%, 310px);
        */
        padding-right: clamp(50px, 10%, 300px);
        padding-left: clamp(50px, 10%, 300px);
        display: flex;
        height: 59px;
        border-top: 1px solid #e3e3e3;
        border-bottom: 1px solid #e3e3e3;
    }
}

#location>* {
	border-right: 1px solid #eee;
	box-sizing: border-box;
}

#location .home {
	display: block;
	width: 59px;
	line-height: 59px;
	text-align: center;
	border-left: 1px solid #eee;
	flex-shrink: 0;
}

#location .depth button {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 46px;
    font-family: 'Noto Sans KR', sans-serif;
    color: #333;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.67;
    letter-spacing: -0.45px;
    box-sizing: border-box;
    background-image: url(../images/icon_arrow_down.png);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    background-size: 25px auto;
}

#location .depth.dep-1 button {
    padding: 0 28px;
    background-image: url(../images/icon_arrow_down.png);
    background-repeat: no-repeat;
    background-position: 90% 50%;
    background-size: 25px auto;
}
#location .depth.dep-2 button {
    padding: 0 28px;
    background-image: url(../images/icon_arrow_down.png);
    background-repeat: no-repeat;
    background-position: 89% 50%;
    background-size: 25px auto;
}

.depth.dep-1 {
    position: relative;
    width: 250px;
}

.depth.dep-2 {
    position: relative;
    width: 230px;
}

#location .depth ul {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    border: 1px solid #eee;
    box-sizing: border-box;
    background-color: #fff;
    z-index: 1000;
    transition: top 0.2s;
    -webkit-transform: translate3d(0,0,0);
}

#location .depth ul li {
    border-bottom: 1px solid #dbdbdb;
}

#location .depth ul li:last-child {
    border-bottom: none;
}

#location .depth ul li:hover {
    background-color: #f6f9fb;
}

#location .depth ul li.depth1-7 {
    display: none;
}

#location .depth ul li a {
	display: flex;
	align-items: center;
	width: 100%;
	height: 50px;
	padding: 20px 28px;
	box-sizing: border-box;
	color: #333;
	font-size: 18px;
    font-family: 'Noto Sans KR', sans-serif;
}
#location .depth:hover ul {
	display: block;
}

.swiper-control-wrap {position:absolute;top:76%;left:50%;transform: translateX(-50%);width:200px;z-index: 10;}
.swiper-control-wrap .control {position:absolute;top:40px;}
.swiper-control-wrap .control .navi {float:left;}
.swiper-control-wrap .control .navi button {width:10px;height:10px;margin:0 3px;background:#fff;border-radius:10px;box-shadow:inset 1px 1px 2px 0 #b9b9b9;text-indent:-9999px;}
.swiper-control-wrap .control .navi .active {width:50px;background:#3481f5;box-shadow:none;}
.swiper-control-wrap .startMainbnr {display:none;}
.swiper-control-wrap .startMainbnr,
.swiper-control-wrap .stopMainbnr {position:absolute; top: 43px; right: 0; margin:-2px 0 0 0px;width:27px;height:27px;border-radius:15px;}
.swiper-control-wrap .startMainbnr:after {content:"";position:absolute;top:9px;left:16px;border:5px solid transparent;border-left:9px solid #fff;border-right:0; box-shadow: inset 1px 1px 2px 0 #b9b9b9;}
.swiper-control-wrap .stopMainbnr:after {content:"";position:absolute;top:9px;left:9px;width:4px;height:10px;border-radius:30%;background:#fff;box-shadow: inset 1px 1px 2px 0 #b9b9b9;}
.swiper-control-wrap .startMainbnr span,
.swiper-control-wrap .stopMainbnr span {display:block;text-indent:-9999px;}
.swiper-control-wrap .stopMainbnr span:after {content:"";position:absolute;top:9px;left:15px;width:4px;height:10px;border-radius:30%;background:#fff;box-shadow: inset 1px 1px 2px 0 #b9b9b9;}


#innerCont {
	width: 100%;
	margin: 0 auto;
	padding: 57px 310px 158px;
	box-sizing: border-box;
	padding-right: clamp(50px, 15%, 300px);
	padding-left: clamp(50px, 15%, 300px);
}

@media screen and (max-width:1600px) {
    #innerCont {
        width: 100%;
        margin: 0 auto;
        padding: 57px 310px 58px;
        box-sizing: border-box;
        padding-right: clamp(50px, 10%, 300px);
        padding-left: clamp(50px, 10%, 300px);
    }
}

.content_title {
	text-align: center;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 40px;
	font-weight: 500;
}
.content_title_info {
	display: block;
	text-align: center;
	margin-bottom: 58px;
	margin-top: 20px;
}

.block_content_light {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: normal;
    text-align: left;
    color: #7a7a7a;
    display: block;
    word-break: keep-all;
}

.block_content_light_17 {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 17px;
	font-weight: 400;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.75;
	letter-spacing: normal;
	text-align: left;
	color: #7a7a7a;
    display: block;
}

.block_content {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 18px;
	font-weight: 400;
	font-stretch: normal;
	font-style: normal;
	line-height: 30px;
	letter-spacing: -0.9px;
	text-align: left;
	color: #333;
    display: block;
    word-break: keep-all;
}

.block_content_bold {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 22px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.36;
	letter-spacing: -1.1px;
	text-align: left;
	color: #333;
    display: block;
    word-break: keep-all;
}

.block_content_bold_30 {
    font-size: 30px;
    line-height: 30px;
    letter-spacing: -1.5px;
    font-family: 'Noto Sans KR', sans-serif;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	text-align: left;
	color: #333;
    display: block;
}


.block_content .orange {
    font-weight: normal;
    color: #ff490a;
}

footer {
	background-color: #373737;
}

footer .inner {
	display: flex;
	/*justify-content: space-between;*/
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	max-width: 1960px;
	padding: 89px 30px;
	box-sizing: border-box;
	background: #10194f;
}

footer .inner .foot-logo {
	width: 100%;
}

footer .inner .f-l .f-l-list {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}

footer .inner .f-l dl {
	width: 160px;
	margin: 30px 10px 0 0;
	font-weight: 400;
	color: #fff;
}

footer .inner .f-l dl:nth-of-type(2) {
	width: 190px;
}

footer .inner .f-l dl dt {
	opacity: 0.35;
}

footer .inner .f-l dl dd {
	font-weight: 500;
	line-height: 1.4;
}

footer .inner .f-r {
	display: flex;
}

footer .inner .f-r .f {
	display: flex;
}

footer .inner .f-r .f.time dl {
	color: #fff;
	font-size: 1.6rem;
}

footer .inner .f-r .f.time dl dt {
	font-weight: 500;
}

footer .inner .f-r .f.time dl dd {
	font-weight: 400;
}

footer .inner .f-r .f.tel,
footer .inner .f-r .f.call {
	display: inline-flex;
	/* margin-top: 50px; */
}

footer .inner .f-r .f.tel dl,
footer .inner .f-r .f.call dl {
	min-width: 150px;
	margin-right: 20px;
	color: #fff;
	letter-spacing: -0.8px;
}

footer .inner .f-r .f.tel dl dt,
footer .inner .f-r .f.call dl dt {
	font-size: 1.8rem;
}

footer .inner .f-r .f.tel dl dd,
footer .inner .f-r .f.call dl dd {
	font-size: 2.8rem;
	font-weight: 600;
}

footer .inner .f-r .f img {
	margin-right: 20px;
	align-self: flex-start;
}

footer .info {
	width: 100%;
	max-width: 1509px;
	margin: 20px auto 0;
}

footer .info p {
	color: #fff;
}

footer .info span {
	display: inline-block;
	margin-right: 20px;
	color: #fff;
	font-weight: 400;
	opacity: 0.35;
}

footer .f-sns {
	display: none;
}

.swiper-slide .inner {
    top: 30%;
    left:50%;
    transform: translateX(-50%);
    position: absolute;
    width: 100%;
}

.ydp_text {
    margin-bottom: 70px;
    opacity: 0.9;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 3;
    letter-spacing: 8.4px;
    text-align: center;
    color: rgba(255, 255, 255, 0.97);
    display: block;
}

.swiper-slide .inner .large {
    font-size: 45px;
    font-weight: bold;
    line-height: 1.33;
    letter-spacing: -2.25px;
    text-align: center;
    color: #fff;
    font-family: 'Noto Sans KR', sans-serif;
	text-shadow:0px 0px 10px #333;

}

.swiper-slide .inner .small {
    font-size: 22px;
    line-height: 1.55;
    letter-spacing: -1.1px;
    text-align: center;
    color: #fff;
    font-weight: 500;
    font-family: 'Noto Sans KR', sans-serif;
}

#fnb {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 25px 0;
	background: #fff;
	border-top: 1px solid #dadada;
}

#fnb li:nth-child(7) {
	margin-right: 10px;
}

#fnb li a {
	color: #333;
    font-weight: 500;
    font-size: 18px;
	margin: 18px;
}

#fnb li:nth-child(7) a, #fnb li:nth-child(8) a {
	color: #333;
    font-weight: 500;
    font-size: 18px;
	margin: 5px;
}

#fnb li a:hover {
	opacity: 1;
}
.clr-333 {
	color : #333;
}
.clr-97 {
	color : #979797;
}

/* index.html */
#main-banner {
	/*background: url(../images/img_main@3x.png) 50% 50% no-repeat;*/
	background-size: cover;
    position: relative;
    min-width: 1500px;
}

#main-banner .main-control {
   position: absolute;
   bottom: 0;
   left: 50%;
   transform: translateX(-50%); 
   display: flex;
   z-index: 10;
}

#main-banner .main-control ._each {
    width: 466px;
    height: 226px;
    border-top-right-radius: 100px;
    padding: 52px 63px 39px;
    box-sizing: border-box;
}

#main-banner .main-control ._each p {
    font-size: 36px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.86;
    letter-spacing: -1.8px;
    text-align: left;
    color: #fff;
    margin-bottom: 30px;
}

#main-banner .main-control ._each p b {
    font-weight: bold;
}

#main-banner .main-control ._consult {
    background-color: rgb(27 48 175 / 75%);
}

#main-banner .main-control ._reserve {
    background-color: rgb(52 129 245 / 75%);
}

#main-banner .main-control ._search {
    background-color: rgb(19 165 202 / 75%);
}

#main-banner .main-control ._consult button {
    width: 100%;
    font-size: 22px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.41;
    letter-spacing: -1.1px;
    text-align: left;
    color: #1b30af;
    height: 70px;
    display: flex;
    background: #fff;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.35);
}

#main-banner .main-control ._reserve button {
    width: 100%;
    font-size: 22px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.41;
    letter-spacing: -1.1px;
    text-align: left;
    color: #3481f5;
    height: 70px;
    display: flex;
    background: #fff;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.35);
}

#main-banner .main-control ._search .box-search {
    position: relative;
    background: #fff;
    width: 100%;
    display: flex;
    height: 70px;
}

#main-banner .main-control ._search .box-search input {
    border: 0;
    padding-left: 23px;
    font-size: 18px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.9px;
    text-align: left;
}

#main-banner .main-control ._search .box-search button {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

#main-banner .__left {
	color: white;
	background-color: transparent;
	position: relative;
	top: 200px;
	width: 550px;
	margin-right: 138px;
	float: left;
	padding-left: calc((100% - 1390px)/2);
}

#main-banner .__left ._top {
    width: 100%; display: flex;
}

#main-banner .__left ._top .one, #main-banner .__left ._bottom .two {
    width: 52px;
    float: left;
    font-size: 18px;
    letter-spacing: -0.9px;
    font-weight: bold;
}

#main-banner .__left ._top .content {
    width: calc(100%-52px); float: left;
}

#main-banner .__left ._top .content span {
    font-size: 22px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -1.1px;
}

.txt_quick { 
    font-size: 48px;
    line-height: 77px;
    letter-spacing: -2.4px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    margin-bottom: 10px;
}

.txt_quick_detail { 
    display: inline-block;
    font-size: 18px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
    margin-top: 20px;
} 

.quick-reserve {
    width: 100%;
}

.box_quick_input {
    float: left; 
    width: 400px;
}

.quick-reserve button[type="submit"] {
    float: left;
    height: 98px;
    width: 98px;
    background: #3481f5;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    text-align: center;
    line-height: 98px;
    border-bottom-left-radius: 20px;
	color: #fff;
}

input[id="quick-reserve-name"] {
    width: 365px;
    height: 51px;
    background-color: #fff;
    box-shadow: 0 0 0 3px #fff inset;
    border: none;
    background: transparent;
    padding-left: 24px;
}

input[id="quick-reserve-name"]::placeholder, input[id="quick-reserve-phone"]::placeholder {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 4.28;
    letter-spacing: -0.9px;
    text-align: left;
    color: rgba(255, 255, 255, 0.35);    
}
input[id="quick-reserve-name"]::-webkit-input-placeholder, input[id="quick-reserve-phone"]::-webkit-input-placeholder {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 4.28;
    letter-spacing: -0.9px;
    text-align: left;
    color: rgba(255, 255, 255, 0.35);    
}
input[id="quick-reserve-name"]::-ms-input-placeholder, input[id="quick-reserve-phone"]::-ms-input-placeholder {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 4.28;
    letter-spacing: -0.9px;
    text-align: left;
    color: rgba(255, 255, 255, 0.35);    
}
.textarea::placeholder {color:#ccc;}
.textarea::-webkit-input-placeholder {color:#ccc;}
.textarea:-ms-input-placeholder {color:#ccc;}

input[id="quick-reserve-phone"] {
    width: 365px;
    height: 51px;
    background-color: #fff;
    box-shadow: 0 0 0 3px #fff inset;
    border: none;
    background: transparent;
    padding-left: 24px;
    margin-top: -3px;
}

#main-banner .__left ._bottom {
    display: flex;
    width: 100%;
    margin-top: 79px;
}

#main-banner .__left ._bottom .two {
    width: 92px;
}

#main-banner .__left ._bottom .content {
    width: calc(100%-52px);
    float: left;
}

#main-banner .__left ._bottom .content span {
    font-size: 22px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    line-height: 23px;
    letter-spacing: -1.1px;
}

.txt_online {
    font-size: 48px;
    letter-spacing: -2.4px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    margin-bottom: 36px;
}

.txt_online_detail {
    display: inline-block;
    font-size: 18px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
}

.btn_go_online_reserve {
    width: calc(100%-389px);
    height: 50px;
    width: 195px;
    background: #3481f5;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    text-align: center;
    line-height: 50px;
    display: block;
    margin-top: 30px;
}

/*
#main-banner .__right {
    color: black;
    background-color: transparent;
    position: relative;
    top: 200px;
    width: 705px;
    float: left;
}
*/
#main-banner .__right ._top {
    width: 700px;
    height: 214px;
    background-color: #1b30af;
    border-top-left-radius: 75px;
    margin-bottom: 63px;
    margin-top: 48px;
}

#main-banner .__right ._bottom {
    display: none;
}

.search-filter {
    position: relative;
    width: 508px;
    padding-top: 50px;
    padding: 53px 36px 36px;
    margin: 0 auto;
}

#btn-main_search {
    position: absolute;
    left: 50px;
}

#btn-main_search > img { 
    width: 18px;
    height: 19px;
    margin-bottom: 6px;
}

input[id="main_search"] {
    width: 100%;
    background: #1b30af;
    border: none;
    border-bottom: 1px solid rgb(255 255 255 / 30%);
    padding-bottom: 20px;
    padding-left: 50px;
    box-sizing: border-box;
    color: #fff;
	outline: none;
}

input[id="main_search"]::placeholder {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 22px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -1.1px;
    text-align: left;
    color: rgba(255, 255, 255, 0.37);
}
input[id="main_search"]::-webkit-input-placeholder {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 22px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -1.1px;
    text-align: left;
    color: rgba(255, 255, 255, 0.37);
}
input[id="main_search"]::-ms-input-placeholder {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 22px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -1.1px;
    text-align: left;
    color: rgba(255, 255, 255, 0.37);  
}

#main-banner .__right ._top p {
    margin-left: 98px;
    color: #fff;
}

#main-banner .__right ._top p img:first-child {
    width: 19px;
    margin-right: 10px;
}

.txt_call {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.9px;
}

.number_call {
    font-family: 'Lato', sans-serif;
    font-size: 25px;
    font-weight: 500;
    vertical-align: sub;
	color: #fff;
}

#main-banner .__right ._bottom ._title {
    font-family: 'Lato', sans-serif;
    font-size: 60px;
    font-weight: bold;
    line-height: 50px;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    margin-bottom: 34px;
    display: block;
}

.news_img {
    width: 415px;
    height: 244px;
    float: left;
}

.news_content {
    width: 285px;
    height: 244px;
    float: left;
    background: #fff;
    border-top-right-radius: 40px;
}

.news_content ._detail {
    margin: 55px 50px 50px;
}

.news_content ._detail span {
    font-size: 22px;
    color: #333;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: bold;
    line-height: 1.41;
}

.news_content ._more {
    margin-left: 50px;
}

.news_content ._more span {
    font-family: 'Lato', sans-serif;
    font-size: 14px; 
    font-weight: 900;
    color: #333; 
    margin-right: 30px;
}

#main-banner-footer {
	background: #f5f5f5;
    position: relative;
    z-index: 100;
    width: 100%;
    min-width: 1500px;
}

.card:nth-child(7) .box:hover, .card:nth-child(8) .box:hover {
	cursor: default;
	box-shadow: none;
}
.card .box:hover {
	box-shadow: 0 0 0 0 #000, inset 0 0 0 0 #000, inset 0 0 0 1px #a0a0a0, 16.1px 19.2px 13px 0 rgba(47, 74, 118, 0.27);
    background-color: #fff;
	cursor: pointer;
}
.wrap-card {
	margin: 0 0 0 -10px;
}

.wrap-card .card {
    float: left;
    width: 33.3%;
}

.wrap-card .box {
    position: relative;
    min-height: 435px;
    margin: 20px 0 0 20px;
    background: #fff;
    border: 1px solid #ddd;
}

.box.active{
	box-shadow: 0 0 0 0 #000, inset 0 0 0 0 #000, inset 0 0 0 1px #a0a0a0, 16.1px 19.2px 13px 0 rgba(47, 74, 118, 0.27);
  	background-color: #fff;
}

.wrap-card .box-bottom {
    position: absolute;
    bottom: 30px;
    width: 100%;
}
.wrap-card .box-bottom.center {
    position: absolute;
    bottom: 96px;
    width: 100%;
}
.box-info-title {
	font-size: 25px;
    font-weight: bold;
    color: #333;
    margin: 70px 50px 23px;
    display: block;
}
.box-info-contents {
	font-size: 18px;
	color: #333;
	margin-left: 50px;
	font-weight: 500;
}
.box-bottom > img {
	width: 183px;
    height: 183px;
    float: right;
    margin-right: 20px;
}

.box-center {
	width: 80%;
    margin: 0 auto;
    box-shadow: 0 0 0 0 #000, inset 0 0 0 0 #000, inset 0 0 0 1px #a0a0a0;
    background-color: #fff;
    text-align: center;
}

.box-center-top, .box-center-bottom {
    border: 1px solid #a0a0a0;
    display: flex;
    border-right: none;
}

.box-center-top {
    border-bottom: none;
}

.box-center-top div, .box-center-bottom div {
	float: left;
	width: 50%;	
	-moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
     box-sizing: border-box; 
	padding: 17px;
    border-right: 1px solid #a0a0a0;
	font-size: 18px;
	letter-spacing: -0.9px;
	color: #333;
	font-weight: 500;
}

.box-center-top div:hover, .box-center-bottom div:hover {
	color: #fff;
    background-color: #3481f5;
}


.box-center-top div a, .box-center-bottom div a {
    color: #333;
}

.box-center-top div:hover a, .box-center-bottom div:hover a {
    color: #fff;
}

.box-center-top div a:visited, .box-center-bottom div a:visited {
    text-decoration: none;
} 


.box-center-pc {
    display: flex;
}

.box-center-mobile {
    display: none;
}

.box-map {
	width: 80%;
    margin: 0 auto;
    box-shadow: 0 0 0 0 #000, inset 0 0 0 0 #000, inset 0 0 0 1px #a0a0a0;
    background-color: #fff;
    text-align: center;
	margin-bottom: 10px;
	padding: 19px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.box-map:hover {
    color: #fff;
    background-color: #3481f5;
}

.box-map:hover span {
	color: #fff;
}

.box-map span {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 18px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.67;
	letter-spacing: -0.9px;
	text-align: center;
	color: #333;
}

.health_center .txt {
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    margin: 70px 50px 19px;
    display: block;
}

.health_center .phone {
    font-family: 'Lato', sans-serif;
    font-size: 40px;
    color: #fff;
    margin-left: 50px;
    font-weight: 800;
}

.box_phone .txt {
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    margin: 70px 50px 19px;
    display: block;
}

.box_phone .phone {
    font-family: 'Lato', sans-serif;
    font-size: 40px;
    color: #fff;
    margin-left: 50px;
    font-weight: 800;
}

.btn_er {
    width: 80%;
    margin: 0 auto;
    background-color: #fff;
    text-align: center;
    margin-bottom: 10px;
    padding: 19px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #21a2c3;
    color: #fff;
    box-shadow: 0 0 0 0 #000, inset 0 0 0 0 #000, inset 0 0 0 1px rgb(255 255 255 / 35%);
}

/* 정렬 */
.align {
    display: flex;
}
.align.right {
    justify-content: flex-end;
}
.align.both {
    justify-content: space-between;
}

.bgc-gray {
	background-color: #e3e3e3 !important;
}
.bgc-white {
	background-color: #fff !important;
}

/* 페이지네이션 */
.pagination {
	margin-top: 40px;
	font-size: 0;
	line-height: 0;
	text-align: center;
}

.pagination .page-btn {
	display: inline-block;
	margin: 0 2px;
	width: 40px;
	height: 40px;
	padding: 0 !important;
	border: 1px solid #dfdfdf;
	color: #666 !important;
	font-size: 20px;
	font-weight: 500;
	line-height: 40px;
	vertical-align: middle;
}

.pagination .page-btn img {
	width: 100%;
	margin-top: 0;
	vertical-align: baseline;
}

.pagination .page-btn.current {
	color: #fff !important;
	border-color: #1b30af;
	background-color: #1b30af;
	cursor: default;
}

.pagination .page-btn.prev {
	border-color: #fff;
	vertical-align: middle !important;
}

.pagination .page-btn.next {
	border-color: #fff;
	vertical-align: middle !important;
}

/* 공지 검색 */
.box-input {
	display: flex;
	position: relative;
	width: 422px;
	margin: 0 auto;
}
.search-box {
	background: #f7f7f7;
	padding: 31px;
	margin: 36px 0 41px;
	overflow: hidden;
	position: relative;
	display: flex;
}

.search-box input {
	border: 1px solid #d9d9d9;
	width: 336px;
	height: 38px;
	padding-left: 58px;
}

.search-box input:focus {
	outline: none;
}

input[name=search_keyword]:focus::placeholder {
	color: transparent;
}

input[name=search_keyword]::-ms-input-placeholder {
	/* 인터넷 익스플로러 */
	position: absolute;
	left: 60px;
}

input[name=search_keyword]::placeholder {
	position: absolute;
	left: 60px;
}

.search-box .img_search {
	position: absolute;
	top: 50%;
	left: 15px;
	/* left: 37%; */
	/* right: 20px; */
	width: 16px;
	height: 15px;
	margin-top: -9px;
	text-indent: -9999px;
	background-image: url(/resource/images/icon_search.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: cover;
}

.search-box .img_bar {
	position: absolute;
	top: 50%;
	left: 49px;
	/* left: 37%; */
	/* right: 20px; */
	width: 1px;
	height: 17px;
	margin-top: -9px;
	text-indent: -9999px;
	background-image: url(/resource/images/icon_bar.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: cover;
}
.search-box button {
	background: #212c67;
	color: #fff;
	font-size: 16px;
	width: 80px;
	height: 38px;
	margin-left: 6px;
	margin-top: 1px;
}

/* 공지 테이블 */
.noticeTable {
	width: 100%;
	border-top: 1px solid #333;
}

.noticeTable table {
	width: 100%;
	table-layout: fixed;
}

.noticeTable table * {
	/* text-align: center; */
	vertical-align: middle;
}

.noticeTable table .text-left {
	text-align: left;
}

.noticeTable table tr {
	border-bottom: 1px solid #e1e1e1;
}

.noticeTable table tbody tr.notice {
	background-color: #faf7f5;
}

.noticeTable table th {
	font-size: 16px;
	font-weight: 500;
	background-color: #f9f6f0;
}

.noticeTable table thead th {
	padding: 20px 10px;
}

.noticeTable table td {
	font-size: 16px;
}

.noticeTable table tbody td:first-child {
	padding: 20px 0px 20px 60px;
}

.noticeTable table tbody td:last-child {
	padding: 20px 60px 20px 0px;
    text-align: right;
}

.noticeTable table tbody td.num {
	text-align: center;
}

.noticeTable table tbody td.num .notice-label {
	display: inline-block;
	padding: 5px 15px;
	color: #fff;
	font-size: 16px;
	border-radius: 30px;
	box-sizing: border-box;
	background-color: #f29838;
}
.noticeTable table tbody tr.fixed {
	background-color: #f7f7f7;
}
.noticeTable table tbody td.subject a {
	overflow: hidden;
	display: block;
	color: #333;
	text-align: left;
	text-overflow: ellipsis;
	white-space: nowrap;
	/*transition: all 0.2s;*/
}
.noticeTable table tbody tr.fixed td a img{
	margin-right: 16px;
}
/*
.noticeTable table tbody td.subject a:hover {
	transform: translateX(10px);
	opacity: 0.5;
}
*/
.noticeTable.borderTable th,
.noticeTable.borderTable td {
	border-right: 1px solid #ddd;
}

.noticeTable.borderTable th:last-child,
.noticeTable.borderTable td:last-child {
	border-right: none;
}

.noticeTable .c-middot-list>li {
	padding-left: 15px;
	font-size: 16px;
}

.noticeTable .c-middot-list>li:after {
	top: 9px;
}

.noticeTable .dash-list>li {
	padding-left: 10px;
	font-size: 16px;
}

.noticeTable .dash-list>li:after {
	top: 13px;
}

.noticeTable.type2 table tbody td:first-child {
    padding: 20px 0;
}

.noticeTable.type2 table tbody td {
    text-align: center;
}

.noticeTable.type2 table tbody tr td button {
    cursor: pointer;
    border: 1px solid #ddd;
    padding: 10px 13px;
    color:
}

.noticeTable.type2 table tbody td:last-child {
    padding: 20px 0;
}

/* 썸네일 */
#thumb-box {
	margin-top: 50px;
}

#thumb-box .thumb {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 20px);
	margin-left: -10px;
}

#thumb-box .thumb li {
	width: calc(25% - 40px);
    margin: 0 19px 38px;
    border: 1px solid #d7d7d7;
    box-sizing: border-box;
}

#thumb-box .thumb.doctor li {
    width: calc(25% - 40px);
    margin: 0 19px 38px;
    border: 1px solid #d7d7d7;
    box-sizing: border-box;
}

#thumb-box .thumb li .img {
	overflow: hidden;
	position: relative;
	width: 100%;
	background: #d7d7d7;
    aspect-ratio: 296 / 167;
}

#thumb-box .thumb li .img.doctor {
    height: 260px;
	overflow: hidden;
	position: relative;
	width: 100%;
	background: #d7d7d7;
}

#thumb-box .thumb li .img:after {
	display: block;
	padding-bottom: 68%;
	content: '';
}

#thumb-box .thumb li .img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

#thumb-box .thumb li .img.noimg img {
	position: absolute;
	left: 0;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
}

#thumb-box .thumb li .text {
	padding: 30px 23px 30px;
	box-sizing: border-box;
}
#thumb-box .thumb li .text.doctor {
	height: 265px;
	padding: 36px 23px 30px;
	box-sizing: border-box;
}

@media screen and (max-width:1600px) { 
    #thumb-box .thumb li .text.doctor {
        height: 290px;
        padding: 36px 23px 30px;
        box-sizing: border-box;
    }
}

#thumb-box .thumb li .text .subject {
	font-size: 16px;
	font-weight: 400;
	color: #333;
}
#thumb-box .thumb li .text .detail_subject {
	color: #7a7a7a;
	font-size: 16px;
    letter-spacing: -1.1px;
}

#thumb-box .thumb li .text h4 {
	color: #333;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 20px;
    font-family: 'Noto Sans KR', sans-serif;
}

#thumb-box .thumb li .text p {
	display: block;
	margin-bottom: 10px;
	color: #b98b70;
	font-size: 15px;
	line-height: 1.4;
}

#thumb-box .thumb li .text span.content {
	color: #7a7a7a;
	font-size: 16px;
    display: block;
    height: auto;
}

#thumb-box .thumb li .text span.date {
	margin-top: 20px;
	display: block;
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	color: #a7a7a7;
	border-top: 1px solid #a7a7a7;
	padding-top: 17px
}

#thumb-box .thumb li .tag {
	padding: 0 30px 30px;
	box-sizing: border-box;
}

#thumb-box .thumb li .tag span {
	display: inline-block;
	margin: 5px 0;
	padding: 5px 10px;
	color: #333;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	border: 1px solid #0b778e;
	border-radius: 30px;
}

.btn_go_doctor_detail {
    border-top: 1px solid #d7d7d7;
    padding: 20px;
    text-align: center;
}

.btn_go_doctor_detail:hover {
    background-color: #1b30af;
}

.btn_go_doctor_detail img { 
    margin-right: 9px;
}

.btn_go_doctor_detail span{
    color: #7a7a7a;
}

.btn_go_doctor_detail:hover span {
    color: #fff;
}

/* 인사말 */
.box_intro_img {
    margin-top: 50px;
    margin-bottom: 89px;
    display: inline-block;
}

.box_intro_img img:first-child {
    max-width: 100%;
	display: none;
}

.box_intro_img img:nth-child(2) {
	max-width: 100%;
	display: block;
}

.intro {
    display: flex;
}

.intro .line {
    width: 18px;
    margin-top: 10px;
}

.intro .line .circle {
    width: 18px;
    height: 18px;
    box-shadow: 0 0 0 0 #000, inset 0 0 0 0 #000, inset 0 0 0 5px #c5c5c5;
    background-color: #fff;
    border-radius: 50%;
}

.intro .line img:nth-child(2),
.intro .line img:nth-child(5) {
	display: none;
}

.intro .line img:nth-child(3),
.intro .line img:nth-child(6) {
	display: block;
	margin-left: 10px;
	margin: 0 auto;
}

.intro .content {
    width: calc(100% - 20px);
    padding-left: 30px;
}

.intro .content p {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1;
    letter-spacing: -1.5px;
    text-align: left;
}

.intro .content span {
    height: 125px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 400;
    display: block;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
}
/* 연혁 */
.nav_history {
    border: 1px solid #d9d9d9;
    display: flex;
    height: 50px;
    text-align: center;
    margin-top: 40px;
}

.nav_history .year {
    width: calc(100% / 6);
    cursor: pointer;
}

.nav_history .year.active{
    background: #1e32a4;
    color: #fff;
}

.nav_history .year:not(:last-child) {
    border-right: 1px solid #d9d9d9;
}

.nav_history .year span {
    vertical-align: middle;
    line-height: 50px;
}

.title_info_history {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -1.5px;
    text-align: center;
    color: #333;
    display: block;
    margin-top: 57px;
}

.wrap_history {
    margin-top: 63px;
}

.wrap_history > div {
    display: flex;
}

.wrap_history .picture {
    width: 500px;
}

.wrap_history .content {
    width: calc(100% - 500px);
    border-left: 2px solid #c3c3c3;
    border-style: dotted;
    position: relative;
    padding-left: 28px;
}
.wrap_history .content img {
    position: absolute;
    top: 0;
    left: -13px;
}

.wrap_history .content p {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: -0.2px;
    text-align: left;
    color: #333;
    margin-bottom: 14px;
}

.wrap_history .content span {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 17.5px;
    font-weight: 400;
    letter-spacing: -0.88px;
    text-align: left;
    color: #333;
    margin-bottom: 48px;
    display: block;
}

.history_picture {
    width: 500px;
}
.history_picture h1 {
    font-family: 'Lato', sans-serif;
    font-size: 40px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.66;
    letter-spacing: -0.4px;
}

.history_picture span {
    display: block;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
    margin-top: 29px;
    margin-bottom: 37px;
}
.history_picture img {
    margin-bottom: 10px;
    width: 292px;
}
/* 비전 미션 가치 */
.pd-mission {
	padding-bottom: 150px !important;
}

.box_mission p, .box_vision p, .box_value p {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 26px;
    font-weight: bold;
    line-height: 1.27;
    letter-spacing: -1.3px;
    text-align: center;
    color: #333;
    margin-top: 70px;
}

.box_mission .content {
    margin: 0 auto;
    text-align: center;
    margin-top: 27px;;
}

.box_mission .content span { 
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.27;
    letter-spacing: -1.3px;
    text-align: center;
    color: #333;
    margin: 0 17px;
}

.box_mission .content img {
    vertical-align: text-top;
}

.box_vision {
    margin: 0 auto;
    text-align: center;
}

.box_vision img:nth-child(2) {
	display: none;
}

.box_vision img:nth-child(3) {
    display: block;
	margin: 24px auto;
}

.box_value {
    position: relative;
    z-index: 100;
}
.box_value .card {
    display: flex;
    max-width: 1130px;
    margin: 0 auto;
    margin-top: 46px;
    height: 324px;
}
.box_value .card div {
    width: calc(100% / 4 - 10px);
    border: 1px solid #d9d9d9;
    background-color: #fff;
}
.box_value .card div:not(:last-child) {
    margin-right: 20px;
}

.box_value .card div img {
    display: block;
    margin: 60px auto;
    margin-bottom: 40px;
}

.box_value .card div span {
    display: block;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.45px;
    text-align: center;
    color: #333;
}
.bottom_gray {
	height: 313px;
	background-color: #f5f5f5;
	position: absolute;
	width: 100%;
	top: 1249px;
	z-index: 10;
}
/* 병원둘러보기 */
.browse span {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.9px;
    text-align: center;
    color: #333;
    display: block;
    margin-top: 20px;
}

.nav_browse {
    border: 1px solid #d9d9d9;
    display: flex;
    height: 50px;
    text-align: center;
    margin-top: 40px;
}

.nav_browse .floor {
    width: calc(100% / 8);
    cursor: pointer;
}

.nav_browse .floor.active {
    background: #1e32a4;
    color: #fff;
}

.nav_browse .floor.active span {
    height: 14px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.9px;
    text-align: center;
    color: #fff;
}

.nav_browse .floor:not(:last-child) {
    border-right: 1px solid #d9d9d9;
}

.nav_browse .floor span {
    line-height: 50px;
    margin-top: 0px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.9px;
    text-align: center;
    color: #333;
}

.swiper-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: 100% auto;
    background-position: center;
}

.swiper-slide .inner .small .light { 
   font-weight: 400; 
}

#main-banner .__right {
    color: black;
    background-color: transparent;
    position: absolute;
    bottom: -150px;
    right: 0;
    z-index: 10;
}

@media screen and (max-width:1400px) {
	#main-banner .__right {
        position: absolute;
        right: 0;
    }

    .swiper-slide .inner {
        left:50%;
        transform: translateX(-50%);
    }

    .swiper-control-wrap {
        left: 48.5%;
        transform: translateX(-48.5%);
    }
}

.floor_caption {
    position: absolute;
    bottom: 0;
    right: 17px;
    width: 480px;
    color: #fff;
    font-family: 'Noto Sans KR';
    font-size: 24px;
    text-align: center;
    box-sizing: border-box;
    background-color: #081143;
    padding-left: 48px;
    line-height: 75px;
    display: block;
    letter-spacing: -1.2px;
    height: 75px;
    text-align: left;
}

.floor_caption a {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.5px;
    color: #4db4f6;
    margin-right: 20px;
}

.floor_caption img {
    margin-right: 20px;
    vertical-align: baseline;
}

.swiper-button-box {
    position: absolute;
    top: 50%;
}

.button-next, .button-prev {
    position: absolute;
    top: 50%;
    width: 83px;
    height: 84px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#d9d9d9;
}

#thumb-slide {
    margin-top: 40px;
    max-height: 595px;
    max-width: 977px;
    margin: 40px auto;
}

.gallery-top {
    height: 100%;
    width: 100%;
}

.gallery-thumbs {
    height: 16%;
    box-sizing: border-box;
    padding: 10px 0;
}

.gallery-thumbs .swiper-slide {
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 1;
}

.gallery-thumbs .swiper-slide-thumb-active {
    border: 4px solid #886a59;
    box-sizing: border-box;
    opacity: 1;
}

.swiper-button-next {
    right: 0;
    padding:20px 26px 20px 30px;
    background-color: rgba(255,255,255,0.22);
}

.swiper-button-prev {
    left: 0;
    padding:20px 30px 20px 26px;
    background-color: rgba(255,255,255,0.22);
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(255,255,255,0.4);
}

@media screen and (max-width:768px){
    .swiper-button-next,
    .swiper-button-prev {
        padding:10px;
    }
}

/* 재활치료센터 */
.vr-therapy {
    margin-left: 15px;
    margin-top: 36px;
}

.vr-therapy div {
    height: 60px;
    /* line-height: 75px; */
    border: 1px solid #d9d9d9;
    display: flex;
    justify-content: space-between;
    padding-left: 37px;
    padding-right: 43px;
    border-left: 5px solid #1e32a4;
    cursor: pointer;
}

.vr-therapy div:last-child {
    cursor: default;
}

.vr-therapy div span:first-child {
    font-size: 18px;
    font-weight: 500;
    line-height: 60px;
    letter-spacing: -1.3px;
    text-align: left;
    color: #333;
}

.vr-therapy div span:nth-child(2) {
    font-size: 18px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: -1.2px;
    text-align: left;
    color: #333;
}    

.vr-therapy div span:nth-child(2) img {
    margin-right: 27px;
}

.nav_vrt {
    border: 1px solid #d9d9d9;
    display: flex;
    height: 60px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 67px;
}

.nav_vrt .therapy {
    width: calc(100% / 4);
    cursor: pointer;
}

.nav_vrt .therapy.active{
    background: #1e32a4;
    color: #fff;
}

.nav_vrt .therapy:not(:last-child) {
    border-right: 1px solid #d9d9d9;
}

.nav_vrt .therapy span {
    vertical-align: middle;
    line-height: 60px;
    font-size: 18px;
    font-weight: 600;
}

.vtr_name {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.46;
    letter-spacing: -1.3px;
    text-align: left;
    color: #333;
    border: 1px solid #a4a4a4;
    margin-bottom: 29px;
    padding: 16px 15px;
    box-sizing: border-box;
    display: block;
    width: fit-content;
    margin-left: 0;
}

.vtr_target {
    background-color: #f6f6f6;
    width: 100%;
    padding: 46px 43px 43px 48px;
    margin-bottom: 40px;
    box-sizing: border-box;
    margin-left: 0;
}

/* 오시는길/주차안내 */
.box_tap {
    background-color: #ffffff;
    margin: 40px auto;
	min-width: 1160px;
}
.wrap_map {
    min-height: 610px;
    margin-bottom: 52px;
    min-width: 1150px;
    position: relative;
    border-bottom: none;
}

.info_bus p img {
    margin-right: 10px;
}

.info_bus p {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: -1.3px;
    text-align: left;
    color: #333;
}

.info_bus span {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
    margin: 22px 0 28px 26px;
    display: block;
}

.wrap_map .top {
    border: 1px solid #dfdfdf;
    position: relative;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
}

.wrap_map .top .address {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: -0.9px;
    text-align: center;
    color: #333;
    line-height: 64px;
    display: block;
}

.wrap_map .top .phone {
    position: absolute;
    top: 19px;
    right: 45px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: -0.9px;
    color: #333;
}

.wrap_map .mid {
    min-height: 491px;
    background: #f3f3f3;
}

.wrap_map .bottom .text {
    width: calc(100% - 650px);
    color: #828282;
    float: left;
}

.wrap_map .bottom .text span{ 
    font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 56px;
    letter-spacing: -0.75px;
    text-align: left;
    color: #828282;
}

.wrap_map .bottom {
    height: 56px;
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 1;
}

.map_daum {
    text-align: center;
    background: #1e32a4;
    min-width: 325px;
    float: left;
}

.map_naver {
    background: #21a2c3;
    min-width: 325px;
    text-align: center;
    float: left;
    line-height: 56px;
}

.map_daum a, .map_naver a {
    line-height: 56px;
}

.map_hr {
    margin: 30px 0;
    background: #d9d9d9;
    height:1px;
    border:0; 
}

.info_bus table {
    min-width: 1274px;
    margin-left: 26px;
    width: 100%;
}

.info_bus tbody th {
    background-color: #eaeaea !important;
}

.info_bus td {
    text-align: center !important;
    color: #333 !important;
}

.info_bus td:last-child {
    text-align: left !important;
    color: #7a7a7a !important;
}

.parking.tableType-01 {
    width: 100%;
    margin-top: 20px;
    margin-left: 25px;
}

.parking.tableType-01 td {
    text-align: center !important;
    color: #333 !important;
}

.sub_title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: -1.3px;
    text-align: left;
    color: #333;
    margin-bottom: 23px;
}

.sub_title img {
    margin-right: 10px;
}

.ul_subtitle {
    list-style-type: none; /* 기본 목록 기호 제거 */
}

.ul_subtitle li {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 22px !important;
    font-weight: bold;
    letter-spacing: -1.4px;
    text-align: left;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.07;
    padding-left: 25px;
    position: relative;
    word-break: keep-all;
}

.ul_subtitle li::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 5px;
    width: 8px;
    height: 8px;
    border: 4px solid #1b30af;
    border-radius: 50%;
    background: transparent;
}

.ul_subtitle li small {
    font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: -0.9px;
  text-align: left;
  color: #666;
  margin-left: 25px;
}

.partners-div {
    /*
	width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	*/
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 20px);
	margin-left: -10px;
}

.partners-div .item {
    background-color: #fff;
    border: 1px solid #d7d7d7;
    box-sizing: border-box;
    height: 287px;
	position: relative;
	width: calc(25% - 20px);
	margin: 0 10px 20px;
}

.partners-div .item .img_logo {
    text-align: center;
    display: block;
    /* margin: 20px auto 16px; */
    padding: 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

.partners-div .item div:first-child {
    width: 100%;
    height: 114px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.partners-div .item div:nth-child(2) {
    width: 100%;
    background: #f6f9fb;
    padding: 25px;
    box-sizing: border-box;
    height: 171px;
}

.partners-div .item div:nth-child(2) span:first-child {
    display: block;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
    margin-bottom: 5px;
}

.partners-div .item div:nth-child(2) span:nth-child(2) {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.8px;
    text-align: left;
    color: #333;
    display: block;
    margin-bottom: 45px;
}

.partners-div .item div:nth-child(2) span:nth-child(3) {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.76;
    text-align: left;
    color: #333;
	position: absolute;
	bottom: 10px;
}

.partners-div .item div:nth-child(2) span:nth-child(3) img {
    margin-right: 5px;
    vertical-align: sub;
}

/* 수상내역 */
.img_award {
    margin: 0 auto;
    text-align: center;
    display: block;
}

.award {
    width: 100%;
    margin:0 auto;
    text-align: center;
}

.award button {
    width: 280px;
    height: 70px;
    border: solid 0 #000;
    background-image: linear-gradient(to left, #21a2c3, #1b30af);
}

.award button a {
    font-size: 18px;
    letter-spacing: -1.2px;
    text-align: center;
    color: #fefefe;
    line-height: 30px;
}

/* 예약안내 */
.box_reserve {
    position: absolute;
    right: 0;
    top: 0;
}

.box_reserve button {
    width: 230px;
    height: 55px;
    border: solid 0 #000;
    background-image: linear-gradient(to left, #21a2c3, #1b30af);
    color: #fff;
    font-size: 18px;
    letter-spacing: -0.9px;
    text-align: center;
    color: #fefefe;
}

.title_online_step {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 22px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: -1.1px;
    text-align: left;
    color: #333;
    margin-bottom: 36px;
    display: block;
    margin-left: 25px;
}

.reserve_hr, .checkup_hr, .clinic_hr, .special_hr, .common_hr {
    margin: 40px 0;
    background: #d9d9d9;
    height:1px;
    border:0; 
}

.common_hr2 {
    margin: 80px 0;
    background: #d9d9d9;
    height:1px;
    border:0; 
}

.reserve_step {
    height: 52px;
    position: relative;
    font-size: 14px;
}

.reserve_step .step1 {
    z-index: 105;
    position: absolute;
    color: #fff;
    line-height: 49px;
    width: 52px;
    height: 52px;
    text-align: center;
    bottom: 0;
    left: 86px;
}

.reserve_step img {
	top: 18px;
    position: absolute;
}

.reserve_step img:nth-child(2) {
	left: 139px;
}

.reserve_step img:nth-child(4) {
	left: 394px;
}

.reserve_step img:nth-child(6) {
	left: 649px;
}

.tb-mobile-reserve {
	display: none;
}

.tb-reserve {
	display: inline-table;
}

.step1:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #21a0c3;
    z-index: -1;
}

.reserve_step .step2 {
    z-index: 105;
    position: absolute;
    color: #fff;
    line-height: 49px;
    width: 52px;
    height: 52px;
    text-align: center;
    left: 339px;
}

.step2:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #1f80bd;
    z-index: -1;
}

.reserve_step .step3 {
    z-index: 105;
    position: absolute;
    color: #fff;
    line-height: 49px;
    width: 52px;
    height: 52px;
    text-align: center;
    left: 594px;
}

.step3:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #1d56b6;
    z-index: -1;
  }

  .reserve_step .step4 {
    z-index: 105;
    position: absolute;
    color: #fff;
    line-height: 49px;
    width: 52px;
    height: 52px;
    text-align: center;
    left: 849px;
  }

.step4:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #1b31af;
    z-index: -1;
  }

.reserve_step_txt, .phone_reserve_step_txt {
    margin-top: 28px;
}

.reserve_step_txt span, .phone_reserve_step_txt span{
    text-align: center;
    position: absolute;
}

.reserve_step_txt span:first-child {
    left: 23px; 
}

.reserve_step_txt span:nth-child(2) {
    left: 315px;
}

.reserve_step_txt span:nth-child(3) {
    left: 564px;
}

.reserve_step_txt span:last-child {
    left: 792px;
}

.phone_reserve_step_txt span:first-child {
    left: 44px; 
}

.phone_reserve_step_txt span:nth-child(2) {
    left: 315px;
}

.phone_reserve_step_txt span:nth-child(3) {
    left: 579px;
}

.phone_reserve_step_txt span:last-child {
    left: 792px;
}

.reserve_care_title {
	font-size: 22px;
	font-weight: 500;
	font-family: 'Noto Sans KR', sans-serif;
	color: #333;
	line-height: 1.36;
	letter-spacing: -1.1px;
	display: block;
}

/* 진료예약 재진 */
.ul_subtitle.step_ul li::before {
    top: 11px;
}

.step_ul {
    margin-top: 70px;
}

.step_ul li span:first-child {
    margin-right: 25px;
}
.step_ul li span {
    font-size: 30px;
}

.doctor_result {
    height: 219px; 
    border:none; 
    background-color: #f3f3f3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor_result span {
    color: #949494;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -1.3px;
}

.common_nav button.search {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 22px;
    background: #172683;
    margin-top: 0;
}

/* 건강검진 안내 */
.mobile_nav_checkup {
	display: none;
}

.box-questionnaire {
    background-color: #fafafa;
    width: 100%;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

.box-questionnaire img {
    width: 133px;
    height: auto;
}

.box-questionnaire p {
    font-size:26px;
    color:#000;
    margin: 30px 0 40px;
    text-align: center;
}

.box-questionnaire p b {
    color:#eb3346;
}

.box-questionnaire button {
    width: 230px;
    height: 55px;
    border: solid 0 #000;
    background-image: linear-gradient(to left, #21a2c3, #1b30af);
    color: #fff;
    font-size: 18px;
    letter-spacing: -0.9px;
    text-align: center;
    color: #fefefe;
    line-height: 55px;
    cursor: pointer;
}

.common_nav {
    display: block;
    height: 50px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 73px;
    position: relative;
}

.common_nav select, .common_nav input {
    margin: 0 auto;
    width: 100%;
    height: 60px;
    border: 1px solid #d9d9d9;
    box-sizing: border-box;
    padding: 20px 0 19px 27px;
    font-family: 'Noto Sans KR', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 19px;
    color: #333;
    letter-spacing: -1.23px;
    background-color: #f3f3f3;
}

.common_nav .arrow {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 22px;
    background: #172683;
    pointer-events: none;
}

.common_nav .arrow img {
    padding-top: 25px;
}

.common_nav .search img {
    padding-top: 0px;
    width: 29px;
}

.block_content_red {
    font-size: 18px !important;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -1.2px;
    text-align: left;
    color: #ea6d22; 
    word-break: keep-all;
}

.private_data.top {
    height: 75px;
    width: 100%;
    background: #172683;
}

.private_data.top span {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -1.2px;
    text-align: left;
    line-height: 75px;
    padding-left: 41px;
}

.private_data.bottom  {
    border: 1px solid #c3c3c3;
    min-height: 299px;
    padding: 52px 45px 45px 41px;
    box-sizing: border-box;
}

.private_data.bottom span {
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: -1.2px;
    text-align: left;
    color: #858585;
}

.agree_private_data {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.38;
    letter-spacing: -1.3px;
    text-align: left;
    color: #333;
}

.nav_checkup {
    display: flex;
    height: 50px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 100px;
    min-width: 1300px;
	flex-wrap: wrap;
}

.nav_checkup .sub {
	width: calc(100% / 4 - 2px);
    cursor: pointer;
}

.nav_checkup .sub.active {
    background: #1e32a4;
    color: #fff;
}

.nav_checkup .sub.active span {
    height: 14px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.9px;
    text-align: center;
    color: #fff;
}

.nav_checkup .sub:first-child, .nav_checkup .sub:nth-child(5) {
	border-left: 1px solid #d9d9d9;
}

.nav_checkup .sub:first-child, .nav_checkup .sub:nth-child(2), .nav_checkup .sub:nth-child(3), .nav_checkup .sub:nth-child(4) {
	border-top: 1px solid #d9d9d9;
}

.nav_checkup .sub {
	border-bottom: 1px solid #d9d9d9;
	border-right: 1px solid #d9d9d9;
}

.nav_checkup .sub span {
    line-height: 50px;
    margin-top: 0px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.9px;
    text-align: center;
    color: #333;
}

.checkup_common table, .checkup_gender table, .clinic table{
    width: 100%;
}
.checkup_common table tbody td, .checkup_gender table tbody td {
    text-align: center !important;
}

.checkup_general table, .checkup_general_program table{
    width: 100%;
}

.checkup_general td {
    border-right: none !important;
    line-height: 2.3;
}

.checkup_general_program tbody tr td:last-child {
    text-align: center !important;
    font-weight: bold;
}

.teen .tableType-01 tbody tr th {
    font-weight: 400;
    font-size: 17px;
}

.teen .tableType-01 tbody tr td {
    text-align: left !important;
    font-size: 17px;
}

.special .tableType-01 {
    width: 100%;
}

.business {
    margin-left: 26px;
}

.business > div {
    position: relative;
    height: 52px;
}

.business > div > span:last-child{
    margin-left: 82px;
    line-height: 30px;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing: -0.9px;
    color: #333;
    display: block;
    position: absolute;
    top: -5px;
}

.business .step1, .business .step2, .business .step3, .business .step4 {
    z-index: 105;
    color: #fff;
    line-height: 49px;
    width: 52px;
    height: 52px;
    text-align: center;
    position: absolute;
    font-size: 16px;
}

.business .step1:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #21a0c3;
    z-index: -1;
}

.business .step2:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #1f80bd;
    z-index: -1;
}

.business .step3:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #1d56b6;
    z-index: -1;
}

.business .step4:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #1b31af;
    z-index: -1;
}

.ul-outcall {
    width: 100%;
}

.ul-outcall li {
    height: 59px;
    display: flex;
    margin-bottom: 10px;
}

.ul-outcall li div:first-child {
    width: 59px;
    background-color: #1e32a4;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 59px;
    letter-spacing: normal;
    text-align: center;
}

.ul-outcall li div:nth-child(2) {
    width: 100%;
    background-color: #f8f8f8;
    padding-left: 33px;
}

.ul-outcall li div:nth-child(2) span {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 59px;
    letter-spacing: -0.85px;
    text-align: left;
}

.outcall {
    margin-left: 26px;
    height: 520px;
}

.outcall > div {
    position: relative;
    height: 52px;
}

.outcall > div > span:nth-child(2){
    margin-left: 82px;
    line-height: 52px;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing: -0.9px;
    color: #333;
}

.outcall > div > span:last-child{
    position: absolute;
    left: 230px;
    top: 10px;
    line-height: 30px;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing: -0.9px;
    color: #333;
}

.outcall .step1, .outcall .step2, .outcall .step3, .outcall .step4, .outcall .step5 {
    z-index: 105;
    color: #fff;
    line-height: 49px;
    width: 52px;
    height: 52px;
    text-align: center;
    position: absolute;
    font-size: 16px;
}

.outcall .step1:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #21a0c3;
    z-index: -1;
}

.outcall .step2:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #1f80bd;
    z-index: -1;
}

.outcall .step3:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #1d56b6;
    z-index: -1;
}

.outcall .step4:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #1b31af;
    z-index: -1;
}

.outcall .step5:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #081871;
    z-index: -1;
}

.small-circle {
    line-height: 31px;
    color: #1e32a4;
    font-size: 7px;
    margin-right: 8px;
}

.recruitment_screening {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.recruitment_screening div {
    margin: 5px;
    background-color: #f5f5f5;
    border: 1px solid #dbdbdb;
    box-sizing: border-box;
    padding: 10px;
    flex-basis: calc(100% /4 - 10px);
    min-height: 110px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
}

.recruitment_screening div span:nth-child(2) {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: center;
    color: #333;
    text-align: center;
}

.device_state {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.device_state div {
    margin: 5px;
    background-color: #f5f5f5;
    border: 1px solid #dbdbdb;
    box-sizing: border-box;
    padding: 10px;
    flex-basis: calc(100% /4 - 10px);
    min-height: 110px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
}

.device_state div span:first-child {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: center;
    color: #333;
    text-align: center;
}

.device_state div span:nth-child(2) {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: center;
    color: #333;
    text-align: center;
}

/* 검진예약 */
.checkup_program {
    width: 100%;
    margin-left: 15px;
    background: #172683;
    padding: 13px;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 0;
}

.checkup_program span {
    color: #fff;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.58;
    letter-spacing: -1.2px;
} 

[type="radio"]:checked {
    border: 8px solid #172683;
}
[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: max(2px, 0.1em) solid #cbcbcb;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    transition: border 0.5s ease-in-out;
}

.nav_checkup_reserve {
    border: 1px solid #d9d9d9;
    display: flex;
    height: 50px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 73px;
    min-width: 1300px;
}

.nav_checkup_reserve .sub {
    width: calc(100% / 6);
    cursor: pointer;
}

.nav_checkup_reserve .sub.active {
    background: #1e32a4;
    color: #fff;
}

.nav_checkup_reserve .sub.active span {
    height: 14px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.9px;
    text-align: center;
    color: #fff;
}

.nav_checkup_reserve .sub:not(:last-child) {
    border-right: 1px solid #d9d9d9;
}

.nav_checkup_reserve .sub span {
    line-height: 50px;
    margin-top: 0px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.9px;
    text-align: center;
    color: #333;
}

.text-phone {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.96;
    letter-spacing: normal;
    text-align: left;
    color: #333;
}

.phone-size {
    width: 18px;
}

.check_reserve {
    background: #f7f7f7; 
    padding: 30px 0 30px 20px;
}

.checkup_reserve, .reserve_check, .questionnaire {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.questionnaire {
    display: flex;
    justify-content: center;
}

.checkup_reserve button, .reserve_check button, .common button, .questionnaire a {
    width: 230px;
    height: 55px;
    border: solid 0 #000;
    background-image: linear-gradient(to left, #21a2c3, #1b30af);
    color: #fff;
    font-size: 18px;
    letter-spacing: -0.9px;
    text-align: center;
    color: #fefefe;
}

.questionnaire a {
    display: block;
    line-height: 55px;
}

.device-margin {
    margin-top: 20px;
    margin-bottom: 20px;
}

.device-margin2 {
    margin-top: 30px;
    margin-bottom: 30px;
}

/* 검진순서 */
.checkup_step .step1, .checkup_step .step2, .checkup_step .step3, 
    .checkup_step .step4, .checkup_step .step5, .checkup_step .step6 {
        z-index: 105;
        color: #fff;
        line-height: 49px;
        width: 52px;
        height: 52px;
        text-align: center;
        position: absolute;
        font-size: 16px;
    }

    .checkup_step div span:nth-child(2) {
        margin-left: 82px;
        line-height: 52px;
        font-size: 18px;
        font-weight: 500;
        font-family: 'Noto Sans KR', sans-serif;
        letter-spacing: -0.9px;
        color: #333;
    }

    .checkup_step div ul {
        position: absolute;
        left: 260px;
        top: 11px;
        line-height: 30px;
        font-size: 18px;
        font-weight: 400;
        font-family: 'Noto Sans KR', sans-serif;
        letter-spacing: -0.9px;
        color: #333;
    }
    
    .checkup_step .step1:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0px;
        height: 52px;
        width: 52px;
        border-radius: 50%;
        background: #21a0c3;
        z-index: -1;
    }
    
    .checkup_step .step2:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0px;
        height: 52px;
        width: 52px;
        border-radius: 50%;
        background: #1f80bd;
        z-index: -1;
    }
    
    .checkup_step .step3:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 52px;
        width: 52px;
        border-radius: 50%;
        background: #1d56b6;
        z-index: -1;
    }
    
    .checkup_step .step4:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 52px;
        width: 52px;
        border-radius: 50%;
        background: #1b31af;
        z-index: -1;
    }

    .checkup_step .step5:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 52px;
        width: 52px;
        border-radius: 50%;
        background: #081871;
        z-index: -1;
    }
    
    .checkup_step .step6:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 52px;
        width: 52px;
        border-radius: 50%;
        background: #333;
        z-index: -1;
    }

/* 검진 Q&A */
.checkup_qna .answer {
    display: none;
}

.checkup_qna li:nth-child(odd) {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 26px;
    font-weight: bold;
    line-height: 1.32;
    letter-spacing: -1.9px;
    text-align: left;
    color: #333;
    padding-bottom: 1px;
    padding-top: 1px;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    cursor: pointer;
}

.checkup_qna .center:nth-child(odd) {
    align-items: center;
    justify-content: space-between;
}

.checkup_qna .center:nth-child(odd) span:nth-child(3) {
    flex: none;
}

.checkup_qna li:nth-child(even) {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: -1.4px;
    text-align: left;
    color: #333;
    background: #f2f2f6;
    padding: 44px 35px 44px 42px;
    box-sizing: border-box;
    word-break: keep-all;
    border-top: 1px solid #000;
    height: auto;
}

.checkup_qna {
    list-style-type: none; /* 기본 목록 기호 제거 */
    position: relative;
}

.checkup_qna li {
    padding-left: 0px;
    position: relative;
    height: 166px;
    box-sizing: border-box;
}
/*
.checkup_qna li:nth-child(odd)::before {
    content: 'Q';
    position: absolute;
    left: 0px;
    top: 49px;
    font-family: 'Lato', sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 0.75;
    letter-spacing: -2px;
    text-align: center;
    color: #172683;
}
*/

.checkup_qna li a {
    font-family: 'Lato', sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 0.75;
    letter-spacing: -2px;
    text-align: center;
    color: #172683;
    padding-top: 10px;
    padding-right: 20px;
}

.checkup_qna .center a {
    padding-top: 0;
}

.checkup_qna li span:first-child {
    display: inline-block;
    width: 510px;
}

.arrow-up,
.arrow-down {
    position: relative;
    width:100px;
    height:100px;
}

.arrow-down::after {
    position: absolute;
    right: 15px;
    top: 32px;
    content: '';
    width: 24px;
    height: 24px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(135deg);
}

.arrow-up::after {
    position: absolute;
    right: 15px;
    top: 32px;
    content: '';
    width: 24px;
    height: 24px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(315deg);
}

/* 캘린더 */
/* 검진예약 캘린더 */

.tableType-01.cal_border {
    border: 0;
}
.calInfo {
    display: flex;
    width: 100%;
    border: none;
    justify-content: flex-end;
    box-sizing: border-box;
    margin: 10px 0;
}

.label-box {
    justify-content: flex-end;
}

.calInfo .today {
    font-size: 17.5px;
    color: #333;
    position: relative;
    line-height: 29px;
    padding-left: 25px;
    margin-right: 20px;
}

.calInfo .possible {
    font-size: 17.5px;
    color: #333;
    position: relative;
    line-height: 29px;
    padding-left: 25px;
    margin-right: 20px
}

.calInfo .choice {
    font-size: 17.5px;
    color: #333;
    position: relative;
    line-height: 29px;
    padding-left: 25px;
}

.calInfo .impossible {
    font-size: 17.5px;
    color: #333;
    position: relative;
    line-height: 29px;
    padding-left: 25px;
}

.calInfo .today:before {
    content: '';
    height: 19px;
    width: 19px;
    border-radius: 50%;
    border: solid 3px #dcdcdc;
    z-index: 2;
    position: absolute;
    left: 0px;
    top: 4px;
}
.calInfo .possible:before {
    content: '';
    height: 23px;
    width: 23px;
    border-radius: 50%;
    background-color: #dcdcdc;
    z-index: 2;
    position: absolute;
    left: 0px;
    top: 4px;
}
.calInfo .choice::before {
    content: '';
    height: 23px;
    width: 23px;
    border-radius: 50%;
    background-color: #21a2c3;
    z-index: 2;
    position: absolute;
    left: 0px;
    top: 4px;
}
.calInfo .impossible::before {
    content: '';
    height: 23px;
    width: 23px;
    border-radius: 50%;
    background-color: #ff7979;
    z-index: 2;
    position: absolute;
    left: 0px;
    top: 4px;
}
.ui-datepicker td {
    border: 0;
    padding: 8px !important;
}
.ui-widget.ui-widget-content {
    display: contents;
}
.cal .ui-datepicker .ui-datepicker-prev, .cal .ui-datepicker .ui-datepicker-next {top: 8px;}
.cal .ui-widget.ui-widget-content {display:contents !important; border:none;}
.cal .ui-datepicker {width: 28em;}
.cal .ui-datepicker .ui-datepicker-title {font-size: 28.5px; font-family: 'Lato', sans-serif; font-weight: 600;}
.cal .ui-widget-header {margin-bottom: 1em;border:none;background-color: #fff;}
.cal .ui-widget-header .ui-icon {position:relative;margin-top: -7px;text-indent:-9999px;border: none; box-shadow: none;transform-origin: center;background-color: transparent;cursor: pointer;background-image: none;}
.cal .ui-datepicker .ui-datepicker-prev,
.cal .ui-datepicker .ui-datepicker-next {top: 8px;}
.cal .ui-datepicker .ui-datepicker-prev-hover,
.cal .ui-datepicker .ui-datepicker-next-hover {border:none;background-color: #fff;}
.cal .ui-datepicker .ui-datepicker-prev span {display:none;}
.cal .ui-datepicker .ui-datepicker-next span {display:none;}
.cal .ui-datepicker-calendar tr {border: none;}
.cal .ui-datepicker-calendar th {background-color: #fff; color:#333; font-size: 17px !important; line-height: 36px; font-weight: 600;}
.cal .ui-datepicker-calendar th:first-of-type {border:none !important;}
.cal .ui-datepicker-calendar th:first-of-type span,
.cal .ui-datepicker-calendar th:first-of-type a {color:#e6001f;}
.cal .ui-datepicker-calendar th:last-of-type span,
.cal .ui-datepicker-calendar th:last-of-type a {color:#1795d0;}
.cal .ui-widget-header .ui-state-default, 
.cal .ui-button, 
html .cal .ui-button.ui-state-disabled:hover, 
html .cal .ui-button.ui-state-disabled:active {border:none;background-color: #fff;}
.cal .ui-datepicker td span, .cal .ui-datepicker td a {width:41px;height:41px;margin:0 auto;font-family: 'Lato', sans-serif;font-size: 17px !important;font-weight: 600;line-height: 41px;text-align: center;border:none;border-radius: 100%;}
.ui-datepicker .ui-datepicker-week-end:first-child {border-left: none !important;}
.ui-datepicker .ui-datepicker-week-end:last-child {border-right: none !important;}
.ui-datepicker .ui-datepicker-week-end:first-child a {color: #d61818;}
.ui-datepicker .ui-datepicker-week-end:last-child a {color:#21a2c3;}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    background: #21a2c3 !important;
}
.ui-datepicker td.ui-datepicker-current-day a {
    color: #fff !important;
    background-color: #21a2c3;
}
.ui-datepicker td.ui-datepicker-impossible-day a {
    color: #fff !important;
    background-color: #ff7979;
}
.ui-datepicker td.ui-datepicker-today a {
    color: #333;
    border: 4px solid #dcdcdc;
    background-color: #fff;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: 1px solid #c5c5c5;
    background: #ffffff;
    font-weight: normal;
    color: #333;
}
.ui-datepicker .ui-datepicker-header a.ui-datepicker-prev:before {
    border-left: 0.2rem solid #47505b;
    border-bottom: 0.2rem solid #47505b;
}
.ui-datepicker .ui-datepicker-header a:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 8px auto 0;
    transform: rotate(45deg);
}
.ui-datepicker .ui-datepicker-header a.ui-datepicker-next:before {
    border-top: 0.2rem solid #47505b;
    border-right: 0.2rem solid #47505b;
}
.ui-datepicker .ui-datepicker-header a:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 8px auto 0;
    transform: rotate(45deg);
}
.cal .ui-datepicker .ui-datepicker-prev, .cal .ui-datepicker .ui-datepicker-next {
    top: 18px;
}
.ui-datepicker .ui-datepicker-prev {
    left: 180px;
}
.ui-datepicker .ui-datepicker-next {
    right: 158px;
}

.textarea::placeholder {color:#ccc; font-size: 18px !important;}
.textarea::-webkit-input-placeholder {color:#ccc; font-size: 18px !important;}
.textarea:-ms-input-placeholder {color:#ccc; font-size: 18px !important;}

.form-control {
    width: 100%;
    height: 53px;
    padding: 0 10px;
    font-size: 18px !important;
    border: 1px solid #d9d9d9;
    box-sizing: border-box;
    background-color: #fafafa;
}

/* 건강형 */
#datepicker-container, #datepicker-container2 {
    width: 60%;
    margin: 0 auto;
}
.checkup_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.checkup_list div {
    text-align: center;
    line-height: 65px;
    margin: 8px 10px;
    width: calc(100% /3 - 20px);
}

.checkup_list div label {
    height: 60px;
    display: inline-block;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    font-weight: 400;
    width: 276px;
    border: 4px solid #d9d9d9;
    border-radius: 10px;
}

.checkup_list._300 div label {
    height: 60px;
    display: inline-block;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    font-weight: 400;
    width: 100%;
    border: 4px solid #d9d9d9;
    border-radius: 10px;
    line-height: 60px;
}

.checkup_list div input[type="checkbox"]:checked + label {
    border-color: #172683;
    background-color: #172683;
    color: #fff;
}

.checkup_list.default div input[type="checkbox"]:checked + label {
    border-color: #b9b9b9;
    background-color: #ededed;
    color: #b9b9b9;
}

.checkup_list div input[type="checkbox"] {
    display: none;
}


.checkup_list div input[type="radio"]:checked + label {
    border-color: #172683;
    background-color: #172683;
    color: #fff;
}

.checkup_list.default div input[type="radio"]:checked + label {
    border-color: #b9b9b9;
    background-color: #ededed;
    color: #b9b9b9;
}

.checkup_list div input[type="radio"] {
    display: none;
}

textarea[id="tm_content11"]::placeholder {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px !important;
    font-weight: 400;
}

textarea[id="tm_content11"]::-webkit-input-placeholder {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px !important;
    font-weight: 400;
}
textarea[id="tm_content11"] {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px !important;
    font-weight: 400;
}

th.checkup-choice {
    display: flex;
    align-items: center;
}

th.checkup-choice div {
    width: 160px;
    background: #172683;
    border-radius: 27px;
    color: #fff;
    height: 54px;
    line-height: 54px;
    margin-right: 20px;
    margin-left: 14px;
}

th.checkup-choice div span {
    font-size: 24px;
    font-weight: 500;
}

tr.checkup-cost {
    border-bottom: none !important;
}

tr.checkup-cost td div {
    height: 60px;
    line-height: 60px;
    background: #172683;
    padding: 0 47px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

tr.checkup-cost td div span:first-child {
    font-size: 18x;
    color: #ffff;
}

tr.checkup-cost td div span:nth-child(2) {
    font-size: 20px;
    color: #ffff;
}

tr.checkup-cost td div a {
    font-size: 18x;
    margin-left: 8px;
}

div.address #address_1{
    width: calc(100% - 150px);
    margin-right: 4px;
}

div.address button {
    background: #172683;
    color: #fff;
    width: 141px;
    height: 53px;
    font-size: 16px;
}

.private_data.top {
    height: 75px;
    width: 100%;
    background: #172683;
}

.private_data.top span {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -1.2px;
    text-align: left;
    line-height: 75px;
    padding-left: 41px;
}

.private_data.bottom  {
    border: 1px solid #c3c3c3;
    max-height: 299px;
    padding: 10px 45px 45px 41px;
    box-sizing: border-box;
    overflow: auto;
}

.private_data.bottom span {
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: -1.2px;
    text-align: left;
    color: #858585;
}

.agree_private_data {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.38;
    letter-spacing: -1.3px;
    text-align: left;
    color: #333;
}

.wrap-doctor {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.box-doctor {
    width: 49%;
    margin-bottom: 2%;
}

.doctor_list {
    height: 279px;
    border: 1px solid #d7d7d7;
    display: inline-block;
    width: calc(100% - 2px);
}

.doctor_list .box {
    width: 100%;
    height: 100%;
}

.doctor_list .box .left {
    width: calc(100% - 209px);
    float: left;
}

.doctor_list .box .right {
    width: 209px;
    float: left;
}

.doctor_list .box .right img {
    width: 100%;
}

.doctor_list .box .left .top {
    width: 100%; 
    height: 206px;
}

.doctor_list .box .left .top .checkbox {
    width: 130px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
}

.doctor_list .box .left .top .txt {
    width: calc(100% - 130px);
    float: left;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: 100%;
}

.doctor_list .box .left .bottom {
    width: 100%;
    height: 75px;
    border-top: 1px solid #d7d7d7;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor_list .box .left .bottom img {
    height: 20px;
}

.doctor_list .box .left .bottom span {
    color: #7a7a7a;
    font-size: 18px;
    margin-bottom: 5px;
    margin-left: 10px;
}

.doctor_list {
    cursor: pointer;
}

.box-doctor input[type="radio"] {
    display: none;
}

.box-doctor input[type="checkbox"]:checked + label {
    border: 3px solid #172683;
    height: 279px;
    display: inline-block;
    width: calc(100% - 7px);
}

.box-doctor input[type="radio"]:checked + label {
    border: 3px solid #172683;
    height: 279px;
    display: inline-block;
    width: calc(100% - 7px);
}

.box-doctor input[type="checkbox"] {
    display: none;
}

/* 증명서 발급 안내 */
.ctf-circle {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #bebebe;
    border-radius: 50%;
    margin-right: 12px;
    margin-bottom: 3px;
}

.box_ctf {
    display: flex;
    justify-content: center;
    margin-top: 55px;
}

.box_ctf button, .box_ctf a {
    width: 230px;
    height: 55px;
    border: solid 0 #000;
    background-image: linear-gradient(to left, #21a2c3, #1b30af);
    color: #fff;
    font-size: 18px;
    letter-spacing: -0.9px;
    text-align: center;
    color: #fefefe;
    line-height: 55px;
}

.ctf .tableType-01 {
    width: 100%;
}

.ctf .tableType-01 th {
    font-weight: 400;
}

.ctf table tbody td {
    text-align: left !important;
    color: #333;
    line-height: 30px;
}

.span_cft_bottom {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: center;
    color: #333;
    display: block;
    margin-top: 30px;
}

.ul-marker-circle {
    list-style-type: none; /* 기본 목록 기호 제거 */
}

.ul-marker-circle li {
    padding-left: 40px;
    position: relative;
}

.ul-marker-circle li::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 14px;
    height: 7px;
    width: 7px;
    border-radius: 50%;
    background: #bebebe;
}

.ul-marker-circle.black li::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 14px;
    height: 7px;
    width: 7px;
    border-radius: 50%;
    background: #333;
}

.ul-marker-dot {
    list-style-type: none; /* 기본 목록 기호 제거 */
}

.ul-marker-dot li {
    padding-left: 10px;
    position: relative;
    word-break: keep-all;
}

.ul-marker-dot li::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 16px;
    height: 3px;
    width: 3px;
    border-radius: 50%;
    background: #333;
}

.ul-marker-- {
    list-style-type: none; /* 기본 목록 기호 제거 */
}

.ul-marker-- li {
    padding-left: 11px;
    position: relative;
    word-break: keep-all;
}

.ul-marker-- li::before {
    content: '-';
    position: absolute;
    left: -2px;
    
    color: #333;
}

.ul-marker-x {
    list-style-type: none; /* 기본 목록 기호 제거 */
}

.ul-marker-x li {
    padding-left: 25px;
    position: relative;
    word-break: keep-all;
}

.ul-marker-x li::before {
    content: '※';
    position: absolute;
    left: 0px;
    top: 0px;
    color: #333;
}

.ul-marker-x.type2 {
    list-style-type: none; /* 기본 목록 기호 제거 */
    margin-bottom: 100px;
}

.ul-marker-x.type2 li {
    padding-left: 25px;
    position: relative;
    word-break: keep-all;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.88;
    letter-spacing: -0.8px;
    text-align: left;
    color: #999;
}

.ul-marker-x.type2 li::before {
    content: '※';
    position: absolute;
    left: 0px;
    top: 0px;
    color: #999;
}

/* 전문센터 */
.special_phone {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: #333;
}

/* 진료안내 */
.clinic .title_bottom {
	text-align: center;
	display: block;
	text-align: center;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 18px;
	font-weight: 400;
	font-stretch: normal;
	font-style: normal;
	letter-spacing: -0.9px;
	color: #333;
	margin-top: 20px;
	margin-bottom: 59px;
}

.clinic_step {
    margin-left: 26px;
    font-size: 14px;
}

.clinic_step > div {
    position: relative;
    height: 52px;
}

.clinic_step > div > span:last-child{
    margin-left: 82px;
    line-height: 52px;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing: -0.9px;
    color: #333;
	display: block;
}

.clinic_step .step1, .clinic_step .step2, .clinic_step .step3 {
    z-index: 105;
    color: #fff;
    line-height: 49px;
    width: 52px;
    height: 52px;
    text-align: center;
    position: absolute;
    font-size: 16px;
}

.clinic_step .step1:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #21a0c3;
    z-index: -1;
}

.clinic_step .step2:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #1f80bd;
    z-index: -1;
}

.clinic_step .step3:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #1d56b6;
    z-index: -1;
}

.info_time table td {
	text-align: center !important;
}
.info_time tbody th {
	font-weight: 400 !important;
}

/* 입퇴원 안내 */
.inout, .checkup_step {
    margin-left: 26px;
}

.inout div, .checkup_step div {
    position: relative;
    height: 52px;
}

.inout div span:nth-child(2){
    margin-left: 82px;
    line-height: 52px;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing: -0.9px;
    color: #333;
}

.inout div .vertical-line-with-arrow, .checkup_step div .vertical-line-with-arrow {
    display: none;
}

.inout div ul, .checkup_step ul {
    position: absolute;
    left: 190px;
    top: 11px;
    line-height: 30px;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing: -0.9px;
    color: #333;
}

.inout .step1, .inout .step2, .inout .step3, .inout .step4, .inout .step5 {
    z-index: 105;
    color: #fff;
    line-height: 49px;
    width: 52px;
    height: 52px;
    text-align: center;
    position: absolute;
    font-size: 16px;
}

.inout .step1:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #21a0c3;
    z-index: -1;
}

.inout .step2:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #1f80bd;
    z-index: -1;
}

.inout .step3:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #1d56b6;
    z-index: -1;
}

.inout .step4:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #1b31af;
    z-index: -1;
}

.inout .step5:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #333;
    z-index: -1;
}

.non-benefit .tableType-01 {
    width: 100%;
    table-layout: auto;
}

.non-benefit .tableType-01 th {
    padding: 7px 0px; 
}

.non-benefit .tableType-01 td, .non-benefit .tableType-01 tbody tr th {
    padding: 20px 5px;
    font-size: 16px;
    color: #333;
    text-align: center;
}

.non-benefit .tableType-01 thead tr:first-child th:first-child {
    width: 160px !important;
}

.non-benefit .tableType-01 thead tr:first-child th:last-child {
    width: 200px !important;
}

.non-benefit .tableType-01 thead tr:nth-child(2) th:first-child {
    width: 240px !important;
}

.non-benefit .tableType-01 thead tr:nth-child(2) th:nth-child(2) {
    width: 90px !important;
}


.non-benefit .tableType-01 thead tr:nth-child(2) th:nth-child(3) {
    width: 40px !important;
}

.non-benefit .tableType-01 thead tr:nth-child(2) th:nth-child(4),
.non-benefit .tableType-01 thead tr:nth-child(2) th:nth-child(5),
.non-benefit .tableType-01 thead tr:nth-child(2) th:nth-child(6) {
    width: 60px !important;
}

.non-benefit .tableType-01 thead tr:nth-child(2) th:nth-child(7),
.non-benefit .tableType-01 thead tr:nth-child(2) th:nth-child(8) {
    width: 100px !important;
}

.search-sub5-04 {
	display: flex;
	margin-bottom: 24px;
	justify-content: end;
	align-items: center;
}

.search-sub5-04 #cate1 {
	border: 1px solid #CCC;
	background: #FFF;
	color: #666;
	font-family: Pretendard;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.15px;
	padding: 13px 16px;
	width: 200px;
	height: 48px;
	margin-right: 6px;
	appearance: auto;
}

.search-sub5-04 #cate2 {
	border: 1px solid #CCC;
	background: #FFF;
	color: #666;
	font-family: Pretendard;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.15px;
	padding: 13px 16px;
	width: 200px;
	height: 48px;
	appearance: auto;
}

.search-sub5-04 .search_area {
	text-align: left;
	display: flex;
}

.search-sub5-04 .search_area input {
	max-width: 200px;
	width: 220px;
	height: 48px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0 6px;
	border: 1px solid #ccc;
	color: #666;
	font-family: Pretendard;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.15px;
	padding: 13px 16px;
	box-sizing: border-box;
}

.search-sub5-04 .search_area .search_btn {
	display: flex;
	padding: 14px 30px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	background: var(--Fastbone_Color, #18316B);
	color: #FFF;
	text-align: center;
	font-family: Pretendard;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.15px;
}

/* 환자권리장전 */
.right .tableType-01 tbody th {
    text-align: left !important;
    padding-left: 26px;
    border: none !important;
}

.right .tableType-01 tr {
    border-bottom: none !important;
}

.right .tableType-01 tr:first-child {
    border-top: none !important;
}

.right .tableType-01 tr:nth-child(odd) {
    border-top: 1px solid #333;
}

/* 의료진 소개 */
.doctor-video2 {
    display: flex;
    justify-content: center;
    /* height: 741px; */
    position: relative;
    flex-wrap: wrap;
    align-items: center;
    background: #e8e9ed;
    flex-direction: column;
    padding: 80px 0;
}

.doctor-video2 span {
    font-size: 32px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.75;
    letter-spacing: -2px;
    text-align: center;
    color: #333;
    margin-bottom: 40px;
}

.doctor-video2 iframe {
    width: 500px;
    height: 280px;
}

.doctor-video {
    display: flex;
    justify-content: center;
    /* height: 741px; */
    position: relative;
    flex-wrap: wrap;
    align-items: center;
    background: #e8e9ed;
    flex-direction: column;
    padding: 70px 0 100px;
}
.doctor-video ._title {
    width: 100%;
    color: #333;
    font-size: 38px;
    z-index: 100;
    text-align: center;
    line-height: 38px;
    /* margin-bottom: -70px; */
    margin-bottom: 60px;
}

.doctor-video ._say {
    width: 1330px;
    margin: 40px 0;
}

.doctor-video ._say p:first-child {
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -1px;
    text-align: center;
    color: #333;
    margin-bottom: 24px;
}
.doctor-video ._say p:nth-child(2) {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.63;
    letter-spacing: -0.8px;
    text-align: center;
    color: #333;
}

.doctor-video ._dt-video {
    z-index: 100; 
    width: 800px;
    height: 455px;
}
.doctor-video .video-content {
    display: flex;
    margin-top: 120px;
    width: 1330px;
	flex-wrap: wrap;
}

.doctor-video .video-content ._each {
    width: calc(100%/3 - 70px/3);
    margin-right: 35px;
    display: flex;
    flex-direction: column;
	margin-bottom: 35px;
}

.doctor-video .video-content ._each:nth-child(3n) {
	margin-right: 0;
}

.doctor-video .video-content ._each iframe {
    width: 100%;
    min-height: 200px;
    border: 0;
}

.doctor-video .video-content ._each:last-child {
    margin-right: 0px;
}

.doctor-video .video-content ._each div {
    padding: 25px 80px 39px 35px;
    background-color: #fff;
    box-sizing: border-box;
	height: 217px;
}

.doctor-video .video-content ._each div p {
    font-size: 22px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.36;
  letter-spacing: -0.88px;
  text-align: left;
  color: #111;
  margin-bottom: 24px;
}

.doctor-video .video-content ._each div span {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.63;
    letter-spacing: -0.64px;
    text-align: left;
    color: #111;
}

.treat {
	color: #21a0c3 !important;
}

.oper {
	color: #48cbba !important;
}

.inspect {
	color: #a2cc58 !important;
}

.closed {
	color: #ed5323 !important;
}

.resp {
	color: #5b5b5b !important;
}

.schedule_index {
	margin-top: 10px;
	margin-bottom: 33px;
	height: 25px;
}

.schedule_index span {
	line-height: 53px;
	display: block;
	float: left;
}

.schedule_index span:nth-child(odd) {
	font-size: 12px;
	margin-right: 9px;
}

.schedule_index span:nth-child(even) {
	font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 3.31;
    letter-spacing: -0.48px;
    text-align: center;
    color: #333;
    margin-right: 30px;
}


.tableType-01._new {
    width: 100%;
    margin-bottom: 30px;
    border-top: 1px solid #333;
}

.tableType-01._new tr {
    border-bottom: none;
}

.tableType-01._new th {
    padding: 8px 31px;
    font-size: 16px;
    font-weight: 500;
    border-right: 1px solid #000c55;
    vertical-align: middle;
    background-color: #000c55;
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.76;
    letter-spacing: -0.85px;
    text-align: center;
    color: #fff;
}

.tableType-01._new td {
    padding: 10px 40px;
    word-break: keep-all;
    border-right: 1px solid #d9d9d9;
    vertical-align: middle;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.85px;
    text-align: left;
    color: #fff;
    background: #0a0d2330;
    border: none;
}

.tableType-01._new th:first-of-type {
    border-right: none !important;
}

.tableType-01._new tbody th {
    background: #0a0d2330;
}

.doctor-intro {
	margin: 0 auto;
}

.doctor_title_bottom {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: -0.9px;
	text-align: center;
	color: #333;
	margin-top: 20px;
	margin-bottom: 58px;
	display: block;
}

.doctor-intro .basic-info {
	display: table;
	margin: 0 auto;
	width: 100%;
	table-layout: fixed;
	margin-bottom: 0px;
}

.doctor-intro .basic-info .picture {
	display: table-cell;
	padding: 0 77px 60px 0;
	vertical-align: top;
	width: 295px;
	height: 392px;
	margin-right: 78px;
}

.doctor-intro .basic-info .picture img.block {
	width: auto;
	max-width: 100%;
	height: 392px;
	background-color: #d7d7d7;
}

.doctor-intro .basic-info .info {
	display: table-cell;
	padding: 0;
	vertical-align: top;
}

.doctor-intro .basic-info .content {
	margin: 0 auto;
	overflow: hidden;
}

.doctor-intro .basic-info .content>.top {
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 400;
	line-height: 34px;
	color: #333;
	letter-spacing: -0.045em;
}

.doctor-intro .basic-info .content .name {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 30px;
	font-weight: bold;
	line-height: normal;
	letter-spacing: -1.5px;
	text-align: left;
	color: #333;
}

.doctor-intro .basic-info .content .position {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 30px;
	font-weight: bold;
	line-height: normal;
	letter-spacing: -1.5px;
	text-align: left;
	color: #333;
}

.doctor-intro .basic-info .content .specialty {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.9px;
    text-align: left;
    color: #7a7a7a;
    display: block;
    margin-top: 5px;
    margin-bottom: 30px;
}

.doctor-intro .basic-info .class dt {
	display: inline;
	font-size: 16px;
	font-weight: 500;
	line-height: 28px;
	color: #333;
}

.doctor-intro .basic-info .class dt:after {
	content: ':';
	display: inline-block;
	padding: 0 4px;
}

.doctor-intro .basic-info .class dd {
	display: inline;
	font-size: 16px;
	line-height: 28px;
	color: #666;
}

.doctor-intro .basic-info .class dd:after {
	content: '';
	display: block;
}

/*
.doctor-intro .basic-info .schedule {
	margin: 34px -1px 0;
}

.doctor-intro .basic-info .schedule>table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}

.doctor-intro .basic-info .schedule th,
.doctor-intro .basic-info .schedule td {
	height: 60px;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: -0.045em;
	color: #333;
	text-align: center;
	border: 1px solid #ddd;
}

.doctor-intro .basic-info .schedule thead th {
	background-color: #fafcfd;
}

.doctor-intro .basic-info .schedule strong {
	font-weight: 500;
}
*/
.schedule table {
	width: 100%;
	margin-bottom: 0;
}

.schedule table td {
	text-align: center !important;
}

.schedule table tbody td span {
	font-size: 12px;
}

.schedule table tbody td span.sc4 {
	font-size: 16px;
}

.schedule table tbody tr td:last-child {
    font-size: 16px;
}

.doctor-intro .basic-info .remarks {
	position: absolute;
	margin-top: 14px;
	width: calc(100% - 290px);
	font-size: 14px;
	line-height: 22px;
	color: #666;
}

.doctor-intro .basic-info .btn-group {
	margin-top: 20px;
}

.doctor-intro .basic-info .btn-group .btn-small {
	display: inline-block;
	margin: 0 5px;
	padding: 7px;
	width: 120px;
	height: 40px;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: -0.05em;
	text-align: center;
	border: 1px solid transparent;
}

.doctor-intro .basic-info .btn-group .btn-detail {
	color: #333;
	border-color: #ddd;
	background-color: #f8f8f8;
}

.doctor-intro .basic-info .btn-group .btn-reserve {
	color: #fff;
	border-color: #384451;
	background-color: #384451;
}

@media all and (max-width:849px) {
	.doctor-intro .basic-info .picture {
		width: 260px;
	}

	.doctor-intro .basic-info .info {
		width: calc(100% - 260px);
	}
}

.doctor-intro .spec-info {
	margin-top: 40px;
}

.doctor-intro .spec-info .tab {
	border-bottom: 1px solid #ddd;
}

.doctor-intro .spec-info .tab .trigger {
	display: none;
}

.doctor-intro .spec-info .tab .list {
	display: table;
}

.doctor-intro .spec-info .tab .list>li {
	display: table-cell;
	vertical-align: bottom;
}

.doctor-intro .spec-info .tab .list>li a {
	display: block;
	margin: 0 -1px -1px 0;
	width: 195px;
	height: 55px;
	color: #333;
	border: 1px solid #d7d7d7;
	background-color: #fff;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 55px;
	letter-spacing: -0.9px;
	text-align: center;
}

.doctor-intro .spec-info .tab .list>li.on a {
	height: 55px;
	color: #fff;
	background-color: #1b30af;
}

.doctor-intro .spec-info .tab-contents>.panel {
	display: none;
	padding: 40px 20px 0;
}

.doctor-intro .spec-info .tab-contents>.panel.on {
	display: block;
}

.doctor-intro .spec-info .panel .list.career>li,
.doctor-intro .spec-info .panel .list.academic>li {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 35px;
	letter-spacing: -0.9px;
	text-align: left;
	color: #333;
}

.doctor-intro .spec-info .panel .list.career>li:before,
.doctor-intro .spec-info .panel .list.academic>li:before {
	content: '·';
	font-size: 18px;
	padding-right: 5px;
}

.doctor-intro .spec-info .panel .list.paper>li:nth-child(odd) {
	font-family: 'Lato', sans-serif;
	font-size: 17px;
	font-weight: 700;
	line-height: 30px;
	letter-spacing: -0.9px;
	text-align: left;
	color: #333;
	list-style: inside;
}

.doctor-intro .spec-info .panel .list.paper>li:nth-child(even) {
	font-family: 'Lato', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: -0.9px;
	text-align: left;
	color: #333;
	list-style: none;
	padding-left: 23px;
}

/*
.doctor-intro .spec-info .panel .list>li:before {
	content: '';
	display: block;
	position: absolute;
	top: 15px;
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #333;
}*/

.doctor-intro .btn-list {
	padding: 15px;
	width: 190px;
	height: 54px;
	font-size: 18px;
	font-weight: 500;
	line-height: 22px;
	color: #010101;
	border: 1px solid #ddd;
	background-color: #f8f8f8;
}

.doctor_hr {
	margin-top: 45px;
	margin-bottom: 69px;
	background: #d9d9d9;
	height: 1px;
	border: 0;
}

.section-doctor {
    height: 910px; 
    background-color: #878787; 
    width: 100%; 
    position: relative;
    background: url(/resource/images/doctor-test-pc.png);
}

.go-reserve {
    
}

.go-reserve button {
    width: 100%;
    height: 55px;
    border: solid 0 #000;
    background-image: linear-gradient(to left, #21a2c3, #1b30af);
    color: #fff;
    font-size: 18px;
    letter-spacing: -0.9px;
    text-align: center;
    color: #fefefe;
}

.section-doctor ._top {
    position: absolute; left: 310px; top:270px;
}

.section-doctor ._top .mg-top {
    margin-top: 110px;
}

.section-doctor .specialty {
    font-size: 26px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -1.3px;
    text-align: left;
    color: #fff;
    display: block;
}

.section-doctor .name {
    font-size: 70px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -3.5px;
    text-align: left;
    color: #fff;
}

.section-doctor .position {
    font-size: 70px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -3.5px;
    text-align: left;
    color: #fff;
    margin-left: 11px;
}

/* 진료과 */
.wrap_department {
    background: #f9f9fa;
    padding: 62px 0;
}

.department {
    display: flex;
    width: 1110px;
    margin: 0 auto;
}

.depart_title_bottom {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: -0.9px;
	text-align: center;
	color: #333;
	display: block;
	text-align: center;
	margin-top: 20px;
}

.department ul {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.department ul li {
    border: solid 1px #d7d7d7;
    background-color: #fff;
    width: 200px;
    height: 200px;
    margin: 10px;
    cursor: pointer;
}

/*
.department ul li:nth-child(5n+1) {
    margin-left: 0;
}

.department ul li:nth-child(5n) {
    margin-right: 0;
}
*/

.department ul li img:first-child {
	display: block;
	margin: 0 auto;
	margin-top: 54px;
	margin-bottom: 15px;
}

.department ul li img:last-child{
	display: none;
}

.department ul li span {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 18px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 26px;
	letter-spacing: -0.9px;
	text-align: center;
	color: #333;
	display: block;
}

.department ul li:hover {
	border: solid 1px #1b30af;
	background: #1b30af;
    position: relative;
}

.department ul li:hover img:first-child {
    display: none !important;
}

.department ul li:hover img:last-child {
    display: block;
    margin: 0 auto;
    position: absolute;
    z-index: 10;
    left: 85px;
    top: 117px;
}

.department ul li:hover span {
    color: #fff;
    margin-top: 45px;
    line-height: 26px;
}

.department ul li:hover span::before {
    content: '';
    position: absolute;
    top: 107px;
    left: 75px;
    width: 48px;
    height: 48px;
    background: #132381;
    border-radius: 50%;
    z-index: 10;
}

/* 진료과 상세보기 */
.btn_doctor_detail {
    border: 1px solid #d7d7d7;
    width: 297px;
    height: 52px;
    box-sizing: border-box;
    text-align: center;
}

.btn_doctor_detail span, .btn_doctor_detail img {
    line-height: 52px;
}

.btn_doctor_detail span {
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn_doctor_detail img { 
	margin-right: 10px;
}

.tableType-01.doctor_detail th {
    padding: 12px 15px;
    font-size: 17px;
    font-weight: 500;
    border-right: 1px solid #d9d9d9;
    vertical-align: middle;
    background-color: #eaeaea;
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.76;
    letter-spacing: -0.85px;
    text-align: center;
    color: #333;
}

/* 전문센터 상세보기 */
.special_center .tableType-01 {
    width: 100%;
}

.special_center table thead td, .special_center table tbody td {
    text-align: center !important;
}

/* 특수클리닉 상세보기 */
.box_diet_pro_step {
    position: relative; 
    height: 370px; 
    padding-top: 15px;
}

.diet_pro_step {
    height: 52px;
    position: relative;
    font-size: 14px;
}

.diet_pro_step.bottom {
    margin-top: 120px;
    height: 52px;
    position: relative;
}

.diet_pro_step .step1 {
    z-index: 105;
    position: absolute;
    color: #fff;
    line-height: 49px;
    width: 52px;
    height: 52px;
    text-align: center;
    bottom: 0;
    left: 86px;
}

.diet_pro_step img {
	top: 18px;
    position: absolute;
}

.diet_pro_step img:nth-child(2) {
	left: 139px;
}

.diet_pro_step img:nth-child(4) {
	left: 394px;
}

.diet_pro_step img:nth-child(6) {
	left: 649px;
}

.step1:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #21a0c3;
    z-index: -1;
}

.diet_pro_step .step2 {
    z-index: 105;
    position: absolute;
    color: #fff;
    line-height: 49px;
    width: 52px;
    height: 52px;
    text-align: center;
    left: 339px;
}

.step2:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #1f80bd;
    z-index: -1;
}

.diet_pro_step .step3 {
    z-index: 105;
    position: absolute;
    color: #fff;
    line-height: 49px;
    width: 52px;
    height: 52px;
    text-align: center;
    left: 594px;
}

.step3:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #1d56b6;
    z-index: -1;
  }

  .diet_pro_step .step4 {
    z-index: 105;
    position: absolute;
    color: #fff;
    line-height: 49px;
    width: 52px;
    height: 52px;
    text-align: center;
    left: 849px;
  }

.step4:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0px;
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #1b31af;
    z-index: -1;
  }

.diet_pro_step_txt {
    margin-top: 28px;
}

.diet_pro_step_txt span {
    text-align: center;
    position: absolute;
}

.diet_pro_step_txt span:first-child {
    left: 85px; 
}

.diet_pro_step_txt span:nth-child(2) {
    left: 310px;
}

.diet_pro_step_txt span:nth-child(3) {
    left: 587px;
}

.diet_pro_step_txt span:last-child {
    left: 770px;
}

.diet_pro_step_txt.bottom span:first-child {
    left: 33px; 
}

.diet_pro_step_txt.bottom span:nth-child(2) {
    left: 347px;
}

.diet_pro_step_txt.bottom span:nth-child(3) {
    left: 504px;
}

.diet_pro_step_txt.bottom span:last-child {
    left: 803px;
}

/* 검색 결과 */
.resultDoctor, .resultVideo, .resultMedia {
    display: flex;
    padding-left: 30px;
    flex-wrap: wrap;
}

.resultDoctor li, .resultVideo li, .resultMedia li {
    display: block;
    position: relative;
    height: 200px;
    padding: 20px;
    border: 1px solid #dcdcdc;
    width: calc(50% - 70px);
    margin-right: 20px;
    margin-bottom: 20px;
}

.resultMedia li a .img {

}

.resultDoctor a {
    display: flex;
}

.resultDoctor a img {
    height: 200px;
}

.resultDoctor a .text.doctor {
    margin-left: 20px;
    color: #333;
    flex-wrap: wrap;
    padding-top: 20px;
}

.resultDoctor a .text.doctor .subject {
    display: block;
    width: 100%;
}

.resultDoctor a .text.doctor .detail_subject {
    margin-top: 20px;
    display: block;
}

.resultDepartment {
    width: 100%;
    padding-left: 30px;
}

.resultDepartment ul {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.resultDepartment ul li {
    border: solid 1px #d7d7d7;
    background-color: #fff;
    width: 200px;
    height: 200px;
    margin: 10px;
    cursor: pointer;
}

/*
.department ul li:nth-child(5n+1) {
    margin-left: 0;
}

.department ul li:nth-child(5n) {
    margin-right: 0;
}
*/

.resultDepartment ul li a img:first-child {
	display: block;
	margin: 0 auto;
	margin-top: 54px;
	margin-bottom: 15px;
}

.resultDepartment ul li a img:last-child{
	display: none;
}

.resultDepartment ul li a span {
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 18px;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 2.94;
	letter-spacing: -0.9px;
	text-align: center;
	color: #333;
	display: block;
}

.resultVideo li, .resultMedia li {
    display: flex;
    height: 150px;
}

.resultVideo li .right, .resultMedia li .right {
    display: flex;
    flex-direction: column;
    padding: 10px 30px;
}

.resultVideo li .right span:nth-child(2) {
    margin-top: 30px;
}

.resultMedia li img {
    height: 140px;
	width: 140px;
}

.resultMedia li .right .content {
    margin-top:30px;
}

.resultCount {
    text-align: center;
}

.resultCount span {
    font-size: 18px;
    font-family: 'Noto Sans KR', sans-serif;
}

.mobile-dt {
    display: none;
}

.pc-dt {
    display: block;
}

.mobile-pd-40 {
	padding:0px;
}


/* 탭 스타일 */
.tap_item {
    width: calc(100%/2);
    height: 50px;
    background-color: #fff;
    line-height: 50px;
    font-size: 18px;
    text-align: center;
    color: #333333;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    margin-bottom: 39px;
    box-shadow: inset 0 0 0 1px #d9d9d9;
    cursor: pointer;
}

/* 라디오 버튼 UI삭제*/
input[name="tap_item"] {
    display: none;
}

/* 탭 컨텐츠 스타일 */
.tap_content {
    display: none;
    clear: both;
    overflow: hidden;
}

/* 선택 된 탭 콘텐츠를 표시 */
    #tap1:checked ~ #tap1_content,
    #tap2:checked ~ #tap2_content,
    #tap3:checked ~ #tap3_content,
    #tap4:checked ~ #tap4_content,
    #tap5:checked ~ #tap5_content, 
    #tap6:checked ~ #tap6_content,
    #tap7:checked ~ #tap7_content,
    #tap8:checked ~ #tap8_content,
    #tap9:checked ~ #tap9_content,
    #tap10:checked ~ #tap10_content,
    #tap11:checked ~ #tap11_content,
    #tap12:checked ~ #tap12_content,
    #tap13:checked ~ #tap13_content,
    #tap14:checked ~ #tap14_content,
    #tap15:checked ~ #tap15_content,
    #tap16:checked ~ #tap16_content,
    #tap17:checked ~ #tap17_content
     {
        display: block;
}

/* 선택된 탭 스타일 */
.box_tap input:checked + .tap_item {
    background-color: #1e32a4;
    color: #fff;
    box-shadow: inset 0 0 0 1px #1e32a4;
}

.tap_content {
    width: 100%;
}

#tap2_content p img {
    margin-right: 10px;
}

/*
#tap2_content p {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: -1.3px;
    text-align: left;
    color: #333;
}
    */

#tap2_content.map.parking span {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.85px;
    text-align: left;
    color: #333;
    margin-left: 25px;
}

/* 탭 스타일 3개짜리 */
.tap_item_3 {
    width: calc(100%/3);
    height: 50px;
    background-color: #fff;
    line-height: 50px;
    font-size: 18px;
    text-align: center;
    color: #333333;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    margin-bottom: 39px;
    box-shadow: inset 0 0 0 1px #d9d9d9;
    cursor: pointer;
}

/* 선택된 탭 스타일 */
.box_tap input:checked + .tap_item_3 {
    background-color: #1e32a4;
    color: #fff;
    box-shadow: inset 0 0 0 1px #1e32a4;
}

.tap_item_3 a {
    width: 100%;
    height: 100%;
    display: block;
    color: #333;
}

.box_tap input:checked + .tap_item_3 a {
    color: #fff
}

/* 탭 스타일 3개짜리 */
.tap_item_4 {
    width: calc(100%/4);
    height: 50px;
    background-color: #fff;
    line-height: 50px;
    font-size: 18px;
    text-align: center;
    color: #333333;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    margin-bottom: 39px;
    box-shadow: inset 0 0 0 1px #d9d9d9;
    cursor: pointer;
}

.tap_item_5 {
    width: calc(100%/5);
    height: 50px;
    background-color: #fff;
    line-height: 50px;
    font-size: 18px;
    text-align: center;
    color: #333333;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    margin-bottom: 39px;
    box-shadow: inset 0 0 0 1px #d9d9d9;
    cursor: pointer;
}

.tap_item_6 {
    width: calc(100%/6);
    height: 50px;
    background-color: #fff;
    line-height: 50px;
    font-size: 18px;
    text-align: center;
    color: #333333;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    margin-bottom: 39px;
    box-shadow: inset 0 0 0 1px #d9d9d9;
    cursor: pointer;
}


.tap_item_7 {
    width: calc(100%/4);
    height: 50px;
    background-color: #fff;
    line-height: 50px;
    font-size: 18px;
    text-align: center;
    color: #333333;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    border: 0;
    box-sizing: border-box;
    cursor: pointer;
    border-right: 0;
}

.tap_item_7.mb{
    margin-bottom: 39px;
    border-top: none;
}

.tap_item_7.br {
    border-right: 1px solid #d9d9d9;
}

.tap_item_7.bt-0 {
    border-top: 0;
}

.tap_item_7.bb-0 {
    border-bottom: 0;
}

.tap_item_7.last {
    width: calc(100% / 4 + 1px);
}

.box_tap {
    width: 100%;
    overflow: hidden; /* float 해제 */
    border-top: 1px solid #d9d9d9; /* 전체 상단 테두리 */
    border-left: 1px solid #d9d9d9; /* 전체 왼쪽 테두리 */
}

.tap_item_7 {
    width: 25%; /* calc(100% / 4) 와 동일 */
    height: 50px;
    background-color: #fff;
    line-height: 50px;
    font-size: 18px;
    text-align: center;
    color: #333333;
    display: block;
    float: left;
    font-weight: bold;
    box-sizing: border-box;
    cursor: pointer;
    
    /* 테두리 중복 방지 설정 */
    border-right: 1px solid #d9d9d9; /* 오른쪽만 테두리 */
    border-bottom: 1px solid #d9d9d9; /* 아래만 테두리 */
}

/* 라디오 버튼 UI 삭제 */
input[name="tap_item"] {
    display: none;
}

/* 선택된 탭 스타일 (배경색과 테두리 색상 통일) */
.box_tap input:checked + .tap_item_7 {
    background-color: #1e32a4;
    color: #fff;
    border-color: #1e32a4; /* 선택 시 테두리 색상도 변경하여 강조 */
}

.box_tap input:checked + .tap_item_7 a {
    color: #fff;
}

/* 선택된 탭 스타일 */
.box_tap input:checked + .tap_item_4,
.box_tap input:checked + .tap_item_5,
.box_tap input:checked + .tap_item_6,
.box_tap input:checked + .tap_item_7 {
    background-color: #1e32a4;
    color: #fff;
    box-shadow: inset 0 0 0 1px #1e32a4;
}

.tap_item_4 a, .tap_item_5 a, .tap_item_6 a, .tap_item_7 a {
    width: 100%;
    height: 100%;
    display: block;
    color: #333;
}

.box_tap input:checked + .tap_item_4 a,
.box_tap input:checked + .tap_item_5 a,
.box_tap input:checked + .tap_item_6 a,
.box_tap input:checked + .tap_item_7 a {
    color: #fff
}

.tap_content {
    width: 100%;
}

#tap2_content p img {
    margin-right: 10px;
}

#tap2_content.map.parking span {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.85px;
    text-align: left;
    color: #333;
    margin-left: 25px;
}

.sub04-bnnr-7 {
    background: url(/resource/images/bnnr-sub04-7.png) no-repeat center;
    background-size: cover;
    z-index: 1;
    width: 100%;
    height: 0;
    padding-bottom: calc(221 / 1333 * 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sub04-bnnr-7 .content {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 100%;
    padding: 80px 88px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
}

.sub04-bnnr-7 .content img {
    margin-right: 20px;
}

.sub04-bnnr-7 .content p {
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: -1.2px;
    text-align: left;
    color: #000;
    margin-top: -8px;
}

.sub04-bnnr-7 .content p b {
    font-weight: 600;
} 

.multiline-text {
    display: none;
}

.multiline-text_pc {
    display: unset;
}

.mb-hide {
    display: block !important;
}

.mb-show {
    display: none !important;
}

.mb-flex {
    display: none !important;
}

.pc-flex {
    display: flex !important;
}

.pc-inlineflex {
    display: inline-flex !important;
}

.pc-mt-20 {
    margin-top: 20px !important;
}

.box-basic {
    margin: 0 auto;
    margin-top: 107px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    width: 1276px;
}


@media screen and (max-width:1855px) {
    .pc-br {display: none !important;}
}

@media screen and (max-width:1800px) {
    .box-basic {
        width: 100%;
    }

    .box-sub03-04-04-2 ._content ._each:first-child .txt span {
        padding-right: 20px;
        box-sizing: border-box;
    }

    .box-sub03-04-04-2 ._content ._each:nth-child(2) .txt span {
    }
    
    .coop-nyg-desc, .dementia-unique-title {
        word-break: keep-all;
    }

    .dementia-unique-title .tb-hide {
        display: none;
    }

    .coop-nyg-desc .tb-hide {
        display: none;
    }
}


.box-basic ._each {
    display: flex;
    margin-bottom: 40px;
    height: 317px;
}

.box-basic ._each ._left {
    width: 50%;
}

.box-basic ._each ._right {
    width: 50%;
    background-color: #21a2c3;
    box-sizing: border-box;
    position: relative;
    padding-left: 66px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.box-basic ._each ._right p {
    margin: 44px 0 26px 0;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 29.5px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.97;
    letter-spacing: -1.48px;
    text-align: left;
    color: #fff;
    position: relative;
    z-index: 1;
}

.box-basic ._each ._right p b {
    font-weight: bold;
}

.box-basic ._each ._right span {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.58;
    letter-spacing: -0.9px;
    text-align: left;
    color: #fff;
    position: relative;
    z-index: 1;
}

.box-basic ._each ._right .bg-logo {
    position: absolute;
    bottom: 0;
    right: 0;
    mix-blend-mode: color-burn;
    opacity: 0.3;
}

.box-basic-blue {
    background-color: #f3f6fa;
    padding: 113px 0 97px;
    margin: 40px 0 140px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width:1800px) {
    .box-basic-blue {
        padding: 113px 70px 97px;
    }
}

@media screen and (max-width:1600px) {
    .box-basic-blue {
        padding: 113px 50px 97px;
    }
}

@media screen and (max-width:1470px) {
    .box-basic-blue {
        background-color: #f3f6fa;
        padding: 113px 30px 97px;
        margin: 40px 0 140px;
        box-sizing: border-box;
    }
}

.box-basic-blue ._each {
    display: flex;
    flex-direction: column;
    margin-bottom: 102px;
    width: 1100px;
}

.box-basic-blue ._each:last-child {
    margin-bottom: 0px;
}

.box-basic-blue ._each ._top {
    display: flex;
    margin-bottom: 40px;
}

.box-basic-blue ._each ._top ._num {
    margin-right: 40px;
    position: relative;
}

.box-basic-blue ._each ._top ._num::after {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #1e32a4;
    content: '';
}

.box-basic-blue ._each ._top ._txt {
    display: flex;
    flex-direction: column;
}

.box-basic-blue ._each ._top ._txt h1 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 30px;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: -1.5px;
    text-align: left;
    color: #1e32a4;
    font-weight: normal;
    margin-bottom: 17px;
}

.box-basic-blue ._each ._top ._txt h1 b {
    font-weight: bold;
}

.box-basic-blue ._each ._top ._txt span {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
}

.box-basic-blue ._each ._bottom {
    display: flex;
    justify-content: space-between;
}

.box-basic-blue ._each ._bottom ._left {
    width: 535px;
    margin-right: 30px;
}

.box-basic-blue ._each ._bottom ._right {
    width: 535px;
    margin-right: 0px;
}

.box-basic-blue ._each ._bottom ._left2 {
    width: 346px;
    margin-right: 30px;
}

.box-basic-blue ._each ._bottom ._md {
    width: 346px;
    margin-right: 30px;
}

.box-basic-blue ._each ._bottom ._right2 {
    width: 346px;
    margin-right: 0px;
}

.box-basic-blue ._each ._bottom ._left, .box-basic-blue ._each ._bottom ._right {
    position: relative;
}

.box-basic-blue ._each ._bottom ._left div , .box-basic-blue ._each ._bottom ._right div {
    position: absolute;
    width: 535px;
    height: 51px;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    left: 0;
    background-color: #1e32a470;
}

.box-basic-blue ._each ._bottom ._left div span, .box-basic-blue ._each ._bottom ._right div span {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.box-basic-blue ._each ._bottom ._left div img, .box-basic-blue ._each ._bottom ._right div img {
    position: absolute;
    right: 0;
    bottom: 0;
}

.box-basic-blue ._each ._bottom ._left2, .box-basic-blue ._each ._bottom ._right2,
.box-basic-blue ._each ._bottom ._md {
    position: relative;
}

.box-basic-blue ._each ._bottom ._left2 div, .box-basic-blue ._each ._bottom ._right2 div,
.box-basic-blue ._each ._bottom ._md div {
    position: absolute;
    width: 346px;
    height: 51px;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    left: 0;
    background-color: #1e32a470;
}

.box-basic-blue ._each ._bottom ._left2 div span, .box-basic-blue ._each ._bottom ._right2 div span
, .box-basic-blue ._each ._bottom ._md div span {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.box-basic-blue ._each ._bottom ._left2 div img, .box-basic-blue ._each ._bottom ._right2 div img,
.box-basic-blue ._each ._bottom ._md div img {
    position: absolute;
    right: 0;
    bottom: 0;
}

.info-patient h1, .info-reserve h1 {
    margin-bottom: 20px;
}

.info-reserve {
    margin-top: 40px;
}

.box-sub4-04 {
    min-height: 341px;
    padding: 43px 36px 0 66px;
    background-color: #f1f5fa;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin-top: 35px;
    margin-bottom: 89px;
    position: relative;
}

.box-sub4-04 h1 {
    font-size: 28px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.07;
    letter-spacing: -1.4px;
    text-align: left;
    color: #212c67;
    margin-bottom: 25px;
}

.box-sub4-04 p {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
    margin-bottom: 37px;
}

.box-sub4-04 .flex {
    display: flex;
    align-items: center;
}

.box-sub4-04 .flex span {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.88;
    letter-spacing: -0.8px;
    text-align: left;
    color: #fd0000;
    margin-left: 7px;
}

.box-sub4-04 ul {
    display: flex;
    flex-direction: column;
    margin-top: 12px;
}

.box-sub4-04 ul li {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.88;
    letter-spacing: -0.8px;
    text-align: left;
    color: #666;
}

.box-sub4-04 .img-abs {
    position: absolute;
    bottom: 0;
    right: 36px;
}

.box-sub03-03-04 .top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-sub03-03-04 .top h1 {
    font-size: 34.5px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 47px;
    letter-spacing: -1.73px;
    text-align: left;
    color: #1e32a4;
    margin-top: 18px;
    margin-bottom: 103px;
    position: relative;
}

.box-sub03-03-04 .top h1::after {
    width: 1px;
    height: 45px;
    background-color: #d9d9d9;
    position: absolute;
    content: '';
    bottom: -73px;
    left: 50%;
    transform: translateX(-50%);
}

.box-sub03-03-04 .top p {
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: center;
    color: #333;
}

.box-sub03-03-04 .top p b {
    font-weight: 500;
}

.box-sub03-03-04.idx01 .popup {
    display: flex;
    justify-content: center;
    margin-top: 92px;
}

.box-sub03-03-04.idx01 .popup ._each {
    display: flex;
    width: 300px;
    height: 300px;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    padding-bottom: 105px;
    justify-content: flex-end;
}

.box-sub03-03-04.idx01 .popup ._each:first-child {
    background: url(/resource/images/img-sub03-03-04-bg1.png);
    background-size: cover;
}

.box-sub03-03-04.idx01 .popup ._each:nth-child(2) {
    background: url(/resource/images/img-sub03-03-04-bg2.png);
    background-size: cover;
}

.box-sub03-03-04.idx01 .popup ._each:nth-child(3) {
    background: url(/resource/images/img-sub03-03-04-bg3.png);
    background-size: cover;
}

.box-sub03-03-04.idx01 .popup ._each p {
    font-size: 30px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: -1.5px;
    text-align: center;
    color: #fff;
    margin-top: 24px;
}

.box-sub03-03-04.idx01 .popup ._each .icon-popup {
    position: absolute;
    bottom: 11px;
    right: 22px;
    cursor: pointer;
}

.box-sub03-03-04.idx01 .popup ._each:not(:last-child) {
    margin-right: 80px;
}

.box-sub03-03-04.idx02 {
    margin-top: 186px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 150px;
}

.box-sub03-03-04.idx02 .doctor {
    margin-top: 76px;
}

.box-sub03-03-04.idx03 .bottom {
    display: flex;
    justify-content: center;
    margin-top: 90px;
}

.box-sub03-03-04.idx03 .bottom .txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 50px;
}
.box-sub03-03-04.idx03 .bottom .txt p {
    margin-bottom: 26px;
    font-size: 26px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: -1.3px;
    text-align: left;
    color: #333;
}
.box-sub03-03-04.idx03 .bottom .txt span {
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
}

.box-sub03-03-04.idx04 {
    margin-top: 137px;
}

.box-sub03-03-04.idx04 .bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url(/resource/images/img-sub03-03-04-bg4.png);
    background-size: cover;
    width: 1333px;
    height: 530px;
}

.box-sub03-03-04.idx04 .bottom span {
    font-size: 42px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.71;
    letter-spacing: -2.94px;
    text-align: center;
    color: #fff;
    margin-bottom: 22px;
    display: block;
    text-align: center;
}

.box-sub03-03-04.idx04 .bottom p {
    font-size: 70px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 82px;
    letter-spacing: -3.5px;
    text-align: center;
    color: #fff;
}

.box-sub03-03-04.idx04 .bottom p b {
    background: linear-gradient(to left, #31aef5, #66e4ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-family: 'GMS_Bold';
    font-weight: normal;
}

.gas-popup-bg {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000000;
    display: none;
}

.gas-popup {
    width: 1134px;
    padding: 55px 0px 55px 50px;
    box-sizing: border-box;
    flex-direction: column;
    background-color: rgb(0 0 0 / 80%);
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    height: 80vh;
    display: none;
    z-index: 10000000;
}

.gas-popup ._scroll {
    overflow: auto;
    padding-right: 50px;
}

/* 스크롤바의 폭 너비 */
._scroll::-webkit-scrollbar {
    width: 10px;  
}

._scroll::-webkit-scrollbar-thumb {
    background: #9f9f9f; /* 스크롤바 색상 */
    border-radius: 10px; /* 스크롤바 둥근 테두리 */
}

._scroll::-webkit-scrollbar-track {
    background-color: rgb(0 0 0 / 80%);  /*스크롤바 뒷 배경 색상*/
}

.gas-popup ._close {
    position: absolute;
    right: -81px;
    width: 80px;
    height: 80px;
    top: 0;
    background-color: rgb(0 0 0 / 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gas-popup h1 {
    font-size: 31px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 42px;
    letter-spacing: -1.55px;
    text-align: left;
    color: #fff;
    margin-bottom: 52px;
}

.gas-popup .wrap {
    display: flex;
    flex-wrap: wrap;
}

.gas-popup .wrap ._each {
    width: calc(100%/2 - 45px);
}

.gas-popup .wrap ._each:nth-child(odd) {
    margin-right: 90px;
}

.gas-popup .wrap ._each:nth-child(n+3) {
    margin-top: 80px;
}

.gas-popup .wrap ._each .title {
    display: flex;
    align-items: center;
}

.gas-popup .wrap ._each .title span {
    margin-left: 9px;
    font-size: 24.5px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 36px;
    letter-spacing: -1.23px;
    text-align: left;
    color: #fff;
}

.gas-popup .wrap ._each ul li {
    font-size: 18px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: -0.9px;
    text-align: left;
    color: #fff; 
}

.gas-popup .wrap ._each .table {
    display: flex;
    width: 100%;
    flex-direction: column;
    margin-top: 30px;
}

.gas-popup .wrap ._each .table .top {
    background-color: #3481f5;
    height: 40px;
    width: 100%;
    display: flex;
}
.gas-popup .wrap ._each .table .top div:first-child {
    border-right: 1px solid #fff;
}

.gas-popup .wrap ._each .table .top span {
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: -0.9px;
    text-align: left;
    color: #fff;
}

.gas-popup .wrap ._each .table .top div,
.gas-popup .wrap ._each .table .bottom div {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gas-popup .wrap ._each .table .bottom {
    height: 40px;
    display: flex;
}

.gas-popup .wrap ._each .table .bottom div:first-child {
    border-right: 1px solid #fff;
}

.gas-popup .wrap ._each .table .bottom div {
    border-bottom: 1px solid #fff;
}

.gas-popup .wrap ._each .table .bottom span {
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: -0.9px;
    text-align: center;
    color: #fff;
}


.box-sub03-04-04-1 {
    width: 100%;
    display: flex;
    padding: 18px 100px 18px 87px;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    background: url(/resource/images/sub03-04-04-1.png);
    background-size: cover;
}

.box-sub03-04-04-1 .txt {
    display: flex;
    flex-direction: column;
}

.box-sub03-04-04-1 .txt h1 {
    font-size: 22px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: -1.1px;
    text-align: left;
    color: #fff;
    margin-bottom: 30px;
}

.box-sub03-04-04-1 .txt p {
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #fff;
}

.box-sub03-04-04-2 {
    display: flex;
    flex-direction: column;
    margin-top: 47px;
    margin-bottom: 78px;
}

.box-sub03-04-04-2 h1 {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: -1.1px;
    text-align: left;
    color: #333;
}

.box-sub03-04-04-2 ._content {
    display: flex;
}

.box-sub03-04-04-2 ._content ._each {
    width: 50%;
    display: flex;
    align-items: center;
}

.box-sub03-04-04-2 ._content ._each img {
    padding: 26px 28px 24px 27px;
    background-color: #f0f0f7;
    height: 150px;
    box-sizing: border-box;
}

.box-sub03-04-04-2 ._content ._each .txt span {
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333; 
    display: block;
    padding-left: 32px;
    box-sizing: border-box;
    padding-right: 20px;
}

.pc-br {display: block;}

.box-sub03-04-04-2 ._content ._each:first-child .txt span {
    width: 100%;
}

.box-sub03-04-04-2 ._content ._each:nth-child(2) .txt span {
    width: 100%;
}

.box-sub03-04-04-3 {
    display: flex;
    flex-wrap: wrap;
}

.box-sub03-04-04-3 ._each {
    width: calc(100%/3 - 86px/3);
    margin-right: 43px;
    padding: 24px 34px;
    height: 80px;
    box-sizing: border-box;
    background-color: #f9f9fa;
}

.box-sub03-04-04-3 ._each:nth-child(3n) {
    margin-right: 0;
}

.box-sub03-04-04-3 ._each:nth-child(n+4) {
    margin-top: 22px;
}

.box-sub03-04-04-3 ._each span {
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
    display: flex;
    align-items: center;
}

.stress.red {
    font-size: 22px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.36;
  letter-spacing: normal;
  text-align: center;
  color: #e11717;
  margin-top: 45px;
  margin-bottom: 125px;
}

.box-sub03-04-04-4 {
    display: flex;
    flex-direction: column;
}

.box-sub03-04-04-4 ._each {
    margin-bottom: 30px;
    display: flex;
}

.box-sub03-04-04-4 ._each ._txt {
    margin-left: 40px;
    display: flex;
    flex-direction: column;
    padding-top: 12px;
}

.box-sub03-04-04-4 ._each ._txt p {
    font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -1px;
  text-align: left;
  color: #1b30af;
  margin-bottom: 20px;
}

.box-sub03-04-04-4 ._each ._txt span {
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
}

.box-sub03-04-04-5 {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

.box-sub03-04-04-5 h1 {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: -1px;
    text-align: left;
    color: #333;
}

.box-sub03-04-04-5 ._content {
    display: flex;
}

.box-sub03-04-04-5 ._content ._each {
    width: calc(100%/4 - 90px/4);
    margin-right: 30px;
    display: flex;
    flex-direction: column;
}

.box-sub03-04-04-5 ._content ._each:last-child {
    margin-right: 0;
}

.box-sub03-04-04-5 ._content ._each ._txt span {
    display: block;
    margin-top: 25px;
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
}

.box-sub03-04-05-1 {
    width: 1300px;
    height: 1134px;
    background-color: #fbfbfb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 66px;
}

.intro-doctor {
    font-size: 30px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: -1.5px;
    text-align: left;
    color: #333;
    margin-top: 150px;
    margin-bottom: 60px;
}

.intro-doctor b {
    color: #1b30af;
    font-weight: bold;
}

.schedule-box {
    display: flex;
    height: 677px;
}

.schedule-box ._calendar {
    width: 70%;
    padding: 50px;
    border-right: 1px solid #ddd;
    box-sizing: border-box;
    border: 1px solid #e4e4e4 !important;
    border-radius: 0 !important;
}

.schedule-box .calInfo {
    width: 30%;
    padding: 55px 35px;
    box-sizing: border-box;
    border: 1px solid #e4e4e4 !important;
    border-left: 0 !important;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: auto;
}

.schedule-box .calInfo .label-box {display: flex;justify-content: center;}
.schedule-box .calInfo span {display: flex;align-items: center; font-size: 16px;}
.schedule-box .calInfo span:before {content:"";display:inline-block;width:16px;height:16px;margin-right: 5px;margin-top: 2px; border-radius: 100%;}
.schedule-box .calInfo .today:before {border: solid 1px #b9b9b9;}
.schedule-box .calInfo .possible:before {background-color: #f6edd5;}
.schedule-box .calInfo .choice:before {background-color: #1795d0;}
.schedule-box .calInfo .label-time {margin-top: 25px;}
.schedule-box .calInfo .label-time button {width: 100%;border:1px solid #ddd;padding:10px 5px;color:#a0a0a0;font-size: 18px;font-weight: 500;box-sizing: border-box;background-color: #fff;}
.schedule-box .calInfo .label-time button+button {margin-top: 8px;}
.schedule-box .calInfo .label-time button.on {color:#fff;border-color: #1795d0;background-color: #1795d0;}

input[type="date"] {
    appearance: none; /* 브라우저 기본 스타일 제거 */
    -webkit-appearance: none; /* iOS 기본 스타일 제거 */
    border: 1px solid #ddd;
    border-radius: 5px;
    height: 45px;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 10px;
    font-size: 18px; /* 텍스트 크기 조정 */
    background-color: #fff; /* 배경색 설정 */
    color: #333; /* 텍스트 색상 */
    text-align: left;
    position: relative;
}

.custom-label {
    position: absolute; 
    top: 50%; 
    left: 15px; 
    transform: translateY(-50%); 
    color: #aaa; 
    pointer-events: none; 
    font-size: 18px; 
    transition: 0.2s ease-in-out;
}

.rsv-submit {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000000;
    display: none;
}
.rsv-submit-box {
	position: absolute;
    top: 5%;
    bottom: 5%;
    left: 50%;
    width: 700px;
	box-sizing: border-box;
    background-color: #fff;
    transform: translateX(-50%);
}
.rsv-submit-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding:20px 30px;
	box-sizing: border-box;
	background-color: #032a5b;
}
.rsv-submit-head > img {
	width: 131px;
}
.rsv-submit-head > button {
	width: 39px;
	height: 39px;
	color:#5f7999;
	text-indent: -9999px;
	box-shadow: none;
	border: none;
	background-image: url(/resource-pc/images/rsv-box-close.png);
	background-color: transparent;
	cursor: pointer;
}
.rsv-submit-body {
	overflow-y: auto;
	height: calc(100% - 198px);
	margin-top: 85px;
	padding:45px 45px 20px;
	box-sizing: border-box;
}
.rsv-submit-body .rsv-box-tit {
	margin-bottom: 15px;
	font-size: 22px;
	letter-spacing: -1.2px;
}
.rsv-submit-body .rsv-box-tit .scale {
	font-size: 10px;
}
.rsv-submit-body .agreeSection {
	overflow-y: auto;
	height:auto;
	border: none;
	box-sizing: border-box;
    margin-top: 20px;
}
.rsv-submit-body .agreeSection .agreeTxtWrap {
	height:100%;
	min-height: 85px;
	max-height: 120px;
	margin-bottom: 0;
	padding:30px;
	border: none;
	box-sizing: border-box;
	background-color: #f5f5f5;
}
.rsv-submit-body .agreeSection .agreeTxtWrap.no-scr {
	height: auto;
	min-height: 0;
	max-height: 100%;
}
.rsv-submit-body .agreeSection~.agreeSection {
	margin-top: 20px;
}
.rsv-submit-body .agreeSection+.rsv-box-tit {
	margin-top: 30px;
}
.rsv-submit-body .agreeSection label {
	display: none;
}
.rsv-submit-body .title,
.rsv-submit-body .label_wrap {
	display: none;
}

.rsv-submit-body .tableType-01.green td {
	word-break: break-all;
}
.rsv-submit-body .radio-box {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}
.rsv-submit-body .radio-box label {
	padding:0 10px;
	color:#000;
	font-size: 18px;
	font-weight: 400;
}
.rsv-submit-body .radio-box label input {
	appearance: none;
	width: 18px;
	height: 18px;
	margin-bottom: 2px;
	outline: 1px solid #aaa;
	border-radius: 100%;
	box-sizing: border-box;
    margin-right: 2px;
}
.rsv-submit-body .radio-box label input:checked {
	outline-color: #032a5b;
	border:3px solid #fff;
	background-color: #032a5b;
}

.rsv-submit-body .rsv-box-tit+.tableType-01>span {
	display: block;
	padding: 25px 0;
	font-size: 18px;
	text-align: center;
}
.rsv-submit-body .rsv-textarea {
	width: 100%;
	padding:30px;
	font-family: 'Noto Sans Kr';
	font-size: 16px;
	border: 1px solid #093268;
	box-sizing: border-box;
}
.rsv-submit-foot {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 0 40px;
}
.rsv-submit-foot button {
	width: 200px;
	height: 50px;
	margin:0 5px;
	font-size: 18px;
	line-height: 50px;
	box-shadow: none;
	border: none;
	background-color: transparent;
	cursor: pointer;
}
.rsv-submit-foot button[type="button"] {
	color:#828282;
	border:1px solid #ccc;
}
.rsv-submit-foot button[type="submit"] {
	color:#fff;
	border: 1px solid #297fdc;
	background-color: #297fdc;
}

.c-green {
    color: #26b27c !important;
    font-weight: 400;
}
.rsv-submit-body .form {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
	font-family: 'Noto Sans KR';
	font-size: 18px;
	font-weight: 400;
}
.rsv-submit-body .form.no-margin {
	margin-top: 0;
}
.rsv-submit-body .form+.form {
	margin-top: 8px;
}
.rsv-submit-body .form label {
	flex-shrink: 0;
	width: 100px;
	color:#000;
}
.rsv-submit-body .form .form-control {
	width: 100%;
	padding: 12px 18px;
	font-family: 'Noto Sans KR';
	font-size: 16px;
	border: none;
	box-sizing: border-box;
	box-shadow: none;
	outline: none;
	background-color: #f5f5f5;
}
.rsv-submit-body .form select.form-control {
	padding:11px 18px;
}
.rsv-submit-body .form .form-control::placeholder {
	color:rgba(0, 0, 0, 0.35)
}
.rsv-submit-body .form .form-control:focus {
	border-color: #ccc;
}
.rsv-submit-body .form .btn {
	height: 50px;
	line-height: 48px;
}

.agreeSection~.agreeSection {
	margin-top: 20px;
}

.agreeSection .title {
	margin: 0 0 5px;
	font-size: 1.8rem;
	color: #111;
}

.agreeSection .agreeTxtWrap {
	overflow: auto;
	height: 200px;
	margin: 0 0 10px;
	padding: 10px;
	background: #fafafa;
	border: 1px solid #1c2536;
	color: #666;
}

.agreeChk {
	margin-top: 25px;
	padding-top: 25px;
	text-align: center;
	border-top: 1px solid #22314e;
}

.clinic-info {
    display: flex;
    margin-bottom: 80px;
    margin-top: 10px;
}

.clinic-info img {
    margin-right: 43px;
}

.clinic-category {
    display: flex;
    flex-wrap: wrap;
}

.clinic-category.n2 ._each {
    width: calc(100%/2 - 10px);
    margin-bottom: 20px;
    min-height: 80px;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #f9f9fa;
}

.clinic-category.n2 ._each:nth-child(:last-child),
.clinic-category.n2 ._each:nth-last-child(2) {
    margin-bottom: 0;
}

.clinic-category.n2 ._each:nth-child(odd) {
    margin-right: 20px;
}

.clinic-category.n3 ._each {
    width: calc(100%/3 - 8px);
    margin-bottom: 0;
    min-height: 80px;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #f9f9fa;
}

.clinic-category.n3 ._each:not(:nth-child(3n)) {
    margin-right: 12px;
}

.clinic-category ._each span {
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
    padding-left: 10px;
    position: relative;
}

.clinic-category ._each span::before {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #333;
    content: '';
    top: 15px;
    left: 0;
}

.clinic-category ._each span b {
    font-weight: 500;
}

.clinic-procedure {
    display: flex;
    flex-direction: column;
}

.clinic-procedure ._each {
    display: flex;
    margin-bottom: 30px;
} 

.clinic-procedure ._each:last-child {
    margin-bottom: 0;
}

.clinic-procedure ._each img {
    margin-right: 40px;
} 

.clinic-procedure ._each ._txt {
    display: flex;
    flex-direction: column;
    padding-top: 12px;
} 

.clinic-procedure ._each ._txt p {
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: -1px;
    text-align: left;
    color: #1b30af;
    margin-bottom: 30px;
} 

.clinic-procedure ._each ._txt span {
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
} 

.common_hr.type2 {
    margin: 60px 0;
}

.common_hr.type3 {
    margin: 90px 0;
}

.common_hr.type4 {
    margin: 160px 0;
}

.box-sub03-04-06-1 {
    margin: 60px 0 135px;
}

.box-sub03-04-06-1 p {
    font-size: 41.5px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 50px;
  letter-spacing: -2.08px;
  text-align: center;
  color: #000;
  margin-bottom: 18px;
}

.box-sub03-04-06-1 h1 {
    font-size: 48.5px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 50px;
    letter-spacing: -2.43px;
    text-align: center;
    color: #000;
}

.box-sub03-04-06-1 h1 b {
    font-size: 48.5px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 50px;
    letter-spacing: -2.43px;
    text-align: center;
    color: #dc426a;
}

.box-sub03-03-03-1 {
    display: flex;
    flex-direction: column;
}

.box-sub03-03-03-1 .title {
    font-family: 'Cafe24Shiningstar';
    font-size: 61.5px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 1.23px;
    text-align: center;
    color: #000;
    margin-top: 90px;
}

.box-sub03-03-03-1 .title span {
    position: relative;
    color: #1e32a4;
}

.box-sub03-03-03-1 .title span::after {
    content: url('/resource/images/text-decoration.png');
    top: -60px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.box-sub03-03-03-1 .box-img {
    display: flex;
    margin-top: 80px;
}

.box-sub03-03-03-1 .box-question {
    display: flex;
    flex-direction: column;
    margin-top: 54px;
}

.box-sub03-03-03-1 .box-question p {
    font-family: 'GMS_Bold';
    font-size: 36px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #1e32a4;
    margin-bottom: 25px;
}

.box-sub03-03-03-1 .box-question p span {
    font-size: 26px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    margin-left: 17px;
    font-family: 'Noto Sans KR', sans-serif;
}

.box-sub03-03-03-1 .box-question span {
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
}

.box-sub03-03-03-1 .box-img-cross {
    display: flex;
    align-items: center;
    margin-top: 60px;
    position: relative;
}

.box-sub03-03-03-1 .box-img-cross ._txt {
    display: flex;
    flex-direction: column;
    margin-right: 88px;
    word-break: keep-all;
}

.box-sub03-03-03-1 .box-img-cross ._txt h1 {
    font-family: 'GMS_Bold';
    font-size: 30px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.27;
    letter-spacing: -0.15px;
    text-align: left;
    color: #21a2c3;
    margin-bottom: 45px;
}

.box-sub03-03-03-1 .box-img-cross ._txt span {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
}

.box-sub03-03-03-1 .box-img-cross::before {
    position: absolute;
    right: 37px;
    top: -106px;
    content: url('/resource/images/img-sub03-03-03-ci.png');
    width: 213px;
    height: 213px;
}

.box-sub03-03-03-2 {
    display: flex;
    flex-direction: column;
}

.box-sub03-03-03-2 .box-question {
    display: flex;
    margin-bottom: 57px;
}

.box-sub03-03-03-2 .box-question .utube {
    position: relative;
    width: 673px; /* 필요하면 최대 크기 조정 */
    margin-right: 57px;
}

.box-sub03-03-03-2 .box-question .utube iframe {
    width: 100%; /* 부모 요소에 맞게 가로 크기 조정 */
    aspect-ratio: 16 / 9; /* 유튜브 기본 비율 */
    height: auto;
}

.box-sub03-03-03-2 .box-question ._txt {
    display: flex;
    flex-direction: column;
    width: calc(100% - 730px);
}

.box-sub03-03-03-2 .box-question ._txt div {
    display: flex;
    align-items: flex-start;
    margin-bottom: 37px;
}

.box-sub03-03-03-2 .box-question ._txt div span:first-child {
    font-family: 'GMS_Bold';
    font-size: 36px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #1e32a4;
    margin-right: 17px;
}

.box-sub03-03-03-2 .box-question ._txt div span:nth-child(2) {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 25px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.38;
    letter-spacing: normal;
    text-align: left;
    color: #000;
}

.box-sub03-03-03-2 .box-question ._txt span {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 17px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
    word-break: keep-all;
}

.box-sub03-03-03-2 .box-flex {
    display: flex;
}

.box-sub03-03-03-2 .box-flex .box-img-txt span {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
    word-break: keep-all;
}

.box-sub03-03-03-2 .box-flex .box-img-txt.idx01 {
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    margin-right: 56px;
    width: 673px;
}

.box-sub03-03-03-2 .box-flex .box-img-txt.idx01 span {
    margin-bottom: 87px;
}

.box-sub03-03-03-2 .box-flex .box-img-txt.idx02 {
    display: flex;
    flex-direction: column;
    width: calc(100% - 729px);
}

.box-sub03-03-03-2 .box-flex .box-img-txt.idx02 span {
    margin-top: 55px;
}

.box-sub03-03-03-3 {
    
}

.box-sub03-03-03-3 .box-question {
    display: flex;
}

.box-sub03-03-03-3 .box-question .utube {
    margin-left: 82px;
    width: 830px;
}

.box-sub03-03-03-3 .box-question .utube iframe {
    width: 100%; /* 부모 요소에 맞게 가로 크기 조정 */
    aspect-ratio: 16 / 9; /* 유튜브 기본 비율 */
    height: auto;
}

.box-sub03-03-03-3 .box-question ._txt {
    display: flex;
    flex-direction: column;
    width: 420px;
}

.box-sub03-03-03-3 .box-question ._txt div {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.box-sub03-03-03-3 .box-question ._txt div span:first-child {
    font-family: 'GMS_Bold';
    font-size: 36px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #1e32a4;
    margin-right: 17px;
}

.box-sub03-03-03-3 .box-question ._txt div span:nth-child(2) {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 26px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.38;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    word-break: keep-all;
}

.box-sub03-03-03-3 .box-question ._txt p {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
    padding-left: 66px;
    word-break: keep-all;
}

.box-sub03-03-03-4 {
    display: flex;
    flex-direction: column;
}

.box-sub03-03-03-4 .box-img-cross {
    display: flex;
    align-items: center;
}

.box-sub03-03-03-4 .box-img-cross:first-child {
    margin-bottom: 94px;
}

.box-sub03-03-03-4 .box-img-cross ._txt {
    padding-top: 18px;
    box-sizing: border-box;
    word-break: keep-all;
}

.box-sub03-03-03-4 .box-img-cross ._txt.idx01 {
    margin-left: 59px;
}

.box-sub03-03-03-4 .box-img-cross ._txt.idx02 {
    margin-right: 107px;
}

.box-sub03-03-03-4 .box-img-cross ._txt div {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.box-sub03-03-03-4 .box-img-cross ._txt div span:first-child {
    font-family: 'GMS_Bold';
    font-size: 36px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #1e32a4;
    margin-right: 17px;
}

.box-sub03-03-03-4 .box-img-cross ._txt div span:nth-child(2) {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 26px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.38;
    letter-spacing: normal;
    text-align: left;
    color: #000;
}

.box-sub03-03-03-4 .box-img-cross ._txt p {
    font-size: 18px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: -0.9px;
  text-align: left;
  color: #333;
}

.box-sub03-03-03-4 .box-img-cross ._txt p b {
    font-size: 22px;
  font-weight: bold;
  letter-spacing: -1.1px;
  color: #1e32a4;
}

.box-sub03-03-03-5 {
    display: flex;
    flex-direction: column;
}

.box-sub03-03-03-5 ._txt {
    margin-bottom: 108px;
}

.box-sub03-03-03-5 ._txt div {
    display: flex;
    align-items: center;
    margin-top: 54px;
    margin-bottom: 40px;
}

.box-sub03-03-03-5 ._txt div span:first-child {
    font-family: 'GMS_Bold';
    font-size: 36px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #1e32a4;
    margin-right: 17px;
}

.box-sub03-03-03-5 ._txt div span:nth-child(2) {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 26px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.38;
    letter-spacing: normal;
    text-align: left;
    color: #000;
    margin-top: -9px;
}

.box-sub03-03-03-5 ._txt p {
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
}

.box-sub03-03-03-5 ._txt p b {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -1px;
    color: #de4900;
}

.box-sub03-03-04.idx04 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-sub03-03-04.idx04 .circle {
    width: 1060px;
    height: 380px;
    display: flex;
    position: relative;
    margin-top: 53px;
}

.box-sub03-03-04.idx04 .circle ._each {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.box-sub03-03-04.idx04 .circle ._each span {
    margin-top: 32px;
    display: block;
    margin-bottom: 28px;
    font-size: 30px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: -1.5px;
    text-align: center;
    color: #333;
}

.box-sub03-03-04.idx04 .circle ._each:first-child {
    width: 374px;
    height: 374px;
    border: solid 3px #1e32a4;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}

.box-sub03-03-04.idx04 .circle ._each:first-child p {
    font-size: 66px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: -3.3px;
    text-align: center;
    color: #1e32a4;
    font-family: 'GMS_Bold';
}

.box-sub03-03-04.idx04 .circle ._each:nth-child(2) {
    width: 374px;
    height: 374px;
    border: solid 3px #21a2c3;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.box-sub03-03-04.idx04 .circle ._each:nth-child(2) p {
    font-size: 62.5px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: -3.13px;
    text-align: center;
    color: #21a2c3;
    font-family: 'GMS_Bold';
}

.box-sub03-03-04.idx04 .circle ._each:nth-child(3) {
    width: 374px;
    height: 374px;
    border: solid 3px #1dc6b0;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 0;
}

.box-sub03-03-04.idx04 .circle ._each:nth-child(3) p {
    font-size: 62.5px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: -3.13px;
    text-align: center;
    color: #1dc6b0;
    font-family: 'GMS_Bold';
}

.box-sub03-03-04.idx05 {
    margin-top: 190px;
}

.box-sub03-03-04.idx05 .bottom {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.box-sub03-03-04.idx05 .bottom .txt {
    display: flex;
    flex-direction: column;
    margin-left: 50px;
    align-items: flex-start;
    justify-content: center;
}

.box-sub03-03-04.idx05 .bottom .txt p {
    margin-top: 24px;
    margin-bottom: 33px;
    font-size: 26px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: -1.3px;
    text-align: left;
    color: #333;
}

.box-sub03-03-04.idx05 .bottom .txt .step {
    display: flex;
    align-items: center;
}

.box-sub03-03-04.idx05 .bottom .txt .step .ccl {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-sub03-03-04.idx05 .bottom .txt .step .ccl p {
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
}

.box-sub03-03-04.idx05 .bottom .txt .step img {
    margin: 0 10px;
}

.box-sub03-03-04.idx06 {
    margin-top: 197px;
}

.box-sub03-03-04.idx06 .reason {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.box-sub03-03-04.idx06 .reason ._each {
    width: calc(100%/2 - 10px);
    display: flex;
    flex-direction: column;
}

.box-sub03-03-04.idx06 .reason ._each:nth-child(n+3) {
    margin-top: 65px;
}

.box-sub03-03-04.idx06 .reason ._each .title {
    height: 60px;
    background-color: #1786ba;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-sub03-03-04.idx06 .reason ._each .title p {
    font-size: 26px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: -1.3px;
    text-align: left;
    color: #fff;
}

.box-sub03-03-04.idx06 .reason ._each.blue .title {
    background-color: #1e32a4;
    height: 60px;
}

.box-sub03-03-04.idx06 .reason ._each:nth-child(odd) {
    margin-right: 20px;
}

.box-sub03-03-04.idx06 .reason ._each .txt {
    margin-top: 30px;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.box-sub03-03-04.idx06 .reason ._each .txt span {
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: center;
    color: #333;
}

.reserveInfo table tr td input {
    width: 30%;
}

.reserveInfo.tableType-01 td {
    padding: 5px 40px;
}

.box-reserve-result {
    display: flex;
    flex-direction: column;
    margin-top: 45px;
    border: solid 2px #e4e4e4;
    padding: 80px 260px 20px;
    box-sizing: border-box;
    align-items: center;
}

.box-reserve-result p {
    font-size: 26px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: -1.3px;
    text-align: left;
    color: #333;
    margin-bottom: 40px;
}

.box-reserve-result .tableType-01 td {
    padding: 5px 40px;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 10003;
}

.reserve-popup.type1 {
    display: none;
}

.reserve-popup.type2 {
    display: none;
}

/* 로고 */
.popup-logo img {
    width: 202px;
}

.popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 내용 텍스트 */

.popup-content p:first-child {
    padding: 28px 0;
    width: 100%;
    background-color: #f0f0f0;
    font-size: 26px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: -1.3px;
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    margin-top: 25px;
}

.popup-content p {
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: -1px;
    text-align: center;
    color: #333;
}

.popup-content p .highlight {
font-weight: bold;
}

.popup-content p .confirm {
    font-weight: bold;
    color: #e10606;
}

.popup-content p .contact {
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: -1px;
    text-align: center;
    color: #333;
}

.popup-content p .contact a {
    font-weight: bold;
    color: #1b31af;
    cursor: pointer;
}

/* 버튼 */
.btn-confirm {
    background-image: linear-gradient(to right, #21a2c3, #1b30af);
    color: white;
    border: none;
    cursor: pointer;
    min-width: 166px;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: center;
    color: #fefefe;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

/* 팝업 박스 */
.reserve-popup {
    background: #fff;
    width: 523px;
    padding: 30px 30px 50px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease;
    min-height: 393px;
}

 /*temp*/
 .wrap-smart-checkup {
    display: flex;
    align-items: center;
    width: 100%;
    flex-direction: column;
}

.section-checkup {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
    font-family: "Noto Sans KR", sans-serif;
}

.checkup-slider {
    width: 100%;
    max-width: 1333px; /* 너비 제한 */
    margin: 20px auto;
    position: relative;
    overflow: hidden;
}

.checkup-slider .swiper-wrapper {
    align-items: center;
}

.checkup-slider .swiper-slide {
    display: flex;
    justify-content: center;
}

.checkup-slider .swiper-slide img {
    width: 100%;
    max-width: 1333px; /* 이미지 크기와 맞추기 */
    height: auto;
    object-fit: contain;
}

.checkup-content h2 {
    margin-bottom: 17px;
    display: flex;
    align-items: flex-start;
    font-size: 48.5px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.14;
    letter-spacing: -3.4px;
    text-align: center;
    color: #000;
    justify-content: center;
    margin-top: 110px;
}

.checkup-content h2 img {
    margin: 0 18px;
}

.checkup-content .highlight {
    color: #1e32a4;
}

.checkup-content .sub {
    margin-bottom: 60px;
    font-size: 34.5px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 50px;
    letter-spacing: -1.73px;
    text-align: center;
    color: #666;    
}

.logo-line {
    display: flex;
    justify-content: center;
}

.logo-line .logo {
    width: 60px;
    margin: 20px 0;
}

.desc h3 {
    font-size: 34.5px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: -1.73px;
    text-align: left;
    color: #1e32a4;
    margin-bottom: 40px;
}

.desc p {
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: center;
    color: #333;
}

.desc p strong {
    font-weight: 600;
}

.desc p .bold {
    font-weight: bold;
}

.desc p .red {
    color: #eb3346;
}

.desc .last {
    margin-top: 130px;
    position: relative;
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: -1.2px;
    text-align: center;
    color: #333;
}

.desc .last::before {
    width: 1px;
    height: 46px;
    background-color: #e3e3e3;
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    content: '';
}

.italic {
    font-family: iceJaram-Rg;
    font-size: 69.5px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: -3.48px;
    text-align: center;
    color: #1e32a4;
    margin-bottom: 20px;
}

.checkup-content .logo-line {
    text-align: center;
    margin-top: 80px;
}

.checkup-content .desc {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.section-rfid-guide {
    width: 100%;
    margin: 80px auto;
    text-align: center;
}

.rfid-title .rfid-logo {
    width: 60px;
    margin-bottom: 10px;
}

.rfid-title h2 {
    font-size: 34.5px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -1.73px;
  text-align: center;
  color: #1e32a4;
  margin-top: 40px;
  margin-bottom: 57px;
}

.rfid-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 46px;
    justify-content: center;
}

.rfid-steps .step {
    width: calc(33.333% - 33px);
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: solid 1px #e3e3e3;
}

.rfid-steps .step img {
  width: 100%;
  height: auto;
  display: block;
}

.step-info {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    background: #f5f5f5;
    height: 60px;
    font-size: 14px;
}


.step-info strong {
    display: inline-flex;
    min-width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    background-color: #1786ba;
    align-items: center;
    justify-content: center;
    font-family: 'GMS_Bold';
    font-size: 24px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
}

.step-info.deep strong { 
    background-color: #1e32a4;
}

.step-info p {
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: center;
    color: #333;
    padding-left: 20px;
}

.section-rfid-benefit {
    width: 100%;
    margin: 100px auto;
    text-align: center;
}

.rfid-benefit-title .rfid-logo {
  width: 60px;
  margin-bottom: 10px;
}

.rfid-benefit-title h2 {
  margin-bottom: 90px;
  margin-top: 40px;
  font-size: 34.5px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: -1.73px;
  text-align: center;
  color: #1e32a4;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.benefit-item {
  width: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circle-icon {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background-color: #f8f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 15px;
}

.circle-icon img {
  height: auto;
  margin-bottom: 27px;
}

.circle-icon p {
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
}

.benefit-item p {
  font-size: 16px;
  color: #333;
  line-height: 1.4;
}

.section-contact {
    background-color: #fff;
    text-align: center;
    width: 100%;
    padding: 0px;
    box-sizing: border-box;
}

.contact-logo {
  width: 60px;
  margin-bottom: 10px;
}

.contact-inner h2 {
    font-size: 34.5px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: -1.73px;
  text-align: center;
  color: #1e32a4;
  margin-bottom: 40px;
  margin-top: 40px;
}

.contact-box {
    color: #fff;
    padding: 34px 60px;
    margin: 0 auto;
    background-color: #1e32a4;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.contact-desc {
    margin-bottom: 28px;
    font-size: 26px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: -1.3px;
    text-align: left;
    color: #fff;
}

.contact-info {
    background-color: #fff;
    color: #000;
    font-size: 18px;
    padding: 24px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 4px;
    text-decoration: none;
    width: 100%;
}

.contact-info .phone-icon {
    width: 20px;
    height: auto;
}

.contact-info strong {
    font-size: 32px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.94;
    letter-spacing: -1.6px;
    text-align: left;
    color: #1e32a4;
}

.contact-info span {
    font-size: 26px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: -1.3px;
    text-align: left;
    color: #333;
    margin: 0 7px 0 2px;
}

.checkup-slider .swiper-button-next, .checkup-slider .swiper-button-prev {
    color: #fff;
    background-color: transparent;
}

.surgery-section {
    background: #fff;
padding: 130px 0;
width: 100%;
}

.surgery-inner {
margin: 0 auto;
background: #fff;
border: 10px solid #f7f7f7;
padding: 82px 32px 89px 32px;
box-sizing: border-box;
text-align: center;
position: relative;
}

.box-illust {
position: absolute;
top: -135px;
left: 50%;
transform: translateX(-50%);
background-color: #fff;
}

.surgery-illust {
width: 515px;
}

.surgery-handwriting {
margin-bottom: 24px;
font-family: iceJaram-Rg;
font-size: 76.5px;
font-weight: normal;
font-stretch: normal;
font-style: normal;
line-height: 1.54;
letter-spacing: -2.3px;
text-align: center;
color: #000;
}

.surgery-title {
font-size: 45px;
font-weight: bold;
font-stretch: normal;
font-style: normal;
line-height: 1.54;
letter-spacing: -3.15px;
text-align: center;
color: #000;
margin-bottom: 52px;
}

.surgery-blue {
color: #1e32a4;
}

.surgery-subtitle {
font-family: NotoSansKR;
font-size: 34.5px;
font-weight: normal;
font-stretch: normal;
font-style: normal;
line-height: 46px;
letter-spacing: -1.73px;
text-align: center;
color: #333;
margin-bottom: 29px;
}

.surgery-green {
position: relative;
z-index: 1;
}

.surgery-green::after {
position:absolute;
content: '';
background-color: #fffbcd;
width: 100%;
height: 16px;
bottom: 6px;
left: 0;
z-index: -1;
}

.surgery-desc {
font-family: NotoSansKR;
font-size: 18px;
font-weight: 400;
font-stretch: normal;
font-style: normal;
line-height: 1.67;
letter-spacing: -0.9px;
text-align: center;
color: #333;
}

.surgery-red {
color: #dc426a;
}

.surgery-info-wrap {
margin: 34px auto;
}

.surgery-info-box {
display: flex;
align-items: center;
background: #fff;
border: solid 1px #d9d9d9;
margin-bottom: 19px;
padding: 30px;
gap: 73px;
}

.surgery-info-img {
flex: 0 0 600px;
text-align: center;
}

.surgery-info-img img {
width: 100%;
height: auto;
display: block;
margin: 0 auto;
}

.surgery-info-text {
flex: 1 1 0;
min-width: 200px;
padding-top: 10px;
}

.surgery-info-title {
margin-bottom: 56px;
display: flex;
align-items: start;
gap: 10px;
}

.surgery-info-num {
font-family: 'GMS_Bold';
font-size: 36px;
font-weight: bold;
font-stretch: normal;
font-style: normal;
line-height: 1;
letter-spacing: -1.8px;
text-align: center;
color: #1c30af;
margin-right: 20px;
}

.surgery-info-main {
font-family: NotoSansKR;
font-size: 26px;
font-weight: bold;
font-stretch: normal;
font-style: normal;
line-height: 1.15;
letter-spacing: -1.3px;
text-align: left;
color: #1c30af;
}

.surgery-info-sub {
font-weight: normal;
}

.surgery-info-list {
margin: 0;
padding: 0;
list-style: none;
}

.surgery-info-list li {
position: relative;
padding-left: 10px;
font-size: 18px;
font-weight: 500;
font-stretch: normal;
font-style: normal;
line-height: 1.67;
letter-spacing: -0.9px;
text-align: left;
color: #666;
}

.surgery-info-list li::before {
content: '';
display: inline-block;
width: 2px;
height: 2px;
background: #666;
border-radius: 50%;
position: absolute;
left: 0;
top: 0.8em;
transform: translateY(-50%);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
    width: 100%;
    margin: 0 auto;
    padding: 32px 5px 100px;
    box-sizing: border-box;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 170px;
  max-width: 170px;
  flex: 1 1 170px;
  margin: 0;
}

.process-icon {
  position: relative;
  width: 170px;
  height: 170px;
  background: #fff;
  border: solid 5px #f7f7f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 19px;
}

.process-num {
    position: absolute;
    top: -5px;
    left: 30px;
    transform: translateX(-50%);
    background: #1c30af;
    border-radius: 50%;
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: center;
    color: #fff;
}

.process-icon img {
  object-fit: contain;
  z-index: 1;
}

.process-label {
    font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: -0.9px;
  text-align: center;
  color: #333;
}

.process-label-sub {
  font-size: 0.92em;
  color: #888;
  font-weight: 400;
}

.process-arrow {
    width: 29px;
    height: 25px;
    margin: 0 4px;
    margin-top: 80px;
}    

.facility-cards {
    display: flex;
    gap: 29px;
    justify-content: space-between;
    align-items: stretch;
    margin: 32px 0 100px;
}

.facility-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    aspect-ratio: 425 / 300;
    position: relative;
}

.facility-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
    position: relative;
}

.facility-caption {
    background: #1b30af99;
    z-index: 10;
    position: absolute;
    width: 100%;
    bottom: 0;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: center;
    color: #fff;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-cards {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: stretch;
    margin: 40px 0 40px;
}

.doctor-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    min-width: 340px;
    max-width: 620px;
    flex: 1 1 0;
    box-sizing: border-box;
}

.doctor-img {
    flex: 0 0 287px;
    max-width: 287px;
    margin-right: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #fff;
}

.doctor-info {
  flex: 1 1 0;
  position: relative;
  height: 100%;
}

.doctor-title {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.9px;
    text-align: left;
    color: #666;
}

.doctor-title strong {
    font-size: 26px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -1.3px;
    text-align: left;
    color: #333;
}

.doctor-list {
    margin: 40px 0 0 0;
    padding: 0;
}

.doctor-list li {
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.88;
    letter-spacing: -0.8px;
    text-align: left;
    color: #666;
}

.doctor-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #d7d7d7;
    padding: 10px 24px;
    font-size: 14px;
    color: #333;
    width: -webkit-fill-available;
    background: #fff;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    position: absolute;
    bottom: 0;
    left: 0;
}

.doctor-link img {
  margin-right: 10px;
}


.video-section {
    background: #f8f9fb;
    padding: 60px 0 50px 0;
    text-align: center;
    margin-top: 100px;
}

.video-title {
    margin-bottom: 46px;
    font-size: 26px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -1.3px;
    text-align: center;
    color: #1c30af;
}

.video-title.small {
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.9px;
    text-align: center;
    color: #1c30af;
}

.video-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.video-thumb {
    position: relative;
    width: 597px;
    height: 336px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    background: #eee center center / cover no-repeat;
    transition: box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumb.active {
  cursor: default;
}

.video-thumb iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.go-appointment {
    width: 498px;
    height: 90px;
    margin: 0 auto;
    margin-top: 80px;
    background-color: #1c30af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: -1.3px;
    text-align: left;
    color: #fff;
}

.onedesk-section {
    max-width: 1333px;
    margin: 96px auto;
    background: #fff;
    overflow: hidden;
  }
  
  .onedesk-section .small-title {
      font-size: 41.5px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: -2.91px;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
      display: block;
  }
  
  .onedesk-title {
      background-image: linear-gradient(to right, #0a1a73 0%, #0a1a73 30%, #1786ba 60%, #1786ba 100%);
    font-family: NotoSansKR;
    font-size: 71px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: -3.55px;
    text-align: center;
    color: #333;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 96px;
  }
  
  .onedesk-top {
    position: relative;
    width: 100%;
    min-height: 667px;
    background: url('/resource/images/onedesk-bg-top.png') center center/cover no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  
  .onedesk-text {
    position: absolute;
    z-index: 2;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    bottom: 120px;
    left: 130px;
  }
  
  .onedesk-text h2 {
    font-size: 57px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: -2.85px;
    text-align: left;
    color: #fff;
    margin-bottom: 14px;
  }
  .onedesk-text h2 strong {
    display: block;
    font-size: 73px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: -3.65px;
    text-align: left;
    color: #fff;
  }
  .onedesk-text p {
    margin: 0;
    font-size: 25.5px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.49;
    letter-spacing: -1.28px;
    text-align: left;
    color: #fff;
  }
  
  /* FLEX 6분할 이미지 */
  .onedesk-flex {
    display: flex;
    flex-wrap: wrap;
    background: #f7f7f7;
  }
  
  .flex-img {
    width: 33.3333%;
    height: 415px;
    background: #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .flex-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .flex-img.noimg {
      background-color: #0e5ad7;
      position: relative;
  }
  
  .flex-img.noimg span {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: 'GMS_Bold';
      font-size: 21.5px;
      font-weight: bold;
      font-stretch: normal;
      font-style: normal;
      line-height: 2;
      letter-spacing: 21.5px;
      text-align: center;
      color: rgba(255, 255, 255, 0.2);
      text-transform: uppercase;
  }

  .onedesk-feature {
    margin: 0px auto;
    padding: 0 0 24px 0;
    margin-top: 200px;
}

.onedesk-feature-title {
    font-family: iceJaram-Rg;
  font-size: 69.5px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 60px;
  letter-spacing: -3.48px;
  text-align: center;
  color: #1e32a4;
  margin-bottom: 28px;
  margin-top: 40px;
}

.onedesk-feature-sub-title {
    font-family: NotoSansKR;
  font-size: 24px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: -1.2px;
  text-align: center;
  color: #333;
  margin-bottom: 58px;
}



.feature-row {
    display: flex;
    align-items: stretch;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
  flex: 1 1 0;
  padding: 32px 28px 32px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f9f9fa;
}

.feature-num {
  margin-bottom: 23px;
  font-family: 'GMS_Bold';
  font-size: 41px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: left;
  color: #1e32a4;
}

.feature-title {
    font-size: 26px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -1.3px;
  text-align: left;
  color: #1e32a4;
  margin-bottom: 20px;
}

.feature-desc {
    font-size: 18px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.9px;
  text-align: left;
  color: #333;
}

.feature-img {
    flex: 1 1 0;
    background: #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 666px;
}
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.checkup-process {
    text-align: center;
    margin-top: 250px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .process-header {
      margin-bottom: 87px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }
  .process-logo {
    width: 60px;
    margin-bottom: 10px;
  }
  .process-header h2 {
      font-size: 34.5px;
      font-weight: bold;
      font-stretch: normal;
      font-style: normal;
      line-height: 1.11;
      letter-spacing: -1.73px;
      text-align: center;
      color: #1e32a4;
      margin-top: 40px;
  }

  .checkup-tour {
    text-align: center;
    margin-top: 150px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .tour-header {
      padding-bottom: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }

  .checkup-tour h2 {
      font-size: 34.5px;
      font-weight: bold;
      font-stretch: normal;
      font-style: normal;
      line-height: 1.11;
      letter-spacing: -1.73px;
      text-align: center;
      color: #1e32a4;
      margin-bottom: 40px;
  }
  
  .smart-process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 68px;
    flex-wrap: wrap;
    max-width: 1060px;
    width: 100%;
  }
  
  .smart-process-step {
    background: #fafbfc;
    border-radius: 50%;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 270px;
    height: 270px;
  }

  .step-num {
    position: absolute;
    top: 0;
    left: 19px;
    background-color: #1786ba;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    width: 68px;
    height: 68px;
    font-family: 'GMS_Bold';
    font-size: 24px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
  }
  
  .step-num.blue {
      background-color: #1e32a4;
  }

  .step-icon {
    margin: 32px 0 12px 0;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .step-icon img {
    /* height: 54px; */
    width: auto;
    display: block;
  }

  .step-title {
    margin: 0 10px;
    word-break: keep-all;
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.44;
    letter-spacing: -0.9px;
    text-align: center;
    color: #333;
    margin-top: 20px;
  }
  
  .smart-process-arrow {
      font-size: 3.5rem;
      color: #d1d1d1;
      margin: 0 8px;
      user-select: none;
  }
  .smart-process-arrow.reverse {
    /* 아래줄 화살표를 왼쪽으로 */
    transform: scaleX(-1);
  }
  
  .smart-process-arrow-down {
      font-size: 3.5rem;
      color: #d1d1d1;
      margin: 0 8px;
      user-select: none;
      position: absolute;
      left: 50%;
      transform: translate(-50%, -50%);
      bottom: -80px;
  }
  
  .smart-process-arrow-down span {
      transform: rotate(90deg);
      display: inline-block;
  }

  .smart-docter {
    width: 100%;
    margin-top: 100px;
}

.docter-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 75px;
}

.docter-header h2 {
    font-size: 34.5px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.01;
  letter-spacing: -1.73px;
  text-align: center;
  color: #1e32a4;
  margin-bottom: 20px;
  margin-top: 40px;
}

.docter-header p {
    font-size: 24px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: -1.2px;
  text-align: center;
  color: #333;
}

.smart-video-caption {
    margin-bottom: 43px;
    font-size: 26px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -1.3px;
    text-align: center;
    color: #1c30af;
}

.smart-video-section {
    background-color: #f8f9fb;
    width: 100%;
    padding: 77px 0;
    box-sizing: border-box;
}

.smart-video-wrapper {
  position: relative;
  max-width: 1056px;
  margin: 0 auto;
  aspect-ratio: 16 / 9; /* iframe과 썸네일 모두 동일한 비율 유지 */
  background-color: #000; /* iframe 로딩 전 깜빡임 방지 */
  overflow: hidden;
  border-radius: 10px;
}

.smart-video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}

.smart-video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.smart-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  line-height: 80px;
  text-align: center;
}

.smart-faq {
  margin: 155px auto;
  font-family: 'Inter', 'Noto Sans KR', sans-serif;
  color: #333;
  max-width: 1060px;
  width: 100%;
}

.faq-title {
    text-align: center;
    margin-bottom: 74px;
  }
  
  .faq-title img {
    margin-bottom: 40px;
  }
  
  .faq-title h2 {
      font-size: 34.5px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.01;
    letter-spacing: -1.73px;
    text-align: center;
    color: #1e32a4;
  }

  .faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
    /* margin-bottom: 10px; */
  }
  
  .faq-list li {
    border-top: 2px solid #1e32a4;
  }
  
  .faq-list .question {
    width: 100%;
    padding: 14px 21px 16px;
    background: #fff;
    border: none;
    cursor: pointer;
    position: relative;
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
  }
  
  .faq-list .question .Q {
      font-family: 'GMS_Bold';
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: -0.9px;
    text-align: left;
    color: #3747ab;
    width: 40px;
    height: 40px;
    background-color: #f8f9fb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
  }
  
  .faq-list .question::after {
        width: 22px;   /* 필요시 추가 */
        height: 13px;  /* 필요시 추가 */
        content: "";
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%) rotate(180deg);
        background: url('/resource/images/ic-smart-arrow-m.png') no-repeat center center / contain;
        transition: transform 0.3s;
        display: inline-block;
  }
  
  .faq-list li.active .question::after {
    transform: translateY(-50%) rotate(0deg);
  }
  
  .faq-list .answer {
      display: none;
    padding: 23px 21px 27px;
    background-color: #f8f9fb;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.25;
    letter-spacing: -0.8px;
    text-align: left;
    color: #333;
    background-color: #f8f9fb;
    margin-bottom: 10px;
  }
  
  .faq-list li.active .answer {
    display: flex;
  }
  
  .faq-list li.active .answer .A {
      width: 40px;
    height: 40px;
    background-color: #1e32a4;
    font-family: 'GMS_Bold';
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: -0.9px;
    text-align: left;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
  }
  
  .faq-list .answer span:nth-child(2) {
    width: fit-content;
  }

@media screen and (max-width:1850px) { 
    .benefit-item {
        width: 210px;
    }
}

@media screen and (max-width:1800px) {
    .box-sub4-04 .img-abs {
        width: 365px;
    }
}

@media screen and (max-width:1300px) {
    .gas-popup {
        width: 80%;
    }

    .gas-popup .wrap ._each .table .bottom {
        height: auto;
        display: flex;
    }
}

@media screen and (max-width:1100px) {
    .gas-popup .wrap ._each:nth-child(odd) {
        margin-right: 40px;
    }
    .gas-popup .wrap ._each {
        width: calc(100% / 2 - 20px);
    }

    .gas-popup .wrap ._each .table .bottom span {
        word-break: keep-all;
    }
}

.respiratory-section {
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    margin-top: 85px;
  }
  
  .respiratory-container {
      text-align: center;
      border: 10px solid #f7f7f7;
      margin-bottom: 87px;
      padding: 82px 0;
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  
  .respiratory-container blockquote {
    margin: 0 0 50px 0;
    position: relative;
    font-size: 45px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: -3.15px;
    text-align: center;
    color: #000;
    width: fit-content;
  }
  
  .respiratory-container blockquote::before,
  .respiratory-container blockquote::after {
    content: '';
    position: absolute;
    top: 50%;
    margin: 0 8px;
    transform: translateY(-50%);
    display: inline-block;
  }
  .respiratory-container blockquote::before {
      left: -89px;
      background-image: url('/resource/images/ic-blockquote-left.png');
      background-size: contain;
      background-repeat: no-repeat;
      display: inline-block;
      width: 45px;
      height: 32px;
  }
  .respiratory-container blockquote::after {
    content: '';
    right: -89px;
    width: 45px;
    height: 32px;
    background-image: url('/resource/images/ic-blockquote-right.png');
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block
  }
  
  .respiratory-container .highlight {
    color: #1e32a3;
  }
  
  .respiratory-container h2 {
    margin: 0 0 20px 0;
    font-size: 34.5px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.1;
    letter-spacing: -1.73px;
    text-align: center;
    color: #333;
  }
  
  .respiratory-container .desc {
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: center;
    color: #333;
    margin: 0;
  }
  
  .respiratory-details {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    padding-bottom: 35px;
    z-index: 2;
    margin-bottom: 180px;
  }
  
  .respiratory-details ul {
    flex: 2;
    padding: 0;
    margin: 0;
    list-style: none;
    padding-left: 47px;
    box-sizing: border-box;
  }
  
  .respiratory-details li {
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.88;
    letter-spacing: -0.8px;
    text-align: left;
    color: #333;
    word-break: keep-all;
  }
  
  .respiratory-details .emph {
    font-weight: bold;
    color: #1e32a3;
  }
  
  .respiratory-details-deco {
      content: '';
      width: 100%;
      height: 76px;
      position: absolute;
      left: 0;
      bottom: 0;
      background-color: #e7f2f7;
      z-index: -1;
  }
  
  .respiratory-illustration {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-right: 52px;
    box-sizing: border-box;
    padding-top: 35px;
  }
  
  .respiratory-illustration img {
    max-width: 571px;
    height: auto;
    display: block;
  }
  
  .bronchoscopy-section {
    margin: 194px auto;
  }
  
  .bronchoscopy-title {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
  }
  
  .bronchoscopy-title .dot {
    width: 10px;
    height: 10px;
    background: #2563eb;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
  }
  
  .bronchoscopy-title h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin: 0;
  }
  
  .bronchoscopy-content {
    display: flex;
    gap: 51px;
    align-items: center;
    margin-top: 45px;
  }
  
  .bronchoscopy-img img {
    display: block;
  }
  
  .bronchoscopy-desc {
    flex: 1;
    min-width: 0;
  }
  
  .bronchoscopy-desc ul {
    margin: 0 0 43px 0;
    padding-left: 0;
  }
  
  .bronchoscopy-desc ul li {
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: -0.9px;
    text-align: left;
    color: #666;
    position: relative;
    padding-left: 10px;
  }
  
  .bronchoscopy-desc ul li::before {
      content: '';
      position: absolute;
      left: 0px;
      top: 17px;
      height: 3px;
      width: 3px;
      border-radius: 50%;
      background: #666;
  }
  
  .bronchoscopy-qna {
    margin-bottom: 14px;
  }
  
  .bronchoscopy-qna .qna-item {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
  }
  
  .bronchoscopy-qna .qna-item img {
      margin-right: 14px;
  }
  
  .bronchoscopy-alert {
    background: #2563eb;
    padding: 10px 26px 10px 15px;
    display: inline-block;
    border-radius: 25px;
    background-color: #018fff;
    font-family: NotoSansKR;
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #fff;
    display: flex;
    width: fit-content;
    gap: 11px;
    align-items: center;
}
  .respiratory-reason-section {
    margin: 53px auto 0 auto;
  }

  
.reason-title {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
  }
  
  .reason-title .dot {
    width: 10px;
    height: 10px;
    background: #2563eb;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
  }
  
  .reason-title h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #222;
    margin: 0;
  }
  
  .reason-list {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    /* flex-wrap: wrap; */
    align-items: center;
    /* height: 320px; */
  }
  
  .reason-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 320px;
  }

  .reason-list .reason-item:nth-child(4) {
    margin-left: -30px;
  }
  .reason-list .reason-item:nth-child(5) {
    margin-left: -50px;
  }
  
  .reason-icon {
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
      flex: 1 1 180px;
      width: 181px;
      text-align: center;
      display: flex;
      align-items: center;
      height: 181px;
      justify-content: center;
      border-radius: 50%;
      background-color: #f7f7f7;
      max-height: 181px;
      position: relative;
  }
  
  .reason-icon::before {
      content: '';
      background: url('/resource/images/resp-reason-check.png');
      width: 41px;
      height: 31px;
      background-size: contain;
      background-repeat: no-repeat;
      display: inline-block;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: -10px;
  }
  
  .reason-icon img {
  }
  
  .reason-main {
      font-size: 22px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: -1.1px;
    text-align: center;
    color: #1b30af;
  }
  
  .reason-desc {
      font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.63;
    letter-spacing: -0.8px;
    text-align: center;
    color: #666;
  }
  
  .respiratory-check-section {
    margin: 167px auto 0 auto;
  }
  
  
.check-block {
    margin-bottom: 100px;
  }
  
  .disease-block {
    margin-bottom: 195px;
  }
  
  .check-title {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
  }
  
  .check-title .dot {
    width: 10px;
    height: 10px;
    background: #2563eb;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
  }
  
  .check-title h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin: 0;
  }
  
  .check-content {
    display: flex;
    gap: 51px;
    align-items: flex-start;
    margin-top: 45px;
  }
  
  .check-img img {
    display: block;
  }
  
.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1;
  }
  
  .check-list li {
    position: relative;
    padding-left: 46px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.33;
    letter-spacing: -0.9px;
    text-align: left;
    color: #1b30af;
  }
  
  .check-list li::before {
    content: "";
    display: inline-block;
    width: 33px;
    height: 25px;
    background: url('/resource/images/resp-reason-check.png') no-repeat center/contain;
    position: absolute;
    left: 0;
    top: 2px;
  }

  .check-content.gallbladder {
    margin-bottom: 128px;
  }

  .gallbladder .check-list li {
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: -1px;
    text-align: left;
    color: #333;
    margin-bottom: 30px;
  }
  
  .check-info {
      display: flex;
      align-items: flex-start;
      border-radius: 8px;
      padding: 12px 18px;
      margin-top: 40px;
      gap: 12px;
      font-size: 18px;
      font-weight: bold;
      font-stretch: normal;
      font-style: normal;
      line-height: 1.67;
      letter-spacing: -0.9px;
      text-align: left;
      color: #018fff;
  }
  
  .check-info .info-icon {
    width: 26px;
    height: 26px;
    background: url('/resource/images/info-blue.png') no-repeat center/contain;
    display: inline-block;
    margin-top: 2px;
  }

  .diabetes-section {
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    margin-top: 55px;
  }
  
  .diabetes-container {
      text-align: center;
      border: 15px solid #f7f7f7;
      margin-bottom: 75px;
      padding: 82px 0;
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  
  .diabetes-container blockquote {
    margin: 0 0 20px 0;
    position: relative;
    font-size: 45px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: -3.15px;
    text-align: center;
    color: #000;
    width: fit-content;
  }
  
  .diabetes-container blockquote::before,
  .diabetes-container blockquote::after {
    content: '';
    position: absolute;
    top: 50%;
    margin: 0 8px;
    transform: translateY(-50%);
    display: inline-block;
  }
  .diabetes-container blockquote::before {
      left: -89px;
      background-image: url('/resource/images/ic-blockquote-left.png');
      background-size: contain;
      background-repeat: no-repeat;
      display: inline-block;
      width: 45px;
      height: 32px;
  }
  .diabetes-container blockquote::after {
    content: '';
    right: -89px;
    width: 45px;
    height: 32px;
    background-image: url('/resource/images/ic-blockquote-right.png');
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block
  }
  
  .diabetes-container .highlight {
    color: #1e32a3;
  }
  
  .diabetes-container h2 {
    margin: 0 0 50px 0;
    font-size: 34.5px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.1;
    letter-spacing: -1.73px;
    text-align: center;
    color: #333;
  }

  .diabetes-container h3 {
  font-size: 31px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -1.55px;
  text-align: center;
  color: #333;
  margin-top: 10px;
  }
  
  .diabetes-container .desc {
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: center;
    color: #333;
    margin: 0;
  }

  .diabetes-container .desc .highlight {
    font-weight: 500;
    color: #dc426a;
  }
  
  .diabetes-details {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    padding-bottom: 35px;
    z-index: 2;
    margin-bottom: 140px;
  }
  
  .diabetes-details ul {
    flex: 2;
    padding: 0;
    margin: 0;
    list-style: none;
    padding-right: 56px;
    box-sizing: border-box;
  }
  
  .diabetes-details li {
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.88;
    letter-spacing: -0.8px;
    text-align: left;
    color: #333;
    word-break: keep-all;
  }
  
  .diabetes-details .emph {
    font-weight: bold;
    color: #1e32a3;
  }
  
  .diabetes-details-deco {
      content: '';
      width: 100%;
      height: 76px;
      position: absolute;
      left: 0;
      bottom: 0;
      background-color: #e7f2f7;
      z-index: -1;
  }
  
  .diabetes-illustration {
    padding-left: 27px;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-sizing: border-box;
    
  }
  
  .diabetes-illustration img {
    max-width: 571px;
    height: auto;
    display: block;
  }

  @media screen and (max-width:1500px) {
    .diabetes-details li .mb-hide {
        display: none !important;
    }
  }

  .why-choose {
    display: flex;
    gap: 57px;
    align-items: flex-start;
    margin-top: 45px;
  }
  
  .check-img img {
    display: block;
  }
  
.why-list {
    margin: 0;
    padding: 0;
    list-style: none;
    flex: 1;
  }
  
  .why-list li {
    position: relative;
    padding-left: 46px;
    margin-bottom: 48px;
    font-size: 22px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.36;
  letter-spacing: -1.1px;
  text-align: left;
  color: #1b30af;
  }

  .why-list li:last-child {
    margin-bottom: 0;
  }

  .why-list li span {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.88;
    letter-spacing: -0.8px;
    text-align: left;
    color: #666;
  }
  
  .why-list li::before {
    content: "";
    display: inline-block;
    width: 33px;
    height: 25px;
    background: url('/resource/images/resp-reason-check.png') no-repeat center/contain;
    position: absolute;
    left: 0;
    top: 2px;
  }

  .surgery-process {
    margin: 178px 0 144px;
  }
  .surgery-process h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 24px;
  }
  .surgery-process-steps {
    display: flex;
    gap: 37px;
    justify-content: space-between;
  }
  .surgery-process-steps .step {
    flex: 1;
    text-align: left;
  }
  .surgery-process-steps .step-number {
    position: relative;
    margin-bottom: 20px;
  }
  
  .surgery-process-steps .step-number span {
      position: absolute;
      left: 1px;
      top: 1px;
      width: 47px;
      height: 50px;
      background-color: #1b30af;
      font-family: 'GMS_Bold';
      font-size: 18px;
      font-stretch: normal;
      font-style: normal;
      line-height: 1.67;
      letter-spacing: -0.9px;
      text-align: center;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .surgery-process-steps .step img {
    width: 100%;
  }
  .surgery-process-steps .step h3 {
      font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
    margin-bottom: 12px;
  }
  .surgery-process-steps .step p {
      font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.88;
    letter-spacing: -0.8px;
    text-align: left;
    color: #666;
    word-break: keep-all;
  }


  .hernia-info-section {
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    margin-top: 55px;
  }
  
  .hernia-info-container {
      text-align: center;
      border: 15px solid #f7f7f7;
      margin-bottom: 75px;
      padding: 82px 0;
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  
  .hernia-info-container blockquote {
    margin: 0;
    position: relative;
    font-size: 45px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: -3.15px;
    text-align: center;
    color: #000;
    width: fit-content;
  }
  
  .hernia-info-container blockquote::before,
  .hernia-info-container blockquote::after {
    content: '';
    position: absolute;
    top: 50%;
    margin: 0 8px;
    transform: translateY(-50%);
    display: inline-block;
  }
  .hernia-info-container blockquote::before {
      left: -89px;
      background-image: url('/resource/images/ic-blockquote-left.png');
      background-size: contain;
      background-repeat: no-repeat;
      display: inline-block;
      width: 45px;
      height: 32px;
  }
  .hernia-info-container blockquote::after {
    content: '';
    right: -89px;
    width: 45px;
    height: 32px;
    background-image: url('/resource/images/ic-blockquote-right.png');
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block
  }
  
  .hernia-info-container .highlight {
    color: #1e32a3;
  }
  
  .hernia-info-container h2 {
    margin: 0 0 20px 0;
    font-size: 34.5px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.1;
    letter-spacing: -1.73px;
    text-align: center;
    color: #333;
  }
  
  .hernia-info-container .desc {
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: center;
    color: #333;
    margin: 0;
  }

  .hernia-info-container .desc .highlight {
    font-weight: 500;
    color: #dc426a;
  }
  
  .hernia-info-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    padding-bottom: 35px;
    z-index: 2;
    margin-bottom: 140px;
  }
  
  .hernia-info-details ul {
    flex: 2;
    padding: 0;
    margin: 0;
    list-style: none;
    padding-right: 56px;
    box-sizing: border-box;
  }
  
  .hernia-info-details li {
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.88;
    letter-spacing: -0.8px;
    text-align: left;
    color: #333;
    word-break: keep-all;
  }
  
  .hernia-info-details .emph {
    font-weight: bold;
    color: #1e32a3;
  }
  
  .hernia-info-details-deco {
      content: '';
      width: 100%;
      height: 76px;
      position: absolute;
      left: 0;
      bottom: 0;
      background-color: #e7f2f7;
      z-index: -1;
  }
  
  .hernia-info-illustration {
    padding-left: 27px;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-sizing: border-box;
    
  }
  
  .hernia-info-illustration img {
    max-width: 571px;
    height: auto;
    display: block;
  }

  @media screen and (max-width:1500px) {
    .hernia-info-details li .mb-hide {
        display: none !important;
    }
  }

  .hernia-definition-section {
    width: 100%;
    padding: 0 0 190px 0;
    display: flex;
    justify-content: center;
  }
  
  .hernia-definition-inner {
    width: 1333px;
    display: flex;
    align-items: center;
    gap: 77px;
  }
  
  .hernia-definition-left {
    flex: 0 0 613px;
  }
  
  .hernia-definition-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 7px;
  }
  
  .hernia-definition-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #1a3dc1;
    border-radius: 50%;
    margin-right: 2px;
  }
  
  .hernia-definition-image img {
    width: 100%;
    max-width: 613px;
    display: block;
  }
  
  .hernia-definition-right {
    flex: 1;
  }
  
  .hernia-definition-desc {
      font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.65;
    letter-spacing: -1px;
    text-align: left;
    color: #666;
    margin-bottom: 57px;
  }
  
  .hernia-definition-desc-blue {
      font-weight: bold;
      color: #1b30af;
  }
  
  .hernia-definition-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .hernia-definition-list li {
      font-size: 22px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.18;
    letter-spacing: -1.1px;
    text-align: left;
    color: #1b30af;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
  }
  
  .hernia-definition-check {
    display: inline-block;
    width: 33px;
    height: 25px;
    margin-right: 17px;
    background: url('/resource/images/hernia-definition-check.png') no-repeat center center / contain;
    /* check_icon.svg는 파란 체크 아이콘 SVG로 교체 */
  }

  
.symptoms-section {
    width: 100%;
    padding: 0 0 132px 0;
    background: #fff;
    text-align: center;
    font-family: 'Noto Sans KR', sans-serif;
  }
  
  .symptoms-title {
      font-size: 34.5px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.87;
    letter-spacing: -1.73px;
    text-align: center;
    color: #333;
    margin-bottom: 26px;
  }
  
  .symptoms-list {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-bottom: 48px;
  }
  
  .symptom-item {
    background: #fafbfc;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .symptom-icon {
      width: 56px;
      height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 30px;
    left: 10px;
  }
  .symptom-bg-darkblue {
    background: #1e32a4;
  }
  .symptom-bg-blue {
    background: #1786ba;
  }
  .symptom-icon img {
    width: 32px;
    height: 32px;
  }
  
  .symptom-desc {
      font-size: 22.5px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: -1.13px;
    text-align: center;
    color: #333;
  }
  
  .symptoms-bottom {
    margin-top: 18px;
  }
  
  .symptoms-bottom-quote {
      font-family: iceJaram-Rg;
    font-size: 57.5px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.62;
    letter-spacing: -2.88px;
    text-align: center;
    color: #1b30af;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 13px;
    flex-direction: column;
  }
  .symptoms-pin {
    width: 40px;
    height: 54px;
  }
  
  .symptoms-bottom-quote span {
      font-family: iceJaram-Rg;
    font-size: 57.5px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.62;
    letter-spacing: -2.88px;
    text-align: center;
    color: #1b30af;
  }
  
  .symptoms-bottom-desc {
      font-size: 24.5px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.61;
    letter-spacing: -1.23px;
    text-align: center;
    color: #666;
  }
  
  .hernia-surgery-section {
    width: 100%;
    padding: 70px 0 140px 0;
    display: flex;
    justify-content: center;
  }
  
  .hernia-surgery-inner {
    width: 1333px;
    margin: 0 auto;
  }
  
  .hernia-surgery-title {
      font-family: NotoSansKR;
    font-size: 34px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.85;
    letter-spacing: -1.7px;
    text-align: center;
    color: #333;
    margin-bottom: 32px;
  }
  
  .hernia-surgery-desc {
      font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.65;
    letter-spacing: -1px;
    text-align: center;
    color: #666;
    margin-bottom: 143px;
  }
  
  .hernia-surgery-subtitle {
      font-size: 34.5px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.87;
    letter-spacing: -1.73px;
    text-align: center;
    color: #333;
    margin-bottom: 39px;
  }
  
  .hernia-surgery-methods {
    display: flex;
    justify-content: center;
    gap: 37px;
  }
  
  .hernia-surgery-method {
      width: 420px;
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  
  .hernia-surgery-method-img {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
  }
  .hernia-surgery-method-img img {
    width: 100%;
    max-width: 420px;
    display: block;
  }
  .hernia-surgery-method-num {
      position: absolute;
      top: 0;
      left: 0;
      width: 47px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      font-size: 20px;
      font-weight: bold;
      font-stretch: normal;
      font-style: normal;
      line-height: 1.5;
      letter-spacing: -1px;
      text-align: center;
      color: #fff;
  }

  
.num-blue {
    background: #1b30af;
  }
  
  .hernia-surgery-method-label {
      font-family: NotoSansKR;
    font-size: 22px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: -1.1px;
    text-align: left;
    color: #333;
    width: 100%;
  }

.label-blue {
    color: #1a3dc1;
  }
  
  .hernia-surgery-method-desc {
      font-family: NotoSansKR;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.88;
    letter-spacing: -0.8px;
    text-align: left;
    color: #666;
    margin-top: 20px;
    text-align: left;
    width: 100%;
  }
  
  .hernia-surgery-method-desc img {
      margin-right: 7px;
  }
  
  .hernia-surgery-method-desc b {
      font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.88;
    letter-spacing: -0.8px;
    text-align: left;
    color: #333;
  }
  
  
.hospital-reason-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 120px;
  }
  
  .hospital-reason-inner {
    width: 1333px;
    margin: 0 auto;
  }
  
  
  .hospital-reason-cards {
    display: flex;
    gap: 23px;
  }
  
  .hospital-reason-card {
    flex: 1;
    background-size: cover;
    background-position: center;
    width: 316px;
    height: 324px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    min-width: 0;
  }
  
  .hospital-reason-overlay {
    width: 100%;
    background: rgba(34, 34, 34, 0.4);
    text-align: left;
    height: 90px;
    position: absolute;
    left: 0;
    bottom: 0;
    box-sizing: border-box;
    font-family: NotoSansKR;
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.44;
    letter-spacing: -0.9px;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

     /* 메인 섹션 */
.emergency-surgery-section {
    position: relative;
    height: 507px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('/resource/images/hospital-background.png'); /* 배경 이미지 경로 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    margin-top: 100px;
}

/* 콘텐츠 영역 */
.emergency-surgery-section .content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.emergency-surgery-section .content small {
    font-family: Pretendard;
  font-size: 20px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 10px;
  text-align: left;
  color: #fff;
    margin-top: 20px;
}



.emergency-surgery-section .main-title {
    font-family: NotoSansKR;
  font-size: 55px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -3.85px;
  text-align: center;
  color: #fff;
  margin-top: 43px;
}

.emergency-surgery-section .content span {
    margin-top: 20px;
    display: block;
    text-align: center;
    font-family: Pretendard;
  font-size: 36.5px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.37px;
  text-align: center;
  color: #fff;
}

.what-emergency-surgery-section .subtitle {
    font-family: NotoSansKR;
  font-size: 45px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -2.25px;
  text-align: center;
  color: #1e32a4;
  margin-top: 100px;
}

.what-emergency-surgery-section .subtitle b {
    color: #000;
    font-weight: bold;
}

.what-emergency-surgery-section {
    display: flex;
    flex-direction: column;
}

.what-emergency-surgery-section .desc {
    margin-top: 23px;
    margin-bottom: 38px;
    font-size: 28px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.57;
  letter-spacing: -1.4px;
  text-align: center;
  color: #000;
}

.what-emergency-surgery-section small {
    font-family: NotoSansKR;
  font-size: 18px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: -0.9px;
  text-align: center;
  color: #333;
  display: block;
}

/* 동그라미 3개 영역 */
.what-emergency-surgery-section .feature-circles {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    flex-wrap: wrap;
    margin: 100px auto;
    width: 846px;
}

.emergency-circle-item {
    position: relative;
    width: 282px;
    height: 282px;
    background-image: linear-gradient(to bottom, #182a89, #0b1949);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    box-sizing: border-box;
}

.emergency-circle-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -35px;
    z-index: 2;
}

.what-emergency-surgery-section .plus-icon {
    width: 71px;
    height: 71px;
}

.emergency-circle-item h3 {
    margin-top: 45px;
    font-family: Pretendard;
  font-size: 32px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: -1.6px;
  text-align: center;
  color: #fff;
    position: relative;
}

.emergency-circle-item h3::before {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 178px;
    height: 1px;
    opacity: 0.3;
    background-color: #fff;
    content: '';

}

.emergency-circle-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}


.dementia-banner {
    width: 100%;
    margin: 54px auto;
    min-height: 315px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #172683;
    /*background: url('banner-bg.png') center center / cover no-repeat;*/
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 54px 0 86px;
    position: relative;
}

.banner-text {
    color: #fff;
    flex: 1 1 0;
    z-index: 1;
}

.banner-text h2 {
    font-family: 'GMS_Light';
  font-size: 55px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.16;
  letter-spacing: -2.75px;
  text-align: left;
  color: #fff;
    margin-bottom: 37px;
}

.banner-text .point {
    color: #fff; /* 강조 색상 */
    font-family: 'GMS_Medium';
}

.banner-text p {
    font-size: 22px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.64;
  letter-spacing: -1.1px;
  text-align: left;
  color: #a9f0ff;

}

.banner-illust {
    flex: 0 0 551px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 258px;
    position: absolute;
    bottom: 0;
    right: 54px;
}

.banner-illust img {
    height: 100%;
    max-width: 551px;
    object-fit: contain;
}


.dementia-checkup-section {
    margin: 126px auto;
}

.dementia-checkup-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 46px;
}

.dementia-checkup-card {
    flex: 1;
    min-width: 649px;
    height: 191px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.dementia-checkup-card.bg1 {
    background-image: url('/resource/images/img-diabetes-doctor-bg.png');
}

.dementia-checkup-card.bg2 {
    background-image: url('/resource/images/img-diabetesonestop-bg.png');
}

.dementia-checkup-card .card-title,
.dementia-checkup-card .card-desc {
    position: relative;
    z-index: 1;
}

.dementia-checkup-card .card-title {
    font-size: 26px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: -1.3px;
  text-align: left;
  color: #fff;
    margin-bottom: 14px;
}

.dementia-checkup-card .card-desc {
    font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: -0.9px;
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
}

.dementia-checkup-table-wrap {
    margin-bottom: 30px;
    overflow-x: auto;
}

.dementia-checkup-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 0.98rem;
}

.dementia-checkup-table th {
    border: 1px solid #e0e0e0;
    padding: 13px 10px;
    text-align: left;
}

.dementia-checkup-table td {
    border: 1px solid #e0e0e0;
    padding: 0px 10px;
    text-align: left;
}

.dementia-checkup-table tr th:first-child,
.dementia-checkup-table tr td:first-child {
    border-left: 0;
}

.dementia-checkup-table tr th:nth-child(2),
.dementia-checkup-table tr td:nth-child(2) {
    border-right: 0;
}

.dementia-checkup-table th {
    background: #efefef;
    font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: -0.9px;
  text-align: center;
  color: #333;
    border-top: 1px solid #000;
}

.dementia-checkup-table tr td:first-child {
    font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 3.33;
  letter-spacing: -0.9px;
  text-align: center;
  color: #333;
}

.dementia-checkup-table tr td:nth-child(2) {
    font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 3.33;
  letter-spacing: -0.9px;
  text-align: center;
  color: #333;
}

.dementia-checkup-info {
    background: #f4fafd;
    font-size: 26px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: -1.3px;
  text-align: center;
  color: #1b30af;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 119px;
}

.dementia-checkup-info .check {
    color: #2a4dbb;
    font-size: 1.2rem;
    margin-right: 6px;
}


.dementia-unique-wrap {
    display: flex;
    align-items: center;
    margin: 100px auto;
    box-sizing: border-box;
}

.dementia-unique-img-area {
    flex: 0 0 620px;
    max-width: 620px;
    margin-right: 108px;
}

@media screen and (max-width:1500px) { 
    .dementia-unique-img-area {
        flex: 0 0 620px;
        max-width: 620px;
        margin-right: 50px;
    }
}

.dementia-unique-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.dementia-unique-text-area {
  flex: 1;
}

.dementia-unique-title {
    font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.28;
  letter-spacing: -1.8px;
  text-align: left;
  color: #333;
  margin-bottom: 48px;
}

.dementia-unique-title b {
    font-weight: bold;
    color: #1e32a4;
}

.dementia-unique-title .highlight {
    font-weight: bold;
    color: #1e32a4;
}

.dementia-unique-title p {
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: -0.8px;
    text-align: left;
    color: #333;
    margin-top: 22px;
}

.dementia-unique-highlight {
    font-weight: bold;
    color: #1e32a4;
    position: relative;
    display: inline-block;
}

.dementia-unique-highlight::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    width: 5px;
    height: 5px;
    background: #1e32a4;
    border-radius: 50%;
}

.dementia-unique-desc {
    font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.88;
  letter-spacing: -0.8px;
  text-align: left;
  color: #333;
}

.dementia-unique-desc b {
    color: #eb3346; 
}

.braincheck-section {
    margin: 0 auto 140px;
  }
  
  .braincheck-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .braincheck-title-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #2962ff;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
  }
  
  .braincheck-features {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 90px;
    flex-wrap: wrap;
    margin-top: 70px;
  }
  
  .braincheck-feature {
      flex: 1 1 0;
      min-width: 180px;
      max-width: 200px;
      text-align: center;
      margin: 0;
      align-items: center;
      justify-content: center;
      display: flex;
      flex-direction: column;
  }
  
  .braincheck-icon-circle {
      width: 180px;
      height: 180px;
      margin: 0 auto 32px auto;
      background: #f7f7f7;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .braincheck-icon-img {
    object-fit: contain;
    display: block;
  }
  
  .braincheck-feature-title {
      font-size: 22px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: -1.1px;
    text-align: left;
    color: #333;
    margin-bottom: 30px;
  }

  .braincheck-feature-title .light {
    font-weight: 400;
  }
  
  .braincheck-feature-desc {
      font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.63;
    letter-spacing: -0.8px;
    text-align: center;
    color: #666;
  }
  
  .braincheck-feature-desc strong {
    font-weight: bold;
  }
  
  .braincheck-bottom-box {
      background: #f4fafd;
      font-size: 26px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: -1.3px;
    text-align: center;
    color: #1b30af;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      height: 119px;
  }

  
.coop-nyg-wrap {
    display: flex;
    align-items: flex-start;
    margin: 40px auto 150px;
    gap: 107px;
  }
  
  .coop-nyg-left {
    flex: 1 1 0;
    min-width: 620px;
  }
  
  .coop-nyg-dot {
    display: inline-block;
    width: 3px;
    height: 3px;
    background: #333;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
  }
  
  .coop-nyg-img-area {
    position: relative;
    width: 100%;
    max-width: 620px;
    aspect-ratio: 620/333;
    margin-bottom: 0;
  }
  
  .coop-nyg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .coop-nyg-right {
    flex: 1.2 1 0;
    padding-top: 32px;
  }
  
  .coop-nyg-desc {
      font-size: 28px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: -1.4px;
    text-align: left;
    color: #333;
    margin-bottom: 44px;
  }
  
  .coop-nyg-highlight {
      font-weight: bold;
      color: #1b30af;
  }
  
  .coop-nyg-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .coop-nyg-list li {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.88;
    letter-spacing: -0.8px;
    text-align: left;
    color: #333;
    padding-left: 10px;
  }
  
  .coop-nyg-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 2px;
    height: 2px;
    background: #333;
    border-radius: 50%;
  }

  .emergency-abdomen-section {
    background: #fff;
    padding: 180px 0 65px 0;
}

.emergency-abdomen-container {
margin: 0 auto;
border: 15px solid #f7f7f7;
position: relative;
padding-bottom: 90px;
}

.emergency-abdomen-top {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 145px;
position: relative;
padding-top: 170px;
}

.emergency-abdomen-top img {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
}

.abdomen-illust {
height: auto;
margin-bottom: 40px;
position: absolute;
top: -130px;
width: 439px;
}

.emergency-abdomen-title .subtitle {
font-family: iceJaram-Rg;
font-size: 76.5px;
font-weight: normal;
font-stretch: normal;
font-style: normal;
line-height: 1.54;
letter-spacing: -2.3px;
text-align: center;
color: #000;
}

.emergency-abdomen-title .main-title {
font-size: 45px;
font-weight: bold;
font-stretch: normal;
font-style: normal;
line-height: 1.54;
letter-spacing: -3.15px;
text-align: center;
color: #000;
margin-bottom: 10px;
}

.emergency-abdomen-title .main-title .highlight {
color: #1e32a4;
}

.emergency-abdomen-title .desc {
font-size: 34.5px;
font-weight: normal;
font-stretch: normal;
font-style: normal;
line-height: 1.2;
letter-spacing: -1.73px;
text-align: center;
color: #333;
margin-bottom: 0;
position: relative;
}

.emergency-abdomen-title .desc::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -100px;
    width: 1px;
    height: 50px;
    background-color: #d9d9d9;
    content: '';
}

.emergency-abdomen-question {
font-size: 38px;
font-weight: bold;
font-stretch: normal;
font-style: normal;
line-height: 0.79;
letter-spacing: -1.9px;
text-align: left;
color: #1c30af;
margin: 0 0 50px 0;
text-align: center;
}

.emergency-abdomen-compare {
display: flex;
align-items: center;
justify-content: center;
gap: 24px;
margin-bottom: 0;
}


.compare-box.left {
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    width: 498px;
    height: 498px;
    padding: 17px;
    border: solid 7px #f3f9ff;
    background-color: #e8f3ff;
}

.compare-box.right {
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    width: 410px;
    height: 410px;
    padding: 17px;
    background-color: #f8f9fb;
}

.compare-box .compare-icon img {
    width: 90px;
    height: 89px;
  margin-bottom: 17px;
}

.compare-box.right .compare-icon img {
    width: 110px;
    height: 76px;
    margin-bottom: 19px;
}

.compare-title {
    font-size: 26px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: -1.3px;
  text-align: center;
  color: #333;
  margin-bottom: 44px;
}

.compare-main.blue {
    font-size: 36px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.83;
  letter-spacing: -1.8px;
  text-align: center;
  color: #1c30af;
  margin-bottom: 28px;
  font-family: 'GMS_Medium';
}

.compare-main.gray {
    font-size: 36px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.83;
  letter-spacing: -1.8px;
  text-align: center;
  color: #000;
  margin-bottom: 25px;
  font-family: 'GMS_Medium';
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-list li {
    font-size: 26px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.38;
  letter-spacing: -1.3px;
  text-align: center;
  color: #333;
  margin-bottom: 4px;
}

.compare-list.gray li {
    font-size: 24px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.42;
  letter-spacing: -1.2px;
  text-align: center;
  color: #666;
  margin-bottom: 4px;
}

.compare-vs {
    font-size: 50px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.6;
  letter-spacing: normal;
  text-align: center;
  color: #b7b7b7;
  margin: 0 10px;
  font-family: 'GMS_Medium';
}


.emergency-surgery-section2 {
    position: relative;
    height: 468px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('/resource/images/img-hospital-bg.png'); /* ë°°ê²½ ì´ë¯¸ì§€ ê²½ë¡œ */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    margin-top: 0;
    margin-bottom: 130px;
}

/* ì½˜í…ì¸  ì˜ì—­ */
.emergency-surgery-section2 .content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.emergency-surgery-section2 .content small {
    font-family: Pretendard;
  font-size: 20px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 10px;
  text-align: left;
  color: #fff;
}

.emergency-surgery-section2 .main-title {
    font-family: NotoSansKR;
    font-size: 38.5px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -2.7px;
  text-align: center;
  color: #fff;
  margin-top: 34px;
}

.emergency-surgery-section2 .content .date {
    margin-top: 0px;
    display: block;
    text-align: center;
    font-family: Pretendard;
  font-size: 36.5px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.37px;
  text-align: center;
  color: #fff;
}


.surgery-banner-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 70px;
    flex-wrap: wrap;
  }
  
  .surgery-feature {
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 58px;
      background-image: linear-gradient(to right, #182a89, #0b1949);
      gap: 12px;
      min-width: 386px;
      height: 116px;
      box-sizing: border-box;
      padding: 0 37px;
      position: relative;
  }
  
  .surgery-feature p {
      font-size: 30px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: -1.2px;
    text-align: left;
    color: #fff;
  }
  
  .surgery-feature-icon {
    width: 32px;
    height: 32px;
    display: block;
  }
  
  .surgery-feature-plus {
    width: 28px;
    height: 28px;
    display: block;
  }

  .emergency-circle-icon2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -26px;
    z-index: 2;
}

.emergency-surgery-types-section {
  background: #fff;
  padding: 15px 0 130px 0;
}

.emergency-surgery-types-container {
  margin: 0 auto;
}

.emergency-surgery-question-box {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  height: 79px;
  background-color: #f9f9fa;
}

.question-bubble-img {
    width: 132px;
    height: auto;
    position: absolute;
    top: -30px;
    left: 385px;
}

.question-text {
    font-size: 26px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: -1.3px;
  text-align: center;
  color: #1c30af;
}

.emergency-surgery-cards {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.emergency-surgery-card {
  color: #fff;
  flex: 1 1 0;
  min-width: 200px;
  max-width: 320px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  border: 1px solid #d9d9d9;
}

.emergency-surgery-card .card-title {
    gap: 4px;
    height: 60px;
    background-color: #1c30af;
    font-size: 22px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: -1.1px;
    text-align: left;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-surgery-card .card-title.light {
    background-color: #1786ba;
}

.emergency-surgery-card .card-title img {
    width: 23px;
  height: 17px;
  margin-right: 15px;
}

.emergency-surgery-card .card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 23px 28px 28px;
}

.emergency-surgery-card .card-list li {
    font-size: 18px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: -0.9px;
  text-align: left;
  color: #333;
  margin-bottom: 7px;
  position: relative;
  padding-left: 10px;
}

.emergency-surgery-card .card-list li::before {
    position: absolute;
    content: '';
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: #333;
    top: 15px;
    left: 0;
}

.emergency-safety-section {
    padding-bottom: 140px;
}

.emergency-safety-container {
  margin: 0 auto;
}

.emergency-safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 17px;
}

.emergency-safety-item {
  background: #fff;
  overflow: hidden;
  border-top: 1px solid #d9d9d9;
  padding-top: 40px;
}

.safety-item-title {
    font-size: 22px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.36;
  letter-spacing: -1.1px;
  color: #1c30af;
  margin: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.safety-item-image {
  width: 100%;
  height: 189px;
  overflow: hidden;
}

.safety-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.recovery-process-section {
    padding-bottom: 130px;
}

.recovery-process-container {
  margin: 0 auto;
}

.recovery-process-content {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
}

.recovery-process-box {
    flex: 1;
    border: 1px solid #d9d9d9;
    overflow: hidden;
    display: flex;
}


.recovery-process-header {
    font-size: 22px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: -1.1px;
    text-align: left;
    color: #1c30af;
    /* padding: 20px; */
    text-align: center;
    border-right: solid 1px #d9d9d9;
    background-color: #f4fafd;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 304px;
    min-width: 304px;
}

.recovery-process-body {
    background: #fff;
    padding: 42px 50px;
    width: calc(100% - 304px);
}

.recovery-process-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recovery-process-list li {
    position: relative;
    padding-left: 7px;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.63;
    letter-spacing: -0.8px;
    text-align: left;
    color: #333;
}

.recovery-process-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 2px;
    height: 2px;
    background: #333;
    border-radius: 50%;
}

.recovery-process-list li:last-child {
  margin-bottom: 0;
}


.testimonial-section {
    width: 100%;
    background-color: #f9f9fa;
    margin: 50px 0 130px;
  }
  
  .testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
  }
  
  .testimonial-dot {
    width: 10px;
    height: 10px;
    background-color: #007bff;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
  }
  
  .testimonial-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.4;
  }
  
  .testimonial-content {
   position: relative;
   height: 189px;
  }
  
  .testimonial-character img {
    width: 135px;
    height: auto;
    display: block;
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 193px;
  }
  
  .testimonial-bubble {
    flex-grow: 1;
    position: absolute;
    width: 839px;
    height: auto;
    left: 347px;
    top: -17px;
  }

  

.bubble-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
  }
  
  .bubble-text {
    position: absolute;
    top: 20px;
    left: 40px;
    right: 30px;
    bottom: 35px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .testimonial-quote {
      font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.44;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
    margin: 0;
    flex-grow: 1;
  }
  
  .author-details {
      font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.88;
    letter-spacing: -0.8px;
    text-align: left;
    color: #666;
  }

  

.severe-patient-section {
    padding-bottom: 137px;
}

.severe-patient-container {
  margin: 0 auto;
}

.severe-patient-main {
  display: flex;
  gap: 100px;
  margin-bottom: 93px;
  align-items: center;
}


.hospital-image-area {
    flex: 1;
    position: relative;
    min-height: 333px;
  }
  
  .hospital-image {
    width: 100%;
    height: 333px;
    object-fit: cover;
    display: block;
  }
  
  .medical-network-info {
    flex: 1;
    padding: 20px;
  }
  
  .network-title {
      font-size: 36px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: -1.8px;
    text-align: left;
    color: #1c30af;
    margin: 0 0 32px 0;
  }
  
  .network-description {
      font-size: 26px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.54;
    letter-spacing: -1.3px;
    text-align: left;
    color: #333;
  }
  
  .feature-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .feature-box {
      background: #fff;
      text-align: center;
      border: solid 1px #d9d9d9;
      height: 183px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      flex-direction: column;
      position: relative;
      padding-top: 78px;
      box-sizing: border-box;
  }
  
  .feature-icon {
      width: 92px;
    height: 92px;
    background-color: #1c30af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -41px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .feature-icon img {
    display: block;
  }
  
  .feature-title2 {
      font-size: 22px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: -1.1px;
    text-align: center;
    color: #333;
    margin: 0 0 10px 0;
  }
  
  .feature-subtitle {
      font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: center;
    color: #333;
    margin: 0;
  }

  .hospital-features-container {
    margin: 0 auto;
    margin-bottom: 150px;
}

.hospital-features-container .features-grid {
    display: flex;
    gap: 20px;
    margin-top: -10px;
}

.hospital-features-container .feature-card {
    background: white;
    width: calc(100% / 3 - 40px / 3);
}

.hospital-features-container .card-image {
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

    .hospital-features-container .card-content {
        display: flex;
align-items: flex-start;
gap: 30px;
    }

    .hospital-features-container .card-number {
        font-family: 'GMS_Bold';
font-size: 38px;
font-weight: bold;
font-stretch: normal;
font-style: normal;
letter-spacing: -1.9px;
text-align: center;
color: #1e32a4;
    }

    .hospital-features-container .card-text {
font-size: 16px;
font-weight: 400;
font-stretch: normal;
font-style: normal;
line-height: 1.63;
letter-spacing: -0.8px;
text-align: left;
color: #333;
word-break: keep-all;
    }

    .headache-container {
        background: linear-gradient(180deg, #1b2fa0 0%, #134cab 50%, #1b2fa0 100%);
        margin: 0 auto;
        margin-bottom: 140px;
        padding: 74px 33px 24px;
        box-sizing: border-box;
    }

    .headache-container .main-title {
        font-family: 'GMS_Bold';
        margin-bottom: 20px;
font-size: 55px;
font-weight: bold;
font-stretch: normal;
font-style: normal;
line-height: 1.16;
letter-spacing: -2.75px;
text-align: left;
color: #fff;
text-align: center;
    }

    .headache-container .subtitle {
        font-size: 22px;
font-weight: normal;
font-stretch: normal;
font-style: normal;
line-height: 1.64;
letter-spacing: -1.1px;
text-align: center;
color: #fff;
margin-bottom: 70px;
    }

    /* 메인 콘텐츠 영역 */
    .headache-container .main-content {
        position: relative;
        margin-bottom: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* 하단 정보 영역 */
    .headache-container .footer-section {
        width: 100%;
        height: 89px;
        background-color: #f4fafd;
        display: flex;
        align-items: center;
        justify-content: center;;
        gap: 13px;
    }

    .headache-container .check-icon {
        width: 33px;
        height: auto;
                display: flex;
        align-items: center;
        justify-content: center;
    }

    .headache-container .footer-text {
        font-size: 26px;
font-weight: bold;
font-stretch: normal;
font-style: normal;
line-height: 1.15;
letter-spacing: -1.3px;
text-align: left;
color: #1b2fa0;
    }

    
.process-container {
    margin: 0 auto;
    margin-bottom: 130px;
}

/* 상단 질문 영역 */
.process-container .question-section {
    text-align: center;
    margin-bottom: 50px;
}

.process-container .question-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #4A90E2;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

.process-container .question-text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    display: inline-block;
    vertical-align: middle;
}

/* 프로세스 스텝 영역 */
.process-container .process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.process-container .headache-process-step {
    height: 88px;
    font-size: 22px;
font-weight: normal;
font-stretch: normal;
font-style: normal;
line-height: 1.91;
letter-spacing: -1.1px;
text-align: left;
color: #fff;
    text-align: center;
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* 각 스텝별 색상 */
.process-container .step-1 {
    border-radius: 44px;
    background-color: #1b30af;
}

.process-container .step-2 {
    border-radius: 44px;
background-color: #1062c7;
}

.process-container .step-3 {
    border-radius: 44px;
    background-color: #1490c4;
}

.process-container .step-4 {
    border-radius: 44px;
background-color: #0bbcba;
}

 /* 화살표 아이콘 */
 .process-container .arrow-icon {
    width: 72px;
    height: 72px;
    position: absolute;
    right: -36px;
    top:50%;
    transform: translateY(-50%);
    z-index: 1;
}

       
.headache-device-banner {
    width: 100%;
    margin: 30px auto 170px;
    min-height: 333px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/resource/images/headache-device-bg.png') center center / cover no-repeat;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}

.headache-device-banner .banner-text {
    color: #fff;
    z-index: 1;
}

.headache-device-banner .banner-text h2 {
    font-size: 26px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.54;
  letter-spacing: -1.3px;
  text-align: center;
  color: #fff;
  font-family: NotoSansKR;
  margin-bottom: 0;
}


.clinic-risk-timeline {
    margin: 0 auto;
}

.clinic-risk-timeline p {
    font-size: 19.5px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.51;
    letter-spacing: -0.98px;
    text-align: left;
    color: #1b30af;
    margin-bottom: 15px;
    padding-left: 24px;
}

/* 타임라인 영역 */
.clinic-timeline-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

/* 스테이지 블록 */
.clinic-timeline-stage.stage-1, 
.clinic-timeline-stage.stage-2 {
    flex: 1;
    width: 26%;
    position: relative;
}

.clinic-timeline-stage.stage-3 {
    width: 48%;
}

.clinic-stage-block {
    border-radius: 44px;
    background-color: #1b30af;
    font-size: 22px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.91;
    letter-spacing: -1.1px;
    text-align: left;
    color: #fff;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clinic-stage-block b {
    font-weight: bold;
}

.clinic-timeline-stage.stage-2 .clinic-stage-block {
    background-color: #1062c7;
}

.clinic-timeline-stage.stage-3 .clinic-stage-block {
    background-color: #1490c4;
}


/* 시계 아이콘 */
.clinic-clock-connector {
    position: absolute;
    right: -36px;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
}

.clinic-clock-connector img {
    width: 72px;
    height: 72px;
}

.box-possible-appendicitis {
    width: 100%;
    height: 119px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 32px 0 111px;
    background-color: #fdfcf4;
    gap: 18px;
}

.box-possible-appendicitis span {
    font-size: 25.5px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.16;
    letter-spacing: -1.28px;
    text-align: left;
    color: #eb3346;
}

.box-possible-appendicitis span b {
    font-weight: bold;
}

.box-possible-appendicitis.flex {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 46px 0;
}

.box-possible-appendicitis small {
    font-family: NotoSansKR;
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.64;
    letter-spacing: -0.9px;
    text-align: center;
    color: #333;
    margin-top: 12px;
    display: block;
}

.clinic-appendicitis-container {
    margin: 0 auto;
    margin-top: 124px;
}

  /* 섹션 공통 스타일 */
  .clinic-section {
    margin-bottom: 140px;
}

/* 진단 섹션 */
.clinic-diagnosis-grid {
    display: flex;
    gap: 20px;
}

.clinic-diagnosis-item {
    text-align: center;
}

.clinic-diagnosis-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    margin-bottom: 7px;
}

.clinic-diagnosis-text {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    background-color: #f9f9fa;
    font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.63;
    letter-spacing: -0.8px;
    text-align: left;
    color: #333;
}

.clinic-diagnosis-text b {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: -0.9px;
    color: #1b30af;
}

 /* 치료 섹션 */
 .clinic-treatment-content {
    display: flex;
    gap: 95px;
    align-items: center;
}

@media screen and (max-width:1500px) {
    .clinic-treatment-content br.mb-hide {
        display: none !important;
    }
}

.clinic-treatment-image {
    flex: 1;
    max-width: 620px;
}

.clinic-treatment-image img {
    width: 100%;
    height: 347px;
    object-fit: cover;
}

.clinic-treatment-text {
    flex: 1;
}

.clinic-treatment-main-title {
    font-size: 36px;
font-weight: bold;
font-stretch: normal;
font-style: normal;
line-height: 0.72;
letter-spacing: -1.8px;
text-align: left;
color: #1b30af;
    margin-bottom: 30px;
}

.clinic-treatment-description {
    font-size: 16px;
font-weight: 400;
font-stretch: normal;
font-style: normal;
line-height: 1.75;
letter-spacing: -0.8px;
text-align: left;
color: #333;
}

.clinic-treatment-quote {
    font-family: "Noto Serif KR", serif;
font-size: 26px;
font-weight: 200;
font-stretch: normal;
font-style: normal;
line-height: 1.08;
letter-spacing: -1.3px;
text-align: left;
color: #333;
margin-top: 60px;
}

.clinic-treatment-red {
    font-size: 14px;
    margin-top: 36px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.71;
    letter-spacing: -0.7px;
    text-align: left;
    color: #f01414;
}

.clinic-appendicitis-banner {
    background-image: url('/resource/images/appendicitis-banner.png'); /* 배경 이미지 경로를 여기에 넣으세요 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 347px;
    display: flex;
    align-items: center;
    padding-left: 90px;
    position: relative;
    margin-bottom: 97px;
}

  
.clinic-banner-container {
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* 텍스트 영역 */
.clinic-banner-content {
    flex: 2;
    color: #fff;
}

.clinic-banner-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #fff;
}

.clinic-banner-list {
    list-style: none;
}

.clinic-banner-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 27px;
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #fff;
    color: #fff;
}

.clinic-banner-list li:last-child {
    margin-bottom: 0;
}

/* 체크마크 아이콘 */
.clinic-banner-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 33px;
    height: 25px;
    background-image: url('/resource/images/checkmark-icon.png'); /* 체크마크 이미지 경로를 여기에 넣으세요 */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* 이미지 영역 */
.clinic-banner-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clinic-banner-image img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
}

.clinic-gallbladder-banner {
    background-image: url('/resource/images/gallbladder-banner.png'); /* 배경 이미지 경로를 여기에 넣으세요 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 347px;
    display: flex;
    align-items: center;
    padding-left: 60px;
    position: relative;
    margin-bottom: 97px;
}


/* 텍스트 영역 */
.clinic-gallbladder-content {
    flex: 2;
    color: #fff;
}

.clinic-gallbladder-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #fff;
}

.clinic-gallbladder-list {
    list-style: none;
}

.clinic-gallbladder-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 27px;
    font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: -1.2px;
  text-align: left;
  color: #fff;
    text-align: left;
    color: #fff;
}

.clinic-gallbladder-list li small {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #fff;
    display: block;
    margin-top: 10px;
}

.clinic-gallbladder-list li:last-child {
    margin-bottom: 0;
}

/* 체크마크 아이콘 */
.clinic-gallbladder-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 33px;
    height: 25px;
    background-image: url('/resource/images/gallbladder-checkmark-icon.png'); /* 체크마크 이미지 경로를 여기에 넣으세요 */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.box-sub03-04-14-1+.ul_subtitle {
    margin-top: 100px;
}

.box-sub03-04-14-1 {
    display: flex;
    flex-wrap: wrap;
}

.box-sub03-04-14-1 ._each {
    width: calc(100%/4 - 60px/4);
    margin-right: 20px;
    padding: 24px 28px;
    height: 80px;
    box-sizing: border-box;
    background-color: #f9f9fa;
}

.box-sub03-04-14-1 ._each:nth-child(4n) {
    margin-right: 0;
}

.box-sub03-04-14-1 ._each span {
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
}

/* 진단 섹션 */
.clinic-type-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 104px;
}

.clinic-type-item {
    text-align: center;
}

.clinic-type-image {
    width: 100%;
    height: 178px;
    object-fit: cover;
}

.clinic-type-text {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 94px;
    background-color: #f9f9fa;
    font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.63;
  letter-spacing: -0.8px;
  text-align: center;
  color: #333;
  flex-direction: column;
}

.clinic-type-text b {
    display: block;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: -0.9px;
    color: #1b30af;
}

@media screen and (max-width:1850px) {
    .process-container .headache-process-step {
        height: 88px;
        font-size: 20px;
    }

    .process-container .arrow-icon {
        width: 60px;
        height: 60px;
        position: absolute;
        right: -36px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }

    .process-container .arrow-icon img {
        width: 60px;
        height: 60px;
    }
}
  @media screen and (max-width:1800px) {
    .surgery-feature {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 58px;
        background-image: linear-gradient(to right, #182a89, #0b1949);
        gap: 12px;
        min-width: 350px;
        height: 100px;
        box-sizing: border-box;
        padding: 0 37px;
        position: relative;
    }

    .surgery-feature p {
        font-size: 25px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.33;
        letter-spacing: -1.2px;
        text-align: left;
        color: #fff;
    }

    .question-bubble-img {
        width: 132px;
        height: auto;
        position: absolute;
        top: -30px;
        left: 335px;
    }

    .recovery-process-header {
        width: 304px;
        min-width: 270px;
    }

    .network-description {
        font-size: 24px;
        font-weight: 400;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.54;
        letter-spacing: -1.3px;
        text-align: left;
        color: #333;
    }
    
  }

  @media screen and (max-width: 1700px) {
    .process-container .headache-process-step {
        height: 88px;
        font-size: 18px;
    }
}


.irritable-bladder-section {
    background-color: #fff;
    padding: 30px 0 104px;
  }
  
  .irritable-bladder-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 96px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  .irritable-bladder-image img {
    width: 100%;
    max-width: 620px;
    object-fit: cover;
  }
  
  .irritable-bladder-content {
    flex: 1;
  }
  
  .irritable-bladder-content h2 {
      font-family: NotoSansCJKkr;
    font-size: 34.5px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: -1.73px;
    text-align: left;
    color: #333;
    margin-bottom: 20px;
  }
  
  .irritable-bladder-content .highlight {
      font-weight: bold;
      color: #1e32a4;
  }
  
  .irritable-bladder-content p {
      font-family: NotoSansKR;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: -0.8px;
    text-align: left;
    color: #333;
    margin-bottom: 37px;
  }
  
  .irritable-bladder-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .irritable-bladder-checklist li {
    position: relative;
    font-family: NotoSansKR;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.25;
    letter-spacing: -0.8px;
    text-align: left;
    color: #333;
    padding-left: 25px;
  }
  
  .irritable-bladder-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 16px;
    background-image: url("/resource/images/ic-overactive-bladder-check.png");
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  .irritable-bladder-causes {
    padding: 30px 0 100px;
    background-color: #fff;
  }
  
  .irritable-bladder-causes .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 21px;
    margin: 0 auto;
  }
  
  .irritable-bladder-causes .cause-item {
    flex: 1 1 calc(25% - 21px);
    background-color: #f9f9fa;
    overflow: hidden;
    text-align: center;
  }
  
  .irritable-bladder-causes img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
  }
  
  .irritable-bladder-causes .cause-text {
      height: 94px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
  }
  
  .irritable-bladder-causes h3 {
      font-family: NotoSansKR;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.44;
    letter-spacing: -0.9px;
    text-align: center;
    color: #333;
  }
  
  .irritable-bladder-causes p {
      font-family: NotoSansKR;
    font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.63;
    letter-spacing: -0.48px;
    text-align: center;
    color: #333;
  }

  
.small-desc {
    font-family: NotoSansKR;
  font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.88;
  letter-spacing: -0.8px;
  text-align: left;
  color: #333;
  margin-top: -10px;
}


.irritable-bladder-gender {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 0 auto;
    padding: 40px 0 10px;
  }
  
  .irritable-bladder-gender .gender-item {
    display: flex;
    align-items: flex-start;
    gap: 37px;
  }
  
  .irritable-bladder-gender .gender-icon {
    flex-shrink: 0;
      align-items: center;
    display: flex;
  }
  
  .irritable-bladder-gender .gender-icon img {
      width: 30px;
      height: 30px;
      margin-right: 10px;
  }
  
  .irritable-bladder-gender .gender-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
  }
  
  .irritable-bladder-gender .gender-text p {
      font-family: NotoSansKR;
    font-size: 18px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
  }
  
  /* 포인트 색상 구분 */
  .irritable-bladder-gender h4 {
      font-family: NotoSansKR;
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: -1px;
    text-align: left;
    color: #333;
  }
  
  
.irritable-bladder-tests {
    background-color: #fff;
    padding: 30px 0 126px;
  }
  
  .bladder-tests-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 21px;
    margin: 0 auto;
  }
  
  .bladder-test-item {
    flex: 1 1 calc(25% - 21px);
    background-color: #fff;
    overflow: hidden;
  }
  
  .bladder-test-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
  }
  
  .bladder-test-text {
    padding: 30px 0 0 0;
    text-align: left;
  }
  
  .bladder-test-text h3 {
      font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.44;
    letter-spacing: -0.9px;
    text-align: left;
    color: #1b30af;
    margin-bottom: 10px;
  }
  
  .bladder-test-text p {
      font-family: NotoSansKR;
    font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.63;
    letter-spacing: -0.8px;
    text-align: left;
    color: #333;
    word-break: keep-all;
  }
  
  .irritable-bladder-treatment {
    background-color: #fff;
    padding: 35px 0 100px;
  }

  .treatment-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 97px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  .treatment-image img {
    width: 100%;
    max-width: 620px;
    object-fit: cover;
  }
  
  .treatment-content {
    flex: 1;
  }
  
  .treatment-title {
      font-family: NotoSansKR;
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: -1px;
    text-align: left;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    position: relative;
  }
  
  .treatment-box {
    margin-bottom: 25px;
  }
  
  .treatment-box.second {
      margin-top: 55px;
  }
  
  .treatment-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .treatment-box li {
    position: relative;
    padding-left: 10px;
    font-family: NotoSansKR;
    font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.25;
    letter-spacing: -0.8px;
    text-align: left;
    color: #333;
  }
  
  .treatment-box li::before {
    content: "";
    width: 3px;
    height: 3px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 17px;
    background-color: #333;
    font-weight: bold;
  }
  
  .treatment-note {
      font-family: NotoSansKR;
    font-size: 14px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.71;
    letter-spacing: -0.7px;
    text-align: left;
    color: #f01414;
  }


  .benign-prostatic-hyperplasia-causes {
    padding: 30px 0 100px;
    background-color: #fff;
  }
  
  .benign-prostatic-hyperplasia-causes .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 21px;
    margin: 0 auto;
  }
  
  .benign-prostatic-hyperplasia-causes .cause-item {
    flex: 1 1 calc(25% - 21px);
    overflow: hidden;
    text-align: center;
  }
  
  .benign-prostatic-hyperplasia-causes img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
  }
  
  .benign-prostatic-hyperplasia-causes .cause-text {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      flex-direction: column;
      margin-top: 29px;
  }
  
  .benign-prostatic-hyperplasia-causes h3 {
      font-family: NotoSansKR;
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.44;
    letter-spacing: -0.9px;
    text-align: left;
    color: #333;
    margin-bottom: 3px;
  }
  
  .benign-prostatic-hyperplasia-causes p {
    font-size: 15px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.88;
  letter-spacing: -0.8px;
  text-align: left;
  color: #333;

  }

  
.prostate-treatment {
    padding: 30px 0 100px;
    background: #fff;
  }
  
  .prostate-treatment .container {
    margin: 0 auto;
  }
  
  .prostate-treatment .section-title {
    font-size: 28px;
    font-weight: 700;
    color: #0b2a72;
    margin-bottom: 10px;
  }
  
  .prostate-treatment .section-desc {
    font-size: 16px;
    color: #333;
    margin-bottom: 40px;
  }
  
  .prostate-treatment .treatment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 0;
  }
  
  .prostate-treatment .treatment-item {
    display: flex;
    align-items: center;
      justify-content: space-between;
      gap: 95px;
      width: 100%;
  }
  
  .prostate-treatment .treatment-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  
  .prostate-treatment .box-text {
    flex: 1;
  }
  
  .prostate-treatment .treatment_title {
      margin-bottom: 30px;
      font-size: 20px;
      font-weight: bold;
      font-stretch: normal;
      font-style: normal;
      line-height: 1.3;
      letter-spacing: -1px;
      text-align: left;
      color: #333;
      display: flex;
      align-items: center;
  }
  
  .prostate-treatment .treatment_title span {
      margin-left: 8px;
  }
  
  .prostate-treatment .box-text p {
      font-family: NotoSansKR;
      font-size: 16px;
      font-weight: 400;
      font-stretch: normal;
      font-style: normal;
      line-height: 1.88;
      letter-spacing: -0.8px;
      text-align: left;
      color: #333;
  }
  
  .prostate-treatment .img-box {
    flex: 1;
    text-align: right;
  }
  
  .prostate-treatment .img-box img {
    width: 100%;
    max-width: 620px;
    object-fit: cover;
  }

  
.hospital-contact-bar-wrap {
    width: 100%;
    background-color: #F5F5F5;
    height: 190px;
}

.hospital-contact-bar-wrap .inner {
    max-width: 1400px;
    align-items: center;
    display: flex;
    justify-content: flex-start;
    margin: 0 auto;
    height: 100%;
}

.contact-info-block {
    display: flex;
    align-items: flex-start;
}

/* 아이콘 박스 스타일 (전화, 달력 아이콘) */
.contact-icon-box {
    margin-right: 40px;
}

/* Font Awesome 아이콘 대체 (실제 환경에서는 라이브러리 필요) */
.contact-icon-call::before { content: "\f095"; font-family: 'Font Awesome 5 Free'; font-weight: 900; }
.contact-icon-calendar::before { content: "\f073"; font-family: 'Font Awesome 5 Free'; font-weight: 900; }


.contact-text-content {
    text-align: left;
}

.contact-title {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.6px;
    color: #333;
    margin-bottom: 10px;
}

.contact-number-link {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: -0.96px;
    color: #333;
    display: block;
}

.contact-number-link.blue {
    color: #1B30AF;
}

/* 구분선 스타일 */
.block-main-call, .block-checkup-call {
}

.block-main-call {
    position: relative;
}

.block-main-call::after {
    position: absolute;
    width: 1px;
    height: 57px;
    background: #CCC;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    right: -43px;
}

.block-checkup-call {
    padding-left: 86px;
    padding-right: 98px;
    /* 건강검진 문의는 아이콘이 없으므로 아이콘 영역 숨김 */
    align-items: flex-start; 
}

/* 진료시간 안내 (세 번째 블록) 스타일 */
.block-hours .contact-title {
    color: #333; /* 이미지상의 색상으로 통일 */
    font-weight: normal;
}

.block-hours .contact-icon-box {
    background-color: var(--contact-main-blue);
}

.hours-detail-list {
   
}

.hours-detail-list span {
    margin-right: 28px;
    color: #666;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.54px;
    position: relative;
    padding-right: 10px;
}

.hours-detail-list span::before {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: #666;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.hours-notice-text {
    color: #FF4B4B;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.48px;
    margin-top: 10px;
}


/* 1. 전체 섹션: 이미지와 모션 요소의 기준점 */
.hospital-infographic-motion-section {
    position: relative;
    width: 100%;
    background-image: url(/resource/images/infographic-background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 1080px;
    margin: 0 auto;
    overflow: hidden;
}

/* 2. 모션을 줄 작은 동그라미 공통 스타일 */
.motion-dot {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 0 5px rgb(229 229 229 / 30%);
    z-index: 10;
    animation: pulse 2s infinite ease-in-out;
}

/* 핵심 아이콘 (큰 원형의 중앙 위치에 배치) */
.dot-core {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

/* 추가 모션 동그라미 (크기와 모션 속도에 변화를 줌) */
.dot-secondary {
    width: 15px;
    height: 15px;
    opacity: 0.6;
    animation-duration: 3s; /* 핵심 아이콘보다 느리게 움직임 */
}

/* 3. A. 핵심 아이콘 (3개) 배치 */
/* 건강검진센터 (파란색 원의 중앙) */
.dot-s7 {
    top: 32%;
    left: 14%;
    background-color: #d2e7f2;
    width: 70px;
    height: 70px;
    opacity: 0.8;
}

/* 24시간 응급실 (빨간색 원의 중앙) */
.dot-emergency-room {
    top: 30%; 
    right: 20%; 
    background-color: #e84f5b; 
}

/* 체계적인 협진 시스템 (초록색 원의 중앙) */
.dot-s8 {
    bottom: 10%;
    left: 36%;
    background-color: #bee9d8;
    width: 130px;
    height: 130px;
    opacity: 0.8;
}

.dot-s9 {
    top: 48%;
    left: 11%;
    background-color: #e1e2ea;
    width: 70px;
    height: 70px;
    opacity: 0.8;
}

/* 3. B. 추가 모션 동그라미 (6개) 배치 */
/* 건강검진센터 주변 (파란색 계열) */
.dot-s1 { 
    top: -8%;
    left: 28%;
    background-color: #dbebf2;
    width: 180px;
    height: 180px;
    opacity: 0.6;
    animation-duration: 3s;
}
.dot-s2 {     top: 23%;
    left: -57px;
    background-color: #deeef4;
    animation-delay: 0.5s;
    width: 130px;
    height: 130px;
    opacity: 0.6;
    animation-duration: 3s;
}

/* 24시간 응급실 주변 (빨간색 계열) */
.dot-s3 {     top: 6%;
    right: 30%;
    background-color: #fcdbdd; 
    width: 93px;
    height: 93px;
    opacity: 0.6;
    animation-duration: 3s;}
.dot-s4 {        top: 48%;
    right: 18%;
    background-color: #c8dfd9;
    animation-delay: 1s;
    width: 150px;
    height: 150px;
    opacity: 0.3;
    animation-duration: 3s;
}

.dot-s4-1 {        top: 61%;
    right: 15%;
    background-color: #ede7ec;
    animation-delay: 1s;
    width: 45px;
    height: 45px;
    opacity: 0.6;
    animation-duration: 3s;
}

/* 체계적인 협진 시스템 주변 (초록색 계열) */
.dot-s5 {     bottom: 20%;
    left: 25%;
    background-color: #cae8e7;
    width: 130px;
    height: 130px;
    opacity: 0.6;
    animation-duration: 3s;
}
.dot-s6 { bottom: 5%; right: 35%; background-color: #79c182; animation-delay: 1.5s; }


/* 4. 애니메이션 정의 (Pulse: 은은하게 커졌다 작아지는 효과) */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}


.ydp-tv {
	position: relative;
    position: relative;
    width: 100%;
    background-image: url(/resource/images/ydp-tv-background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 682px;
    margin: 0 auto;
    overflow: hidden;
}

.ydp-tv .inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1400px;
	z-index: 2;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}
.ydp-tv .left {
	flex-shrink: 0;
	/* padding-right: 55px; */
}
.ydp-tv .left .main-tit p {
	color: #FFF;
font-family: Pretendard;
font-size: 56px;
font-style: normal;
font-weight: 700;
line-height: 1.1;
}
.ydp-tv .left .main-tit h3 {
	font-size: 50px;
}
.ydp-tv .left .main-tit h3 b.ff-noto {
	flex-shrink: 0;
	font-size: 45px;
	font-weight: 600;
}
.ydp-tv .left .main-tit span {
	display: block;
	margin-top: 12px;
	color: #FFF;
font-family: "Inter", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 26px; /* 144.444% */
letter-spacing: -1.26px;
}
.ydp-tv .left .main-tit a {
	display: block;
	width: 230px;
	height: 50px;
	margin-top: 80px;
	color: #000;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.8px;
	text-align: center;
	border-radius: 50px;
	background-color: #fff;
	transition: all 0.2s;
    display: flex;
    gap: 7px;
    align-items: center;
    justify-content: center;
}

.ydp-tv .center {
	width: 760px;
	padding: 120px 60px;
}
.ydp-tv .right {
    flex-shrink: 0;
    overflow-y: auto;
    width: 230px;
    height: 427px;
    margin: 0;
    padding-right: 10px;
}
.ydp-tv .right ul {
    flex-direction: column;
}

.ydp-tv .right ul li:first-child {
    margin-top: 0;
}

.ydp-tv .right ul li {
	margin:10px 0;
    height: auto !important;
	background-color: #fff;
}
.ydp-tv .right ul li a {
	position: relative;
	display: block;
}
.ydp-tv .right ul li a img {
	width: 100%;
}
.ydp-tv .right ul li a div {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	padding:15px;
	box-sizing: border-box;
	transition: all 0.2s;
}
.ydp-tv .right ul li a div p {
	padding-bottom: 6px;
	margin-bottom: 6px;
	font-size: 18px;
	word-break: keep-all;
	/* border-bottom: 1px solid #fff; */
}
.ydp-tv .right ul li a div span {
	font-size: 14px;
	font-weight: 300;
	word-break: keep-all;
}
.ydp-tv .right ul li a:hover div,
.ydp-tv .right ul li a.active div {
	opacity: 1;
}
.ydp-tv .right ul li a.active img {
	opacity: 1;
}

/* 섹션 공통 스타일 */
.hospital-info-section {
    max-width: 1400px;
    margin: 0px auto;
    padding: 120px 0 150px;
    display: flex; /* Flexbox 적용 */
    gap: 53px; /* 블록 사이 간격 */
}

.info-block {
    flex: 1; /* 두 블록이 동일한 너비를 가지도록 */
    min-width: 0; /* flex item 최소 너비 설정 */
    position: relative;
}

/* 블록 헤더 공통 스타일 */
.block-header {
    margin-bottom: 60px;
    position: relative;
    padding-right: 120px; /* '자세히 보기' 버튼 공간 확보 */
}

.block-title {
    color: #333;
font-family: Pretendard;
font-size: 36px;
font-style: normal;
font-weight: 700;
line-height: normal;
    margin-bottom: 10px;
}

.block-desc {
    color: #666;
font-family: "Inter", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 26px; /* 144.444% */
letter-spacing: -0.9px;
}


/* '자세히 보기' 버튼 스타일 */
.btn-more {
    width: 160px;
    height: 55px;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.8px;
    transition: background-color 0.3s;
    border-radius: 70px;
    background: #F5F5F5;
}

.btn-more:hover {
    background-color: #f5f5f5;
}

.btn-more .arrow {
    margin-left: 5px;
    font-size: 18px;
}

@media screen and (min-width:721px) {
	.ydp-tv .right::-webkit-scrollbar {
		width: 5px;
	}
	.ydp-tv .right::-webkit-scrollbar-thumb {
		border-radius: 10px;
        background: rgba(255, 255, 255, 0.20);
		box-shadow: inset 0px 0px 2px rgba(255, 255, 255, 0.4);
	}
	.ydp-tv .right::-webkit-scrollbar-track {
		background-color: transparent;
		border-radius: 10px;
	}
}

/* 공지사항 목록 스타일 */
.notice-block .block-header {
    padding-right: 0; /* 버튼이 목록 위에 있으므로 제거 */
    position: relative; /* 버튼 위치 조정을 위해 static으로 변경 */
}
.notice-block .btn-more {
    position: absolute; /* 다시 절대 위치로 재배치 */
    top: 0;
    right: 0;
}

.notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #000;
}

.notice-list li {
    border-bottom: 1px solid #ccc;
}

.notice-item {
    display: block;
    padding: 25px 0;
    color: #000;
font-family: Pretendard;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: -1px;
    text-decoration: none;
}

/* 둘러보기 (Swiper) 스타일 */
.tour-swiper-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.tour-swiper-container img {
    width: 100%;
    height: auto;
    display: block;
}


.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0 40px 0 0;
    background: rgba(27, 48, 175, 0.80);
    color: #FFF;
font-family: "Inter", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: -0.8px;
    width: 205px;
    height: 50px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Swiper Pagination (하단 점들) 스타일 오버라이드 */
.tour-pagination {
    text-align: center;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hospital-visit-section {
    width: 100%;
    padding: 120px 0px;
    box-sizing: border-box;
    margin: 0px auto;
    background: #F5F5F5;
}

.hospital-visit-section .inner {
    max-width: 1400px;
    margin: 0px auto;
    display: flex; /* Flexbox 적용 */
    gap: 40px;
}

/* 1. 방문 안내 텍스트 영역 (좌측) */
.visit-info-text-area {
    flex: 1; /* 지도 영역과 균형을 맞추기 위해 flex: 1 사용 */
    padding-right: 20px;
}

.hospital-visit-section .section-title {
    color: #333;
font-family: Pretendard;
font-size: 36px;
font-style: normal;
font-weight: 700;
line-height: normal;
    margin-bottom: 10px;
}

.hospital-visit-section .section-desc {
    color: #666;
font-family: "Inter", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 26px; /* 144.444% */
letter-spacing: -0.9px;
    margin-bottom: 63px;
}

/* 테이블 스타일 */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.schedule-table th, .schedule-table td {
    padding: 8px 0;
    color: #666;
font-family: Pretendard;
font-size: 19px;
font-style: normal;
font-weight: 400;
line-height: normal;
    text-align: left;
    vertical-align: top;
    line-height: 1.5;
}

.schedule-table th {
    color: #333;
font-family: Pretendard;
font-size: 19px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: -1.33px;
    width: 70px; /* 시간/주소/주차 안내 제목의 너비 */
    padding-right: 45px;
}

/* 주소, 주차안내 <th>는 간격을 위해 별도 너비 조정 */
.schedule-table .th-address, .schedule-table .th-parking {
    width: 80px;
    padding-left: 20px;
}

.schedule-notice {
    color: #EA3746;
font-family: "Inter", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 137.5% */
letter-spacing: -0.8px;
}

/* 2. 지도 영역 (우측) */
.visit-map-area {
    flex: 1; /* 동일 너비 */
    max-width: 50%; /* 비율 유지를 위해 최대 너비 제한 */
    min-width: 350px;
}

.map-api-container {
    width: 100%;
    height: 300px; /* 지도 영역 높이 지정 */
    background-color: #e0e0e0; /* 지도 로딩 전 배경색 */
    border: 1px solid #ccc; /* 지도 이미지 테두리 */
}

/* 지도 바로가기 버튼 */
.map-link-buttons {
    width: 100%;
    display: flex;
    justify-content: flex-end; /* 버튼을 우측 정렬 */
}

.map-link-btn {
    gap: 11px;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #0F1014;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.12px;
    transition: background-color 0.2s;
    border: 1px solid #E2E2E2;
    background: #FFF;
    height: 55px;
}

.map-link-btn.kakao {
    border-right: 0;
}

/* 아이콘 스타일 (실제 아이콘 라이브러리가 필요함) */
.map-link-btn i {
    font-size: 16px;
    /* 카카오/네이버 지도 아이콘은 별도로 이미지나 SVG로 처리해야 합니다. */
}


/* 상단 비주얼 */
.ano-disease__visual {
    background: url(/resource/images/ano-bg.png);
    padding: 96px 93px;
    background-size: cover;
    box-sizing: border-box;
    margin-bottom: 90px;
    height: 347px;
}

.ano-disease__title {
    font-family: NotoSansKR;
  font-size: 41.5px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.72;
  letter-spacing: -2.08px;
  text-align: left;
  color: #fff;
    margin-bottom: 27px;
}

.ano-disease__desc {
    font-family: NotoSansKR;
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: -0.9px;
  text-align: left;
  color: #fff;
}

.ano-disease__desc strong {
    color: #ffee32;
}

/* 비교 카드 영역 */
.ano-disease__compare {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 100px;
}

/* 카드 */
.ano-disease__item {
    background: #fff;
    overflow: hidden;
}

.ano-disease__figure img {
    width: 100%;
    display: block;
}

.ano-disease__body {
    padding: 27px;
    border: solid 1px #d7d7d7;
    background-color: #f9f9fa;
}

.ano-disease__name {
    font-family: NotoSansKR;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: -1px;
  text-align: left;
  color: #1b30af;
    margin-bottom: 17px;
}

.ano-disease__summary {
    font-size: 17px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.67;
  letter-spacing: -0.9px;
  text-align: left;
  color: #333;
    min-height: 86px;
}

.ano-disease__info {
    border-top: 1px solid #d7d7d7;
    padding-top: 30px;
    margin-top: 30px;
}

.ano-disease__info li {
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: -0.8px;
    text-align: left;
    color: #333;
}

.ano-disease__info li:last-child {
    margin-bottom: 0;
}

.ano-disease__info li strong {
    font-weight: 600;
}

/* 반응형 */
@media (max-width: 1024px) {
    .ano-disease__compare {
        grid-template-columns: 1fr;
    }

    .ano-disease__visual {
        padding: 60px 30px;
    }
}


.ano-disease-compare-table {
    background: #fff;
    margin-bottom: 100px;
}

/* 테이블 래퍼 */
.ano-disease-compare-table__wrap {
    overflow-x: auto; /* 모바일 스크롤 대응 */
}

/* 테이블 */
.ano-disease-compare-table__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.ano-disease-compare-table__table th,
.ano-disease-compare-table__table td {
    border: 1px solid #e0e0e0;
    padding: 14px 12px;
    text-align: center;
}

.ano-disease-compare-table__table th:first-child,
.ano-disease-compare-table__table td:first-child {
    border-left: 0;
}

.ano-disease-compare-table__table th:last-child,
.ano-disease-compare-table__table td:last-child {
    border-right: 0;
}
/* 헤더 */
.ano-disease-compare-table__table thead th {
    background-color: #1e32a4;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.67;
    letter-spacing: -0.9px;
    text-align: center;
    color: #fff;
}

/* 왼쪽 구분 컬럼 */
.ano-disease-compare-table__table tbody th {
    font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.88;
  letter-spacing: -0.8px;
  text-align: center;
  color: #666;
    width: 160px;
}

.ano-disease-compare-table__table td { 
    font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: -0.9px;
  text-align: center;
  color: #333;
}


.ano-treatment {
    background: #fff;
    margin-bottom: 92px;
}

/* 레이아웃 */
.ano-treatment__wrap {
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 96px;
}

/* 이미지 */
.ano-treatment__visual {
    flex: 1;
}

.ano-treatment__visual img {
    width: 100%;
    display: block;
}

/* 텍스트 */
.ano-treatment__content {
    flex: 1;
}

.ano-treatment__desc {
    font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: -0.8px;
  text-align: left;
  color: #333;
    margin-bottom: 16px;
}

.ano-treatment__emphasis {
    font-size: 36px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.28;
  letter-spacing: -1.8px;
  text-align: left;
  color: #333;
    margin-bottom: 45px;
}

.ano-treatment__emphasis strong {
    font-weight: 500;
    color: #1b30af;
}

.ano-treatment__notice {
    font-size: 14px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: -0.7px;
  text-align: left;
  color: #f01414;
}


.ano-features {
    display: flex;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 90px;
    flex-wrap: wrap;
    margin-top: 70px;
  }
  
  .ano-feature {
      flex: 1 1 0;
      min-width: 180px;
      max-width: 215px;
      text-align: center;
      margin: 0;
      align-items: center;
      justify-content: center;
      display: flex;
      flex-direction: column;
  }
  
  .ano-icon-circle {
      width: 180px;
      height: 180px;
      margin: 0 auto 32px auto;
      background: #f7f7f7;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .ano-icon-img {
    object-fit: contain;
    display: block;
  }
  
  .ano-feature-title {
    font-size: 22px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: -1.1px;
    text-align: center;
    color: #333;
    margin-bottom: 26px;
    min-height: 60px;
    display: flex;
    align-items: center;
  }

  .ano-feature-title .light {
    font-weight: 400;
  }
  
  .ano-feature-desc {
      font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.63;
    letter-spacing: -0.8px;
    text-align: center;
    color: #666;
  }
  
  .ano-feature-desc strong {
    font-weight: bold;
  }
  
  .ano-bottom-box {
      background: #f4fafd;
      font-size: 26px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: -1.3px;
    text-align: center;
    color: #1b30af;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      height: 119px;
  }