@charset "utf-8";

/*******default*****/

html {
    overflow-y: scroll;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-size: 0.75em;
    font-family: 'SUIT', sans-serif;
    background: #fff;
    overflow: hidden;
}

html,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img {
    margin: 0;
    padding: 0;
    border: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

ul,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
    list-style: none
}

legend {
    position: absolute;
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
    text-indent: -9999em;
    overflow: hidden
}

label,
input,
button,
select,
img {
    vertical-align: middle;
    font-size: 1em
}

input,
button {
    margin: 0;
    padding: 0;
    font-size: 1em
}

input[type="submit"] {
    cursor: pointer
}

button {
    cursor: pointer
}

p {
    margin: 0;
    padding: 0;
    word-break: break-all
}

hr {
    display: none
}

pre {
    overflow-x: scroll;
    font-size: 1.1em
}

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

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.cf::after {
    content: '';
    display: table;
    clear: both
}

/*******fonts*****/


@font-face {
    font-family: 'Rooters';
    src: url('../fonts/rooters/Rooters.otf') format('opentype');
    src: url('../fonts/rooters/Rooters.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ONE-Mobile-Title';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2105_2@1.0/ONE-Mobile-Title.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.rooters {
    font-family: 'Rooters';
}

.onemobile {
    font-family: 'ONE-Mobile-Title';
}





/******* 공통 *****/
.cont_inner {
    max-width: 1200px;
    margin: 0 auto;
}

h2.cont_title {
    font-size: 50px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-family: 'Rooters';
}


h2.cont_title::before {
    content: url(../images/story_title_icon.png);
    position: absolute;
    top: 30%;
    left: -69px;
    transform: translateY(-50%)
}

h2.cont_title::after {
    content: url(../images/story_title_icon.png);
    position: absolute;
    top: 30%;
    right: -69px;
    transform: translateY(-50%)
}

.center_align {
    text-align: center;
}
.right_align {
    text-align: right;
}





/******* header *****/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 77px;
    z-index: 999;
    transition: all 0.3s ease;
    background: rgba(0, 50, 116, 0.8)
}

header .hd_wrap {
    padding: 0 50px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

header .hd-left {
    width: fit-content;

}

header .hd-left li {
    float: left;
    margin-right: 20px;
    width: 36px;
    height: 28px;
    position: relative
}

header .hd-left li:last-child {
    margin-right: 0px;
}

header .hd-left li a img{
    position: absolute;
    top: 0;
    left: 0;
   
    transition: opacity 0.3s ease;
}
header .hd-left li a img.normal{
    opacity: 1;
}
header .hd-left li a img.hover{
    opacity: 0;
}
header .hd-left li a:hover img.normal{
    opacity: 0;
}
header .hd-left li a:hover img.hover{
    opacity: 1;
}

header .hd-center {
    /* border: 1px solid red; */
    width: fit-content;
    padding: 0 20px;
}

header .hd-center li {
    float: left;
    margin-right: 30px;
}

header .hd-center li:last-child {
    margin-right: 0;
}


header .hd-center li a {
    font-size: 24px;
    color: #59a5ff;
    font-weight: 600;
    transition: color 0.3s ease;
}

header .hd-center li a:hover {
    color: #ffe17a;
}


header .hd-right {
    /* border: 1px solid red; */
    width: 10%;
}

header .hd-right li {
    float: left;
}

header .hd-right li:first-child {
    margin-right: 15px;
}

header .hd-right li button {
    padding: 11px 25px;
    font-size: 18px;

    color: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    background: transparent;
}

header .hd-right li a {
    padding: 10px 28px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    border: 2px solid #e49b33;
    border-radius: 5px;
    background: #e49b33;
    display: inline-block
}

header.scroll {
    background: rgba(0, 50, 116, 0.8);
}

/*모바일메뉴*/
.hd-mobile{
    display: none
}

.hd-mobile .m-menu-wrap{
    position: fixed;
    top: 70px;
    right: -25%;
    width: 25%;
    background: rgba(3,15,32,0.85);
    /*height: 100vh;*/
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.hd-mobile .m-menu li{
    margin-top: 7.5vw;
}
.hd-mobile .m-menu a{
    font-size: 4vw;
    color: #59a5ff;
    font-weight: 600;
    letter-spacing: -0.05em;
}
.hd-mobile .m-sns{
    margin-top: 5vw;
}
.hd-mobile .m-sns li{
    margin-bottom: 5vw
}
.hd-mobile .m-sns li img{
    width: 8.2vw;
}

.m-menu_btn {
    position: absolute;
    top: 19px;
    padding-top: 15px;
    width: 50px;
    height: 35px;
    right: 4%;
}

.hamburger {
    display: block;
    height: 4px;
    background: #fff;
    width: 50px;
    position: relative;
    transition: all 0.3s;
    border-radius: 10px;
}

.hamburger:before {
    content: "";
    position: absolute;
    top: -15px;
    background: #fff;
    width: 50px;
    height: 4px;
    transition: all 0.3s;
    border-radius: 10px;
}

.hamburger:after {
    content: "";
    position: absolute;
    top: 15px;
    background: #fff;
    width: 50px;
    height: 4px;
    transition: all 0.3s;
    border-radius: 10px;
}

.hamburger.is-active {
    background: transparent !important;
}

.hamburger.is-active:before {
    top: 0;
    transform: rotate(45deg);
}

.hamburger.is-active:after {
    top: 0;
    transform: rotate(-45deg);
}
header.menu-on .hd-mobile .m-menu-wrap{
    right: 0%;
    
    
}



/******* rarity_table *******/

#rarity_wrap {
    padding: 260px 0;
    background: url(../images/parts/rarity_bg.jpg) no-repeat center ;
    background-size: cover;
    position: relative;
}
#rarity_wrap::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply;
}
#rarity_wrap .cont_inner{
    position: relative;
    z-index: 1;
}
#rarity_wrap h1 {
    font-size: 130px;
    color: #fff;
    /*text-shadow: 0px 0px 20px #0084ff, 0px 0px 14px #0084ff, 0px 0px 111px #0084ff;*/
    text-shadow: 0px 0px 20px #00D1FF, 0px 0px 14px #00D1FF, 0px 0px 111px #00D1FF;
    font-weight: normal;
    line-height: 74%;
    text-transform: uppercase;
    text-align: center;
}

