@CHARSET "UTF-8";
/*==========================================
 form
===========================================*/
#form {
	max-width: 768px;
	margin: 0 auto;
}
#form .alert {
	color: #c00;
	font-size: 0.8rem;
	font-weight: 700;
	padding: 4px 15px;
}
#form dl {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 10px;
	text-align: left;
}
#form dt,
#form dd {
	width: 100%;
	padding: 3px;
}
#form dt {
	font-size: 0.9rem;
	font-weight: 600;
}
#form .title {
	font-size: 0.8rem;
	font-weight: 600;
}
#form input[type='text'],
#form input[type='number'],
#form input[type='email'],
#form input[type='tel'],
#form textarea,
#form select {
	border: 1px solid #cccccc;
	border-radius: 10px;
	padding: 8px 15px;
}
.must {
	padding: 2px 5px;
	margin-left: 10px;
	color: #b22222;
	border: solid 1px #b22222;
	border-radius: 5px;
	font-size: 0.7rem;
	font-weight: 600;
}
#form .flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
#form .item_details .box {
	display: flex;
	justify-content: space-between;
	margin: 10px 0;
}
#form .item_details .box div {
	width: 33%;
}
#form .desired_date div.child {
	margin-bottom: 10px;
}
#form #item_info {
	min-height: 130px;
}
#form .agree_link {
	display: block;
	color: #b22222;
	font-size: 0.9rem;
	text-decoration: underline;
}
#form .button a {
	display: block;
	margin: 10px;
}
.button a.btn {
	width: 300px;
}
.thanks {
	font-size: 1.5rem;
	padding: 20px 0;
}
.thanks-text {
	padding: 20px 0;
}
.retid {
	width: 500px;
	margin: 0 auto;
	padding: 30px 0;
	color: #fff;
	background: #3f3f3f;
	border-radius: 10px;
}
.retid .heading {
	font-size: 1.2rem;
	font-weight: 600;
}
.retid .id {
	width: 80%;
	margin: 0 auto;
	padding: 10px;
	color: #514f4e;
	background: #fff;
	border-radius: 10px;
	font-weight: 600;
}
@media only screen and (max-width: 1100px) {
	
}
@media only screen and (max-width: 768px) {
	#form #birthday select {
		width: 25%;
	}
	#form .item_details .box {
		flex-direction: column;
	}
	#form .item_details .box div {
		width: 100%;
	}
	#form #item_info {
		min-height: 200px;
	}
	#form .button {
		flex-direction: column-reverse;
	}
	.thanks {
		font-size: 1.2rem;
	}
	.thanks-text {
		padding: 20px 10px;
		font-size: 0.8rem;
		text-align: left;
	}
	.retid {
		width: 90%;
	}
}
@media only screen and (max-width: 428px) {
	
}


/*==========================================
 radio
===========================================*/
.radio {
	display: inline-block;
	position: relative;
	padding: 5px 30px;
	cursor: pointer;
}
.radio input {
	opacity: 0;
}
.radio span.image {
	display: block;
	position: absolute;
	left: 0;
	top: 7px;
	width: 20px;
	height: 20px;
	background: url(../img/icon/image_radio.png) 0 0 no-repeat;
	background-size: 20px auto;
}
.radio input:checked + .image {
	background-position: 0 -20px;
}
.radio span.text {
	font-size: 0.9rem;
	font-weight: 500;
}
@media only screen and (max-width: 768px) {
	.radio {
		padding: 5px 15px 5px 25px;
	}
	.radio span.text {
		font-size: 0.8rem;
	}
}

/*==========================================
 checkBox
===========================================*/
.checkbox {
	position: relative;
	display: block;
	min-width: 120px;
	padding: 5px 30px;
	cursor: pointer;
}
.checkbox input {
	opacity: 0;
}
.checkbox span.image {
	display: block;
	position: absolute;
	left: 0;
	top: 7px;
	width: 18px;
	height: 18px;
	background: url(../img/icon/image_checkbox.png) 0 0 no-repeat;
	background-size: 18px auto;
}
.checkbox input:checked + .image {
	background-position: 0 -18px;
}
.checkbox .text {
	font-size: 0.9rem;
	font-weight: 500;
}
@media only screen and (max-width: 768px) {
	.checkbox {
		min-width: 110px;
	}
	.checkbox span.image {
		top: 8px;
	}
	.checkbox .text {
		font-size: 0.8rem;
	}
}

/*==========================================
 step
===========================================*/
.step {
	list-style-type: none;
	display: table;
	width: 768px;
	padding: 0;
	margin: 0 auto 10px;
	overflow: hidden;
}
.step li {
	display: table-cell;
	position: relative;
	background: #f5f5f5;
	padding: 1em 0.5em 1em 1.6em;
	font-weight: 600;
}
.step li:last-child {
	padding-right: 1.0em;
}
.step li:last-child:before,
.step li:last-child:after {
	display: none;
}
.step li:before,
.step li:after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	margin: auto;
}
.step li:before {
	top: -13px;
	right: -1em;
	border-style: solid;
	border-color: transparent transparent transparent #fff;
	border-width: 40px 0 40px 1em;
	z-index: 10;
}
.step li:after {
	top: -13px;
	right: -.8em;
	border-style: solid;
	border-color: transparent transparent transparent #f5f5f5;
	border-width: 40px 0 40px 1em;
	z-index: 10;
}
.step li.is-current {
	background: #27acd9;
	color: #fff;
	font-weight: bold;
}
.step li.is-current:after {
	border-color: transparent transparent transparent #27acd9;
}
@media only screen and (max-width: 1100px) {
	
}
@media only screen and (max-width: 768px) {
	.step {
		width: 100%;
	}
}
@media only screen and (max-width: 428px) {
	
}




