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;
}
body {
    line-height: 1;
}
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;
}
table,
td {
    border: 1px solid #90969b;
}

td {
    padding: 10px 5px;
    font-weight: 500;
    letter-spacing: normal;
    color: #90969b;
    font-size: 16px;
}

body {
    padding: 24px;
}

/* descktop */
@media screen and (min-width: 940px) {
    body.dark {
        background: #1c1d1f;
    }
}

/* 모바일 */
@media screen and (max-width: 939px) {
    body.dark {
        background: #151619;
    }
}

div h2 {
    margin-top: 20px;
    margin-bottom: 4px;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: normal;
    line-height: 22px;
    color: #36383c;
}
div h3 {
    margin-top: 32px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: normal;
    color: #36383c;
}
div h4 {
    margin-top: 16px;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
}
div p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #36383c;
}

div li {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #36383c;
}
div span {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #666;
}
ul {
    padding-inline-start: 30px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #36383c;
    list-style: disc;
}
strong {
    font-weight: 600;
}

.top {
    margin-top: 0;
}
.tab {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.red {
    color: red;
}

.margin_top {
    margin-top: 20px;
}

/* 탭 스타일 */
.tab_item {
    display: flex;
    align-items: center;
    height: 36px;
    padding: 0px 16px;
    background-color: #f1f3f6;
    color: #9196a1;
    text-align: center;
    border-radius: 24px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

/* 라디오 버튼 UI삭제*/
input[name="tab_item"] {
    display: none;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.contents_area {
    position: absolute;
    top: calc(32px + 30px);
    padding: 24px;
    padding-top: 0;
}

/* 탭 컨텐츠 스타일 */
.tab_content {
    display: none;
    clear: both;
    overflow: hidden;
}

/* 선택 된 탭 콘텐츠를 표시 */
#skt:checked ~ .contents_area #skt_content,
#kt:checked ~ .contents_area #kt_content,
#lg:checked ~ .contents_area #lg_content {
    display: block;
}

/* 선택된 탭 스타일 */
.tabs input:checked + .tab_item {
    background-color: #3e4045;
    color: #fff;
}

.community h3 {
    margin-bottom: 10px;
}

.x_scroll {
    overflow-x: auto;
}
.x_scroll::-webkit-scrollbar {
    height: 9px;
}
body.dark .x_scroll::-webkit-scrollbar-thumb {
    background: #3c3f43;
}

.min_width_500 {
    min-width: 500px;
}

.min_width_600 {
    min-width: 600px;
}

.min_width_700 {
    min-width: 700px;
}

.min_width_800 {
    min-width: 800px;
}

.min_width_900 {
    min-width: 900px;
}

h4 {
    margin-top: 4px;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    color: #333333;
}
table {
    margin-bottom: 20px;
    width: 100%;
    max-width: 900px;
    margin-top: 20px;
    border-top: 2px solid #161d29;
}

tr {
    vertical-align: middle;
}
td {
    vertical-align: middle;
    border: 1px solid #e4e5ea;
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    text-align: center;
    color: #333;
}
td.background {
    background: #f1f2f6;
}
td.left-align {
    padding: 5.5px 20px;
    text-align: left;
    font-size: 14px;
}
td.font_14 {
    font-size: 14px;
}

body.dark .tab_item {
    background-color: #282a2e;
    color: #7f8289;
}
body.dark div h3 {
    color: #fff;
}
body.dark div h2 {
    color: #fff;
}
::-webkit-scrollbar {
    background: inherit;
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background: #e9ebef;
    border-radius: 20px;
}
body.dark::-webkit-scrollbar-thumb {
    background: #3e4045;
}
body.dark h4 {
    color: #e0e4e9;
}
body.dark p {
    color: #bcc1c7;
}
body.dark table {
    border-top: 2px solid #454449;
}
body.dark td {
    border: 1px solid #454449;
    color: #e0e4e9;
}
body.dark td.background {
    background: #3a3a41;
}
body.dark ul {
    padding-inline-start: 30px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #bcc1c7;
    list-style: disc;
}

body.dark li {
    padding-inline-start: 30px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #bcc1c7;
    list-style: disc;
}

@font-face {
    font-family: "Pretendard";
    src: url("./Pretendard-Regular.woff2") format("woff2"),
        url("./Pretendard-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    src: url("./Pretendard-Medium.woff2") format("woff2"),
        url("./Pretendard-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    src: url("./Pretendard-Bold.woff2") format("woff2"),
        url("./Pretendard-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "HiraginoSans";
    src: url("./asset/HiraginoSans-Regular.woff") format("woff");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "HiraginoSans";
    src: url("./asset/HiraginoSans-Medium.woff") format("woff");
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "HiraginoSans";
    src: url("./asset/HiraginoSans-Bold.woff") format("woff");
    font-weight: 700;
    font-display: swap;
}
body {
    font-family: "Pretendard";
}

.content-ja {
    font-family: "HiraginoSans";
}
