@charset "utf-8";


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


div#confirm_field {
	padding: 10px 0;
	background: #ffffff;
	display: none;
}

div#confirm_field:before {
	content:"";
	display: block;
	padding-top: 80px;
	margin-top: -80px;
}

div#confirm_field .confirm_txt {
	margin: 20px auto;
}

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

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

div#confirm_field dl dd {
	width: 78%;
	float: right;
	border-top: 1px solid #cccccc;
	padding: 40px 0 40px 5%;
}

div#confirm_field dl dt:first-of-type,
div#confirm_field dl dd:first-of-type {
	border-top: none;
}

div#confirm_field p#confirm_submit {
	/* width: 90%; */
	margin: 0 auto;
	padding: 80px 0 15px;
	border-top: 1px solid #cccccc;
	display: flex;
	justify-content: center;
}

div#confirm_field input[type="button"] {
	padding: 22px 87px;
	width: 240px;
	vertical-align: middle;
	line-height: 1;
	border-radius: 50px;
	font-family: inherit;
	-webkit-appearance: none;
	font-size: 100%;
}

div#confirm_field input#confirm_submit_button {
	/* background: #0055C9;
	border: 2px solid #0055C9; */
	background: linear-gradient(-225deg, #8b32e4 0%, #7918f2 48%, #0055c9 100%);
	color: #fff;
	margin-left: 20px;
	font-weight: bold;
}

div#confirm_field input#confirm_submit_button:hover {
	cursor: pointer;
	opacity:0.8;
	/* background-color: #fff;
	color: #0055C9; */
}

div#confirm_field input#confirm_cancel_button {
	background: #F4F4F4;
	border: 2px solid #F4F4F4;
	color: #0055C9;
	font-weight: bold;
}

div#confirm_field input#confirm_cancel_button:hover {
	cursor: pointer;
	background-color: #fff;
	border-color: #efefef;
}








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

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

/* div#confirm_field {
	width: 95%;
} */

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

div#confirm_field dl {
	overflow: visible;
}

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

div#confirm_field p#confirm_submit {
	flex-direction: column-reverse;
}

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

div#confirm_field input[type="button"] {
	padding: 20px 0;
	width: 67vw;
}

}
/* 1000pixel end */




