@charset "utf-8";
/*------------------------------------------------------------------------------
 
 デリバリー選択フォーム [delivery form]
 
------------------------------------------------------------------------------*/
/* フォーム : form
------------------------------------------------------------- */
.delivery_contents {
	position: relative;
	max-width: 1200px;
	margin: 40px auto;
	font-size: 110%;
}
.delivery_form_area {
	position: relative;
	padding: 15px;
}
.set_form {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #CCC;
}
.set_form-caption {
	margin-right: 1em;
	margin-bottom: 8px;
	white-space: nowrap;
}
.set_form-field {
	position: relative;
	flex: 1;
}
.set_form-text {
	width: 100%;
	margin-top: 15px;
}
.set_form .req {
	display: inline-block;
	margin-left: .5em;
	padding: 2px 8px;
	border-radius: 2px;
	background: #edd5d5;
	color: #C00;
	font-size: 76%;
	font-weight: normal;
	font-style: normal;
}
.set_form-text p {
	margin-bottom: .5em;
}
.set_form-text p:last-child {
	margin-bottom: 0;
}
.set_form-text .attention {
	color: #cc0000;
}
/* form コントロール */
.set_form-field input[type="text"] {
	position: relative;
	padding: 5px;
	box-sizing: border-box;
	border: 1px solid #CCC;
	border-radius: 3px;
	font-size: 110%;
}
.set_form-field select {
	display: inline-block;
	min-width: 10em;
	min-height: 1.75em;
	padding: 0 .5em;
	border: 1px solid #CCC;
	border-radius: 4px;
	font-size: 110%;
}
.set_form-field ::placeholder {
	color: #999;
}
.set_size_list li {
	display: inline-block;
	margin-bottom: 4px;
}
.set_size_list input {
	width: 5em;
	margin-right: .4em;
}
/* error
------------------------------------------------------------- */
.set_form-field .error_text, .send_error_area .error_text {
	display: none;
	color: #C00;
	font-size: 1.5rem;
	transition: 0.4s;
}
.set_form-field .error_text.error {
	display: block;
	margin-top: .5em;
	padding: 4px 8px;
	background: rgba(236, 218, 221, .75);
}
.send_error_area .error_text.error {
	display: block;
	margin-bottom: 15px;
	background: rgba(255, 255, 255, .35);
}
/* send error area */
.send_error_area {
	margin: 0 auto;
}
/* datepicker */
.datepicker-show {
	position: relative;
}
.datepicker-show #ui-datepicker-div {
	top: 0 !important;
	left: 0 !important;
}
/* 結果 : result
------------------------------------------------------------- */
.result_block {
	margin-bottom: 20px;
	text-align: center;
}
.result_price .label {
	display: inline-block;
	font-size: 1.25rem;
	font-weight: bold;
}
.result_price .prices {
	display: inline-block;
	margin-left: .5em;
	color: #cc0000;
	font-size: 1.5em !important;
}
/* 送信 : form
------------------------------------------------------------- */
/* test用 */
.send_form.active .send_inner {
	background: rgba(234, 207, 207, 0.4);
}
/* 表示確認用 */
.send_inner {
	position: relative;
	/* margin: 0 auto 20px;
	padding: 20px;
	background: #EEE;*/
}
.send_inner input[type="text"] {
	display: block;
	width: 100%;
	margin-bottom: 10px;
	background: rgba(255, 255, 255, .5);
	border: none;
}
/* btn */
.sent_btn {
	margin-bottom: 40px;
	text-align: center;
}
.sent_btn button {
	cursor: pointer;
	position: relative;
	display: inline-block;
	width: 400px;
	max-width: 90%;
	height: auto;
	padding: 15px 10px;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	background: #cc3333;
	color: #FFF;
	font-family: inherit;
	font-size: 2rem;
	font-weight: inherit;
}
.sent_btn button::before {
	content: '';
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 8px;
	background: url(https://newotani2021.itembox.design/item/images/products/common/icon-cart.svg) no-repeat;
	background-size: 100%;
	vertical-align: middle;
}
.sent_btn button:hover {
	opacity: .65;
}
/* 但し書き */
.set_form.proviso span {
	font-size: 0.8em;
}
/* /////////////////////////////////////////////////////////////////////////////

 デバイス別 : スマホファースト / スマホのみスワイプはここで指定 / PC分岐

///////////////////////////////////////////////////////////////////////////// */
@media only screen and (max-width: 768px) {
	.sp_hide {
		display: none;
	}
}
@media only screen and (min-width: 769px) {
	.pc_hide {
		display: none;
	}
	.set_form {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
	}
	.set_form-caption {
		width: 19em;
		margin-bottom: 0;
	}
	/* form */
	.result_price .label {
		font-size: 1.75rem;
	}
	.result_price .prices {
		margin-left: .5em;
		font-size: 2.5rem;
	}
}