/*------------------------------------------------------
· apmedia Ver 1.0
· Type : basic.css
· Author : Albatrosss Pictures Kim Hyun Gyu
· Data : 2026-03-05
· Copyright @ 2026 apmedia 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: inherit;
    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 #################################### */

/* 폼 공통 */
input,
textarea,
select,
button {
    font-family: var(--set-font-family);
    font-size: var(--set-font-size);
    color: var(--text-color);
    background: transparent;
    outline: none;
    border: none;
    border-bottom: 1px solid var(--signature-sub-color);
    padding: 0.75rem 0;
    width: 100%;
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-bottom-color: var(--signature-color);
}

input::placeholder,
textarea::placeholder {
    color: var(--signature-sub-color);
}

textarea {
    min-height: 1.5em;
    overflow: hidden;
}

button {
    cursor: pointer;
    border-bottom: none;
}

/* 이미지 공통 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 섹션 공통 */
.section-inner {
    width: 100%;
    padding-left: 2.5%;
    padding-right: 2.5%;
}

/* 숨김 텍스트 */
.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;
}