@charset "utf-8";
/* CSS Document */

/* *******************************************************

	* ProjectName : e-Physiology Common Page
	* FileName : phy_common_220104.css
	* Description : All Common
	* First Date : 2022.01.04.
	* Name : 김희선

*********************************************************/

/* 폰트 */
@import url("../fonts/fonts.css");

/* -------------------------------- 

Common Style

-------------------------------- */
#wrap {
	position: relative;
	overflow: hidden;
	width: 100%;
	word-break:keep-all
}
#container {
  display: block;
}
.pc_only {
  display: block;
}
.m_only {
  display: none;
}
.point_cursor {
	cursor: pointer;
}
.blind {
	visibility: hidden;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	text-indent: -555555px;
}
.trans300 {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
}
/* -------------------------------- 

Header Style

-------------------------------- */
#header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 95px;
	z-index: 10;
}
#header::before {
	position: absolute;
	top: 0;
	left: 50%;
	width: 100%;
	height: 100%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-bottom: 1px rgba(255, 255, 255, .45) solid;
	box-sizing: border-box;
	content: "";
	-webkit-transition: all .3s;
	transition: all .3s;
	z-index: 70;
}
.header_wrap {
	display: table;
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	z-index: 70;
}
.header_wrap > h1.college_name {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 65;
}
.header_wrap > h1.college_name > a {
	display: block;
	margin: 0 auto;
	font-size: 24px;
	font-weight: 500;
	color: #ffffff;
	letter-spacing: -1.0px;
}
.header_wrap > .left {
	position: absolute;
	top: 50%;
	left: 50px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	z-index: 65;
}
.header_wrap > .right {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	z-index: 60;
	height: 100%;
	width: 100%;
}

/** BI **/
.site_bi > a {
	display: block;
	width: 250px;
	height: 47px;
	background: url(../../images/bi/phy_bi_white.svg) no-repeat 0 0;
	background-size: 100%;
	font-size: 0;
	-webkit-transition: all .3s;
	transition: all .3s;
}

/** Login, Logout **/
ul.header_member {
	display: block;
	position: absolute;
	top: 50%;
	right: 140px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
ul.header_member > li {
	display: inline-block;
}
ul.header_member > li a {
	font-size: 18px;
	color: #ffffff;
}
ul.header_member > li + li {
	position: relative;
	margin-left: 12px;
	padding-left: 15px;
}
ul.header_member > li + li::before {
	position: absolute;
	left: 0;
	width: 1px;
	height: 18px;
	background: #ffffff;
	content: "";
}

.btn_nav {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 95px;
	height: 95px;
	background-color: #1e7abf;
	cursor: pointer;
}
/** Open Menu **/
.openmenu .site_bi > a {
	display: block;
	width: 250px;
	height: 47px;
	background: url(../../images/bi/phy_bi.svg) no-repeat 0 0;
	background-size: 100%;
	font-size: 0;
}
.openmenu #header::before {
	border-bottom: 1px rgba(0, 0, 0, .10) solid;
}
.openmenu ul.header_member > li a {
	font-size: 18px;
	color: #1e7abf;
}
.openmenu ul.header_member > li + li::before {
	position: absolute;
	left: 0;
	width: 1px;
	height: 18px;
	background: #1e7abf;
	content: "";
}

/** Hamburger Button **/
.hamburger {
	display: block;
	width: 30px;
	height: 23px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}
