/*スマホメニューの「新規会員登録」押下時のモーダル*/
#ANNOUNCE_IN_MENU {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: .4s ease;
    z-index: 10000;
}
#ANNOUNCE_IN_MENU.ok{
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}
#ANNOUNCE_IN_MENU .popup-inner{
    max-width: 60rem;
    width:90%;
    padding: 20px;
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    background-color:#fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0.8rem;
}
#ANNOUNCE_IN_MENU .popup-inner::after{
    content: "";
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 8px;
    box-shadow: 0 40px 15px rgba(0, 0, 0, .5);
    background-color: transparent;
    border-radius: 80px / 4px;
}
#ANNOUNCE_IN_MENU .title {
    font-size: 2.5rem;
    margin: 1rem 0 0;
    /*font-weight: bold;*/
    text-align: center;
    padding: 1rem;
    color: #d1446a;
}
#ANNOUNCE_IN_MENU .txt {
    text-align: center;
}
#ANNOUNCE_IN_MENU .radiobox {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 1rem;
    width: 100%;
    max-width: 50rem;
    background: #f1f1f1;
    border-radius: 0.4em;
}
#ANNOUNCE_IN_MENU .radiobox li {
    display: inline-flex;
    align-items: center;
}
#ANNOUNCE_IN_MENU .radiobox label {
    width: 11rem ;
    line-height: 1.8;
    padding-top: 0.2rem;
}
#ANNOUNCE_IN_MENU .radiobox input {
    width: 2.3rem;
    height: 2.3rem;
}
#ANNOUNCE_IN_MENU .button {
    text-align: center;
    margin: 1.5rem 0 ;
}
#ANNOUNCE_IN_MENU .button button {
    border-radius: 0.4em;
    background: #d1446a;
    border: none;
    color: #FFF;
    width: 25rem;
    padding: 0.8rem;
    font-size: 1.7rem;
    cursor: pointer;
}
