/**********************
モーダルウィンドウ
***********************/
.md-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .7;
  z-index: 9999;
}

.md-contents{
  	display: none;
	vertical-align: middle;
	position: fixed;
	top: 20%;
	left: 50%;
	width: 100%;
	max-width: 900px;
	height: auto;
	overflow: hidden;
	transform: translateX(-50%);
	z-index: 10000;
}



.md-inner{
	background: #fff;
	width:100%;
	margin: 0 auto;
}
.md-inner p{
	padding: 2em;
}



.md-xmark{
  position: absolute;
  top: 20px;
  right: 20px;
  width: 25px;
  height: 22px;
  z-index: 9999;
  cursor: pointer;
}

.md-xmark span {
  height: auto;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
}

.md-xmark span:nth-of-type(1) {
  top: 0;
  transform: translateY(10px) rotate(-45deg);
}


.md-xmark span:nth-of-type(2) {
  bottom: 0;
  transform: translateY(-10px) rotate(45deg);
}
