@charset "utf-8";

/* 여백 초기화 */
body,
div,
ul,
li,
ol,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
input,
fieldset,
figure,
legend,
p,
select,
table,
th,
td,
tr,
textarea,
button,
form,
blockquote,
address,
thead,
tbody,
tfoot,
caption {
  margin: 0;
  padding: 0;
}

/* a 링크 초기화 */
a {
  color: #222;
  text-decoration: none;
  /* display: block; */
}

/* 폰트 초기화 */
body,
input,
textarea,
select,
button,
table {
  font-family: "Nanum Gothic", "Noto Sans KR", sans-serif,
    AppleSDGothicNeo-Regular, "Malgun Gothic", "맑은 고딕", dotum, "돋움",
    sans-serif;
  /* color: #222;  */
  font-size: 16px;
  line-height: 1.5;
}

/* 폰트 스타일 초기화 */
em,
address {
  font-style: normal;
}

/* 블릿기호 초기화 */
dl,
ul,
li,
ol,
menu {
  list-style: none;
}

/* 제목 태그 초기화 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  /* color: #222;  */
  font-weight: normal;
}

/* 이미지 태그 초기화 */
img {
  display: block;
}

/* IR 효과 */
.ir_pm {
  /* 의미 있는 이미지의 대체 텍스트를 제공하는 경우 */
  display: block;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
}

.ir_wa {
  /* 의미있는 이미지의 대체 텍스트로 이미지가 없어도 대체 텍스트를 보여주고자 할 때 */
  display: block;
  overflow: hidden;
  position: relative;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.ir_su {
  /* 대체 텍스트가 아닌 접근성을 위한 숨김 텍스트를 제공할 때 */
  overflow: hidden;
  position: absolute;
  width: 0px;
  height: 0px;
  line-height: 0px;
  text-indent: -9999px;
}

/* 플롯해제 */
/* clearboth */
.clearboth::after {
  content: "";
  display: block;
  clear: both;
}
