@charset "utf-8";

:root {
	--fontColor : #333333;
	--pointColor: #3262FF;
	--subColor: #4b5c88;

	--fontsize: 14px;
	--font-step: 1px;
	
	--fontsize-5: calc(var(--fontsize) - var(--font-step)*5);
	--fontsize-4: calc(var(--fontsize) - var(--font-step)*4);
	--fontsize-3: calc(var(--fontsize) - var(--font-step)*3);
	--fontsize-2: calc(var(--fontsize) - var(--font-step)*2);
	--fontsize-1: calc(var(--fontsize) - var(--font-step));

	--fontsize1: calc(var(--fontsize) + var(--font-step)); /*15px*/
	--fontsize2: calc(var(--fontsize) + var(--font-step)*2);
	--fontsize3: calc(var(--fontsize) + var(--font-step)*3);
	--fontsize4: calc(var(--fontsize) + var(--font-step)*4);
	--fontsize5: calc(var(--fontsize) + var(--font-step)*5);
	--fontsize6: calc(var(--fontsize) + var(--font-step)*6);
	--fontsize7: calc(var(--fontsize) + var(--font-step)*7);
	--fontsize8: calc(var(--fontsize) + var(--font-step)*8);
	--fontsize9: calc(var(--fontsize) + var(--font-step)*9);
	--fontsize10: calc(var(--fontsize) + var(--font-step)*10); /*24px*/

	--fontfamily: "NotoSansKr-var";
	--fontfamilyG: 'Gmarket Sans TTF';
	--fontfamilyS: 'SEBANG-Gothic';

}
@media (max-width: 979px) {
	:root {
		--fontsize: 13px;
	}
}


