/* Reset */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	color: #191919;
	font-family: "Noto Sans KR", serif;
	font-size: 62.5% !important;
	letter-spacing: -0.01em;
	word-break: keep-all;
	word-wrap: break-word;
	box-sizing: border-box;
	-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;
	background-color: transparent;
	border: none;
	outline: none;
	cursor: pointer;
}

select {
	outline: none;
	border: 1px solid transparent;
	font-family: inherit;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color:transparent;
	/* background-size:14px auto; */
	/* background-image: url('/img/common/u_select.png'); */
	background-repeat: no-repeat;
	/* background-position:right 20px center; */
}

input, textarea {
	font-family: inherit;
	outline: none;
	border: 1px solid transparent;
}

textarea {
	resize: none;
}

em, i {
	font-style: normal;
}

:focus {
	outline: none;
}

::placeholder {
	color: #b5b5b5;
}


@-webkit-keyframes entry {
	to{opacity: 1;}
}

@-moz-keyframes entry {
	to{opacity: 1;}
}

@-ms-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) {

}


/* Overflow */
.hidden {
	overflow: hidden;
}


/* Display */
.mo {
	display: none;
}

@media screen and (max-width:1024px) {
	.pc {
		display: none;
	}

	.mo {
		display: block;
	}
}
@media screen and (max-width:768px) {
	.tb {
		display: none;
	}
}


/* Ellip */
.ellip {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}


/* Blind */
.blind {
	overflow: hidden;
	position: absolute;
	width: 1px;
	height: 1px;
	clip: rect(1px, 1px, 1px, 1px);
}

/* Display */
.d-block {
	display: block;
}


/* Flex */
.d-inline-flex {
	display: inline-flex;
}

.d-flex {
	display: flex;
}


/* Wrap */
.flex-wrap {
	flex-wrap: wrap;
}

@media screen and (max-width:1200px){
	.flex-xl-wrap {
		flex-wrap: wrap;
	}
}
@media screen and (max-width:1024px){
	.flex-lg-wrap {
		flex-wrap: wrap;
	}
}

@media screen and (max-width:576px){
	.flex-sm-wrap {
		flex-wrap: wrap;
	}
}


/* Justify */
.justify-center {
	justify-content: center;
}

.justify-end {
	justify-content: flex-end;
}

@media screen and (min-width:1025px){
	.justify-lg-space-between {
		justify-content: space-between;
	}
}
@media screen and (min-width:577px){
	.justify-sm-space-between {
		justify-content: space-between;
	}
}
@media screen and (max-width:1024px){
	.justify-lg-center {
		justify-content: center;
	}
}


/* 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:577px){
	
} */


/* Gap */
.gap-6 {
	gap:6px;
}

.gap-10 {
	gap:10px;
}

.gap-80 {
	gap:80px;
}

.gap-90 {
	gap:90px;
}

@media (max-width:1200px){
	.gap-80 {
		gap:40px;
	}

	.gap-90 {
		gap:60px;
	}
}
@media (max-width:1024px){
	.gap-6 {
		gap:4px;
	}

	.gap-10 {
		gap:6px;
	}

	.gap-80 {
		gap:30px;
	}

	.gap-90 {
		gap:40px;
	}
}
@media (max-width:576px){
	.gap-6 {
		gap:2px;
	}

	.gap-10 {
		gap:4px;
	}

	.gap-80 {
		gap:20px;
	}

	.gap-90 {
		gap:30px;
	}
}


/* Font */
.fm-os {
	font-family: "Open Sans", serif;
}


/* Weight */
.fw-400 {
	font-weight:400;
}

.fw-500 {
	font-weight:500;
}

.fw-600 {
	font-weight:600;
}

.fw-700 {
	font-weight:700;
}


/* Line Height */
.lh-1 {
	line-height:1;
}

.lh-12 {
	line-height:1.2;
}

.lh-14 {
	line-height:1.4;
}

.lh-16 {
	line-height:1.6;
}

.lh-17 {
	line-height:1.7;
}

.lh-23 {
	line-height:2.3;
}


/* Color */
.text-white {
	color:#fff;
}

.text-blue {
	color:#0052b8;
}