#rarity_wrap h1 span {
    font-size: 50px;
}


/*parts*/
.rarity_parts {
    margin-top: 335px;
    text-align: center;
}

.rarity_parts ul{
    margin-top: 84px;
}
.rarity_parts li {
    float: left;
    width: 49%;
    margin-right: 2%;
    margin-bottom: 24px;
}
.rarity_parts li:nth-child(2n){
    margin-right: 0;
}


.rarity_parts table {
    color: #fff;
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 13px;
}

.rarity_parts table td {
    /*border: 1px solid #fff;*/
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
    text-transform: capitalize;
    padding-left: 22px;
    background: rgba(0, 0, 0, 0.7);
}

.rarity_parts table thead td {
    font-size: 18px;
    font-weight: 400;
    padding: 8px 0 8px 22px;
    border-top: none;
}

.rarity_parts table thead td:first-child {
    border-radius: 13px 0 0 0;
    border-left: none;
    border-top: none
}

.rarity_parts table thead td:last-child {
    border-radius: 0 13px 0 0;
    border-right: none;
    border-top: none
}

.rarity_parts table tbody td {
    font-size: 23px;
    font-weight: 500;
    padding: 20px 0 20px 22px;
}
.rarity_parts table tbody td img{
    width: 100px;
}

.rarity_parts table tbody tr:first-child td:first-child {
    border-radius: 0 0 0 13px;
    border-bottom: none;
    border-left: none;
}
.rarity_parts table tbody tr:first-child td:last-child {
    border-radius: 0 0 13px 0;
    border-bottom: none;
    border-right: none;
}

.rarity_parts table .num {
    font-size: 25px;
    font-weight: 700;
}

.rarity_parts table .center_align {
    padding: 0
}


/*rarity*/
.rarity_rarity{
    margin-top: 228px;
    text-align: center;
}
.rarity_rarity table{
    width: 100%;
    margin-top: 84px;
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
    border: 1px solid #fff;
    border-radius: 13px;
    height: 100%;
}
.rarity_rarity td{
    color: #fff;
    font-size: 25px;
    background: rgba(0, 0, 0, 0.7);
    /*border: 1px solid #fff;*/
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    text-transform: capitalize
}
.rarity_rarity td.small_text{
    font-size: 20px;
}
.rarity_rarity thead td{
    font-weight: 800;
    padding: 25px 15px 25px;
    border-top: none;
}
.rarity_rarity tbody td{
    font-weight: 500;
    padding: 10px 15px;
}
.rarity_rarity tbody tr:last-child td{
    padding : 21px 15px;
}
.rarity_rarity td:first-child{
    padding-left: 36px !important;
}
.rarity_rarity tbody td:first-child{
    font-weight: 700;
}

