/*
가이드 명칭 : YG CSS 가이드
가이드 내용 : 사이트 레이아웃
최초 제작자 : YG WDT
최종 제작일 : 2019.7.
수정 / 배포 : 담당자 문의 후 수정 가능. 재배포 절대 불가
*/

/* ------------------------------- */
/* IE6.0 Hack CSS 연결 ----------- */
/* ------------------------------- */

/*////////// common ////////////////////////////////////////////////////////////////////////////////////////////////////*/

@charset "utf-8";

@font-face {
	font-family: 'HGGGothicssi';
	font-style: normal;
	font-weight: 400;
	src: local('HGGGothicssi'), local('HGGGothicssi-Regular'), url(../fonts/HGGGoHint40g.eot?#iefix) format('embedded-opentype'), url(../fonts/HGGGoHint40g.woff) format('woff');
}

@font-face {
	font-family: 'HGGGothicssi';
	font-style: normal;
	font-weight: 700;
	src: local('HGGGothicssi Bold'), local('HGGGothicssi-Bold'), url(../fonts/HGGGothicssi_Pro80g.eot?#iefix) format('embedded-opentype'), url(../fonts/HGGGothicssi_Pro80g.woff) format('woff');
}

html * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: 'Titillium Web', 'HGGGothicssi', 'Gothic A1', sans-serif;
}

html,
body {
	width: 100%;
	height: 100%;
	color: #ffffff;
	background-color: #000000;
}

body {
	color: #282828;
	font-size: 1.4rem;
	font-weight: 400;
	/*line-height: 1.8;*/
	letter-spacing: 0px;
	-webkit-overflow-scrolling: touch;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
}

h1 {
	color: #ffffff;
}

h2 {
	margin-top: 2rem;
	margin-bottom: 8rem;
	font-size: 8rem;
	color: #ffffff;
	text-align: center;
}

h3 {
	margin-bottom: 2rem;
	font-size: 2.4rem;
}

h3.required:after {
	content: '*';
	margin-left: 1rem;
	vertical-align: middle;
	color: #ff0000;
}

h4 {
	margin-bottom: 2rem;
	font-size: 2rem;
}
ul,
ol,
dl {
	list-style: none;
}

img {
	width: 100%;
	vertical-align: top;
}

input,
select,
textarea {
	width: 100%;
	padding: 0 1rem;
	font-size: 1.2rem;
	line-height: 1.8rem;
	-webkit-transition: .1s ease-in-out;
	transition: .1s ease-in-out;
	background-color: #ffffff;
	border: 1px solid #c8c8c8;
	border-radius: 0;
	outline: none;
}

select {
	-webkit-appearance: none; /* 네이티브 외형 감추기 */
	-moz-appearance: none;
	appearance: none;
	height: 3.4rem;
	background: url(../img/icon/arrow-dark.png) no-repeat 100% 50% #ffffff;
	background-size: 3rem;
	color: #282828;
	box-shadow: none;
}

select:focus {
	outline: none;
}

select::-ms-expand { display: none; }

select.nav-select {
	min-width: 8rem;
	margin-top: -.5rem;
	background-image: url(../img/icon/arrow-light.png);
	background-color: #000000;
	border-color: rgba(255, 255, 255, 0.5);
	border-radius: .5rem;
	color: rgba(255, 255, 255, 0.5);
	font-size: 1.4rem;
	font-weight: bold;
}

select.nav-select:hover, 
select.nav-select:focus {
	color: #ffffff;
}

/*
.select-box {
	border: 1px solid #c8c8c8;
	background: url("../img/icon/arrow-dark.png") no-repeat right center;
	background-size: contain;
	overflow: hidden;
}

.select-box select {
	color: #282828;
	border: none;
	box-shadow: none;
	background: transparent;
	background-image: none;
	-webkit-appearance: none;
}

.select-box select:focus {
	outline: none;
}
*/

input {
	height: 3.6rem;
}

input:focus,
textarea:focus {
	border-color: #282828;
}

input:focus {
	background-color: #ffffff !important;
}

input[type=search] {
	-webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

input[type=checkbox],
input[type=radio] {
	display: inline-block;
	width: auto;
	margin: 0;
	padding: 0;
}

input[readonly],
input[readonly="readonly"] {
	border: 1px solid #ececec !important;
	background-color: #f7f7f7 !important;
}
input[type=file] {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip:rect(0,0,0,0);
}

input.table-embed,
input.table-embed:focus {
	padding: .1rem .5rem;
	border: none;
	background-color: #f7f7f7 !important;
}

textarea {
	width: 100%;
	padding: 1rem 2rem;
	resize: none;
}

label {
	display: inline-block;
	padding-top: calc(.375rem + 1px);
	padding-bottom: calc(.375rem + 1px);
	margin-bottom: 0;
	font-size: inherit;
	font-weight: 400;
	line-height: 1.5;
}

label.custom-file-label {
	display: inline-block;
	padding: .8rem 2rem;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.8rem;
	text-align: center;
	vertical-align: middle;
	border: 1px solid transparent;
	color: #ffffff;
	background-color: #282828;
	-webkit-transition: .1s ease-in-out;
	transition: .1s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	cursor: pointer;
	outline: none;
}

label.custom-file-label:hover,
label.custom-file-label:active,
label.custom-file-label:focus {
	background-color: #000000;
}

button {
	outline: none;
}

a {
	display: inline-block;
	color: #ffffff;
	cursor: pointer;
	onfocus: blur;
}

a,
a:link {
	text-decoration: none;
}

a:hover,
a:active,
a:focus {
	color: #ffffff;
	text-decoration: none;
}

a.link {
	position: relative;
	color: #282828;
}

a.link:hover,
a.link:active,
a.link:focus {
	text-decoration: underline;
}

a.link:before {
	content: '|';
	display: inline-block;
	position: relative;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	font-weight: 400;
	vertical-align: top;
}

a.link:nth-child(1):before {
	display: none;
}

.link.yg-white,
.link.yg-white:hover,
.link.yg-white:active,
.link.yg-white:focus {
	color: #ffffff !important;
}

.link.yg-black,
.link.yg-black:hover,
.link.yg-black:active,
.link.yg-black:focus {
	color: #282828 !important;
}

.link.yg-red,
.link.yg-red:hover,
.link.yg-red:active,
.link.yg-red:focus {
	color: #be0028 !important;
}

.link.yg-gray,
.link.yg-gray:hover,
.link.yg-gray:active,
.link.yg-gray:focus {
	color: #c8c8c8 !important;
}

a.button {
	text-decoration: none !important;
}

.button {
	display: inline-block;
	padding: .8rem 2rem;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.8rem;
	text-align: center;
	vertical-align: middle;
	border: 1px solid transparent;
	/*
	-webkit-border-radius: .5rem;
	-moz-border-radius: .5rem;
	border-radius: .5rem;
	*/
	-webkit-transition: .1s ease-in-out;
	transition: .1s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	cursor: pointer;
	outline: none;
}

/*
button:hover,
button:active,
button:focus,
a.button:hover,
a.button:active,
a.button:focus,
input.button:hover,
input.button:active,
input.button:focus {
	color: #282828;
	background-color: #ffffff;
}
*/

.button.small {
	padding: 0 1rem;
	font-size: 1rem;
	/*line-height: 1;*/
}

.button.large {
	padding: 1.5rem 3rem;
}

.button.yg-white {
	color: #282828;
	background-color: #ffffff;
}

.button.yg-white:hover,
.button.yg-white:active,
.button.yg-white:focus {
	color: #ffffff !important;
	background-color: #111111;
}

.button.yg-black {
	color: #ffffff;
	background-color: #282828;
}

.button.yg-black:hover,
.button.yg-black:active,
.button.yg-black:focus {
	color: #ffffff !important;
	background-color: #000000;
}

.button.yg-red {
	color: #ffffff;
	background-color: #be0028;
}

.button.yg-red:hover,
.button.yg-red:active,
.button.yg-red:focus {
	color: #ffffff !important;
	background-color: #c82123;
}

.button.yg-gray {
	color: #ffffff;
	background-color: #c8c8c8;
}

.button.yg-gray:hover,
.button.yg-gray:active,
.button.yg-gray:focus {
	color: #ffffff !important;
	background-color: #969696;
}

.button.outline {
	background-color: #ffffff;
}

.button.yg-black.outline {
	color: #282828;
	border-color: #282828;
}

.button.yg-red.outline {
	color: #be0028;
	border-color: #be0028;
}

.button.yg-gray.outline {
	color: #c8c8c8;
	border-color: #c8c8c8;
}

.button.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.button.delete {
	padding: .5rem;
	background: url(../img/icon/delete.png) no-repeat center center;
	background-size: 100%;
}

.buttons {
	margin-top: 3rem;
}

.buttons .button {
	margin-left: .5rem;
}

.buttons .button:first-child {
	margin-left: 0;
}

p.bullet:before {
	content: "•";
	padding-right: 6px;
}

p.focus {
	font-size: 1.625em;
}

p.highlight {
	display: inline;
	padding: .1em .25em;
	color: #000000;
	background-color: #ffffff;
}

p.primary {}

p.secondary {}

p.description {}

#page-top {
	height: 0;
}

.hr {
	border-bottom: 3px solid #282828;
}

h3.hr {
	padding-bottom: 1rem;
}

.annotation {
	font-size: 1.2rem;
	font-weight: 700;
	color: #be0028;
}

.annotation:before {
	content: "*";
	padding-right: .5rem;
	vertical-align: middle;
}

.vertical-bar {
	margin-left: .75em;
	margin-right: .75em;
	opacity: 0.3;
	filter: Alpha(opacity=30);
	/* IE8 and earlier */
}

.hidden {
	display: none;
}

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

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.center {
	text-align: center;
}

.top {
	vertical-align: top;
}

.bottom {
	vertical-align: bottom;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

.table {}

.table .thead {
	font-size: 1rem;
	font-weight: 700;
	color: rgba(40, 40, 40, .625);
	border-bottom: 2px solid rgba(40, 40, 40, .5);
	background-color: transparent !important;
}

.table .tbody {
	/*margin-bottom: 1px;*/
	border-bottom: 1px solid rgba(40, 40, 40, .1);
}

.table .tbody:first-child {
	border-radius: 3px 3px 0 0;
}

.table .tbody:last-child {
	/*margin-bottom: 0;*/
	border-bottom: 0;
	border-radius: 0 0 3px 3px;
}

.table .tbody:hover {
	background-color: rgba(40, 40, 40, .025);
	/*
	position: relative;
	box-shadow: 0 0 3px rgba(40,40,40,.3);
	z-index: 9;
	*/
}

.table .tbody-dark {
	background-color: rgba(40, 40, 40, .1);
}

.table .tbody label {
	margin-bottom: 0;
}

.table-header {
	margin-bottom: 1rem;
}

.table-footer {
	margin-top: 1rem;
}

.box,
.box-light,
.box-dark {
	/*border-radius: .5rem;*/
}

.box-container {
	padding: 8rem 10rem;
}

.box > .hr {
	margin: 1.5rem .5rem;
}

.box > .buttons {
	margin-top: 1.5rem;
}

.box-light {
	background-color: #ffffff;
}

.box-dark {
	background-color: #f7f7f7;
}

.table.box-light {
	padding: 0;
}

.box-agree {
	width: 100%;
	max-height: 300px;
	padding: 2rem;
	font-size: 1.2rem;
	line-height: 1.8rem;
	-webkit-transition: .1s ease-in-out;
	transition: .1s ease-in-out;
	background-color: #ffffff;
	border: 1px solid #c8c8c8;
	overflow-y: auto;
}

.box-agree:hover,
.box-agree:active,
.box-agree:focus {
	border-color: #282828;
}

.box-agree td {
	padding: .5rem .75rem;
}

.tab,
.box-tab {
	display: grid;
	grid-gap: 1%;
}

.tab-1 {
	grid-template-columns: 100%;
}

.tab-2 {
	grid-template-columns: 49.5% 49.5%;
}

.tab-3 {
	grid-template-columns: 32.66% 32.66% 32.66%;
}

.tab-4 {
	grid-template-columns: 24.25% 24.25% 24.25% 24.25%;
}

.tab-5 {
	grid-template-columns: 19.2% 19.2% 19.2% 19.2% 19.2%;
}

.tab > div,
.box-tab > div {
	padding: 1.2rem;
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
}

.tab-light > div,
.box-tab > div {
	background-color: #282828;
	color: #ffffff;
}

.tab-light > div.active,
.box-tab > div.active {
	background-color: #ffffff;
	color: #282828;
}

.tab-dark {
	border-bottom: 2px solid #282828;
}

.tab-dark > div {
	border: 1px solid #c8c8c8;
	border-bottom: 0;
	background-color: #c8c8c8;
	color: #282828;
}

.tab-dark > div.active {
	background-color: #282828;
	color: #ffffff;
}

/*
.tabs li {
	font-weight: 700;
	color: #ffffff;
	background-color: #282828;
	border: 2px solid #282828;
	border-bottom: transparent;
	border-radius: 5px 5px 0 0;
	text-align: center;
	cursor: pointer;
}
.tabs li.active {
	color: #282828;
	background-color: #ffffff;
}
*/

.tab button {
	border-radius: 5px 5px 0 0;
	border-width: 2px;
	border-bottom: none;
}

.tab button.active,
.tab button.active:hover,
.tab button.active:active,
.tab button.active:focus,
.tab button:active,
.tab button:focus {
	color: #282828 !important;
	border-color: #282828;
	background-color: #ffffff;
}

.tab-content {
	display: none;
	margin-bottom: 2rem;
}

.pagination {
	display: block;
	margin-top: 3rem;
	text-align: center;
}

.pagination a {
	margin: 0 -1px 0 0;
	padding: .8rem 1.5rem;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.8rem;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	color: #282828;
	background-color: #f0f0f0;
	border: 1px solid transparent;
	-webkit-transition: .1s ease-in-out;
	transition: .1s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	cursor: pointer;
	outline: none;
}

.pagination a.active {
	color: #ffffff;
	background-color: #282828;
	border: 1px solid #282828;
}

.pagination a:hover:not(.active) {
	background-color: rgba(40, 40, 40, .1);
}

.pagination a:first-child {
	border-top-left-radius: .5rem;
	border-bottom-left-radius: .5rem;
}

.pagination a:last-child {
	border-top-right-radius: .5rem;
	border-bottom-right-radius: .5rem;
}

#popup-notice {
	position: relative;
	padding: 2rem;
	padding-right: 6rem;
	background: #be0028;
	text-align: left;
	z-index: 9;
}

#popup-notice a.notice {
	color: #000000;
	text-decoration: underline;
}

