/* モーダルウィンドウ */
.modal-window {
  display: none;
  width: 500px;
  height: 550px;
  padding: 5px;
  background: #ffffff;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}

/* モーダル内の利用規約表示 */
.modal-contents {
  display: none;
  width: 500px;
  height: 390px;
  padding: 20px;
  background: #ffffff;
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
/*  overflow-y: scroll; */
}

/* モーダル表示時のオーバーレイ */
#modal-overlay {
  display: none;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.3;
}

.modal-open {
 a {
    display: block;
    margin:0 auto;
    width: 176px;
    height: 48px;
    line-height: 48px;
    border-radius: 8px;
    background: #3f51b5;
    box-shadow: 0 3px 6px #00000029;
    color: #fff;
    text-align:center;
    cursor: pointer;
  }
}

/* モーダル進むボタン */
.modal-go {
    position:absolute;
    top: 90%;
    left: 67%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 25%;
    background-color: #0D265A;
    color: #ffffff;
    border: 1px solid #0D265A;
    border-radius: 5px;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    line-height: 1.143;
    padding: 20px;
    margin: 0px 20px;
}

/* モーダル戻るボタン */
.modal-back {
    position:absolute;
    top: 90%;
    left: 27%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 25%;
    background-color: #0D265A;
    color: #ffffff;
    border: 1px solid #0D265A;
    border-radius: 5px;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    line-height: 1.143;
    padding: 20px;
    margin: 0px 20px;
}

.modal-go:disabled {
    position:absolute;
    top: 90%;
    left: 67%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 25%;
    background-color: #CCCCCC;
    color: #ffffff;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    line-height: 1.143;
    padding: 20px;
    margin: 0px 20px;
}

/* 利用規約・プライバシーポリシーチェックボックス */
.modal-checkbox {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    accent-color: #18367C;
}
.modal-checkbox > a {
    cursor: pointer;
}