.rarity_rarity thead td:first-child{
    border-radius: 13px 0 0 0;
    border-top: none;
    border-left: none;
}
.rarity_rarity thead td:last-child{
    border-radius: 0 13px 0 0;
    border-top: none;
    border-right: none;
}
.rarity_rarity tbody tr:last-child td:first-child{
    border-radius: 0 0 0 13px;
    border-bottom: none;
    border-left: none;
}
.rarity_rarity tbody tr:last-child td:last-child{
    border-radius: 0 0 13px 0;
    border-bottom: none;
    border-right: none;
}

.rarity_rarity .gra{
    padding: 10px 0;
border-right: none;
}
.rarity_rarity .gra > div{
    width: 85%;
    height: 50px;
    margin: 0 auto;
    border-radius: 3px;
}
.rarity_rarity .slash{
    padding: 0;
    overflow: hidden;
}
.rarity_rarity .slash > div {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
}
.rarity_rarity .slash > div::before{
    content: '';
    width: 270%;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%,-50%) rotate(-27deg);
}



/*chart*/
.rarity_chart{
    margin-top: 239px;
    text-align: center;
    color: #fff;
}

.rarity_chart .chart_cont{
    margin-top: 125px;
    text-align: left;
}
.rarity_chart .chart_cont.necklace{
    margin-top: 87px;
}
.rarity_chart .chart_cont.constellation{
    margin-top: 146px;
}
.rarity_chart .chart_cont h3{
    font-size: 35px;
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.rarity_chart .chart_cont h3 span{
    display: inline-block;
    margin-left: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #020531;
    padding: 5px 9px;
    background: #fff;
    border-radius: 5px;
    vertical-align: middle
}
.rarity_chart .chart_cont .two_column li{
    float: left;
    width: 49%;
    margin-right: 2%;
    margin-top: 24px;
}
.rarity_chart .chart_cont .two_column li:nth-child(2n){
    margin-right: 0;
}
.rarity_chart .chart_cont .three_column li{
    float: left;
    margin-right: 2%;
    width: 32%;
    margin-top: 24px;
}
.rarity_chart .chart_cont .three_column li:nth-child(3n){
    margin-right: 0;
}
.rarity_chart .chart_cont .three_column td:first-child{
    width: 39%;
}
.rarity_chart .chart_cont .three_column td:last-child{
    width: 61%;
}
.rarity_chart .chart_cont table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
    border: 1px solid #fff;
    border-radius: 13px;
    height: 100%;
}
.rarity_chart .chart_cont td{
    border: 1px solid #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 17px 25px;
    font-size: 23px;
    font-weight: 700;
    text-transform: capitalize;
    
}
.rarity_chart .chart_cont tr:first-child td:first-child{
    border-radius: 13px 0 0 13px;
    border: none;
}
.rarity_chart .chart_cont tr:first-child td:last-child{
    border-radius: 0 13px 0 0;
    border-top: none;
    border-right: none;
}
.rarity_chart .chart_cont tr:last-child td:last-child{
    border-radius: 0 0 13px 0;
    border-right: none;
    border-bottom: none;
    border-top: none;
}
.rarity_chart .chart_cont td.imgtd{
    padding: 27px 0 25px;
    text-align: center
}
.rarity_chart .chart_cont td img{
    width: 100px
}
.rarity_chart .progress .progress-bar{
    width: 59%;
    height: 100%;
    background: #fff;
    border-radius: 4px;
    padding: 4px 5px;
    float: left;
}
.rarity_chart .progress .progress-bar > div{
    width: 100%;
    height: 100%;
    background: #3170AA;
    border-radius: 3px;
    
}
.rarity_chart .progress .progress-bar > div span{
    font-size: 20px;
    font-weight: 400;
    padding-left: 6px;
}
.rarity_chart .progress p{
    float: right;
    font-size: 25px;
    font-weight: 400;
}
.rarity_chart .progress p span{
    font-weight: 600;
}

