@charset 'utf-8';
/* 공통 */
.layout {
    width:100%;
    max-width:1400px;
    margin: 0 auto;
}
.handwriting{
	font-size: 32px;
	font-weight: 400;
	font-family: 'InkLipquid';
	color: var(--color-white);
	display: inline-block;
	margin-bottom: 20px;
	padding: 0 8px;
	position: relative;
	z-index: 1;
}
.handwriting:after{
	content: '';
	width: 100%;
	height: 20px;
	background-color: var(--color-green02);
	opacity: 0.4;
	position: absolute;
	bottom: 0;
	left:0;
	z-index: -1;
}
.deco{
	display: inline-block;
	font-size: 18px;
	font-weight: 500;
	color: var(--color-green);
	margin-bottom: 25px;
}
.title{
	font-size: 57px;
	font-weight: 700;
	color: var(--color-black);
	margin-bottom: 45px;
}
.title-light{
	font-weight: 400;
	display: inline-block;
    margin-bottom: 5px;
}
.pt120{
	padding-top: 120px;
}
.pb120{
	padding-bottom: 120px;
}
.pb125{
	padding-bottom: 125px;
}

	/* 공통 미디어쿼리 */
	@media all and (max-width: 1400px){
		.layout{
			width: 90%;
		}
	}
	@media all and (max-width: 1200px){
		.handwriting{
			font-size: 28px;
		}
		.deco{
			font-size: 16px;
			margin-bottom: 20px;
		}
		.title{
			font-size: 42px;
			margin-bottom: 35px;
		}
		.pt120{
			padding-top: 100px;
		}
		.pb120{
			padding-bottom: 100px;
		}
		.pb125{
			padding-bottom: 105px;
		}
	}
	@media all and (max-width: 640px){
		.handwriting{
			font-size: 23px;
		}
		.deco{
			font-size: 14px;
			margin-bottom: 15px;
		}
		.title{
			font-size: 27px;
			margin-bottom: 30px;
		}
		.title-light{
			margin-bottom: 2px;
		}
		.pt120{
			padding-top: 80px;
		}
		.pb120{
			padding-bottom: 80px;
		}
		.pb125{
			padding-bottom: 85px;
		}
	}


/* swiper 기본 css */
.swiper {
  width: 100%;
  height: 100%;
}
.swpier-wrapper {
  transition-timing-function: linear;
}

.swiper-slide {
	/* text-align: center; */
	/* font-size: 18px; */
	/* background: #fff; */
	display: flex;
	/* justify-content: center; */
	align-items: center;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* swiper 버튼 css */
.button-area .next,
.button-area .prev{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 90;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgb(255,255,255,0.3);
}
.button-area .next{
	right: 60px;
}
.button-area .prev{
	left: 60px;
}


/************************ popup ************************/
#popup{
	position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	z-index: 9999999999999;
	width: 90vw;
    max-width: 500px;
    overflow: hidden;
    box-sizing: border-box;
    /*background-color: var(--color-white);*/
}
#popup .slide-popup{}
#popup .popup-close{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 36px;
    background-color: var(--color-black);
    box-sizing: border-box;
    padding: 0 15px;
    transform: translateY(-3px);
    position: relative;
	z-index: 1;
}
#popup .popup-close .btn-popup-close{
    display: flex;
    width: 45px;
    justify-content: flex-end;
    align-items: center;
    color: var(--color-white);
    font-size: 0.875rem;
    cursor: pointer;
	background: transparent;
}
#popup .popup-close .text {
    font-size: 0.875rem;
    color: var(--color-white);
}
#popup .popup-close .icon{
	position: relative;
    display: block;
    width: 14px;
    height: 14px;
    margin-right: 3px;
}
#popup .popup-close .icon .line{
	position: absolute;
    left: 0;
    top: 6px;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
}
#popup .popup-close .icon .line1{
	transform: rotate(45deg);
}
#popup .popup-close .icon .line2{
	transform: rotate(-45deg);
}
.background{
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

/************************ header ************************/
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    background: transparent;
    z-index: 99999;
	transition: var(--transition);
}
#header .layout{
	width: 90%;
	max-width: 90%;
	height: 100%;
	display: flex;
    align-items: center;
    justify-content: space-between;
}
#header .logo {
    width: 202px;
	display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s;
}
#header .logo a{
	width: 100%;
}
#header .logo .logo-color{
    display: none;
}
/* header 스크롤, category 헤더 */
#header.on,
#header.category{
	background-color: var(--color-white);
}
#header.on .nav .gnb li a,
#header.category .nav .gnb li a{
	color: var(--color-black);
}
#header.on .hamburger .navi-line,
#header.category .hamburger .navi-line{
    background-color: var(--color-black);
}
#header.on .logo .logo-white,
#header.category .logo .logo-white{
    display: none;
}
#header.on .logo .logo-color,
#header.category .logo .logo-color{
    display: block;
}