#popup-notice a.close {
	position: absolute;
	display: block;
	top: 2rem;
	right: 2rem;
	opacity: 1;
}

.close-icon {
	position: relative;
	width: 2rem;
}

.close-icon span {
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	background-color: #000000;
	border-radius: 9px;
	left: 0;
}

.close-icon span:nth-child(1) {
	top: 8px;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

.close-icon span:nth-child(2) {
	top: 8px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

#popup-wrap {
	padding: 4rem;
	background-color: #ffffff;
}

#popup-wrap h4 {
	padding-bottom: .5rem;
	color: #282828;
}

#popup-wrap > .box-container {
	padding-left: 0;
	padding-right: 0;
}

.video-embed-area {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
}

.video-embed-area iframe,
.video-embed-area video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*
#content .table-list .row:nth-child(2) {
	background-color: rgba(40,40,40,.1);
}
*/

.icon {
	width: 3rem;
	height: 3rem;
	margin-right: 1rem;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 178%;
	text-indent: -100em;
}

.icon:hover {
	background-size: 100%;
	background-color: #111111;
	-webkit-transition: .1s ease-in-out;
	transition: .1s ease-in-out;
}

.icon.facebook {
	background-image: url(../img/icon/facebook.png);
}

.icon.instagram {
	background-image: url(../img/icon/instagram.png);
}

