/********************************
告知ポップアップ
********************************/
html.modalset {
  overflow: hidden;
}
.modaltop {
  /*display: none;*/
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}
.modaltop-wrap {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 20px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
.modaltop-wrap::-webkit-scrollbar {
  display: none;
}
.modaltop-wrap:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 100%;
}
.modaltop-bg {
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(51, 51, 51, 0.8);
  width: 100%;
  height: 100%;
}
.modaltop-box {
  width: 100%;
  max-width: 900px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  border: 4px solid #200e01;
}
.modaltop-box .inner {
  line-height: 1.6;
  background: #460c0c;
  padding: 80px 8%;
  text-align: left;
  border: 4px solid #c98f06;
  color: #fff;
  letter-spacing:0.05em;
}
.modaltop-box .inner > :first-child {
  margin-top: 0;
}
.modaltop-box .inner p{
  margin-bottom: 2.7rem;
}
.modaltop-box .inner h2{
  font-weight: bold;
  border-bottom: 2px dotted #fff;
  margin: 24px 0 16px;
  padding-bottom: 8px;
}
.modaltop-box .modaltop-close {
 border: 1px solid #c98f06;
 text-align: center;
 width: 90%;
 max-width: 300px;
 margin: 4rem auto 0;
 padding: 16px 0;
 cursor: pointer;
 background-color: #c98f06;
 border-radius: 8px;
 font-weight: bold;
}

.topmodal-open{
  border-radius: 8px;
  font-weight: bold;
  background-color: #ff0058;
  border: 6px double #fff;
  cursor: pointer;
  color: #fff;
  padding:16px 24px;
  transition:background-color 0.5s ease;
}
a.topmodal-open:hover{
  color: #fff !important;
  background-color:#ff7412;
}
.modaltop-day{
  background:#4f1a1a;
  padding: 2rem;
}

.modaltop-box .inner ul{
  list-style: square;
  padding-left: 1.5rem;
  margin-bottom: 2.7rem;
}

.modaltop-textright{
  text-align: right;
}