/* nav */
#header .nav{
}
#header .nav .gnb{
	display: flex;
	gap: 30px;
}
#header .nav .gnb li a{
	font-size: 18px;
	font-weight: 500;
	color: var(--color-white);
	padding: 5px 10px;
}

/* hamburger */
#header .hamburger{
	width: 23px;
	display: flex;
	flex-direction: column;
	gap: 3px;
	cursor: pointer;
	z-index: 99;
}
#header .hamburger .navi-line{
	width: 100%;
	height: 2px;
	background-color: var(--color-white);
}
#header .hamburger .middle-line{
	width: 50%;
}
/* hamburger open */
#header.open  .hamburger .navi-line{
	background-color: var(--color-white);
}
#header.open .hamburger .navi-line.top-line{
	transform: translateY(5px) rotate(45deg);
}
#header.open .hamburger .navi-line.middle-line{
	opacity: 0;
}
#header.open .hamburger .navi-line.bottom-line{
	transform: translateY(-5px) rotate(-45deg);
}
#header.open .nav-background{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.3);
	cursor: pointer;
}


/* right menu */
#header .right-menu{
    width: 40%;
    height: 100%;
	position: fixed;
    top: 0;
    right: 0;
	background: var(--color-green);
	padding: 110px 60px 0;
	z-index: 98;
}
#header .right-menu .right-nav{
	display: flex;
	flex-direction: column;
	gap: 120px;
}
#header .right-menu .right-nav .logo{
	margin-bottom: 60px;
}
#header .right-menu .right-nav .gnb{
	display: flex;
	flex-direction: column;
	gap: 38px;
}
#header .right-menu .right-nav .gnb li a{
	font-size: 20px;
	font-weight: 400;
	color: var(--color-white);
	padding: 10px 27px;
	position: relative;
	opacity: 0.8;
}
#header .right-menu .right-nav .gnb li a:hover{
	font-weight: 600;
	opacity: 1;
}
#header .right-menu .right-nav .gnb li a:before{
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background-color: var(--color-white);
}
#header .right-menu .right-nav .right-adress-area{
	padding-top: 40px;
	border-top: 1px solid rgba(255,255,255,0.5);
}
#header .right-menu .right-nav .right-adress-area .call{
	display: block;
	margin-bottom: 25px;
	font-size: 47px;
	font-weight: 700;
	color: var(--color-white);
}
#header .right-menu .right-nav .right-adress-area .right-adress{
	color: var(--color-gray);
}

	/* header 미디어쿼리 */
	@media all and (max-width: 1200px) {
		#header .nav{
			display: none;
		}
		#header .right-menu{
			width: 50%;
			padding: 110px 40px 0;
		}
	}
	@media all and (max-width: 1000px) {
		#header .right-menu{
			width: 60%;
		}
		#header .right-menu .right-nav .right-adress-area .call {
			font-size: 42px;
		}
	}
	@media all and (max-width: 640px) {
		#header{
			height: 70px;
		}
		#header .logo{
			width: 160px;
		}
		#header .right-menu{
			width: 100%;
			padding: 70px 30px 0;
		}
		#header .right-menu .right-nav {
			gap: 70px;
		}
		#header .right-menu .right-nav .gnb {
			gap: 28px;
		}
		#header .right-menu .right-nav .gnb li a{
			font-size: 18px;
			padding: 10px 20px;
		}
		#header .right-menu .right-nav .right-adress-area {
			padding-top: 25px;
		}
		#header .right-menu .right-nav .right-adress-area .call {
			font-size: 30px;
			margin-bottom: 10px;
		}
	}



/************************ main ************************/

/* visual */
.visual{
	width: 100%;
	height: 100vh;
	position: relative;
}
.visual .swiper-slide1{
	background: url('/img/visual1.jpg') no-repeat center/cover;
}
.visual .swiper-slide2{
	background: url('/img/visual2.jpg') no-repeat center/cover;
}

/* visual 재생버튼 */
.visual .button-box{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
	position: absolute;
	bottom: 50%;
	left: 60px;
	transform: translateY(50%);
	z-index: 96;
}
.visual .button-box .autoplay-progress {
	/* position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 10; */
	position: relative;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: var(--color-white);
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.3);
	cursor: pointer;
}

.visual .button-box .autoplay-progress svg{
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%,-50%) rotate(-90deg);
	width: 100%;
	height: 100%;
}

.visual .button-box .autoplay-progress svg circle{
	stroke: var(--color-white);
	stroke-width: 1px;
	fill: none;
	stroke-dasharray: 180;
    stroke-dashoffset: 180;
	
}

.visual .button-box.animate .autoplay-progress svg circle{
	animation: circle01 2.985s forwards ease-out;
}

@keyframes circle01{
	0%{
		stroke-dashoffset: 180;
	}
	100%{
		stroke-dashoffset: 0;
	}
}

.visual .button-box.animate.paused .autoplay-progress svg circle{
	animation-play-state: paused;
}

