@charset "utf-8";
/* モーダルCSS */
.modalArea {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}
.modalContents img{
	width: 600px;
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  padding: 20px;
  background-color: #fff;
}

.closeModal {
	right: 1rem;
  cursor: pointer;
  text-align: center;
  background: black;
  color: white;
  padding: 10px;
	width: 40%;
  font-size: 16px;
  box-shadow: 1px 1px 5px #5a5a5a;
  margin: 15px auto 0;
	transition: 0.2s;
}
.closeModal:hover{
	opacity: 0.8;
	transition: 0.2s;
}
.closeModal__arrow{
	position: relative;
  display: inline-block;
  padding-left: 22px;
  color: #333;
  text-decoration: none;
	margin-left: 10px;
}
.closeModal__arrow:before {
  content: '';
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -15px;
}
.closeModal__arrow:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent black;
  position: absolute;
  top: 50%;
	left: 7px;
  margin-top: -10px;
}
button {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #282828;
  border-radius: 2px;
  cursor: pointer;
}
