@charset "utf-8";


div#confirm_field {
	width: 1080px;
	margin: 0 auto;
	padding: 20px 0;
	background: #f9f9f9;
  border-radius: 5px;
	font-size: 16px;
	line-height: 1.8;
}

div#confirm_field {
	display: none;
}

div#confirm_field h2 {
	width: 90%;
	margin: 0 auto;
	padding: 30px 0;
  font-size: 20px;
	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%;
}

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

div#confirm_field input[type="button"] {
}

div#confirm_field input#confirm_submit_button {
  display: block;
	padding: 15px 80px;
	border-radius: 5px;
	background: #024bbc;
	font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.2em;
	color: #fff;
	font-family: inherit;
	-webkit-appearance: none;
	cursor: pointer;
  margin: auto;
}

div#confirm_field input#confirm_submit_button:hover {
	background: #222;
}

div#confirm_field input#confirm_cancel_button {
  display: block;
	padding: 10px 40px;
	border-radius: 5px;
	background: #fff;
  border: 1px solid #ddd;
	font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.2em;
	color: #222;
	font-family: inherit;
	-webkit-appearance: none;
	cursor: pointer;
  margin: 20px auto 0;
}

div#confirm_field input#confirm_cancel_button:hover {
	opacity: 0.5;
}








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

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

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

div#confirm_field h2 {
  font-size: 18px;
	text-align: left;
  padding: 10px 0 20px
}

div#confirm_field dl {
	overflow: visible;
}

div#confirm_field dl dt {
  width: auto;
  float: none;
  text-align: left;
  padding: 15px 0 5px;
  font-size: 14px;
  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;
	border-top: none;
	padding: 0px 0px 15px;
}

}
/* 1000pixel end */




