/*------------------------------------------------------
· Innoteco Temporary Page Ver 1.0
· Type : basic.css
· Author : Albatrosss Pictures Kim Hyun Gyu
· Data : 2005.05.14
· Copyright @ 2005 Innoteco Temporary Page all rights reserved
---------------------------------------------------------
· SUMMARY:
0) Responsive Area
1) HTML Basic Set
2) Common Set
---------------------------------------------------------*/

@charset "utf-8";

/* #################################### 01.HTML Basic Set #################################### */
*,
:before,
:after {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box !important;
}

html,
body {
    margin: 0 auto;
    width: 100vw;
    height: auto;
    min-height: 100vh;
    color: var(--font-color-base);
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-base);
    background: var(--background-color-base);
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
a {
    display: block;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
}

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

a,
a:link,
a:visited,
a:hover,
a:active {
    color: var(--font-color-base);
    text-decoration: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none;
}

select::-ms-expand {
    display: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* 화살표 모양의 이미지 삽입가능 */
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

textarea{
	resize: none;
}

/*  Text Word Align */
h1,
h2,
h3,
h4,
h5,
h6,
p,
input,
textarea,
li {
    word-break: keep-all;
}

/* Mobile text fixed */
* {
    -webkit-text-size-adjust: none;
}

/* Scrollbar hidden */
html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

.scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollbar::-webkit-scrollbar {
    display: none;
}

/* Reader machine */
.reader-font {
    font-size: 0;
    display: none;
}

/* #################################### 02.Common Set #################################### */
.fixed-init {
    position: fixed;
    width: 100%;
    height: 100svh;
    overflow: hidden;
}