@charset "utf-8";
/* CSS Document */
/* モーダル */
#c-modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.6);
}
#c-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  width: 960px;
  transform: translate(-50%, -50%);
  background: #fff7e3;
  border: 3px solid #FFC892;
  border-radius: .4rem;
}
#c-modal h2 {
  font-size: 3.2rem;
  font-weight: bold;
}
#c-modal p {
  font-size: 2.2rem;
}
#c-modal .caution-box {
  margin: 0;
  width: 100%;
  border: none;
  padding: 15px;
}
#c-modal .visible_check {
  margin: 1em 0 0;
}
#c-modal .visible_check input, #c-modal .visible_check label {
  cursor: pointer;
}
#c-modal_close {
  display: inline-block;
  position: absolute;
  top: -35px;
  right: -5px;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  #c-modal {
    max-width: 94%;
  }
#c-modal h2 {
  font-size: 1.8rem;
}
#c-modal p {
  font-size: 1.2rem;
}
}