.visual .button-box .play{
	display: none;
}
.visual .button-box.paused .stop{
	display: none;
}
.visual .button-box.paused .play{
	display: block;
}
/* visual 페이징 */
.visual .swiper-pagination{
	width: calc(100% - 85px) !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	position: static;
}
.visual .swiper-pagination-bullet{
	width: 7px;
	height: 7px;
	background: var(--color-white);
	opacity: 0.4;
	margin: 0 !important;
}
.visual .swiper-pagination-bullet-active{
	opacity: 1;
}
/* visual 텍스트 */
.visual .layout{
	height: 100%;
	display: flex;
    align-items: center;
}
.visual .text-box .handwriting{
	padding: 0;
}
.visual .text-box .handwriting:after{
	display: none;
}
.visual .text-box .title{
	font-size: 62px;
	color: var(--color-white);
	margin-bottom: 55px;
}
.visual .text-box .text{
	font-size: 18px;
	color: var(--color-white);
}
.visual .scroll{
	position: absolute;
	bottom: 60px;
	right: 60px;
	z-index: 97;
}

	/* visual 미디어쿼리 */
	@media all and (max-width: 1200px){
		.visual .text-box .title {
			font-size: 52px;
		}
		.visual .button-box{
			flex-direction: row;
			bottom: 10%;
			left: 40px;
		}
		.visual .swiper-pagination {
			flex-direction: row;
		}
		.visual .scroll {
			right: 40px;
		}
	}
	@media all and (max-width: 1000px){
		
	}
	@media all and (max-width: 640px){
		.visual .text-box .title {
			font-size: 37px;
			margin-bottom: 35px;
		}
		.visual .text-box .text {
			font-size: 16px;
		}
		.visual .text-box .handwriting{
			margin-bottom: 10px;
		}
		.visual .button-box {
			width: 100%;
			left: 20px;
			gap: 20px;
		}
		/* .visual .button-box .autoplay-progress{
			width: 40px;
			height: 40px;
		} */
		.visual .swiper-pagination{
			/* width: calc(100% - 60px) !important; */
			gap: 10px;
		}
		.visual .scroll {
			width: 27px;
			right: 20px;
			bottom: 40px;
		}
		.visual .scroll img{
			width: 100%;
		}
	}


/* subject */
.subject{
	background-color: var(--color-gray02);
}
.subject .layout{
	width: 100%;
	max-width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 60px;
}
}
.subject .swiper {
}
.subject .swiper-slide {
	background-size: cover;
	background-position: center;
}
/* subject 리스트 */
.subject .subject-list {
	width: 200px;
	height: 100%;
	box-sizing: border-box;
}
.subject .subject-list .swiper-wrapper{
	flex-direction: column;
}
.subject .subject-list .swiper-slide {
	width: 100% !important;
	padding: 23px 0 24px 45px;
	margin-right: 0 !important;
	transition: var(--transition);
	cursor: pointer;
}
.subject .subject-list .swiper-slide .list-text{
	font-size: 20px;
	font-weight: 700;
	color: var(--color-gray);
	position: relative;
}
.subject .subject-list .swiper-slide .list-text:before{
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: var(--color-white);
	position: absolute;
	top: 50%;
    left: -20px;
    transform: translateY(-50%);
	opacity: 0;
}
.subject .subject-list .swiper-slide-thumb-active {
	background-color: var(--color-green);
	border-radius: 35px;
}
.subject .subject-list .swiper-slide-thumb-active .list-text{
	color: var(--color-white);
}
.subject .subject-list .swiper-slide-thumb-active .list-text:before{
	opacity: 1;
}

