/* Markup Modal
<div class="simple-modal" id="simple-modal">
  <div class="simple-modal-header">
    <a class="close" href="#">×</a>
    <h1>SimpleModal Title</h1>
  </div>
  <div class="simple-modal-body">
    <div class="contents">
      <p>
        Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
      </p>
    </div>
  </div>
  <div class="simple-modal-footer">
    <a class="btn primary" href="#">Primary</a>
    <a class="btn secondary" href="#">Secondary</a>
  </div>
</div>
 */
/* Variable */
/* Overlay style */
#simple-modal-overlay {
  position: fixed;
  display: block;
  z-index: 99998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	background-color: #000;
	background-position: center center;
	background-repeat: no-repeat;
}
.simple-modal {
  width: 500px;
  left: auto;
  top: auto;
  position: absolute;
  position: fixed;
  margin: 0;
  color: #808080;
  background-color: #fff;
  z-index: 99999;
  overflow: auto;
}
.simple-modal .simple-modal-body {padding: 20px;}

@media screen and (max-width: 783px) {
.simple-modal {
width: 100%;
left: auto;
top: auto;
position: absolute;
position: fixed;
margin: 0;
color: #808080;
background-color: #fff;
z-index: 99999;
}
/*/スマホ*/
}

/*
.simple-modal a.close {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #999;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: normal;
  line-height: 10px;
  text-decoration: none;
}
.simple-modal a.close:hover {
  color: #444;
}
*/

.simple-modal .simple-modal-body div.contents {
  overflow: hidden;
}
/* .simple-modal .simple-modal-body p {
  font-size: 13px;
  font-weight: normal;
  color: #606060;
  line-height: 18px;
}
.simple-modal .simple-modal-body p img {
  display: block;
  margin: 0 auto 10px auto;
} */

/* Draggable style */
.simple-modal.draggable .simple-modal-header:hover {
  cursor: move;
  background-color: #f8f8f8;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
/* Loading style */
.simple-modal.loading .simple-modal-body {
  min-height: 60px;
  background: transparent url("../images/loader.gif") no-repeat center center;
}
.simple-modal.loading .simple-modal-body div.contents {
  display: none;
}
.simple-modal.loading .close {
  display: none;
}
/* Hide header */
/* .simple-modal.hide-header .simple-modal-header {
  display: none;
} */
/* Hide header */
/* .simple-modal.hide-footer .simple-modal-footer {
  display: none;
} */

.btn_close{
	/* float: right;
	text-align: right;
	margin: 0;
	padding-bottom: 15px; */
	/*border:solid 1px #ff0000;*/
}