@charset "UTF-8";

/* --------------------------------------------------------------------------------------------
	## INFO
	   - POINT COLOR1. rgb(30,29,133)  #1e1d85
	   - POINT COLOR2. rgb(14,198,213) #4f52b8
-------------------------------------------------------------------------------------------- */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css');

@font-face {
	font-family: 'NanumSquareRound';
	src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_two@1.0/NanumSquareRound.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

/* --------------------------------------------------------------------------------------------
	## COMMON
-------------------------------------------------------------------------------------------- */
/* FONTS */
html,
body,
input,
textarea,
button {
	font-family: 'NanumSquareRound', sans-serif;
}

/* SITE SETTING */
html,
body {
	min-height: 100%;
	color: #707070;
	font-size: 100%;
	letter-spacing: -0.025em;
}
body * {
	user-select: none;
}
body img {
	pointer-events: none;
}
#captcha {
	pointer-events: auto;
}

.inner {
	width: 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 15px;
}
.btn_more {
	position: absolute;
	width: auto;
	height: 30px;
	padding: 0 10px;
	right: 0;
	bottom: 0;
	overflow: hidden;
	color: #838383;
	font-size: 14px;
	text-align: center;
	line-height: 30px;
	background: #fff;
	border: 1px solid #c7c7c7;
	border-radius: 3px;
	-webkit-transition: background 350ms ease, border 350ms ease;
	   -moz-transition: background 350ms ease, border 350ms ease;
			transition: background 350ms ease, border 350ms ease;
}
.btn_more:hover {
	color: #fff;
	background: #4f52b8;
	border-color: rgba(0,0,0,0.2);
	-webkit-transition: color 350ms ease, background 350ms ease, border 350ms ease;
	   -moz-transition: color 350ms ease, background 350ms ease, border 350ms ease;
			transition: color 350ms ease, background 350ms ease, border 350ms ease;
}
.btn_more span {
	position: relative;
	display: inline-block;
	margin-left: 3px;
	padding-bottom: 5px;
	top: 2px;
	vertical-align: -webkit-baseline-middle;
	line-height: 28px;
}
.btn_more span::before {
	position: relative;
	font-size: 18px;
}

.vtrow {
	display: -webkit-box;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
}
.vt2row {-webkit-line-clamp: 2;}
.vt3row {-webkit-line-clamp: 3;}
.vt4row {-webkit-line-clamp: 4;}
.vt5row {-webkit-line-clamp: 5;}

.dashed_line {
	position: relative;
	padding: 5px 0 5px 11px;
}
.dashed_line::before {
	position: absolute;
	display: block;
	content: '';
	width: 0;
	top: 12px;
	left: 7px;
	bottom: 12px;
	z-index: 1;
	border-left: 2px dashed #979797;
}
.dashed_line::after {
	position: absolute;
	display: block;
	content: '';
	width: 16px;
	height: 100%;
	top: 0;
	left: 0;
	background: #f5f5f5;
}
.dashed_line > span {
	position: absolute;
	display: block;
	width: 16px;
	height: 16px;
	left: 0;
	z-index: 2;
	background: #f5f5f5;
	border-radius: 50%;
}
.dashed_line .top {
	top: -5px;
}
.dashed_line .bottom {
	bottom: -5px;
}
.dashed_line ul {
	margin-left: -11px;
}
.dashed_line li {
	position: relative;
	margin: 20px 0 0;
	z-index: 3;
}
.dashed_line li:first-child {
	margin-top: 0;
}
.dashed_line li .ico_line {
	position: relative;
	display: inline-block;
	width: auto;
	padding-left: 25px;
	line-height: 1;
}
.dashed_line li .ico_line::before {
	position: absolute;
	display: block;
	content: '';
	width: 10px;
	height: 10px;
	margin-top: 3px;
	top: 0;
	left: 3px;
	border-radius: 50%;
	-webkit-transition: background 350ms ease;
	   -moz-transition: background 350ms ease;
			transition: background 350ms ease;
}
.dashed_line li .ico_line::before,
.dashed_line.hide_effect li .ico_line:hover::before {
	background: #979797;
}
.dashed_line li .ico_line:hover::before {
	background: #4f52b8;
}
.dashed_line li .dl_title {
	margin-right: 15px;
	color: #222;
}
.dashed_line li .dl_con {
	color: #979797;
}
.dashed_line li .eline {
	position: relative;
	display: inline-block;
	height: 100%;
	font-style: normal;
}
.dashed_line li .eline::after {
	position: absolute;
	display: inline-block;
	content: '';
	height: 1px;
	padding: 0;
	left: 0;
	right: 100%;
	bottom: -5px;
	overflow: hidden;
	background: #4f52b8;
	-webkit-transition: all 350ms ease;
	   -moz-transition: all 350ms ease;
			transition: all 350ms ease;
}
.dashed_line li .eline:hover::after {
	right: 0;
}
.dashed_line.hide_effect li .eline::after {
	display: none;
}
.dashed_line .dotlist p,
.dashed_line .dotlist li {
	line-height: 1.6;
}

.tbl {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}
.tbl th {
	padding: 10px;
	color: #222;
	font-size: 1.125em;
	font-weight: normal;
	text-align: center;
	background: #f8f8f8;
	border: 0;
	border-top: 1px solid #d3d3d3;
	border-left: 1px dashed #d3d3d3;
}
.tbl td {
	padding: 10px;
	border: 1px solid #d3d3d3;
	border-left-style: dashed;
	border-right: 0;
}
.tbl .first {
	border-left: 0;
}
.tbl .last {
	border-right: 0;
}
.all_tac td {
	text-align: center;
}

.btn-black {
	background-color: #222;
	color: #fff;
}
.btn-black:hover {
	background-color: #5c5c5c;
	color: #fff;
}

