/*モーダルを開くボタン*/
.modal-open{
	position: fixed;
	display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
	width: 300px;
	height: 50px;
	font-weight: bold;
	color: #fff;
	background: #000;
	margin: auto;
	cursor: pointer;
	transform: translate(-50%,-50%);
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,50%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
  box-sizing: border-box;
  z-index:999;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
	opacity: 1;
	visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 80%;
	width: 80%;
  min-width:400px;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
	position: absolute;
	display: flex;
  align-items: center;
  justify-content: center;
	top: -40px;
	right: -40px;
	width: 40px;
	height: 40px;
	font-size: 40px;
	color: #fff;
	cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
	background: #fff;
	text-align: left;
	padding:3em 4em;
}
.modal-content table{
  width:100%;
  margin-top: 2em;
    border-collapse: collapse;
}
.modal-content h2 {
font-size:1.6em;
text-align:center;}

.modal-content table th {
  background-color:#ccc;
  border:#fff solid 2px;
  width: 30%;
    padding-left: 1em;
  border-left: 2px solid #ccc;
}
.modal-content table td {
border:2px solid #ccc;
border-right:2px solid #fff;}
.modal-content table tr:first-child th {
  border-top:2px #ccc solid;
}

.modal-content table tr:last-child th {
  border-bottom:2px #ccc solid;
}
.modal-content ul {
 list-style:none!important;
  margin-left:0px;
  display:flex;
  padding-left: 0px;
  margin-top:2em;
  justify-content: space-between;
}
.modal-content li {
}

.modal-content li a {
  text-decoration:none;
  padding:.6em 2em;
}
.modal-content li:first-child a {
  background-color: #dedede;
  margin-right:1em;
   text-decoration:none;
}
.modal-content li:last-child a {
  background-color: #f68e00;
  float:right;
  color:#fff;
  font-weight:700;
  text-decoration:none;
}

div.actions {
display:flex!important;
justify-content:center!important;
align-items:center!important;
 margin-top:20px;
}

form input[type=submit], form .hs-button {
      font-size: 18px!important;
    padding: 20px 60px!important;
  background-color:rgb(255 142 0)!important;
}

}