.text-blue2 {
	color:#006bf0;
}

.text-red {
	color:#dd010e;
}

.text-red2 {
	color:#dc000e;
}

.text-green {
	color:#00652b;
}


/* Text Align */
.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}


/* Margin */
.mb-10 {
	margin-bottom:10px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-30 {
	margin-bottom:30px;
}

.mb-40 {
	margin-bottom:40px;
}

.mb-50 {
	margin-bottom:50px;
}

.mb-60 {
	margin-bottom:60px;
}

.mb-70 {
	margin-bottom:70px;
}

.mb-80 {
	margin-bottom: 80px;
}

.mb-120 {
	margin-bottom:120px;
}

.mt-10 {
	margin-top:10px;
}

.mt-20 {
	margin-top:20px;
}

.mt-30 {
	margin-top:30px;
}

.mt-40 {
	margin-top:40px;
}

.mt-60 {
	margin-top:60px;
}

.mt-80 {
	margin-top:80px;
}

@media (max-width:1200px) {

}
@media (max-width:1024px) {
	.mb-10 {
		margin-bottom:6px;
	}
	
	.mb-20 {
		margin-bottom: 12px;
	}

	.mb-30 {
		margin-bottom:20px;
	}

	.mb-40 {
		margin-bottom:30px;
	}

	.mb-50 {
		margin-bottom:34px;
	}

	.mb-60 {
		margin-bottom:40px;
	}

	.mb-80 {
		margin-bottom: 60px;
	}

	.mb-120 {
		margin-bottom:100px;
	}

	.mt-10 {
		margin-top:6px;
	}

	.mt-20 {
		margin-top:12px;
	}

	.mt-30 {
		margin-top:20px;
	}
	
	.mt-40 {
		margin-top:30px;
	}

	.mt-60 {
		margin-top:40px;
	}

	.mt-80 {
		margin-top:60px;
	}
}
@media (max-width:768px) {

}
@media (max-width:576px) {
	.mb-10 {
		margin-bottom:4px;
	}
	
	.mb-20 {
		margin-bottom:6px;
	}

	.mb-30 {
		margin-bottom:12px;
	}

	.mb-40 {
		margin-bottom:20px;
	}

	.mb-50 {
		margin-bottom:24px;
	}

	.mb-60 {
		margin-bottom:30px;
	}

	.mb-80 {
		margin-bottom: 30px;
	}

	.mb-120 {
		margin-bottom:70px;
	}

	.mt-10 {
		margin-top:4px;
	}

	.mt-20 {
		margin-top:6px;
	}

	.mt-30 {
		margin-top:12px;
	}

	.mt-40 {
		margin-top:20px;
	}

	.mt-60 {
		margin-top:30px;
	}

	.mt-80 {
		margin-top:30px;
	}
}


/* Padding */
.pl-30 {
	padding-left:30px;
}

.pl-40 {
	padding-left:40px;
}

.pr-40 {
	padding-right:40px;
}

.pb-10 {
	padding-bottom:10px;
}

.pb-20 {
	padding-bottom:20px;
}

.pb-30 {
	padding-bottom:30px;
}

.pb-40 {
	padding-bottom:40px;
}

.pb-50 {
	padding-bottom:50px;
}

.pb-60 {
	padding-bottom:60px;
}

.pb-70 {
	padding-bottom:70px;
}

.pb-80 {
	padding-bottom:80px;
}

.pb-120 {
	padding-bottom:120px;
}

.pt-20 {
	padding-top:20px;
}

.pt-40 {
	padding-top:40px;
}

.pt-50 {
	padding-top:50px;
}

.pt-60 {
	padding-top:60px;
}

.pt-100 {
	padding-top:100px;
}

.py-20 {
	padding:20px 0px;
}

.py-30 {
	padding:30px 0px;
}

.py-40 {
	padding:40px 0px;
}


.py-80 {
	padding:120px 0px;
}

.py-120 {
	padding:120px 0px;
}

@media (max-width:1200px) {

}
@media (max-width:1024px) {
	.pl-30 {
		padding-left:20px;
	}
	
	.pl-40 {
		padding-left:30px;
	}
	
	.pr-40 {
		padding-right:30px;
	}

	.pb-20 {
		padding-bottom:12px;
	}
	
	.pb-30 {
		padding-bottom:20px;
	}

	.pb-80 {
		padding-bottom:60px;
	}

	.pb-120 {
		padding-bottom:100px;
	}
	
	.pt-20 {
		padding-top:12px;
	}

	.pt-40 {
		padding-top:30px;
	}

	.pt-50 {
		padding-top:34px;
	}

	.pt-60 {
		padding-top:40px;
	}

	.pt-100 {
		padding-top:70px;
	}

	.py-20 {
		padding:12px 0px;
	}

	.py-30 {
		padding:20px 0px;
	}

	.py-40 {
		padding:30px 0px;
	}

	
.py-80 {
		padding:60px 0px;
	}

	.py-120 {
		padding:100px 0px;
	}
}
@media (max-width:768px) {

}
@media (max-width:576px) {
	.pl-30 {
		padding-left:12px;
	}
	
	.pl-40 {
		padding-left:20px;
	}
	
	.pr-40 {
		padding-right:20px;
	}

	.pb-20 {
		padding-bottom:6px;
	}

	.pb-30 {
		padding-bottom:12px;
	}

	.pb-80 {
		padding-bottom:30px;
	}

	.pb-120 {
		padding-bottom:70px;
	}

	.pt-20 {
		padding-top:6px;
	}

	.pt-40 {
		padding-top:20px;
	}

	.pt-50 {
		padding-top:24px;
	}

	.pt-60 {
		padding-top:30px;
	}

	.pt-100 {
		padding-top:50px;
	}

	.py-20 {
		padding:6px 0px;
	}

	.py-30 {
		padding:12px 0px;
	}

	.py-40 {
		padding:20px 0px;
	}

	.py-80 {
		padding:50px 0px;
	}
	.py-120 {
		padding:70px 0px;
	}
	
}


/* Position */
.ps-relative {
	position:relative;
}


/* Board Radius */
.rounded-20 {
	border-radius:20px;
}


/* Wrap */
.wrap {
	padding-top:90px;
}

@media screen and (max-width:1200px){
	.wrap {
		padding-top:60px;
	}	
}


/* Container */
.container {
	max-width:1430px;
	width:100%;
	margin:0 auto;
	padding:0px 15px;
}

.container--w500 {
	max-width:530px;
}

.container--720 {
	max-width:750px;
}



/* Main */
#main {
	min-height: calc(100vh - 300px);
	overflow: hidden;
}