.lg-text {
	font-size: 2.4rem;
}

label.title {
	font-weight: 700;
}

.invalid-feedback {
	padding-top: calc(.375rem + 1px);
	padding-bottom: calc(.375rem + 1px);
	font-size: 1.2rem;
}

.attached-file {
	position: relative;
	margin-top: 1rem;
	padding-left: 2rem;
}

.attached-file .button.delete {
	position: absolute;
	left: 0;
	top: .5rem;
}

/* ------------------------------
---------------------------------
[ Desktops only ]
---------------------------------
------------------------------ */
@media (min-width: 1025px) {}

/* ------------------------------
---------------------------------
[ Phones & Tablets only ]
---------------------------------
------------------------------ */
@media (max-width: 1024px) {
	h2 {
		margin-top: 0;
		font-size: 5rem;
	}
	.box-container {
		padding: 4rem 2rem;
	}
}

/*////////// grid-layout  ////////////////////////////////////////////////////////////////////////////////////////////////////*/
.row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -.5rem;
	margin-left: -.5rem;
}

.row::after {
	content: "";
	clear: both;
	display: table;
}

.no-gutters {
	margin-right: 0;
	margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
	padding-right: 0;
	padding-left: 0;
}


/*[class*="col"] {
	position: relative;
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
	vertical-align: middle;
}

[class*="col"]:first-child {
	padding-left: 0;
}*/

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto {
	position: relative;
	width: 100%;
	padding-right: .5rem;
	padding-left: .5rem;
}