.hamburger > span:nth-child(1) {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 3px;
	background-color: #ffffff;
	transition: all 0.20s ease;
	-webkit-transition: all 0.20s ease;
}
.hamburger > span:nth-child(2) {
	position: absolute;
	top: 10px;
	right: 0;
	width: 25px;
	height: 3px;
	background-color: #ffffff;
	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: #ffffff;
	transition: all 0.20s ease;
	-webkit-transition: all 0.20s ease;
}
.hamburger.open > span:nth-child(1) {
	background-color: #ffffff;
	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: #ffffff;
	top: 10px;
	width: 30px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
@media (max-width: 1300px) {
	#header {
		height: 85px;
	}
	.header_wrap > .left {
    left: 3%;
	}
	.site_bi > a,
	.openmenu .site_bi > a {
		width: 220px;
		height: 42px;
	}
	.btn_nav {
		width: 85px;
		height: 85px;
	}
	.hamburger {
		width: 27px;
		height: 21px;
	}
	.hamburger > span:nth-child(1) {
		width: 27px;
		height: 3px;
	}
	.hamburger > span:nth-child(2) {
		top: 9px;
		width: 22px;
		height: 3px;
	}
	.hamburger > span:nth-child(3) {
		top: 18px;
		width: 27px;
		height: 3px;
	}
	.hamburger.open > span:nth-child(1) {
		top: 9px;
		width: 27px;
	}
	.hamburger.open > span:nth-child(3) {
		top: 9px;
		width: 27px;
	}
}
@media (max-width: 1024px) {
	#header {
		height: 75px;
	}
	.header_wrap > h1.college_name > a {
		font-size: 20px;
	}
	.site_bi > a,
	.openmenu .site_bi > a {
		width: 200px;
		height: 38px;
	}
	ul.header_member {
    display: none;
	}
	.btn_nav {
		width: 75px;
		height: 75px;
	}
	.hamburger {
		width: 24px;
		height: 19px;
	}
	.hamburger > span:nth-child(1) {
		width: 24px;
		height: 3px;
	}
	.hamburger > span:nth-child(2) {
		top: 8px;
		width: 19px;
		height: 3px;
	}
	.hamburger > span:nth-child(3) {
		top: 16px;
		width: 24px;
		height: 3px;
	}
	.hamburger.open > span:nth-child(1) {
		top: 8px;
		width: 24px;
	}
	.hamburger.open > span:nth-child(3) {
		top: 8px;
		width: 24px;
	}
}
@media (max-width: 768px) {
	#header {
		height: 65px;
	}
	.header_wrap > .left {
    left: 5%;
	}
	.header_wrap > h1.college_name {
		left: 5%;
		transform: translate(0, -50%);
	}
	.header_wrap > h1.college_name > a {
		font-size: 18px;
	}
	.site_bi > a {
		display: none;
	}
	.openmenu .site_bi > a {
		width: 156px;
		height: 30px;
	}
	.btn_nav {
		width: 65px;
		height: 65px;
	}
	.hamburger {
		width: 22px;
		height: 16px;
	}
	.hamburger > span:nth-child(1) {
		width: 22px;
		height: 2px;
	}
	.hamburger > span:nth-child(2) {
		top: 7px;
		width: 17px;
		height: 2px;
	}
	.hamburger > span:nth-child(3) {
		top: 14px;
		width: 22px;
		height: 2px;
	}
}
/* -------------------------------- 

Navigation Style

-------------------------------- */
.nav_wrap {
	display: none;
	position: fixed;
	top: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(255, 255, 255, 1);
	padding-top: 95px;
	box-sizing: border-box;
	z-index: 50;
}
.nav_inner {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
	height: 100%;
	opacity: 0;
	overflow-y: auto;
	overflow-x: hidden;
	box-sizing: border-box;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	padding-top: 15px;
}
.nav_box {
	max-width: 100%;
	max-height: 100%;
	margin: 0 auto;
	opacity: 0;
	-webkit-transition: 0.20s;
	transition: 0.20s;
	box-sizing: border-box;
}
.nav_wrap.open .nav_inner,
.nav_wrap.open .nav_box {
	opacity: 1;
	transition-delay: 0.20s;
}
.nav_box > ul.nav_menu > li {
	display: block;
	text-align: left;
}
ul.nav_menu > li:last-child {
	padding-bottom: 50px;
}
ul.nav_menu > li .one_depth {
	position: relative;
	display: inline-block;
	padding: 0 50px 0 0;
	height: auto;
	font-size: 56px;
	font-weight: 600;
	color: #000000;
	line-height: 80px;
	margin: 10px 0;
	transition: opacity .3s ease;
	-webkit-transition: opacity .3s ease;
	opacity: .4;
}
ul.nav_menu > li .one_depth::before {
	content: "";
	display: block;
	position: absolute;
	left: auto;
	right: 0;
	top: 52%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	width: 24px;
	height: 6px;
	background-color: #000000;
}
ul.nav_menu > li .one_depth::after {
	content: "";
	display: block;
	position: absolute;
	left: auto;
	right: 0;
	top: 52%;
	transform: translateY(-50%) rotate(90deg);
	-webkit-transform: translateY(-50%) rotate(90deg);
	width: 24px;
	height: 6px;
	background-color: #000000;
	transition: transform .3s ease;
	-webkit-transition: transform .3s ease;
}
ul.nav_menu > li .one_depth.on {
	opacity: 1;
	color: #1e7abf;
}
ul.nav_menu > li .one_depth.on::before {
	background-color: #1e7abf;
}
ul.nav_menu > li .one_depth.on::after {
	transform: translateY(-50%) rotate(0deg);
	-webkittransform: translateY(-50%) rotate(0deg);
	background-color: #1e7abf;
}
.nav_box.initial > ul.nav_menu > li .one_depth {
  opacity: 1;
}
/*
.nav_box.initial > ul.nav_menu > li .one_depth.on {
	opacity: 1;
	color: #1e7abf;
}
.nav_box.initial > ul.nav_menu > li .one_depth.on::before {
	background-color: #1e7abf;
}
.nav_box.initial > ul.nav_menu > li .one_depth.on::after {
	transform: translateY(-50%) rotate(0deg);
	-webkittransform: translateY(-50%) rotate(0deg);
	background-color: #1e7abf;
}
*/
ul.nav_menu > li .two_pack {
	display: none;
}
.two_pack > ul {
	display: block;
	flex-wrap: wrap;
	position: static;
	margin: 5px 0 40px;
	overflow: hidden;
}
.two_pack > ul li {
	display: table;
	position: static;
	margin: 17px 0;
}
.two_pack > ul li .two_depth {
	position: relative;
	display: inline-block;
	color: #222222;
	font-size: 22px;
	line-height: 32px;
}
.two_pack > ul li .two_depth:hover::after {
	content: "";
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 1px;
	border-width: 0 0 1px;
	border-style: solid;
}
.two_pack > ul li .two_depth_list {
	position: relative;
	display: inline-block;
	color: #222222;
	font-size: 22px;
	line-height: 32px;
}
.two_depth_list {
	padding: 0 20px 0 0 ;
}
.two_depth_list::before {
	content: "";
	display: block;
	position: absolute;
	left: auto;
	right: 0;
	top: 52%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	width: 10px;
	height: 1px;
	background-color: #000000;
}
.two_depth_list::after {
	content: "";
	display: block;
	position: absolute;
	left: auto;
	right: 0;
	top: 52%;
	transform: translateY(-50%) rotate(90deg);
	-webkit-transform: translateY(-50%) rotate(90deg);
	width: 10px;
	height: 1px;
	background-color: #000000;
	transition: transform .3s ease;
	-webkit-transition: transform .3s ease;
}
.two_depth_list.on::after {
	transform: translateY(-50%) rotate(0deg);
	-webkittransform: translateY(-50%) rotate(0deg);
}
/** 2023.03.08 Add **/
.three_pack {
	display: none;
}
.three_pack > p {
	display: table;
	position: static;
	margin: 10px 0 10px;
}
.three_pack > p .three_depth {
	position: relative;
	display: inline-block;
	color: #888888;
	font-size: 19px;
	font-weight: 400;
	line-height: 26px;
	padding-left: 13px;
}
.three_pack > p .three_depth::before {
	content: "";
	display: block;
	width: 6px;
	height: 2px;
	background-color: #8c8c8c;
	position: absolute;
	left: 0;
	top: 13px;
}
.three_pack > p .three_depth:hover::after {
	content: "";
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 1px;
	border-width: 0 0 1px;
	border-style: solid;
}
/***** Max 1024px Show *****/
.m_member_box {
	display: none;
	line-height: 35px;
	margin-bottom: 30px;
	padding-top: 40px;
}
.m_member_box > ul li {
	display: inline-block;
}
.m_member_box > ul li a {
	position: relative;
	font-size: 20px;
	font-weight: 600;
	color: #1e7abf;
}
.m_member_box > ul li a::after {
	display: block;
	content: "";
	width: 100%;
	height: 1px;
	background-color: #1e7abf;
	position: absolute;
	bottom: -3px;
	left: 0;
	right: 0;
}
.m_member_box > ul li + li {
	position: relative;
	margin-left: 12px;
	padding-left: 15px;
}
.m_member_box > ul li + li::before {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 1px;
	height: 18px;
	background: rgba(0, 0, 0, .45);
	content: "";
}
.m_member_box > ul li + li a {
	font-size: 18px;
	color: rgba(0, 0, 0, .35);
}
.m_member_box > ul li + li a::after {
	display: none;
}
@media (max-width: 1300px) {
	.nav_wrap {
		padding-top: 85px;
	}
}
@media (max-width: 1024px) {
	.nav_wrap {
		padding-top: 75px;
	}
	ul.nav_menu li .one_depth {
    padding: 0 40px 0 0;
    font-size: 50px;
    line-height: 70px;
	}
	ul.nav_menu li .one_depth::before,
	ul.nav_menu li .one_depth::after {
    width: 22px;
    height: 6px;
	}
	.two_pack > ul li .two_depth,
	.two_pack > ul li .two_depth_list {
    font-size: 18px;
		line-height: 32px;
	}
	.two_pack > ul li .two_depth:hover::after {
		bottom: 2px;
	}
	.three_pack > p {
    margin: 10px 0 13px;
	}
	.three_pack > p .three_depth {
    font-size: 16px;
		line-height: 24px;
    padding-left: 10px;
	}
	.three_pack > p .three_depth::before {
		width: 5px;
		height: 1px;
	}
	.m_member_box {
		display: block;
	}
}
@media (max-width: 768px) {
	.nav_wrap {
		padding-top: 65px;
	}
	ul.nav_menu li .one_depth {
    padding: 0 30px 0 0;
    font-size: 40px;
    line-height: 60px;
	}
	ul.nav_menu li .one_depth::before,
	ul.nav_menu li .one_depth::after {
    width: 18px;
    height: 4px;
	}
	.two_pack > ul {
    margin: 5px 0 35px;
	}
	.two_pack > ul li .two_depth,
	.two_pack > ul li .two_depth_list {
    font-size: 16px;
    line-height: 30px;
	}
	.three_pack > p .three_depth {
    font-size: 14px;
	}
}
@media (max-width: 576px) {
	ul.nav_menu li .one_depth {
    padding: 0 30px 0 0;
    font-size: 30px;
    line-height: 50px;
		margin: 7px 0;
	}
	ul.nav_menu li .one_depth::before,
	ul.nav_menu li .one_depth::after {
    width: 16px;
    height: 4px;
	}
	.two_pack > ul {
    margin: 0 0 30px;
	}
	.two_pack > ul li .two_depth,
	.two_pack > ul li .two_depth_list {
    font-size: 16px;
    line-height: 30px;
	}
	.m_member_box {
    margin-bottom: 20px;
	}
}
@media (max-width: 414px) {
	ul.nav_menu li .one_depth {
		padding: 0 25px 0 0;
    font-size: 24px;
    line-height: 40px;
	}
	ul.nav_menu li .one_depth::before,
	ul.nav_menu li .one_depth::after {
    width: 14px;
    height: 3px;
	}
	.two_pack > ul {
    margin: 0 0 20px;
	}
	.m_member_box > ul li a {
    font-size: 18px;
	}
}

