@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
	--color-black: #131313;
	--color-hotred: #ff002e;
	--color-basic: #0e57b4;
	--color-purple: #D9BFF0;
	--color-orange: #F88C08;
}

/* 기본 리셋 스타일 */
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;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
	font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
	word-break: keep-all;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* box-sizing 초기화 */
*,
*::before,
*::after {
	box-sizing: border-box;
}

a,
a:visited,
a:active,
a:focus,
a:hover {
	color: #000;
	text-decoration: unset;
}

button,
input,
select,
textarea {
	background: none;
	outline: none;
	box-shadow: none;
}

input[type="radio"],
input[type="checkbox"] {
	transform: scale(1.5);
	margin-right: 0.25rem;
}

img,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

html,
body {
	font-size: 16px;
}

.container {
	max-width: 640px;
	margin: 0 auto;
}

/* header container */
.header-container {
	width: 100%;
	background: #fff;
	position: sticky;
	top: 0;
	z-index: 100;
	padding: 1rem 1.5rem 1.5rem 1.5rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.header-container .header-wrap {
	margin: 0 auto;
}

.header-container .header-inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	height: 56px;
}

.header-container .header-logo {
	max-width: 110px;
	max-height: 53px;
	display: block;
}

.header-container .header-buttons {
	display: flex;
	gap: 8px;
}

.header-container .header-btn {
	padding: 0.5rem 1.5rem;
	border-radius: 0.9rem;
	font-size: 1.1rem;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.2s;
	display: inline-block;
}

.header-container .header-btn-share {
	background: var(--color-orange);
	color: #fff;
	border: none;
}

.header-container .header-btn-secondary {
	background: var(--color-hotred);
	color: #fff;
	border: none;
}

.header-container .header-btn-secondary:hover {
	background: var(--color-hotred);
	color: #fff;
}

.header-container .header-btn-login {
	background: var(--color-basic);
	color: #fff;
	border: none;
}

.header-container .header-btn:hover:not(.header-btn-secondary) {
	filter: brightness(0.92);
}

/* Footer */
/* footer container */
.footer-container {
	width: 100%;
	background: #23263a;
	color: #fff;
	padding: 8rem 4rem 8rem 3rem;
	position: relative;
	text-align: center;
}

.footer-container .footer-wrap {}

.footer-container .footer-inner {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.footer-container .footer-link.icon-link {
	position: relative;
	padding-left: 3rem;
	display: block;
	font-size: 2.5rem;
	font-weight: 800;
	color: #fff;
	text-align: left;
}

.footer-container .footer-link.icon-link:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 2rem;
	height: 2rem;
	background-image: url('../img/main/icon-finger.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.footer-container .footer-info-detail {
	color: #77787b;
	font-size: 1rem;
	line-height: 1.5;
	padding-top: 2rem;
}

.footer-container .footer-info-detail strong,
.footer-container .footer-info-link {
	font-weight: 700;
	color: inherit;
}

.footer-container .footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: flex-start;
	flex-direction: column;
}

.footer-container .footer-link {
	color: #fff;
	font-size: 0.875rem;
	opacity: 1;
	transition: opacity 0.2s;
}

.footer-container .footer-info {
	font-size: 0.75rem;
	color: #bfc3d1;
	margin-bottom: 0.5rem;
}

.footer-container .footer-highlight {}

.footer-container .footer-highlight img {
	width: 80%;
	margin: 0 auto;
}

.fixed-bottom-menu {
	width: 100%;
	background: #fff;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.04);
}

.fixed-bottom-menu .menu-inner {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.fixed-bottom-menu .menu-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1 1 0;
	color: #2d2f39;
	font-size: 15px;
	text-decoration: none;
	font-weight: 500;
	padding: 2rem 0;
}

.fixed-bottom-menu .menu-item img {
	object-fit: cover;
	max-width: 50px;
	max-height: 50px;
}

.fixed-bottom-menu .menu-item span {
	display: block;
	text-align: center;
	font-size: 1.3rem;
	font-weight: 600;
	color: #2d2f39;
	line-height: 1;
	margin-top: 1.25rem;
}

@media screen and (max-width: 480px) {}

@media screen and (max-width: 640px) {

	html,
	body {
		font-size: 10px;
	}

	input[type="radio"],
	input[type="checkbox"] {
		transform: scale(1);
	}

	.header-container {
		padding-top: 0rem;
		padding-bottom: 2.5rem;
	}

	.header-container .header-logo {
		width: 20%;
	}

	.header-container .header-btn {
		font-size: 1.5rem;
	}
}

@media screen and (max-width: 992px) {}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 1400px) {}