﻿@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: #F1F3F9;
  --blue200: #E7F4FF;
  --blue300: #004F93;
  --blue400: #004179;
  --dark: #202124;
  --gray400:#606060;
  --gray100:#F6F6F6;
  --stroke: #E1EBF4;
  --move: opacity .6s ease, transform .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: .2s;
}