﻿@charset "utf-8";
/** Reset **/
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,
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,
section,
summary,
textarea,
time,
mark,
audio,
video,
select,
button,
input {
	color: #202124;
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
	line-height: 1.4em;
	font-family: "Pretendard", "-apple-system", "BlinkMacSystemFont", "Apple SD Gothic Neo", "Segoe UI", "Roboto", sans-serif;
}

html {
	scroll-behavior: smooth;
}
body {
	overflow-x: hidden;
}
* {
	position: relative;
	box-sizing: border-box;
	background-repeat: no-repeat !important;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
main,
nav,
section {
	display: block;
}

a {
	text-decoration: none;
}
ul {
	list-style-type: none;
}
em {
	font-style: normal;
}
img {
	max-width: 100%;
	vertical-align: top;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Drag selection color */
input::placeholder {
	color: #999;
	opacity: 1;
}
input::-webkit-input-placeholder {
	color: #999;
}
input:-ms-input-placeholder {
	color: #999;
}
input:-mos-input-placeholder {
	color: #999;
}
/*::selection { color: #FFF; background: #78C3C6; }*/

/* Variable */
:root {
	--blue100: #fef9f7;
	--blue200: #818793;
	--blue300: #656c7a;
	--blue400: #414755;
	--primary: #e69c84;
	--primary-light: #f0b299;
	--primary-dark: #c87a5b;
	--dark: #202124;
	--gray400: #606060;
	--gray100: #f6f6f6;
	--stroke: #c87a5b;
	--move: opacity 0.6s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Animate */
.visible {
	opacity: 1;
	transform: translateY(0);
	transition: var(--move);
}

.invisible {
	opacity: 0;
	transform: translateY(32px);
	transition-delay: 0.2s;
}
