@charset "utf-8";
/* CSS Document */

/* *******************************************************

	* ProjectName : e-NeuroAnatomy Common Page
	* FileName : neuA_common_2409.css
	* Description : All Common
	* First Date : 2024.09.26.
	* Name : 김희선

*********************************************************/

/* 폰트 */
@import url("../fonts/fonts.css");

/* -------------------------------- 

Common Style

-------------------------------- */
#wrap {
	position: relative;
	overflow: hidden;
	width: 100%;
}
#container {
	display: block;
}
/* -------------------------------- 

Header Style

-------------------------------- */
#header {
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 90px;
	box-sizing: border-box;
	background-color: #ffffff;
	transition: all .3s;
	
}
.header_inner {
	padding: 0 85px;
	margin: 0 auto;
	height: 100%;
	box-sizing: border-box;
}
.header_box {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 100%;
}
.header_box > h1.logo {
	position: absolute;
	display: flex;
	left: 0;
	z-index: 100;
}
.header_box > h1.logo > a img {
	width: 100%;
}
.header_mid {
	display: flex;
	align-items: center;
	z-index: 100;
}
.header_mid > a span {
	font-size: 24px;
	color: #000000;
	font-weight: 600;
}
.header_mid.open > a span {
	color: #003b8d;
}
.header_nav {
	position: absolute;
	display: flex;
	right: 0;
	gap: 0 25px;
	z-index: 100;
}
.header_nav > a.nav_user {
	display: flex;
	width: 35px;
	height: 35px;
	background: url("../../images/icon/icon_user.svg") no-repeat 0 0 /cover;
	background-size: 100%;
	font-size: 0;
}
.header_nav > a.logout {
	display: flex;
	width: 35px;
	height: 35px;
	background: url("../../images/icon/icon_logout.svg") no-repeat 0 0 /cover;
	background-size: 100%;
	font-size: 0;
	margin-left: -3px;
}
.header_nav.open > a.nav_user,
.header_nav.open > a.logout {
	filter: invert(7%) sepia(94%) saturate(4746%) hue-rotate(205deg) brightness(124%) contrast(102%);
}
.header_nav > .btn_nav {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
}
/** Hamburger Button **/
.hamburger {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 23px;
}
.hamburger > span:nth-child(1) {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 3px;
	background-color: #000000;
	transition: all 0.20s ease;
	-webkit-transition: all 0.20s ease;
}
.hamburger > span:nth-child(2) {
	position: absolute;
	top: 10px;
	right: 0;
	width: 30px;
	height: 3px;
	background-color: #000000;
	transition: all 0.20s ease;	
	-webkit-transition: all 0.20s ease;
}
.hamburger > span:nth-child(3) {
	position: absolute;
	top: 20px;
	right: 0;
	width: 30px;
	height: 3px;
	background-color: #000000;
	transition: all 0.20s ease;
	-webkit-transition: all 0.20s ease;
}
.hamburger.open > span:nth-child(1) {
	background-color: #003b8d;
	top: 10px;
	width: 30px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.hamburger.open > span:nth-child(2) {
	opacity:0;
}
.hamburger.open > span:nth-child(3) {
	background-color: #003b8d;
	top: 10px;
	width: 30px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
@media (max-width: 1300px) {
	#header {
    height: 80px;
	}
	.header_inner {
    padding: 0 3%;
	}
	.header_box > h1.logo > a img {
		width: 80%;
	}
	.header_nav {
		gap: 0 20px;
	}
	.header_mid > a span {
    font-size: 22px;
	}
	.header_nav > a.nav_user,
	.header_nav > a.logout {
    width: 30px;
    height: 30px;
	}
	.header_nav > .btn_nav {
    width: 30px;
    height: 30px;
	}
	.hamburger > span:nth-child(1) {
		width: 28px;
	}
	.hamburger > span:nth-child(2) {
		top: 9px;
		width: 28px;
	}
	.hamburger > span:nth-child(3) {
		top: 18px;
		width: 28px;
	}
	.hamburger.open > span:nth-child(1),
	.hamburger.open > span:nth-child(3) {
		/*top: 18px;*/
		width: 28px;
	}
}
@media (max-width: 1024px) {
	#header {
		height: 75px;
	}
	.header_box > h1.logo {
		display: none;
	}
	.header_box {
		justify-content: flex-start;
	}
	.header_mid > a span {
		font-size: 20px;
	}
	.hamburger {
		margin-top: 2.5px;
	}
}
@media (max-width: 768px) {
	#header {
		height: 65px;
	}
	.header_inner {
		padding: 0 5%;
	}
	.header_mid > a span {
		font-size: 18px;
	}
	.header_nav > a.nav_user,
	.header_nav > a.logout {
    width: 25px;
    height: 25px;
	}
	.header_nav > .btn_nav {
    width: 25px;
    height: 25px;
	}
	.hamburger {
		margin-top: 5px;
	}
	.hamburger > span:nth-child(1) {
		width: 25px;
		height: 2px;
	}
	.hamburger > span:nth-child(2) {
		top: 8px;
		width: 25px;
		height: 2px;
	}
	.hamburger > span:nth-child(3) {
		top: 16px;
		width: 25px;
		height: 2px;
	}
	.hamburger.open > span:nth-child(1),
	.hamburger.open > span:nth-child(3) {
		top: 8px;
		width: 25px;
		height: 2px;
	}
}
@media (max-width: 576px) {
	.header_mid > a span {
		font-size: 16px;
	}
	.header_nav {
		gap: 0 14px;
	}
}
/* -------------------------------- 

Navigation Style

-------------------------------- */
.nav_inner {
	display: none;
	position: fixed;
	top: 0;
	width: 100%;
	height: 100vh;
	background-color: #eeeeee;
	padding-top: 90px;
	box-sizing: border-box;
	z-index: 50;
}
.nav_inner.open {
	display: block;
}
div.nav_box {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	height: 100%;
	opacity: 0;
	overflow-y: auto;
	overflow-x: hidden;
	box-sizing: border-box;
}
.nav_inner.open div.nav_box {
	opacity: 1;
	transition-delay: 0.13s;
}
.nav_menu_inner {
	width: 100%;
	max-width: 1310px;
	max-height: 100%;
	box-sizing: border-box;
}
.nav_menu_box {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	border-radius: 20px;
	background-color: #ffffff;
	padding: 0 40px 40px;
	box-sizing: border-box;
}
.nav_menu {
	display: flex;
	flex-direction: row;
	width: 100%;
	padding: 40px 0;
	border-bottom: 1px #e5e5e5 solid;
}
.nav_menu > h1 {
	display: inline-flex;
	width: 190px;
	vertical-align: top;
	font-size: 30px;
	font-weight: 600;
	color: #003b8d;
}
.nav_menu > ul {
	display: inline-flex;
	flex-wrap: wrap;
	column-gap: 100px;
	row-gap: 30px;
	width: 100%;
	padding-left: 40px;
	box-sizing: border-box;
}
.nav_menu > ul li {
	display: flex;
	align-items: start;
	flex-direction: column;
	width: calc((100% - 100px* 3) / 4);
	padding-top: 5px;
}
.nav_menu > ul li > a {
	font-size: 20px;
	font-weight: 300;
	color: #666666;
	line-height: 26px;
}
.nav_menu > ul li > a:hover {
	font-weight: 400;
	color: #000000;
}
@media (max-width: 1400px) {
	.nav_menu_inner {
		padding: 0 3%;
	}
	.nav_menu > h1 {
    width: 16%;
    font-size: 26px;
	}
	.nav_menu > ul {
    column-gap: 70px;
    row-gap: 15px;
	}
	.nav_menu > ul li {
    width: calc((100% - 70px* 3) / 4);
	}
	.nav_menu > ul li > a {
    font-size: 18px;
	}
}
@media (max-width: 1300px) {
	.nav_inner {
    padding-top: 80px;
	}
}
@media (max-width: 1200px) {
	.nav_inner {
    padding-top: 75px;
	}
	.nav_menu_box {
    padding: 0 25px 25px;
	}
	.nav_menu {
    padding: 25px 0;
	}
	.nav_menu > h1 {
    width: 10%;
    font-size: 22px;
	}
	.nav_menu > ul {
    column-gap: 50px;
    row-gap: 15px;
	}
	.nav_menu > ul li {
    width: calc((100% - 50px* 3) / 4);
	}
	.nav_menu > ul li > a {
    font-size: 18px;
	}
}
@media (max-width: 1024px) {
	.nav_inner {
    background-color: #ffffff;
	}
	.nav_menu_box {
    border-radius: 0;
    padding: 0 0 20px;
	}
	.nav_menu {
    flex-direction: column;
	}
	.nav_menu > ul {
		column-gap: 4rem;
		row-gap: 15px;
    padding-left: 0;
		padding-top: 10px;
	}
	.nav_menu > ul li {
		width: calc((100% - 4rem* 3) / 4);
	}
	.nav_menu > h1 {
		width: 100%;
		font-size: 20px;
	}
	.nav_menu > ul li > a {
		font-size: 16px;
		line-height: 24px;
	}
}
@media (max-width: 992px) {
	.nav_menu > ul {
		column-gap: 3.5rem;
	}
	.nav_menu > ul li {
		width: calc((100% - 3.5rem* 2) / 3);
	}
}
@media (max-width: 768px) {
	.nav_inner {
    padding-top: 60px;
	}
	.nav_menu_inner {
    padding: 0 7%;
	}
	.nav_menu > ul {
		column-gap: 3rem;
	}
	.nav_menu > ul li {
		width: calc((100% - 3rem* 1) / 2);
	}
}
@media (max-width: 576px) {
	.nav_menu > ul li > a {
    font-size: 16px;
	}
}
@media (max-width: 480px) {
	.nav_menu > ul {
		column-gap: 1rem;
	}
	.nav_menu > ul li {
		width: calc((100% - 1rem* 0) / 1);
	}
	.nav_menu > ul li > a {
    font-size: 15px;
	}
}
/* -------------------------------- 

Footer Style

-------------------------------- */
#footer {
	position: relative;
	display: block;
	width: 100%;
	-webkit-transition: all .3s;
  transition: all .3s;
}
#footer::before {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: #222222;
	content: "";
}
.footer_inner {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 50px 85px;
	box-sizing: border-box;
}
.footer_top_box {
	position: relative;
	display: block;
	padding-bottom: 25px;
	border-bottom: 1px rgba(255, 255, 255, 0.20) solid;
	box-sizing: border-box;
}
ul.ft_product_link {
	overflow: hidden;
	box-sizing: border-box;
	line-height: 20px;
}
ul.ft_product_link > li.product_tit {
	font-size: 20px;
	font-weight: 500;
	color: #ffffff;
	padding: 5px 0;
}
ul.ft_product_link > li {
	float: left;
	margin-left: 20px;
}
ul.ft_product_link > li:first-child {
  margin-left: 0;
}
ul.ft_product_link > li > a {
	display: block;
	font-size: 16px;
	color: rgba(255, 255, 255, .50);
	padding: 5px 0;
}
ul.ft_sns_link {
	position: absolute;
	right: 0;
	bottom: 24px;
}
ul.ft_sns_link > li {
	float: left;
}
ul.ft_sns_link > li > a {
	display: block;
	width: 39px;
	height: 32px;
	font-size: 0;
}
ul.ft_sns_link > li.c > a {
	background: url(../../images/icon/icon_c.png) no-repeat center / cover;
}
ul.ft_sns_link > li.b > a {
	background: url(../../images/icon/icon_b.png) no-repeat center / cover;
	margin-left: 20px;
}
ul.ft_sns_link > li.p > a {
	background: url(../../images/icon/icon_p.png) no-repeat center / cover;
	margin-left: 15px;
}
.footer_btm_box {
	position: relative;
	display: block;
	padding-top: 25px;
	box-sizing: border-box;
	text-align: right;
}
div.ft_info {
	position: absolute;
	left: 0;
	top: 25px;
	text-align: left;
}
div.ft_info > ul.bi_text {
	display: block;
	margin-bottom: 10px;
}
div.ft_info > ul.bi_text li {
	display: inline-block;
	position: relative;
}
div.ft_info > ul.bi_text li:nth-of-type(1) {
    margin-left: 35px;
}
div.ft_info > ul.bi_text li:nth-of-type(1)::before {
	position: absolute;
	top: 50%;
	left: -35px;
	margin-top: -14.5px;
	width: 29px;
	height: 29px;
	background: url(../../images/icon/icon_anatomy.png) no-repeat center / cover;
	content: "";
}
div.ft_info > ul.bi_text li span {
	font-size: 16px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.6);
}
div.ft_info > ul.bi_text li + li {
	position: relative;
	margin-left: 5px;
	padding-left: 8px;
}
div.ft_info > ul.bi_text li + li::before {
	position: absolute;
	left: 0;
	width: 1px;
	height: 16px;
	background-color: rgba(255, 255, 255, 0.6);
	content: "";
}
div.ft_info > p.copy_right {
	display: block;
	font-size: 12px;
	font-weight: 300;
	letter-spacing: 0.2px;
	color: rgba(255, 255, 255, .50);
	margin-top: 15px;
}
.footer_cc {
	overflow: hidden;
  box-sizing: border-box;
}
.footer_cc .cc_tit {
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	line-height: 16px;
	margin-bottom: 15px;
	letter-spacing: 0.2px;
}
.footer_cc .cc_address {
	font-size: 13px;
	font-weight: 200;
	color: rgba(255, 255, 255, 0.5);
	line-height: 20px;
	letter-spacing: 0.2px;
}
@media (max-width: 1300px) {
	.footer_inner {
    padding: 50px 3%;
	}
}
@media (max-width: 1024px) {
	.footer_inner {
    padding: 35px 3%;
	}
	.footer_top_box {
    padding-bottom: 20px;
	}
	ul.ft_product_link > li.product_tit {
    font-size: 18px;
	}
	ul.ft_product_link > li > a {
    font-size: 15px;
	}
	ul.ft_sns_link {
    bottom: 23px;
	}
	ul.ft_sns_link > li > a {
    width: 30px;
    height: 25px;
	}
	ul.ft_sns_link > li.c > a {
    background: url(../../images/icon/icon_c_m.png) no-repeat center / cover;
	}
	ul.ft_sns_link > li.b > a {
    background: url(../../images/icon/icon_b_m.png) no-repeat center / cover;
	}
	ul.ft_sns_link > li.p > a {
    background: url(../../images/icon/icon_p_m.png) no-repeat center / cover;
	}
	.footer_btm_box {
    padding-top: 20px;
	}
	div.ft_info > ul.bi_text li:nth-of-type(1) {
    margin-left: 27px;
	}
	div.ft_info > ul.bi_text li:nth-of-type(1)::before {
		margin-top: -11.5px;
		width: 23px;
		height: 23px;
		left: -27px;
		background: url(../../images/icon/icon_anatomy_m.png) no-repeat center / cover;
	}
	div.ft_info > ul.bi_text li span {
    font-size: 14px;
	}
	div.ft_info > ul.bi_text li + li::before {
    height: 14px;
		top: 2px;
	}
	div.ft_info > p.copy_right {
    font-size: 11px;
	}
	.footer_cc .cc_tit {
    font-size: 13px;
    margin-bottom: 10px;
	}
	.footer_cc .cc_address {
    font-size: 12px;
    line-height: 18px;
	}
}
@media (max-width: 768px) {
	.footer_inner {
    padding: 30px 5%;
	}
	.footer_top_box {
    padding-bottom: 15px;
	}
	ul.ft_product_link {
		display: block;
    width: 100%;
    text-align: center;
	}
	ul.ft_product_link > li.product_tit {
		display: block;
		width: 100%;
		padding: 0 0 5px 0;
		font-size: 16px;
	}
	ul.ft_product_link > li {
    display: inline-block;
    float: none;
	}
	ul.ft_product_link > li:nth-of-type(2) {
    margin-left: 0;
	}
	ul.ft_product_link > li > a {
    font-size: 14px;
		font-weight: 300;
    color: rgba(255, 255, 255, .55);
	}
	ul.ft_sns_link {
		position: relative;
		overflow: hidden;
		right: 0;
    top: 0;
    margin: 15px auto 0;
    text-align: center;
    border-top: 1px rgba(255, 255, 255, 0.20) solid;
	}
	ul.ft_sns_link > li {
    float: none;
		display: inline-block;
	}
	.footer_cc {
    width: 100%;
    position: relative;
    right: 0;
    left: 0;
    top: 0;
    text-align: center;
	}
	div.ft_info {
    position: relative;
    left: 0;
    top: 0;
    text-align: center;
		margin-top: 20px;
	}
}
@media (max-width: 576px) {
	.footer_top_box {
    padding-bottom: 12px;
	}
	ul.ft_product_link > li {
    margin-left: 15px;
	}
	ul.ft_product_link > li.product_tit {
    font-size: 15px;
	}
	ul.ft_product_link > li > a {
    font-size: 13px;
	}
	ul.ft_sns_link {
    margin: 10px auto 0;
	}
	.footer_cc .cc_tit {
		font-weight: 300;
    margin-bottom: 7px;
	}
	div.ft_info > ul.bi_text li span {
    font-size: 13px;
	}
}
@media (max-width: 414px) {
	ul.ft_product_link > li {
    margin-left: 10px;
	}
	ul.ft_product_link > li.product_tit {
    font-size: 14px;
	}
	ul.ft_product_link > li > a {
    font-size: 11px;
		padding: 3px 0;
	}
}
/* -------------------------------- 

Page Top Common Style

-------------------------------- */
.topBtn {
  position: fixed;
  right: 50px;
  bottom: 50px;
}
.topBtn.on {
	position: absolute;
	bottom: inherit;
	top: -80px;
}
.topBtn > span {
	display: block;
	position: relative;
	width: 50px;
  height: 50px;
  background: #101010;
	border: 1px rgba(255, 255, 255, .3) solid;
	cursor: pointer;
	font-size: 0;
	opacity: 0;
	border-radius: 50%;
}
.topBtn > span::after {
	content: "";
  position: relative;
  display: inline-block;
	top: 50%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
  margin-top: -8px;
	width: 16px;
	height: 16px;
	background-image: url("../../images/icon/icon_top.png");
	background-repeat: no-repeat;
	background-size: 100%;
}
.topBtn > span.on {
	opacity: 1;
}
@media (max-width: 1024px) {
  .topBtn {
    right: 30px;
		bottom: 30px;
  }
}
@media (max-width: 768px) {
	.topBtn {
    right: 25px;
		bottom: 25px;
  }
	.topBtn > span {
		width: 40px;
    height: 40px;
	}
  .topBtn > span::after {
    margin-top: -7px;
		width: 14px;
    height: 14px;
		background-image: url("../../images/icon/icon_top_m.png");
  }
	.topBtn.on {
		top: -60px;
	}
}

