@charset "utf-8";


/* -- body -------------------------------------------------------------------------------- */

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




/* -- div#confirm_field, dl, dt, dd -------------------------------------------------------------------------------- */

div#confirm_field * {
	margin: 0;
	padding: 0;
	box-sizing: content-box;
}


div#confirm_field {
	width: 1000px;
	margin: 50px auto;
	background: #ffffff;
	border-radius: 7px;
	line-height: 1.8;
	display: none;
}

div#confirm_field h2 {
	width: 100%;
	margin: 0 auto 30px;
	padding: 25px 0;
	border-bottom: 1px solid #cccccc;
	font-size: 18px;
	font-weight: bold;
}

div#confirm_field dl {
	width: 90%;
	margin: 0 auto;
	border-bottom: 1px solid #cccccc;
}

div#confirm_field dl:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

div#confirm_field dl dt {
	width: 30%;
	float: left;
	padding: 25px 0;
	text-align: right;
}

div#confirm_field dl dd {
	width: 65%;
	float: right;
	padding: 25px 0 25px 5%;
}




/* -- button -------------------------------------------------------------------------------- */

div#confirm_field p#confirm_submit {
	width: 90%;
	margin: 0 auto;
	padding: 25px 0;
}

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

div#confirm_field input#confirm_submit_button {
	background: #222;
	border: 1px solid #222;
	margin-left: 35%;
}

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

div#confirm_field input#confirm_cancel_button {
	background: #7f84b9;
	border: 1px solid #7f84b9;
	margin-left: 20px;
}

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








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

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


/* -- div#confirm_field, dl, dt, dd -------------------------------------------------------------------------------- */

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

div#confirm_field h2 {
	text-align: left;
}

div#confirm_field dl dt {
	width: auto;
	float: none;
	padding: 25px 0 5px;
	text-align: left;
	font-weight: bold;
}

div#confirm_field dl dt:before {
	content: "【";
}

div#confirm_field dl dt:after {
	content: "】";
}

div#confirm_field dl dd {
	width: auto;
	float: none;
	padding: 0px 0 25px 0px;
}




/* -- button -------------------------------------------------------------------------------- */

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


}
/* 1000pixel end */


/* RESPONSIVE MOBILE FIXES */
@media only screen and (max-width: 991px), only screen and (max-device-width: 991px) {
	div#confirm_field {
		margin: 0px auto;
	}
}


/* RESPONSIVE MOBILE FIXES */
@media only screen and (max-width: 767px), only screen and (max-device-width: 767px) {
	div#confirm_field h2 {
		font-size: 16px;
	}
	div#confirm_field dl dt {
		font-size: 15px;
	}
	
}






