* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    color: #fff;
    text-decoration: none;
}

/* font-size */

:root {
    --fz-14: clamp(12px, 1.8vw, 14px);
    --fz-18: clamp(14px, 2vw, 18px);
    --fz-20: clamp(14px, 2vw, 20px);
    --fz-23: clamp(14px, 2vw, 23px);
    --fz-25: clamp(16px, 2.5vw, 25px);
    --fz-28: clamp(16px, 2.5vw, 28px);
    --fz-30: clamp(18px, 3vw, 30px);
    --fz-32: clamp(20px, 3vw, 32px);
    --fz-35: clamp(20px, 3vw, 35px);
    --fz-38: clamp(24px, 3vw, 38px);
    --fz-45: clamp(28px, 4vw, 45px);
    --fz-60: clamp(32px, 4vw, 60px);
    --fz-80: clamp(36px, 4vw, 80px);
}

.fz-14 {font-size: var(--fz-14);}
.fz-18 {font-size: var(--fz-18);}
.fz-20 {font-size: var(--fz-20);}
.fz-23 {font-size: var(--fz-23);}
.fz-25 {font-size: var(--fz-25);}
.fz-28 {font-size: var(--fz-28);}
.fz-30 {font-size: var(--fz-30);}
.fz-32 {font-size: var(--fz-32);}
.fz-35 {font-size: var(--fz-35);}
.fz-38 {font-size: var(--fz-38);}
.fz-45 {font-size: var(--fz-45);}
.fz-60 {font-size: var(--fz-60);}
.fz-80 {font-size: var(--fz-80);}


/* margin */
.mb-5 {margin-bottom: 5px;}
.mb-10 {margin-bottom: 10px;}
.mb-20 {margin-bottom: 20px;}
.mb-30 {margin-bottom: 30px;}
.mb-40 {margin-bottom: 40px;}
.mb-50 {margin-bottom: 50px;}
.mb-60 {margin-bottom: 60px;}

.mt-10 {margin-top: 10px;}
.mt-20 {margin-top: 20px;}
.mt-30 {margin-top: 30px;}
.mt-40 {margin-top: 40px;}
.mt-50 {margin-top: 50px;}
.mt-60 {margin-top: 60px;}
.mt-100 {margin-top: 100px;}
.mt-150 {margin-top: 150px;}


html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}


/* p,a {
    word-wrap: break-word;
    word-break: keep-all;
}
*/
img{
    width: 100%;
}
.text_center {
    text-align: center;
}

.lh {
    line-height: 1.2;
}

.white {
    color: #fff;
}

