@charset "utf-8";


.sec_title h2 {
    margin-bottom: 5px;
}

#sec-1 .wrap .sub_body {
    width: 100%;
    line-height: 1.5;
    text-align: center;
    box-sizing: border-box;
    padding: 30px 20px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-weight: 600;
}
#sec-1 .wrap .sub_body p{
    width: 70%;
    margin: 0 auto;
}

/* official shop */
.offi_shop {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-top: 5rem;
}

.offi_shop>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 30px 5rem 0;
    background: #fff;
    border: 1px solid #F25656;
    border-radius: var(--bdrs);
    gap: 13rem;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    transition: .3s var(--trans);
}



.offi_shop .content {
    display: flex;
    width: 350px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-left: 30px;
    margin-bottom: 25px;
}

.offi_shop .content h2 {
    font-family: 'paperlogy-M';
}

.offi_shop .content .body {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    font-family: 'paperlogy-M';
}

.offi_shop .pluszone {
    margin-right: auto;
    cursor: pointer;
}

.offi_shop .plusyou {
    margin-left: auto;
    border: 1px solid #FF3c5b;
}


/* sec 2 */
.shoppingmall {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2.5rem;
}

.shoppingmall .content {
    font-family: 'paperlogy-M';
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
    border-radius: var(--bdrs);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 1rem;
    box-sizing: border-box;
    padding: 3rem;
    width: 33%;
    transition: .3s var(--trans);
}


.shoppingmall .content .top {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shoppingmall .content .top ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.shoppingmall .content .top .move_btn {
    display: flex;
    align-items: center;
    margin-top: 10px;
    color: #ff3c5b;
    width: fit-content;
    position: relative;
    font-family: 'paperlogy-M';
}

.shoppingmall .content .top .move_btn .arrow {
    font-weight: 300 !important;
}

.shoppingmall .content .top .move_btn::before {
    position: absolute;
    content: '';
    width: 92%;
    height: 1px;
    left: 0;
    bottom: -5px;
    background: #ff3c5b;
}

.shoppingmall .content:hover .top .move_btn .arrow {
    animation: LR 1s ease-in-out infinite;
}

.shoppingmall .content:hover {
    border: 1px solid #ff3c5b;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}



.shoppingmall .content .bot {
    text-align: right;
}


.shoppingmall .pm {
    background: url(../img/plusmoon_bg.png) no-repeat center;
    background-size: cover;
}

.shoppingmall .pp {
    background: url(../img/pluspin_bg.png) no-repeat center;
    background-size: cover;
}

.shoppingmall .ma {
    background: url(../img/plusU_bg.png) no-repeat center;
    background-size: cover;
}




@media screen and (max-width:970px) {
    .offi_shop {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .offi_shop>a {
        flex-wrap: wrap;
        width: 48%;
        gap: 4rem;
        justify-content: center;
        padding: 30px 3rem 0;
        width: 360px;
    }

    .offi_shop .pluszone {
        margin-right: 0;
    }

    .offi_shop .plusyou {
        margin-left: 0;
    }

    .offi_shop .content {
        margin: 0;
    }


}

/* max 970 */

@media screen and (max-width:875px) {
    .shoppingmall {
        flex-direction: column;
    }

    .shoppingmall .content {
        width: 100%;
    }

}

/* max 875 */

@media screen and (max-width:499px) {
    #sec-1 .wrap .sub_body p{
        width: 90%;
    }
    .shoppingmall .content {
        padding-bottom: 2rem;
    }

    .shoppingmall .content .bot img {
        max-width: 70%;
    }
}