#gateWrap{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 65px;
    overflow: auto;
}
@media (max-width: 768px) {
    #gateWrap{
        position: relative;
        gap: 0;
        bottom: unset;
        height: auto;
    }
}

#mainlogo{
    display: flex;
    align-items: center;
    justify-content: center;
    mix-blend-mode: darken;
    padding-right: 10px;
    pointer-events: none;
    transition: 1s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(2);
}
#mainlogo img{
    width: 50px;
    height: 50px;
    margin-right: 5px;
}
#mainlogo span{
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}
@media (max-width: 768px) {
    #mainlogo{
        position: fixed;
        top: 30px;
        z-index: 11;
        transform: scale(1.2);
    }
}

.footer{
    color: rgba(0, 0, 0, 0.5);
    font-size: 1rem;
}
@media (max-width: 768px) {
    .footer{
        font-size: 12px;
        padding: 10px 0;
    }
}

#gatepage{
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr; */
    display: flex;
    gap: 43px;
    align-items: center;
    justify-content: center;
    position: relative;
    width: auto;


}
#gatepage > a{
    flex: 1;
    z-index: 2;

    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 380px;
}
#gatepage > a .card{
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;

    width: 100%;
    max-width: 480px;

    background-color: #FFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}
#gatepage > a .card .bg{
    width: 100%;
    aspect-ratio: 5/3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
#gatepage > a .card .bg:after{
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    z-index: 2;
    pointer-events: none;
    background: #37DC6C;
    background: linear-gradient(90deg, rgba(55, 220, 108, 1) 0%, rgba(0, 173, 239, 1) 100%);
}
#gatepage > a .card .body{
    padding: 20px;
    position: relative;
    overflow: hidden;
}
#gatepage > a .card .body:after{
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;
    background-image: url('/assets/icon.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 20%;
    aspect-ratio: 1/1;
    transform: scale(1.98) rotate(0);
    filter: opacity(0.3);
    
}
#gatepage > a .card .body > div:nth-child(1){
    display: flex;
    align-items: flex-end;
    gap: 10px;
    line-height: 1;
}
#gatepage > a .card .body > div:nth-child(1) > big{
    font-size: 1.5em;
    font-weight: bold;
    color: #000;
}
#gatepage > a .card .body > div:nth-child(1) > span{
    font-size: 1rem;
    font-weight: normal;
    color: #999;
}
#gatepage > a .card .body > div:nth-child(2){
    margin-top: 13px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.4em;
    margin-bottom: 8px;
}
#gatepage > a .card .body > div:nth-child(2) > b > span{
    width: 1.3em;
    height: 1.3em;
    margin-right: 0.4em;
    display: inline-flex;
    vertical-align: middle;
    border-radius: 50%;
    border: 0.13em solid;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: #FFF;
    font-weight: 900;
}
#gatepage > a .card .body > div.btn_wrap{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
#gatepage > a .card .body > div.btn_wrap > span{
    font-weight: 400;
    color: #777;
}


/* pc */
@media (min-width: 769px) {
    #gatepage > a:hover > .bg:before{
        opacity: 0.7;
    }
    #gatepage > a:hover .arrow {
        animation: wobble 2s ease 1;
    }
    @keyframes wobble {
        0% { transform: translateX(0%); }
        15% { transform: translateX(-25%) rotate(-5deg); }
        30% { transform: translateX(20%) rotate(3deg); }
        45% { transform: translateX(-15%) rotate(-3deg); }
        60% { transform: translateX(10%) rotate(2deg); }
        75% { transform: translateX(-5%) rotate(-1deg); }
        100% { transform: translateX(0%); }
    }

}

/* mobile */
@media (max-width: 768px) {
    #gatepage{
        display: grid;
        grid-template-columns: 1fr;
        font-size: 12px;
        overflow: visible;
        top: 0;
        padding-top: 110px;
        padding-bottom: 40px;
        width: 100%;
        gap: 40px;
    }
    #gatepage::before{
        content: '';
        position: fixed;
        z-index: 3;
        top: 0;
        left: 0;
        width: 100%;
        height: 180px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
        pointer-events: none;
    }
    #gatepage > a{
        width: auto;
        min-width: 320px;
        min-height: 0;
        display: inline-flex;
        height: auto;
        padding: 0 30px 0;
    }

    #gatepage > a .card{
        width: 100%;
    }
    #gatepage > a .card .body > div:nth-child(1){
    }
    #gatepage > a .card .body > div:nth-child(2){
        font-size: 14px;
    }
    #gatepage > a .card .body > div:nth-child(2) > b > span{
    }
    #gatepage > a .card .body > div.btn_wrap{
        margin-top: -10px;
    }
    #gatepage > a .card .body > div.btn_wrap > span{
        /* opacity: 0; */
    }
    #gatepage > a .arrow {
        transform: translate(13px, 14px);
    }
    #gatepage > a .card .bg{
        /* aspect-ratio: 5/3; */

        width: 100%;
        height: 190px;
    }
    
}