.rarity_chart .chart_cont td.chart_text{
    font-size: 23px;
    font-weight: 500;
}



/******* media query ******/
@media screen and (max-width: 1250px) {
    #rarity_wrap h1{
        font-size: 110px;
    }
    #rarity_wrap h1 span{
        font-size: 40px;
    }
    .rarity_parts{
        margin-top: 300px;
    }
    .cont_inner{
        width: 85%;
    }
    .rarity_rarity{
        margin-top: 220px;
    }
    .rarity_parts table{
        height: 200px;
        word-break: keep-all;
    }
    .rarity_parts table .num{
        font-size: 22px;
    }
    .rarity_parts table tbody td{
        font-size: 20px;
        padding: 15px 22px 15px 22px;
    }
    .rarity_parts table tbody td img{
        width: 80%;
    }
    .rarity_rarity td,.rarity_chart .chart_cont td,.rarity_chart .progress p{
        font-size: 22px;
    }
    .rarity_rarity td.small_text,.rarity_chart .progress .progress-bar > div span{
        font-size: 17px;
    }
    .rarity_chart .chart_cont td img{
        width: 70%;
    }
    .rarity_chart{
        margin-top: 220px;
    }
    .rarity_chart .chart_cont{
        margin-top: 105px;
    }
    .rarity_chart .chart_cont h3{
        font-size: 32px;
    }
    .rarity_chart .chart_cont .three_column li{
        height: 160px;
    }
    .rarity_chart .chart_cont td.chart_text{
        font-size: 22px
    }
}

@media screen and (max-width: 1000px) {
    #rarity_wrap{
        padding: 25vw 0;
    }
    #rarity_wrap h1{
        font-size: 11vw;
    }
    #rarity_wrap h1 span{
        font-size: 4vw;
    }
    .cont_inner{
        width: 95%;
    }
    h2.cont_title{
        font-size: 4vw;
    }
    .rarity_parts{
        margin-top: 30vw
    }
    .rarity_parts ul{
        margin-top: 8vw
    }
    .rarity_parts table .num{
        font-size: 2.4vw;
    }
    .rarity_parts table thead td{
        font-size: 15px;
        padding: 8px 0 8px 1.5vw
    }
    .rarity_parts table tbody td{
        font-size: 2vw;
        padding: 1vw 1.5vw 1vw 1.5vw
    }
    .rarity_parts table{
        height: 19vw;
    }
    .rarity_rarity{
        margin-top: 16vw;
    }
    .rarity_rarity td, .rarity_chart .chart_cont td, .rarity_chart .progress p{
        font-size: 2.4vw
    }
    .rarity_rarity thead td{
        padding: 2vw 1.5vw 2vw;
    }
    .rarity_rarity tbody td{
        padding: 1vw 1.5vw;
    }
    .rarity_rarity td:first-child{
        padding: 3vw !important;
    }
    .rarity_rarity td.small_text, .rarity_chart .progress .progress-bar > div span{
        font-size: 1.7vw;
        word-break: keep-all
    }
    .rarity_rarity .slash > div::before{
        transform: translate(-50%,-50%) rotate(-37deg)
    }
    .rarity_chart{
        margin-top: 20vw;
    }
    .rarity_chart .chart_cont{
        margin-top: 10.5vw;
    }
    .rarity_chart .chart_cont h3{
        font-size: 3.2vw;
        margin-bottom: 2vw;
    }
    .rarity_chart .chart_cont h3 span{
        font-size: 2vw;
        padding: 0.5vw 0.9vw;
        margin-left: 1.5vw;
    }
    .rarity_chart .chart_cont td{
        padding: 1.5vw 2vw;
    }
   /* .rarity_chart .chart_cont td.imgtd{
        padding: 0;
    }*/
    .rarity_chart .chart_cont td img{
        width: 75%;
    }
    .rarity_rarity table{
        margin-top: 8vw
    }
    .rarity_chart .chart_cont td{
        font-size: 2.2vw
    }
    .rarity_chart .chart_cont .three_column li{
        width: 49%;
        margin-right: 2%;
        height: auto;
    }
    .rarity_chart .chart_cont .three_column li:nth-child(3n){
        margin-right: 2%;
    }
    .rarity_chart .chart_cont .three_column li:nth-child(2n){
        margin-right: 0
    }
    .rarity_chart .chart_cont .three_column td:first-child{
        width: 30%
    }
    .rarity_chart .chart_cont .three_column td:last-child{
        width: 70%
    }
    
    .rarity_chart .chart_cont td{
        font-size: 2.4vw
    }
}