/* -------------------------------- 

Footer Style

-------------------------------- */
#footer.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%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 50px 0;
	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, .40);
	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;
}
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: 200;
	color: rgba(255, 255, 255, 0.6);
	line-height: 14px;
	letter-spacing: 0.5px;
}
.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.4);
	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 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: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	padding: 0 0 45px 0;
}
.topBtn.on {
	position: absolute;
	/*bottom: inherit;
	top: -130px;*/
	bottom: 100%;
}
.topBtn > .quick_list {
	position: relative;
	width: 50px;
  height: 50px;
  background: #101010;
	cursor: pointer;
	font-size: 0;
	opacity: 0;
	border-radius: 25px;
}
.topBtn > .quick_list::after {
	content: "";
  position: relative;
  display: inline-block;
	top: 50%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
  margin-top: -8px;
	width: 17px;
	height: 17px;
	background-image: url("../../images/icon/icon_list_pc.png");
	background-repeat: no-repeat;
	background-size: 100%;
}
.topBtn > span {
	display: block;
	position: relative;
	width: 50px;
  height: 50px;
  background: #101010;
	cursor: pointer;
	font-size: 0;
	opacity: 0;
	border-radius: 25px;
	margin-top: 10px;
}
.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,
.topBtn > .quick_list.on {
	opacity: 1;
}
@media (max-width: 1024px) {
  .topBtn {
    right: 30px;
		padding: 0 0 30px 0;
  }
}
@media (max-width: 768px) {
	.topBtn {
		padding: 0 0 20px 0;
  }
	.topBtn > span {
		width: 40px;
    height: 40px;
		margin-top: 7px;
	}
	.topBtn > .quick_list {
		width: 40px;
    height: 40px;
	}
  .topBtn > span::after {
    margin-top: -7px;
		width: 14px;
    height: 14px;
		background-image: url("../../images/icon/icon_top_m.png");
  }
	.topBtn > .quick_list::after {
		margin-top: -8px;
		width: 15px;
		height: 15px;
		background-image: url("../../images/icon/icon_list_m.png");
	}
}
@media (max-width: 576px) {
	.topBtn {
    right: 15px;
  }
	.topBtn > span,
	.topBtn > .quick_list {
    width: 35px;
    height: 35px;
	}
}

