@charset "utf-8";


body{
	overflow-y : scroll;
}


div#confirm_field{
	max-width: 900px;
  margin: 50px auto;
  padding: 0 50px;
  background-color: #fff;
  border-radius: 7px;
}

div#confirm_field{
	display : none;
}

div#confirm_field h2{
  padding: 30px 0;
	font-size : 135%;
	font-weight : bold;
	text-align : center;
}

div#confirm_field dl{
	overflow : hidden;
  border-bottom: 1px dashed #3F200D;
}

div#confirm_field dl dt{
	clear : both;
	width : 30%;
	float : left;
	border-top : 1px dashed #3F200D;
	padding : 20px 0;
	text-align : right;
}

div#confirm_field dl dd{
	width : 70%;
	float : right;
	border-top : 1px dashed #3F200D;
	padding : 20px 0 20px 5%;
}

div#confirm_field p#confirm_submit{
	padding : 30px 0;
	text-align: center;
}

div#confirm_field input[type="button"]{
	padding : 14px 30px;
	vertical-align : middle;
	line-height : 1;
	border-radius : 3px;
	color : #ffffff;
	font-family : inherit;
  box-shadow: 3px 3px 0 0 rgba(0,0,0,0.1);
	-webkit-appearance : none;
	font-size : 2rem;
}

div#confirm_field input#confirm_submit_button{
	background : #5cb85c;
	border : 1px solid #4cae4c;
	margin-left : 30px;
}

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

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

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








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

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

div#confirm_field{
	width : 100%;
  padding: 0 20px;
  margin: 30px auto 0;
}

div#confirm_field h2{
  padding: 30px 0 20px;
	text-align : left;
  font-size: 1.6rem;
}

div#confirm_field dl{
	overflow : visible;
}

div#confirm_field dl dt{
	width : auto;
	float : none;
	text-align : left;
	padding : 15px 0 8px;
	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"]{
	padding : 10px 30px;
	font-size : 1.4rem;
}
  
div#confirm_field input#confirm_submit_button{
	background : #5cb85c;
	border : 1px solid #4cae4c;
	margin-left : 20px;
}


}
/* 640pixel end */

