.registerBtnArea{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-flow: column;

}
.guestTxt02{
    font-size: 18px;
}
.guestTxt02 a{
    font-size: 18px;
    color: #e74b7f;
}

.registerBtn01 a{
    color: #fff;
    background: #e74b7f;
    text-decoration: none;
    padding: 3vw 10px;
    border-radius: 5px;
    width: 53vw;
    display: block;
    box-sizing: border-box;
    font-size: min(3.8vw,18px);
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.registerBtn01 a:hover{
    filter: brightness(1.2);
}

.registerBtn02 a{
    color: #888888;
    background: #e9e9e9;
    text-decoration: none;
    padding: 3vw 10px;
    border-radius: 5px;
    width: 53vw;
    display: block;
    box-sizing: border-box;
    font-size: min(3.8vw,18px);;
    text-align: center;
    font-weight: bold;
}

.registerBtn02 a:hover{
    filter: brightness(0.9);
}

.guestPopupArea{
    position: relative;
    opacity: 1;
    pointer-events: visible;
    transition: 0.3s;
    z-index: 99999;
}
.guestPopupArea.close{
    opacity: 0;
    pointer-events: none;
}
.guestPopup{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 50000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.guestPopupBox{
    width: 80%;
    min-height: 30%;
    padding: 20px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
    position: relative;
}
.guestPopupClose{
    position: relative;
}
.guestPopupClose a{
    position: absolute;
    right: 0;
    top: -45px;
    display: inline-block;
}
.guestPopupCloseInner {
    position: absolute;
    display: inline-block;
    width: 24px;
    height: 4px;
    background: #fff;
    transform: rotate(45deg);
    vertical-align: middle;
}
.guestPopupCloseInner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: rotate(90deg);
}
.guestPouupInner{
    text-align: center;
}
.guestPouupInner .registerBtnArea{
    display: flex;
    justify-content: center;
}
.guestPouupTitle{
    text-align: center;
    background: #4b4b4b;
    display: block;
    padding: 8px 0;
    font-weight: bold;
    color: #fff;
    font-size: min(3.8vw,20px);
}
.guestPouupTxt01{
    font-size: min(3.4vw,18px);
    font-weight: bold;
}
.guestPouupTxt02{
    font-size: min(3.2vw,16px);
}
.guestPouupTxt03{
    font-size: min(3.4vw,18px);
    font-weight: bold;
}
.guestPouupTxt03 a{
    font-size: min(3.4vw,18px);
    font-weight: bold;
    color: #e74b7f;
}

.guestPouupInner .registerBtn01 a{
    padding: 15px 10px;
    max-width: 100%;
    margin: auto;
}

.guestPouupInner .registerBtn02 a{
    padding: 15px 10px;
    max-width: 100%;
    margin: auto;
}