.wrap {
	position: relative;
	width: 1280px;
	margin: 0 auto;
}

/* head */

.head {
    float: left;
    width: 100%;
	height: 140px;
}

.head_inner01 {
	width: 100%;
	height: 40px;
	background: #f2f4f6;
}

ul.lang_list {
	display: inline-block;
	overflow:hidden;
	float: right;
}

ul.lang_list li {
	float: left;
	position: relative;
	line-height: 40px;
}

ul.lang_list li:after {
	content:'';
	display: inline-block;
	position: absolute;
	top:13px;
	left: 0px;
	width: 1px;
	height: 12px;
	background: #ccc;
}

ul.lang_list li:first-child:after {
	display: none;
}

ul.lang_list li a {
    display: block;
    padding: 0 30px;
	font-family: 'ChosunGu';
    font-size: 13px;
    font-weight: bold;
    color: rgba(0,0,0,0.7);
}

ul.lang_list li a.on {
	color: #0a9978;
}

.head_inner02 {
    width: 100%;
    height: 100px;
}

.logo {
    float: left;
    margin: 29px 0;
}

.menu {
    float: right;
}

.menu_inner {
    display: inline-block;
}

.menu_inner > li {
	float: left;
	position: relative;
	height: 100px;
}

.menu_inner > li > a {
	display:block;
	padding: 0 40px;
	font-family: 'Roboto', 'InfinitySans-RegularA1', 'notokr';
    font-size: 18px;
    font-weight: 500;
	line-height: 100px;
	letter-spacing: -1px;
}

.smenu {
	display: inline-block;
	position: absolute;
    top: 100px;
    left: 0px;
    z-index: 99;
	width: 100%;
    background: #0a9978;
	height:0px;
	padding: 0px 0;
	opacity: 0;
	-webkit-transition:all 0.20s ease-in-out;
	-moz-transition:all 0.20s ease-in-out;
	-ms-transition:all 0.20s ease-in-out;
	-o-transition:all 0.20s ease-in-out;
}

.menu_inner > li:hover .smenu {
	opacity: 1;
	padding: 20px 0;
	height: auto;
}

.smenu_inner {
	opacity: 0;
	-webkit-transition:all 0.10s ease-in-out;
	-moz-transition:all 0.10s ease-in-out;
	-ms-transition:all 0.10s ease-in-out;
	-o-transition:all 0.10s ease-in-out;
}

.menu_inner li:hover .smenu_inner {
	opacity: 1;
}

.smenu_inner li {
    display: block;
    width: 100%;
}

.smenu_inner li a {
	display: block;
	padding: 0;
    text-align: center;
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
    line-height: 34px;
	letter-spacing: -0.5px;
	font-weight:500;
}

.smenu_inner li a:hover {
	color: rgba(255, 255, 255, 1);
}

.all_menu {
    display: inline-block;
    float: right;
	width: 100px;
	height: 100px;
	background: #0a9978;
	text-align: center;
}

.all_menu .burger {
    display: block;
    width: 100px;
    height: 100px;
}

.burger span {
    display: inline-block;
	position: relative;
	margin-top: 50px;
    width: 25px;
    height: 1px;
    background: #fff;
}

.burger span:before, .burger span:after {
	content:'';
	position: absolute;
	left: 0px;
	display: inline-block;
	width: 25px;
	height: 1px;
	background: #fff;
}

.burger span:before { top: 8px; }
.burger span:after { top: -8px; }

.burger.burger-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 50px;
}

.burger.burger-close.clicked {
	display:inline-block;
}

.burger.clicked span {
    background-color: transparent;
    margin-top: 0;
}

.burger.clicked span::before {
	top: 0px; 
	-webkit-transform: translateY(9px) rotate(45deg);
	-moz-transform: translateY(9px) rotate(45deg);
	-ms-transform: translateY(9px) rotate(45deg);
	-o-transform: translateY(9px) rotate(45deg);
	transform: translateY(9px) rotate(45deg);
}

.burger.clicked span::after {
	top: 18px;
	-webkit-transform: translateY(-9px) rotate(-45deg);
	-moz-transform: translateY(-9px) rotate(-45deg);
	-ms-transform: translateY(-9px) rotate(-45deg);
	-o-transform: translateY(-9px) rotate(-45deg);
	transform: translateY(-9px) rotate(-45deg);
}