/* subject 뷰 */
.subject .subject-view {
	width: calc(100% - 200px);
}
.subject .subject-view .swiper-slide{
	display: flex;
	justify-content: flex-end;
	gap: 130px;
}
.subject .subject-view .text-box .top-text{
	margin-bottom: 55px;
}
.subject .subject-view .text-box .bottom-text{
	padding: 40px 30px;
	border-radius: 20px;
	background-color: var(--color-white);
}
.subject .subject-view .text-box .bottom-text .handwriting{
	color: var(--color-black);
}
.subject .subject-view .text-box .bottom-text .list li{
	margin-bottom: 5px;
}
.subject .subject-view .text-box .bottom-text .list li:last-child{
	margin-bottom: 0;
}
.subject .subject-view .text-box .bottom-text .text{
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--color-gray02);
}
.subject .subject-view .text-box .bottom-text .text.no-line{
	margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

	/* subject 미디어쿼리 */
	@media all and (max-width: 1750px){
		.subject .layout{
			padding-left: 40px;
		}
		.subject .subject-view .swiper-slide {
			gap: 90px;
		}
	}
	@media all and (max-width: 1700px){
		.subject{
			padding: 100px 0;
		}
		.subject .layout {
			width: 90%;
			flex-direction: column;
			padding-left: 0;
			gap: 70px;
		}
		.subject .subject-list{
			width: 100%;
		}
		.subject .subject-list .swiper-wrapper {
			flex-direction: row;
			margin: 0;
		}
		.subject .subject-list .swiper-slide{
			width: 16.666% !important;
		}
		.subject .subject-view {
			width: 100%;
		}
		.subject .subject-view .swiper-slide{
			gap: 70px;
			justify-content: space-between;
			/* align-items: flex-end; */
		}
		.subject .subject-view .swiper-slide .text-box{
			width: 60%;
		}
		.subject .subject-view .swiper-slide .img-box{
			width: calc(100% - 60% - 70px);
		}
		.subject .subject-view .swiper-slide .img-box img{
			border-radius: 20px;
		}
	}
	@media all and (max-width: 1050px){
		.subject pre {
			white-space: normal;
		}
		.subject .subject-list .swiper-slide .list-text{
			font-size: 18px;
		}
	}
	@media all and (max-width: 900px){
		.subject .subject-list .swiper-wrapper{
			flex-wrap: wrap;
		}
		.subject .subject-list .swiper-slide{
			width: 33.333% !important;
		}
		.subject .subject-view .swiper-slide{
			gap: 30px;
		}
		.subject .subject-view .swiper-slide .img-box {
			width: calc(100% - 60% - 30px);
		}
	}
	@media all and (max-width: 640px){
		.subject {
			padding: 60px 0;
		}
		.subject .layout {
			gap: 35px;
		}
		.subject .deco {
			margin-bottom: 7px;
		}
		.subject .title{
			margin-bottom: 15px;
		}
		.subject .subject-list .swiper-slide {
			width: 50% !important;
			padding: 15px 0 15px 35px;
		}
		.subject .subject-list .swiper-slide .list-text{
			font-size: 16px;
		}
		.subject .subject-view .swiper-slide {
			flex-direction: column-reverse;
			gap: 35px;
		}
		.subject .subject-view .swiper-slide .text-box{
			width: 100%;
		}
		.subject .subject-view .text-box .top-text {
			margin-bottom: 35px;
		}
		.subject .subject-view .text-box .bottom-text{
			padding: 20px;
		}
		.subject .subject-view .swiper-slide .img-box {
			width: 100%;
			height: 280px;
		}
		.subject .subject-view .swiper-slide .img-box img{
			border-radius: 0;
		}
	}



/* equipment */
.equipment{
	position: relative;
}

.equipment .layout{
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	max-width: 100%;
}

.equipment .left,
.equipment .right{
	width: 50%;
	box-sizing: border-box;
}

.equipment .left{}

.equipment .equipment_big_slider{}

.equipment .equipment_big_slider .swiper-slide{
	box-sizing: border-box;
	padding:  90px 23%;
	background-image: url(/img/equipment-bg.jpg);
	background-size: cover;
	background-position: center center;
}

.equipment .equipment_big_slider .swiper-slide figure{
	position: relative;
}

.equipment .equipment_big_slider .swiper-slide figure img{}

.equipment .equipment_big_slider .swiper-slide figure figcaption{
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 20px;
	font-weight: var(--fw-700);
	background-color: var(--color-black);
	color: var(--color-white);
	padding: 20px 40px;
	border-radius: 50px;
	white-space: nowrap;
}

.equipment .right{
	padding-left: 5%;
	padding-right: 12%;
}

.equipment .right .top{
	margin-bottom: 75px;
}

.equipment .right .top .top-tab-cont{}

.equipment .right .top .top-text{}

.equipment .right .top .top-text .deco{}

.equipment .right .top .top-text .title{}

.equipment .right .top .top-text .text{
	margin-bottom: 55px;
}

.equipment .right .top .bottom-text{
	padding: 40px 30px;
    border-radius: 20px;
	background-color: var(--color-gray02);
}

.equipment .right .top .bottom-text .handwriting{
	color: var(--color-black);
}

.equipment .right .top .bottom-text .text{}

.equipment .right .bottom{}

.equipment .right .bottom .equipment_thumb_slider{
	margin-bottom: 25px;
}

.equipment .right .bottom .equipment_thumb_slider .swiper-slide{
	box-sizing: border-box;
	padding: 20px;
	background-color: var(--color-gray02);
	border-radius: 20px;
	cursor: pointer;
	/* width: calc( (100% - 45px) / 4 ); */
}

.equipment .right .bottom .equipment_thumb_slider figure{
	margin-bottom: 10px;
}

.equipment .right .bottom .equipment_thumb_slider  figure img{
	width: 100%;
}

.equipment .right .bottom .equipment_thumb_slider .text{
	font-size: 14px;
	font-weight: var(--fw-700);
	text-align: center;
}

.equipment .right .bottom .pagination-box{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.equipment .right .bottom .pagination-box .pagination-progress{
	position: relative;
	height: 1px;
}

.equipment .right .bottom .pagination-box .pagination-progress .swiper-pagination-progressbar-fill{
	background-color: var(--color-black);
}

.equipment .right .bottom .pagination-box .pagination-fraction{
	width: auto;
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	gap: 2px;
	color: var(--color-gray);
	font-size: 14px;
}

.equipment .right .bottom .pagination-box .pagination-fraction .swiper-pagination-current{
	color: var(--color-green02);
	font-size: 18px;
	font-weight: var(--fw-700);
}

.equipment .right .bottom .pagination-box .pagination-fraction .swiper-pagination-total{}

.equipment .button-area .next,
.equipment .button-area .prev{
	background-color: rgba(17,17,17,0.3);
}

	/* equipment 미디어쿼리 */
	@media all and (max-width: 1700px) {
		.equipment{
			padding: 120px 0;
		}
		.equipment .layout{
			max-width: 90%;
			gap: 70px;
		}
		.equipment .left{
			width: calc(100% - 60% - 70px);
		}
		.equipment .right{
			width: 60%;
			padding: 0;
		}
		.equipment .equipment_big_slider .swiper-slide{
			border-radius: 20px;
		}
	}
	@media all and (max-width: 1050px){
		.equipment{
			padding: 80px 0;
		}
		.equipment .equipment_big_slider .swiper-slide {
			padding: 40px 25%;
		}
		.equipment .equipment_big_slider .swiper-slide figure figcaption{
			font-size: 16px;
			padding: 10px 20px;
		}
	}
	@media all and (max-width: 900px){
		.equipment .layout{
			gap: 30px;
		}
		.equipment .left {
			width: calc(100% - 60% - 30px);
		}
	}
	@media all and (max-width: 640px){
		.equipment .deco {
			margin-bottom: 7px;
		}
		.equipment .title{
			margin-bottom: 15px;
		}
		.equipment .layout {
			flex-direction: column;
			gap: 35px;
		}
		.equipment .left,
		.equipment .right{
			width: 100%;
		}
		.equipment .right .bottom .equipment_thumb_slider .swiper-slide{
			padding: 20px 10px;
			margin-right: 10px !important;
		}
		.equipment .right .top{
			margin-bottom: 35px;
		}
		.equipment .right .top .top-text .text{
			margin-bottom: 35px;
		}
		.equipment .right .top .top-text .title{
			margin-bottom: 15px;
		}
		.equipment .right .top .bottom-text{
			padding: 20px;
		}
		.equipment .equipment_big_slider .swiper-slide {
			border-radius: 0;
		}
		.equipment .equipment_big_slider .swiper-slide figure figcaption{
			font-size: 14px;
		}
		.equipment .right .bottom .equipment_thumb_slider .text {
			font-size: 12px;
		}
		.equipment .button-area .next,
		.equipment .button-area .prev{
			top: 25%;
		}
	}


/* doctor */
.doctor{
	background: url('/img/doctor-bg.png');
	background-repeat: no-repeat;
	background-position: 150%;
}
.doctor .layout{
	display: flex;
	justify-content: space-between;
	/* padding: 0 50px; */
}

#sec03_02{
	background-color: #f5f7f64d;
}
.doctor .left{
	padding-top: 85px;
}
.doctor .text-box{
	padding-bottom: 45px;
	border-bottom: 1px solid var(--color-gray02);
}
.doctor .text-box .title-light{
	margin-bottom: 0;
	margin-left: 15px;
	font-size: 37px;
}
.doctor .text-box .handwriting{
	color: var(--color-green);
	line-height: 1.3;
	margin-bottom: 0;
	padding: 0;
}
.doctor .text-box .handwriting:after{
	display: none;
}
.doctor .history{
	padding-top: 45px;
}
.doctor .history .specialist{
	font-size: 20px;
	font-weight: 700;
	color: var(--color-black);
	display: inline-block;
	padding-left: 30px;
	margin-bottom: 32px;
	position: relative;
}
.doctor .history .specialist:before{
	content: '';
	width: 22px;
	height: 22px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url('/img/doctor-icon.png') no-repeat center;
}
.doctor .history .list-box{
	display: flex;
	gap: 60px;
}
.doctor .history .list-box .list li{
	margin-bottom: 5px;
}
.doctor .history .list-box .list li:last-child{
	margin-bottom: 0;
}

	/* doctor 미디어쿼리 */
	@media all and (max-width: 1200px) {
		.doctor {
			background-position: -200%;
			padding-bottom: 100px;
		}
		.doctor .history .list-box {
			flex-direction: column;
			gap: 5px;
		}
		.doctor .history .specialist{
			margin-bottom: 20px;
		}
	}
	@media all and (max-width: 1000px) {
		.doctor {
			background-position: 3% 3%;
			padding-bottom: 80px;
		}
		.doctor .layout {
			flex-direction: column-reverse;
		}
		.doctor .left{
			background-color: var(--color-gray02);
			border-radius: 20px;
			padding: 30px 45px;
		}
		.doctor .right{
			margin: 0 auto;
		}
		.doctor .text-box,
		.doctor .history {
			padding: 35px 0;
		}
		.doctor .text-box {
			border-bottom: 1px solid var(--color-gray);
		}
		.doctor .text-box .title-light {
			margin-left: 10px;
			font-size: 35px;
		}
	}
	@media all and (max-width: 640px) {
		.doctor{
			background-size: 180%;
		}
		.doctor .right{
			width: 70%;
		}
		.doctor .left{
			padding: 10px 25px;
		}
		.doctor .right img{
			width: 100%;
		}
		.doctor .text-box .title-light {
			margin-left: 7px;
			font-size: 23px;
		}
		.doctor .text-box,
		.doctor .history {
			padding: 25px 0;
		}
		.doctor .text-box .title{
			margin-bottom: 20px;
		}
		.doctor .history .specialist{
			font-size: 18px;
		}
	}

/* tour */
.tour{
	width: 100%;
	height: 100vh;
}
.tour .tour-Swiper .swiper-slide{
	display: flex;
}
.tour .tour-Swiper .swiper-slide.tour1{
	background: url('/img/tour1.jpg') no-repeat center/cover;
}
.tour .tour-Swiper .swiper-slide.tour2{
	background: url('/img/tour2.jpg') no-repeat center/cover;
}
.tour .tour-Swiper .swiper-slide.tour3{
	background: url('/img/tour3.jpg') no-repeat center/cover;
}
.tour .tour-Swiper .swiper-slide.tour4{
	background: url('/img/tour4.jpg') no-repeat center/cover;
}
.tour .tour-Swiper .swiper-slide.tour5{
	background: url('/img/tour5.jpg') no-repeat center/cover;
}
.tour .tour-Swiper .swiper-slide.tour6{
	background: url('/img/tour6.jpg') no-repeat center/cover;
}
.tour .tour-Swiper .swiper-slide.tour7{
	background: url('/img/tour7.jpg') no-repeat center/cover;
}
.tour .tour-Swiper .swiper-slide.tour8{
	background: url('/img/tour8.jpg') no-repeat center/cover;
}
.tour .tour-Swiper .swiper-slide.tour9{
	background: url('/img/tour9.jpg') no-repeat center/cover;
}
.tour .tour-Swiper .swiper-slide.tour10{
	background: url('/img/tour10.jpg') no-repeat center/cover;
}
.tour .tour-Swiper .swiper-slide.tour11{
	background: url('/img/tour11.jpg') no-repeat center/cover;
}
.tour .tour-Swiper .swiper-slide.tour12{
	background: url('/img/tour12.jpg') no-repeat center/cover;
}
.tour .tour-Swiper .swiper-slide.tour13{
	background: url('/img/tour13.jpg') no-repeat center/cover;
}
.tour .tour-Swiper .swiper-slide.tour14{
	background: url('/img/tour14.jpg') no-repeat center/cover;
}
.tour .tour-Swiper .swiper-slide.tour15{
	background: url('/img/tour15.jpg') no-repeat center/cover;
}
.tour .tour-Swiper .swiper-slide.tour16{
	background: url('/img/tour16.jpg') no-repeat center/cover;
}
.tour .tour-Swiper .swiper-slide .deco,
.tour .tour-Swiper .swiper-slide .title,
.tour .tour-Swiper .swiper-slide .text{
	color: var(--color-white);
}
.tour .tour-Swiper .swiper-slide .title{
	margin-bottom: 55px;
}
.tour .tour-Swiper .next,
.tour .tour-Swiper .prev{
	background-color: rgb(255,255,255,0.3);
}

	/* tour 미디어쿼리 */
	@media all and (max-width: 1200px){
		.tour .layout{
			text-align: center;
		}
		.tour .text-box {
			width: 70%;
			padding: 30px;
			margin: 0 auto;
			border-radius: 20px;
			background: rgba(255,255,255,0.3);
		}
		.button-area .next{
			right: 40px;
		}
		.button-area .prev {
			left: 40px;
		}
	}
	@media all and (max-width: 640px){
		.tour {
			width: 100%;
			height: 80vh;
		}
		.tour .text-box {
			padding: 30px 20px;
		}
		.tour .tour-Swiper .swiper-slide .title {
			margin-bottom: 40px;
		}
		.tour .tour-Swiper .swiper-slide .text{
			white-space: normal;
		}
		.tour .tour-Swiper .swiper-slide.tour6{
			background-position: 0 0;
		}
		.button-area .next{
			right: 20px;
		}
		.button-area .prev {
			left: 20px;
		}
	}


/* location */
.location{
	position: relative;
}
.location:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 45%;
	background-color: var(--color-gray02);
	z-index: -1;
}
.location .text-box{
	text-align: center;
}
.location .info-box{
	height: 580px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.location .info-box .map-area{
	width: calc(100% - 30%);
	height: 100%;
}
.location .info-box .info{
	width: 30%;
	height: 100%;
}
.location .info-box .info .text-box{
	background-color: var(--color-green);
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 40%;
}
.location .info-box .info .text-box .deco,
.location .info-box .info .text-box .call,
.location .info-box .info .text-box .text{
	color: var(--color-white);
}
.location .info-box .info .text-box .call{
	font-size: 47px;
	font-weight: 700;
	margin-bottom: 40px;
}
.location .info-box .info .time-area{
	height: calc(100% - 40%);
	display: flex;
    align-items: center;
    justify-content: center;
	background-color: var(--color-white);
}
.location .info-box .info .time{
	width: 80%;
}
.location .info-box .info .time dt{
	float: left;
	clear: both;
	font-size: 18px;
	font-weight: 600;
}
.location .info-box .info .time .time-item{
	border-bottom: 1px solid var(--color-gray02);
	padding: 20px 0;
}
.location .info-box .info .time .time-item:last-child{
	border-bottom: 0;
}
.location .info-box .info .time dd{
	padding-left: 100px ;	
}

	/* location 미디어쿼리 */
	@media all and (max-width: 1200px){
		.location .info-box .map-area{
			width: calc(100% - 45%);
		}
		.location .info-box .info{
			width: 45%;
		}
	}
	@media all and (max-width: 1000px){
		.location .info-box{
			flex-direction: column;
			height: 100%;
		}
		.location .info-box .map-area {
			width: 100%;
			height: 250px;
		}
		.location .info-box .info {
			width: 100%;
		}
 		.location .info-box .info .text-box{
			padding: 35px 0;
		}
		.location .info-box .info .text-box .call {
			margin-bottom: 20px;
			font-size: 37px;
		}
		.location .info-box .info .time-area{
			height: 100%;
		}
		.location .info-box .info .time dt{
			font-size: 16px;
		}
	}
	@media all and (max-width: 640px){
		.location .info-box .info .time {
			width: 85%;
		}
		.location .info-box .info .time dd{
			padding-left: 70px;
		}
	}

/************************ footer ************************/
#footer{
	position: relative;
}
#footer .footer-top{
	background-color: var(--color-green03);
	padding: 20px 0;
}
#footer .footer-top .layout{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#footer .footer-top .footer-menu li a,
#footer .footer-top .footer-call
{
	color: var(--color-white);
}
#footer .footer-top .footer-menu{
	display: flex;
}
#footer .footer-top .footer-menu li{
	padding: 0 20px;
	position: relative;
}
#footer .footer-top .footer-menu li:before{
	content: '';
	width: 1px;
	height: 15px;
	background-color: var(--color-white);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
