* {
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    border-bottom: 1px solid transparent;
}

@media (max-width: 768px) {
    .hedaer {
        justify-content: space-between;
        box-shadow: 0 0 10px #c4c4c4;
    }
}


.header.on {
    box-shadow: 0 0 16px #d6d6d6;
}

.header .m_btn {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(0, -50%);
    color: #222;
    z-index: 1000;

    font-size: 26px;
    font-weight: 500;
    border-radius: 10px;

    cursor: pointer;
}

@media (max-width: 768px) {
    .header .m_btn {
        display: block;
    }
}


.header .h_top {
    background: #222;
}

.header.on .h_top {
    display: none;
}

@media (max-width: 768px) {
    .header .h_top {
        display: none;
    }

    .header.on .h_top {
        display: none;
    }
}

.header .h_top .inner {
   position: relative;
}

.header .h_top a {
    display: block;
    padding: 10px 0;
    text-align: right;
}

.header .h_top img {
    height: 20px;
    padding: 3px 0;
}

.header .h_bottom {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

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

@media (max-width: 768px) {
    .header .h_bottom  {
        padding: 0;
        z-index: 999;
        position: relative;
    }

    .header .h_bottom .inner {
        justify-content: flex-end;
        padding: 0 20px;
        z-index: 999;
    }
    
    .header .h_bottom h1 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 999;
    }
}

.header .h_bottom .gnb ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header .h_bottom .gnb ul>li {
    font-size: 16px;
    font-weight: 400;
    color: #222;

    cursor: pointer;
}

.header .h_bottom .gnb ul>li figure {
    display: none;
    width: 24px;
    text-align: center;
    margin: 0 30px 0 0;
}

@media (max-width: 768px) {
    .header .h_bottom .gnb ul>li figure {
        display: inline-block;
        height: 30px;
        transition: 0.3s;
    }

    .header .h_bottom .gnb ul>li figure.on {
        height: 30px;
    }

    .header .h_bottom .gnb ul>li figure.on img{
        display: none;
    }

    .header .h_bottom .gnb ul>li .icon01 {
        background: url(../imges/game_icon.png)no-repeat center center/contain;
    }

    .header .h_bottom .gnb ul>li .icon01.on {
        background: url(../imges/Bgame_icon.png)no-repeat center center/contain;
    }

    .header .h_bottom .gnb ul>li .icon02 {
        background: url(../imges/hard_icon.png)no-repeat center center/contain;
    }

    .header .h_bottom .gnb ul>li .icon02.on {
        background: url(../imges/Bhard_icon.png)no-repeat center center/contain;
    }

    .header .h_bottom .gnb ul>li .icon03 {
        background: url(../imges/service_icon.png)no-repeat center center/contain;
    }

    .header .h_bottom .gnb ul>li .icon03.on {
        background: url(../imges/Bservice_icon.png)no-repeat center center/contain;
    }

    .header .h_bottom .gnb ul>li .icon04 {
        background: url(../imges/news_icon.png)no-repeat center center/contain;
        height: 18px;
    }

    .header .h_bottom .gnb ul>li .icon04.on {
        background: url(../imges/Bnews_icon.png)no-repeat center center/contain;
        height: 18px;
    }

    .header .h_bottom .gnb ul>li .icon05 {
        background: url(../imges/buy_icon.png)no-repeat center center/contain;
        height: 24px;
    }

    .header .h_bottom .gnb ul>li .icon05.on {
        background: url(../imges/Bbuy_icon.png)no-repeat center center/contain;
        height: 24px;
    }

    .header .h_bottom .gnb ul>li .icon06 {
        background: url(../imges/cus_icon.png)no-repeat center center/contain;
        height: 20px;
    }

    .header .h_bottom .gnb ul>li .icon06.on {
        background: url(../imges/Bcus_icon.png)no-repeat center center/contain;
        height: 20px;
    }

}

.header .h_bottom .gnb ul>li:hover {
    color: #0070cc;
}

.header .h_bottom .gnb ul>li i {
    line-height: 2px;
}

.header .h_bottom .gnb ul>li .right {
    display: none;
    color: #8c8c8c8c;
}