/* Header */
#header {
	position: fixed;
	top:0;
	left:0;
	width:100%;
	z-index:99;
	background-color: #fff;
}

#header .h-container {
	max-width: 1820px;
	width:95%;
	margin:0 auto;
}

#header .h-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

#header .h-background {
	position: absolute;
	top:90px;
	left:0;
	width:100%;
	height:0;
	padding-top: 0;
	background-color: #ffffff;
	-webkit-transition:all .5s cubic-bezier(0.46, 0.29, 0.36, 1);
	transition:all .5s cubic-bezier(0.46, 0.29, 0.36, 1);
}

#header .h_logo {
	width:163px;
	height:64px;
}

#header .h_logo a {
	display: block;
	width:100%;
	height:100%;
	background-repeat: no-repeat;
	background-position: center;
}

#header .h_menu {
	display: flex;
}

#header .h_menu__list {
	position: relative;
	cursor: pointer;
}

#header .h_menu__link {
	display: block;
	position: relative;
	margin:36px 50px;
	font-size:1.8rem;
	font-weight:500;
	line-height:1;
}

#header .h_menu__link h2 {
	font-size:inherit;
	font-weight: inherit;
}

#header .h_submenu {
	position: absolute;
	top:100%;
	left:50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
	height:0;
	max-height:0px;
	text-align: center;
	overflow: hidden;
	z-index:10;
	-webkit-transition:all .5s cubic-bezier(0.46, 0.29, 0.36, 1);
	transition:all .5s cubic-bezier(0.46, 0.29, 0.36, 1);
}

#header .h_submenu li {
	margin-top:16px;
}

#header .h_submenu li:first-child {
	margin-top:30px;
}

