body{
	background-color:var(--jb-bg-black);
}

#wrapper{
	position:relative;
	min-width: 1047px;
	margin-left: auto;
	margin-right:auto	;
	padding:12px;
}

.page_container{
/*max-width:1280px;*/

	margin-left: auto;
	margin-right:auto	
}

/*@media only screen and (max-device-width: 767px) {*/
@media only screen and (max-width: 767px) {
	#wrapper {
		width:100%;
		min-width: 320px;
		max-width:767px
	}
}


/******************************************************************
	Header
******************************************************************/
#header{
	position:fixed;
	left:0;
	top:0;
	right:0;
	z-index:200;
		min-height:60px;
}

#header .gnb{
	position:relative;
	width:100%;
	height:64px;
	border-radius:var(--jb-radius-form);
	border:1px SOLID rgba(255,255,255,0.2);
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(8px);
	margin-left:auto;
	margin-right:auto;
}

#header .gnb.full{
	width:calc(100% - 24px);
	margin-top:12px;
}

#header .gnb:not(.full){
	width:calc(100% - 48px);
	margin-top:24px;
}

#header .logo{
	position:absolute;
	top:8px;
	left:12px;
}

#header .logo a{
	display:inline-flex;
	height:48px;
	color:var(--jb-white);
}

#header .logo a .icon{
	height:48px;
} 
#header .logo a .icon img{
	width:48px;
}

#header .logo a .label{
	font-size:1.5rem;
	font-weight:700;
	line-height:46px;
	padding-left:12px;
}

#header .menu{
	width:100%;
}

#header .menu .menu_list{
	display: flex;
	justify-content: center;
}

#header .menu .menu_list li:not(:first-child){
	padding-left:60px;
}

#header .menu .menu_list a{
	font-size:1rem;
	font-weight:700;
	line-height:62px;
	color:rgba(255,255,255,0.8);
}

#header .menu .menu_list a:hover{
	color:rgba(255,255,255,1);
}

#header .toggle{
	display:none;
	position:absolute;
}

/*@media only screen and (max-device-width: 767px) {*/
@media only screen and (max-width: 767px) {
	#header .menu{
		display:none;
	}

	#header .toggle{
		display:inline-block;
		top:8px;
		right:6px;
	}

	#header .toggle button{
		width:48px;
		height:48px;
		color:var(--jb-white);
		border:none;
		background-color:transparent;
	}

	#header .toggle .material_icons{
		font-size:2rem;
	}

}

/******************************************************************
	Main
******************************************************************/
#main{
/*
	background-color:rgba(255,255,255,0.2);
	border-radius:var(--jb-radius-page);
*/
	min-height:600px;

}

#main #title{
	position:relative;
	height:480px;
	border-radius:var(--jb-radius-form);
	background-color:#371A93;
	overflow:hidden;
  display: flex;
  align-items: center;
	padding-left:60px;
	padding-right:60px;
}

#main #title .content{
  display: flex;
  justify-content: center;
}

#main #title #title_label{
	position: relative;
	font-size:6rem;
	font-family:'Newsreader', serif;
	font-weight:600;
	color:var(--jb-white);
  white-space: nowrap;	
	overflow:hidden;
}

#main #title #title_label span{
	font-family:'Newsreader', serif;
	opacity: 0; /* 초기 상태: 투명 */
	display: inline-block;
	animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
	to { opacity: 1; }
}

#main .main_container:not(:first-child){
	margin-top:12px;
}

#main .content_wrapper{
	padding:120px 60px;
}

#main .content_title{
	font-size:3rem;
	font-family:'Newsreader', serif;
	font-weight:600;
	font-style:italic;
	line-height:120%;
	color:var(--jb-main);
}

#main .title_description{
	font-size:1.25rem;
	font-family:'Newsreader', serif;
	font-weight:300;
	line-height:160%;
	color:var(--jb-white);
}


/*@media only screen and (max-device-width: 767px) {*/
@media only screen and (max-width: 767px) {
	#main #title{
		height:240px;
		padding-left:36px;
		padding-right:36px;
	}

	#main #title #title_label{
		font-size:3rem;
		padding-top:48px;
	}

	#main .content_wrapper{
		padding: 60px 0px;
	}

	#main .content_title {
		font-size: 2rem;
	}

	#main .title_description {
		font-size: 1rem;
	}
}

/******************************************************************
	Footer
******************************************************************/
#footer{
	background-color:#0c1427;
	border-radius:var(--jb-radius-form);
	margin-top:12px;
	padding-top:96px;
	padding-bottom:96px;
}