.burger.clicked span:before, .burger.clicked span:after { 
	background-color: #fff;
	height: 2px;
}

.burger:hover { cursor: pointer; }

/* mobile menu */
/*  NAV */

nav.allmenu {
	overflow: hidden;
	position: fixed;
	z-index: 99999;
	top: 0;
	right: 0;
	height: 50%;
	max-width: 100%;
	width: 100%;
	background-color: #0a9978;
	padding: 50px;
	overflow-y: auto;
	-webkit-transform: translateY(-110%);
	-moz-transform: translateY(-110%);
	-ms-transform: translateY(-110%);
	-o-transform: translateY(-110%);
	transform: translateY(-110%);
	-webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	-o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
	box-shadow: 0px 0px 20px rgba(0,0,0,0.3);

	display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.allmenu_logo {
    position: absolute;
    top: 30px;
    left: 50px;
	text-align: left;
}

nav.allmenu.show {
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
}

ul.allmenu_list {
	width: 100%;
}

nav.allmenu ul.allmenu_list li {
	position:relative;
	float: left;
	width: 25%;
	padding: 20px 10px;
	/* -webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	-ms-transform: translateX(0px);
	-o-transform: translateX(0px);
	transform: translateX(0px);*/
	opacity: 1;
	text-align:left;
	/* border-bottom: 1px solid rgba(255,255,255,0.1); */
}

nav.allmenu ul.allmenu_list li:last-child {
	border-bottom: none;
}

nav.allmenu ul.allmenu_list li:last-of-type { margin-bottom: 0px; }

nav.allmenu ul.allmenu_list li a {
    float: left;
	margin-bottom: 0px;
    display: inline-block;
	width: 100%;
    padding: 0px 0;
    text-decoration: none;
    color: #fff;
	font-family: 'Roboto', 'InfinitySans-RegularA1', 'notokr';
    font-size: 18px;
    font-weight: 500;
	line-height: 28px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
	text-align: center;
}

nav.allmenu ul.allmenu_list li a span {  }
nav.allmenu ul.allmenu_list li a:hover, nav.allmenu ul.allmenu_list li:hover > a {  }

nav.allmenu ul.allmenu_list li .m_smenu {
    float: left;
    margin-left: 0%;
    width: 100%;
}

nav.allmenu ul.allmenu_list li .m_smenu dd {
    float: left;
    width: 100%;
}

nav.allmenu ul.allmenu_list li .m_smenu dd a {
    display: block;
    width: 100%;
    color: rgba(255,255,255,0.7);
	margin-bottom: 0px;
    font-size: 16px;
    font-weight: 400;
    line-height: 34px;
}

nav.allmenu ul.allmenu_list li .m_smenu dd a:hover {
	color: rgba(255,255,255,1);
	text-decoration: underline;
}

nav.allmenu ul.allmenu_list li .m_smenu dd a span {
    display: block;
    font-size: 13px;
    line-height: 24px;
}

nav.allmenu ul.allmenu_list li .m_smenu dd p {
    display: block;
    float: left;
    width: 100%;
	margin-top: 15px;
    color: rgba(255,255,255,0.7);
	font-size: 14px;
    line-height: 28px;
}

nav.allmenu ul.allmenu_list li .m_smenu dd p a {
	color: rgba(255,255,255,0.7);
	font-size: 14px;
}

nav.allmenu ul.sub {
	list-style-type: none;
	margin-top: 40px;
	-webkit-transform: translateY(30px);
	-moz-transform: translateY(30px);
	-ms-transform: translateY(30px);
	-o-transform: translateY(30px);
	transform: translateY(30px);
	opacity: 0;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

nav.allmenu ul.sub li {
	margin-bottom: 10px;
	float: left;
	margin-right: 20px;
}

nav.allmenu ul.sub li:last-of-type { margin-bottom: 0px; }

nav.allmenu ul.sub li a {
	color: #ffffff;
	font-family: "Raleway", sans-serif;
	letter-spacing: 1px;
	font-size: 18px;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

nav.allmenu ul.sub li a:hover { color: #a9c2da; }

nav.allmenu ul.sub li a img, nav.allmenu ul.sub li a i {
	float: left;
}

/*  OVERLAY
========================================== */

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background: #000;
	opacity: 0;
	visibility: hidden;
	z-index:999;
}

.overlay.show {
	opacity: 0.6;
	visibility: visible;
}

/* Centered texts in each section
* --------------------------------------- */

/* ì„œë¸Œë©”ë‰´ ìŠ¤íƒ€ì¼ */
#accordian ul ul li {
    margin-bottom: 0px;
    padding: 5px 0;
}

#accordian ul ul li a {
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	font-size: 13px;
	line-height: 24px;
	display: block;
	padding: 0px;
	-webkit-transition: all 0.15s;
	-moz-transition: all 0.15s;
	-o-transition: all 0.15s;
	-ms-transition: all 0.15s;
	transition: all 0.15s;
}

#accordian ul ul li a:hover {
	/* background: #003545; */
	text-decoration: underline;
}

