/* ========================================================================================================================= */
/* 작성 : 2026-07-02 12:00:00  - devel1223
/* 수정 : 2026-07-02 12:00:00  - devel1223
/* 제목 : css : common_reset   - 공용_초기화
/* ========================================================================================================================= */



/* 글꼴 */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");

/* 공통 */
body, header, nav, section, footer, article 
div, a, p, span, 
input, textarea, 
select, option, 
ul, ol, li, 
hr {
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-family: "Pretendard Variable";
  /* font-family: 'Roboto', sans-serif; */
  /* font-size: 3.5vw; */
  /* font-weight: 400; */
  font-style: normal;
  color: black;
  background-color: transparent;
  border: none;
}

/* 개별: 리스트 */
ul, li {
  list-style: none;
}
/* 개별: 입력 */
a:focus, 
input:focus, 
textarea:focus {
  outline: none;
}
/* 개별: 링크*/
a:focus {
  -webkit-tap-highlight-color: transparent;
}
/* 개별:안내문구 */
input::placeholder, 
textarea::placeholder {
  font-style: italic;
  font-size: 3.5vw;
  font-weight: 400;
  color: var(--color-placeholder);
}

/* 공용 */
.hidden {  /* 숨김 */
  display: none;
}

/* 모바일 새로고침 제한 */
body {
  overscroll-behavior: none;
}

/* 기본 색상 설정 */
body {
  background-color: white;
}
header {
  background-color: white;
}
nav {
  background-color: white;
}
section {
  background-color: white;
}
footer {
  background-color: white;
}
article {
  background-color: white;
}
