@charset "utf-8";


body{
	overflow-y : scroll;
}


div#confirm_field{
	/*width : 960px;*/
	margin : 50px auto;
	padding : 10px 0;
	/*background : #ffffff;
	border : 1px solid #cccccc;
	border-radius : 7px;
	box-shadow : 0 0 7px rgba( 0, 0, 0, 0.2 );*/
}

div#confirm_field{
	display : none;
}

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

div#confirm_field dl{
	width : 100%;
	margin : 0 auto;
	overflow : hidden;
}

div#confirm_field dl dt{
	clear : both;
	width : 35%;
	float : left;
	border-top : 1px solid #cccccc;
	padding : 25px 10px;
	/*text-align : right;*/
	background-color: #f9f8ef;
}

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

div#confirm_field p#confirm_submit{
	width : 100%;
	margin : 0 auto;
	padding : 15px 0;
	border-top : 1px solid #cccccc;
	margin: 0;
	box-sizing: border-box;
}

div#confirm_field input[type="button"]{
	padding : 9px 15px;
	vertical-align : middle;
	line-height : 1;
	border-radius : 3px;
	color : #ffffff;
	font-family : inherit;
	-webkit-appearance : none;
	font-size : 100%;
}

div#confirm_field input#confirm_submit_button{
	background : #ff6f83;
	border : 1px solid #ff6f83;
	width: 180px;
    padding: 15px 40px;
    margin: 40px 20px;
    font-size: 1.2em;
    transition: .2s;
	/*margin-left : 35%;*/
}

div#confirm_field input#confirm_submit_button:hover{
	cursor : pointer;
	background : #ff8c9c;
	border : 1px solid #ff8c9c;
}

div#confirm_field input#confirm_cancel_button{
	background : #ddd;
	border : 1px solid #ddd;
	width: 180px;
    padding: 15px 40px;
    margin: 40px 20px;
    font-size: 1.2em;
    transition: .2s;
    color: #333;
}

div#confirm_field input#confirm_cancel_button:hover{
	cursor : pointer;
	background : #e8e8e8;
	border : 1px solid #e8e8e8;
}








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

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

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 : 16px;
	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 : 16px;
}

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

}
/* 640pixel end */

