/* Common */
/*------------------------------------*/
.hide {
  display: none !important;
}

/* Modal */
/*------------------------------------*/
.modal-area{
  position: fixed;
  top: 0;
  left :0;
  width :100vw;
  height: 100vh;
  background: rgba(0, 0, 0, .68);
  z-index: 20;
}
.modal-area .modal-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 100%;
  height: auto;
  max-width: 80%;
  max-height: 80%;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 5px;
}
.modal-area .text{
  margin: 0;
}
.modal-area .buttons{
  text-align: center;
  margin-top: 30px;
}
.modal-area .buttons .button{
  display: inline-block;
  background-color: $brand_color;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  line-height: 1;
  color: #ffffff;
  margin: 10px 0 0 0;
}
.modal-area .buttons .button:hover{
  opacity: 0.7;
}
.modal-area .buttons .button.close{
  background-color: #666666;
  border-color: #666666;
}

@media (min-width: 768px) {
  .modal-area .buttons .button{
    margin: 0 10px 0 10px;
    width: 160px;
  }
  .modal-area .modal-frame {  
    width: auto;
  }
}