/* --------------------------------------------------------------------------------------------
	## HEADER
-------------------------------------------------------------------------------------------- */
#header {
	position: absolute;
	width: 100%;
	height: 140px;
	top: 0;
	left: 0;
	z-index: 96;
	background: #fff;
	border-bottom: 1px solid transparent;
}
.openmenu #header {
	border-color: #7c7c7c;
}
#header .topbar {
	width: 100%;
	height: 40px;
	border-bottom: 1px solid #eaeaea;
}
#header .topbar .inner {
	padding-top: 10px;
	padding-bottom: 10px;
}
#header .topbar ul {
	display: flex;
	justify-content: flex-end;
	column-gap: 15px;
}
#header .topbar ul li a {
	position: relative;
}
#header .topbar ul li a::after {
	content: '';
	position: absolute;
	top: 2px;
	right: -8px;
	width: 1px;
	height: 14px;
	background-color: #000;
}
#header .topbar ul li:last-child a::after {
	display: none;
}
#header .inner {
	position: relative;
	height: 100px;
}
#header .inner h1 {
	position: absolute;
	width: 240px;
	height: 48px;
	transform: translateY(-50%);
	top: 50%;
	left: 0;
	z-index: 11;
}
#header .inner h1 a {
	display: block;
	width: 100%;
	height: 100%;
	background: url('../img/common/logo.png') center center no-repeat;
	background-size: contain;
}
#header #menu {
	position: relative;
	width: 100%;
	height: 100%;
	margin-right: 0;
	z-index: 10;
}
#header .gnbline {
	position: absolute;
	width: 100%;
	height: 0;
	margin: 0;
	padding: 0;
	top: 139px;
	left: 0;
	overflow: hidden;
	line-height: 0;
	background: #fff;
	border-top: 1px solid rgba(255,255,255,0);
	border-bottom: 1px solid #eaeaea;
	-webkit-transition: height 250ms ease 50ms, background 250ms ease 50ms;
	   -moz-transition: height 250ms ease 50ms, background 250ms ease 50ms;
			transition: height 250ms ease 50ms, background 250ms ease 50ms;
}
.openmenu #header .gnbline {
	height: 250px;
	border-top-color: #eaeaea;
	border-bottom-color: #1d2088;
	-webkit-transition: height 250ms ease 0ms, background 250ms ease 0ms;
	   -moz-transition: height 250ms ease 0ms, background 250ms ease 0ms;
			transition: height 250ms ease 0ms, background 250ms ease 0ms;
}
#header #menu #gnb {
	width: 100%;
	height: 100%;
}
#header #menu .gnb {
	width: 100%;
	padding-left: 30%;
}
#header #menu #gnb .dep1 {
	position: relative;
	width: 25%;
	height: 100%;
	float: left;
}
#header #menu #gnb a {
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	color: #4c4948;
	text-align: center;
	letter-spacing: -0.035em;
	-webkit-transition: color 300ms ease, background 300ms ease;
	   -moz-transition: color 300ms ease, background 300ms ease;
			transition: color 300ms ease, background 300ms ease;
}
#header #menu #gnb h3 {
	font-size: 1em;
}
#header #menu #gnb h3 a {
	position: relative;
	display: block;
	width: 100%;
	height: 100px;
	padding-top: 5px;
	color: #000;
	font-size: 1.25em;
	font-weight: 400;
	line-height: 91px;
	text-transform: uppercase;
	-webkit-transition: color 300ms ease;
	   -moz-transition: color 300ms ease;
			transition: color 300ms ease;
}
#header #menu #gnb .dep1:hover h3 a,
#header #menu #gnb .dep1 h3 a:hover,
#header #menu #gnb .on h3 a,
#header #menu #gnb .active h3 a {
	color: #4f52b8;
}
#header #menu #gnb .on h3 a,
#header #menu #gnb .active h3 a {
	font-weight: 700;
}
#header #menu #gnb .dep1 h3 .toggle_gnb {
	display: none;
}
#header #menu #gnb .dep1 .dep2 {
	position: relative;
	display: none;
	width: 100%;
	height: 250px;
	overflow: hidden;
	-webkit-transition: background 250ms ease;
	   -moz-transition: background 250ms ease;
			transition: background 250ms ease;
	margin-top: -2px;
	border-top: 2px solid transparent;
}
#header #menu #gnb .dep1:hover .dep2 {
	background: #f4f3fd;
	border-color: #7d6fff;
}
#header #menu #gnb li li {
	width: 100%;
	float: none;
}
#header #menu #gnb li li:first-child {
	padding-top: 5px;
}
#header #menu #gnb li li a {
	display: block;
	width: 100%;
	height: 40px;
	margin: 0;
	padding: 0;
	font-size: 15px;
	line-height: 40px;
}
#header #menu #gnb li li a:hover,
#header #menu #gnb li li.active a,
#header #menu #gnb li li.on a {
	color: #4f52b8;
}

/* --------------------------------------------------------
	-- HEADER MOBILE - MENU
-------------------------------------------------------- */
/* MOBILE MENU TOGGLE BTN */
#header #btn_m_toggle {
	position: fixed;
	width: 23px;
	height: 20px;
	top: -60px;
	left: 20px;
	z-index: 1000;
	cursor: pointer;
	opacity: 0;
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	-webkit-transition: top 300ms ease, left 300ms ease, opacity 300ms ease;
	   -moz-transition: top 300ms ease, left 300ms ease, opacity 300ms ease;
			transition: top 300ms ease, left 300ms ease, opacity 300ms ease;
}
#header #btn_m_toggle .toggle_group {
	position: relative;
	margin: 0 auto;
	width: 100%;
	height: 100%;
}
#header #btn_m_toggle .toggle_group span {
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	background: #333;
	border-radius: 9px;
	left: 0;
	-webkit-transform: rotate(0deg);
	   -moz-transform: rotate(0deg);
			transform: rotate(0deg);
	-webkit-transition: -webkit-transform 250ms ease;
	   -moz-transition:    -moz-transform 250ms ease;
			transition:         transform 250ms ease;
}
#header #btn_m_toggle .toggle_group span:nth-child(1) { top:  1px; }
#header #btn_m_toggle .toggle_group span:nth-child(2) { top: 10px; }
#header #btn_m_toggle .toggle_group span:nth-child(3) { top: 19px; }
.open_mobilemenu #header #btn_m_toggle { left: 240px; }
.open_mobilemenu #header #btn_m_toggle .toggle_group span { background: #202020; }
.open_mobilemenu #header #btn_m_toggle .toggle_group span:nth-child(1) {
	top: 10px;
	-webkit-transform: rotate(135deg);
	   -moz-transform: rotate(135deg);
			transform: rotate(135deg);
}
.open_mobilemenu #header #btn_m_toggle .toggle_group span:nth-child(2) {
	opacity: 0;
	left: -30px;
}
.open_mobilemenu #header #btn_m_toggle .toggle_group span:nth-child(3) {
	top: 10px;
	-webkit-transform: rotate(-135deg);
	   -moz-transform: rotate(-135deg);
			transform: rotate(-135deg);
}

