@charset "utf-8";

div#confirm_field {
	border: 2px solid #e4e4e4;
	margin-top: 40px;
	padding-bottom: 40px;
}

div#confirm_field {
	display: none;
}

div#confirm_field h3 {
	margin: 30px 0 20px;
	color: #0b3190;
	font-size: 25px;
	font-size: 2.5rem;
	font-weight: bold;
	text-align: center;
}

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

div#confirm_field dl dt {
	width: 280px;
	float: left;
	clear: left;
	padding: 20px 0 20px 30px;
	font-weight: bold;
}

div#confirm_field dl dt .kome {
	display:in;
}

div#confirm_field dl dd {
	border-bottom: 2px solid #e4e4e4;
	padding: 20px 30px 20px 290px;
	word-break:break-all;
	word-wrap:break-word;
}
div#confirm_field dl dd:after {
	display: table;
	content: "";
}
div#confirm_field dl dd:last-child {
	margin-bottom: 20px;
}

div#confirm_field p#confirm_submit #send_btn {
	display: block;
	width: 40%;
  	position: relative;
	margin: 20px auto 0;
}
div#confirm_field p#confirm_submit #return_btn {
	display: block;
	width: 25%;
  	position: relative;
	margin: 20px auto 0;
}
div#confirm_field p#confirm_submit #send_btn::after{
  	transition: 0.3s;
	content: '';
	width: 10px;
	height: 10px;
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 30px;
	margin-top: -6px;
}
div#confirm_field p#confirm_submit #return_btn::before{
  	transition: 0.3s;
	content: '';
	width: 8px;
	height: 8px;
	border-bottom: solid 2px #000;
	border-left: solid 2px #000;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	left: 30px;
	margin-top: -4px;
}

div#confirm_field p#confirm_submit #send_btn:hover:after {
	right: 25px;
}

div#confirm_field p#confirm_submit #send_btn input#confirm_submit_button {
	display: inline-block;
	width: 100%;
	background-color: #fc7403;
	border: 3px solid #fff;
	border-radius: 40px;
	box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
	color: #fff;
	font-size: 18px;
  	font-size: 1.8rem;
  	font-weight: bold;
	letter-spacing: 0.1rem;
	padding: 10px 0;
	outline: 0;
	cursor: pointer;
    transition: all 0.2s ease 0s;
}

div#confirm_field input#confirm_cancel_button {
	display: inline-block;
	width: 100%;
	background-color: #e4e4e4;
	border: 1px solid #fff;
	border-radius: 40px;
	box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
	color: #000;
	font-size: 14px;
  	font-size: 1.4rem;
  	font-weight: bold;
	letter-spacing: 0.1rem;
	padding: 5px 0;
	outline: 0;
	cursor: pointer;
    transition: all 0.2s ease 0s;
}

div#confirm_field p#confirm_submit #return_btn:hover:before {
	left: 25px;
}

@media screen and (max-width: 640px) {
	div#confirm_field {
		margin-top: 20px;
		padding-bottom: 20px;
	}
	div#confirm_field h3 {
		margin: 15px 0 10px;
		font-size: 1.8rem;
	}
	div#confirm_field dl {
		width: 100%;
	}
	div#confirm_field dl dt {
		width: 100%;
		float: inherit;
		clear: inherit;
		padding: 10px 0 5px 15px;
	}
	div#confirm_field dl dd {
		padding: 0 15px 15px 15px;
	}
	div#confirm_field dl dd:last-child {
		margin-bottom: 10px;
	}
	div#confirm_field p#confirm_submit #send_btn {
		width: 90%;
		margin: 10px auto 0;
	}
	div#confirm_field p#confirm_submit #return_btn {
		width: 70%;
		margin: 10px auto 0;
	}
	div#confirm_field p#confirm_submit #send_btn::after{
		width: 8px;
		height: 8px;
		border-top: solid 2px #fff;
		border-right: solid 2px #fff;
		margin-top: -5px;
	}
	div#confirm_field p#confirm_submit #return_btn::before{
		width: 6px;
		height: 6px;
		margin-top: -2px;
	}
	div#confirm_field p#confirm_submit #send_btn input#confirm_submit_button {
		border: 2px solid #fff;
  		font-size: 1.6rem;
		padding: 5px 0;
	}
	div#confirm_field input#confirm_cancel_button {
  		font-size: 1.3rem;
		padding: 3px 0;
	}
}