@charset "utf-8";

div#confirm_field {
	width: 70%;
	margin: 50px auto;
	padding: 10px 0;
	background: #ffffff;
	border-radius: 7px;
	font-size: 95%;
	line-height: 1.8;
	margin-top: -138px;
}

div#confirm_field {
	display: none;
}

div#confirm_field dl{
	flex-wrap: wrap;
	display: flex;
	align-items: flex-end;
	max-width: 650px;
	width: 90%;
	margin: 0 auto;
}

div#confirm_field dl dt{
	width: 40%;
	background-color: #f0f0f0;
	padding: 5px 10px;
	margin-right: 10px;
	margin-bottom: 10px;
}

div#confirm_field dl dd{
	width: 50%;
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom: 1px solid #f0f0f0;
}

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

div#confirm_field h2 br{
	display: none;
}


div#confirm_field p#confirm_submit {
	margin: 0 auto;
	padding: 15px 0;
	text-align: center;
	display: flex;
	justify-content: center;
}

div#confirm_field input[type="button"] {
	color: #fff;
    width: 249px;
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    border-radius: 0px;
    margin: 0 5px;
    
}

div#confirm_field input#confirm_submit_button {
	cursor: pointer;
 	background: #01046E;
 	color: #fff;
 	font-size: 18px;
 	font-weight: bold;
 	box-shadow: 0 3px 6px rgb(0 0 0 / 10%);
 	padding: 10px 0;
}

div#confirm_field input#confirm_submit_button:hover {
	opacity: .85;
}

div#confirm_field input#confirm_cancel_button {
	background: #ccc;
	border: 1px solid #ccc;
	margin-right: 20px;
	cursor: pointer;
}

div#confirm_field input#confirm_cancel_button:hover {
	opacity: .85;
}


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

	div#confirm_field {
		margin-bottom: 0;
		width: 100%;
	}

	div#confirm_field dl{
		display: flex;
		justify-content: space-between;
	}

	div#confirm_field dl dt{
		width: 100%;
		margin-bottom: 10px;
	}

	div#confirm_field dl dd{
		width: 100%;
		margin-bottom: 20px;
	}

	div#confirm_field h2 {
		width: 100%;
		margin: 0 auto;
		padding: 15px 0;
		font-size: 4vw;
		margin-bottom: 20px;
		font-weight: bold;
		text-align: center;
		line-height: 1.3;
	}

	div#confirm_field h2 br{
		display: block;
	}


	div#confirm_field p#confirm_submit {
		margin: 0 auto;
		padding: 15px 0;
		text-align: center;
		display: block;
		width: 45%;
	}

	div#confirm_field input#confirm_cancel_button {
		margin-right: 0px;
		margin-bottom: 20px;
	}


}