.black {
    color: #000;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


*{margin: 0; padding: 0;}

body{
    color: #fff;
    font-family: 'PyeongChang-Regular';
}



@font-face {
    font-family: 'PyeongChang-Bold';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2206-02@1.0/PyeongChang-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'PyeongChang-Regular';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2206-02@1.0/PyeongChang-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}


:root{
    --color-bg01: #000;
    --color-bg02: #f66c14;
	--color-bg02-1:#feae03;
    --color-bg03: #1e1e1e;
	--color-bg03-1: #fff;
    --color-bg04: #01042C;
    --color-bg05: #11386d;
}   
.tit{
    font-family: 'PyeongChang-Bold';
}


.wrap_tab{
    background-color: var(--color-bg01);
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99999;
}

.wrap_tab .tab_inner{
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
	border-radius:5px;
}
.wrap_tab .tab_inner .tab{
    width: 100%;
    text-align: center;
    padding: 15px; box-sizing: border-box;
    cursor: pointer;
    box-sizing: border-box;

}
.tab:hover{
    border: 1px solid var(--color-bg02);
	border-radius:5px;
    color: #bbbbbb;
}

.wrap_tab .tab_inner .tab.active{
    background: linear-gradient(45deg, var(--color-bg02), var(--color-bg02-1));
	border-radius:5px;
    border: 1px solid var(--color-bg02);
}

.section_inner{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
	box-sizing: border-box;
    padding-top: 8%;
}


/* indeicator */
.indicator-container {
    position: fixed;
    right: 20px;  /* 오른쪽 중앙 배치 */
    top: 50%;
    transform: translateY(-50%);  /* 세로 중앙 배치 */
    display: flex;
    flex-direction: column;
    gap: 10px;  /* 각 인디케이터 간 간격 */
    z-index: 999;

}
.circle{
    width: 12px; height: 12px;
    border-radius: 50%;
    border: 3px solid var(--color-bg02);
}

.indicator {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap:10px;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    height: 20px;
    transition: background-color 0.3s ease;
}

.indicator:hover .circle {
     background: linear-gradient(45deg, var(--color-bg02), var(--color-bg02-1));
      /* 호버 시 색상 변경 */
}
.indicator:hover .text{
    display: block;
}
.text{
    display: none;
    font-size: var(--fz-14);
    color: var(--color-bg02);
}


/* sheet01 */
/* sec01 */

.sheet01 .sec01{
    background-color: var(--color-bg03);
	padding-top:100px;
}
.sheet01 .sec01 .section_inner .logo{
    width: 50%;
    margin: 0 auto;
    text-align: center;
}
/* swiper */
.swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

/* 화살표 기본 숨김 및 호버 시 표시 */
.swiper-button-prev,
.swiper-button-next {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swiper:hover .swiper-button-prev,
.swiper:hover .swiper-button-next {
    opacity: 1;
}

/* 화살표 색상 변경 */
.swiper-button-prev:after,
.swiper-button-next:after {
    color: #fff;
}

/* 슬라이드 캡션 스타일 */
.swiper-slide {
    position: relative;
}

.slide-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10%;
    font-size: var(--fz-16);
    background-color: rgba(255, 255, 255, 0.664); /* 반투명 회색 */
    color: rgb(43, 43, 43);
    padding: 10px 0 10px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swiper-slide:hover .slide-text {
    opacity: 1;
}

.content{
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

/* sec02 */
.sheet01 .sec02{
    background-color: var(--color-bg03);
}
.sheet01 .sec02 .content .btn_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.sheet01 .sec02 .content .btn_box a{
}
.sheet01 .sec02 .content .btn_box a:hover{
    opacity: 0.5;
}
.join{
    width: 70%;
    margin: 150px auto;
}


/* sec03 */
.sheet01 .sec03{
    background-color: var(--color-bg04);
    padding: 15% 0; 
    box-sizing: border-box;
}
.sheet01 .sec03 .img{
    width: 70%; 
    margin: 50px auto;
}

/* sec04 */
.sheet01 .sec04{
    background-color: var(--color-bg03);
    /* padding: 15% 0;  */
    box-sizing: border-box;
}
.qna_list li{
    padding: 30px 0;
    /* margin: 20px 0; */ box-sizing: border-box;
    border-bottom: 1px solid rgba(235, 186, 77, 0.2);
   
}
.qna_tit{
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.qna_tit .icon img {
    width: 12px;
    transition: transform 0.3s ease;
}

.qna_txt {
    display: none;
    margin-top: 30px;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    max-height: 0;
    opacity: 0;
}
.qna_txt.open {
    display: block;
    max-height: 200px; 
    opacity: 1;
}


.qna_list li.active .qna_tit .img img {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}
.code{
    width: 60%;
    margin: 0 auto;
}


/* sheet02 */
.sheet02{
}
.sheet02 .sec01{
    background-color: var(--color-bg03);
}
.banner_list{
    width: 60%;
    margin: 0 auto;
    padding-bottom: 10%;
}
.banner_list li{
    margin: 8% 0;
}
.banner_list li img{
    display: block;
}
.banner_list li p{
    padding: 5% 3%;
    background-color: var(--color-bg05);
}



/* footer */
.footer{
    background-color: var(--color-bg05);
    padding: 5% 0 2%;
    text-align: center;
}
.footer .img{
    width: 20px;
    display: inline-block;
    text-align: center;
}
.footer .img svg{
    width: 100%;
    background-size: cover;
    height: 100%;
  
}
.footer_list{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}
.footer_list img{
    width: 40px;
}
.footer p{
    font-size: var(--fz-14);
}

.submit-btn {
	display:block;
	text-align:center;
    width: 100%;
    background: linear-gradient(45deg, var(--color-bg02), var(--color-bg02-1));
    color: white;
    border: none;
    padding:25px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse 2s infinite, shimmer 3s infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
	border:1px solid #333;
}

.submit-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: linear-gradient(45deg, var(--color-bg02), var(--color-bg02-1));
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.submit-btn:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}


.submit-btn-2 {
	display:block;
	text-align:center;
    width: 100%;
    background: linear-gradient(45deg, var(--color-bg03), var(--color-bg03-1));
    color:var(--color-bg02);
	font-weight:900;
    border: none;
    padding:25px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse 2s infinite, shimmer 3s infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	border:1px solid #333;
}

.submit-btn-2:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: linear-gradient(45deg, var(--color-bg03), var(--color-bg03-1));
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.submit-btn-2:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    animation: shine 3s infinite;
	animation-delay: 0.5s;
}

.submit-btn-3 {
	display:block;
	text-align:center;
    width: 100%;
    background: linear-gradient(45deg, #1e759f, #24a1de);
    color:#fff;
	font-weight:900;
    border: none;
    padding:25px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse 2s infinite, shimmer 3s infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
	border:1px solid #333;
}

.submit-btn-3:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: linear-gradient(45deg, #1e759f, #24a1de);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.submit-btn-3:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    animation: shine 3s infinite;
	animation-delay: 1s;
}


.submit-btn-3 h5,.submit-btn-2 h5,.submit-btn h5{
font-size:2rem;
}

.submit-btn-3 span,.submit-btn-2 span,.submit-btn span{
font-size:1rem;
color:#000;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes shine {
    0% {
        left: -100%;
        top: -50%;
    }
    100% {
        left: 100%;
        top: 100%;
    }
}

.submit-btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}



/* 미디어쿼리 */
@media screen and (max-width: 980px) {
    .section_inner{
	 padding: 20px;
	 padding-top: 5%;
    }
	
    .fz-35{
        font-size: var(--fz-28);
    }
    .banner_list{
        width: 95%;
    }
    .join{
        width: 95%;
    }
    .code{
        width: 95%;
    }

}