.col {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
}

.col-auto {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto;
	max-width: 100%;
}

@media only screen and (min-width: 768px) {

	/* For desktop: */

	.col-1 {
		-ms-flex: 0 0 8.333333%;
		flex: 0 0 8.333333%;
		max-width: 8.333333%;
	}

	.col-2 {
		-ms-flex: 0 0 16.666667%;
		flex: 0 0 16.666667%;
		max-width: 16.666667%;
	}

	.col-3 {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.col-4 {
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}

	.col-5 {
		-ms-flex: 0 0 41.666667%;
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
	}

	.col-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.col-7 {
		-ms-flex: 0 0 58.333333%;
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}

	.col-8 {
		-ms-flex: 0 0 66.666667%;
		flex: 0 0 66.666667%;
		max-width: 66.666667%;
	}

	.col-9 {
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.col-10 {
		-ms-flex: 0 0 83.333333%;
		flex: 0 0 83.333333%;
		max-width: 83.333333%;
	}

	.col-11 {
		-ms-flex: 0 0 91.666667%;
		flex: 0 0 91.666667%;
		max-width: 91.666667%;
	}

	.col-12 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

}

@media print {

	/* For desktop: */
	.col-1 {
		width: 8.33%;
	}

	.col-2 {
		width: 16.66%;
	}

	.col-3 {
		width: 25%;
	}

	.col-4 {
		width: 33.33%;
	}

	.col-5 {
		width: 41.66%;
	}

	.col-6 {
		width: 50%;
	}

	.col-7 {
		width: 58.33%;
	}

	.col-8 {
		width: 66.66%;
	}

	.col-9 {
		width: 75%;
	}

	.col-10 {
		width: 83.33%;
	}

	.col-11 {
		width: 91.66%;
	}

	.col-12 {
		width: 100%;
	}
}

/*////////// form  ////////////////////////////////////////////////////////////////////////////////////////////////////*/
.form-group {
	margin-bottom: 2rem;
}

.row > div > .form-group {
	margin-bottom: 1rem;
}

.row > div > .form-group:last-child {
	margin-bottom: 2rem;
}

.form-row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	/*
	margin-right: -.5rem;
	margin-left: -.5rem;
	*/
}

.form-row > .col,
.form-row > [class*=col-],
.form-inline > .col,
.form-inline > [class*=col-] {
	padding: 0 .5rem;
}

.form-inline {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-ms-flex-align: center;
	align-items: center;
	/*
	width: calc(100% - 1rem);
	margin-right: -.5rem;
	margin-left: -.5rem;
	*/
}

.form-check,
.form-radio {
	position: relative;
	display: block;
	padding-left: 1.5rem;
}

.form-check > input,
.form-radio > input {
	position: absolute;
	margin-top: 0.3rem;
	margin-left: -1.5rem;
}

.form-label {
	padding: .9rem 1rem .6rem !important;
}

/*////////// header ////////////////////////////////////////////////////////////////////////////////////////////////////*/

#wrap {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100vh;
}

