@charset "utf-8";


body {
	overflow-y: scroll; /* あってもなくてもどちらでも可 */
}


div#confirm_field {
	width: 100%;
	padding: 10px 0;
	font-size: 15px;
	line-height: 1.8em;
	text-align: left;
}

div#confirm_field {
	display: none;
}

div#confirm_field dl {
	width: 800px;
	margin: 50px auto;
	overflow: hidden;
	text-align: left;
}

div#confirm_field dl dt {
	clear: both;
	width: 32.5%;
	float: left;
	padding: 25px 15px;
	text-align: left;
	overflow: hidden;
	font-weight: 700;
}

div#confirm_field dl dd {
	width: 65%;
	float: right;
	padding: 25px 15px;
}

div#confirm_field dl dt:first-child,
div#confirm_field dl dt:first-child + dd {
	border: none;
}

div#confirm_field p#confirm_submit {
	width: 100%;
	margin: 0 auto 60px auto;
	padding: 15px 0;
	text-align: center;
}

div#confirm_field input[type="button"] {
	padding: 7px 20px;
	margin-right: 10px;
	font-size: 100%;
	color: #ffffff;
	font-family: inherit;
	-webkit-appearance: none;
}

div#confirm_field input#confirm_submit_button {
	width: 270px;
	height: 48px;
	border: 1px solid #014099;
	background: #014099;
	font-size: 100%;
	color: #ffffff;
	font-family: inherit;
	-webkit-appearance: none;
}

div#confirm_field input#confirm_submit_button:hover {
	cursor: pointer;
	background: #FFF;
	color: #014099;
	border: 1px solid #014099;
}

div#confirm_field input#confirm_cancel_button {
	width: 270px;
	height: 48px;
	border: 1px solid #CCC;
	background: #CCC;
	font-size: 100%;
	color: #ffffff;
	font-family: inherit;
	-webkit-appearance: none;
}

div#confirm_field input#confirm_cancel_button:hover {
	cursor: pointer;
	background: #FFF;
	color: #CCC;
	border: 1px solid #CCC;
}


div#confirm_field h2,
div#confirm_field p {
	text-align: left;
}





/* -- responsive ----------------------------------------------------------------------------------------------------------------- */

/* 1000pixel start */
@media screen and ( max-width: 1000px ) {

	div#confirm_field {
		width: 100%;
		font-size: 14px;
	}

	div#confirm_field h2,
	div#confirm_field p {
		text-align: left;
	}

	div#confirm_field dl {
		width: 100%;
		overflow: visible;
	}

	div#confirm_field dl dt {
		display: block;
		font-weight: bold;
		padding: 10px;
		text-align: left;
		width: 100%;
		vertical-align: top;
		border-top: none;
		background: #f6f6f6;
		margin-bottom: 10px;
	}

	div#confirm_field dl dt:before {
		content: "【";
	}

	div#confirm_field dl dt:after {
		content: "】";
	}

	div#confirm_field dl dd {
		width: auto;
		float: none;
		border-top: none;
		padding: 10px;
	}

	div#confirm_field input#confirm_submit_button {
		margin: 0 0 10px 0;
		padding: 0;
	}

		div#confirm_field input#confirm_cancel_button { margin: 0; padding: 0;}

}
/* 1000pixel end */




