@charset "utf-8";

/* CSS 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,
strike,
tt,
var,
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;
  font-size: 100%;
  vertical-align: baseline;
}

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


/* set basement */
* {
  box-sizing: border-box;
  line-height: inherit;
}

html {
  font-size: 16px;
  font-weight: 400;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

body {
  font-family: '맑은 고딕', sans-serif;
  color: #333;
  word-break: normal;
  overflow-x: hidden !important;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0;
  background-color: #fff;
  line-height: 180%;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

ol,
ul,
li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

address,
i {
  font-style: normal;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 130%;
}

sub {
  font-size: 0.5em !important;
}

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

th,
td {
  vertical-align: middle;
  text-align: left;
}

b,
strong {
  font-weight: 700;
}

.clearfix:after {
  display: block;
  content: "";
  clear: both;
}

/* set inputs */
select {
  outline: none;
}

input:not([type="checkbox"]),
textarea,
button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  box-shadow: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}

select,
input {
  height: 40px;
  padding: 10px;
  border: 1px solid #bfbfbf;
  vertical-align: middle;
}

textarea,
input[type="text"],
input[type="email"],
input[type="number"] {
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}

input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}

input[type="file"] {
  height: auto;
  padding: 5px;
  display: inline-flex;
  align-items: center;
}

input[type="checkbox"] {
  width: 15px;
  height: 15px;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  background: #fff;
}

input[type="radio"] {
  outline: none;
  width: initial;
  height: initial;
  box-shadow: none;
  margin: 0 !important;
}

input[type="radio"]:checked {
  outline: none;
  width: initial;
  height: initial;
  box-shadow: none;
}

textarea {
  display: block;
  padding: 10px;
  border: 1px solid #bfbfbf;
  resize: vertical;
  font-family: inherit;
}

button {
  padding: 10px;
}

input:focus,
textarea:focus {
  outline: none;
  box-shadow: 0px 0px 5px rgba(0, 183, 238, 0.2);
}

.clip--base_option {
  position: absolute;
  top: -100vh;
}

.hidden {
  width: 0!important;
  height: 0!important;
  overflow: hidden!important;
  padding: 0!important;
  margin: 0!important;
  position: absolute!important;
  top: -100vh!important;
  opacity: 0!important;
  font-size: 0!important;
}