.container {
	max-width: 1024px;
	margin: 0 auto;
	padding: 2rem 0;
}

#header {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	text-align: left;
	z-index: 4;
}

#header.home {
	position: fixed;
	background-color: rgba(0,0,0,1) !important;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

#header > .container {
	position: relative;
}

#header h1 {
	font-size: 2.4rem;
	margin: 0;
}

/*
#header h1:before {
	content: '';
	display: inline-block;
	background-image: url('http://artist.ygfamily.com/common/img/logo/dark/yg-symbol.png');
	background-size: 100% 100%;
	width: 2.75rem;
	height: 1.375rem;
	margin-right: 1.5rem;
}
*/


#nav {}

#nav .nav-item a {
	color: rgba(255, 255, 255, 0.5);
	font-weight: 700;
	letter-spacing: .05em;
	vertical-align: middle;
	text-decoration: none;

}

#nav .nav-item a.active {
	color: rgba(255, 255, 255, 1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

#nav .nav-item.user a:before {
	content: '/';
	padding-left: .5rem;
	padding-right: .5rem;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 400;
}

#nav .nav-item.user a:first-child:before {
	display: none;
}

/* ------------------------------
---------------------------------
[ Desktops only ]
---------------------------------
------------------------------ */
@media (min-width: 1025px) {
	#wrap {
		min-width: 1080px;
	}

	#header {
		background-color: rgba(0,0,0,0.3);
	}

	#nav::after {
		content: '';
		clear: both;
		display: table;
	}

	#nav .logo {
		float: left;
	}

	#nav .nav-bar {
		display: flex;
		justify-content: flex-end;
	}

	#nav .nav-icon {
		display: none;
	}

	#nav .nav-item {
		margin-left: 2rem;
	}

	#nav .nav-item:nth-child(1):after {
		content: '|';
		padding-left: 2rem;
		font-weight: 400;
		vertical-align: middle;
		color: rgba(255, 255, 255, .5);
	}

	#nav .nav-item a {
		display: inline-block;
		font-size: 1.4rem;
	}

	#nav .nav-item a:hover {
		color: rgba(255, 255, 255, 1);
		-webkit-transition: .3s ease-in-out;
		transition: .3s ease-in-out;
	}

	#nav .nav-item:nth-child(1) a {
		margin-left: 2rem;
	}

	#nav .nav-item:nth-child(1) a:first-child {
		margin-left: 0;
	}
}

