/* confirm用
----------------------------------------------- */
.confLoadModal,
.confModal--backoff,
.confModal--long,
.confModal {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	z-index: -9999;
	top: -200%;
	left: 0;
}

.confModal {
	background-color: rgba(0, 0, 0, 0.4);
	text-align: center;
	overflow: hidden;
}
.confModal--backoff {
	background-color: transparent;
	text-align: center;
	overflow: hidden;
}
.confModal--long {
	background-color: rgba(0, 0, 0, 0.4);
	text-align: center;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}
.confLoadModal {
	background-color: rgba(255, 255, 255, 0.4);
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.confLoadModal--show,
.confModal--show {
	top: 0;
	z-index: 9999;
}

.confLoadModal__form,
.confModal__form--mini,
.confModal__form {
	position: absolute;
	display: inline-block;
	margin: 0;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.confModal__form {
	background-color: #FFF;
	min-width: 340px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.05);
}
.confModal__form--mini {
	background-color: rgba(0,0,0,0.6);
	width: 180px;
	height: 180px;
	font-size: 14px;
	border-radius: 10px 10px 10px 10px;
	color: #FFF;
	vertical-align: middle;
}


.confModal--show .confModal__form
{
}

@media only screen and (max-width:640px) {
	.confModal__form {
		min-width: 260px;
	}
}

.confModal__form__close {
	display: block;
	position: absolute;
	right: 8px;
	top: 8px;
	height: 40px;
	width: 40px;
	cursor: pointer;
	transform: rotate(-45deg);
}
.confModal__form__close__btn {
	position: relative;
	display: block;
	width: 80%;
	height: 80%;
	margin: 10%;
}
.confModal__form__close__btn::before,
.confModal__form__close__btn::after {
	content: "";
	position: absolute;
	display: block;
	background-color: #000;
}
.confModal__form__close__btn::before {
	width: 100%;
	height: 2px;
	top: 50%;
	left: 0;
	margin: -1px 0 0 0;
}
.confModal__form__close__btn::after {
	height: 100%;
	width: 2px;
	top: 0;
	left: 50%;
	margin: 0 0 0 -1px;
}

.confModal__form__title {
	padding: 10px;
	font-size: 14px;
	background: #333;
	color: #FFF;
	font-weight: bold;
}

.confLoadModal__form__cont {
	padding: 20px 10px;
	font-size: 12px;
	max-width: 640px;
}
.confModal__form__cont {
	padding: 30px 30px;
    font-size: 12px;
	text-align: left;
	line-height: 1.2em;
}

.confModal__form__btn {
	display: flex;
	flex-wrap: nowrap;
	text-align: center;
	border-top: 1px solid #DDD;
}
.confModal__form__btn__ok,
.confModal__form__btn__no,
.confModal__form__btn__yes {
	cursor: pointer;
	width: 100%;
	padding: 15px 0;
	color: #333;
	background: #F5F5F5;
}

.confModal__form__btn > a + a {
	border-left: 1px solid #DDD;
}

	/* smartphone横(landscape) */
	@media only screen and (max-width:640px) {
		.confModal__form__cont {
			padding: 20px 20px;
		}
    }

.confLoader {
	width: 90px;
	text-align: center;
}
.confLoader > div {
	width: 12px;
	height: 12px;
	margin: 0 3px;
	background-color: #cd365d;

	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 0.8s infinite linear both;
	animation: sk-bouncedelay 0.8s infinite linear both;
	-webkit-animation-delay: -0.40s;
	animation-delay: -0.40s;
}
.confLoader .bounce1 {
	-webkit-animation-delay: -0.02s;
	animation-delay: -0.08s;
}
.confLoader .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
.confLoader .bounce3 {
	-webkit-animation-delay: -0.24s;
	animation-delay: -0.24s;
}
.confLoader .bounce4 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
@-webkit-keyframes sk-bouncedelay {
	0%,
	60% {
		-webkit-transform: scale(0.4);
		transform: scale(0.4);
	}
	80% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
	100% {
		-webkit-transform: scale(0.4);
		transform: scale(0.4);
	}
}
@keyframes sk-bouncedelay {
	0%,
	60% {
		-webkit-transform: scale(0.4);
		transform: scale(0.4);
	}
	80% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
	100% {
		-webkit-transform: scale(0.4);
		transform: scale(0.4);
	}
}
