:root {
		--transition-basic:all .4s ease;
		--transition-custom:all .15s ease;
}

/* Rest */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	color: #030303;
	font-family: "Noto Sans KR", sans-serif;
	font-size: 62.5% !important;
	letter-spacing: -0.02em;
	word-break: keep-all;
	word-wrap: break-word;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
	-webkit-tap-highlight-color : transparent !important;
	animation:entry .3s ease forwards;
  opacity: 0;
}

html::-webkit-scrollbar {
	display: none;
}

html {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

body {
	font-size: 1.6rem;
}

a {
	color: inherit;
	outline: none;
	text-decoration: none;
}

ol, ul {
	list-style: none;
}

b, strong {
	font-weight: 700;
}

img {
	max-width: 100%;
}

button {
	font-family: inherit;
	border: none;
	outline: none;
	cursor: pointer;
	color: inherit;
	-webkit-appearance: none;
	background: none;
}

select {
	outline: none;
	border: 1px solid transparent;
	font-family: inherit;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
}

input, textarea {
	font-family: inherit;
	outline: none;
	border: 1px solid transparent;
}

:focus {
	outline: none;
}

::placeholder {
	color:#737373;
}

em, i {
	font-style: normal;
}

@-webkit-keyframes entry {
	to{opacity: 1;}
}

@keyframes entry {
	to{opacity: 1;}
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Font Face */
@font-face {
	font-family: "RIDIBatang";
	font-style: normal;
	font-weight: 400;
	src: url('../font/RIDIbatang.woff') format('woff'),
			url('../font/RIDIbatang.woff2') format('woff2');
}


/* Blind */
.blind {
	overflow: hidden;
	position: absolute;
	width: 1px;
	height: 1px;
	clip: rect(1px, 1px, 1px, 1px);
}


/* Overflow */
.hidden {
	overflow: hidden;
}


/* Position */
.position-relative {
	position: relative;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
	.position-md-relative {
		position: relative;
	}
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Media */
@media screen and (max-width:1200px) {
	.lg {
		display: none;
	}
}
@media screen and (max-width:1024px) {
	.md {
		display: none;
	}
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Display */
.d-inline-block {
	display: inline-block;
}

.d-inline-flex {
	display: inline-flex;
}

.d-block {
	display: block;
}

.d-flex {
	display: flex;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
	.d-md-flex {
		display: flex;
	}
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {
	.d-xs-flex {
		display: flex;
	}
}


/* Flex Direction */
.flex-direction {
	flex-direction: column;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
	.flex-md-direction {
		flex-direction: column;
	}
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Flex Wrap */
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
	.flex-lg-wrap {
		flex-wrap: wrap;
	}
}
@media screen and (max-width:768px) {
	.flex-md-wrap {
		flex-wrap: wrap;
	}
}
@media screen and (max-width:576px) {
	.flex-xs-wrap {
		flex-wrap: wrap;
	}
}


/* Flex Align */
.align-items-center {
	align-items: center;
}

.align-items-end {
	align-items: flex-end;
}

@media screen and (min-width:1201px) {

}
@media screen and (min-width:1025px) {
	
}
@media screen and (min-width:769px) {

}
@media screen and (min-width:577px) {

}


/* Justify Content */
.justify-content-center {
	justify-content: center;
}

.justify-content-between {
	justify-content: space-between;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
	.justify-md-content-center {
		justify-content: center;
	}
}
@media screen and (max-width:768px) {
	.justify-md-content-center {
		justify-content: center;
	}
}
@media screen and (max-width:576px) {
	.justify-xs-content-center {
		justify-content: center;
	}
}

@media screen and (min-width:1025px) {
	.justify-min-lg-content-center {
		justify-content: center;
	}

	.justify-min-lg-content-between {
	justify-content: space-between;
}
}


/* Width */
.w100 {
	width: 100%;
}


/* Height */
.h100 {
	height:100%;
}


/* Container */
.container {
	max-width:1440px;
	width: 92%;
	margin:0 auto;
}


/* Wrap */
.wrap--sub {
	padding-top:100px;
}

.wrap--member {
	padding-top:0px !important;
}

@media screen and (max-width:1200px) {
	.wrap { 
		padding-top:70px;
	}	
}


/* Main */
#main {
	min-height:calc(100vh - 150px);
	overflow: hidden;
}


/* Header */
#header[data-header-theme = "white"] {
	background-color: #fff;
}

#header[data-header-theme = "white"] .h_logo {
	opacity: 1;
	visibility: visible;
}

#header[data-header-theme = "white"] .h_menu__link {
	color:#030303;
}

#header {
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	z-index:99;
	transition: var(--transition-basic);
}