/* ------------------------------
---------------------------------
[ Phones & Tablets only ]
---------------------------------
------------------------------ */
@media (max-width: 1024px) {
	.container {
		padding: 2rem;
	}

	#header {
		text-align: center;
		background-color: transparent;
	}

	#nav .nav-overlay {
		position: fixed;
		display: none;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		min-height: 100vh;
		z-index: 97;
		background-color: rgba(0, 0, 0, 0.95);
	}

	#nav .nav-icon {
		position: absolute;
		width: 32px;
		height: 32px;
		top: 2.3rem;
		left: 2rem;
		cursor: pointer;
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: .25s ease-in-out;
		transition: .25s ease-in-out;
		z-index: 99;
	}

	#nav .nav-icon span {
		position: absolute;
		display: block;
		width: 100%;
		height: 3px;
		background-color: #ffffff;
		border-radius: 9px;
		opacity: 1;
		left: 0;
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: .25s ease-in-out;
		transition: .25s ease-in-out;
	}

	#nav .nav-icon span:nth-child(1) {
		top: 0px;
	}

	#nav .nav-icon span:nth-child(2) {
		top: 8px;
	}

	#nav .nav-icon span:nth-child(3) {
		top: 16px;
	}

	#nav .nav-icon.animate-icon span:nth-child(1) {
		top: 8px;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}

	#nav .nav-icon.animate-icon span:nth-child(2) {
		opacity: 0;
		left: 20px;
	}

	#nav .nav-icon.animate-icon span:nth-child(3) {
		top: 8px;
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}

	#nav .nav-bar {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		display: none;
		width: calc(100% - 4rem);
		height: 100vh;
		flex-direction: column;
		z-index: 98;
	}

	#nav .nav-bar.active {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		position: absolute;
		top: 0;
	}

	#nav .nav-item {
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		text-align: center;
	}

	#nav .nav-item:nth-child(1) {
		height: 64vh;
		flex-direction: column;
	}

	#nav .nav-item:nth-child(1) a {
		display: block;
		font-size: 10vmin;
	}

	#nav .nav-item:nth-child(2) {
		height: 6vh;
		flex-direction: row;
	}

	#nav .nav-item:nth-child(2) a {
		display: block;
		font-size: 5vmin;
	}

	#nav .nav-item:nth-child(3) {
		height: 30vh;
		padding-bottom: 10vh;
		flex-direction: row;
	}
}