/* -------------------------------- 

Contents Common Style

-------------------------------- */
#con_top_wrap {
	display: table;
	position: relative;
	width: 100%;
	height: 340px;
	text-align: center;
	color: #ffffff;
	overflow: hidden;
	box-sizing: border-box;
}
.con_txt_inner {
	display: table-cell;
	vertical-align: middle;
}
.con_txt_box {
	width: 100%;
	max-width: 1300px;
	margin: 5.6% auto 0;
	box-sizing: border-box;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.con_txt_box > p.con_top_cate {
	font-size: 24px;
	line-height: 30px;
}
.con_txt_box > h2.con_top_tit {
	font-size: 44px;
	font-weight: 500;
	margin-top: 15px;
}
.con_txt_box > p.con_top_name {
	font-size: 16px;
	margin-top: 8px;
	color: rgba(255, 255, 255, .8);
}
/** List Icon - Add 2022.09.06. **/
.con_txt_box > ul.top_icon_box {
	display: block;
	margin-top: 1.3rem;
}
ul.top_icon_box > li {
	display: inline-block;
	margin: 0 7px;
}
ul.top_icon_box >  li > span {
	display: block;
	width: 24px;
	height: 24px;
	text-indent: -9999px;
	opacity: .65;
}
ul.top_icon_box li > span:hover,
ul.top_icon_box li > span.active {
	opacity: 1;
}
ul.top_icon_box li > span.icon_list {
	background: url("../../images/icon/icon_list_pc.png") no-repeat center / cover;
}
ul.top_icon_box li > span.icon_modify {
	background: url("../../images/icon/icon_modify_pc.png") no-repeat center / cover;
}
ul.top_icon_box li > span.icon_scrap {
	background: url("../../images/icon/icon_scrap_pc.png") no-repeat center / cover;
}
ul.top_icon_box li > span.active.icon_scrap {
	background: url("../../images/icon/icon_scrap_on_pc.png") no-repeat center / cover;
}
.point_cursor {
	cursor: pointer;
}

/** Contents Top Background **/
.bg_con_top {
	background: url(../../images/bg/bg_phy_con.jpg) no-repeat center/cover;
	z-index: 1;
}
.bg_about_top {
	background: url(../../images/bg/bg_phy_about.jpg) no-repeat center/cover;
	z-index: 1;
}
.bg_service_top {
	background: url("../../images/bg/bg_phy_service.jpg") no-repeat center/cover;
	z-index: 1;
}
.bg_member_top {
	background: url("../../images/bg/bg_phy_member.jpg") no-repeat center/cover;
	z-index: 1;
}

@media (max-width: 1300px) {
	#con_top_wrap {
    height: 290px;
		padding: 0 3%;
	}
	.con_txt_box {
    margin: 7% auto 0;
	}
	.con_txt_box > p.con_top_cate {
    font-size: 20px;
    line-height: 26px;
	}
	.con_txt_box > h2.con_top_tit {
    font-size: 40px;
    margin-top: 10px;
	}
	.con_txt_box > p.con_top_name {
		font-size: 14px;
		margin-top: 7px;
	}
}
@media (max-width: 1024px) {
	#con_top_wrap {
    height: 270px;
	}
	.con_txt_box {
    margin: 9.5% auto 0;
	}
	.con_txt_box > p.con_top_cate {
    font-size: 18px;
    line-height: 24px;
	}
	.con_txt_box > h2.con_top_tit {
    font-size: 36px;
	}
}
@media (max-width: 768px) {
	#con_top_wrap {
    height: 250px;
		padding: 0 5%;
	}
	.con_txt_box {
    margin: 60px auto 0;
	}
	.con_txt_box > p.con_top_cate {
    font-size: 16px;
    line-height: 22px;
	}
	.con_txt_box > h2.con_top_tit {
    font-size: 32px;
    margin-top: 10px;
	}
	.con_txt_box > ul.top_icon_box {
		margin-top: 1rem;
	}
	ul.top_icon_box > li > span {
    width: 20px;
    height: 20px;
	}
	ul.top_icon_box li > span.icon_list {
		background: url("../../images/icon/icon_list_m.png") no-repeat center / cover;
	}
	ul.top_icon_box li > span.icon_modify {
	background: url("../../images/icon/icon_modify_m.png") no-repeat center / cover;
}
	ul.top_icon_box li > span.icon_scrap {
		background: url("../../images/icon/icon_scrap_m.png") no-repeat center / cover;
	}
	ul.top_icon_box li > span.active.icon_scrap {
		background: url("../../images/icon/icon_scrap_on_m.png") no-repeat center / cover;
	}
}
@media (max-width: 576px) {
	#con_top_wrap {
    height: 220px;
	}
	.con_txt_box > p.con_top_cate {
    font-size: 14px;
    line-height: 20px;
	}
	.con_txt_box > h2.con_top_tit {
    font-size: 28px;
	}
}
@media (max-width: 319px) {
	.con_txt_box > p.con_top_cate {
    font-size: 12px;
    line-height: 20px;
	}
	.con_txt_box > h2.con_top_tit {
    font-size: 25px;
	}
	.con_txt_box > p.con_top_name {
		font-size: 13px;
		margin-top: 7px;
	}
}

/** Contents Navigation **/
#con_navi_wrap {
	display: block;
	overflow: hidden;
	width: 100%;
	background-color: #ffffff;
}
.con_navi_inner {
	width: 100%;
	height: 80px;
	border-bottom: 1px rgb(0, 0, 0, 0.10) solid;
	box-sizing: border-box;
}
.con_navi_box {
	position: relative;
	width: 100%;
	max-width: 1300px;
	height: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}
.con_navi_box > ul {
	display: inline-block;
	overflow: hidden;
	width: 100%;
	height: 100%;
	text-align: center;
}
.con_navi_box > ul li {
	display: inline;
	position: relative;
}
.con_navi_box > ul li a {
	display: inline-block;
	position: relative;
	height: 100%;
	padding: 0 9%;
	font-size: 20px;
	line-height: 80px;
	color: #222222;
	box-sizing: border-box;
}
.con_navi_box > ul li::before {
	content: "";
	display: block;
	position: absolute;
	left: -2px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	width: 1px;
	height: 15px;
	background-color: rgba(0, 0, 0, .30);
}
.con_navi_box > ul li:first-child::before {
	display: none;
	margin-left: 0;
}
.con_navi_box > ul li a.on {
	font-weight: 600;
	color: #1e7abf;
}
.con_navi_box > ul li a.on::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #1e7abf;
}
@media (max-width: 1300px) {
	.con_navi_inner {
    height: 70px;
	}
	.con_navi_box > ul li a {
		padding: 0 8%;
    line-height: 70px;
	}
}
@media (max-width: 1024px) {
	.con_navi_inner {
    height: 60px;
	}
	.con_navi_box > ul li a {
		font-size: 18px;
    line-height: 60px;
	}
}
@media (max-width: 768px) {
	.con_navi_inner {
    height: 55px;
	}
	.con_navi_box > ul li a {
		padding: 0 6.8%;
		font-size: 16px;
    line-height: 55px;
	}
}
@media (max-width: 680px) {
	.con_navi_box > ul li a {
		
	}
}
@media (max-width: 576px) {
	.con_navi_inner {
    height: 50px;
	}
	.con_navi_box > ul li a {
		font-size: 15px;
		line-height: 50px;
	}
}
@media (max-width: 550px) {
	.con_navi_box > ul li a {
		padding: 0 5.5%;
	}
}
@media (max-width: 414px) {
	.con_navi_box > ul li a {
		padding: 0 4.5%;
		font-size: 14px;
	}
}
@media (max-width: 350px) {
	.con_navi_box > ul li a {
		padding: 0 4%;
	}
}

