@charset "utf-8";


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


div#confirm_field {
	width: 100%;
	max-width: 960px;
	margin: 0 auto 60px;
	padding: 10px 0;
	background: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 20px;
	box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
	font-size: 95%;
	line-height: 1.8;
}

div#confirm_field {
	display: none;
}

div#confirm_field h2 {
	width: 90%;
	margin: 0 auto;
	padding: 15px 0;
	font-size: 135%;
	font-weight: bold;
	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 {
	display: flex;
	justify-content: center;
	width: 90%;
	margin: 0 auto;
	padding: 20px 0;
	border-top: 1px solid #cccccc;
}

div#confirm_field input[type="button"] {
	-webkit-appearance : none;
    padding: 15px 100px;
    border: 4px #000 solid;
    border-radius: 100px;
    background: linear-gradient(to right, #dd3d0b 0%, #fc5e1e 50%, #fc5e1e 70%, #dd3d0b 100%);
    color: #fff;
	font-size : 20px;
	font-weight: 700;
	cursor: pointer;
}

div#confirm_field input#confirm_submit_button:hover {
	filter: brightness(1.1);
}

div#confirm_field input#confirm_cancel_button {
	margin-left: 20px;
	background: #efefef;
	color: #000;
}

div#confirm_field input#confirm_cancel_button:hover {
	filter: brightness(1.1);
}








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

/* 640pixel start */
@media screen and ( max-width: 640px ) {
	section#entry .container {
		width: 100%;
		padding: 0;
	}

	div#confirm_field {
		border-radius: 0;
		font-size: 100%;
		box-shadow: none;
	}
	
	div#confirm_field h2 {
		font-size: 16px;
		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 input[type="button"] {
		width: 160px;
	    padding: 10px;
	    border: 3px #000 solid;
		font-size: 18px;
	}
	div#confirm_field input#confirm_cancel_button {
		margin-left: 10px;
	}

}