/* MOBILE HEADER SIDEBAR AREA */
#mobile_menu {
	position: fixed;
	width: 280px;
	height: 100%;
	top: 0;
	left: -101%;
	z-index: 999;
	background: #fff;
	border-right: 1px solid #1f1f1f;
	-webkit-transition: left 300ms ease;
	   -moz-transition: left 300ms ease;
			transition: left 300ms ease;
}
.open_mobilemenu #mobile_menu {
	left: 0;
}
#mobile_menu .topbar_m {
	padding: 10px 5px;
	background-color: #f9f9f9;
	border-bottom: 1px solid #dcdcdc;
}
#mobile_menu .topbar_m ul {
	display: flex;
	justify-content: center;
	column-gap: 15px;
}
#mobile_menu .topbar_m ul li a {
	position: relative;
}
#mobile_menu .topbar_m ul li a::after {
	content: '';
	position: absolute;
	top: 2px;
	right: -8px;
	width: 1px;
	height: 14px;
	background-color: #000;
}
#mobile_menu .topbar_m ul li:last-child a::after {
	display: none;
}
#mobile_menu h1 {
	position: relative !important;
	width: 100% !important;
	height: 60px !important;
	margin: 0 auto !important;
	border-bottom: 1px solid #dcdcdc;
}
#mobile_menu h1 a {
	position: absolute;
	display: block;
	width: 150px;
	height: 30px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-indent: -9999px;
	background: url('../img/common/logo.png') center center no-repeat;
	background-size: contain;
}
#mobile_menu .msgroup {
	position: relative;
	width: 100%;
	height: 100%;
	padding-bottom: 100px;
	overflow: hidden;
	overflow-y: scroll;
}
.admin #mobile_menu .msgroup {
	padding-bottom: 140px;
}
#mobile_menu .colsgroup li {
	position: relative;
	width: 50%;
	float: left;
	text-align: center;
}
#mobile_menu .colsgroup li:first-child::before {
	position: absolute;
	content: '';
	width: 1px;
	height: 12px;
	margin-top: -6px;
	top: 50%;
	right: 0;
	background: #454545;
}
#mobile_menu .colsgroup li.full_width {
	width: 100%;
	clear: left;
	background: #40b9d7;
}
#mobile_menu .colsgroup li a {
	display: block;
	padding: 0 5px;
	color: #303030;
	line-height: 39px;
	-webkit-transition: color 250ms ease, background 250ms ease;
	   -moz-transition: color 250ms ease, background 250ms ease;
			transition: color 250ms ease, background 250ms ease;
}
#mobile_menu .colsgroup li.full_width a {

}
#mobile_menu .colsgroup li a:hover {
	color: #4f52b8;
}

/* MOBILE LOGED AREA */
#header .mobile_loged {
	color: #fff;
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
}
#header .mobile_loged .mob_loged {
	display: none;
}
#header .mobile_loged .mob_loged.on {
	display: block;
}
#header .mobile_loged .loged_section {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	height: 100%;
	padding: 0 10px;
	color: #fff;
	-webkit-box-align: center;
	   -moz-box-align: center;
	   -ms-flex-align: center;
	-webkit-align-items: center;
			align-items: center;
}
#header .mobile_loged .loged_icon span {
	position: absolute;
	width: 100%;
	top: -2px;
	font-size: 24px;
	text-align: center;
}
#header .mobile_loged p {
	font-size: 13px;
}

/* MOBILE MENU */
#mobile_menu #mgnb li a {
	display: block;
	padding: 10px 0 10px 15px;
	color: #8f8f8f;
	font-size: 14px;
	background: #f5f5f5;
	border-bottom: 1px solid #dcdcdc;
	-webkit-transition: color 300ms ease, background 300ms ease;
	   -moz-transition: color 300ms ease, background 300ms ease;
			transition: color 300ms ease, background 300ms ease;
}
#mobile_menu #mgnb h3 {
	position: relative;
}
#mobile_menu #mgnb h3 a {
	padding: 10px;
	color: #3f3f3f;
	font-size: 15px;
	background: #f9f9f9;
}
#mobile_menu #mgnb li a:hover,
#mobile_menu #mgnb li.on h3 a,
#mobile_menu #mgnb li .on a {
	color: #7d80d2;
}
#mobile_menu #mgnb h3 a.on,
#mobile_menu #mgnb .dep1:hover h3 a,
#mobile_menu #mgnb .dep1.openlist h3 a {
	color: #fff;
	background: #7d80d2;
}
#mobile_menu #mgnb h3 strong {
	font-weight: normal;
}
#mobile_menu #mgnb h3 a p span {
	position: relative;
	display: inline-block;
	margin-left: 6px;
	padding-left: 10px;
	font-size: 13px;
	letter-spacing: 0.025em;
}
#mobile_menu #mgnb h3 a p span::before {
	position: absolute;
	display: block;
	content: '';
	width: 1px;
	height: 11px;
	left: 0;
	bottom: 3px;
	background: #3f3f3f;
	-webkit-transition: background 300ms ease;
	   -moz-transition: background 300ms ease;
			transition: background 300ms ease;
}
#mobile_menu #mgnb li a:hover p span::before,
#mobile_menu #mgnb li.on h3 a p span::before,
#mobile_menu #mgnb li .on a p span::before {
	background: #4f52b8;
}
#mobile_menu #mgnb h3 a.on span::before,
#mobile_menu #mgnb .dep1:hover h3 a span::before,
#mobile_menu #mgnb .dep1.openlist h3 a span::before {
	background: #fff;
}

#mobile_menu .toggle_gnb {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	z-index: 10;
	cursor: pointer;
}
#mobile_menu .btn_gnb_arrow {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	text-indent: -9999px;
}
#mobile_menu .btn_gnb_arrow::before {
	position: absolute;
	display: block;
	content: '';
	height: 43px;
	top: 0;
	right: 15px;
	color: #8f8f8f;
	font-size: 24px;
	font-family: 'Ionicons';
	text-align: center;
	text-indent: 0;
	line-height: 43px;
	-webkit-transition: color 300ms ease, background 300ms ease, -webkit-transform 300ms ease;
	   -moz-transition: color 300ms ease, background 300ms ease,    -moz-transform 300ms ease;
			transition: color 300ms ease, background 300ms ease,         transform 300ms ease;
}
#mobile_menu .dep1:hover .btn_gnb_arrow::before {
	color: #fff;
}
#mobile_menu .dep1.openlist .btn_gnb_arrow::before {
	color: #fff;
	-webkit-transform: rotate(180deg);
	   -moz-transform: rotate(180deg);
			transform: rotate(180deg);
}
#mobile_menu #mgnb h3 a.on + .toggle_gnb .btn_gnb_arrow::before {
	color: #fff;
}
#mobile_menu #mgnb .dep2 {
	display: none;
}
#mobile_menu #mgnb .dep2 li a {
	position: relative;
	display: block;
	padding-left: 25px;
}
#mobile_menu #mgnb .dep2 li.active a {
	color: #4f52b8;
}
#mobile_menu #mgnb .dep2 li a::before {
	position: absolute;
	display: block;
	content: '';
	width: 4px;
	height: 4px;
	margin-top: -2px;
	top: 50%;
	left: 15px;
	background: #8f8f8f;
	border-radius: 50%;
	-webkit-transition: background 250ms ease;
	   -moz-transition: background 250ms ease;
			transition: background 250ms ease;
}
#mobile_menu #mgnb .dep2 li.active a::before {
	background: #4f52b8;
}
#mobile_menu #mgnb .dep2 li a:hover::before {
	background: #4f52b8;
}
.mobile_menu_overlay {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 998;
	background: rgba(0,0,0,0.9);
}
#header .dep1 a i {
	display: none;
}