@media screen and (max-width: 600px) {
    h2.cont_title{
        font-size: 4.5vw
    }
    h2.cont_title::before{
        transform: translateY(-50%) scale(0.5);
        left: -10vw;
        top: 50%;
    }
    
    h2.cont_title::after{
        transform: translateY(-50%) scale(0.5);
        right: -10vw;
        top: 50%;
    }
    .cont_inner{
        width: 80%;
    }
    .rarity_parts li{
        width: 100%;
        margin-right: 0;
    }
    .rarity_parts table thead td{
        font-size: 2.2vw
    }
    .rarity_parts table{
        border-radius: 7px;
    }
    .rarity_parts table thead td:first-child{
        border-radius: 4px 0 0 0
    }
    .rarity_parts table tbody tr:first-child td:first-child{
        border-radius: 0 0 0 4px;
    }
    .rarity_parts table thead td:last-child{
        border-radius: 0 4px 0 0
    }
    .rarity_parts table tbody tr:first-child td:last-child{
        border-radius: 0 0 4px 0;
    }
    .rarity_parts table{
        height: auto;
    }
    .rarity_parts table thead td{
        padding: 1.5vw 0 1.5vw 2.2vw
    }
    .rarity_parts table thead td{
        border-top: none;
    }
    .rarity_parts table tbody td{
        border-bottom: none;
    }
    .rarity_parts table .center_align{
        padding: 1vw 0;
    }
    .rarity_parts table .num{
        font-size: 3.5vw
    }
    .rarity_parts table tbody td{
        font-size: 3vw
    }
    .rarity_parts table thead td{
        font-size: 2.7vw
    }
    .rarity_parts table tbody td{
        padding: 1vw 2.2vw 1vw 2.2vw;
    }
    .rarity_parts li{
        margin-bottom: 3.5vw
    }
    .rarity_rarity table{
        border-radius: 7px;
    }
    .rarity_rarity thead td:first-child{
        border-radius: 4px 0 0 0;
    }
    .rarity_rarity thead td:last-child{
        border-radius: 0 4px 0 0;
    }
    .rarity_rarity tbody tr:last-child td:first-child{
        border-radius: 0 0 0 4px;
    }
    .rarity_rarity tbody tr:last-child td:last-child{
        border-radius: 0 0 4px 0
    }
    .rarity_rarity td, .rarity_chart .chart_cont td, .rarity_chart .progress p{
        font-size: 3.1vw
    }
    .rarity_rarity td.small_text{
        padding: 1.5vw 1vw;
        word-break: keep-all;
    }
    .rarity_rarity tbody tr:last-child td{
        padding: 1vw 1.5vw;
    }
    .rarity_rarity td:first-child{
        padding: 1.5vw!important
    }
    .rarity_rarity .gra{
        padding: 1vw 0
    }
    .rarity_rarity .gra > div{
        height: 7vw;
    }
    .rarity_chart .chart_cont.necklace{
        margin-top: 12vw;
    }
    .rarity_chart .chart_cont h3{
        font-size: 4vw;
    }
    .rarity_chart .chart_cont h3 span{
        font-size: 2.4vw
    }
    .rarity_chart .chart_cont li{
        margin-top: 3.5vw !important;
        width: 100% !important;
        margin-right: 0 !important;
    }
    .rarity_chart .chart_cont table{
        border-radius: 7px;
    }
    .rarity_chart .chart_cont tr:first-child td:first-child{
        border-radius: 4px 0 0 4px;
    }
    .rarity_chart .chart_cont tr:first-child td:last-child{
        border-radius: 0 4px 0 0;
    }
    .rarity_chart .chart_cont tr:last-child td:last-child{
        border-radius: 0 0 4px 0;
    }
    .rarity_chart .chart_cont td img{
        width: 70%;
    }
    .rarity_chart .chart_cont td.imgtd{
        padding: 2vw 0;
    }
    .rarity_chart .progress .progress-bar{
        width: 67%;
        height: 90%;
        padding: 3px;
    }
    .rarity_chart .progress .progress-bar > div span{
        font-size: 1.9vw
    }
    .rarity_chart .chart_cont tr:last-child td:last-child{
        padding: 2vw 2vw;
        position: relative
    }
    .rarity_chart .progress p{
        position: absolute;
        top: 50%;
        right: 2vw;
        transform: translateY(-50%)
    }
    .rarity_chart .chart_cont.constellation{
        margin-top: 13vw;
    }
    .rarity_chart .progress .progress-bar > div span{
        padding-top: 1vw;
        display: inline-block;
    }
    .rarity_chart .chart_cont td.chart_text{
        font-size: 3.1vw
    }
    .rarity_chart .chart_cont .three_column li{
        height: auto;
    }
}