#header .h-container {
	max-width: 1780px;
	width: 95%;
	margin:0 auto;
}

#header .h-inner {
	display: flex;
	justify-content: flex-end;
	position: relative;
}

#header .h_logo {
	position: absolute;
	top:22px;
	left:0;
	width:294px;
	height:56px;
	transition: var(--transition-basic);
	z-index:112;
}

#header .h_logo a {
	display: block;
	width: 100%;
	height:100%;
	background: url('../img/common/header_logo.png') no-repeat center;
}

#header .h_menu__li {
	position: relative;
}

#header .h_menu__link {
	display: block;
	font-size:2rem;
	font-weight:500;
	line-height: 1;
	transition: var(--transition-basic);
}

#header .h_menu__link h2 {
	font-size: inherit;
	font-weight: inherit;
	color:inherit;
}

#header .h_sub {
	transition: var(--transition-custom);
}

#header .h_sub a {
	display: block;
	width: 100%;
	font-size:1.8rem;
	transition: var(--transition-custom);
}

#header .h_mobile {
	display: none;
	position: absolute;
  top:0;
  right:0;
  width: 70px;
  height: 70px;
  z-index: 100000;
}

#header .h_mobile__btn {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}

#header .h_mobile__btn span {
  position: relative;
  margin: 0 auto;
}

#header .h_mobile__btn span::before,
#header .h_mobile__btn span::after {
  content: '';
  position: absolute;
}

#header .h_mobile__btn span,
#header .h_mobile__btn span::before,
#header .h_mobile__btn span::after {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000;
}

#header .h_mobile__btn span::before {
  margin-top: -8px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
	transition-delay: 0.2s, 0s;
}

#header .h_mobile__btn span::after {
  margin-top: 8px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
	transition-delay: 0.2s, 0s;
}

#header .h_mobile__btn[aria-pressed="true"] span {
  background-color: rgba(0, 0, 0, 0) !important;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

#header .h_mobile__btn[aria-pressed="true"] span::before {
	margin-top: 0;
	background-color: #191919;
  -webkit-transform: rotate(45deg);
	transform: rotate(45deg);
  -webkit-transition-delay: 0s, 0.2s;
	transition-delay: 0s, 0.2s;
}

#header .h_mobile__btn[aria-pressed="true"] span::after {
	margin-top: 0;
	background-color: #191919;
  -webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
  -webkit-transition-delay: 0s, 0.2s;
	transition-delay: 0s, 0.2s;
}