#header .h_submenu a {
	display: block;
	font-size:1.6rem;
	font-weight:500;
	color:#595959;
	opacity:.8;
	-webkit-transition:all .2s ease;
	transition:all .2s ease;
}

#header .h_asst {
	display: flex;
	align-items: center;
	gap:30px;
}

#header .h_asst .group {
	display: flex;
	align-items: center;
	gap:4px;
}

#header .h_asst__user {
	display: block;
	font-size:0px;
}

#header .h_asst__link {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	white-space: nowrap;
	padding:14px 20px 16px;
	background-color: #191919;
	border-radius:10px;
	font-size:1.6rem;
	font-weight:700;
	line-height:1;
	color:#fff;
}

#header .h_asst__mobile {
	display: none;
}

#header .h_mobile {
	display: none;
	position: absolute;
	top:0;
	right:0;
	width: 60px;
	height: 60px;
	z-index: 1000;
}

#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: 24px;
  height: 2px;
  background-color: #191919;
}

#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;
  -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;
  -webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
  -webkit-transition-delay: 0s, 0.2s;
	transition-delay: 0s, 0.2s;
}


#header .h_user__menu {
	position: absolute;
	top:68px;
	left:50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	min-width: 105px;
	background-color: #fff;
	border:1px solid #d2d2d2;
	border-radius:10px;
	text-align: center;
	z-index: 20;
	opacity:0;
	visibility: hidden;
	-webkit-transition:all .3s ease;
	transition:all .3s ease;
	pointer-events: none;
}

#header .h_user__menu li:not(:last-child) {
	border-bottom: 1px solid #d2d2d2;
}

#header .h_user__menu a {
	display: block;
	padding:8px 0px;
	font-size:1.6rem;
	line-height:1;
}

