/*------------------------------------------------------
· ICTK Ver 1.0
· Type : basic.css
· Author : Albatrosss Pictures Kim Hyun Gyu
· Data : 2026.02.24
· Copyright @ 2026 ICTK 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: 100svh;
    color: var(--set-font-color);
    font-family: var(--set-font-family);
    font-size: var(--set-font-size);
    font-weight: var(--set-font-weight);
    background: var(--set-background);
}

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(--set-font-color);
    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;
}

/* iOS Safari defense */
a[href^="tel:"],
a[x-apple-data-detectors] {
    color: inherit;
    text-decoration: none;
}

* {
    -webkit-tap-highlight-color: transparent;
}

/* Focus Visible — 키보드 접근성 */
:focus-visible {
    outline: 2px solid var(--point-color);
    outline-offset: 2px;
}

/* Skip Navigation */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only-focusable:focus {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    padding: 1rem 2rem;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background: var(--point-color);
    color: var(--base-color-white);
    font-size: 1rem;
    font-weight: 700;
    z-index: 10000;
}

/* #################################### 02.Common Set #################################### */
.scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollbar::-webkit-scrollbar {
    display: none;
}