@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

html {
    font-size:10px;
    --default : #111; /*기본 텍스트 컬러*/
    --point: #203c92;
    --border: #ddd
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
    color: var(--default); 
	vertical-align: middle;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
* {
	line-height: 1.4;
    font-family: 'Pretendard', sans-serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a,
a:link, 
a:visited {text-decoration:none}
:root{
}

img {
    max-width: 100%;
    object-fit: cover;
}

.inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.show-992{
    display:none;
}

.hide-992{
    display:block !important;
}


.tit-box{
    text-align:center;
}

.tit-box:not(:has(+ .txt)){
    margin-bottom: 11rem;
}


.tit-box p.en-tit{
    font-size:15px;
    font-weight: 400;
    color:#999;
    letter-spacing:2px;
}

.tit-box h2.tit{
    font-size:5.2rem;
    line-height:1.2;
    font-weight: 700;
    margin-top:2rem;
    color:#333;
}

.tit-box + .txt{
    margin-top: 5rem;
    text-align:center;
    font-size:2.4rem;
    color:#959595;
}

.lg-txt{
    font-size:2.4rem;
}

.md-txt{
    font-size:2.2rem;
}

.sm-txt{
    font-size:2rem;
}

.xs-txt{
    font-size:1.8rem;
}

.pt-0{
    padding-top:0 !important;
}
.pb-0{
    padding-bottom:0 !important;
}


/* 1600 = inner size */

@media screen and (max-width:1600px){
    html{
        font-size:9px;
    }
    .inner {
        padding-inline: 8%;
    }
}


@media screen and (max-width:992px){
    html{
        font-size:8px;
    }

    .show-992{
        display:block !important;
    }
    
    .hide-992{
        display:none !important;
    }

    .tit-box:not(:has(+ .txt)){
        margin-bottom: 5rem;
    }

    .tit-box p.en-tit{
        font-size:9px;
    }
}

@media screen and (max-width:768px){
    html{
        font-size:7px;
    }
    .lg-txt{
        font-size:min(4vw,2.5rem);
    }
    .tit-box + .txt{
        font-size:min(4vw,2.5rem);
        /* color:#222; */
    }
    .xs-txt{
        font-size:min(3.8vw,2.2rem);
    }

    .tit-box + .txt{
        margin-top:3rem;
    }
}