#footer .footer-top .footer-menu li:first-child{
	padding-left: 0;
}
#footer .footer-top .footer-menu li:first-child:before{
	display: none;
}
#footer .footer-top .footer-menu li a{
	font-size: 18px;
}
#footer .footer-top .footer-call{
	font-size: 32px;
	font-weight: 700;
	padding-left: 55px;
	position: relative;
}
#footer .footer-top .footer-call:before{
	content: '';
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url('/img/call-icon.png') no-repeat center;
}
#footer .footer-bottom{
	padding: 55px 0 65px;
}
#footer .footer-bottom .info-box{
	display: flex;
	justify-content: space-between;
}
#footer .footer-bottom .info-box .logo{
	width: 181px;
}
#footer .footer-bottom .info-box .info-area{
	display: flex;
	gap: 55px;
	margin-top: 40px;
}
#footer .footer-bottom .info-box .info-area .address{
	display: flex;
	flex-direction: column;
	gap: 10px;

}
#footer .footer-bottom .info-box .info-area .address li span{
	position: relative;
	padding-right: 8px;
    margin-right: 8px;
}
#footer .footer-bottom .info-box .info-area .address li span:after{
	content: '';
	width: 1px;
	height: 11px;
	background-color: var(--color-gray);
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
#footer copyright{
	display: inline-block;
	color: var(--color-gray);
}
#footer .scroll {
    position: absolute;
    bottom: 60px;
    right: 60px;
    z-index: 94;
	cursor: pointer;
}

	/* footer 미디어쿼리 */
	@media all and (max-width: 1200px){
		#footer .footer-top .footer-menu li{
			padding: 0 10px;
		}
		#footer .footer-top .footer-menu li a{
			font-size: 16px;
		}
		#footer .footer-top .footer-call {
			font-size: 25px;
		}
		#footer .footer-bottom .info-box{
			flex-direction: column;
		}
		#footer .footer-bottom .info-box .info-area{
			flex-direction: column;
		}
		#footer .footer-bottom .info-box .info-area,
		#footer .footer-bottom .info-box .info-area .address{
			gap: 7px;
		}
		#footer copyright{
			margin-top: 20px;
		}
		#footer .scroll{
			right: 40px;
		}
	}
	@media all and (max-width: 1000px){
		#footer .footer-top .layout {
			flex-direction: column;
			align-items: stretch;
		}
		#footer .footer-top .footer-call{
			margin-top: 25px;
		}
	}
	@media all and (max-width: 640px){
		#footer .footer-bottom {
			padding: 40px 0 45px;
		}
		#footer .footer-top .footer-menu{
			display: none;
		}
		#footer .footer-top .footer-call {
			margin-top: 0;
		}
		#footer .footer-bottom .info-box .logo {
			width: 140px;
		}
		#footer .footer-bottom .info-box .info-area{
			margin-top: 25px;
		}
		#footer .scroll{
			width: 27px;
			right: 20px;
			bottom: 30px;
		}
		#footer .scroll img{
			width: 100%;
		}
	}