/*////////// content ////////////////////////////////////////////////////////////////////////////////////////////////////*/

#content {
	padding-top: 64px;
	min-height: calc(100vh - 93px);
	z-index: 2;
}

#content > .container {
	padding: 6rem 0;
}

.section {
	margin-bottom: 6rem;
}

.section:last-child {
	margin-bottom: 0;
}

.section.login {
	text-align: center;
}

.section.login .row,
.section.login .buttons {
	max-width: 360px;
	margin-left: auto;
	margin-right: auto;
}

.section.login .button {
	width: 100%;
}

.section.login .buttons {
	margin-top: 1rem;
}

.section.login .links {
	margin-top: 2rem;
}

.section.join .tab {
	margin-bottom: 3rem;
}

.certify-online,
.certify-file {
	display: none;
}

.certify-online.active,
.certify-file.active {
	display: block;
}

.section.apply-data {
	position: relative;
	border-bottom: 1px solid #282828;
}

.section.apply-data > .row {
	margin-bottom: 1rem;
}

.section.apply-data .profile-img {
	position: absolute;
	top: 5rem;
	right: 0;
	width: 100%;
	max-width: 18rem;
	border: 1px solid #282828;
}

.section.apply-data .video-embed-area {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	margin-bottom: 2%;
}

.section.apply-data .video-embed-area iframe,
.section.apply-data .video-embed-area video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


.video-wrapper {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	margin: rem-calc(0 0 54.5);
	min-height: 31.25rem;
	overflow: hidden;
	z-index: 1;
}

.video-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.75);
	z-index: 2;
}

.video-expand {
	color: white;
	font-size: 1.125rem;
	line-height: 1em;
	opacity: .4;
	position: absolute;
	top: 0.9375rem;
	right: 0.9375rem;
	z-index: 3;
}

.video-expand:hover {
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

.tv {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.tv .screen {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	margin: auto;
	opacity: 0;
	transition: opacity .5s;
}

.tv .screen.active {
	opacity: 1;
}

.main {
	position: relative;
	z-index: 2;
}

.main-content {
	display: table-cell;
	width: 100%;
	height: calc(100vh - 58px - 12rem);
	vertical-align: middle;
	color:#ffffff;
}

.main-content > p {
	margin-bottom: 2rem;
}

.main-content > a {
	margin-bottom: 3rem;
}

.main-content p.main-title {
	font-size: 12vmin;
	font-weight: 700;
	line-height: 90%;
}

.main-content p.sub-title {
	font-size: 2.4vmin;
}

.main-content a.button {
	font-size: 1.6rem;
	font-weight: 700;
}

.board {
	/*line-height: 1.8rem;*/
	-webkit-transition: .1s ease-in-out;
	transition: .1s ease-in-out;
	background-color: #ffffff;
	border: 1px solid #c8c8c8;
}

.table-list.board {
	border-right: none;
	border-left: none;
	border-top: none;
}

.board.selected {
	background-color: #ececec;
	border-color: #ececec;
}

.board.head {
	padding: 1rem 0;
	border: 0;
	border-top: 2px solid #282828;
}

.board-list,
.board-view {
	width: 100%;
}

.board-list {
	padding: .8rem 2rem;
	font-size: 1.3rem;
}

.board-list .subject {
	font-weight: 700;
}

.board-view {
	padding: 1.2rem 4rem 2rem;
	font-size: 1.2rem;
}

.board-view-link {
	margin-top: 3rem;
}

.table-list {
	padding-top: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #c8c8c8;
}

.table-list.head {
	padding-top: 2rem;
	padding-bottom: 2rem;
	border-bottom-color: #282828;
	font-weight: 700;
}

.table-list:first-of-type {
	margin-top: -2rem;
}
/*
.table-list [class*="col"] {
	vertical-align: middle;
}
*/
.table-list span {
	display: inline-block;
    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    font-weight: 400;
    line-height: 1.5;
    vertical-align: middle;
}

#div_legal_certify .row .row {
	margin-top: 1rem;
}

#div_legal_certify .row .row:first-child {
	margin-top: 0;
}

