@charset "utf-8";


body {
	overflow-y: scroll; /* あってもなくてもどちらでも可 */
}


div#confirm_field {
	width: 960px;
	margin: 50px auto;
	padding: 10px 0;
	background: #ffffff;
	font-size: 0.9rem;
	line-height: 1.8;
}

div#confirm_field {
	display: none;
}

div#confirm_field h2 {
	width: 90%;
	margin: 0 auto;
	padding: 15px 0;
	font-size:1rem;
	font-weight: bold;
	text-align: center;
}

div#confirm_field dl {
	width: 90%;
	margin: 0 auto;
	overflow: hidden;
}

div#confirm_field dl dt {
	clear: both;
	width: 30%;
	float: left;
	border-top: 1px solid #cccccc;
	padding: 15px 0;
	text-align: right;
}

div#confirm_field dl dd {
	width: 65%;
	float: right;
	border-top: 1px solid #cccccc;
	padding: 15px 0 15px 5%;
	text-align: left;
}

div#confirm_field p#confirm_submit {
	width: 90%;
	margin: 0 auto;
	padding: 2rem 0;
	border-top: 1px solid #cccccc;
}

div#confirm_field input[type="button"] {
	padding: 7px 20px;
	font-size: 100%;
	color: #ffffff;
	font-family: inherit;
	-webkit-appearance: none;
}

div#confirm_field input#confirm_submit_button {
	background: black;
	border: 1px solid black;
	color: white;
	margin-left: 1rem;
}

div#confirm_field input#confirm_submit_button:hover {
	cursor: pointer;
	background: gray;
	border: 1px solid gray;
}

div#confirm_field input#confirm_cancel_button {
	background: white;
	border: 1px solid black;
	margin-right: 1rem;
	color: black;
}

div#confirm_field input#confirm_cancel_button:hover {
	cursor: pointer;
	background: silver;
	border: 1px solid silver;
}








/* -- responsive ----------------------------------------------------------------------------------------------------------------- */

/* 1000pixel start */
@media screen and ( max-width: 1000px ) {

div#confirm_field {
	width: 95%;
	font-size: 100%;
}

div#confirm_field h2 {
	text-align: left;
	font-size: 0.9rem;
}

div#confirm_field dl {
	overflow: visible;
}

div#confirm_field dl dt {
	width: auto;
	float: none;
	text-align: left;
	padding: 15px 0 0;
	font-size: 0.8rem;
}

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: 0px 0 15px 0px;
		font-size: 0.8rem;
}

div#confirm_field input#confirm_submit_button {
	margin-left: 0;
}

}
/* 1000pixel end */