/** Contents **/
#con_wrap {
	display: block;
	overflow: hidden;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	padding: 75px 0 100px 0;
	box-sizing: border-box;
}
.con_inner {
	position: relative;
	width: 100%;
	max-width: 1100px;
	height: 100%;
	margin: 0 auto;
}
@media (max-width: 1300px) {
	#con_wrap {
		padding: 75px 3% 100px 3%;
	}
}
@media (max-width: 1024px) {
	#con_wrap {
		padding: 65px 3% 90px 3%;
	}
}
@media (max-width: 768px) {
	#con_wrap {
		padding: 60px 5% 80px 5%;
	}
}
@media (max-width: 576px) {
	#con_wrap {
		padding: 50px 5% 80px 5%;
	}
}

/* -------------------------------- 

Input Style

-------------------------------- */
.input_box {
	display: block;
	overflow: hidden;
	width: 100%;
}
.input_box .comInput {
	display: block;
	position: relative;
	width: 500px;
	margin: 10px auto 0;
}
.input_box .comInput > label {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	font-size: 20px;
	font-weight: 300;
	color: #666666;
	text-align: center;
	cursor: text;
	line-height: 70px;
	background: transparent;
}
.input_box .comInput > input {
	display: block;
	position: relative;
	width: 100%;
	height: 70px;
	border: none;
	border-bottom: 1px #000000 solid;
	background-color: transparent;
	text-align: center;
	box-sizing: border-box;
}
.input_box .comInput > input.focus {
	font-size: 20px;
	font-weight: 500;
	font-style: normal;
	color: #000000;
	background-color: transparent;
}
@media (max-width: 992px) {
	.input_box .comInput > label,
	.input_box .comInput > input.focus {
		font-size: 18px;
		line-height: 65px;
	}
	.input_box .comInput > input {
		height: 65px;
	}
}
@media (max-width: 576px) {
	.input_box .comInput {
		width: 100%;
	}
}
@media (max-width: 320px) {
	.input_box .comInput > label,
	.input_box .comInput > input.focus {
		font-size: 16px;
		line-height: 60px;
	}
	.input_box .comInput > input {
		height: 60px;
	}
}
/* -------------------------------- 

Marketing Agreement Style

-------------------------------- */
.btn_check {
	display: block;
	overflow: hidden;
	width: 500px;
	margin: 20px auto 0;
	text-align: left;
}
.btn_check > input[type="checkbox"] {
	margin-right: 5px;
	cursor: pointer;
}
.btn_check > label {
	font-size: 14px;
	font-weight: 300;
	color: #666666;
}
.agree_ex {
	display: block;
	width: 500px;
	margin: 5px auto 0;
	text-align: left;
	font-size: 14px;
	font-weight: 300;
	color: #888888;
	line-height: 20px;
	padding: 0 22px;
	box-sizing: border-box;
}
@media (max-width: 576px) {
	.btn_check {
		width: 100%;
	}
	.agree_ex {
		width: 100%;
		font-size: 13px;
		line-height: 20px;
		padding: 0 22px;
	}
}
/* -------------------------------- 

Security Style

-------------------------------- */
.security_inner {
	margin: 20px auto 0;
	overflow: hidden;
}
.security_box {
	width: 340px;
	height: 78px;
	margin: 0 auto;
}
.security_box .char_img {
	float: left;
	width: 230px;
}
.security_box .char_img > img {
	width: 230px;
	height: 78px;
}
.security_box > ul {
	float: left;
	width: 110px;
	background-color: #ffffff;
}
.security_box > ul li.refresh > a {
	display: block;
	position: relative;
	border: 1px solid #c0c0c0;
	padding: 9px 7px 10px 7px;
	box-sizing: border-box;
}
.security_box > ul li.refresh > a em {
	display: inline-block;
	width: 15px;
	height: 15px;
	vertical-align: middle;
	margin-right: 4px;
	background: url("../../images/icon/icon_refresh.svg") no-repeat;
	background-size: 100%;
	text-indent: -555555px;
	font-size: 1px;
	opacity: .5;
}
.security_box > ul li.sound > a {
	display: block;
	border: 1px solid #c0c0c0;
	padding: 9px 7px 11px 7px;
	box-sizing: border-box;
	margin-top: -1px;
}
.security_box > ul li.sound > a em {
	display: inline-block;
	width: 15px;
	height: 15px;
	vertical-align: middle;
	margin-right: 4px;
	background: url("../../images/icon/icon_voice.svg") no-repeat;
	background-size: 100%;
	text-indent: -555555px;
	font-size: 1px;
	opacity: .5;
}
.security_box > ul li.img > a {
	display: block;
	border: 1px solid #c0c0c0;
	padding: 9px 7px 11px 7px;
	box-sizing: border-box;
	margin-top: -1px;
}
.security_box > ul li.img > a em {
	display: inline-block;
	width: 12px;
	height: 10px;
	vertical-align: middle;
	margin-right: 4px;
	background: url("../../images/icon/icon_img.svg") no-repeat;
	background-size: 100%;
	text-indent: -555555px;
	font-size: 1px;
	opacity: .5;
}
.security_box > ul li span {
	display: inline-block;
	font-size: 12px;
	color: #666666;
}
.security_box > ul li img {
	vertical-align: middle;
	margin-right: 5px;
}
.security_input {
	display: block;
	position: relative;
	width: 340px;
	margin: 5px auto 0;
	background-color: #ffffff;
}
.security_input > label {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	font-size: 16px;
	color: #444444;
	text-align: center;
	cursor: text;
	line-height: 70px;
}
.security_input > input {
	display: block;
	position: relative;
	width: 100%;
	height: 70px;
	box-sizing: border-box;
	border: 1px #c0c0c0 solid;
	background-color: transparent;
	padding: 0 20px;
	text-align: center;
}
@media (max-width: 576px) {
	.security_box {
    width: 70%;
    height: auto;
	}
	.security_box .char_img {
    float: none;
    width: 100%;
    margin: 0 auto;
	}
	.security_box .char_img > img {
    width: 100%;
    height: auto;
	}
	.security_box > ul {
		float: none;
		width: 100%;
		margin: 0 auto;
	}
	.security_box > ul li.refresh > a,
	.security_box > ul li.sound > a,
	.security_box > ul li.img > a {
		text-align: center;
    padding: 13px 7px;
	}
	.security_input {
		width: 70%;
		margin: 7px auto 0;
	}
}
@media (max-width: 480px) {
	.security_box {
    width: 100%;
    height: auto;
	}
	.security_input {
    width: 100%;
	}
}
/* -------------------------------- 

Button Style

-------------------------------- */
.btn_login a {
	display: block;
	margin: 40px auto 0;
	width: 400px;
	padding: 20px 0;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	color: #ffffff;
	background-color: #1e7abf;
	border-radius: 10px;
	box-sizing: border-box;
}
.inputBox_ex {
	display: block;
	margin: 30px auto 0;
	font-size: 14px;
	font-weight: 300;
	color: #666666;
	line-height: 22px;
	text-align: center;
}
.inputBox_ex > a {
	color: #425ebd;
}
@media (max-width: 576px) {
	.btn_login a {
		width: 100%;
		padding: 15px 0;
		font-size: 16px;
	}
}
/* -------------------------------- 

Page Style

-------------------------------- */
.list_num {
	text-align: center;
	margin-top: 40px;
}
.list_num ul {
	border: 0;
	display: table;
	margin: 0 auto;
}
.list_num ul li {
	float: left;
}
.list_num ul li a {
	display :block;
	border: 1px solid #d5d5d5;
	background: #ffffff;
	width: 32px;
	height: 32px;
	line-height: 31px;
	margin: 0 2px;
	font-size: 12px;
	font-weight: 300;
	color: #444444;
	box-sizing: border-box;
}
.list_num ul li a:hover {
	border: 1px solid #444444;
}
.list_num ul li a.active {
	color: #ffffff;
	background: #444444;
	border: none;
}
/** First Page of Last Page **/
.list_num ul li a.off {
	color: #cccccc;
	border: 1px solid #d5d5d5;
	pointer-events: none;
}
.list_num ul li a.first {
	display: block;
	margin: 0 3px 0 0;
}
.list_num ul li a.prev {
	margin: 0 10px 0 0;
}
.list_num ul li a.last {
	display: block;
	margin: 0 0 0 3px;
}
.list_num ul li a.next {
	margin: 0 0 0 10px;
}
@media (max-width: 768px) {
	.list_num ul li a.first, .list_num ul li a.last {
		display: none;
	}
}
@media (max-width: 320px) {
	.list_num ul li a {
		width: 30px;
		height: 30px;
		line-height: 28px;
		margin: 0 2px;
		font-size: 12px;
		font-weight: 300;
		color: #444444;
		box-sizing: border-box;
	}
}

