@charset "utf-8";

/* -- div#confirm_field, dl, dt, dd -------------------------------------------------------------------------------- */
div#confirm_field * {
	margin: 0;
	padding: 0;
	color: #222222;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
div#confirm_field {
	width: 1000px;
	margin: 50px auto;
	background: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 7px;
	box-shadow: 0 0 7px rgba( 0, 0, 0, 0.2 );
	line-height: 1.8;
	display: none;
}
div#confirm_field h2 {
	width: 90%;
	margin: 0 auto;
	padding: 25px 0;
	border-bottom: 1px solid #cccccc;
	font-size: 26px;
	font-weight: 800;
	text-align: center;
}
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;
}
div#confirm_field dl dd {
	width: 65%;
	float: right;
	padding-top: 25px;
	padding-right: 0;
	padding-left: 20px;
	padding-bottom: 25px;
}

/* -- button -------------------------------------------------------------------------------- */
div#confirm_field p#confirm_submit {
	width: 90%;
	margin: 0 auto;
	padding: 25px 0;
}
div#confirm_field input[type="button"] {
	padding-top: 15px;
	padding-bottom: 15px;
	border-radius: 5px;
	font-size: 16px;
	color: #ffffff;
	font-family: inherit;
	-webkit-appearance: none;
	font-weight: 700;
}
div#confirm_field input#confirm_submit_button {
	background: #000000;
	border: 1px solid #000000;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	width: 70%;
}
div#confirm_field input#confirm_submit_button:hover {
	cursor: pointer;
	background: #191919;
	border: 1px solid #191919;
}
div#confirm_field input#confirm_cancel_button {
	background: #888888;
	border: 1px solid #888888;
	margin-left: 20px;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	width: calc(30% - 25px);
}
div#confirm_field input#confirm_cancel_button:hover {
	cursor: pointer;
	background: #666666;
	border: 1px solid #666666;
}








/* ↓↓↓↓↓↓↓↓↓↓ ---以下スマホ--- ↓↓↓↓↓↓↓↓↓↓ */


@media screen and (max-width: 768px) {

/* -- 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-top: 10px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 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-top: 0px;
	padding-right: 0;
	padding-left: 0px;
	padding-bottom: 10px;
}

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

div#confirm_field input#confirm_submit_button {
	width: 100%;
	margin-bottom: 15px;
}
div#confirm_field input#confirm_cancel_button {
	margin-left: 0px;
	width: 100%;
}

}
