<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

body {
	overflow-y: scroll;
}

div#confirm_field {
	display: none;
}

div#confirm_field dl {
	margin: 3.4em 0 0;
	overflow: hidden;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

div#confirm_field dl dt {
	clear: both;
	width: 25%;
	float: left;
	border-top: 1px solid #ddd;
	padding: 15px;
	text-align: right;
}

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

div#confirm_field dl dd {
	width: 73%;
	float: right;
	border-top: 1px solid #ddd;
	padding: 15px;
}

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

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

p#form_submit {
	padding: 0;
	border: none;
}

div#confirm_field input[type="button"] {
	transition: all .25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
	cursor: pointer;
	width: 100%;
	padding: 0.8em 1.375em;
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	border-radius: 25px;
	color: #fff;
	line-height: 1.4;
	text-align: center;
	font-weight: 700;
}

div#confirm_field input[type="button"]&amp;:hover {
	background-color: #fff;
}

div#confirm_field input#confirm_submit_button {
	background: #0091ba;
	border: 1px solid #0091ba;
}

div#confirm_field input#confirm_submit_button:hover {
	background: #fff;
	border: 1px solid #0091ba;
	color: #0091ba;
}

div#confirm_field input#confirm_cancel_button {
	background: #e85e5f;
	border: 1px solid #e85e5f;
}

div#confirm_field input#confirm_cancel_button:hover {
	background: #fff;
	border: 1px solid #e85e5f;
	color: #e85e5f;
}


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

/* 640pixel start */
@media screen and (max-width : 640px) {
	div#confirm_field dl {
		overflow: visible;
		width: 100%;
	}

	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 input#confirm_submit_button {
		margin-left: 0;
	}
}

/* 640pixel end */</pre></body></html>