/* -------------------------------- 

Layers Style - Add 2022.09.06.

-------------------------------- */
#layer_inner {
	display: block;
}
#layer_inner {
	/*
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	
	align-items: center;
	justify-content: center;*/
	position: relative;
	width: 100%;
	height: 100%;
	padding: 20px;
	overflow-y: auto;
	overflow-x: hidden;
	box-sizing: border-box;
	z-index: 500;
}
#layer_inner.open {
	display: table;
}
.list_mask {
	position: fixed;
	top: 0px;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.93);
	z-index: 150;
	box-sizing: border-box;
	display: none;
}
.list_mask.is_active {
	display: block;
}

#layer_inner .layer_list_box {
	box-sizing: border-box;
	line-height: 50px;
	max-width: 100%;
	max-height: 100%;
	margin: 0 auto;
}
.layer_list_box > h1 {
	display: block;
	font-size: 40px;
	font-weight: 600;
	color: #1e7abf;
	line-height: 50px;
	margin-bottom: 25px;
}
ul.layer_sub_list > li a {
	position: relative;
	display: inline-block;
	font-size: 24px;
	color: #ffffff;
	margin: 5px 0;
	padding: 5px 0;
	line-height: 32px;
}
ul.layer_sub_list > li a::after {
	content: "";
	width: 0;
	position: absolute;
	display: block;
	left: 0;
	bottom: 4px;
	border-width: 0 0 1px;
	border-style: solid;
	background-color: #ffffff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
ul.layer_sub_list > li a:hover::after {
	width: 100%;
}
/*** Add 2025.02.07. ***/
.layer_inner_con {
	display: table-cell;
	vertical-align: middle;
}
.layer_box {
	max-width: 450px;
	margin: 0 auto;
	background-color: #ffffff;
	padding: 25px;
	box-sizing: border-box;
}
.layer_box > h1.layer_box_tit {
	font-size: 18px;
	font-weight: 600;
	color: #000000;
	margin-bottom: 20px;
}
.layer_box > p {
	font-size: 16px;
	color: #666666;
	line-height: 22px;
	margin-bottom: 20px;
}
/** Layer Input **/
.layer_input_box {
  width: 100%;
  max-width: 450px;
}
.layer_input {
  display: block;
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 5px auto;
	background-color: #ffffff;
	border-bottom: 1px #999999 solid;
	box-sizing: border-box;
}
.layer_input > label {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  font-size: 15px;
  color: #aaaaaa;
  text-align: left;
  cursor: text;
  line-height: 40px;
  background: transparent;
}
.layer_input > input {
  display: block;
  position: relative;
  width: 100%;
  height: 40px;
	line-height: 40px;
  border: none;
  background-color: transparent;
  text-align: left;
	box-sizing: border-box;
}
.layer_input.focus {
  border-bottom: 1px #000000 solid;
	background-color: #ffffff;
	box-sizing: border-box;
}
.layer_input.focus > input {
	font-size: 15px;
	color: #000000;
}

/** Layer Textarea **/
.layer_textarea_box {
  width: 100%;
  max-width: 450px;
  margin: 20px auto 0;
}
.layer_textarea {
  display: block;
  position: relative;
  width: 100%;
  max-width: 450px;
	background-color: #ffffff;
	border-bottom: 1px #999999 solid;
}
.layer_textarea > label {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  font-size: 15px;
  color: #999999;
  text-align: left;
  cursor: text;
  line-height: 22px;
  background-color: transparent;
}
.layer_textarea > textarea {
  display: block;
  position: relative;
  width: 100%;
  height: 130px;
  border: none;
  background-color: transparent;
  text-align: left;
	box-sizing: border-box;
	padding-bottom: 7px;
}
.layer_textarea.focus {
	border-bottom: 1px #000000 solid;
	background-color: #ffffff;
	box-sizing: border-box;
}
.layer_textarea.focus > textarea {
	font-size: 15px;
	color: #000000;
}
/** Layer Buttons **/
.layer_btn_box {
  width: 100%;
  margin-top: 30px;
  text-align: center;
}
.layer_btn_box > a.layer_btn {
  display: inline-block;
  width: 70px;
  height: 28px;
  line-height: 25px;
  text-align: center;
  margin: 0 7px;
	border: none;
	box-sizing: border-box;
}
.layer_btn_box > a.layer_btn span {
  font-size: 13px;
  color: #ffffff;
}
@media (max-width: 1024px) {
	.layer_list_box > h1 {
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 20px;
	}
	ul.layer_sub_list > li a {
    font-size: 20px;
	}
}
@media (max-width: 768px) {
	#layer_inner .layer_list_box {
    line-height: 42px;
	}
	.layer_list_box > h1 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 15px;
	}
	ul.layer_sub_list > li a {
    font-size: 18px;
		line-height: 26px;
		margin: 7px 0;
	}
	ul.layer_sub_list > li a::after {
    display: none;
	}
}
@media (max-width: 414px) {
	.layer_list_box > h1 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
	}
	ul.layer_sub_list > li a {
    font-size: 15px;
	}
}
@media (max-width: 320px) {
	.layer_box > h1.layer_box_tit {
		font-size: 16px;
	}
	.layer_box > p {
		font-size: 14px;
		color: #666666;
		line-height: 22px;
		margin-top: 20px;
	}
	.layer_input > label,
	.layer_input > input.focus,
	.layer_textarea > label,
	.layer_textarea > textarea.focus {
		font-size: 13px;
	}
}
.btn_list_close {
	position: absolute;
	width: 25px;
	height: 25px;
	top: 0;
	right: 0;
	padding: 30px;
	background: url(../../images/icon/icon_close_pc.png) no-repeat center;
	z-index: 550;
}
@media (max-width: 977px) {
	.btn_list_close {
		position: absolute;
		right: 0;
		padding: 30px;
		background: url("../../images/icon/icon_close_m.png") no-repeat center;
		background-size: 24px 24px;
	}
}
@media (max-width: 768px) {
	.btn_list_close {
		position: absolute;
		right: 0;
		padding: 30px;
		background: url("../../images/icon/icon_close_m.png") no-repeat center;
		background-size: 24px 24px;
	}
}
@media (max-width: 640px) {
	.btn_list_close {
		position: absolute;
		right: 0;
		padding: 20px;
		background: url("../../images/icon/icon_close_m.png") no-repeat center;
		background-size: 22px 22px;
	}
}
/* --------------------------------

Button Banner Style - Add 2023.09.20.

-------------------------------- */
#btn_bn {
	display: flex;
	flex-wrap: wrap;
	gap: 0px;
	width: 100%;
	box-sizing: border-box;
}
.bg_blue1 {
	background-color: #1e7abf;
}
.bg_blue2 {
	background-color: #425ebd;
}
.btn_bn_box {
	width: calc((100% - 0px * 2) / 2);
	padding: 20px 3%;
	text-align: center;
	box-sizing: border-box;
}
.btn_bn_box > a.tit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	width: 100%;
	font-size: 30px;
	font-weight: 500;
	color: #ffffff;
	padding: 20px 0;
}
.btn_bn_box > a.tit > i.arrow_white {
	display: inline-block;
	width: 40px;
	height: 31px;
	background: url(../../images/icon/icon_arrow.svg) no-repeat center;
	background-size: 100%;
	margin-left: 15px;
	margin-top: 5px;
}
@media (max-width: 1300px) {
	.btn_bn_box {
		padding: 10px 3%;
	}
	.btn_bn_box > a.tit {
		font-size: 26px;
	}
	.btn_bn_box > a.tit > i.arrow_white {
		width: 36px;
		height: 28px;
	}
}
@media (max-width: 1024px) {
	.btn_bn_box > a.tit {
		font-size: 22px;
		padding: 15px 0;
	}
	.btn_bn_box > a.tit > i.arrow_white {
		width: 30px;
		height: 23px;
		margin-left: 10px;
		margin-top: 3px;
	}
}
@media (max-width: 768px) {
	.btn_bn_box > a.tit {
		font-size: 18px;
		padding: 10px 0;
	}
	.btn_bn_box > a.tit > i.arrow_white {
		width: 26px;
		height: 20px;
	}
}
@media (max-width: 630px) {
	.btn_bn_box {
		width: calc((100% - 0px * 2) / 1);
	}
}
@media (max-width: 576px) {
	.btn_bn_box {
		padding: 10px 5%;
	}
}
@media (max-width: 440px) {
	.btn_bn_box > a.tit {
		font-size: 16px;
	}
	.btn_bn_box > a.tit > i.arrow_white {
		width: 22px;
		height: 17px;
		margin-left: 8px;
	}
}
/* -------------------------------- 

Contents List Style - Add 2025.02.07.

-------------------------------- */
.conList_wrap {
	display: none;
	position: fixed;
	top: 0;
	width: 100%;
	height: 100vh;
	background: url(../../images/bg/bg_layer_list.jpg) no-repeat fixed center / contain rgba(255, 255, 255, 1);
	padding-top: 100px;
	box-sizing: border-box;
	z-index: 50;
}
.conList_wrap.open .conList_inner {
	opacity: 1;
	transition-delay: 0.10s;
	padding: 50px 0 4% 0;
}
.conList_wrap.open .conList_box {
	opacity: 1;
	transition-delay: 0.1s;
}
.conList_tit {
	position: fixed;
	top: 0;
	left: 0;
	padding: 25px 40px;
	font-size: 34px;
	font-weight: 600;
	color: #1e7abf;
	box-sizing: border-box;
	z-index: 70;
}
.conList_close {
	position: fixed;
	top: 0;
	right: 0;
	padding: 40px;
	background: url(../../images/icon/icon_close.svg) no-repeat center;
	background-size: 30px 30px;
	box-sizing: border-box;
	z-index: 70;
}
.conList_inner {
	width: 100%;
	height: 100%;
	opacity: 0;
	box-sizing: border-box;
	overflow-y: auto;
	overflow-x: hidden;
	transition: opacity .2s ease;
  -webkit-transition: opacity .2s ease;
}
.conList_box {
	max-width: 1300px;
	box-sizing: border-box;
	margin: 0 auto;
	-webkit-transition: 0.10s;
	transition: 0.10s;
}
ul.snb {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(4, 22%);
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	height: auto;
}
ul.snb > li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px 0;
	margin-bottom: 40px;
	vertical-align: top;
	box-sizing: border-box;
}
ul.snb > li:first-child {
	margin-left: 0;
}
ul.snb > li > h2 {
	display: block;
	width: 100%;
	color: #222222;
	font-size: 26px;
	font-weight: 600;
	line-height: 40px;
	position: relative;
	cursor: pointer;
}
ul.snb > li > h2 > em {
	display: none;
	position: absolute;
	top: 10px;
	right: 3px;
	width: 11px;
	height: 11px;
	border-top: 2px rgba(0, 0, 0, .4) solid;
	border-right: 2px rgba(0, 0, 0, .4) solid;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}
