/* box-sizing 규칙을 명시합니다. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 폰트 크기의 팽창을 방지합니다. */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* 기본 여백을 제거하여 작성된 CSS를 더 잘 제어할 수 있습니다. */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ol  {
  margin-block-end: 0;
  margin: 0;
  padding: 0;
  word-break: keep-all;
  word-wrap: break-word;
  font-family: 'HanjinGroupSans';
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #2D2926;
}

/* list를 role값으로 갖는 ul, ol 요소의 기본 목록 스타일을 제거합니다. */
ul[role='list'],
ol[role='list'],
li {
  list-style: none;
}

/* 핵심 body의 기본값을 설정합니다. */
body {
  min-height: 100vh;
  line-height: 1.3;
  margin:0;
}

/* 제목 요소와 상호작용하는 요소에 대해 line-height를 더 짧게 설정합니다. */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* 제목에 대한 text-wrap을 balance로 설정합니다. */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* 클래스가 없는 기본 a 태그 요소는 기본 스타일을 가져옵니다. */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* input 및 button 항목들이 글꼴을 상속하도록 합니다. */
input,
button,
textarea,
select {
  font: inherit;
  appearance: none;
  border: 0;
  background: transparent;
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
}

/* 행 속성이 없는 textarea가 너무 작지 않도록 합니다. */
textarea:not([rows]) {
  min-height: 10em;
}

/* 고정된 모든 항목에는 여분의 스크롤 여백이 있어야 합니다. */
:target {
  scroll-margin-block: 5ex;
}

p, ul{margin:0; padding:0;}

a, del {
  text-decoration: none;
}

/* 셀렉트박스 커스텀 필요한 경우 */
select {
  -webkit-appearance:none; /* for chrome */
  -moz-appearance:none; /*for firefox*/
  appearance:none;
}

select::-ms-expand{
  display:none;/*for IE10,11*/
}

/* a11y */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
}

.wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.br_m,
.img_m {
  display: none;
}
.color--korean-air {
  color: #00256C;
}
.color--unicef {
  color: #1CABE2;
}

@media screen and (max-width: 640px) {
  .br_m,
  .img_m {
    display: block;
  }
  .br_pc,
  .img_pc {
    display: none;
  }
}