@charset "UTF-8" ;

/********************************************************************************

https://syncer.jp/jquery-modal-window

********************************************************************************/


.modal-content {
	width: 90%;
  max-width: 1200px;
  max-height: 90vh;
	margin: 0 auto;
	padding: 50px;
	background: #fff;
	position: fixed;
	display: none;
	z-index: 22222;
  overflow-y: scroll;
}
.modal-content h5{
	font-size: 2.2rem;
  margin-bottom: 15px;
  text-align: left;
}

#modal-overlay{
	z-index: 11111;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120%;
	background-color: rgba(0,0,0,0.75);
}



.button-link {
  width: 50px;
  height: 50px;
	text-decoration: none;
  position: absolute;
  top: 0;
  right: 0;
}
.button-link::before{
  display: block;
  position: absolute;
  content: "";
  width: 25px;
  height: 1px;
  top: 50%;
  left: 25%;
  transform: rotate(-45deg);
  background: #323246;
  transition: .3s;
}
.button-link::after{
  display: block;
  position: absolute;
  content: "";
  width: 25px;
  height: 1px;
  top: 50%;
  left: 25%;
  transform: rotate(45deg);
  background: #323246;
  transition: .3s;
}
 
.button-link:hover {
	cursor: pointer;
}
