@charset "utf-8";

/*====================================================================
個別設定用
====================================================================*/

.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 11;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    padding: 15px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
    max-width: 540px;
}
a.js-modal-close {
  margin-top: 20px;
  display: block;
  color: #624c3f;
  font-size: 1.6rem;
  font-weight: 600;
}