/* --------------------------------------------------------------------------------------------
	## FOOTER
-------------------------------------------------------------------------------------------- */
#footer {
	min-height: 375px;
	padding: 60px 0;
	clear: both;
	color: #fff;
	background-color: #293287;
	position: relative;
	overflow: hidden;
}
#footer .colspan:first-child {
	margin-left: 0;
}
#footer .colspan {
	position: relative;
	width: 23.5%;
	margin-left: 2%;
	float: left;
}
#footer h3 {
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 15px;
	color: #fff;
	font-size: 1.325em;
	font-weight: 700;
	line-height: 1;
}
#footer h3::after {
	position: absolute;
	display: block;
	content: '';
	width: 35px;
	height: 3px;
	left: 0;
	bottom: 0;
	background: #fff;
}
#footer li {
	position: relative;
	margin-top: 15px;
	font-size: 1em;
	display: grid;
	align-items: center;
	column-gap: 15px;
	grid-template-columns: auto 1fr;
}
/*#footer li .fico {
	display: inline-block;
	width: 32px;
	height: 32px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
#footer li .fico11 {background-image: url('../img/common/fico_11.png');}
#footer li .fico12 {background-image: url('../img/common/fico_12.png');}
#footer li .fico13 {background-image: url('../img/common/fico_13.png');}
#footer li .fico14 {background-image: url('../img/common/fico_14.png');}*/
#footer li a,
#footer li span {
	color: #fff;
	opacity: 0.75;
	-webkit-transition: opacity 250ms ease;
	   -moz-transition: opacity 250ms ease;
			transition: opacity 250ms ease;
}
#footer li:hover a,
#footer li:hover span {
	opacity: 1;
}
#footer li a b {
	display: block;
	margin-top: 5px;
	font-weight: initial;
}
#footer .colgroup {
	position: relative;
	width: 100%;
	margin-bottom: 30px;
}
#footer .inner {
	position: relative;
	z-index: 10;
}
#footer .type1 {
	position: absolute;
	top: -122px;
	left: -154px;
	animation: floatY 3s ease-in-out infinite;
}
#footer .type2 {
	position: absolute;
	top: -185px;
	left: -22px;
	animation: floatY 6s ease-in-out infinite;
}
#footer .type3 {
	position: absolute;
	top: 160px;
	left: 206px;
	animation: floatY 5s ease-in-out infinite;
}
#footer .type4 {
	position: absolute;
	top: -40px;
	left: 38%;
	animation: floatY 7s ease-in-out infinite;
}
#footer .type5 {
	position: absolute;
	bottom: -165px;
	right: -72px;
	animation: floatY 3s ease-in-out infinite;
}
#footer .type6 {
	position: absolute;
	top: 10px;
	right: -170px;
	animation: floatY 6s ease-in-out infinite;
}
#footer a {
	position: relative;
}
#footer a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 1px;
	transform: scaleX(0);
	transform-origin: left;
	transition: .3s;
	background-color: #fff;
}
#footer a:hover::after {
	transform: scaleX(1);
}
#footer .jibu a::before {
	content: '';
	border-radius: 100%;
	width: 5px;
	height: 5px;
	position: absolute;
	top: 6px;
	left: -11px;
	background-color: #fff;
}
#footer .copyright {
	line-height: 24px;
	opacity: 0.7;
}

.partner-banner {
	background-color: #F4F4F4;
	padding: 22px 0;
	margin-top: 100px;
}
.partner-banner .wrap {
	position: relative;
}
.partner-banner .wrap .stic {
	position: absolute;
	top: 50%;
	left: 0;
	width: auto;
	height: auto;
	transform: translateY(-50%);
}
.partner-banner .wrap .stic .txt1 {
	color: #000;
	text-align: center;
	font-size: 20px;
	font-weight: 800;
}
#partner_slide {
	padding-left: 100px;
}
#partner_slide .swiper-container .swiper-wrapper {
	transition-timing-function: linear;
	align-items: center;
}
#partner_slide .swiper-container .swiper-slide {
	width: auto;
}

/* --------------------------------------------------------------------------------------------
	## VISUAL
-------------------------------------------------------------------------------------------- */
#visual {
	height: 165px;
	margin-top: 140px;
	-webkit-transition: height 250ms ease, max-height 250ms ease;
	   -moz-transition: height 250ms ease, max-height 250ms ease;
			transition: height 250ms ease, max-height 250ms ease;
}

#visual.page {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
#visual.page0 {background-image: url('../img/page/visual/page0.jpg');}
#visual.page1 {background-image: url('../img/page/visual/page1.jpg');}
#visual.page2 {background-image: url('../img/page/visual/page2.jpg');}
#visual.page3 {background-image: url('../img/page/visual/page3.jpg');}
#visual .inner {
	position: relative;
	height: 100%;
}
#visual > .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
#visual > .inner > h2 {
	color: #fff;
	font-size: 2.25em;
}
.location_group {
	position: relative;
	height: 50px;
	margin-bottom: 50px;
	overflow: hidden;
	border-bottom: 1px solid #ebebeb;
}
.location_group li {
	position: relative;
	height: 50px;
	margin-left: 8px;
	padding-left: 12px;
	float: left;
	color: #222;
	font-size: 1em;
	line-height: 53px;
}
.location_group li:first-child {
	margin-left: 0;
	padding-left: 0;
}
.location_group li::before {
	position: absolute;
	display: block;
	content: '\f3d1';
	width: 20px;
	height: 50px;
	top: 1px;
	left: 0;
	color: #222;
	font-size: 1.125em;
	font-family: "Ionicons";
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 50px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.location_group li:first-child::before {
	display: none;
}
.location_group li a {
	display: block;
	height: inherit;
	color: #222;
}
#visual .swiper-container {
	position: relative;
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}
#visual .swiper-slide {
	background-color: transparent !important;
}
#visual .swiper-slide .inner {
	position: relative;
	height: 100%;
	z-index: 1;
}
#visual .swiper-slide .text_box {
	width: 100%;
	padding: 0;
	line-height: 1.2;
	letter-spacing: -0.05em;
}
#visual .swiper-slide .text_box h3,
#visual .swiper-slide .text_box p {
	color: #fff;
	font-size: 1em;
	text-align: center;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.45);
}
#visual .swiper-slide .text_box h3 {
	font-size: 60px;
	font-weight: 800;
}
#visual .swiper-slide .text_box p {
	font-size: 46px;
	font-weight: 700;
	margin-bottom: 5px;
}
#visual .swiper-slide .background {
	position: absolute;
	height: 100%;
	top: 0;
	left: 0;
	right: -200px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	-webkit-transition: left 1000ms ease 2500ms, right 1000ms ease 2500ms;
	   -moz-transition: left 1000ms ease 2500ms, right 1000ms ease 2500ms;
			transition: left 1000ms ease 2500ms, right 1000ms ease 2500ms;
}
#visual .swiper-slide.swiper-slide-active .background {
	left: -200px;
	right: 0;
	-webkit-transition: left 1000ms ease 0ms, right 1000ms ease 0ms;
	   -moz-transition: left 1000ms ease 0ms, right 1000ms ease 0ms;
			transition: left 1000ms ease 0ms, right 1000ms ease 0ms;
}