/* ******************************** 비급여항목 category.php ********************************** */
#category{
	padding-top: 200px;
}
caption {
	visibility: hidden;
}
.non_reimbursement_wrap{
    position: relative;
}

.mobile{
    display: none;
}

.non_reimbursement_wrap table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;

	border-bottom: 1px solid #dfb9a9 !important;
}

.non_reimbursement_wrap table thead{
	border-top: 1px solid var(--color-green);
    border-bottom: 1px solid var(--color-green);
}

.non_reimbursement_wrap table thead tr th{
	background-color: #e3f4e9;
    padding: 17px 0;
	border-bottom: 1px solid var(--color-green);
    border-right: 1px solid var(--color-green);
    font-size: 18px;
    font-weight: 600;
	color: var(--color-black);
}
.non_reimbursement_wrap table tbody tr{
	border-bottom: 1px solid #ecf0f1;
}


.non_reimbursement_wrap table tbody tr:last-of-type{
	border-bottom: 1px solid var(--color-green);
}


.non_reimbursement_wrap table tbody tr td{
    border-right: 1px solid #ecf0f1;
    padding: 17px 0;
    color: var(--color-black02);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 300;
	text-align: center;
}

.non_reimbursement_wrap table tbody tr:last-of-type td{
    border-bottom: 0;
}

