@charset "utf-8";


body{
	overflow-y : scroll;
}


div#confirm_field{
	width : 960px;
	margin : 0 auto;
	background : #fff;
}

div#confirm_field{
	display : none;
}

div#confirm_field h2{
  margin-bottom: 20px;
	font-size : 2rem;
	font-weight : bold;
	text-align : center;
  color: #1e50a2;
}

div#confirm_field dl{
	width : 90%;
	margin : 0 auto;
	overflow : hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}

div#confirm_field dl dt{
	flex-basis: 30%;
	border-top : 1px solid #ddd;
	padding : 15px 0;
	text-align : right;
}

div#confirm_field dl dd{
	flex-basis: 70%;
	border-top : 1px solid #ddd;
	padding : 15px 0 15px 5%;
}

div#confirm_field p#confirm_submit{
	width : 90%;
	margin : 0 auto;
	padding: 30px 20px 0;
	border-top : 1px solid #ddd;
  text-align: center;
}

div#confirm_field input[type="button"]{
  width: 30%;
  max-width: 250px;
	padding : 15px 0;
	vertical-align : middle;
	line-height : 1;
	border-radius : 2px;
	color : #ffffff;
	font-family : inherit;
	-webkit-appearance : none;
	font-size : 100%;
}

div#confirm_field input#confirm_submit_button{
	background : #1e50a2;
	border : 1px solid #1e50a2;
	margin-left : 5%;
}

div#confirm_field input#confirm_submit_button:hover{
	cursor : pointer;
	background : #009CE2;
	border : 1px solid #009CE2;
}

div#confirm_field input#confirm_cancel_button{
	background : #939393;
	border : 1px solid #939393;
	margin-right: 5%;
}

div#confirm_field input#confirm_cancel_button:hover{
	cursor : pointer;
	background : #b1b1b1;
	border : 1px solid #b1b1b1;
}






/* --responsive----------------------------------------------------------------------------------------------------------------- */

/* 640pixel start */
@media screen and ( max-width : 640px ){

div#confirm_field{
	width : 100%;
}

div#confirm_field h2{
	text-align : left;
  font-size: 1.8rem;
}

div#confirm_field dl{
  width: 100%;
	overflow : visible;
}

div#confirm_field dl dt{
  flex-basis: 100%;
	text-align: left;
  padding: 10px 0;
  font-weight: bold;
  color: #1e50a2;
}

div#confirm_field dl dt::before{
	content : "■";
}

/*div#confirm_field dl dt:after{
	content : "】";
}*/

div#confirm_field dl dd{
  flex-basis: 100%;
  padding: 0 0 15px 1em;
	border-top: none;
}
  
div#confirm_field p#confirm_submit {
  width: 100%;
  padding: 30px 0 0;
}
  
div#confirm_field input[type="button"] {
  width: 45%;
}

div#confirm_field input#confirm_cancel_button {
  margin-right: 2.5%;
}
  
div#confirm_field input#confirm_submit_button{
	margin-left : 2.5%;
}

}
/* 640pixel end */