@media screen and (min-width:1201px) {
	#header .h_logo {
		opacity:0;
		visibility: hidden;
	}
	
	#header .h_menu__ul {
		display: flex;
	}
	
	#header .h_menu__link {
		padding:40px;
		color:#fff;
		text-shadow: 0.643px 0.766px 5px rgba(0, 0, 0, 0.1);
	}

	#header .h_sub {
		position: absolute;
		top:100%;
		left:50%;
		transform: translateX(-50%);
		min-width:180px;
		background-color: #37822f;
		text-align: center;
		opacity:0;
		visibility: hidden;
	}

	#header .h_sub li:not(:last-child) {
		border-bottom: 1px solid #d5d5d5;
	}
	
	#header .h_sub a {
		padding:12px 10px;
		color:#fff;
	}

	#header[data-hover = "on"] {
		background-color: #fff;
	}

	#header[data-hover = "on"] .h_logo {
		opacity: 1;
		visibility: visible;
	}

	#header[data-hover = "on"] .h_menu__link {
		text-shadow: none;
		color:#000;
	}

	#header.active {
		background-color: #fff;
	}

	#header.active .h_logo {
		opacity: 1;
		visibility: visible;
	}

	#header.active .h_menu__link {
		text-shadow: none;
		color:#000;
	}

	#header .h_menu__li:hover .h_menu__link {
		color:#009944;
	}

	#header .h_menu__li:hover .h_sub {
		opacity: 1;
		visibility: visible;
	}

	#header .h_sub li:hover a {
		background-color: #68cc79;
	}
}
@media screen and (max-width:1200px) {
	#header {
		height:70px;
		background-color: #fff;
		border-bottom: 1px solid #eee;
	}

	#header .h-container {
		width: 100%;
	}

	#header .h_logo {
		top:17px;
		left:20px;
		width:190px;
		height:36px;
	}

	#header .h_logo a {
		background-size:auto 36px;
	}

	#header .h_menu {
		position: fixed;
		top:0;
		left: 0;
		width: 100%;
		height: 100%;
		padding:100px 20px;
		background-color: #fff;
		opacity: 0;
		visibility: hidden;
		overflow-y:auto;
		z-index:110;
		transition: var(--transition-basic);
	}

	#header .h_menu__link {
		position: relative;
		font-size:1.8rem;
		padding:15px 0px;
		border-bottom: 1px solid #e3e3e3;
	}

	#header .h_menu__toggle::before,
	#header .h_menu__toggle::after {
		content: "";
    display: block;
    position: absolute;
    top: 50%;
    right:0px;
    width: 10px;
    margin-top: -1px;
    background-color: #000;
    height: 2px;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition:all .4s ease;
    transition:all .4s ease;
	}

  #header .h_menu__toggle::before {
    z-index: 2;
    -webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
    opacity: 1;
  }

	#header .h_sub {
		height:auto;
		max-height: 0px;
		overflow: hidden;
	}

	#header .h_sub li {
		padding-top: 15px;
	}

	#header .h_sub a {
		font-size: 1.6rem;
	}

	#header .h_mobile {
		display: block;
	}

	#header[data-header-mobile = "on"] .h_menu {
		opacity: 1;
		visibility: visible;
	}

	#header .h_menu__toggle[aria-toggle="true"] + .h_sub {
		max-height:280px;
		margin:0px 0px 20px;
	}

	#header .h_menu__toggle[aria-toggle="true"] {
		color:#008142;
		border-color: #008142;
	}
	
	#header .h_menu__toggle[aria-toggle="true"]::before,
	#header .h_menu__toggle[aria-toggle="true"]::after {
		background-color:#008142;
	}

  #header .h_menu__toggle[aria-toggle="true"]::before {
    -webkit-transform: rotate(0deg);
		transform: rotate(0deg);
  }

  #header .h_menu__toggle[aria-toggle="true"]::after {
    opacity: 0;
    -webkit-transform: rotate(180deg);
		transform: rotate(180deg);
  }
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {
	#header .h_logo {
		top:20px;
		width: 160px;
		height:30px;
	}

	#header .h_logo a {
		background-size:auto 30px;
	}

	#header .h_menu {
		padding:80px 20px;
	}

	#header .h_menu__link {
		font-size:1.6rem;
	}

	#header .h_sub a {
		font-size:1.4rem;
	}
}
@media screen and (max-width:576px) {
	#header .h_menu__link {
		font-size:1.4rem;
	}

	#header .h_sub a {
		font-size:1.2rem;
	}
}


/* Footer */
#footer {
	padding:50px 0px;
	background-color: #eeeeee;
}

