@charset "UTF-8";

@font-face {
    font-family: 'PyeongChangPeace';
    font-weight: 300;
    font-style: normal;
    src: url('../font/PyeongChangPeace-Light.woff');
}

@font-face {
    font-family: 'SBAggro';
    font-weight: 700;
    font-style: normal;
    src: url('../font/SBAggroBold.woff');
}

@font-face {
	font-family: 'Pretendard Variable';
	font-weight: 45 920;
	font-style: normal;
	font-display: swap;
	src: url('../font/PretendardVariable.woff2') format('woff2-variations');
}

@font-face {
    font-family: 'ONE Mobile Title OTF';
    font-weight: 400;
    font-style: normal;
    src: url('../font/ONE-Mobile-Title.woff');
}

/* 초기화 */
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;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    font-size: 62.5%;
    height: 100%;
}

body {
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Pretendard Variable';
    font-size: 16px;
    color: #FFFFFF;
    background-color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select {
    font-family: 'Pretendard Variable', 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;
}

/* 튜토리얼 팝업 */
.tutorial_wrap {
    width: 100%;
    height: 100%;
}

.tutorial_icon {
    position: absolute;
    left: 190px;
    bottom: 13px;
    z-index: 1;
    cursor: pointer;
}

.tutorial_icon img {
    height: 32px;
    opacity: 0.7;
}

.tutorial {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99999999999;
    top: 0;
    left: 0;
}

.tutorial.show {
    display: block;
}

.tutorial .popup-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
}

.popup-content-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1000px;
    width: 94%;
    max-height: 54rem;
    padding: 7rem 5rem;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    border-radius: 4rem;
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    color: #fff;
    text-align: center;
}

.tutorial_title h3 {
    font-size: 1.8rem;
    font-family: 'Pretendard Variable';
    margin: 0 auto 2rem;
}

.tutorial_title h4 {
    height: 6rem;
    margin: 0;
}

.tutorial_title h4 img {
    height: 100%;
}

.tutorial_title button {
    position: absolute;
    right: 5rem;
    top: 5rem;
    background: transparent;
    color: #fff;
    border: 0;
    font-size: 3rem;
    cursor: pointer;
}

.tutorial_cont {
    display: flex;
    justify-content: space-between;
    gap: 3rem 1rem;
    margin-top: 5rem;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tt-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 140px;
    min-width: 140px;
}

.tt-wrap .icon-img-wrap {
    display: flex;
    align-items: center;
    max-height: 50px;
    height: 50px;
}

.tt-wrap .icon-img-wrap img {
    max-width: 100%;
    max-height: 100%;
}

.tt-wrap h5 {
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin: 2rem 0 0;
    line-height: 1.2;
}

@media all and (max-width:1180px) {
    .popup-content-wrap {
        padding: 5rem;
    }

    .tutorial_title h3 {
        margin-bottom: 1.5rem;
    }

    .tutorial_title h4 {
        height: 5rem;
    }

    .tutorial_cont {
        justify-content: center;
        gap: 3rem;
        max-width: none;
    }

    .tt-wrap {
        max-width: 20%;
        width: 100%;
        min-width: auto;
        margin: 0;
    }

    .tt-wrap .icon-img-wrap {
        height: 45px;
    }

    .tt-wrap h5 {
        white-space: nowrap;
    }

    .ii3 picture {
        height: 100%;
    }

    .ii3 img {
        transform: scale(1) !important;
    }
}

@media all and (max-width:640px) {
    .popup-content-wrap {
        max-height: 80%;
        border-radius: 2rem;
        overflow-y: auto;
    }

    .tutorial_title h3 {
        font-size: 1.6rem;
    }

    .tutorial_title h4 {
        height: 4rem;
    }

    .tutorial_title button {
        top: 4rem;
        right: 3rem;
        font-size: 2.5rem;
    }

    .tutorial_cont {
        flex-wrap: wrap;
        gap: 1rem;
        row-gap: 3rem;
    }

    .tt-wrap {
        width: calc((100% - 1rem) / 2);
        max-width: calc((100% - 1rem) / 2);
    }

    .tt-wrap h5 {
        font-size: 1.5rem;
        margin: 1rem 0 0;
    }

    .tt-wrap .ii2,
    .tt-wrap .ii3 {
        transform: scale(0.9) !important;
    }

    .tt-wrap .ii1,
    .tt-wrap .ii4,
    .tt-wrap .ii5,
    .tt-wrap .ii6 {
        transform: scale(0.8) !important;
    }

}

@media all and (max-width:480px) {
    .popup-content-wrap {
        padding: 4rem 2rem;
    }

    .tutorial_title h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .tutorial_title h4 {
        height: 3.2rem;
    }

    .tutorial_title button {
        top: 3rem;
        right: 2rem;
        font-size: 2rem;
    }

    .tt-wrap .icon-img-wrap {
        height: 35px;
    }

    .tt-wrap h5 {
        font-size: 1.4rem;
    }

    .tt-wrap .ii1,
    .tt-wrap .ii3,
    .tt-wrap .ii4,
    .tt-wrap .ii5 {
        transform: scale(1) !important;
    }

    .tt-wrap .ii2 {
        transform: scale(1.2) !important;
    }

    .tt-wrap .ii6 {
        transform: scale(1.1) !important;
    }
}