@charset 'utf-8';

/* ���� */
:root {
	--mColor: #c4000f;
	--enF: "Outfit", sans-serif;
}
.enF {
	font-family: var(--enF);
}
.w1600 {
	max-width: 1600px;
	margin: 0 auto;
}

.scroll_icon {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	cursor: pointer;
	animation: scrollMotion 0.8s infinite alternate;
}

@keyframes scrollMotion {
	0% {
		bottom: 16px;
	}
	100% {
		bottom: 30px;
	}
}

.is-dragging {
	pointer-events: none;
}
.top_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	bottom: 30px;
	right: 60px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background-color: #000;
	z-index: 50;
	cursor: pointer;
}
.top_btn.fix {
	position: absolute;
	top: 100px;
	bottom: auto;
}
/* privacy */
.privacy {
	color: #666;
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
/* 	padding: 20px; */
	font-size: 15px;
	line-height: 140%;
	word-break: break-all;
}
.privacy h2 {
	font-size: 18px;
	font-weight: bold;
	color: #000;
	text-align: left;
	margin: 50px 0 30px;
}
.privacy h2:first-child {
	margin-top: 0;
}
.privacy > p {
	font-size:18px;
	color: #666;
	margin: 15px 0;
	line-height: 1.66667em;
}
.privacy > p + dl {
	margin-top: 30px;
}
.privacy > dl {
	padding-bottom: 20px;
}
.privacy > dl > dt {
	font-size: 20px;
	color: #C4000F;
	font-weight: 700;
	padding-bottom: 5px;
	margin-bottom:10px;
}
.privacy > dl > dd {
	padding-bottom: 10px;
	text-align: justify;
	font-size: 18px;
	line-height: 1.66667em;
}
.privacy > dl > dd ul {
	padding: 10px;
}
.privacy > dl > dd ul li {
	line-height: 120%;
	margin-top: 10px;
}
.privacy > dl > dd ul li:first-child {
	margin-top: 0;
}
.privacy > dl > dd ul li p {
	margin: 0 10px 5px;
	line-height: 140%;
}
.sTxt h3 {
	font-size: 20px;
	color: #333;
	font-weight: 700;
	margin: 20px 0 10px;
}
.sTxt p {
	margin-top: 10px;
}
.sTxt dt {
	margin-top: 10px;
}
.sTxt dd {
	margin: 0 8px;
}

