
body {
    font-family:  "Helvetica","Helvetica Neue", "Hiragino Kaku Gothic ProN",  "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  }

  html {
    font-family: "Helvetica", "Helvetica Neue","Hiragino Kaku Gothic ProN", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.03em;
    }
  @media screen and (max-width: 850px) {
    html{
        font-size: 15px;
    }
  }

*{
    box-sizing: border-box;
}
.a-enter-vr.fullscreen{
    display: none;
}
img{
    max-width: 100%;
}
/* intro  */
.intro{
   
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 100;
    transition: .8s;
    opacity: 1;
    visibility: visible;

}
.intro.close{
    opacity: 0;
    visibility: hidden;
    pointer-events:none;
    z-index: -1;
}
.intro__base{
    position: relative;
    width: 100%;
    height: 100%;
    
}
.intro__overlay{
    position: absolute;
    background-color: rgba(255,255,255,0.7);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: .3s;
    opacity: 1;
    visibility: visible;
}
.intro__overlay.close{
    opacity: 0;
    visibility: hidden;
}
.intro__inner{
    position: relative;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.intro__contents{
        max-width: 500px;
    width: 90%;
    margin: 0 auto;
}

/* menu icon */
.ui-icon{
    position:fixed;
    z-index: 20;
}
.ui-icon__close{
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    /* background-color: #fff; */
}
.ui-icon__close__inner{
    position: relative;
    width: 100%;
    height: 100%;
}
.icon-close{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    cursor: pointer;
    width: 20px;
    height: 20px;
}
.icon-close img{
    width: 20px;
    height: 20px;
}

.ui-icon__map{
    bottom: 30px;
    right: 30px;
    cursor: pointer;
}
.icon-map{
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 10px;
    padding-bottom: 5px;
}
.icon-map img{
    width: 25px;
    
}

/* modal */
.modal{
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 400;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: .5s;
}
.modal.open{
    visibility: visible;
    opacity: 1;
    z-index: 400;
}
.modal__base{
    position: relative;
    width: 100%;
    height: 100%;
}
.modal__contents{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: #fff;
    padding: 30px 20px;
    border-radius: 30px;
    width: 90%;
    max-width: 500px;

}
.modal__overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0,0,0,0.4);
}
.modal__heading{
    text-align: center;
    margin-bottom: 2rem;
}
.modal__item{
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: center;
}
.modal__item > *{
    display: inline-block;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    min-width: 120px;
    cursor: pointer;
}
.btn_primary{
    background-color: rgb(0, 152, 216);
    color: #fff;
}

.modal__contents_map{
    top: 80px;
    transform: translate(-50%, 0);
    background: none;
}
.modal__map .modal__heading{
    color:#fff;
}
.modal__map .modal__item{
    text-align: left;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: .3s;
    padding: 10px;
}
.modal__map .modal__item:hover{
    background: rgba(255,255,255,0.5);
}
.modal__map .modal__item > *{
    color: #fff;
}


.modal-panel__icon-close{
    top: 30px;
    right: 15px;
    left: auto;
    }
