@charset "UTF-8";
/*
    사이트 공통 스타일
*/
#saemi.pushable {
	background: white;
}

.pushable>.pusher {
	overflow: visible !important;
}

header {
	position: fixed;
	width: 100%;
	height: 4rem;
	background-color: white;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	z-index: 99;
}

header .logo {
	display: none;
}

header.tp {
	background-color: rgba(0, 0, 0, 0);
	box-shadow: none;
}

header.tp .logo-blue {
	display: none;
}

header.tp .logo {
	display: inline;
}

header.tp a {
	color: white;
}

header a {
	text-decoration: none;
	color: #2a2a2a;
}

header a img {
	max-width: 222px;
}

header .d {
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

@media ( max-width : 768px) {
	header .d {
		display: none;
	}
}

header .d h5 {
	margin: 0;
}

header .d li {
	display: inline-block;
	height: 100%;
	padding: 0 1rem;
}

header .d li:last-child {
	padding-right: 0;
}

header .m {
	display: none;
}

@media ( max-width : 768px) {
	header .m {
		position: relative;
		display: block;
		flex-direction: row;
		align-items: center;
		height: 100%;
	}
}

header .m a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	line-height: 4rem;
	text-align: center;
	margin: 0 auto;
}

header .m a img {
	max-width: 150px;
}

header .m #menu {
	position: absolute;
	height: 100%;
	top: 0;
	right: 0;
	line-height: 4rem;
	display: block;
	padding: 0 2rem;
}

footer {
	background-color: #222229;
	padding: 4rem 0 2rem;
	font-size: 0.74rem;
	color: white;
}

@media ( max-width : 768px) {
	footer {
		padding-bottom: 4rem;
	}
}

footer img {
	max-width: 99px;
	margin-right: 6rem;
}

@media ( max-width : 768px) {
	footer img {
		margin-right: 0;
		max-width: 60px;
	}
}

footer p {
	font-weight: 200;
}

footer a {
	color: white;
	text-decoration: none;
	font-weight: 700;
	display: inline-block;
	margin-right: 0.44rem;
}

footer p, footer a, footer span {
	font-size: 12px;
}

footer .container {
	align-items: center;
	justify-content: center;
}

#mobile-menu ul {
	margin-top: 2.5rem;
	list-style-type: none;
	padding-left: 0;
}

#mobile-menu ul li {
	margin: 1.5rem 0;
}

#mobile-menu ul li a {
	text-decoration: none;
	color: black;
}

html, body, .pusher {
	height: 100%;
}

#main-content {
	height: 100%;
	display: flex;
	flex-direction: column;
}

footer {
	margin-top: auto;
}

/**
    Typography
 */
html, body {
	background-color: #f2f2f2;
	min-width: 320px;
	font-family: 'Noto Sans Korean', sans-serif;
	font-size: 18px;
	color: #2a2a2a;
}

@media ( max-width : 768px) {
	html, body {
		font-size: 14px;
	}
}

@media ( min-width : 768px) and (max-width: 994px) {
	html, body {
		font-size: 14px;
	}
}

h1, h2, h3, h4, h5 {
	line-height: 1.33;
}

h1 {
	font-weight: 700;
	font-size: 2.5rem;
}

@media ( max-width : 768px) {
	h1 {
		font-size: 1.8rem;
	}
}

h2 {
	font-weight: 300;
	font-size: 2.5rem;
}

@media ( max-width : 768px) {
	h2 {
		font-size: 1.8rem;
	}
}

h3 {
	font-weight: 700;
	font-size: 2.0rem;
}

h4 {
	font-weight: 700;
	font-size: 1.75rem;
}

h5 {
	font-weight: 700;
	font-size: 1.5rem;
}

p {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.67;
}

a {
	color: #3d48ff;
	font-size: 1rem;
	font-weight: 400;
}

a:hover {
	color: #1920b3;
}

.bold {
	font-weight: 700;
}

/**
    Containers
 */
.container {
	max-width: 994px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 0 1.5rem;
}

.horizontal-stack {
	display: flex;
	flex-direction: row;
}

@media ( max-width : 768px) {
	.horizontal-stack {
		flex-direction: column;
	}
}