@media (max-width: 1200px){
	.privacy > dl > dt{font-size:17px;}
	.privacy > p{font-size:16px;}
	.privacy > dl > dd{font-size:16px;}
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 500;
	padding: 0 50px 0 60px;
}
.header .logo {
	height: 42px;
	margin-top: -6px;
}
.header .logo a {
	display: inline-block;
	width: 246px;
	height: 42px;
	background: url(/img/common/logo.svg);
}
.header .g_box {
	display: flex;
	align-items: center;
}
.header .gnb > ul {
	display: flex;
	justify-content: flex-end;
}
.header .gnb > ul > li {
	position: relative;
}
.header .gnb > ul > li > a {
	display: inline-block;
	padding: 0 30px;
	font-weight: 600;
	font-size: 17px;
	color: #fff;
	line-height: 80px;
}
.header .gnb > ul > li > ul {
	display: none;
	position: absolute;
	top: 70px;
	left: 50%;
	transform: translateX(-50%);
	padding: 0 15px;
	background: #000;
	border-radius: 25px;
	z-index: 10;
	font-size: 0;
}
.header .gnb > ul > li:nth-of-type(1) > ul {
	width: 118px;
}
.header .gnb > ul > li:nth-of-type(2) > ul {
	width: 369px;
}
.header .gnb > ul > li:nth-of-type(3) > ul {
	width: 349px;
}
.header .gnb > ul > li:nth-of-type(4) > ul {
	width: 135px;
}
.header .gnb > ul > li:nth-of-type(5) > ul {
	width: 290px;
}
.header .gnb > ul > li > ul > li {
	display: inline-block;
	vertical-align: top;
}
.header .gnb > ul > li > ul > li > a {
	display: inline-block;
	vertical-align: top;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: -0.02em;
	line-height: 50px;
	color: #fff;
	padding: 0 15px;
	transition: 0.2s;
}
.header .m_btn {
	position: relative;
	width: 40px;
	height: 40px;
	margin-left: 20px;
	text-align: center;
	cursor: pointer;
	z-index: 110;
}
.header .m_btn span {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 2px;
	background: #fff;
	margin-top: 19px;
	transition: 0.4s;
}
.header .m_btn span::before {
	content: "";
	position: absolute;
	top: -7px;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	transition: 0.4s;
}
.header .m_btn span::after {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	transition: 0.4s;
}
.header .all_menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #171717;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition: 0.6s;
}
.header .all_menu.on {
	opacity: 1;
	visibility: visible;
}
.header .all_menu > ul {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	max-width: 800px;
	transform: translate(-50%, -50%);
	text-align: center;
}
.header .all_menu > ul > li {
	position: relative;
}
.header .all_menu > ul > li > a {
	display: inline-block;
	font-weight: 800;
	font-size: 80px;
	letter-spacing: -0.02em;
	color: #fff;
	width: 100%;
	padding: 20px 0;
	transition: 0.3s;
}
.header .all_menu > ul > li > ul {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.header .all_menu > ul > li > ul > li > a {
	display: inline-block;
	font-weight: bold;
	font-size: 24px;
	padding: 10px 35px;
	color: #ccc;
	transition: 0.3s;
}

.header.scroll {
	background: #fff;
}
.header.scroll .logo a {
	background: url(/img/common/logoB.svg);
}
.header.scroll .gnb > ul > li > a {
	color: #000;
}
.header.scroll .m_btn span::before,
.header.scroll .m_btn span::after,
.header.scroll .m_btn span {
	background: #000;
}

.header .m_btn.on span {
	background: transparent !important;
	width: 24px;
}
.header .m_btn.on span::before {
	top: 0;
	width: 24px;
	transform: rotate(45deg);
	background: #fff !important;
}
.header .m_btn.on span::after {
	top: 0;
	width: 24px;
	transform: rotate(-45deg);
	background: #fff !important;
}

.footer {
	position: relative;
	padding: 100px 60px;
	background-color: #171717;
}
.footer .f_nav ul li {
	margin-bottom: 15px;
}
.footer .f_nav ul li:last-of-type {
	margin-bottom: 0;
}
.footer .f_nav ul li a {
	display: inline-block;
	font-weight: 600;
	font-size: 28px;
	letter-spacing: -0.02em;
	color: #fff;
}
.footer .fbox {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 60px;
}
.footer .fbox ul {
	display: flex;
	align-items: center;
}
.footer .fbox ul li {
	position: relative;
	font-weight: 300;
	font-size: 16px;
	letter-spacing: -0.02em;
	color: #fff;
	margin-right: 60px;
}
.footer .fbox ul li::after {
	content: "";
	position: absolute;
	top: 8px;
	right: -33px;
	width: 4px;
	height: 4px;
	background: #fff;
	opacity: 0.05;
}
.footer .fbox ul li:last-of-type {
	margin-right: 0;
}
.footer .fbox ul li:last-of-type::after {
	display: none;
}
.footer .fbox ul li a {
	font-weight: 500;
	color: var(--mColor);
}
.footer .fbox p {
	font-family: var(--enF);
	font-weight: 200;
	font-size: 16px;
	color: #fff;
	opacity: 0.5;
}

@media (hover: hover) {
	.header .gnb > ul > li > ul > li > a:hover {
		color: var(--mColor);
	}
	.header .all_menu > ul > li:hover > a {
		color: #000;
	}
	.header .all_menu > ul > li > ul > li > a:hover {
		color: var(--mColor);
	}
	.header .all_menu > ul > li:hover > ul {
		opacity: 1;
		visibility: visible;
	}
}
@media (max-height: 700px) {
	.header .all_menu > ul {
		height: calc(100vh - 199px);
		overflow-y: auto;
		min-height: 400px;
	}
}
@media (max-width: 1600px) {
	.w1600 {
		padding: 0 30px;
	}

	.header {
		padding: 0 50px 0 30px;
	}
	.header .all_menu > ul > li > a {
		font-size: 65px;
		padding: 10px 0;
	}
	.header .all_menu > ul {
		height: calc(100vh - 323px);
	}
	.top_btn {
		right: 30px;
	}
	.top_btn.fix {
		top: 50px;
	}
	.footer {
		padding: 50px 30px;
	}
	.footer .fbox {
		flex-wrap: wrap;
	}
	.footer .fbox ul {
		width: 100%;
	}
	.footer .fbox p {
		margin-top: 20px;
	}
	.footer .f_nav ul li a {
		font-size: 24px;
	}
	.top_btn {
		width: 100px;
		height: 100px;
		background-size: cover;
	}
}
@media (max-width: 1200px) {
	.w1600 {
		padding: 0 16px;
	}
	.header {
		height: 60px;
		padding: 0 16px;
	}
	.header .gnb {
		display: none;
	}
	.header .all_menu > ul {
		position: static;
		transform: translate(0);
		max-width: none;
		text-align: right;
		padding: 50px 28px;
		height: 100svh;
	}
	.header .all_menu > ul > li > ul {
		opacity: 1;
		visibility: visible;
		position: static;
		transform: translate(0);
		transition: 0s;
		display: block;
	}
	.header .all_menu > ul > li > a {
		font-size: 55px;
	}
	.header .all_menu > ul > li > a.on {
		color: var(--mColor);
	}
	.top_btn {
		right: 16px;
		bottom: 16px;
		width: 60px;
		height: 60px;
	}
	.top_btn figure {
		text-align: center;
	}
	.top_btn figure img {
		max-width: 70%;
	}
	.header .all_menu > ul > li > ul > li > a {
		width: 100%;
		text-align: right;
		padding: 6px 0;
		transition: 0s;
	}
	.footer {
		padding: 50px 16px;
	}
}
@media (max-width: 1000px) {
	.header .all_menu > ul > li > a {
		font-size: 40px;
	}
	.header .all_menu > ul > li > ul > li > a {
		font-size: 20px;
	}
	.footer .fbox {
		margin-top: 30px;
	}
	.footer .fbox ul {
		flex-wrap: wrap;
	}
	.footer .fbox ul li:first-of-type {
		width: 100%;
		margin-bottom: 10px;
	}
	.footer .fbox ul li:first-of-type::after {
		display: none;
	}
	.footer .fbox ul li {
		margin-right: 30px;
	}
	.footer .fbox ul li::after {
		right: -18px;
	}
}

@media (max-width: 800px) {
	.header .all_menu > ul > li > a {
		font-size: 36px;
		padding: 8px 0;
	}
	.top_btn.fix {
		top: 30px;
	}
	.footer {
		padding: 30px 16px 50px;
	}
	.footer .f_nav ul li a {
		font-size: 19px;
	}
}
