html{
    --size: 62.5%;
}
html.big_mode{
    --size: 75%;
}
html{
    font-size: var(--size);
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
    color: #000;
}
li{
    list-style-type: none;
}
input::placeholder,button,select,textarea{
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}
input[type="checkbox"] {
    -webkit-appearance: none;
    position: relative;
    width: 14px;
    height: 14px;
    outline: none !important;
    border: 1px solid #ccc;
    background: #fff;
}
input[type="checkbox"]::before {
    content: "\2713";
    position: absolute;
    top: 50%;
    left: 50%;
    overflow: hidden;
    transform: scale(0) translate(-50%, -50%);
    line-height: 1;
}
input[type="checkbox"]:checked {
    background-color: #fff;
    border-color: #ccc;
    color: #16A4FF;
}
input[type="checkbox"]:checked::before {
    transform: scale(1) translate(-50%, -50%)
}
h1{
    display: flex;
    align-items: center;
}
h1 .img_logo{
    width: 136px;
    height: 20px;
    background-image: url(../img/logo_0704.svg);
    background-repeat: no-repeat;
    background-size: cover;
    text-indent: -999px;
    overflow: hidden;
    margin-right: 1rem;
}
body.admin_mecross h1 .img_logo{
    background-image: url(../img/logo_mecross.svg);
    width: 182px;
}
.mecross{
    display: none;
}
body.admin_mecross .mecross{
    display: block;
}
h1 span.mecross{
    margin-right: .5rem;
}
h1 span{
    color: #000;
    font-size: 2rem;
    font-weight: 600;
}
h2{
    font-size: 2rem;
    font-weight: 600;
}
.mob_only_360{
    display: none;
}
.sub_mini{
    font-size: 1.2rem;
    font-weight: 400;
    color: #888;
}