/* confirm用
----------------------------------------------- */
.confLoadModal,
.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;
}
.confLoadModal {
	background-color: rgba(255, 255, 255, 0.4);
	justify-content: center;
	align-items: center;
}

.confLoadModal--show,
.confModal--show {
	top: 0;
	z-index: 9999;
}

.confLoadModal__form,
.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: 300px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.05);
}
.confModal--show .confModal__form {
	animation-name: slideIn;
    animation-duration: 200ms;
}
@-webkit-keyframes slideIn {
    from {
        top: 60%;
    }
    to {
        top: 50%;
    }
}
@keyframes slideIn {
    from {
        top: 60%;
    }
    to {
        top: 50%;
    }
}

.confModal__form__close {
	display: block;
	position: absolute;
	right: 0;
	top: -40px;
	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;
}
.confModal__form__cont {
	padding: 20px 10px;
    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;
}

.confLoader {
	width: 70px;
	text-align: center;
}
.confLoader > div {
	width: 18px;
	height: 18px;
	background-color: #CCC;

	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.confLoader .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
.confLoader .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
	0%,
	80%,
	100% {
		-webkit-transform: scale(0)
	}

	40% {
		-webkit-transform: scale(1.0)
	}
}
@keyframes sk-bouncedelay {
	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
}