@media (max-width: 768px) {
    .header .h_bottom .gnb{
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;

        background: #fff;
        z-index: 998;

        display: none;
        padding: 61px 0 0 0;
    }

    .header .h_bottom .gnb.on {
        display: block;
    }


    .header .h_bottom .gnb ul{
        padding: 10px 0 0 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .header .h_bottom .gnb ul::before {
        content: "";
        position: absolute;
        top: 61px;
        left: 50%;
        transform: translate(-50%, 0);
        width: 100%;
        height: 1px;
        background: #eee;
        z-index: 999;
    }

    .header .h_bottom .gnb ul>li {
        width: 100%;
        font-size: 14px;
        font-weight: 400;
        padding: 20px 30px;
    }

    .header .h_bottom .gnb ul>li>a {
        display: flex;
        align-items: center;
        width: 100%;
        line-height: 30px;
    }

    
    .header .h_bottom .gnb ul>li .down {
        display: none;
    }

    .header .h_bottom .gnb ul>li .right {
        display: inline-block;
        margin: 0 0 0 auto;
    }

}

.header .h_bottom .lnb {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 998;
    width: 100%;
    background: #fff;
    display: none;
    border-top: 1px solid #eee;
}

.header.on .h_bottom .lnb {
    top: 58px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.header .h_bottom .lnb.on {
    display: block;
}

.header .h_bottom .lnb .top {
    display: flex;
    justify-content: center;
    gap: 100px;
    padding: 32px 0;
    border-bottom: 1px solid #eee;
    margin: 0 auto;
    width: 100%;
    height: auto;
}

.header .h_bottom .lnb .top a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header .h_bottom .lnb .top a img {
    margin: 0 0 12px 0;
}

.header .h_bottom .lnb .top li a span {
    display: block;
    font-size: 16px;
    font-weight: 400;
}

.header .h_bottom .lnb .bottom {
    justify-content: center;
    padding: 32px 0;
    gap: 50px;
}

.header .h_bottom .lnb .bottom li {
    position: relative;
}

.header .h_bottom .lnb .bottom li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translate(0, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0070cc;
}

@media (max-width: 768px) {
    .header .h_bottom .lnb{
        top: 61px;
        transform: translate(0, -0);
        left: 110%;
        height: 100vh;
        width: 80%;
        background: #fff;
        box-shadow: -1px 10px 8px #e7e7e7;
        border-top: none;
        overflow: hidden;
        transition: 0.5s;
    }

    .header .h_bottom .lnb.on {
        left: 20%;
    }

    .header .h_bottom .lnb .top {
        display: grid;
        grid-template-columns: repeat(2, 3fr);
        column-gap: 30px;
        row-gap: 0;
        padding: 20px 0;
        border-bottom: none;
        position: relative;
    }

    .header .h_bottom .lnb ul::before {
        display: none;
    }

    .header .h_bottom .lnb .top::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
        width: 80%;
        height: 1px;
        background: #eee;
    }

    .header .h_bottom .lnb .top>li {
        padding: 16px 0;
    }

    .header .h_bottom .lnb .top>li a {
        flex-direction: column;
        width: auto;
        line-height: 16px;
    }

    .header .h_bottom .lnb .top a img {
        width: 40%;
        padding: 0 5px;
    }

    .header .h_bottom .lnb .top>li>a span {
        font-size: 14px;
    }

    .header .h_bottom .lnb .bottom {
        gap: 16px;
        padding: 36px 50px 0 60px;
    }

    .header .h_bottom .lnb .bottom li {
        padding: 0;
    }

    .header .h_bottom .lnb .bottom li::before {
        width: 6px;
        height: 6px;
    }

    .header .h_bottom .lnb .bottom li>a {
        line-height: 14px;
    }
}

.header .h_bottom .customer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .h_bottom .customer strong {
    background: #0070cc;
    padding: 10px 25px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.header .h_bottom .customer input {
    border: 1px solid #ddd;
    border-radius: 50px;
    width: 150px;
    height: 34px;
    text-align: center;
}

@media (max-width: 768px) {
    .header .h_bottom .customer {
        justify-content: flex-end;
        padding: 20px 0;
    }

    .header .h_bottom .customer strong {
        position: absolute;
        top: 50%;
        left: 65px;
        transform: translate(0, -50%);
        padding: 8px 18px;
        font-size: 12px;
        border-radius: 6px;
        z-index: 999;
    }
    
    .header .h_bottom .customer input {
        display: none;
    }
}

.header .h_bottom .customer input:focus {
    outline: none;
}

.header .h_bottom .customer::placeholder {
    font-size: 12px;
    font-weight: 300;
    text-align: center;
}

.header .h_bottom .customer span {
    cursor: pointer;
}

@media (max-width: 768px) {
    .header .h_bottom .customer span {
        z-index: 999;
    }
}

.header .h_bottom .customer i {
    font-size: 20px;
}

.main_game {
    padding: 100px 0 0 0;
    position: relative;
}

.main_game .itm {
    height: calc(100vh - 250px);
    position: relative;
}

.main_game .itm01 {
    background: url(../imges/ms_ffxiv.webp)no-repeat center center/cover;
}
.main_game .itm02 {
    background: url(../imges/ms_street.webp)no-repeat center center/cover;
}
.main_game .itm03 {
    background: url(../imges/ms_sy.webp)no-repeat center center/cover;
}
.main_game .itm04 {
    background: url(../imges/ms_avatar.webp)no-repeat center center/cover;
}
.main_game .itm05 {
    background: url(../imges/ms_season04.webp)no-repeat center center/cover;
}
.main_game .itm06 {
    background: url(../imges/ms_battle.webp)no-repeat center center/cover;
}

@media (max-width: 768px) {
    .main_game {
        padding: 61px 0 0 0;
    }

    
    .main_game .itm {
        position: relative;
        height: 500px;
        background: #111;
    }


    .main_game .itm01 .bg_box {
        background: 
        linear-gradient(to top, #111 1%, transparent 50%),
        url(../imges/ms_ffxiv.webp)no-repeat 90% center/cover;
        height: 250px;
    }
    .main_game .itm02 .bg_box {
        background: 
        linear-gradient(to top, #111 1%, transparent 50%),
        url(../imges/ms_street.webp)no-repeat 90% center/cover;
        height: 250px;
    }
    .main_game .itm03 .bg_box {
        background: 
        linear-gradient(to top, #111 1%, transparent 50%),
        url(../imges/ms_sy.webp)no-repeat 90% center/cover;
        height: 250px;
    }
    .main_game .itm04 .bg_box {
        background: 
        linear-gradient(to top, #111 1%, transparent 50%),
        url(../imges/ms_avatar.webp)no-repeat 90% center/cover;
        height: 250px;
    }
    .main_game .itm05 .bg_box {
        background: 
        linear-gradient(to top, #111 1%, transparent 50%),
        url(../imges/ms_season04.webp)no-repeat 90% center/cover;
        height: 250px;
    }
    .main_game .itm06 .bg_box {
        background: 
        linear-gradient(to top, #111 1%, transparent 50%),
        url(../imges/ms_battle.webp)no-repeat 90% center/cover;
        height: 250px;
    }
}

.main_game .itm .itm_box {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main_game .itm figure {
    margin: 0 0 30px 0;
}

.main_game .itm figure img {
    height: 100px;
}

.main_game .itm .txt img {
    height: 150px;
    margin: 0 0 20px 0;
}

.main_game .itm .txt strong {
    display: inline-block;
    font-size: 70px;
    font-weight: 500;
    letter-spacing: 25px;
    color: #fff;
    margin: 0 0 30px 0;
    width: auto;

    position: relative;
}

.main_game .itm .txt strong::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);

    width: calc(100% - 20px);
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.main_game .itm03 .txt strong::after {
    content: "\ebb1";
    font-family: xeicon;
    position: absolute;
    top: -10px;
    right: -30px;
    transform: translate(0, 0);

    font-size: 14px;
    font-weight: 300;
    color: #fff;
    z-index: 999;
}

.main_game .itm .txt h2 {
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    margin: 0 0 15px 0;

    text-shadow: 0 0 5px #7c7c7c;
}

.main_game .itm .txt p {
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    color: #fff;
    margin: 0 0 80px 0;

    text-shadow: 0 0 5px #7c7c7c;
}

.main_game .itm .txt span {
    font-size: 14px;
    font-weight: 400;
    color: #222;
    padding: 10px 25px;
    background: #fff;
    border-radius: 50px;
}

@media(max-width: 768px) {
    .main_game .itm .itm_box {
        height: 60%;
        padding: 30px 20px 0 20px;
        top: 50%;
        transform: translate(-50%, 0);
    }

    .main_game .itm02 .itm_box {
        top: 45%;
    }

    .main_game .itm04 .itm_box {
        top: 42%;
    }

    .main_game .itm05 .itm_box {
        top: 38%;
    }

    .main_game .itm06 .itm_box {
        top: 50%;
    }

    .main_game .itm .itm_box figure {
        transform: translate(0, 0);
        height: 50px;
        margin: 0 0 10px 0;
    }

    .main_game .itm .itm_box figure img {
        display: none;
    }

    .main_game .itm01 .itm_box figure{
        background: url(../imges/ms_ffxiv_logo.webp)no-repeat center center/contain;
        height: 30%;
    }
    .main_game .itm02 .itm_box figure{
        background: url(../imges/ms_street_logo.webp)no-repeat center center/contain;
        height: 30%;
    }

    .main_game .itm04 .itm_box figure{
        background: url(../imges/ms_avatar_logo.webp)no-repeat center center/cover;
        height: 40%;
    }
    .main_game .itm05 .itm_box figure{
        background: url(../imges/ms_season04_logo.png)no-repeat center center/contain;
        height: 50%;
    }
    .main_game .itm06 .itm_box figure{
        background: url(../imges/ms_battle_logo.webp)no-repeat center center/contain;
        height: 25%;
    }

    .main_game .itm .txt {
        margin: 0 auto;
        text-align: center;
    }

    .main_game .itm .txt strong {
        font-size: 30px;
        font-weight: 500;
        letter-spacing: 20px;
    }

    .main_game .itm .txt h2 {
        font-size: 20px;
        font-weight: 500;
        margin: 0 0 15px 0;
    }

    .main_game .itm .txt p {
        font-size: 12px;
        font-weight: 300;
        line-height: 16px;
        margin: 0 0 20px 0;
    }

    .main_game .itm .txt span {
        font-size: 8px;
        padding: 5px 15px;
    }
}

.main_game .scroll {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #fff;

    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 0);

    text-shadow:0 0 5px #7c7c7c;
}

.main_game .scroll .mouse {
    font-size: 26px;
    font-weight: 300;
    margin: 0 0 8px 0;
}

.main_game .scroll span {
    font-size: 10px;
    font-weight: 300;
    /* margin: 0 0 5px 0; */
}

@media (max-width: 768px) {
    .main_game .scroll {
        display: none;
    }
}

.main_gameban .g_con>li {
    padding: 10px 0 0 0;
    cursor: pointer;
    height: 100px;
    margin: 10px;

}

.main_gameban .g_con .con {
    padding: 10px;
    height: 150px;
}

.main_gameban .g_con>li img {
    height: 100%;
    border-radius: 10px;
}

.main_gameban .g_con .slick-slide img {
    width: 100%;
    height: 100%;
    border-radius: 25px;

    cursor: pointer;
}

@media (max-width: 768px) {
    .main_gameban .inner {
        padding: 0;
    }

    .main_gameban .g_con .slick-slide img {
        height: 65%;
    }

    .main_gameban .g_con .slick-slide img {
        border-radius: 10px;
    }

    .main_gameban .g_con .con {
        height: auto;
    }
}

.main_product {
    padding: 100px 0;
}

.main_product .itm {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 0 0 50px 0;
    height: 100%;
}

.main_product .itm .txt{
    margin: auto 0;
    grid-column: 1/3;
}

.main_product .itm .txt h2 {
    font-size: 35px;
    font-weight: 500;
    color: #222;
    margin: 0 0 10px 0;
}

.main_product .itm .txt p {
    font-size: 14px;
    font-weight: 400;
    color: #555;
    margin: 0 0 70px 0;
}

.main_product .itm .txt a {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    padding: 10px 25px;
    background: #0070cc;
    border-radius: 25px;
}

.main_product .itm .img_b{
    grid-column: 3/6;
    height: 500px;
}

.main_product .itm01 .img_b {
    background: url(../imges/mp_01.webp)no-repeat center center/cover;
    height: 500px;
}
.main_product .itm02 .img_b {
    background: url(../imges/mp_02.webp)no-repeat center center/contain;
    height: 500px;
}
.main_product .itm03 .img_b {
    background: url(../imges/mp_03.webp)no-repeat center center/contain;
    height: 500px;
}
.main_product .itm04 .img_b {
    background: url(../imges/mp_04.webp)no-repeat center center/cover;
    height: 500px;
}
.main_product .itm05 .img_b {
    background: url(../imges/mp_05.webp)no-repeat center center/cover;
    height: 500px;
}
.main_product .itm06 .img_b {
    background: url(../imges/mp_06.webp)no-repeat center center/cover;
    height: 500px;
}
.main_product .itm07 .img_b {
    background: url(../imges/mp_07.webp)no-repeat center center/cover;
    height: 500px;
}

.main_product .itm img {
    height: 100%;
    width: 700px;
}

@media (max-width: 768px) {
    .main_product {
        padding: 30px 0;
    }

    .main_product .inner {
        padding: 0;
    }

    .main_product .p_slide {
        padding: 0 20px;
    }

    .main_product .itm {
        grid-template-columns: repeat(1, 5fr);
        margin: 0 0 8px 0;
    }

    .main_product .itm .txt {
        grid-column: 1/2;
        grid-row: 2/6;
        text-align: center;
        min-height: 140px;
    }

    .main_product .itm .txt h2 {
        font-size: 24px;
        font-weight: 700;
    }

    .main_product .itm .txt p {
        font-size: 13px;
        margin: 0 0 20px 0;
        word-break: break-all;
    }

    .main_product .itm .txt span a{
        font-size: 12px;
        padding: 10px 20px;
    }

    .main_product .itm .img_b{
        grid-column: 1/2;
        grid-row: 1/2;
        height: 300px;
    }

    .main_product .itm01 .img_b {
        background: url(../imges/mp_01.webp)no-repeat center center/cover;
        height: 300px;
    }
    .main_product .itm02 .img_b {
        background: url(../imges/mp_02.webp)no-repeat center center/contain;
        height: 300px;
    }
    .main_product .itm03 .img_b {
        background: url(../imges/mp_03.webp)no-repeat center center/contain;
        height: 300px;
    }
    .main_product .itm04 .img_b {
        background: url(../imges/mp_04.webp)no-repeat center center/contain;
        height: 300px;
    }
    .main_product .itm05 .img_b {
        background: url(../imges/mp_05.webp)no-repeat center center/contain;
        height: 300px;
    }
    .main_product .itm06 .img_b {
        background: url(../imges/mp_06.webp)no-repeat center center/cover;
        height: 300px;
    }
    .main_product .itm07 .img_b {
        background: url(../imges/mp_07.webp)no-repeat center center/contain;
        height: 300px;
    }

}

.main_product .p_bottom .btn {
    cursor: pointer;
    padding: 0 20px;
}

.main_product .p_bottom .btn .img {
    height: 100px;
    margin: 0 0 20px 0;
}

.main_product .btn .img {
    width: 100%;
    margin: 0 50px;
    text-align: center;
}

.main_product .p_bottom .itm01 .img {
    background: url(../imges/mp_01.webp)no-repeat center center/contain;
    height: 100px;
}
.main_product .p_bottom .itm02 .img {
    background: url(../imges/mp_02.webp)no-repeat center center/contain;
    height: 100px;
}
.main_product .p_bottom .itm03 .img {
    background: url(../imges/mp_03.webp)no-repeat center center/contain;
    height: 100px;
}
.main_product .p_bottom .itm04 .img {
    background: url(../imges/mp_04.webp)no-repeat center center/contain;
    height: 100px;
}
.main_product .p_bottom .itm05 .img {
    background: url(../imges/mp_05.webp)no-repeat center center/contain;
    height: 100px;
}
.main_product .p_bottom .itm06 .img {
    background: url(../imges/mp_06.webp)no-repeat center center/contain;
    height: 100px;
}
.main_product .p_bottom .itm07 .img {
    background: url(../imges/mp_07.webp)no-repeat center center/contain;
    height: 100px;
}

.main_product .p_bottom .btn span {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    color: #222;
}

@media (max-width: 768px) {
    .main_product .p_bottom .btn .img {
        margin: 0;
    }

    .main_product .p_bottom .btn span {
        font-size: 12px;
        font-weight: 400;
        color: #666;
    }
}

.main_product 

.main_news {
    padding: 100px 0;
}

.main_news .news {
    min-height: 300px;
}

.main_news .news01 {
    background: url(../imges/mn01_bg.webp)no-repeat center center/cover;
}
.main_news .news02 {
    background: url(../imges/mn02_bg.webp)no-repeat center center/cover;
}
.main_news .news03 {
    background: url(../imges/mn_03.webp)no-repeat center center/cover;
}
.main_news .news04 {
    background: url(../imges/mn_04.webp)no-repeat top center/cover;
    height: 700px;
}

@media (max-width: 768px) {
    .main_news .news01 {
        background: url(../imges/mn01_bg.webp)no-repeat top 50%/cover;
    }
    .main_news .news02 {
        background: #1753C6;
    }
    .main_news .news03 {
        /* background: url(../imges/mn_03.webp)no-repeat 70% center/cover; */
        background: #252550;
        position: relative;
    }
    .main_news .news04 {
        /* background: url(../imges/mn_04.webp)no-repeat 75% center/cover; */
        background: #000;
        height: 700px;
    }
}

.main_news .news01 {
    padding: 50px 0;
}

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

.main_news .news01 .txt h2 img {
    height: 150px;
}

.main_news .news01 .txt p {
    font-size: 16px;
    font-weight: 400;
    color: #222;
    margin: 0 0 50px 0;
}

.main_news .news01 .txt span {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    padding: 10px 25px;
    background: #0070cc;
    border-radius: 25px;
}

.main_news .news01 img {
    height: 400px;
    padding: 30px 0;
}

@media (max-width: 768px) {
    .main_news .news01 .inner {
        position: relative;
    }

    .main_news .news01 .txt p {
        font-size: 13px;
        margin: 0;
    }

    .main_news .news01 img {
        padding: 0;
        height: auto;
        margin: 0 0 60px 0;
    }

    .main_news .news01 .txt {
        margin: 0;
    }

    .main_news .news01 .txt h2 img {
        width: 90%;
        height: auto;
        margin: 0 0 12px 0;
    }

    .main_news .news01 .txt span {
        font-size: 12px;
        position: absolute;
        top: 94%;
        left: 50%;
        transform: translate(-50%, 0);
    }
}

.main_news .news02 {
    padding: 200px 0;
}

.main_news .news02 .txt h2 {
    font-size: 50px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 30px 0;
}

.main_news .news02 .txt p {
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    color: #fff;
}

@media (max-width: 768px) {
    .main_news .news02 {
        position: relative;
    }

    .main_news .news02 .bg_box {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
        width: 100%;
        height: 50%;
        background: url(../imges/mn02_bg.webp)no-repeat 100% center/cover;
    }

    .main_news .news02 .inner {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
        height: 100%;
        background: linear-gradient(to top, #1753C6 50%, transparent 100%);
    }

    .main_news .news02 .txt {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
        height: 40%;
    }

    .main_news .news02 .txt h2 {
        font-size: 40px;
        white-space: nowrap;
        margin: 0 0 16px 0;
    }

    .main_news .news02 .txt p {
        font-size: 12px;
        line-height: 20px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.8);
        word-break: keep-all;
    }
}

.main_news .news03 {
    padding: 100px 0 150px 0;
}

.main_news .news03 .txt h2 {
    font-size: 50px;
    font-weight: 300;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 60px;
}


.main_news .news03 .txt h2 strong {
    font-weight: 500;
}

.main_news .news03 .txt p {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    margin: 0 0 50px 0;
}

.main_news .news03 .txt span {
    display: block;
    margin: 0 0 50px 0;
}

.main_news .news03 .txt span a{
    font-size: 14px;
    font-weight: 400;
    color: #222;
    background: #fff;
    border-radius: 50px;
    padding: 10px 25px;
}

.main_news .news03 .news_img {
    height: 100%;
}

.main_news .news03 .news_img .img img{
    min-height: 220px;
    height: 100%;
    border-radius: 25px;
    margin: 0 0 20px 0;
    padding: 0 10px;
    width: 100%;
}

.main_news .news03 .news_img .img span {
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    text-align: center;
    line-height: 24px;
}

@media (max-width: 768px) {
    .main_news .news03 {
        position: relative;
        padding: 300px 0;
    }

    .main_news .news03 .inner {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
        height: 60%;
        padding: 0;
        z-index: 998;
    }

    .main_news .news03 .bg_box {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
        width: 100%;
        height: 45%;
        background: url(../imges/mn_03.webp)no-repeat 70% center/cover;
    }

    .main_news .news03 .txt {
        text-align: center;
        margin: 0 0 18px 0;
    }

    .main_news .news03 .txt h2 {
        font-size: 14px;
        line-height: 26px;
        margin: 0 0 12px 0;
    }

    .main_news .news03 .txt h2 strong {
        font-size: 26px;
        font-weight: 700;
    }

    .main_news .news03 .txt p {
        font-size: 12px;
        width: 80%;
        margin: 0 auto;
    }

    .main_news .news03 .txt span {
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .main_news .news03 .txt span a {
        font-size: 12px;
        padding: 8px 18px;
    }

    .main_news .news03 .news_img {
        height: auto;
    }

    .main_news .news03 .news_img .img {
        text-align: center;
    }

    .main_news .news03 .news_img .img span {
        font-size: 12px;
        font-weight: 400;
        line-height: 16px;
        color: rgba(255, 255, 255, 0.9);
        padding: 0 10px;
        word-break: keep-all;
    }

    .main_news .news03 .news_img .img img{
        min-height: 100px;
        max-height: 100px;
        margin: 0 auto 12px auto;
        border-radius: 10% 10% 10% 10%/15% 15% 15% 15%;
    }
}

.main_news .news04 {
    position: relative;
}

.main_news .news04 .inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;

    max-width: 1200px;
    width: 100%;
    padding: 0 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main_news .news04 .txt {
    position: relative;
}

.main_news .news04 .txt img {
    height: 120px;
    margin: 0 0 30px 0;
}

.main_news .news04 .txt h2{
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 10px 0;
}

.main_news .news04 .txt p {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    margin: 0 0 50px 0;
}

.main_news .news04 .txt span {
    font-size: 14px;
    font-weight: 400;
    color: #222;
    background: #fff;
    border-radius: 50px;
    padding: 10px 25px;
}

@media (max-width: 768px) {
    .main_news .news04 .bg_box{
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
        width: 100%;
        height: 50%;
        background: url(../imges/mn_04.webp) no-repeat 80% center/cover;
    }

    .main_news .news04 .inner {
        position: static;
        transform: translate(0, 0);
        height: 100%;
        background: linear-gradient(to top, #000 50%, transparent 80%);
    }

    .main_news .news04 .txt {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
        width: 100%;
        height: 43.5%;
        text-align: center;
    }

    .main_news .news04 .txt img {
        height: auto;
        width: 80%;
        
    }

    .main_news .news04 .txt h2 {
        font-size: 26px;
    }

    .main_news .news04 .txt p {
        font-size: 11px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.7);
        width: 90%;
        word-break: keep-all;
        margin: 0 auto 24px auto;
    }

    .main_news .news04 .txt span {
        font-size: 12px;
        padding: 8px 18px;
    }
}

.main_launch {
    padding: 100px 0;
    background: #121314;
}

.main_launch .inner {
    position: relative;
}

.main_launch .l_slide .tit h2 {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 10px 0;
}

.main_launch .l_slide .tit p {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
}

.main_launch .game_box {
    display: grid;
    grid-template-columns: repeat(6, 2fr);
    gap: 50px;
    padding: 50px 0;
}

.main_launch .game_box .game figure {
    width: 100%;
    height: 85%;
}

.main_launch .game_box .game figure img {
    height: 100%;
    width: 100%;
    border-radius: 25px;
    margin: 0 0 20px 0;
    transition: 0.3s;
}

.main_launch .game_box .game:hover figure img {
    transform: scale(1.02);
}

.main_launch .game_box .game figure figcaption {
   text-align: center;
   color: #fff;
   font-size: 16px;
   font-weight: 300;
   height: 15px;
   display: -webkit-box;
   -webkit-line-clamp: 1;
   -webkit-box-orient: vertical;
   overflow: hidden;
}

.main_launch .l_btn {
    position: absolute;
    top: 0;
    right: 15px;
    z-index: 999;

    display: flex;
    gap: 15px;
}

.main_launch .l_btn i {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    padding: 15px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

@media (max-width: 768px) {
    .main_launch {
        padding: 50px 0;
    }

    .main_launch .inner {
        padding: 0 20px;
    }

    .main_launch .l_slide .tit {
        margin: 0 0 24px 0;
    }
    
    .main_launch .l_slide .tit h2 {
        font-size: 30px;
    }

    .main_launch .l_slide .tit p {
        font-size: 12px;
        font-weight: 400;
    }

    .main_launch .game_box {
        display: grid;
        grid-template-columns: repeat(3, 4fr);
        gap: 16px;
        padding: 0;
    }

    .main_launch .game_box .game figure img {
        border-radius: 10px;
        margin: 0 0 5px 0;
    }

    .main_launch .game_box .game figure figcaption {
        font-size: 12px;
        font-weight: 400;
        height: 11px;
    }

    .main_launch .l_btn {
        top: -1%;
    }

    .main_launch .l_btn i {
        font-size: 12px;
    }
}

.main_look {
    padding: 100px 0;
}

.main_look .l_inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 15px;
}

.main_look .tit {
    text-align: center;
    margin: 0 0 50px 0;
}

.main_look .tit h2 {
    font-size: 50px;
    font-weight: 500;
    color: #222;
    margin: 0 0 20px 0;
}

.main_look .tit p {
    font-size: 15px;
    font-weight: 300;
    color: #222;
}

@media (max-width: 768px) {
    .main_look {
        padding: 50px 0;
    }

    .main_look .l_inner {
        padding: 0;
    }

    .main_look .tit {
        margin: 0 0 32px 0;
        padding: 0 20px;
    }

    .main_look .tit h2 {
        font-size: 30px;
        font-weight: 700;
    }

    .main_look .tit p {
        font-size: 12px;
        font-weight: 400;
        color: #666;
    }
}

.main_look .look .itm {
    width: 100%;
}

.main_look .look .look01 figure {
    background: url(../imges/mla_01.webp)no-repeat center center/contain;
    height: 200px;
}
.main_look .look .look02 figure {
    background: url(../imges/mla_02.webp)no-repeat center center/contain;
    height: 200px;
}
.main_look .look .look03 figure {
    background: url(../imges/mla_03.webp)no-repeat center center/contain;
    height: 200px;
}

@media (max-width: 768px) {
    .main_look .look .itm figure {
        height: 100px;
        margin: 0 0 12px 0;
    }
}

.main_look .look .itm h3 {
    font-size: 26px;
    font-weight: 400;
    color: #222;
    margin: 0 0 10px 0;
    text-align: center;
}

.main_look .look .itm p {
    font-size: 14px;
    font-weight: 300;
    color: #222;
    margin: 0 0 30px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .main_look .look .itm h3 {
        font-size: 16px;
        font-weight: 400;
        margin: 0 0 6px 0;
    }

    .main_look .look .itm p {
        font-size: 12px;
        font-weight: 400;
        color: #666;
        word-break: keep-all;
        margin: 0 0 16px 0;
    }
}

.main_look .look .itm span {
    display: flex;
    justify-content: center;

    position: relative;

    z-index: 998;
}

.main_look .look .itm span a{
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background: #0070cc;
    padding: 10px 25px;
    border-radius: 50px;
}

.main_look .look .itm span a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 110px;
    height: 25px;
    background: transparent;
    border-radius: 50px;
    outline: 2px solid #0070ccbb;

    z-index: 1;

    transition: 0.2s;
}

.main_look .look .itm span a:hover::before {
    content: "";
    width: 125px;
    height: 40px;
}

@media (max-width: 768px) {
    .main_look .look .itm span a {
        font-size: 12px;
        padding: 8px 18px;
    }

    .main_look .look .itm span a::before {
        display: none;
    }
}
  

.main_store {
    padding: 100px 0;
    background: #f9f9f9;
}

.main_store .inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.main_store .txt {
    margin: auto 0;
}

.main_store .txt figure {
   height: 80px;
   margin: 0 0 30px 0;
   background: url(../imges/store_logo.PNG)no-repeat left center/contain;
}

.main_store .txt h2 {
    font-size: 26px;
    font-weight: 400;
    color: #222;
    margin: 0 0 15px 0;
}

.main_store .txt p {
    font-size: 14px;
    font-weight: 300;
    color: #222;
    margin: 0 0 50px 0;
}

.main_store .txt span a{
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    background: #0070cc;
    padding: 10px 25px;
    border-radius: 50px;

    position: relative;
}

.main_store .txt span a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 160px;
    height: 30px;
    background: transparent;
    border-radius: 50px;
    outline: 2px solid #0070ccbb;

    z-index: 1;

    transition: 0.2s;
}

.main_store .txt span a:hover::before {
    content: "";
    width: 170px;
    height: 45px;
}

.main_store figure img{
    border-radius: 50px;
}

@media (max-width: 768px) {
    .main_store {
        padding: 50px 0;
    }

    .main_store .inner {
        grid-template-columns: repeat(1, 2fr);
        gap: 16px;
        padding: 0 20px;
    }

    .main_store .txt {
        text-align: center;
    }

    .main_store .txt h2 {
        font-size: 20px;
        margin: 0 0 5px 0;
        font-weight: 500;
    }

    .main_store .txt p {
        margin: 0 0 20px 0;
        font-size: 12px;
        font-weight: 400;
        color: #666;
    }

    .main_store .txt span {
        margin: 0 0 20px 0;
    }

    .main_store .txt span a {
        font-size: 12px;
        font-weight: 400;
        padding: 8px 20px;
    }

    .main_store .txt span a::before {
        display: none;
    }

    .main_store .txt figure {
        width: 80%;
        height: 70px;
        margin: 0 auto 16px auto;
    }

    .main_store figure {
        grid-column: 1/2;
        grid-row: 1/2;
    }

    .main_store figure img {
        border-radius: 15px;
    }
}

.main_lanews {
    padding: 100px 0;
    position: relative;
}

.main_lanews h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    color: #222;
    margin: 0 0 50px 0;
}

.main_lanews .ln_slide .slick-dots {
    display: flex;
    justify-content: center;
    gap: 0;
    cursor: pointer;
}

.main_lanews .ln_slide .slick-dots>li {
    position: relative;
    /* padding: 20px 0; */
}

.main_lanews .ln_slide .slick-dots>li button {
    width: 20px;
    height: 5px;
    background: #ddd;
    border-radius: 25px;
    overflow: hidden;
    margin: 0 5px;

    border: none;
    outline: none;
    font-size: 0;
}

.main_lanews .ln_slide .slick-dots>li.slick-active button {
    width: 20px;
    height: 5px;
    background: #0070cc;
}

.main_lanews .ln_slide .lanews {
    padding: 15px;
    height: 100%;
}

.main_lanews .ln_slide .lanews .container{
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 0 15px #ddd;
}

.main_lanews .ln_slide .lanews .container img {
    border-radius: 10px;
    margin: 0 0 30px 0;
}

.main_lanews .ln_slide .lanews .container .txt {
    padding: 0 15px;
    margin: 0 0 20px 0;
}

.main_lanews .ln_slide .lanews .container .txt h3 {
    font-size: 20px;
    font-weight: 500;
    color: #222;
    line-height: 25px;
    margin: 0 0 10px 0;

    min-height: 48px;
}

.main_lanews .ln_slide .lanews .container .txt p {
    font-size: 14px;
    font-weight: 300;
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
}

@media (max-width: 768px) {
    .main_lanews {
        padding: 50px 0;
    }

    .main_lanews h2 {
        font-size: 26px;
        margin: 0 0 12px 0;
        padding: 0 20px;
    }

    .main_lanews .ln_slide .lanews .container{
        min-height: 448px;
    }

    .main_lanews .ln_slide .lanews .container {
        padding: 20px;
    }

    .main_lanews .ln_slide .lanews .container img {
        margin: 0 0 20px 0;
    }

    .main_lanews .ln_slide .lanews .container .txt {
        word-break: break-all;
    }

    .main_lanews .ln_slide .lanews .container .txt h3 {
        font-size: 16px;
        line-height: 20px;
    }

    .main_lanews .ln_slide .lanews .container .txt p {
        font-size: 12px;
        font-weight: 400;
        color: #666;
    }

    .main_lanews .ln_slide .lanews .container .people .p_txt span {
        font-size: 12px;
        line-height: 12px;
    }

    .main_lanews .ln_slide .lanews .container .people .p_txt strong {
        font-size: 12px;
    }
}

.main_lanews .ln_slide .lanews .people {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.main_lanews .ln_slide .lanews .people img {
    width: 50px;
    align-items: center;
    margin: 0;
    border-radius: 10px;
}

.main_lanews .ln_slide .lanews .people .p_txt {
    margin: 0 0 0 10px;
}

.main_lanews .ln_slide .lanews .people .p_txt span {
    font-size: 14px;
    font-weight: 300;
    color: #222;
    line-height: 18px;
}

.main_lanews .ln_slide .lanews .people .p_txt strong {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: #222;
}

.main_lanews .ln_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    max-width: 1680px;
    width: 100%;
    z-index: 998;
    text-align: center;

    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.main_lanews .ln_btn i {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: #0070cc;
    padding: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .main_lanews .ln_btn {
        padding: 0 20px;
    }

    .main_lanews .ln_btn i {
        font-size: 12px;
        padding: 14px;
    }
}

.main_media {
    padding: 50px 0;
    background: #f5f7fa;
}

.main_media .sns {
    text-align: center;
}

.main_media .sns h2 {
    font-size: 20px;
    font-weight: 400;
    color: #222;
    margin: 0 0 30px 0;
}

.main_media .sns ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.main_media .sns ul>li i {
    font-size: 30px;
    font-weight: 500;
    padding: 20px;
    border-radius: 10px;
}

.main_media .sns ul>li .kt {
    background: #ffeb34;
}

.main_media .sns ul>li .fa {
    background: #00439c;
    color: #fff;
}

.main_media .sns ul>li .is {
    background: #e42b53;
    color: #fff;
}

.main_media .sns ul>li .yt {
    background: #dd2929;
    color: #fff;
}

@media (max-width: 768px) {
    .main_media .sns h2 {
        margin: 0 0 16px 0;
    }

    .main_media .sns ul {
        gap: 16px;
    }

    .main_media .sns ul>li i {
        font-size: 24px;
        padding: 16px;
    }
}

.main_marvel {
    padding: 50px 0;
}

.main_marvel img {
    height: 70px;
    margin: 0 0 30px 0;
}

.main_marvel span {
    display: block;
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 400;
    color: #222;
}

.main_marvel strong {
    font-size: 16px;
    font-weight: 400;
    color: #222;
}

@media (max-width: 768px) {
    .main_marvel {
        text-align: center;
    }

    .main_marvel img {
        height: 60px;
        width: 50%;
        margin: 0 0 16px 0;
    }

    .main_marvel span {
        font-size: 12px;
        margin: 0 0 6px 0;
    }

    .main_marvel strong {
        font-size: 12px;
    }
}

.footer {
    padding: 50px 0;
    background: #00439c;
}

.footer h2 {
    margin: 0 0 50px 0;
    
    position: relative;
}

.footer h2::before {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translate(-50%, 0);

    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.footer h2 img{
    height: 50px;
}

@media (max-width: 768px) {
    .footer .inner {
        padding: 0 20px;
    }

    .footer h2 img {
        height: 40px;
    }
}

.footer .announcement {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    color: #f9f9f9;
    margin: 0 0 50px 0;

    position: relative;
}

.footer .announcement::before {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translate(-50%, 0);

    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.footer .announcement h3 {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 10px 0;
}

.footer .announcement ul>li {
    font-size: 13px;
    font-weight: 300;
    line-height: 22px;
}

.footer .announcement ul>li .sns {
    display: flex;
    gap: 10px;
    margin: 0 0 10px 0;
}

.footer .announcement ul>li .sns>li i{
    font-size: 30px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .footer .announcement {
        gap: 16px;
    }

    .footer .announcement h3 {
        font-size: 16px;
        font-weight: 500;
    }

    .footer .announcement ul>li {
        font-size: 12px;
        font-weight: 400;
        line-height: 20px;
        color: rgba(255, 255, 255, 0.8);
    }

    .footer .announcement ul>li .sns {
        margin: 0;
        gap: 6px;
    }
}

.footer .company {
    color: #f9f9f9;
}

.footer .company img{
    height: 80px;
    margin: 0 0 10px 0;
}

.footer .company .copy {
    font-size: 13px;
    font-weight: 300;
    margin: 0 0 20px 0;
}

.footer .company .address {
    margin: 0 0 50px 0;

    position: relative;
}

.footer .company .address::before {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translate(-50%, 0);

    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.footer .company .address>li {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
}

.footer .company .etc {
    display: flex;
    align-items: center;
}

.footer .company .etc .ko {
   display: flex;
   align-items: center;
}

.footer .company .etc .ko a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer .company .etc .ko .asia {
    vertical-align: middle;
    font-size: 30px;
    font-weight: 300;
}

.footer .company .etc .ko span {
    font-size: 14px;
    font-weight: 300;
}

.footer .company .etc ul {
    display: flex;
    margin: 0 0 0 auto;
    gap: 30px;
}

.footer .company .etc ul>li {
    font-size: 14px;
    font-weight: 300;
}

.footer .company .etc ul>li span {
    color: #FF6E00;
}

.footer .company .etc ul>li~li {
    position: relative;
}

.footer .company .etc ul>li~li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translate(0, -50%);

    width: 1px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .footer .company .copy {
        font-size: 12px;
        line-height: 16px;
        margin: 0 0 6px 0;
    }

    .footer .company img {
        height: 60px;
    }

    .footer .company .address {
        margin: 0 0 30px 0;
    }

    .footer .company .address::before {
        bottom: -15px;
    }

    .footer .company .address>li {
        font-size: 12px;
        line-height: 16px;
    }

    .footer .company .etc .ko a {
        gap: 12px;
    }

    .footer .company .etc .ko .asia {
        font-size: 24px;
    }

    .footer .company .etc .ko span {
        font-size: 12px;
    }

    .footer .company .etc ul {
        gap: 12px;
    }

    .footer .company .etc ul>li {
        font-size: 12px;
    }

    .footer .company .etc ul>li~li::before {
        left: -6px;
    }
}

.m_btn {
    display: none;
}



@media (max-width: 768px) {

    .main_product .btn img {
        width: 100%;
        padding: 0 50px;
        text-align: center;
    }

  

    .main_news .news01 .inner{
        display: grid;
        grid-template-columns: repeat(1, 2fr);
    }

    .main_news .news01 .txt {
        text-align: center;
        margin: 0 0 20px 0;
    }

    .main_news .news02 .txt {
        text-align: center;
        text-shadow: 0 0 5px #7c7c7c
    }



    .footer .announcement .list .sns>li i{
        font-size: 16px;
        gap: 10px;
    }

    .footer .company .etc{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .footer .company .etc ul {
        justify-content: flex-start;
        margin: 0;
    }

    .footer .announcement {
        display: grid;
        grid-template-columns: repeat(3, 2fr);
    }
    
}