﻿@charset "utf-8";
/*-------------------------------------------------
Style Sheet
Version : 1.0
Author :  Kang HyeYeon
Create date : 2026. 01. 02.
-------------------------------------------------*/
html,
body {
    position: relative;
    height: 100%;
    background: #000;
}

#wrap {
    min-width: 1440px;
}

/* header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    padding: 35px 60px;
    box-sizing: border-box;
    z-index: 50;
}
header .head_sns {
    display: flex;
}
header .head_sns a {
    opacity: .5;
    margin-left: 40px;
}
header h1 img {
    width: 76px;
}

.scroll_down {
    position: absolute;
    bottom: calc(100vh - 96vh);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    flex-direction: column;
}
.scroll_down .bar {
    width: 2px;
    height: 100px;
    background: #fff;
    overflow: hidden;
    position: relative;
}
.scroll_down .bar::after {
    content: '';
    width: 2px;
    height: 100px;
    background: #00f7c5;
    position: absolute;
    animation: scroll_ani 2s ease-in-out infinite;
}
.scroll_down .txt {
    font-size: 20px;
    color: #00f7c5;
    font-weight: 600;
    text-transform: uppercase;
}
@keyframes scroll_ani {
    0% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(100%);
    }
}

#contents_wrap {
    overflow: hidden;
    position: relative;
}
#contents_wrap > div {
    height: 100vh;
}
.main_wrap {
    width: 100%;
    background: url(../images/main_bg.jpg) no-repeat center bottom;
    background-size: cover;
}
.main_wrap .inner {
    width: 1280px;
    margin: auto;
}
.main_wrap .tit_area {
    width: 794px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding-top: calc(100vh - 75vh);
}
.main_wrap .tit_area h2 {
    font-size: 84px;
    line-height: 96px;
    color: #fffcdc;
    font-family: cc-smash, sans-serif;
    text-transform: uppercase;
    margin-top: 20px;
    letter-spacing: 3px;
}
.main_wrap .tit_area p {
    font-size: 30px;
    color: #fffcdc;
    text-transform: uppercase;
    margin-top: 15px;
    font-weight: 600;
}

/* sub */
.sub_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url(../images/sub_bg.jpg) no-repeat center bottom;
    background-size: cover;
}
.sub_wrap .inner {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.sub_wrap h2 {
    font-size: 64px;
    line-height: 77px;
    color: #fffcdc;
    font-family: cc-smash, sans-serif;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 4px;
}
.sub_wrap p {
    font-size: 20px;
    line-height: 26px;
    font-weight: 300;
    color: #fffcdc;
    text-align: center;
    margin-top: 14px;
}
.sub_wrap p.color_txt {
    color: #0be5b9;
}
.sub_wrap .step {
    margin-top: 42px;
}

/* footer */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    text-align: center;
}
footer .foot_logo {
    margin: 0;
}
footer p {
    font-size: 14px;
    color: #8b8b8b;
    margin-top: 20px;
}