#footer .f_name {
	font-size:1.6rem;
	font-weight:700;
	line-height:1;
}

#footer .f_info {
	max-width: 980px;
	width: 100%;
	margin:0 auto;
}

#footer .f_info ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin:-4px -20px;
}

#footer .f_info li {
	position: relative;
	font-size:1.4rem;
	padding:4px 20px;
}

#footer .f_info li.border::after {
	content: "";
	display: block;
	position: absolute;
	top:50%;
	right:0;
	transform: translateY(-50%);
	width:1px;
	height:10px;
	background-color: #000;
}

#footer .f_link ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin:-4px -20px;
}

#footer .f_link li {
	position: relative;
	font-size:1.4rem;
	padding:4px 20px;
}

#footer .f_link li.border::after {
	content: "";
	display: block;
	position: absolute;
	top:50%;
	right:0;
	transform: translateY(-50%);
	width:1px;
	height:10px;
	background-color: #000;
}

#footer .f_copy {
	font-size:1.4rem;
}

@media screen and (max-width:1200px) {
	#footer .f_name {
		font-size:1.4rem;
	}

	#footer .f_info li {
		font-size:1.3rem;
	}

	#footer .f_link li {
		font-size:1.3rem;
	}
	
	#footer .f_copy {
		font-size:1.3rem;
	}
}
@media screen and (max-width:1024px) {
	#footer {
		padding: 36px 0px;
	}

	#footer .f_name {
		font-size:1.3rem;
	}

	#footer .f_info ul {
		margin:-2px -12px;
	}

	#footer .f_info li {
		font-size:1.2rem;
		padding:2px 12px;
	}

	#footer .f_link ul {
		margin:-2px -12px;
	}

	#footer .f_link li {
		font-size:1.2rem;
		padding:2px 12px;
	}
	
	#footer .f_copy {
		font-size:1.2rem;
	}
}
@media screen and (max-width:768px) {
	#footer .f_name {
		font-size:1.2rem;
	}

	#footer .f_info {
		flex-wrap: wrap;
	}

	#footer .f_info li {
		width: 100%;
		font-size:1.1rem;
	}

	#footer .f_info li.border::after {
		display: none;
	}

	#footer .f_link ul {
		margin:-2px -8px;
	}

	#footer .f_link li {
		font-size:1.1rem;
		padding:2px 8px;
	}

	#footer .f_link li.border::after {
		height:8px;
	}

	#footer .f_copy {
		font-size:1.1rem;
	}
}
@media screen and (max-width:576px) {
	#footer .f_name {
		font-size:1.1rem;
	}

	#footer .f_info li {
		font-size:1rem;
	}

	#footer .f_link li {
		font-size:1rem;
	}

	#footer .f_copy {
		font-size:1rem;
	}
}


/* Quick */
#quick {
	position: fixed;
	top:50%;
	right:80px;
	transform: translateY(-50%);
	z-index:20;
}

#quick .quick-menu {
	font-size:0px;
}

#quick .quick-menu li:not(:last-child) {
	margin-bottom:16px;
}

#quick .quick-menu img {
	filter: drop-shadow(2px 2px 4px rgba(0,0,0,.05));
}

@media screen and (max-width:1366px) {
	#quick {
		right:60px;
	}
}
@media screen and (max-width:1200px) {
	#quick {
		top:unset;
		right:30px;
		bottom:30px;
		transform: none;
	}

	#quick .quick-menu li:not(:last-child) {
		margin-bottom:10px;
	}

	#quick .quick-menu img {
		width: 78px;
	}
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {
	#quick {
		right:20px;
		bottom:20px;
	}
}
@media screen and (max-width:576px) {
	#quick {
		right:16px;
		bottom:16px;
	}

	#quick .quick-menu li:not(:last-child) {
		margin-bottom:6px;
	}

	#quick .quick-menu img {
		width: 64px;
	}
}



@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}