@media screen and (min-width:1201px) {
	#header::after {
		content:"";
		display: block;
		position: absolute;
		top:100%;
		left:0px;
		width:100%;
		height: 1px;
		background-color:#dcdcdc;
		-webkit-transition:all .5s cubic-bezier(0.46, 0.29, 0.36, 1);
		transition:all .5s cubic-bezier(0.46, 0.29, 0.36, 1);
	}

	#header .h_menu__link::after {
		content: "";
		display: block;
		position: absolute;
		left:50%;
		bottom:-8px;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		width:0;
		height: 1px;
		background-color: #191919;
		-webkit-transition:all .3s ease;
		transition:all .3s ease;
	}

	#header[data-hover = "on"] .h-background {
		height:245px;
		padding-top:90px;
	}

	#header[data-hover = "on"] .h_submenu {
		height: auto;
		max-height:220px;
	}

	#header .h_menu__list:hover .h_menu__link::after {
		width: 100%;
	}

	#header .h_submenu li:hover a {
		color:#191919;
		opacity:1;
	}

	#header .h_asst .h_asst__wrap {
		position: relative;
		display: flex;
		align-items: center;
		height:80px;
	}	

	#header .h_asst__user {
		padding:12px 0px;
	}

	#header .h_asst__wrap:hover .h_user__menu {
		opacity: 1;
		visibility: visible;
		pointer-events: unset;
	}
}
@media screen and (max-width:1536px) {
	#header .h_menu__link {
		margin:36px 40px;
	}
	
	#header .h_asst {
		gap:20px;
	}
}
@media screen and (max-width:1366px) {
	#header .h_logo {
		width:154px;
		height: 60px;
	}

	#header .h_logo a {
		background-size:auto 60px;
	}

	#header .h_menu__link {
		margin:36px 30px;
	}

	#header .h_asst {
		gap:12px;
	}
}
@media screen and (max-width:1280px) {
	#header .h_logo {
		width:154px;
		height: 60px;
	}

	#header .h_logo a {
		background-size:auto 60px;
	}

	#header .h_menu__link {
		margin:36px 30px;
	}

	#header .h_asst {
		gap:12px;
	}

	#header .h_asst__link {
		font-size:1.4rem;
	}
}
@media screen and (max-width:1200px) {
	#header {
		height:60px;
	}

	#header::before {
		content: "";
		display: block;
		position: absolute;
		top:0;
		left:0;
		width:100%;
		height:100%;
		background-color: #fff;
		border-bottom: 1px solid #dcdcdc;
		z-index:150;
	}

	#header .h-container {
		width: 100%;
	}

	#header .h-inner {
		display: block;
	}

	#header .h_logo {
		position: absolute;
		top:9px;
		left:15px;
		width:110px;
		height:42px;
		z-index:200;
	}

	#header .h_logo a {
		background-size: auto 42px;
	}

	#header .h_main {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		position: fixed;
		top:0;
		right:0;
		width: 100%;
		height: 100%;
		padding:80px 20px;
		background-color: #fff;
		-webkit-transition: all .4s ease-out;
		transition: all .4s ease-out;
		opacity:0;
		visibility: hidden;
		overflow-y: auto;
		z-index:100;
	}

	#header .h_menu {
		display: block;
	}

	#header .h_menu__link {
		position: relative;
		margin:0px;
		padding:15px 0px;
		font-size:1.6rem;
		border-bottom: 1px solid #bfbfbf;
	}

	#header .h_menu__toggle::before,
	#header .h_menu__toggle::after {
		content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    margin-top: -1px;
    background-color: #191919;
    height: 2px;
    -webkit-transform-origin: 50% 50%;
		-moz-transform-origin: 50% 50%;
		-ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition:all .4s ease;
		-moz-transition:all .4s ease;
		-ms-transition:all .4s ease;
    transition:all .4s ease;
	}

  #header .h_menu__toggle::before {
    z-index: 2;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
    opacity: 1;
  }

  #header .h_menu__toggle[aria-toggle="true"]::before {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
  }

  #header .h_menu__toggle[aria-toggle="true"]::after {
    opacity: 0;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		transform: rotate(180deg);
  }

	#header .h_submenu {
		position: relative;
    top:unset;
    left: unset;
    -webkit-transform: none;
		transform: none;
    width: 100%;
		height:auto;
    max-height: 0px;
    padding: 0px;
    margin:0px;
		overflow: hidden;
		text-align: left;
	}

	#header .h_submenu li {
		text-align: left;
		margin-top:15px;
	}

	#header .h_submenu li:first-child {
		margin-top:15px;
	}

	#header .h_submenu a {
		font-size:1.4rem;
		line-height:1;
	}

	#header .h_asst {
		position: absolute;
		top:23px;
		right:65px;
		gap:0px;
		z-index:200;
	}

	#header .h_asst__link {
		display: none;
	}

	#header .h_asst__mobile {
		display: flex;
		gap:6px;
	}

	#header .h_asst__mobile a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		width:100%;
		padding:14px 20px 16px;
		background-color: #191919;
		border-radius:10px;
		font-size:1.6rem;
		font-weight:700;
		line-height:1;
		color:#fff;
	}

	#header .h_mobile {
		display: block;
	}

	#header[data-header-mobile="on"] .h_main {
		opacity:1;
		visibility: visible;
	}

	#header .h_menu__toggle[aria-toggle="true"]::after {
    opacity: 0;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		transform: rotate(180deg);
  }

	#header .h_menu__toggle[aria-toggle="true"] + .h_submenu {
		max-height:160px;
		margin:0px 0px 20px;
	}

	#header .h_asst__user {
		display: none;
	}

	#header .h_user__menu {
		display: flex;
		position: relative;
		top:unset;
		left: unset;
		-webkit-transform: none;
		transform: none;
		min-width: auto;
		opacity: 1;
		visibility: visible;
		pointer-events: unset;
		border:0px;
		border-radius: 0px;
		margin:0px -8px;
	}

	#header .h_user__menu li {
		position: relative;
	}

	#header .h_user__menu li:not(:last-child) {
		border:0px;
	}

	#header .h_user__menu li:not(:last-child)::after {
		content: "";
		display: block;
		position: absolute;
		top:50%;
		right:0px;
		transform: translateY(-50%);
		width: 1px;
		height: 12px;
		background-color: #333;
	}

	#header .h_user__menu a {
		font-size:1.4rem;
		line-height:1;
		padding:0px 8px;
	}
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {
	#header .h_menu__link {
		font-size:1.5rem;
	}

	#header .h_submenu a {
		font-size:1.3rem;
	}

	#header .h_asst__user {
		width:20px;
	}

	#header .h_asst__mobile a {
		padding:10px 12px 12px;
		font-size:1.2rem;
	}

	#header .h_user__menu {
		margin:0px -6px;
	}

	#header .h_user__menu a {
		font-size:1.3rem;
		padding:0px 6px;
	}

	#header .h_user__menu li:not(:last-child)::after {
		height:10px;
	}
}