/* Bullets */
#visual .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	display: inline-block;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	background: #fff;
	border-radius: 6px;
	-webkit-transition: width 300ms ease, background 300ms ease;
	-moz-transition:    width 300ms ease, background 300ms ease;
	transition:         width 300ms ease, background 300ms ease;
}
#visual .swiper-pagination-bullet {
	background: #fff;
}
#visual .swiper-pagination-bullet-active {
	width: 36px;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	background: #D0403F;
}
#visual .swiper-pagination-bullet:hover,
#visual .swiper-pagination-bullet-active:hover {
	background: #D0403F;
}
#visual .swiper-pagination-fraction,
#visual .swiper-pagination-custom,
#visual .swiper-container-horizontal > .swiper-pagination-bullets {
	bottom: 50px;
	-webkit-transition: bottom 250ms ease;
	   -moz-transition: bottom 250ms ease;
			transition: bottom 250ms ease;
}
/* Arrows */
#visual .swiper-button-prev,
#visual .swiper-button-next {
	position: absolute;
	top: 50%;
	width: 30px;
	height: 50px;
	margin-top: 0;
	z-index: 10;
	cursor: pointer;
	text-align: center;
	line-height: 50px;
}
.mobile #visual .swiper-button-prev,
.mobile #visual .swiper-button-next {
	display: none;
}
#visual .swiper-button-prev.swiper-button-disabled,
#visual .swiper-button-next.swiper-button-disabled {
	opacity: 0.35;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=35)";
	filter: alpha(opacity=35);
	cursor: auto;
}
#visual .swiper-button-prev,
#visual .swiper-container-rtl .swiper-button-next {
	left: -80px;
	right: auto;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	-webkit-transition: left 300ms ease 150ms, opacity 300ms ease 150ms;
	   -moz-transition: left 300ms ease 150ms, opacity 300ms ease 150ms;
			transition: left 300ms ease 150ms, opacity 300ms ease 150ms;
}
#visual .swiper-button-next,
#visual .swiper-container-rtl .swiper-button-prev {
	right: -80px;
	left: auto;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	-webkit-transition: right 300ms ease 150ms, opacity 300ms ease 150ms;
	   -moz-transition: right 300ms ease 150ms, opacity 300ms ease 150ms;
			transition: right 300ms ease 150ms, opacity 300ms ease 150ms;
}
#visual:hover .swiper-button-prev,
#visual:hover .swiper-container-rtl .swiper-button-next {
	left: 20px;
	opacity: 0.5;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
	-webkit-transition: left 300ms ease 0ms, opacity 300ms ease 0ms;
	   -moz-transition: left 300ms ease 0ms, opacity 300ms ease 0ms;
			transition: left 300ms ease 0ms, opacity 300ms ease 0ms;
}
#visual:hover .swiper-button-next,
#visual:hover .swiper-container-rtl .swiper-button-prev {
	right: 20px;
	opacity: 0.5;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
	-webkit-transition: right 300ms ease 0ms, opacity 300ms ease 0ms;
	   -moz-transition: right 300ms ease 0ms, opacity 300ms ease 0ms;
			transition: right 300ms ease 0ms, opacity 300ms ease 0ms;
}
#visual .swiper-button-prev:hover,
#visual .swiper-container-rtl .swiper-button-next:hover {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
}
#visual .swiper-button-next:hover,
#visual .swiper-container-rtl .swiper-button-prev:hover {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
}
#visual .swiper-button-prev,
#visual .swiper-container-rtl .swiper-button-next,
#visual .swiper-button-next,
#visual .swiper-container-rtl .swiper-button-prev,
#visual .swiper-button-prev.swiper-button-black,
#visual .swiper-container-rtl .swiper-button-next.swiper-button-black,
#visual .swiper-button-prev.swiper-button-white,
#visual .swiper-container-rtl .swiper-button-next.swiper-button-white,
#visual .swiper-button-next.swiper-button-black,
#visual .swiper-container-rtl .swiper-button-prev.swiper-button-black,
#visual .swiper-button-next.swiper-button-white,
#visual .swiper-container-rtl .swiper-button-prev.swiper-button-white {
	background-image: none;
}
#visual .swiper-button-prev::after, #visual .swiper-container-rtl #visual .swiper-button-next::after,
#visual .swiper-button-next::after, #visual .swiper-container-rtl #visual .swiper-button-prev::after {
	content: '' !important;
}
#visual .arrow-icon-position {
	position: relative;
	width: 100%;
	height: 100%;
}
#visual .arrow-icon-position span {
	display: inline-block;
	color: #fff;
	font-size: 50px;
	text-align: center;
	-webkit-transition: color 300ms ease;
	-moz-transition:    color 300ms ease;
	transition:         color 300ms ease;
}

/* VISUAL TEXT ANIMATION */
#visual .vtxt {
	visibility: visible;
	-webkit-animation-name: vtxt;
			animation-name: vtxt;
	-webkit-animation-duration: 1000ms;
			animation-duration: 1000ms;
	-webkit-animation-fill-mode: both;
			animation-fill-mode: both;
}
#visual .vtxt2 {
	visibility: visible;
	-webkit-animation-name: vtxt;
			animation-name: vtxt;
	-webkit-animation-duration: 1000ms;
			animation-duration: 1000ms;
	-webkit-animation-delay: 300ms;
			animation-delay: 300ms;
	-webkit-animation-fill-mode: both;
			animation-fill-mode: both;
}

/* --------------------------------------------------------------------------------------------
	## CONTAINER
-------------------------------------------------------------------------------------------- */
#container {
	margin-bottom: 35px;
}
#container .newline {
	display: block;
}

/* --------------------------------------------------------------------------------------------
	## PAGE
-------------------------------------------------------------------------------------------- */
/* 페이지공통 */
#article .psc {
	color: #222;
}
.psc {
	margin-top: 100px;
	color: #222;
}
.psc:first-child {
	margin-top: 0;
}
.psc:nth-child(2) {
	margin-top: 50px;
}
.psc .sec_title {
	margin-bottom: 50px;
}
.psc .sec_stitle {
	margin-bottom: 35px;
	color: #272727;
	font-size: 1em;
}
.psc_title h3 {
	position: relative;
	display: block;
	padding-left: 30px;
	overflow: hidden;
	color: #222;
	font-size: 1.5em;
	font-weight: 700;
}
.psc_title h3::before {
	position: absolute;
	display: block;
	content: '';
	width: 24px;
	height: 24px;
	top: 3px;
	left: 0;
	background: url('../img/page/stitle.png') center center no-repeat;
	background-size: contain;
}
.psc .sec_title span {
	position: relative;
	display: inline-block;
	padding-bottom: 10px;
	font-size: 1.25em;
}
.psc .sec_title span::after {
	position: absolute;
	display: block;
	content: '';
	width: 35px;
	height: 3px;
	left: 0;
	bottom: 0;
	background: #5fbf8a;
}

/* 활동소식 */
.iboxpost {
	position: relative;
	overflow: visible;
	border-radius: 6px;
	box-shadow: 0 0 10px 0 rgba(43, 52, 59, 0.1);
}
.iboxpost .checkbox_layer {
	position: absolute;
	top: 5px;
	right: 10px;
	z-index: 1;
}
.iboxpost .checkbox_layer .switch {
	position: relative;
	display: inline-block;
	text-align: center;
}
.iboxpost .checkbox_layer .switch input {
	display: block;
	width: 0;
	height: 0;
	opacity: 0;
}
.iboxpost .checkbox_layer .toggle_btn i {
	color: #fff;
	font-size: 1.25em;
	text-shadow: 0 0 5px rgba(0,0,0,0.95);
}
.iboxpost .checkbox_layer .toggle_btn .off {
	display: block;
}
.iboxpost .checkbox_layer .toggle_btn .on {
	display: none;
}
.iboxpost .checkbox_layer input:checked + .toggle_btn .off {
	display: none;
}
.iboxpost .checkbox_layer input:checked + .toggle_btn .on {
	display: block;
}

