@charset "utf-8";

/* #################################### Font #################################### */

/* Pretendard - KR */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css');

/* 나눔명조 - KR */
@import url('https://fonts.googleapis.com/earlyaccess/nanummyeongjo.css');

/* 노회찬 - KR */
@import url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-10@1.0/ROEHOE-CHAN.woff');

/* #################################### HTML Basic Set #################################### */
@font-face {
    font-family: 'NohHaeChan';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-10@1.0/ROEHOE-CHAN.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: var(--font-KR-base);
    color: var(--base-color-black);
    word-break: keep-all;
}


::-webkit-scrollbar {
    display: none;
}

*,
:before,
:after {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

html {
    overflow-y: scroll;
}

html,
body {
    width: 100vw;
    height: auto;
    min-height: 100vh;
    color: var(--font-color-base);
    font-family: var(--font-KR-base);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-base);
    background: var(--background-color-base);
    color: var(--base-color-white);
    scroll-behavior: smooth;
    -ms-overflow-style: none;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: var(--font-KR-base);
    /* background: var(--background-color-base); */
    color: var(--base-color-white);
}

html,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img {
    margin: 0;
    padding: 0;
    border: 0;
}

img {
    width: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
a {
    display: block;
}

ul,
ol,
li,
dt,
dd,
dl {
    list-style: none;
}

a,
a:link,
a:visited,
a:hover,
a:active {
    color: var(--base-color-black);
    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;
    
}

select::picker-icon {
    content: '';
    width: 15px;
    margin-left: 5px;
    background:url('../img/lan_arrow.svg') no-repeat 97% 50%/15px auto;
}

select::-ms-expand{
    display:none; /*for IE10,11*/
}

select {
  &, &::picker(select) {
    appearance: base-select;    
  }
}

option::checkmark {
    display: none;
}

::picker(select) {
    border: 1px solid rgb(172, 172, 172);
}

option {
    padding: 15px;
}

/* 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;
}

button {
    background: none;
    cursor: pointer;
}

/* #################################### Contents fixed #################################### */
.fixed-init {
    position: fixed;
    height: 100svh;
    overflow: hidden;
}

/* #################################### Text Word Align#################################### */
h1,
h2,
h3,
h4,
h5,
h6,
p,
input,
textarea {
    word-break: keep-all;
}



/* #################################### 공통 스타일 #################################### */

/* --------------------웹접근성------------------ */

.reader_text {
    position:absolute;
    font-size:0;
    line-height:0;
    overflow:hidden;
}

/* --------------------max width------------------ */
.max_width {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* --------------------섹션------------------ */

.section {
    width: var(--max-width);
    padding: var(--section-margin) 15px;
    margin: 0 auto;
}


.section_margin {
    margin: var(--all-sec-margin);
}

.section_padding_mo {
    padding: var(--all-sec-padding_mo);
}

/* -------------------- 텍스트 효과------------------ */

.ko_font {
    font-family: var(--font-KR-base);
}

.ko_font_point {
    font-family: var(--font-KR-point);
}

.color_white {
    color: var(--base-color-white);
}

.color_point {
    color: var(--signature-color);
}

.br {
    display: block;
}




/* -------------------- 공통 클래스 ------------------ */
.sub_inner{
    width: var(--max-width);
    margin: 0 auto;
}

.sub_inner2{
    width: 1600px;
    max-width: 90%;
    margin: 0 auto;
}

.sub-title-m{
    font-size: var(--title-point-font-size);
    font-weight: 700;
    line-height: ;
}

.btn-custom {
    padding: 20px 50px;
    background-color: var(--signature-color);

    align-items: center;
    justify-content: center;
    color: var(--base-color-white);
    font-size: var(--sub-font-size);
    display: inline-flex;
}
.btn-custom:hover {
    background-color: var(--base-color-black);
    transition: 0.6s;
}
.btn-custom a {
    font-size: inherit; /* 부모 그대로 물려받게 */
    color: inherit;
}
.btn-custom2 {
    padding: 20px 55px;
    background-color: var(--base-color-darkblack);

    align-items: center;
    justify-content: center;
    color: var(--base-color-white);
    font-size: var(--sub-font-size);
    display: inline-flex;
}
.btn-custom2:hover {
    background-color: var(--signature-color);
    transition: 0.6s;
}
.btn-custom2 a {
    font-size: inherit; /* 부모 그대로 물려받게 */
    color: inherit;
}



@media all and (max-width: 860px) {
    .section {
        width: 100%;
    }
}

