.mailform{
	margin: auto;
}

input[type="submit"] {
-webkit-appearance: none;
border-radius: 0;
}

.zip input{
	width: 40% !important;
	margin-bottom: .5em;
}
.mailform dl {
  border-bottom: 1px solid #c8c6c6;
  width: 65%;
  display: flex;
  flex-wrap: wrap;
}

.mailform dl:first-of-type {
  border-top: 1px solid #221613;
}


.mailform dt {
  width: 35%;
  font-weight: bold;
  background: #efefef;
  padding: 1.5em 1em;
  /* display: table-cell; */
  /* vertical-align: middle; */
}

.mailform dt span{
	color: white;
	background: #d71718;
	font-size: 1.2rem;
	padding: .4em;
	margin-left: .8em;
}

.mailform dd {
  width: 60%;
  background: white;
  /* display: table-cell; */
  padding: 1.5em 1em;
  /* vertical-align: middle; */
}

.mailform dd input[type="text"],
.mailform dd select,
dd textarea {
  width: 90%;
  max-width: 100%;
  font-size: 1.5rem;
  font-family: inherit;
  padding: .2em;
  /* font-size: 14px; */
  /* background: #f4f4ff; */
  /* border-radius: 4px; */
  border: 1px solid #9fa0a0;
  /* box-shadow: inset 0 1px 2px rgba(0,0,0,.05); */
}

.mailform dd input[type="radio"],
.mailform dd input[type="checkbox"]:{
  box-shadow: none;
  border: 5px solid #ccc;
}

.mailform dd .nest {
  padding-left: 45px;
  margin: 10px 0;
}

.mailform dd textarea {
  /* width: 100%; */
  height: 8em;
  box-sizing: border-box;
  resize: vertical;
}
.submit_area{
	width: 65%;
	text-align: center;
	margin-top: 2em;
	position: relative;
}
.submit_area::after{
	content: "";
	position: absolute;
	left: 37em;
	bottom: 0;
	top: 0;
	margin: auto;
	width: .5em;
	height: .5em;
	border-top: 2px solid white;
	border-right: 2px solid white;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.confirmation_btn {
  -webkit-appearance: none;
  border-radius: 0;
  font-family: inherit;
  padding: 1em;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: #fff;
  width: 50%;
  margin: auto;
  cursor: pointer;
  background: #009fb9;
  transition: all 0.3s;
}

.confirmation_btn:hover {
  opacity: .8;
}

.full input{
	width: 100% !important;
	margin-bottom: .5em;
}

@media screen and ( max-width : 640px ){
	.mailform dl{
		width: 100%;
	}
	.mailform dt{
		width: 100%;
	}
	.submit_area{
		width: 100%;
	}
	.confirmation_btn{
		width: 100%;
	}
	.submit_area::after{
		left: 90%;	
	}
	.mailform dd{
		width: 100%;
	}
}
