﻿@charset "utf-8";

* {
  box-sizing: border-box;
  word-break: keep-all;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
blockquote,
pre,
code,
address,
ul,
ol,
li,
nav,
section,
article,
header,
footer,
main,
aside,
dl,
dt,
dd,
table,
thead,
tbody,
tfoot,
label,
caption,
th,
td,
form,
fieldset,
legend,
hr,
input,
button,
textarea,
object,
figure,
figcaption {
  margin: 0;
  padding: 0;
  font-family: "Lato", "pretendard", "Noto Sans KR", sans-serif;
}

body,
input,
select,
textarea,
button,
img,
fieldset {
  border: none;
}

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

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

address,
cite,
code,
em,
i {
  font-style: normal;
  font-weight: normal;
}

label,
img,
input,
select,
textarea,
button,
a {
  vertical-align: middle;
}

u,
ins,
a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

select,
input,
textarea,
button {
  font-size: 16px;
  color: #222;
  font-weight: 400;
line-height: 100%; /* 18px */
letter-spacing: -0.36px;
  outline: none;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  border-radius: 0;
}


select {
  border: none;
  background: url(/image/common/select_arrow.png) no-repeat 90% 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; 
  padding:0 24px; 
}

select::-ms-expand {
  display: none;
}

/* Normalize */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number],
input[type=text],
input[type=password],
input[type=url],
input[type=email],
input[type=tel],
input[type=date],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

input[type=date] {
  position: relative;
}

input[type=date]::-webkit-clear-button,
input[type=date]::-webkit-inner-spin-button {
  display: none;
}

input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
  color: transparent;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

input[type=date] {
  position: relative;
  width: 100px;
}

input[type=date]::before {
  content: attr(data-placeholder);
  width: 100%;
}

input[type=date]:valid::before {
  display: none;
}

textarea {
  resize: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-overflow-scrolling: touch;
  -moz-overflow-scrolling: touch;
  -o-overflow-scrolling: touch;
}

input::placeholder {
  color: #bbb;
}




html {
  /* font-size: 16px; */
  font-size: clamp(15px, 0.833vw, 16px);
}

body {
  font-size: 1rem;
  font-family: "pretendard", 'Noto Sans KR', sans-serif;
  color: #000;
  font-weight: 400;
  line-height: 1.6;
}





img,
fieldset {
  border: 0px;
}

img {
  max-width: 100%;
}



hr {
  border: 0;
  height: 1px;
  background: #ddd;
}


.hide,
legend,
caption {
  overflow: hidden;
  display: block;
  position: absolute;
  border: 0;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}


@media print {

  .header,
  .footer,
  .visual {
    display: none;
  }

  .page-break {
    page-break-before: always;
  }
}

@page {}

.print {
  display: block;
}

@media screen {
  .print {
    display: none;
  }
}