/* Footer */
#footer {
	padding:60px 0px;	
	background-color: #fff;
	border-top: 1px solid #d2d2d2;
}

#footer .f-container {
	max-width:1430px;
	width:100%;
	margin:0 auto;
	padding:0px 15px;
}

#footer .f-inner {
	position: relative;
}

#footer .top {
	position: relative;
	border-bottom: 1px solid #e4e4e4;
}

#footer .f_logo {
	font-size:3rem;
	font-weight:700;
	margin-bottom:20px;
}

#footer .f_info {
	display: flex;
	flex-wrap: wrap;
	margin:0px -2px;
}

#footer .f_info li {
	padding:0px 2px;
	font-size:1.6rem;
}

#footer .f_info li.w100 {
	width:100%;
}

#footer .f_link {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: absolute;
	right: 0;
	bottom:30px;
	white-space: nowrap;
	padding:14px 20px 16px;
	background-color: #191919;
	border-radius:10px;
	font-size:1.6rem;
	font-weight:700;
	line-height:1;
	color:#fff;
}

#footer .f_copy {
	max-width:740px;
	width:100%;
	font-size:1.6rem;
}

#footer .f_member {
	display: flex;
	position: absolute;
	top:50%;
	right:270px;
	transform: translateY(-50%);
	margin: 0px -14px;
	font-size:1.6rem;
}

#footer .f_member li {
	line-height: .8;
	padding: 0px 14px;
}

#footer .f_member li:not(:last-child) {
	border-right: 1px solid #191919;
}

#footer .f-family {
	position: absolute;
	top:50%;
	right: 0;
	transform: translateY(-50%);
}

#footer .f-family-wrapper {
	position: relative;
	width: 224px;
}

#footer .f-family-text {
  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;
  border:1px solid #959595;
  padding:7px 16px;
  cursor: pointer;
}

#footer .f-family-text span {
	display: block;
	font-size: 1.6rem;
	font-weight: 700;
}

#footer .f-family-text span.text-action {
	width: 11px;
	height: 11px;
	background: url('../../asset/img/common/footer_ico.png') no-repeat center / cover;
}

#footer .f-family-menu {
  display: none;
  position:absolute;
  left:0;
	bottom:40px;
  width:100%;
	padding: 20px;
  background-color: #fff;
	border:1px solid #959595;
	border-bottom:0px;
}

#footer .f-family-menu li {
	font-size: 1.6rem;
	line-height: .8;
	cursor: pointer;
}

#footer .f-family-menu li:not(:last-child) {
	padding-bottom: 20px;
}

#footer .f-family-wrapper[aria-expanded = "true"] .f-family-menu {
  display:block;
  animation: family-fade-in ease .15s forwards;
  opacity: 0;
}