ul.snb > li > h2.active > em {
	border-top: 2px rgba(0, 0, 0, 1) solid;
	border-right: 2px rgba(0, 0, 0, 1) solid;
	display: inline-block;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	top: 17px;
}
ul.snb > li > h2::before,
ul.snb > li > h2::after {
	content: "";
	height: 1px;
	position: absolute;
	left: 0;
	bottom: -10px;
}
ul.snb > li > h2::before {
	width: 100%;
	background: #dddddd;
}
ul.snb > li > h2::after {
	width: 100px;
	background: #1e7abf;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
ul.snb > li:hover > h2 {
	color: #1e7abf;
}
ul.snb > li:hover > h2::after {
	width: 100%;
}
ul.snb > li > h2.active {
	color: #1e7abf;
}
ul.snb > li > h2.active::after {
	width: 100%;
}
ul.snb > li > ul.depth2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px 0;
}
ul.snb > li > ul.depth2 > li {
	position: relative;
}
ul.snb > li > ul.depth2 > li a {
	color: #666666;
	font-size: 16px;
	line-height: 24px;
	-webkit-transition: all 0.1s;
	transition: all 0.1s;
}
ul.snb > li > ul.depth2 > li:hover a {
	color: #1e7abf;
	font-weight: 500;
}
/** Max 1024px Sub List **/
ul.m_snb {
	display: none;
	width: 100%;
}
ul.m_snb > li {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 0;
	margin-bottom: 35px;
	vertical-align: top;
}
ul.m_snb > li > a {
	display: block;
	width: 100%;
	color: #222222;
	font-size: 20px;
	font-weight: 600;
	line-height: 40px;
	position: relative;
	cursor: pointer;
}
ul.m_snb > li > a > em {
	display: block;
	position: absolute;
	top: 10px;
	right: 3px;
	width: 11px;
	height: 11px;
	border-top: 2px rgba(0, 0, 0, .4) solid;
	border-right: 2px rgba(0, 0, 0, .4) solid;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}