/* active í´ëž˜ìŠ¤ ì™¸ì— ê²ƒì€ ë³´ì´ì§€ ì•Šê²Œ í•˜ê¸° */
#accordian ul ul {
	display: none;
	float: left;
	overflow: hidden;
	width: 100%;
	margin-top: 10px;
}
#accordian li.active ul {
	display: block;
}

/* footer*/
.footer {
	padding: 50px 0;
    background: #f2f4f6;
	text-align: center;
}

.ft_logo {
    margin-bottom: 30px;
}

.copy span {
    display: inline-block;
    margin: 0 15px;
}

.copy p {
    margin-top: 10px;
    color: rgba(0,0,0,0.5);
}

/* main_vis */
.main_vis {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.bx-wrapper {
	float: left;
    width: 100%;
}

.bx-viewport {
	float: left;
}

.main_vis .slide { height: 740px; }

.main_vis01 {
	background: url('../image/main/main_vis01.jpg') center center no-repeat;
	background-size:cover !important;
}

.main_vis02 {
	background: url('../image/main/main_vis02.jpg') center center no-repeat;
	background-size:cover !important;
}

.main_vis03 {
	background: url('../image/main/main_vis03.jpg') center center no-repeat;
	background-size:cover !important;
}

.main_vis04 {
	background: url('../image/main/main_vis04.jpg') center center no-repeat;
	background-size:cover !important;
}

.main_text {
    position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;

	display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.main_text_inner {
    display: inline-block;
}

.main_text h2 {
	display: block;
	margin-bottom: 40px;
	color: #fff;
	font-size: 73px;
	font-weight: 500;
}

.main_text p {
	color: #fff;
	font-size: 25px;
	line-height: 1.7em;
	letter-spacing: -0.5px;
}

.main_vis01 .main_text_inner {
    padding: 80px 60px;
    background: rgba(255,255,255,0.8);
}

.main_vis01 .main_text h2 {
	color: #000;
	font-size: 65px;
}

.main_vis01 .main_text p {
	color: #000;
	font-size: 21px;
}

.main_vis01 .main_text p span {
	color:#0a9978;
	font-weight: 500;
}

.main_con01 .bx-controls {
    position: absolute;
    width: 100%;
    left: 0px;
    top: 0;
    height: 100%;
}

/* main_content */
.main_con01 {
	position: relative;
	overflow: hidden;
    margin: 100px 0;
}

.main_con01_inner {
	position: relative;
}

.main_con01 .textbox {
    position: absolute;
    top: 0px;
    left: 0px;
	width: 100%;
	height: 640px;
    display: flex;
    /* text-align: center; */
    align-items: center;
    /* justify-content: center; */	
	letter-spacing: -1px;
}

.main_con01 .textbox_inner {
	margin-bottom: 70px;
	width: 30%;
}

.main_con01 .textbox span {
    display: inline-block;
    margin-bottom: 50px;
    color: #0a9978;
    font-size: 23px;
    font-weight: 500;
    border-bottom: 2px solid #0a9978;
}

.main_con01 .textbox h3 {
	margin-bottom: 20px;
	font-size: 48px;
}

.main_con01 .textbox p {
	color: #777;
	font-size: 19px;
	letter-spacing: -0.5px;
	line-height: 32px;
}

.main_con01 .imgbox {
    float: right;
}

.main_con01 .bx-controls {
    top: auto;
	bottom: 100px;
	height: auto;
}

.main_con01 .bx-controls-direction {
    position: relative;
    width: 1280px;
    margin: 0 auto;
}

.main_con01 .bx-wrapper .bx-prev {
	left: 0px;
	background: url('../image/main/arrow_left02.png') center center no-repeat;
}

.main_con01 .bx-wrapper .bx-next {
	left: 50px;
	background: url('../image/main/arrow_right02.png') center center no-repeat;
}

.main_con01 .bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: auto;
    bottom: 0;
    width: 11px;
    height: 20px;
	opacity: 1;
}

ul.main_con02_list {
	overflow: hidden;
}

ul.main_con02_list li {
	float:left;
	overflow:hidden;
	width: 50%;
	height: 570px;
}

ul.main_con02_list01 li.main_con02_imgbox { 
	float: left;
	background: url('../image/main/main_con02_img01.jpg') center center no-repeat;
	background-size: cover !important;
}

ul.main_con02_list02 li.main_con02_imgbox {
	background: url('../image/main/main_con02_img02.jpg') center center no-repeat;
	background-size: cover !important;
}

ul.main_con02_list li img {
	max-width: 100%;
}

ul.main_con02_list li.main_con02_textbox {
	display: flex;
    /* text-align: center; */
    align-items: center;
    /* justify-content: center; */
	padding: 0 100px;
}

ul.main_con02_list01 li.main_con02_textbox {
	float: right;
    background: #0a9978;
    color: #fff;
}

ul.main_con02_list02 li.main_con02_textbox {
	float: left;
	background: #f2f4f6;
	text-align: right;
}

ul.main_con02_list .textbox_inner {
    width: 100%;
}

ul.main_con02_list li h3 {
	display: block;
    margin-bottom: 30px;
    font-size: 29px;
    font-weight: 300;
    letter-spacing: -1px;
}

ul.main_con02_list li h3 span {
    display: block;
    margin-bottom: 20px;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: -0.5px;
}

ul.main_con02_list02 li.main_con02_textbox h3 span {
	color: #0a9978;
}

ul.main_con02_list li dl dd {
	position: relative;
    line-height: 32px;
	font-size: 17px;
	font-weight: 300;
	letter-spacing: -0.5px;
}

ul.main_con02_list li dl dd:before {
    content: '';
    position: relative;
    display: inline-block;
    margin-right: 8px;
    top: -4px;
    width: 4px;
    height: 4px;
    background: #666;
}

ul.main_con02_list01 li.main_con02_textbox dl dd:before { background: #fff; }

.main_con03 {
    padding: 100px 0;
}

.main_con03 h2 {
	display: block;
	margin-bottom: 50px;
	text-align:center;
	font-size: 36px;
	letter-spacing: -1px;
	font-weight: 500;
}

/* sub */

.sub_vis {
	position: relative;
    clear: both;
    /* overflow: hidden; */
	margin-bottom: 80px;
    width: 100%;
    height: 400px;
    background: url('../image/sub/sub_vis01.jpg') center center no-repeat;
	background-size:cover !important;

	display: flex;
    text-align: right;
    align-items: center;
    /* justify-content: center; */
}

.sub_text h2 {
    margin-bottom: 20px;
	color: #fff;
	font-size: 43px;
}

.sub_text p {
    color: rgba(255,255,255,0.5);
    font-family: 'InfinitySans-RegularA1';
	font-size: 19px;
	line-height: 28px;
}

.sidebar {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    background: rgba(0,0,0,0.2);
}

.sidebar_list { }

.sidebar_list li {
	float: left;
	position: relative;
}

.sidebar_list5 li { width: 20%; }
.sidebar_list6 li { width: 16.66%; }

.sidebar_list li:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 35%;
    width: 1px;
    height: 30%;
    background: rgba(255,255,255,0.3);
}

.sidebar_list li:first-child:after {
	display: none;
}

.sidebar_list li.over:before {
    content: '';
    position: absolute;
    left: 46%;
    bottom: -10px;
    width: 19px;
    height: 22px;
    background: url(../image/sub/sidebar_point.png) center center no-repeat;
}

.sidebar_list li a {
    display: block;
    text-align: center;
    color: #fff;
	font-family: 'InfinitySans-RegularA1';
	font-weight: normal;
    font-size: 17px;
    line-height: 60px;
	opacity: 0.8;
}

.sidebar_list li.over a {
    color: #fff;
	opacity: 1;
}

.sidebar_list li:hover a {
    color: #fff;
	font-weight: 500;
	opacity: 1;
	text-decoration: underline;
}

.sub_layout {
    margin-bottom: 80px;
}

.sub_title {
    margin-bottom: 50px;
	text-align: center;
}

.sub_title h2 {
	font-family: 'Roboto', 'InfinitySans-RegularA1', 'notokr';
	font-size: 41px;
    letter-spacing: -1px;
}

.sub_title p {
    margin-top: 20px;
    color: #888;
}

.sub_title p span {
	margin: 0 10px;
}

/* 인사말 */

.greetings_img {
	position: relative;
    margin-bottom: 30px;
}

.greetings_img .greeting_title {
    position: absolute;
    left: 100px;
    top: 0px;
    height: 100%;

	display: flex;
    /* text-align: center; */
    align-items: center;
    /* justify-content: center; */
}

.greeting_title h3 {
    color: #fff;
	font-family: 'InfinitySans-RegularA1';
    font-size: 35px;
    font-weight: 100;
    letter-spacing: -2px;
}

.greeting_title h3 span {
    display: block;
    margin-top: 10px;
    font-family: 'InfinitySans-BoldA1';
    font-size: 45px;
    font-weight: 500;
}

.greetings_text {
    font-size: 17px;
    line-height: 30px;
    word-break: keep-all;
    letter-spacing: -0.5px;
}

/* 비전 */

.vision h3 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 29px;
    letter-spacing: -2px;
    font-weight: 200;
	line-height: 1.7em;
	word-break: keep-all;
}