@keyframes family-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width:1200px) {
	#footer .f_logo {
		font-size:2.4rem;
	}

	#footer .f_info li {
		font-size:1.4rem;
	}

	#footer .f_copy {
		font-size:1.4rem;
	}

	#footer .f_link {
		font-size:1.4rem;
	}

	#footer .f_member {
		right: 220px;
		font-size:1.4rem;
	}

	#footer .f-family-wrapper {
		width: 194px;
	}

	#footer .f-family-text span {
		font-size: 1.4rem;
		line-height: 1;
	}

	#footer .f-family-menu {
		bottom: 30px;
	}

	#footer .f-family-menu li {
		font-size: 1.4rem;
	}

	#footer .f-family-menu li:not(:last-child) {
		padding-bottom: 16px;
	}
}
@media (max-width:1024px) {
	#footer .f_logo {
		margin-bottom:12px;
	}

	#footer .f_link {
		bottom: 20px;
		padding: 10px 16px 12px;
	}

	#footer .f_member {
		top:5px;
		right: 0px;
		transform: none;
		margin: 0px -8px;
	}

	#footer .f_member li {
		padding: 0px 8px;
	}

	#footer .f-family {
		position: relative;
		top:unset;
		right: unset;
		transform: none;
		margin-top: 20px;
	}

	#footer .f-family-text {
		padding: 7px 12px;
	}

	#footer .f-family-menu {
		padding: 12px;
	}
}
@media (max-width:768px) {
	#footer {
		padding:40px 0px;
	}

	#footer .top {
		text-align: center;
	}

	#footer .f_logo {
		font-size:2rem;
	}

	#footer .f_info {
		justify-content: center;
		margin:-2px 0px;
	}

	#footer .f_info li {
		width:100%;
		padding:2px 0px;
		font-size:1.2rem;
	}

	#footer .f_link {
		position: relative;
		right: unset;
		bottom: unset;
		max-width: 194px;
		margin: 20px auto 0px;
		font-size:1.2rem;
	}

	#footer .f_copy {
		text-align: center;
		font-size:1.2rem;
	}

	#footer .f_member {
		position: relative;
		top:unset;
		right: unset;
		justify-content: center;
		margin: 12px 0px 24px;
		font-size:1.2rem;
	}

	#footer .f-family {
		display: flex;
		justify-content: center;
	}

	#footer .f-family-text span {
		font-size: 1.3rem;
	}

	#footer .f-family-menu {
		bottom: 29px;
	}

	#footer .f-family-menu li {
		font-size: 1.3rem;
	}

	#footer .f-family-menu li:not(:last-child) {
		padding-bottom: 14px;
	}

	#footer .f-family-text span.text-action {
		width: 9px;
		height: 9px;
	}
}
@media (max-width:576px) {
	#footer {
		padding:30px 0px;
	}

	#footer .f_logo {
		font-size:1.8rem;
		margin-bottom:8px;
	}

	#footer .f_info li {
		font-size:1.1rem;
	}

	#footer .f_link {
		max-width: 164px;
		margin: 12px auto 0px;
		padding: 8px 12px 10px;
		font-size: 1.1rem;
	}

	#footer .f_copy {
		font-size:1.1rem;
	}

	#footer .f_member {
		flex-wrap: wrap;
		gap:4px;
		margin: 12px 0px 20px;
		font-size:1.1rem;
	}
	
	#footer .f_member li {
		padding: 0px 6px;
	}

	#footer .f-family-wrapper {
		width: 164px;
	}

	#footer .f-family-text {
		padding: 7px 10px;
	}

	#footer .f-family-text span {
		font-size: 1.1rem;
	}

	#footer .f-family-menu {
		bottom: 27px;
		padding: 10px;
	}

	#footer .f-family-menu li {
		font-size: 1.1rem;
	}
}


/* Quick */
#quick {
	position: fixed;
	right:-100px;
	bottom:60px;
	z-index:80;
	animation: quick-ani 1s ease-out forwards;
}

#quick .q-container {
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

#quick .q-inner {
	background-color: #fff;
}

#quick .q-menu li:not(:last-child) {
	border-bottom: 1px solid #e5e5e5;
}

#quick .q-menu a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap:8px;
	width: 120px;
	height: 50px;
}

#quick .q-menu .icon {
	display: block;
	width: 23px;
	height: 23px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

#quick .q-menu .icon01 {
	background-image: url('../../asset/img/common/quick_ico_01.png');
}

#quick .q-menu .icon02 {
	background-image: url('../../asset/img/common/quick_ico_02.png');
}

#quick .q-menu .icon03 {
	background-image: url('../../asset/img/common/quick_ico_03.png');
}

#quick .q-menu .icon04 {
	background-image: url('../../asset/img/common/quick_ico_04.png');
}

#quick .q-menu span {
	font-size: 1.6rem;
}

#quick .q-menu button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 50px;
	background-color: #f5f5f5;
}

#quick .q-menu button span {
	display: block;
	width: 18px;
	height: 20px;
	background: url('../../asset/img/common/quick_arr.png') no-repeat center / cover;
}