.iboxpost .ibox_inner {
	display: block;
	text-align: justify;
}
.iboxpost .thumbnail2 { 
	position: relative;
	display: block;
	overflow: hidden;
	line-height: 0;
	height: 200px;
}
.iboxpost .thumbnail2 img {
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 600ms ease-in-out;
	   -moz-transition: all 600ms ease-in-out;
			transition: all 600ms ease-in-out;
	min-width: 100%;
	min-height: 100%;
}
.iboxpost:hover .thumbnail2 img {
	-webkit-transform: scale(1.09);
	   -moz-transform: scale(1.09);
			transform: scale(1.09);
}
.iboxpost {
	margin: 15px 0;
}
.iboxpost .ibox_content .iboxtitle h3 {
	position: relative;
	display: inline-block;
	margin-bottom: 10px;
	overflow: hidden;
	font-size: 1.375em;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.05em;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical; 
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.iboxpost .ibox_content .ibox_info {
	margin-bottom: 10px;
}
.iboxpost .ibox_content .ibox_info p {
	position: relative;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical; 
}
.iboxpost .ibox_content .ibox_info span {
	display: inline-block;
	position: relative;
	margin-right: 20px;
	font-size: 14px;
	line-height: 14px;
	margin-bottom: 12px;
}
.iboxpost .ibox_content .ibox_info span:last-child {
	margin-right: 0;
}
.iboxpost .ibox_content .ibox_info span:not(:last-child)::after {
	position: absolute;
	background-color: currentColor;
	display: inline-block;
	content: "/ ";
	color: #848e9f;
	width: 1px;
	height: 100%;
	border-radius: 50%;
	vertical-align: middle;
	top: 0;
	background-color: transparent;
	right: -10px;
}
.iboxpost .ibox_content .ibox_info span i{ 
	padding-right: 8px; 
	font-size: 14px;
	line-height: 0;
}
.iboxpost .ibox_content .ibox_info span i.fa-comments-o {
	font-size: 16px;
}
.ibox_badge .entry-date .entry-month, 
.ibox_badge .entry-date .entry-year {
	display: block;
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	line-height: 1;
}
.iboxpost .iboxpost-inner {
	border-radius: 5px;
	margin-top: 30px;
	overflow: hidden;
}
.iboxpost .ibox_content { 
	min-height: 167px;
	padding: 25px 25px 31px 30px;
	background-color: rgb(255, 255, 255);
}
.iboxpost .ibox_badge {
	position: absolute;
	width: 58px;
	min-height: 84px;
	padding: 16px 5px 10px;
	top: -20px;
	left: 25px;
	z-index: 1;
	color: #0e204d;
	font-size: 15px;
	font-weight: 500;
	text-align: center;
	line-height: 16px;
	background-color: #fff;
	border-radius: 5px;
	-webkit-transform: translateY(0);
	   -moz-transform: translateY(0);
			transform: translateY(0);
	-webkit-transition: 500ms;
	   -moz-transition: 500ms;
			transition: 500ms;
	box-shadow: rgba(43, 52, 59, 0.1) 0px 0px 10px 0px;
}
.iboxpost .ibox_badge.ibox_age {
	width: 62px;
}
.iboxpost .ibox_badge .entry-age strong,
.iboxpost .ibox_badge .entry-age span {
	display: block;
	font-weight: 700;
	line-height: 1;
}
.iboxpost .ibox_badge .entry-age strong {
	padding-bottom: 8px;
	font-size: 1.125em;
	font-weight: 900;
}
.iboxpost .ibox_badge .entry-age span {
	font-size: 0.9375em;
}
.iboxpost .ibox_badge .entry-age .min_age {
	position: relative;
	margin-bottom: 5px;
	padding-bottom: 4px;
}
.iboxpost .ibox_badge .entry-age .min_age::after {
	position: absolute;
	display: block;
	content: '';
	width: 12px;
	height: 1px;
	margin-left: -6px;
	bottom: 0;
	left: 50%;
	background: #000;
	-webkit-transition: 500ms;
	   -moz-transition: 500ms;
			transition: 500ms;
}
.iboxpost:hover .ibox_badge .entry-age .min_age::after {
	background: #fff;
}
.iboxpost .ibox_badge .entry-date span {
	font-size: 24px;
	padding-bottom: 6px;
	display: block;
	font-weight: 700;
}
.iboxpost:hover .ibox_badge {
	color: #fff;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}
.iboxpost .ibox_badge::before {
	position: absolute;
	content: '';
	bottom: 100%;
	left: 0;
	height: 2px;
	width: 100%;
	z-index: -1;
	background-color: #7d80d2;
	border-radius: 5px;
	-webkit-transition: 550ms cubic-bezier(.68,1.55,.265,.55);
	   -moz-transition: 550ms cubic-bezier(.68,1.55,.265,.55);
			transition: 550ms cubic-bezier(.68,1.55,.265,.55);
}
.iboxpost:hover .ibox_badge::before {
	bottom: 0;
	height: 100%;
}
.iboxpost .iboxbtn {
	color: #7d80d2;
	font-weight: 700;
}
.iboxpost .iboxbtn:hover {
	color: #000;
}
.iboxpost .iboxbtn span,
.iboxpost .iboxbtn i {
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 1;
	vertical-align: middle;
}
.iboxpost .iboxbtn i {
	position: relative;
	top: -1px;
	font-size: 1.125em;
}

/*.psc50 .agreeWrap {
	width: 100%;
	overflow: hidden;
}
.psc50 .agreeWrap .agreeBox {
	height: 190px;
	padding: 20px;
	overflow-y: auto;
	font-size: 1em;
	word-break: keep-all;
	border: 1px #e1e1e1 solid;
}
.psc50 .agreeWrap .agreeBox .tit {
	padding: 0 0 20px 0;
	color: #333;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.6;
}
.psc50 .agreeWrap .agreeBox .txt {
	padding: 0 0 20px 0;
	color: #777;
	font-size: 14px;
	line-height: 1.6;
}
.psc50 .agreeWrap .agreeBox ul::after {
	display: block;
	content: '';
	clear: both;
}
.psc50 .agreeWrap .agreeBox ul li {
	color: #333;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.6;
}
.psc50 .agreeWrap .agreeChk {
	padding: 20px 0 50px 0;
	text-align: right;
}
.psc50 .agreeWrap .agreeChk label {
	margin: 0 4px 0 0;
	color: #555;
	font-size: 14px;
}
.psc50 .agreeWrap .agreeChk input {
	vertical-align: middle;
}*/

/* GRID COMMON */
.type2 .item,
.type2 li,
.type3 .item,
.type3 li,
.type4 .item,
.type4 li {
	position: relative;
	width: 49%;
	margin: 50px 0 0 2%;
	float: left;
}
.type2 .item:nth-child(2n+1),
.type2 li:nth-child(2n+1) {
	margin-left: 0;
	clear: both;
}
.type3 .item,
.type3 li {
	width: 32%;
}
.type3 .item:nth-child(3n+1),
.type3 li:nth-child(3n+1) {
	margin-left: 0;
	clear: both;
}
.type4 .item,
.type4 li {
	width: 23.5%;
}
.type4 .item:nth-child(4n+1),
.type4 li:nth-child(4n+1) {
	margin-left: 0;
	clear: both;
}
.type2 .item:nth-child(1),
.type2 .item:nth-child(2),
.type2 li:nth-child(1),
.type2 li:nth-child(2),
.type3 .item:nth-child(1),
.type3 .item:nth-child(2),
.type3 .item:nth-child(3),
.type3 li:nth-child(1),
.type3 li:nth-child(2),
.type3 li:nth-child(3),
.type4 .item:nth-child(1),
.type4 .item:nth-child(2),
.type4 .item:nth-child(3),
.type4 .item:nth-child(4),
.type4 li:nth-child(1),
.type4 li:nth-child(2),
.type4 li:nth-child(3),
.type4 li:nth-child(4) {
	margin-top: 22px;
}

/* --------------------------------------------------------------------------------------------
	## BOARD
-------------------------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------------------------
	## Mobile Only
-------------------------------------------------------------------------------------------- */
.mobile #header h1 a {
	background-image: url('../img/common/logo.png') !important;
}
/*.mobile #footer li .fico {
	background-size: cover;
}
.mobile #footer li .fico11 {background-image: url('../img/common/fico_11@2x.png');}
.mobile #footer li .fico12 {background-image: url('../img/common/fico_12@2x.png');}
.mobile #footer li .fico13 {background-image: url('../img/common/fico_13@2x.png');}
.mobile #footer li .fico14 {background-image: url('../img/common/fico_14@2x.png');}*/

/* --------------------------------------------------------------------------------------------
	## MSIE
-------------------------------------------------------------------------------------------- */
.msie .vtrow {
	display: inline-block;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.msie .ms03 .item img {
	-webkit-transition: opacity 0;
	   -moz-transition: opacity 0;
			transition: opacity 0;
}

/* --------------------------------------------------------------------------------------------
	## KEYFRAMES
-------------------------------------------------------------------------------------------- */
@keyframes vtxt {
	0% {
		visibility: visible;
		opacity:0;
		-webkit-transform: translate3d(-2.5%,0,0);
				transform: translate3d(-2.5%,0,0);
	}
	to {
		opacity:1;
		-webkit-transform: translateZ(0);
				transform: translateZ(0);
	}
}
@keyframes social-button-beat {
	0% {
		opacity: 0.5;
		transform: scale(1);
	}
	70% {
		opacity: 0;
		transform: scale(1.5);
	}
	100% {
		opacity: 0;
	}
}
@keyframes floatY {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
	100% {
		transform: translateY(0px);
	}
}

/* --------------------------------------------------------------------------------------------
	## RESPONSIVE
-------------------------------------------------------------------------------------------- */
@media screen and (max-width: 1200px) {
	/* Tablet Landscape */
	#header #gnb .depth1 > li {
		margin-left: 60px;
	}
}

@media screen and (max-width: 1024px) {
	/* Tablet Landscape */
	#header {
		position: fixed;
		width: 100%;
		height: 61px;
		top: 0;
		left: 0;
		z-index: 97;
		background: rgba(255, 255, 255, 0.95);
		border-bottom: 1px solid #dcdcdc;
	}
	#header .topbar {
		display: none;
	}
	#header .inner {
		height: 100%;
	}
	#header .inner h1 {
		width: 150px;
		height: 30px;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	#header #menu,
	#header .gnbline {
		display: none;
	}
	.inner_gap {
		height: 60px;
	}

	/* MOBILE MENU TOGGLE BTN */
	#header #btn_m_toggle {
		top: 19px;
		opacity: 1;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		filter: alpha(opacity=100);
	}

	#visual {
		margin-top: 60px;
	}
	#visual .swiper-slide .text_box h3 {
		font-size: 2.75em;
	}
	#visual .swiper-slide .text_box p {
		font-size: 1.5em;
	}

	#container .newline {
		display: contents;
	}
}