.vision h3 span {
    font-weight: 500;
}

.vision h3 span.t_color01 {
    color: #0a9978;
}

.vision_img {
    text-align: center;
}

/* 오시는 길 */
ul.location_info {
	overflow: hidden;
    margin-top: 50px;
}

ul.location_info li {
    
}

.location_info_inner {
	overflow: hidden;
	width: 100%;
}

.location_info_inner dt, .location_info_inner dd {
	float: left;
	height: 180px;
	display: flex;
    align-items: center;
    /* letter-spacing: -0.5px; */
}

.location_info_inner dt {
	position: relative;
    width: 20%;
    text-align: center;
	border-top: 2px solid #0a9978;
}

/* .location_info_inner dt:after {
	content:'';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 2px;
	background: #0a9978;
}*/ 

.location_info_inner dt .location_icon {
    width: 100%;
}

.location_info_inner dt span {
    display: block;
    width: 100%;
    font-size: 15px;
    margin-top: 10px;
    color: #000;
    font-weight: 500;
}

.location_info_inner dd {
	border-top: 1px solid #aaa;
	width: 78%;
	margin-left: 2%;
	font-size: 19px;
}

/* 파트너쉽 */

.partnership h3 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 25px;
    letter-spacing: -0.5px;
    /* font-family: 'InfinitySans-RegularA1'; */
    font-weight: 400;
    line-height: 42px;
    word-break: keep-all;
}

.partnership h3 span {
	color: #0a9978;
}

.partnership_imgbox {
    /* padding: 30px 0; */
	margin-bottom: 30px;
	text-align: center;
    border: 1px solid #ddd;
}

.partnership_text {
    word-break: keep-all;
    font-size: 17px;
    line-height: 28px;
    text-align: center;
}

/* 전문의약품 */

.product02_text {
    margin-bottom: 30px;
    padding: 50px;
    background: #f7f7f7;
	border: 1px solid #ddd;
    border-top: 2px solid #0a9978;
	line-height: 26px;
    font-size: 15px;
}