/*reset*/
* {-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; font-style: normal;}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {display: block;}
body {line-height: 1.3;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {content: ''; content: none;}
table { width: 100%; border-collapse: collapse; border-spacing: 0;}
button {border: none; background: none; box-shadow: none; cursor: pointer;}
a {text-decoration: none; color: inherit;}
img {max-width: 100%;}
input, textarea {font-size: 1rem; border: none; background: #fff;}

/*kape common*/
html {width: 100%; height: 100%; overflow-x: hidden; overflow-y: auto; font-family: var(--fontfamily); font-weight: 500; font-size: var(--fontsize);}
body {background: #EFF3FB;}


/*------------------------------------------------------------------------------------------
	sidebar
------------------------------------------------------------------------------------------*/
.sidebar {
	width: 260px;
	background: #fff;
	border-right: 1px solid #ddd;
	height: 100vh;
	display: flex;
	flex-direction: column;
	transition: width .3s;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1;
}
	
.sidebar-header {
	line-height: 1.1;
	border-bottom: 1px solid #ddd;
	padding: 15px;
	font-family: 'Paperlogy';
	font-weight: 600;
	font-size: var(--fontsize4);
	display: flex;
	gap: 15px;
}
.sidebar-header img {
	width: 40%;
	border: 0;
	display: block;
}

.menu {
	flex: 1;
	overflow-y: auto;
}
.menu-btn {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	border: none;
	background: none;
	cursor: pointer;
	font-family: 'Paperlogy';
	font-size: var(--fontsize2);
	font-weight: 600;
	color: #444;
	transition: 0.2s;
}
.menu-btn i {
	font-size: var(--fontsize3);
}
.menu-btn:hover { background: #f3f3f3; }
.menu-item.open > .menu-btn { 
	color: #fff;
	background: #375387;
}
.manual-out {
	position: fixed;
	top: 10px;
	right: 10px;
	z-index: 9;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #939cc1;
	border-radius: 5px;
	color: #fff;
	font-size: 20px;
}
.submenu {
	display: block;
	/*background: #f6f0ff;*/
	border-left: 3px solid #375387;
}

.submenu-btn {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 15px;
	background: none;
	border: none;
	cursor: pointer;
	font-size: var(--fontsize1);
	color: #444;
	transition: .2s;
}
.submenu-btn:hover { background: #F3F6FF; }
.submenu-btn.selected {
	background: #F3F6FF;
	color: #2c4586;
	font-weight: 600;
}

.num {
	width: 22px;
	height: 22px;
	background: #4a669a;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--fontsize-2);
}

@media (max-width: 979px) {
	.sidebar {
		width: 100%;
		height: auto;
		border-right: 0;
		transform: translateX(-100%);
	}
	.sidebar.open {
		transform: translateX(0);
	}
	.sidebar-header {
		padding: 8px 15px;
		font-size: var(--fontsize3);
		gap: 10px;
	}
	.sidebar-header img {
		width: 80px;
		height: auto;
		margin-bottom: 0;
	}

	.menu {
		display: flex;
	}
	.menu-item {
		width: 50%;
	}
	.menu-btn {
		justify-content: center;
		border-bottom: 3px solid #375387;
	}

	.submenu {
		display: none;
		overflow: hidden;
	}
	.submenu.open {
		width:  100%;
		display: flex;
		flex-wrap: wrap;
		position: absolute;
		top: 97px;
		left: 0;
		background-color: #fff;
		border: 3px solid #375387;
		border-top: 0;
	}
	.submenu-btn {
		width: auto;
		padding: 10px 10px;
	}


}
@media (max-width: 520px) {
	
}

/*------------------------------------------------------------------------------------------
	컨텐츠
------------------------------------------------------------------------------------------*/
.manualWrap h1 {
	font-family: var(--fontfamilyS);
	font-size: var(--fontsize10);
	font-weight: 600;
	padding-bottom: 10px;
}
#mainContent {
	height: 100vh;
	margin-left: 260px;
	padding: 20px;
	flex: 1;
}
#contentContainer {
	height: calc(100vh - 80px);
	line-height: 1.5;
	border: 1px solid #D7DDEE;
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	font-size: var(--fontsize3);
	color: rgba(0,0,0,0.8);
	overflow-y: scroll;
}
#contentContainer::-webkit-scrollbar {width: 10px; background: #ddd; border-radius: 10px;}
#contentContainer::-webkit-scrollbar-thumb {background: #4a547a; border-radius: 8px;}
#contentContainer::-webkit-scrollbar-track {}

.manual-section {
	padding-bottom: 50px;
}

#mainContent img {
	width: 100%;
	max-width: 900px;
	margin: 20px;
	border: 1px solid #ddd;
	display: block;
}
#mainContent img.wide {
	margin-left: 0;
}
#mainContent h2 {
	font-family: var(--fontfamilyG);
	font-size: var(--fontsize7);
	font-weight: 600;
	border-bottom: 1px solid #ddd;
	margin-bottom: 15px;
	padding-bottom: 5px;
	color: rgba(0,0,0,1);
}
#mainContent h2 i {
}
#mainContent h3 {
	font-family: 'Paperlogy';
	font-size: var(--fontsize4);
	font-weight: 600;
	padding-bottom: 5px;
	padding-top: 30px;
	color: #3B56D9;
	display: flex;
	align-items: center;	
	gap: 5px;
}
#mainContent h4 {
	font-family: 'Paperlogy';
	font-size: var(--fontsize2);
	color: rgba(0,0,0,1);
	padding: 5px 20px;
	display: flex;
	align-items: center;	
	gap: 5px;
}
#mainContent h4 img {
	width: auto;
	margin: 0 5px;
	border: 0;
	display: inline;
}
#mainContent p {
	padding: 0 20px;
	color: rgba(0,0,0,0.7);
	font-size: var(--fontsize2);
	font-weight: 400;
}
#mainContent p img {
	width: auto;
	margin: 0px 5px 5px;
	border: 0;
	display: inline;
	vertical-align: middle;
}
#mainContent p b {
	color: rgba(0,0,0,0.8);
	font-weight: 600;
}
#mainContent li img {
	width: auto;
	max-width: 32px;
	max-height: 32px;
	margin: 0px 5px 5px;
	border: 0;
	display: inline;
	vertical-align: middle;
}
#mainContent strong {
	font-weight: 800;
}
#mainContent li b {
	line-height: 30px;
	color: rgba(0,0,0,0.8);
	font-weight: 600;
}

.numLi li {
	min-height: 30px;
	padding-left: 35px;
	margin-bottom: 10px;
	color: rgba(0,0,0,0.7);
	font-size: var(--fontsize2);
	font-weight: 400;
	position: relative;
}
.conNum {
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 7px;
	background-color: #ff2b2b;
	color: #fff;
	text-align: center;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

.uStyle {
   box-shadow: inset 0 -7px 0 #E3EBFF;
   padding: 0 3px;
}


@media (max-width: 979px) {
	.manualWrap h1 {
		font-size: var(--fontsize8);
	}
	#mainContent {
		margin-left: 0;
		padding: 15px;
		padding-top: 115px;
	}
	#contentContainer {
		height: calc(100vh - 160px);
		padding: 15px;
	}
	#mainContent img {
		max-width: calc(100% - 15px);
		margin: 10px;
	}
	#mainContent img.wide {
		max-width: calc(100%);
		margin: 10px 0;
	}
	#mainContent h2 {
		font-size: var(--fontsize5);
	}
	#mainContent h4 {
		padding: 5px 10px;
	}
	#mainContent p {
		padding: 0 10px;
	}
	#mainContent li img {
		width: auto;
		max-width: 25px;
		max-height: 25px;
		margin: 0px 5px 5px;
		border: 0;
		display: inline;
		vertical-align: middle;
	}

	.numLi li {
		min-height: 26px;
		padding-left: 30px;
		margin-bottom: 7px;
	}
	.conNum {
		width: 26px;
		height: 26px;
		line-height: 26px;
	}
}
@media (max-width: 520px) {
	
}