.section.login > .row,
.section.notice > .board,
.section.faq > .board,
.section.inquiry > .row,
.section.inquiry > .board {
	margin-top: 1rem;
}

.section.login > .row:first-of-type,
.section.notice > .board:first-of-type,
.section.faq > .board:first-of-type,
.section.inquiry > .row:first-of-type,
.section.inquiry > .board:first-of-type {
	margin-top: 0;
}



.section.inquiry .inquiry-detail {}
.section.inquiry .inquiry-answer {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(0,0,0,0.1);
}

.progress {
	margin-bottom: 0;
	height: 22px;
}

.progress-area {
	width: 50%;
}

.progress-bar-ygred {
	background-color: #be0028;
}

.progress-bar-ygblack {
	background-color: #282828;
}

.progress-bar-yggray {
	background-color: #c8c8c8;
}
/* ------------------------------
---------------------------------
[ Desktops only ]
---------------------------------
------------------------------ */
@media (min-width: 1025px) {}

/* ------------------------------
---------------------------------
[ Phones & Tablets only ]
---------------------------------
------------------------------ */
@media (max-width: 1024px) {
	#content.home > .container {
		padding: 6rem 2rem;
	}
	.main-content p.main-title {
		font-size: 15vmin;
	}

	.main-content p.sub-title {
		font-size: 3.6vmin;
	}
}

/*////////// footer ////////////////////////////////////////////////////////////////////////////////////////////////////*/

#footer {
	position: relative;
	background-color: #000000;
	color: #ffffff;
	z-index: 3;
}

#footer > .container {
	position: relative;
}

#footer .logo {
	width: 7rem;
}

.ft-policy {
	font-size: 1.3rem;
}

.ft-policy:before {
	content: 'l';
	padding-left: 1rem;
	padding-right: 1rem;
}

.ft-policy a {
	font-weight: 700;
}

.ft-policy:first-child:before {
	display: none;
}

.ft-copyright {
	margin-top: 1rem;
	font-size: 1rem;
}

.ft-select {
	position: absolute;
	top: 3rem;
	right: 0;
	border-color: #ffffff;
}

/* ------------------------------
---------------------------------
[ Desktops only ]
---------------------------------
------------------------------ */
@media (min-width: 1025px) {
}

/* ------------------------------
---------------------------------
[ Phones & Tablets only ]
---------------------------------
------------------------------ */
@media (max-width: 1024px) {
	.ft-select {
		display: none;
	}
	#content.apply .tab-5 {
		display: none;
	}
	.apply .table-list.head {
		display: none;
	}
	.apply .table-list:nth-of-type(2) {
		margin-top: -2rem;
	}
	.row.board-list .center {
		text-align: left;
	}
}

@media (min-width: 768px) {
	.container {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.section.apply .buttons .button {
		width: 100%;
		margin-left: 0;
		margin-top: 1rem;
	}
	.section.apply .buttons .button:first-child {
		margin-top: 0;
	}
}

/*/////////////////////////////// end /*/