.horizontal-reverse-stack {
	display: flex;
	flex-direction: row;
}

@media ( max-width : 768px) {
	.horizontal-reverse-stack {
		flex-direction: column-reverse;
	}
}

.horizontal-stack.equal>div, .horizontal-reverse-stack.equal>div {
	flex: 1 1 auto;
}

.horizontal-stack img, .horizontal-reverse-stack img {
	width: 100%;
}

.card {
	border-radius: 5px;
	box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.1);
	background-color: white;
	padding: 1.5rem;
}

.card.no-shadow {
	box-shadow: none;
}

.card.blue-outline {
	border: 1.5px solid #1920b3;
}

.card+h1, .card h2, .card h3, .card h4, .card h5 {
	margin-top: 0;
}

.card.sale {
	position: relative;
	border: 3px solid #575fff;
	padding-bottom: calc(1.5rem - 3px);
}

.card.sale>.sale-icon {
	width: 3rem;
	height: 3rem;
	position: absolute;
	top: 0.6rem;
	left: 1rem;
}

@media ( max-width : 768px) {
	.card.sale>.sale-icon {
		top: -1.2rem;
		left: -1.2rem;
	}
}

/**
    Components
 */
.btn {
	cursor: pointer;
}

.btn.normal {
	font-weight: 700;
	padding: 0 36px;
	font-size: 1.2rem;
	border: none;
	background-color: #575fff;
	color: white;
	line-height: 56px;
	-webkit-border-radius: 56px;
	-moz-border-radius: 56px;
	border-radius: 56px;
}

@media ( max-width : 768px) {
	.btn.normal {
		line-height: 45px;
	}
}

.btn.normal.yellow {
	background-color: #f7b500;
	color: white;
}

.btn.normal.grey {
	background-color: #4b4b4b;
	color: white;
}

.btn.double-line {
	font-weight: 700;
	padding: 6px 36px;
	font-size: 1rem;
	border: none;
	background-color: #575fff;
	color: white;
	line-height: 1.4rem;
	-webkit-border-radius: 56px;
	-moz-border-radius: 56px;
	border-radius: 56px;
}

.btn.double-line.yellow {
	background-color: #f7b500;
	color: white;
}

.btn.outline {
	font-weight: 700;
	padding: 0 36px;
	font-size: 1.2rem;
	background-color: white;
	border: 1.5px solid #1920b3;
	color: #1920b3;
	line-height: 60px;
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	border-radius: 60px;
}

.btn.outline.black {
	border-color: #2a2a2a;
	color: #2a2a2a;
}

.btn.outline.light-blue {
	border-color: #575fff;
	color: #575fff;
}

.btn.disabled {
	cursor: default;
	opacity: 0.45 !important;
	background-image: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	pointer-events: none !important;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.btn.fit {
	display: block;
	width: 100%;
	margin: 1rem 0;
}

.btn.for-form {
	line-height: 48px;
}

.btn:focus {
	outline: none !important;
}

.saemi-input {
	display: block;
	width: 100%;
	padding: 0.84rem;
	font-size: 1rem;
	border: none;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background-color: white;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 1rem;
}

.saemi-input+span.error {
	color: red;
	font-size: 0.75rem;
	display: none;
}

.saemi-input+span.error.active {
	display: block;
	margin-top: -0.5rem;
	margin-left: 0.5rem;
	margin-bottom: 0.5rem;
}

.checkbox {
	width: 39px;
	height: 39px;
	padding: 0;
	border: 0;
	outline: none;
	cursor: pointer;
	background-color: transparent;
}

.checkbox .img {
	width: 100%;
	height: 100%;
	background: url("/public/i/checkbox_off.svg") no-repeat;
}

.checkbox.active .img {
	background: url("/public/i/checkbox_on.svg") no-repeat;
}

/**
    Customize Semantic UI
 */
.ui.right.sidebar.vertical.inverted.menu {
	background-color: white;
	box-shadow: -2px 0 8px rgba(0, 0, 0, 0.5);
	z-index: 100;
}

.pushable>.pusher:after {
	background-color: rgba(0, 0, 0, 0.2) !important;
}