:root{
	--orange : #FE954E;
	--blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --gray-light:#eee;
    --gray-bold-light:#ccc;
}
* {
	padding: 0;
	margin: 0 auto;
	font-family: 'Noto Sans KR', sans-serif;
	text-decoration: none;
	line-height: 140%;
	-webkit-tap-highlight-color : transparent;
}

html, body {
	width: 100%;
	word-break: keep-all;
	-ms-overflow-style: none;
}

a, button {
	cursor: pointer;
}

a:focus {
	outline: none !important;
}

button:focus {
	outline: none !important;
	border-color: inherit;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#main_header {
	background-color: white;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
}

.header_active {
	border-bottom: 1px solid #f9f9f9;
}

.header_contents {
	display: block;
	height: 100px;
	line-height: 100px;
	padding: 0 10% 0 10%;
}

.header_logo_area {
	margin: 0;
	float: left;
	vertical-align: middle;
	display: contents;
}

.header_logo {
	margin: 0;
}

.header_logo_img {
	width: 160px;
	vertical-align: middle;
}

.header_navi {
	margin: 0;
	float: right;
	margin-top: 36px;
	font-size: 1.2em;
}

.navi_item:hover {
	color: #2B598B;
	font-weight: 600;
}

#main_contents {
	padding-top: 100px;
	width: 100%;
	overflow: hidden;
}

#sns {
	display: flex;
	padding-top: 12%;
	padding-bottom: 30px;
	width: 40%;
	text-align: center;
}

.sns_img {
	width: 50px;
	margin: 6%;
}

#main_footer {
	background-color: #FBFBFB;
	padding: 2% 0;
}

.footer_contents {
	text-align: center;
}

#fixed_call {
	position: fixed;
	bottom: 8%;
	right: 8%;
	z-index: 5;
}

.fixed_call_button {
	display: inline-flex;
	width: 350px;
	height: 80px;
	background: linear-gradient(to right, #fBAE3B, #F1893D);
	border: none;
	border-radius: 100px;
	box-shadow: 1px 1px 6px 0px #F1893D;
	font-size: 1.25em;
	font-weight: 400;
	color: white;
	align-items: center;
	text-align: center;
}

/* .fixed_call_hospital_button::before {
   content: '';
   display: block;
   position: absolute;
   background: rgba(255,255,255,0.5);
   width: 60px;
   height: auto;
   left: 0;
   top: 0;
   
   filter: blur(30px);
   transform:translateX(-100px) skewX(-15deg);
} */
.fixed_call_img {
	width: 30px;
	height: 30px;
	margin: 0;
	margin-left: 34px;
}

.fixed_call_text {
	font-size: 1.15em;
	font-weight: 500;
	color: white;
	text-align: center;
}

.fixed_call_button_topText {
	text-align: center;
	font-size: 1.15em;
}

/* 인터넷 익스플로러 x 없애기 */
input[type=text]::-ms-clear {
	display: none;
}

/* fontColor */
.font_color_orange {
	color: #F1893D;
}

.font_color_blue {
	color: #235A8B;
}

.font_color_green {
	color: #52B1A7;
}

.font_color_red {
	color: #D02400;
}

.font_color_black {
	color: #171717;
}

.font_color_dimgray {
	color: #7B7B7B;
}

.font_color_gray {
	color: #CCCCCC;
}

.font_color_whitegray {
	color: #FBFBFB;
}

.font_color_white {
	color: #FFFFFF;
}

/* fontSize */
.font_size_xx-samll {
	/* 18px */
	font-size: 1.125em;
}

.font_size_x-small {
	/* 22px */
	font-size: 1.375em;
}

.font_size_small {
	/* 26px */
	font-size: 1.625em;
}

.font_size_medium {
	/* 30x */
	font-size: 1.875em;
}

.font_size_large {
	/* 34x */
	font-size: 2.125em;
}

.font_size_x-large {
	/* 38x */
	font-size: 2.375em;;
}

.font_size_mega-large {
	/* 50x */
	font-size: 3.125em;
}

/* fontWeight */
.font_weight_medium {
	font-weight: 500;
}

.font_weight_bold {
	font-weight: 600;
}

.flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-wrap{
	flex-wrap: wrap;	
}

.flex{
	display: flex;
}
.flex-column{
	flex-direction: column;
}
.flex-j-start{
	justify-content: flex-start;	
}
.flex-j-center{
	justify-content: center;
}
.flex-j-end{
	justify-content: flex-end;	
}
.flex-j-around{
	justify-content: space-around;	
}
.flex-j-between{
	justify-content: space-between;	
}

.flex-a-start{
	align-items: flex-start;	
}
.flex-a-center{
	align-items: center;
}
.flex-a-end{
	align-items: flex-end;	
}
.flex-a-around{
	align-items: space-around;	
}
.flex-a-between{
	align-items: space-between;	
}

.text_input{
	border:1px solid #ececec;
	outline:none;
	border-radius:5px;
	width:100%;
	padding:0.5rem 1rem;
	box-sizing: border-box;
	
}
/* ------------ 모바일 버전 ------------- */
@media ( max-width : 768px ) {
	/* fontSize */
	.font_size_xx-samll {
		/* 18px */
		font-size: 1.067em;
	}
	.font_size_x-small {
		/* 20px */
		font-size: 1.333em;
	}
	.font_size_medium {
		/* 22px */
		font-size: 1.467em;
	}
	.font_size_large {
		/* 24px */
		font-size: 1.600em;
	}
	.font_size_x-large {
		/* 28px */
		font-size: 1.867em;
	}
	.font_size_mega-large {
		/* 30px */
		font-size: 2.200em;
	}
	.header_contents {
		height: 50px;
		line-height: 50px;
		padding: 0 4% 0 4%;
	}
	.header_logo_img {
		width: 110px;
	}
	.header_navi {
		margin-top: 18px;
		font-size: 0.8em;
	}
	#main_contents {
		padding-top: 50px;
	}
	#sns {
		width: 80%;
		font-size: 0.7em;
		padding-top: 30%;
	}
	.sns_img {
		width: 30px;
		margin: 10px;
	}
	.footer_contents {
		font-size: 0.68em;
		padding: 10px 0;
	}
	#main_footer {
		/* position: absolute;
      left: 0;
      bottom: 0; */
		width: 100%;
	}
	#fixed_call {
		width: 100%;
		position: fixed;
		bottom: 0;
		right: 0;
	}
	.fixed_call_button {
		height: 65px;
		width: 100%;
		border-radius: 0;
		justify-content: center;
		cursor: pointer;
	}
	.fixed_call_text {
		margin: 0;
		margin-left: 10px;
		font-size: 1.05em;
	}
}
/* ------------ SE 버전 ------------- */
@media ( max-width : 320px ) {
	.header_logo_img {
		width: 90px;
	}
	#sns {
		font-size: 0.6em;
	}
	.sns_img {
		width: 26px;
		margin: 8px;
	}
	.footer_contents {
		font-size: 10px;
		padding: 10px 0;
	}
}