/* ========================================================
   NEXIN Subpage CSS
   RESET / GLOBAL BASE / 순수 전역 Utility만 유지하는 기반 CSS.
   Main·서브페이지 공통 구조·페이지별 콘텐츠는 css/renewal.css로 이관되었다.

   01. RESET
   02. GLOBAL BASE
   03. COMMON UTILITY
   ======================================================== */

/* ==================================================
   01. RESET
================================================== */

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;
}

fieldset,
img {
  border: 0 none;
}

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

blockquote,
q {
  quotes: none;
}

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

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

button {
  border: 0 none;
  background-color: transparent;
  cursor: pointer;
}

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

/* ==================================================
   02. GLOBAL BASE
================================================== */

body {
  background: #fff;
}

body,
th,
td,
input,
select,
textarea,
button {
  font-size: 16px;
  line-height: 1.5;
  font-family: var(--font-family-base);
  color: #333;
}

a {
  color: #333;
  text-decoration: none;
}

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

address,
caption,
cite,
code,
dfn,
em,
var {
  font-style: normal;
  font-weight: normal;
}

body {
  -webkit-text-size-adjust: none;
}

/* 뷰표트 변환시 폰트크기 자동확대 방지 */
input[type='text'],
input[type='password'],
input[type='submit'],
input[type='search'] {
  -webkit-appearance: none;
  border-radius: 0;
}

input:checked[type='checkbox'] {
  background-color: #666;
  -webkit-appearance: checkbox;
}

button,
input[type='button'],
input[type='submit'],
input[type='reset'],
input[type='file'] {
  -webkit-appearance: button;
  border-radius: 0;
}

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

html {
  overflow-y: scroll;
}

/* ==================================================
   03. COMMON UTILITY
================================================== */

/* Display */
.none {
  display: none;
}

.d-none {
  display: none;
}