/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening, .remodal-bg.remodal-is-opened { filter: blur(3px); }
/* Default theme styles of the overlay */

.remodal-overlay { background: rgba(43, 46, 56, 0.9); }
.remodal-overlay.remodal-is-opening, .remodal-overlay.remodal-is-closing { animation-fill-mode: forwards; }
.remodal-overlay.remodal-is-opening { animation: remodal-overlay-opening-keyframes 0.3s; }
.remodal-overlay.remodal-is-closing { animation: remodal-overlay-closing-keyframes 0.3s; }
/* Default theme styles of the wrapper */

.remodal-wrapper { padding: 10px 10px 0; }
/* Default theme styles of the modal dialog */

.remodal {
	color: #777;
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 10px;
	padding: 35px;
	transform: translate3d(0, 0, 0);
	background: #fff;
	line-height: 1.5em;
}
.remodal p{
	margin: 0 0 10px;
}
h2#modalOkNgTitle { font-size:16px; margin-bottom:1em; }
#modalOkNgDesc { font-size:13px; }
#modalOkNgDesc p { margin-bottom:1em; }
.remodal.remodal-is-opening, .remodal.remodal-is-closing { animation-fill-mode: forwards; }
.remodal.remodal-is-opening { animation: remodal-opening-keyframes 0.3s; }
.remodal.remodal-is-closing { animation: remodal-closing-keyframes 0.3s; }
/* Vertical align of the modal dialog */

.remodal, .remodal-wrapper:after { vertical-align: middle; }
/* Close button */

.remodal-close {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	overflow: visible;
	width: 35px;
	height: 35px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	transition: color 0.2s;
	text-decoration: none;
	color: #777;
	border: 0;
	outline: 0;
	background: transparent;
}
.remodal-close:before {
	font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
	font-size: 25px;
	line-height: 35px;
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 35px;
	content: "\00d7";
	text-align: center;
}

/*つくりかた*/
.remodal .clear{ clear:both;}
.remodal h3{
	font-size:20px;
	margin-bottom:5px;
	font-weight: bold;
	}
.remodal .red{ color:#DC3C3C;}
.remodal div.box_step{
	padding:10px 15pxpx;
	border:3px solid #e5e5e5;
	margin:20px auto;
	}
.remodal div.box_step .ttl{
	padding:5px 0 8px 0;
	background:#e5e5e5;
	font-size:16px;
	font-weight:bold;
	}
.remodal ul li.left{
	float:left;
	width:30%;
	margin:1.5%;
	text-align:left;
	}
.remodal ul li.left img{ width:100%;}
.remodal ul li.left span{
	font-weight: bold;
	}

/* Dialog buttons */

.remodal-confirm, .remodal-cancel {
	font-size:14px;
	font: inherit;
	display: inline-block;
	overflow: visible;
	min-width: 110px;
	margin: 0 2px;
	padding: 5px 10px;
	cursor: pointer;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	border: 0;
	outline: 0;
	border-radius: 5px;
}

.remodal-confirm {
	color: #fff;
	background: #8FC31F;
}
.remodal-cancel {
	color: #fff;
	background: #999;
}
.remodal-confirmLogin{
	background: #f39800;
}
/* 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;
}
}
 @keyframes remodal-closing-keyframes {
 from {
 transform: scale(1);
 opacity: 1;
}
 to {
 transform: scale(0.95);
 opacity: 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: 900px; width:70%;}
}
body#user .remodal h2, body#checkout .remodal h2, body#content .remodal h2{
	font-size: 22px;
	margin: 15px 0 20px;
}
@media only screen and (min-width: 641px) {
	.modalEditorMovieListGuide {max-width: 1200px; width:70%; max-height: 100%; }
}
/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay { background: #2b2e38; }
.lt-ie9 .remodal { width: 700px; }


/* ボタン追加
   ========================================================================== */
  .remodalBtn{
  	border-radius: 5px;
    margin: 15px 5px 0;
  }
