@charset "utf-8";

/*-------------------------------------------------------------------
  파일정의 : Settings
  작성날짜 : 2025-08-14 유지수
  분류순서 : 기본정책 > 유틸리티 > 사용자정의(컬러, 폰트, 보더, 간격 등)
  속성순서 : 표시 > 위치 > 넘침/흐름 > 크기/간격 > 박스모양 > 폰트/정렬 > 기타
-------------------------------------------------------------------*/
@import 'font.css';

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  outline: none
}

html {
  overflow-y: scroll;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.3;
  font-size: 10px;
  word-break: keep-all;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, textarea, p, blockquote, th, td, input, select, textarea, button {
  margin: 0;
  padding: 0;
}

body {
  font-family: "HanwhaGothic", "Malgun Gothic", Dotum, Arial, sans-serif;
  color: var(--c_black);
  font-size: var(--fz_base);
  font-weight: 400;
  letter-spacing: -0.02rem;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%
}

strong {
  font-weight: 700;
}

input, select, textarea, button, label {
  font-size: 100%;
  vertical-align: middle
}

select {
  width: 100%;
  height: 5.8rem;
  padding: 0 5.4rem 0 2.4rem;
  border: .1rem solid var(--c_white);
  border-radius: .8rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color .3s ease;
}

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

input {
  border: .1rem solid var(--c_white);
  font-size: var(--fz_m);
}

input:disabled {
  opacity: 1;
  -webkit-text-fill-color: inherit
}

input[type="text"], input[type="search"], input[type="password"], input[type="tel"], input[type="email"], input[type="number"], input[type="button"] {
  height: 5.8rem;
  font-size: var(--fz_m);
  padding: 0 2.4rem;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: .1rem solid var(--c_white);
  background: var(--c_white);
  transition: border-color .3s ease;
  cursor: pointer;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="tel"]:focus, input[type="email"]:focus, input[type="number"]:focus {
  border-color: var(--c_primary);
}

fieldset, img, iframe {
  border: 0 none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

textarea {
  width: 100%;
  padding: 1.5rem 2.4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  resize: none;
  border: .1rem solid var(--c_white);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

em, address {
  font-style: normal
}

a {
  text-decoration: none;
  background-color: transparent;
  vertical-align: middle;
  -webkit-text-decoration-skip: objects;
  color: var(--c_black);
  word-break: break-word;
}

a:hover, a:active, a:focus {
  text-decoration: none
}

menu, li {
  list-style: none
}

button {
  padding: 0;
  margin: 0;
  border: 0;
  cursor: pointer;
  vertical-align: middle;
  background: none;
  font-family: "HanwhaGothic", "Malgun Gothic", Dotum, Arial, sans-serif;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  font-family: "HanwhaGothic", "Malgun Gothic", Dotum, Arial, sans-serif;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

caption {
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
}

hr {
  display: none;
}

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

label {
  cursor: pointer;
}

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

table td {
  word-wrap: break-word;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input::-ms-clear,
input::-ms-reveal {
  display: none;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}

::-webkit-input-placeholder {
  font-size: var(--fz_m);
  color: var(--c_gray3);
  font-family: "HanwhaGothic", "Malgun Gothic", Dotum, Arial, sans-serif;
  font-weight: 300;
  vertical-align: middle;
}

ul:after,
ol:after {
  display: block;
  content: '';
  clear: both;
}

figure {
  margin: 0;
}
