@charset "utf-8";

/* Reset */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
}

html:lang(ko) p{
    word-break: keep-all;
}

html:lang(zh-CN) p,
html:lang(ja) p{
    line-break: strict;
}

body {
    min-width: 320px;
    font-size: 17px;
    line-height: 1.5;
    color: #222;
    word-break: keep-all;
    -webkit-text-size-adjust: 100%;
    
    font-family:
        "Noto Sans",
        "Noto Sans KR",
        "Noto Sans SC",
        "Noto Sans JP",
        sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
}

ul,
ol,
li {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

img {
    border: 0;
    vertical-align: middle;
}

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset {
    border: 0;
}

address,
em,
i {
    font-style: normal;
}

strong,
b {
    font-weight: 700;
}