@media screen and (max-width:768px) {
	#quick .q-menu a {
		width: 60px;
	}

	#quick .q-menu a span {
		display: none;
	}

	#quick .q-menu button {
		width: 60px;
	}
}

@media screen and (max-width:576px) {
	#quick .q-menu a {
		width: 50px;
	}

	#quick .q-menu button {
		width: 50px;
	}
}


@keyframes quick-ani {
	from {
		right: -100px;
	}
	to {
		right:0px;
	}
}

/* #quick {
	position: fixed;
	right:40px;
	bottom:60px;
	z-index:80;
	animation: quick-ani 1.2s ease forwards;
}

#quick .q-menu li {
	margin-bottom:10px;
}

#quick .q-menu li:last-child {
	margin-bottom:0px;
}

#quick .q-menu a, 
#quick .q-menu button {
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items:center;
	width:54px;
	height:54px;
	border-radius:50%;
	background-color: #313131;
	box-shadow: 0px 3px 10px 0px rgba(0,0,0,.15);
}

#quick .q-menu .icon {
	display: block;
	background-repeat: no-repeat;
	background-position: center;	
}

#quick .q-menu .icon01 {
	width:25px;
	height:31px;
	background-image: url('../../asset/img/common/quick_ico_01.png');
}

#quick .q-menu .icon02 {
	width:24px;
	height:25px;
	background-image: url('../../asset/img/common/quick_ico_02.png');
}

#quick .q-menu .icon03 {
	width:33px;
	height:29px;
	background-image: url('../../asset/img/common/quick_ico_03.png');
}

#quick .q-menu .icon04 {
	width:33px;
	height:22px;
	background-image: url('../../asset/img/common/quick_ico_04.png');
}

#quick .q-menu .icon05 {
	width:30px;
	height:30px;
	background-image: url('../../asset/img/common/quick_ico_05.png');
}

#quick .q-menu .scroll-btn__img {
  display:block;
  width:22px;
  height:23px;
  background:url('../../asset/img/common/quick_arr.png') no-repeat center;
}

@keyframes quick-ani {
	from {
		right: -100%;
		opacity: 0;
		visibility: hidden;
	}
	to {
		right:40px;
		opacity:1;
		visibility: visible;
	}
}

@media screen and (max-width:1200px) {
	#quick {
		right:20px;
		bottom:40px;
	}

	@keyframes quick-ani {
		from {
			right: -40px;
		}
		to {
			right:20px;
		}
	}
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {
	#quick .q-menu li {
		margin-bottom:6px;
	}

	#quick .q-menu a, 
	#quick .q-menu button {
		width:42px;
		height:42px;
	}

	#quick .q-menu .icon01 {
		height:24px;
		background-size:auto 24px;
	}
	
	#quick .q-menu .icon02 {
		height:18px;
		background-size:auto 18px;
	}
	
	#quick .q-menu .icon03 {
		height:20px;
		background-size:auto 20px;
	}
	
	#quick .q-menu .icon04 {
		height:16px;
		background-size:auto 16px;
	}

	#quick .q-menu .icon05 {
		height:24px;
		background-size: auto 24px;
	}
	
	#quick .q-menu .scroll-btn__img {
		height:16px;
		background-size:auto 16px;
	}
}
@media screen and (max-width:576px) {
	#quick {
		right:16px;
		bottom:20px;
	}

	#quick .q-menu li {
		margin-bottom:4px;
	}

	#quick .q-menu a, 
	#quick .q-menu button {
		width:38px;
		height:38px;
	}

	#quick .q-menu .icon01 {
		height:20px;
		background-size:auto 20px;
	}
	
	#quick .q-menu .icon02 {
		height:16px;
		background-size:auto 16px;
	}
	
	#quick .q-menu .icon03 {
		height:18px;
		background-size:auto 18px;
	}
	
	#quick .q-menu .icon04 {
		height:14px;
		background-size:auto 14px;
	}
	
	#quick .q-menu .scroll-btn__img {
		height:14px;
		background-size:auto 14px;
	}

	
	@keyframes quick-ani {
		from {
			right: -40px;
		}
		to {
			right:16px;
		}
	}
}
 */
