/*  ***********************************
		loading
 ***********************************  */

@keyframes spin {
	from {
		transform: rotate(0);
	}

	to {
		transform: rotate(359deg);
	}
}

.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	text-align: center;
	background-color: #fff;
	vertical-align: middle;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: -99;
	opacity: 0;
	transition: all 0.5s ease;
}

.loading.show {
	z-index: 99;
	opacity: 1;
	transition: all 0.5s ease;
}

.cb {
	margin: 0 auto;
	width: 50px;
	height: 50px;
	padding: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: rgb(5, 154, 240);
	background: linear-gradient(0deg,
			rgba(256, 256, 256, 0.1) 20%,
			rgba(5, 154, 240, 1) 100%);
	animation: spin 0.8s linear 0s infinite;
}

.cc {
	width: 100%;
	height: 100%;
	background-color: #000;
	border-radius: 50%;
}

/* class名が.btn-secondary以外の.btn */
.btn:not(.btn-secondary),
.btn:not(.btn-secondary):hover {
	border-radius: 5px;
	background-color: #059af0;
	color: #fff;
}

.btn {
	padding: 10px 20px;
	font-size: inherit;
	transition: all 0.3s ease;
	border-color: transparent;
	font-size: 12px;
	text-decoration: none;
}

.btn:hover {
	color: #fff;
	border-color: transparent;
	box-shadow: 5px 5px 0 #002d47;
}

.btn:focus {
	box-shadow: none;
}

body{
	background-color: #d4d4d4;
	height: 100vh !important;
	display: flex;
	align-items: center;
	height: 100px;
	color: #777;
}

#ad_cf textarea {
	padding: 10px 15px;
	width: 100%;
	min-height: 200px;
}

#ad_cf textarea:focus {
	background-color: #fff;
}

#ad_cf{
	background-color: #e4e4e4;
	border: 1px solid #f0f0f0;
	border-radius: 5px;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
	width: 80vw;
	margin: 0 auto;
	padding: 30px 30px 60px 30px;
	position: relative;
	top: -50px;
}

#dummy{
	position: fixed;
	top: -9999px;
	left: -9999px;
}

#confirmation{
	background: rgba(0, 0, 0, 0.95);
	width: 100%;
	height: 100vh;
	position: fixed;
	z-index: 99;
	display: none;
	top: 0;
	line-height: 100vh;
	text-align: center;
	color: #fff;
}

label:hover{
	cursor: pointer;
}

#submit_btn_box{
	position: absolute;
	bottom: 15px;
	width: 100%;
}

.sending{
	opacity: 0;
}

#si{
	position: absolute;
	top: 50px;
	width: calc(100% - 60px);
}

#indi{
	position: relative;
	width: 66%;
	height: 30px;
	margin: 30px auto;
	background-color: #cfcfcf;
	border-radius: 5px;
	overflow: hidden;
}

#indi:not(.finish)::before {
	position: absolute;
	content: '';
	display: inline-block;
	top: 0px;
	left: -100%;
	width: 20%;
	height: 30px;
	background-color: rgba(256, 256, 256, 0.2);
	border-radius: 5px;
	animation: shiny-bar 3s linear infinite;
}

@keyframes shiny-bar {
	0% {
		left: 0;
	}

	30% {
		left: 100%;
	}

	100% {
		left: 100%;
	}
}

#indi_span{
	height: 30px;
	background-color: #059af0;
	border-radius: 5px;
}

#indi.finish #indi_span{
	background-color: #22c483;
	text-align: center;
	color: #fff;
	line-height: 30px;
}

#indi_per{
	width: 100%;
	text-align: center;
}

#indi_count{
	text-align: center;
}

#info_box{
	position: relative;
	height: 40px;
	overflow: auto;
}

#info {
	position: absolute;
	bottom: 0;
}

#info li{
	height: 40px;
	line-height: 40px;
}

#zip_btn_box{
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 15px;
}