/******* header media query ******/

@media screen and (max-width: 1460px) {
    .hd_wrap {
        display: block;
    }

    header .hd-center li{
        margin-right: 25px;
    }

    header .hd-center li a {
        font-size: 21px;
    }

    header .hd-left img {
        width: 85%;
    }

    header .hd-left {
        top: 25px;
    }

    header .hd-right li button,
    header .hd-right li a {
        font-size: 17px;
    }
}

@media screen and (max-width: 1335px) {
    header .hd-center li a {
        font-size: 19px;
    }

    header .hd-right {
        width: 0;
    }
}

@media screen and (max-width: 1120px) {
    .hd_wrap {
        display: none !important;
    }
     .hd-mobile{
    display: block
}

    header {
        height: 70px;
    }

    .hd-mobile .home_icon {
        position: absolute;
        top: 50%;
        left: 2.5%;
        transform: translateY(-50%)
    }

    .hd-mobile .home_icon a {
        display: block;
    }

    .hd-mobile .home_icon img {
        /*width: 3.2vw*/
        width: 5vw;
    }
    
}
@media screen and (max-width: 600px) {
   .hd-mobile .home_icon img {
        width: 7vw;
    }
    
    .m-menu_btn{
        top: 22px;
        padding-top: 10px;
        width: 30px;
        height: 24px;
    }
    .hamburger{
        height: 3px;
        width: 30px;
    }
    .hamburger:before{
        top: -8px;
        width: 30px;
        height: 3px;
    }
    .hamburger:after{
        top: 8px;
        width: 30px;
        height: 3px;
    }
    
    }
/******* animation ******/
h2.cont_title{
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.1s ease,transform 0.1s ease;
}

.on h2.cont_title{
    opacity: 1;
    transform: translateY(0px);
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
}
#rarity_wrap h1{
    opacity: 0;
}
#rarity_wrap h1.on{
    opacity: 1;
    transition: opacity 1s ease-in-out;
}
.rarity_parts.on h2.cont_title{
    transition: opacity 0.7s ease-in-out 0.2s, transform 0.7s ease-in-out 0.2s;
}

.rarity_chart .progress .progress-bar > div{
    width: 0%;
    transition: width 0.1s ease
}
.rarity_chart .on .progress .progress-bar > div{
    width: 100%;
    
}
.rarity_chart .on.chart_cont li:nth-child(1) .progress-bar > div{
    transition: width 0.7s ease-in-out 0.1s;
}
.rarity_chart .on.chart_cont li:nth-child(2) .progress-bar > div{
    transition: width 0.7s ease-in-out 0.2s;
}
.rarity_chart .on.chart_cont li:nth-child(3) .progress-bar > div{
    transition: width 0.7s ease-in-out 0.3s;
}
.rarity_chart .on.chart_cont li:nth-child(4) .progress-bar > div{
    transition: width 0.7s ease-in-out 0.4s;
}
.rarity_chart .on.chart_cont li:nth-child(5) .progress-bar > div{
    transition: width 0.7s ease-in-out 0.5s;
}
.rarity_chart .on.chart_cont li:nth-child(6) .progress-bar > div{
    transition: width 0.7s ease-in-out 0.6s;
}
.rarity_chart .on.chart_cont li:nth-child(7) .progress-bar > div{
    transition: width 0.7s ease-in-out 0.7s;
}
.rarity_chart .on.chart_cont li:nth-child(8) .progress-bar > div{
    transition: width 0.7s ease-in-out 0.8s;
}
.rarity_chart .on.chart_cont li:nth-child(9) .progress-bar > div{
    transition: width 0.7s ease-in-out 0.9s;
}
.rarity_chart .on.chart_cont li:nth-child(10) .progress-bar > div{
    transition: width 0.7s ease-in-out 1s;
}