.footer_container{
	padding-left:60px;
	padding-right:60px;
}

#footer_overview .cont_container{
	display:flex;
	justify-content: space-between;
}

#footer_overview .cont_container .overview{
	flex-grow: 1;
	flex-shrink: 1;
}

#footer_overview .cont_container .menu,
#footer_overview .cont_container .sns{
	flex-grow: 0;
	flex-shrink: 0;
}

#footer_overview .identity{
	display:flex;
	align-items: center;
	padding-bottom:24px;
}

#footer_overview .identity .logo img{
	width:84px;
}

#footer_overview .identity .label{
	font-size:2.5rem;
	font-weight:700;
	color:var(--jb-white);
	padding-lefT:24px;
}

#footer_overview .cont_list{
	display:flex;
	padding-top:8px;
}

#footer_overview .cont_list li{
	display:flex;
	font-size:0.9375rem;
}

#footer_overview .cont_list > li:not(:first-child):before{
	content: '';
	position: relative;
	top: 6px;
	display: inline-block;
	width: 1px;
	height: 11px;
	background:rgba(255,255,255,0.2);
	margin-left: 8px;
	margin-right: 8px;
}

#footer_overview .cont_list .label{
	white-space: nowrap;
}

#footer_overview .cont_list .label:after{
	content:':';
	font-size:0.8125rem;
	padding-left:4px;
	padding-right:6px;
}

.footer_container .cont_container .menu{
	padding-right:96px;
}

.footer_container .cont_container .menu .menu_list li:not(:first-child){
	padding-top:12px;

}

.footer_container .cont_container .menu a{
	font-size:1rem;
	font-weight:500;
	color:rgba(255,255,255,0.6);
	cursor:pointer;
}

.footer_container .cont_container .menu a:hover{
	color:rgba(255,255,255,1);
}

#footer_copyright .cont_container{
	border-top:1px SOLID rgba(255,255,255,0.08);
	margin-top:48px;
	padding-top:36px;
}

/*@media only screen and (max-device-width: 767px) {*/
@media only screen and (max-width: 767px) {
	#footer{
		margin-top:6px;
		padding-top:24px;
		padding-bottom:24px;
	}

	.footer_container{
		padding-left:24px;
		padding-right:24px;
		flex-direction: column;
	}

	#footer_overview .cont_list{
		flex-direction: column;
	}

	#footer_overview .cont_list li{
		font-size:0.8125rem;
	}

	#footer_overview .cont_list > li:not(:first-child){
		padding-top:8px;
	}

	#footer_overview .cont_list > li:not(:first-child):before{
		display: none;
	}

	#footer_overview .menu{
		display:none;
	}

	#footer_copyright .cont_container{
		border-top:1px SOLID rgba(255,255,255,0.08);
		margin-top:24px;
		padding-top:16px;
	}

}


/******************************************************************
	Popup
******************************************************************/



/******************************************************************
	Slide
******************************************************************/



/******************************************************************
	Side
******************************************************************/
#side_bar{
	position:fixed;
	width:100%;
	height:100vh;
	left:0;
	top:0;
	right:0;
	bottom:0;
	background-color:rgba(0,0,0,0.8);
	z-index:900;
}

#side_bar .bar_wrapper{
	display:flex;
	flex-direction: column;
  justify-content: center;
	position:absolute;
	right:0;
	top:0;
	width:100%;
	max-width:240px;
	height:100vh;
	z-index:900;
	background-color:var(--jb-color-black);
	padding-left:24px;
}

#side_bar .bar_wrapper .top{
	text-align:right;
	padding-right:12px;
}

#side_bar .bar_wrapper .top button{
	width:48px;
	height:48px;
	color:var(--jb-white);
	border:none;
	background-color:transparent;
	cursor:pointer;
}

#side_bar .bar_wrapper .top button:hover{
	color:var(--jb-main);
}

#side_bar .bar_wrapper .top .material_icons{
	font-size:2rem;
}

#side_bar .bar_wrapper .menu_list{
	padding-top:12px;
}

#side_bar .bar_wrapper .menu_list li{
	padding-top:24px;
}

#side_bar .bar_wrapper .menu_list li a{
	font-size:1.5rem;
	font-weight:500;
	color:var(--jb-white);
}

#side_bar .bar_wrapper .menu_list li a:hover{
	color:var(--jb-main);
}