
/* Popup mint */


.banner_newsite {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #F43152;
    padding: 10px 0;
    z-index: 1000;
    text-align: center;
}
.banner_newsite p, .banner_newsite a {
    color: #fff;
    margin: 0;
    font-size: 14px;
    font-family: 'Noto Sans', sans-serif;
}
@media (max-width: 630px){
    .banner_newsite p {
        padding: 10px;
        font-size: 4vw;
        line-height: 1.5;
    }
}
.banner_newsite p a {
    text-decoration: underline;
}
.banner_newsite p a:hover {
    border: 0;
    text-decoration: none;
}

        

.background_popup_newsite {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
}
.popup_newsite {
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.25);
    border-radius: 100%;
    max-width: 572px;
    max-height: 572px;
    width: 90vw;
    height: 90vw;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* animation */

.popup_newsite{
    animation-name:showOnLoad;
    animation-duration: 1s;
}



@keyframes showOnLoad {
  0% {
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



.popup_newsite h2 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 24px;
    font-weight: bold;
    line-height: 31px;
    color: #141823;
    margin-top: 90px;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 25px;
}
@media (max-width: 630px){
    .popup_newsite h2 {
        font-size: 4vw;
        line-height: 5vw;
        margin-top: 13vw;
        margin-bottom: 1vw;
    }
}
.popup_newsite img {
    width: 35vw;
    max-width: 218px;
    margin-bottom: 40px;
}
@media (max-width: 630px){
    .popup_newsite img {
        margin-bottom: 2vw;
    }
}
.popup_newsite h2 strong {
    color: #F43152;
}
.popup_newsite p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    line-height: 23px;
    color: #000;
    width: 82vw;
    max-width: 480px;
    margin: 0 auto;
    margin-top: 1px;
    margin-bottom: 20px;
}
@media (max-width: 630px){
    .popup_newsite p {
        font-size: 3.3vw;
        line-height: 4vw;
        margin-top: 0;
        margin-bottom: 0;
    }
}
.popup_newsite a {
    font-family: 'Noto Sans', sans-serif;
    text-decoration: underline;
    color: #000;
    display: inline-block;
    font-size: 14px;
    margin-top: 4px;
}
@media (max-width: 630px){
    .popup_newsite a {
        font-size: 2.5vw;
        margin-top: 0;
    }
}
.popup_newsite a:hover {
    border: 0;
}
.popup_newsite a.button {
    background: #F43152;
    font-family: 'Noto Sans', sans-serif;
    color: #fff;
    font-weight: bold;
    padding: 12px 18px;
    text-decoration: none;
    margin-top:0;
    font-size: 16px;
    transition: all 0.5s ease;

    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}
@media (max-width: 630px){
    .popup_newsite a.button {
        font-size: 3.5vw;
        padding: 1vw 2vw;
        margin-bottom: -10vw;
        margin-top: 5vw;
    }
}
.popup_newsite a.button:hover {
    background: #DB1839;
}
.popup_newsite a.close {
    font-family: 'Noto Sans', sans-serif;
    border: 1px solid #DBDBDB;
    border-radius: 100%;
    height: 32px;
    width: 32px;
    text-decoration: none;
    color: #F43152;
    margin-top: 40px;
    position: relative;
    transition: all 0.5s ease;
}
@media (max-width: 630px){
    .popup_newsite a.close {
        height: 6vw;
        width: 6vw;
        margin-top: 5vw;
    }
}
.popup_newsite a.close:hover {
    background: #eee;
}
.popup_newsite a.close::before {
    content: '';
    background: #F43152;
    width: 15px;
    height: 1px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.popup_newsite a.close::after {
    content: '';
    background: #F43152;
    width: 15px;
    height: 1px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}