/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(0px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
  background: rgba(0, 0, 0, 0.7);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */

.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */

.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 20px;

  transform: translate3d(0, 0, 0);

  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}




/* 右上閉じるボタン */
.closeBtn {
	position:absolute;
	display:inline-block;
	top:10px;
	right:10px;
	width:55px;
	height:55px;
	border:0;
	background:url(/images/modal/btn-close.gif) no-repeat 0 0;
	background-size:cover;
	margin:0;
	padding:0;
	cursor:pointer;
}

.close:hover{ }



.remodal p {
	font-size:14px;
}
.remodal p.noteTxt {
	margin-top:50px;
	margin-bottom:20px;
}

.remodal-confirm {
	display:block;
	color:#000;
	line-height:1em;
	text-decoration:none;
	text-align:center;
	background: url(/images/modal/modal-btn01.png) no-repeat 0 0;
	width:300px;
	height:48px;
	margin:0 auto;
	overflow:hidden;
}
.remodal-cancel {
	display:block;
	color:#000;
	line-height:1em;
	text-decoration:none;
	text-align:center;
	background: url(/images/modal/modal-btn02.png) no-repeat 0 0;
	width:300px;
	height:48px;
	margin:0 auto;
	margin-top:10px;
	margin-bottom:20px;
	overflow:hidden;
}
.remodal-confirm:hover,
.remodal-cancel:hover { opacity: 0.6; }
/*
.remodal-confirm:before,
.remodal-cancel:before {
	content:"";
	width:3px;
	height:5px;
	position:relative;
	top:7px;
	background:url(/images/com_ic021.gif) no-repeat;
	padding-right:10px;
}
.remodal-confirm:hover:before,
.remodal-cancel:hover:before {
	content:"";
	width:3px;
	height:5px;
	position:relative;
	top:7px;
	background:url(/images/com_ic021-blue.gif) no-repeat;
	padding-right:10px;
}
*/
a.remodal-confirm,
a.remodal-cancel { color:#fff; text-decoration:none; line-height:50px; font-size:15px; }

a.remodal-confirm:hover,
a.remodal-cancel:hover { color:#fff; text-decoration:none; }


/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;

  border: 0;
}

/* Keyframes
   ========================================================================== */

@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    transform: none;

    opacity: 1;

    filter: blur(0);
  }
}

@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);

    opacity: 1;
  }
  to {
    transform: scale(0.95);

    opacity: 0;

    filter: blur(0);
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */

@media only screen and (min-width: 641px) {
  .remodal {
    max-width:640px;
  }
}

/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
  background: #000;
}

.lt-ie9 .remodal {
  width: 640px;
}
