@charset "UTF-8";
/* ===================================================================
 style info : メールフォームページの設定
 author     : mailform.css
=================================================================== */

/*------------------------------------------------------------------------------------------mailform*/
.mailform dl {
	width: 100%;
	margin-bottom: 4px;
	border-radius: 4px;
	/* dlの上部線はなくし，dtとddの上部線をdlの上部線のように見せる */
	border-width : 0 1 1 1;
	border-style : solid;
	border-color : #aaaaaa;
	overflow: hidden;
	margin-top: -1px;
}
.mailform dt {
	width: 266px;
	padding: 20px 20px 20px 75px;
	display: table-cell;
	vertical-align: middle;
	/* 上線のみ表示 */
	border-width : 1px 0 0 0;
	border-style : solid;
	border-color : #aaaaaa;
	color: #132a63;
	font-weight: bold;
}
.mailform dt.detail{
	vertical-align: top;
}
.mailform dd {
	width: 694px;
	padding: 20px 75px 20px 0;
	/* dtの幅だけ横にずらす */
	margin-left : 266px;
	display: table-cell;
	vertical-align: middle;
	/* 上線と，dt・ddの左右間の区切り */
	border-width : 1px 0 0 0;
	border-style : solid;
	border-color : #aaaaaa;
}
.mailform dd input[type="text"], .mailform dd select, dd textarea {
	width: 100%;
	max-width: 100%;
	padding: 7px 12px;
	font-size: 14px;
	background: #eeeeee;
	/*border-radius: 4px;*/
	border: 1px solid #ddddea;
	box-shadow: inset 0 1px 2px rgba(0,0,0,.05);
}
.mailform dd input.size_Onethird{
	width:120px;
}
.mailform dd input[type="radio"], .mailform dd input[type="checkbox"]: {
 box-shadow: none;
 border: 5px solid #ccc;
}
.mailform dd textarea {
	width: 100%;
	height: 210px;
	box-sizing: border-box;
	resize: vertical;
}
.submit_wrap{
	width: 410px;
	text-align: center;
	margin: 55px auto 0 auto;
}
.submit_area{
  width: 250px;
  margin: 0 auto;
  position: relative;
  color: #333;
  text-align: center;
  border: 1px solid rgba(170,170,170,0.8);
}
.submit_area02,.submit_area03{
  width: 163px;
  margin: 0 22px;
  position: relative;
  color: #333;
  text-align: center;
  border: 1px solid rgba(170,170,170,0.8);
  float: left;
}
/*.submit_area input[type="submit"],*/
.submit_area03 input[type="submit"]{
	background: #fff;
	border: none;
	-webkit-appearance: none;
	border-radius: 0;
}

.submit_area input[type="submit"],
.submit_area02 input[type="submit"]{
	background: #132a63;
	border: none;
	-webkit-appearance: none;
	border-radius: 0;
}
.submit_area:after,.submit_area02:after{
  content : '';
	display : block;
	position : absolute;
	right : 10%;
	top : 50%;
	margin-top : -4px;
	width : 8px;
	height : 8px;
	border-top : 2px solid #fff;
	border-right : 2px solid #fff;
	-ms-transform : rotate(45deg);
	transform : rotate(45deg);
}
.submit_area03:after{
  content : '';
	display : block;
	position : absolute;
	left : 10%;
	top : 50%;
	margin-top : -4px;
	width : 8px;
	height : 8px;
	border-top : 2px solid #000;
	border-right : 2px solid #000;
	-ms-transform : rotate(-135deg);
	transform : rotate(-135deg);
}
.submit_area .confirmation_btn {
	width: 250px;
	padding : 12px 25px;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
	background: #132a63;
}
.submit_area03 .correction_btn {
	width: 161px;
	padding : 12px 25px;
	font-size: 16px;
	font-weight: bold;
	color: #333;
	cursor: pointer;
	background: #fff;
}

.submit_area02 .submit_btn {
	width: 161px;
	padding : 12px 25px;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
	background: #132a63;
}

.submit_area .confirmation_btn02{
	width: 250px;
	padding : 12px 25px;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
	background: #132a63;
}

label{
	margin: 0 40px 0 0;
}
label[for=file_photo] {
  color: #000;
  font-size:1.2rem;
  background-color: #fff;
  padding: 6px;
  margin: 0 10px 0 0;
  border-radius: 5px;
  cursor: pointer;
  border:1px solid #ccc;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}