@media screen and (max-width: 960px) {
	/* Google Nexus 7 Landscape */
	#footer #fgnb > ul > li {
		margin-left: 30px;
	}
	#visual .swiper-pagination-fraction,
	#visual .swiper-pagination-custom,
	#visual .swiper-container-horizontal > .swiper-pagination-bullets {
		bottom: 30px;
	}

	.dashed_line li p::before {
		margin-top: 2px;
	}

	#footer .type4 {
		display: none;
	}
}

@media screen and (max-width: 880px) {
	#footer .footer_logo {
		margin-left: 6.5%;
	}
	#footer .left_area {
		margin-left: 6.5%;
		margin-right: 6.5%;
	}
	#footer .right_area {
		position: static;
		margin: 30px 0 0;
	}
	#footer #fgnb > ul {
		width: 100%;
		float: none;
	}
	#footer #fgnb > ul > li {
		width: 25%;
		margin-left: 0;
	}

	.dashed_line li .dl_con {
		display: block;
		margin-top: 5px;
		line-height: 1.4;
	}
}

/*@media screen and (max-width: 800px) {
}*/

@media screen and (max-width: 768px) {
	/* Tablet Portrait */
	#footer .colspan {
		width: 49%;
		margin: 50px 0 0 2%;
	}
	#footer .colspan:nth-child(2n+1){
		margin-left: 0;
		clear: both;
	}
	#footer .colspan:nth-child(1),
	#footer .colspan:nth-child(2) {
		margin-top: 0;
	}

	#visual {
		height: 120px;
	}
	#visual .swiper-slide.swiper-slide-active .background {
		left: -100px;
	}
	#visual .swiper-slide .text_box h3 {
		font-size: 2.5em;
	}
	#visual .swiper-slide .text_box p {
		font-size: 1.375em;
	}
	#visual > .inner > h2 {
		font-size: 2em;
	}
	#visual .swiper-pagination-fraction,
	#visual .swiper-pagination-custom,
	#visual .swiper-container-horizontal > .swiper-pagination-bullets {
		bottom: 20px;
	}

	.psc .sec_title span::after {
		width: 30px;
	}

	.iboxpost .ibox_content .iboxtitle h3 {
		font-size: 1.25em;
	}

	.mtype1 .item,
	.mtype1 li,
	.mtype2 .item,
	.mtype2 li {
		width: 49%;
		margin: 50px 0 0 2%;
	}
	.mtype1 .item:nth-child(3n+1),
	.mtype1 li:nth-child(3n+1),
	.mtype2 .item:nth-child(3n+1),
	.mtype2 li:nth-child(3n+1) {
		margin-left: 2%;
		clear: none;
	}
	.mtype1 .item:nth-child(2n+1),
	.mtype1 li:nth-child(2n+1),
	.mtype2 .item:nth-child(2n+1),
	.mtype2 li:nth-child(2n+1),
	.mtype2 .item:nth-child(3n+1),
	.mtype2 li:nth-child(3n+1),
	.mtype2 .item:nth-child(4n+1),
	.mtype2 li:nth-child(4n+1) {
		clear: none;
	}
	.mtype1 .item:nth-child(2n+1),
	.mtype1 li:nth-child(2n+1),
	.mtype2 .item:nth-child(2n+1),
	.mtype2 li:nth-child(2n+1) {
		margin-left: 0;
		clear: both;
	}
	.mtype1 .item:nth-child(1),
	.mtype1 li:nth-child(1),
	.mtype1 .item:nth-child(2),
	.mtype1 li:nth-child(2),
	.mtype2 .item:nth-child(1),
	.mtype2 li:nth-child(1),
	.mtype2 .item:nth-child(2),
	.mtype2 li:nth-child(2) {
		margin-top: 22px;
	}
	.mtype1 .item:nth-child(3),
	.mtype1 li:nth-child(3),
	.mtype1 .item:nth-child(4),
	.mtype1 li:nth-child(4),
	.mtype2 .item:nth-child(3),
	.mtype2 li:nth-child(3),
	.mtype2 .item:nth-child(4),
	.mtype2 li:nth-child(4) {
		margin-top: 50px;
	}

	.mtype3 .item,
	.mtype3 li {
		width: 32%;
		margin: 50px 0 0 2%;
	}
	.mtype3 .item:nth-child(3n+1),
	.mtype3 li:nth-child(3n+1) {
		clear: none;
	}
	.mtype3 .item:nth-child(3n+1),
	.mtype3 li:nth-child(3n+1) {
		margin-left: 0;
		clear: both;
	}
	.mtype3 .item:nth-child(1),
	.mtype3 li:nth-child(1),
	.mtype3 .item:nth-child(2),
	.mtype3 li:nth-child(2),
	.mtype3 .item:nth-child(3),
	.mtype3 li:nth-child(3) {
		margin-top: 22px;
	}
}

