@charset "UTF-8";
/* CSS Document */


/* =================================================================

	modal

================================================================= */
.modal_overlay {
  position: fixed;
  top: -10px;
  right: 0;
  bottom: -10px;
  left: 0;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}
.modal_overlay.is-show {
  opacity: 1;
  visibility: visible;
}
.is-animation .modal_overlay {
  -webkit-transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
}
.modal_wrap {
  display: table;
  width: 100%;
  height: 100%;
  padding: 10px 0;
}
.modal_wrap img {
	display: block;
}
.modal_inner {
  display: table-cell;
  padding: 32px 20px 20px;
  vertical-align: middle;
}
.modal_contents {
  position: relative;
  width: 65%;
  max-width: 900px;
  margin: 0 auto;
}
.modal_contents img {
  width: 100%;
}
.modal_bnr a {
  display: block;
}
.modal_bnr a:hover {
  opacity: .9;
}
.modal_close {
  position: absolute;
  top: 0;
  right: -100px;
  width: 80px;
  cursor: pointer;
	background-color: transparent;
	border: none;
	padding: 0;
}
.modal_close:hover {
  opacity: 0.8;
}




@media only screen and (max-width: 750px) {
  .modal_contents {
    width: auto;
  }
  .modal_close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 100px;
    cursor: pointer;
  }
}

