@charset "UTF-8";

/* page_open
-------------------------------------------------------------*/
#page_open {display: none;}

#page_open.open {
    background: rgba(0,0,0, .78);
    position: fixed;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
}

.page_open-title {
    width:300px;
}

.page_open-btnlist{
    width:750px;
    padding:10px 0 75px;
    display:flex;
    justify-content: space-between;
}

.page_open-btnlist li{
    padding:25px 0 0;
    width:360px;
}

.page_open-btnlist a{
    text-decoration: none;
    display:block;
    border-radius:6px;
    background:#FFE624;
    color:#0081BA;
    font-size:18px;
    font-weight:bold;
    text-align:center;
    padding:45px 20px;
    line-height:1.5;
    border:5px solid #FFE624;
    height:100%;
}

.page_open-btnlist a:hover{
    text-decoration:none;
    border-color:#0081BA;
}

.page_open-btnlist .premium a{
    background:#EE87B4;
    color:#FFE624;
    border:5px solid #EE87B4;
}

.page_open-btnlist .premium a:hover{
    border-color:#FFE624;
}

.page_open-btnlist a strong{
    font-size:24px;
    display:block;
}

.page_open-btnlist a span.txt{
    font-size:12px;
    display:block;
    padding:7px 0;
    color:#000;
}

.page_open-btnlist a span.more{
    font-size:16px;
    display:block;
    color:#fff;
    width:200px;
    background:#FF0000;
    margin:10px auto 0;
    border-radius:30px;
    padding:7px 0;
}

.page_open-btnlist a.notxt span.more{
    margin-top:60px;
}

#page_open .close button {
  color: #fff;
  font-size: 12px;
  position: relative;
  cursor: pointer;
  padding: 45px 0 0;
  background: transparent;
  border: none;
}

#page_open .close button::after, #page_open .close button::before {
  content: " ";
  position: absolute;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 40px;
  width: 5px;
}

#page_open .close button::before {
  transform: rotate(-45deg);
}

#page_open .close button::after {
  transform: rotate(45deg);
}




@media (max-width:767px){
    .page_open-btnlist{display: block;}
    .page_open-title {
        width:205px;
    }

    .page_open-btnlist{
        width:100%;
        padding:5px 20px 25px;
        flex-direction: column;
    }

    .page_open-btnlist li{
        max-width: 360px;
        margin: 0 auto;
        width: 100%;
    }

    .page_open-btnlist a.notxt span.more{
        margin-top:10px;
    }

    .page_open-btnlist a{
        padding:20px 0;
    }
}