@media screen and (max-width: 736px) {
	/* iPhone 6 Plus Landscape */
	#visual .swiper-button-prev,
	#visual .swiper-button-next {
		display: none !important;
	}

	.psc {
		margin-top: 80px;
	}
}

@media screen and (max-width: 667px) {
	/* iPhone 6 Landscape */
	#visual > .inner > h2 {
		font-size: 1.875em;
	}
	#visual .swiper-slide .text_box h3 {
		font-size: 2em;
	}
	#visual .swiper-slide .text_box p {
		font-size: 1.25em;
	}

	.psc:nth-child(2) {
		margin-top: 40px;
	}

	.iboxpost .ibox_content .iboxtitle h3 {
		font-size: 1.0625em;
	}
	.iboxpost .ibox_content .ibox_info p {
		font-size: 14px;
	}
	.iboxpost .iboxbtn span,
	.iboxpost .iboxbtn i {
		font-size: 14px;
	}
}

@media screen and (max-width: 640px) {
	/* Mobile Landscape */
	#footer .w640s {
		display: inline-block !important;
	}
	#footer .colgroup {
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 568px) {
	/* iPhone 5 Landscape */
}

@media screen and (max-width: 560px) {
	#footer {
		padding: 0 0 50px;
	}
	#footer .colspan,
	#footer .colspan:nth-child(2),
	#footer .colspan:nth-child(2n+1){
		width: 90%;
		margin: 50px 5% 0 5%;
	}

	#visual .swiper-slide .text_box {
		position: absolute;
		margin-top: 0;
		bottom: 80px;
	}
	#visual .swiper-slide .text_box h3 {
		margin-bottom: 10px;
		font-size: 1.75em;
	}
	#visual .swiper-slide .text_box p {
		font-size: 1em;
	}
	#visual .swiper-pagination-fraction,
	#visual .swiper-pagination-custom,
	#visual .swiper-container-horizontal > .swiper-pagination-bullets {
		bottom: 20px;
	}
	#visual > .inner > h2 {
		bottom: 70px;
		font-size: 1.625em;
	}

	.psc {
		margin-top: 65px;
	}
	.psc .sec_title {
		margin-bottom: 30px;
	}

	.iboxpost .ibox_content { 
		padding: 15px 10px 20px;
	}

	.psc421 .inner {
		height: 305px;
	}
	.psc421 .relative::before,
	.psc421 .relative::after {
		left:  60px;
		right: 60px;
	}
	.psc421 .part {
		width: 80px;
	}
	.psc421 .part2 {
		margin-left: -40px;
	}

	.psc421 .part ul {
		display: none;
	}
}

@media screen and (max-width: 480px) {
	.mtype1 .item,
	.mtype1 li {
		width: 100%;
		margin: 50px 0 0 0;
	}
	.mtype1 .item:nth-child(2n+1),
	.mtype1 li:nth-child(2n+1),
	.mtype1 .item:nth-child(3n+1),
	.mtype1 li:nth-child(3n+1),
	.mtype1 .item:nth-child(4n+1),
	.mtype1 li:nth-child(4n+1) {
		margin-left: 0 !important;
		clear: both;
	}
	.mtype1 .item:nth-child(2),
	.mtype1 li:nth-child(2),
	.mtype2 .item:nth-child(3),
	.mtype2 li:nth-child(3),
	.mtype2 .item:nth-child(4),
	.mtype2 li:nth-child(4),
	.mtype3 .item:nth-child(4),
	.mtype3 li:nth-child(4) {
		margin-top: 50px;
	}
}

@media screen and (max-width: 414px) {
	/* iPhone 6 Plus Portrait */
	#footer .footer_logo {
		width: 100px;
		height: 26px;
		margin: 0 auto 30px;
		opacity: 0.5;
	}
	#visual .swiper-slide .text_box h3 {
		font-size: 1.5em;
	}
	#visual .swiper-slide .text_box p {
		font-size: 1.125em;
	}

	.hash {
		margin-top: 0;
	}
	.btn_more {
		height: 26px;
		padding: 0 5px;
		line-height: 24px;
	}
	.btn_more span {
		display: none;
	}
}

/*@media screen and (max-width: 360px) {
}*/

@media screen and (max-width: 359px) {
	/* iPhone 5 Portrait */
	#mobile_menu h1 {
		position: relative;
		width: 100%;
		height: 60px;
		margin: 0 auto;
	}

	#visual .swiper-slide .text_box p {
		margin-bottom: 10px;
	}

	.mtype2 .item,
	.mtype2 li,
	.mtype3 .item,
	.mtype3 li {
		width: 100%;
		margin-top: 50px;
		margin-left: 0 !important;
		float: none;
		clear: both;
	}
	.mtype2 .item:nth-child(1),
	.mtype2 li:nth-child(1),
	.mtype3 .item:nth-child(1),
	.mtype3 li:nth-child(1){
		margin-top: 22px;
	}
}

/*@media screen and (max-width: 319px) {
}*/