.non_reimbursement_wrap table thead tr .th_note,
.non_reimbursement_wrap table tbody tr .td_note{
	border-right: 0;
}

#category .text-area{
	margin-top: 75px;
	text-align: center;
}
#category .text-area p{
	color: var(--text-color02);
	font-size: 18px;
	word-break: keep-all;
}
#category .text-area h3{
	font-size: 23px;
	font-weight: 600;
	color: var(--color-green);
	margin-top: 40px;
}





/* #### responsive #### */
@media screen and (max-width: 1200px){
    .non_reimbursement_wrap{
        margin-top: 50px;
    }
    .non_reimbursement_wrap table{
        word-break: keep-all;
    }
}

@media screen and (max-width: 1000px){
	#category {
		padding-top: 160px;
	}
	#category .title-area {
		margin-bottom: 40px;
	}
	.wrap_tit .tit_h{
        word-break: keep-all;
    }
}


@media screen and (max-width: 640px){
	#category {
		padding-top: 120px;
	}
    .wrap_inform {
        width: 95%;
    }

    .non_reimbursement_wrap {
        margin-top: 40px;
        overflow-x: scroll;
    }

    .non_reimbursement_wrap table thead tr th{
        font-size: 14px;
        padding: 12px 0;
    }
    .non_reimbursement_wrap table tbody tr td{
        font-size: 14px;
        padding: 12px 0;
    }
	#category .text-area {
    margin-top: 55px;
	}
	#category .text-area h3 {
		font-size: 18px;
		margin-top: 20px;
	}
	#category .text-area p{
		font-size: 14px;
	}
}