ul.m_snb > li > a::before,
ul.m_snb > li > a::after {
	content: "";
	height: 1px;
	position: absolute;
	left: 0;
	bottom: -5px;
}
ul.m_snb > li > a::before {
	width: 100%;
	background: #dddddd;
}
ul.m_snb > li > a::after {
	width: 100px;
	background: #1e7abf;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
ul.m_snb > li:hover > a {
	color: #1e7abf;
}
ul.m_snb > li:hover > a::after {
	width: 100%;
}
ul.m_snb > li.on > a > em {
	border-top: 2px rgba(0, 0, 0, 1) solid;
	border-right: 2px rgba(0, 0, 0, 1) solid;
	display: inline-block;
	transform: rotate(315deg);
	-webkit-transform: rotate(315deg);
	top: 17px;
}
ul.m_snb > li.on > a {
	color: #1e7abf;
}
ul.m_snb > li.on > a::after {
	width: 100%;
}
ul.m_depth2 {
	display: none;
	width: 100%;
}
ul.m_depth2 > li {
	position: relative;
	margin-bottom: 7px;
}
ul.m_depth2 > li:last-child {
	margin-bottom: 0;
}
ul.m_depth2 > li a {
	display: block;
	color: #666666;
	font-size: 16px;
	line-height: 24px;
	padding: 7px 0;
	-webkit-transition: all 0.1s;
	transition: all 0.1s;
}
ul.m_depth2 > li:hover a {
	color: #1e7abf;
	font-weight: 500;
}
@media (max-width: 1400px) {
	.conList_wrap {
		padding-top: 90px;
	}
	.conList_box {
    padding: 0 3%;
	}
}
@media (max-width: 1300px) {
	.conList_wrap {
		padding-top: 80px;
	}
	ul.snb {
		grid-template-columns: repeat(4, 23%);
	}
	ul.snb > li {
		gap: 30px 0;
		margin-bottom: 55px;
	}
	ul.snb > li > h2 {
		font-size: 22px;
	}
	ul.snb > li > h2::before,
	ul.snb > li > h2::after {
		bottom: -12px;
	}
}
@media (max-width: 1024px) {
	.conList_wrap {
		padding-top: 70px;
		background: rgba(255, 255, 255, 1);
	}
	.conList_wrap.open .conList_inner {
		padding: 40px 0 40px 0;
		border-top: 1px rgba(0, 0, 0, .1) solid;
	}
	.conList_tit {
		padding: 20px 3%;
		font-size: 30px;
	}
	.conList_close {
    padding: 35px;
    background-size: 22px;
	}
	ul.snb {
    display: none;
	}
	ul.m_snb {
		display: block;
	}
}
@media (max-width: 768px) {
	.conList_box {
    padding: 0 5%;
	}
	ul.m_snb > li > a {
		font-size: 18px;
		font-weight: 500;
		line-height: 36px;
	}
	ul.m_depth2 > li a {
		font-size: 15px;
    line-height: 20px;
	}
}
@media (max-width: 576px) {
	.conList_tit {
		padding: 17px 5%;
		font-size: 26px;
	}
	.conList_close {
    padding: 30px;
    background-size: 20px;
	}
	ul.m_snb > li > a {
		font-size: 16px;
		line-height: 32px;
	}
	ul.m_depth2 > li a {
		font-size: 14px;
    line-height: 18px;
	}
}
