@font-face {
    font-family: 'GmarketSansLight';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GmarketSansMedium';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GmarketSansBold';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.set_container {
    font-family: "Noto Sans KR", "Sans-serif";
    color: #252525;
    min-width: 1780px;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.set_container button {
    font-family: "Noto Sans KR", "Sans-serif";
}

.top_banner {
    background-image: url("../../images/2026/0622/top_bg.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    width: 100%;
    height: 639px;
    position: relative;
    overflow: hidden;
}

.top_banner .images {}

.top_banner .images img {
    position: absolute;
}

.top_banner .images .top_text01 {
    top: 70px;
    left: calc(50% - 475px);
}

.top_banner .images .top_text02 {
    top: 191px;
    left: calc(50% - 440px);
}

.top_banner .images .top_test03 {
    top: 300px;
    left: calc(50% - 447px);
}

.top_banner .images .top_text03 {
    top: 448px;
    left: calc(50% - 436px);
}

.top_banner .images .top_text04 {
    top: 520px;
    left: calc(50% - 455px);
}

.top_banner .images .top_pick {
    top: 374px;
    left: calc(50% - 755px);
}

.top_banner .images .top_img01 {
    top: 343px;
    left: calc(50% - 548px);
}

.top_banner .images .top_img02-1 {
    top: 29px;
    left: calc(50% + 157px);
    animation: frame-cycle-1 3s step-start infinite;
}

.top_banner .images .top_img02-2 {
    top: 29px;
    left: calc(50% + 157px);
    animation: frame-cycle-2 3s step-start infinite;
}

.top_banner .images .top_img02-3 {
    top: 29px;
    left: calc(50% + 157px);
    animation: frame-cycle-3 3s step-start infinite;
}

.t2 {
    animation: t2-blink 5s ease-in-out infinite;
}

@keyframes t2-blink {

    0%,
    40% {
        opacity: 1;
    }

    50%,
    90% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes frame-cycle-1 {
    0% {
        opacity: 1;
    }

    33.33% {
        opacity: 1;
    }

    33.34% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes frame-cycle-2 {
    0% {
        opacity: 0;
    }

    33.33% {
        opacity: 0;
    }

    33.34% {
        opacity: 1;
    }

    66.66% {
        opacity: 1;
    }

    66.67% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes frame-cycle-3 {
    0% {
        opacity: 0;
    }

    66.66% {
        opacity: 0;
    }

    66.67% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}


/* 상단 배너 게임 애니메이션 */
.top_banner .images .top_text01 {
    animation:
        game-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both,
        game-float 2s ease-in-out 0.7s infinite;
}

.top_banner .images .top_text02 {
    animation:
        game-slide-left 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both,
        game-flicker 4s step-start 1.3s infinite;
}

.top_banner .images .top_test03 {
    animation:
        game-scale-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both,
        game-pulse 1.8s ease-in-out 1.2s infinite;
}

.top_banner .images .top_text03 {
    animation: game-fade-up 0.6s ease-out 1s both;
}

.top_banner .images .top_text04 {
    animation:
        game-drop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s both
}

.top_banner .images .top_pick {
    animation:
        game-spin-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both,
        game-wobble 2s ease-in-out 1.4s infinite;
}

.top_banner .images .top_img01 {
    animation: game-rotate 10s linear infinite;
}

@keyframes game-pop {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes game-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes game-slide-left {
    from {
        transform: translateX(-60px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes game-flicker {
    0%        { opacity: 1; }
    2%        { opacity: 0.3; }
    4%        { opacity: 1; }
    6%        { opacity: 0.3; }
    8%, 100%  { opacity: 1; }
}

@keyframes game-scale-in {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    75% {
        transform: scale(1.06);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes game-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

@keyframes game-fade-up {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes game-drop {
    0% {
        transform: translateY(-40px);
        opacity: 0;
    }

    65% {
        transform: translateY(6px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes game-shake {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    20% {
        transform: translateX(-5px) rotate(-2deg);
    }

    40% {
        transform: translateX(5px) rotate(2deg);
    }

    60% {
        transform: translateX(-3px) rotate(-1deg);
    }

    80% {
        transform: translateX(3px) rotate(1deg);
    }
}

@keyframes game-spin-in {
    from {
        transform: rotate(-180deg) scale(0);
        opacity: 0;
    }

    to {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
}

@keyframes game-wobble {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-8deg);
    }

    75% {
        transform: rotate(8deg);
    }
}

@keyframes game-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.hotclick_container {
    position: relative;
    padding-top: 94px;
    overflow: hidden;
}

.hotclick_container .hotclick_container_top {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hotclick_container section {
    background-repeat: no-repeat;
    background-position: center top;
    width: 100%;
    height: 1782px;
    position: relative;
    overflow: hidden;
}

.hotclick_container .section01 {
    background-image: url("../../images/2026/0622/section01_bg.jpg");
    height: 1767px;
}

.hotclick_container .section02 {
    background-image: url("../../images/2026/0622/section02_bg.jpg");
}

.hotclick_container .section03 {
    background-image: url("../../images/2026/0622/section03_bg.jpg");
}

.hotclick_container .section04 {
    background-image: url("../../images/2026/0622/section04_bg.jpg");
}

.hotclick_container section strong {
    display: inline-block;
    margin-top: 100px;
}

.hotclick_container .section01 strong {
    margin-top: 85px;
}

.hotclick_container section .form_list {
    background-image: url("../../images/2026/0622/form_list_bg.png");
    background-repeat: no-repeat;
    background-position: center top;
    width: 1200px;
    height: 1375px;
    position: relative;
    margin: 55px auto 0;
    padding: 70px 100px 0;
}

.hotclick_container section .form_list .form_best {}

.hotclick_container section .form_list .form_best>img {
    position: absolute;
    top: -48px;
    left: 0;
}

.hotclick_container section .form_list .form_best .best01 {
    display: flex;
    padding: 58px 38px 35px 42px;
    background-color: #d4fb54;
    gap: 62px;
}

.hotclick_container .section03 .form_list .form_best .best01,
.hotclick_container .section04 .form_list .form_best .best01 {
    padding: 31px 38px 0px 82px;
    gap: 115px;
}

.hotclick_container .section02 .form_list .form_best .best01 {
    background-color: #ff9bdb;
}

.hotclick_container .section03 .form_list .form_best .best01 {
    background-color: #00ff9c;
}

.hotclick_container .section04 .form_list .form_best .best01 {
    background-color: #3583f0;
}

.hotclick_container section .form_list .form_best .best01 .thumbnail {
    position: relative;
    width: 375px;
    height: 247px;
    margin-top: 24px;
}

.hotclick_container .section03 .form_list .form_best .best01 .thumbnail,
.hotclick_container .section04 .form_list .form_best .best01 .thumbnail {
    position: relative;
    width: 272px;
    height: 320px;
    margin-top: 0;
}

.hotclick_container section .form_list .form_best .best01 .thumbnail img {
    position: absolute;
    top: -10px;
    left: -10px;
}

.hotclick_container section .form_list .form_best .best01 .content {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.hotclick_container .section03 .form_list .form_best .best01 .content,
.hotclick_container .section04 .form_list .form_best .best01 .content {
    margin-top: 4px;
}

.hotclick_container section .form_list .form_best .best01 .content .best_title {}

.hotclick_container section .form_list .form_best .best01 .content .best_review {
    margin-top: -34px;
}

.hotclick_container section .form_list .form_best .best01 .content .best_button {
    margin-top: 14px;
    display: inline-block;
    animation: btn-cta 2s step-start infinite;
}

.hotclick_container section .form_list .form_best .best01 .content .best_button:hover {
    animation-play-state: paused;
    filter: brightness(1.15);
}

@keyframes btn-cta {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }

    8% {
        transform: scale(1.07);
        filter: brightness(1.25);
    }

    16% {
        transform: scale(1);
        filter: brightness(1);
    }

    24% {
        transform: scale(1.07);
        filter: brightness(1.25);
    }

    32% {
        transform: scale(1);
        filter: brightness(1);
    }
}

.hotclick_container section .form_list ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 48px 35px;
    margin-top: 50px;
}

.hotclick_container section .form_list ul li {
    position: relative;
    position: relative;
}

.hotclick_container section .form_list ul li::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 99%;
    height: 301px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    box-shadow: 5px 5px 5px #00000033;
    opacity: 0;
    transition: all .2s;
}

.hotclick_container section .form_list ul li:hover::after {
    opacity: 1;
}

.hotclick_container section .form_list ul li a {
    transition: all .2s;
    display: inline-block;
    overflow: hidden;
    position: relative;
}

.hotclick_container section .form_list ul li a:hover {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.hotclick_container section .form_list ul li a img {
    position: relative;
    z-index: 1;
}

.hotclick_container section .form_list ul li a img.t2 {
    position: absolute;
    top: 0;
    left: 1px;
    opacity: 0;
}

.hotclick_container section .form_list ul li a .free {
    position: absolute;
    top: 240px;
    left: 50%;
    transform: translateX(-50%);
    animation: free-blink 2s step-start infinite;
}

@keyframes free-blink {

    0%,
    100% {
        opacity: 1;
    }

    5% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    15% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }
}

.conts_btn_top {
    position: fixed;
    left: 50%;
    margin-left: 680px;
    bottom: 95px;
    z-index: 9888;
    animation: topm 0.8s ease-in-out infinite;
    animation-play-state: paused;
}

.conts_btn_top button {
    cursor: pointer;
    border: none;
    outline: none;
    display: block;
    background: url(https://www.bizforms.co.kr/magazine/content/hotclick/images/2020/201208/ico_top.png) 50% 50% no-repeat;
    text-indent: -9999px;
    opacity: 0;
    width: 0px;
    height: 0px;
    -webkit-transition: opacity 0.4s, width 0s 0.4s, height 0s 0.4s;
    -moz-transition: opacity 0.4s, width 0s 0.4s, height 0s 0.4s;
    -ms-transition: opacity 0.4s, width 0s 0.4s, height 0s 0.4s;
    -o-transition: opacity 0.4s, width 0s 0.4s, height 0s 0.4s;
    transition: opacity 0.4s, width 0s 0.4s, height 0s 0.4s;
}

.conts_btn_top:hover {
    animation-play-state: running;
    animation-fill-mode: forwards;
}

.conts_btn_top.on button {
    opacity: 0.5;
    width: 50px;
    height: 50px;
    -webkit-transition: opacity 1.0s;
    -moz-transition: opacity 1.0s;
    -ms-transition: opacity 1.0s;
    -o-transition: opacity 1.0s;
    transition: opacity 1.0s;
}

.conts_btn_top.on:hover button {
    opacity: 1;
}