:root {
  --primary-color: #8526FC;
  --grayA9-color: #818489;
}
* {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

* {
  font-family: 'Noto Sans', sans-serif;
  color: black;
  line-height: 1;
}
/* 한국어일 때의 폰트 설정 */
html[lang="ko"] * {
  font-family: 'Noto Sans KR', sans-serif;
}
/* 영어일 때의 폰트 설정 */
html[lang="en"] * {
  font-family: 'Noto Sans', sans-serif;
}
/* 일본어일 때의 폰트 설정 */
html[lang="ja"] * {
  font-family: 'Noto Sans JP', sans-serif;
}
/* 중국어일 때의 폰트 설정 */
html[lang="zh"] * {
  font-family: 'Noto Sans SC', sans-serif;
}

html,
body {
  font-size: 62.5%;
  line-height: 1.285;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: black;
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
}
button {
  cursor: pointer;
}
/* scrollbar setting*/
/* ::-webkit-scrollbar {
    width: 13px;
    background-color: #fff;
}
::-webkit-scrollbar-track {
    background-color:  #fff;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb { 
    background-color:  rgba(153, 153, 153, 0.5);
    border: 3px solid #fff;
    border-radius: 10px;
}
::-webkit-scrollbar-button {
    display: none;
}
::-webkit-scrollbar-corner {
    background-color: #fff;
} */

.header-nav-depth2.small {
  margin-top: 14px;
  margin-left: 15px;
}
.header-nav-depth2.small a {
  font-size: 1.6rem;
}
.left-header__inner .left-header__body {
  padding: 30px;
}

.loading-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2000;
  display: none;
}
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  position: relative;
  top: 50%;
  transform: scale(.4) translateY(-50%);
}
.loading img {
  animation: loading .8s infinite alternate;
}
.loading>.loading-1 {
  margin-top: -10px;
  animation-delay: .1s;
}
.loading>.loading-2 {
  animation-delay: .3s;
}
.loading>.loading-3 {
  animation-delay: .5s;
}
.loading>.loading-4 {
  animation-delay: .7s;
}
.loading>.loading-5 {
  animation-delay: .9s;
}
.loading>.loading-6 {
  animation-delay: 1.1s;
}
@keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* 0225 */
.wrap .header-nav-depth1>li+li {
  margin-top: 30px;
}
.wrap .left-header__nav span {
  font-size: 1.8rem;
  margin-left: 12px;
}
.wrap .header-nav-depth2>li+li {
  margin-top: 10px;
}
.wrap .header-nav-depth2 a {
  font-size: 1.6rem;
}
.wrap .header-nav-depth1>li>a>img {
  width: 24px;
  height: 24px;
}
#filterForm {
  display: flex;
  gap: 8px; /* 셀렉트 사이 간격 */
  align-items: center;
  margin-bottom: 1rem;
}
#filterForm select {
  padding: 0.6rem 1rem;
  font-size: 1.4rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 120px;
}