@media screen and (max-width: 414px){
    .mobile{
        display: block;
        width: 100%;
        margin-top: 40px;
        font-size: 15px;
        font-weight: 500;
    }

    .non_reimbursement_wrap{
        margin-top: 15px;
    }
    .non_reimbursement_wrap table{
        width: 160%;
    }

    .non_reimbursement_wrap table thead tr th{
        font-size: 13px;
    }
    .non_reimbursement_wrap table tbody tr td{
        font-size: 13px;
    }
}

@media screen and (max-width: 393px){
    .mobile{
        font-size: 14px;
    }
    .non_reimbursement_wrap table{
        widtH: 180%;
    }
}

@media screen and (max-width: 375px){
    .non_reimbursement_wrap table{
        width: 190%
    }
    .non_reimbursement_wrap table tbody tr td{
        line-height: 1.5;
    }
}

@media screen and (max-width: 320px){
    .mobile{
        margin-top: 35px;
        font-size: 13px;
    }

    .non_reimbursement_wrap{
        margin-top: 10px;
        margin-bottom: 60px;
    }
    .non_reimbursement_wrap table{
        width: 215%;
    }
    .non_reimbursement_wrap table thead tr th{
        font-size: 12px;
    }
    .non_reimbursement_wrap table tbody tr td{
        font-size: 12px;
    }
}