@charset "UTF-8";
/*form*/
textarea,
input{
    background-color: rgb(250,250,250);
}

.btn_radio{
    padding-left: 1px;
}
input[type="button" i],
input[type="submit" i],
input[type="reset" i],
input[type="file" i]::-webkit-file-upload-button,
button{
    cursor: pointer;
    background-color: buttonface;
    box-sizing: border-box;
    padding: 10px;
    border: 1px dotted #ddd;
    background-color: transparent;
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -ms-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}
input[type="button" i]:hover,
input[type="submit" i]:hover,
input[type="reset" i]:hover,
input[type="file" i]::-webkit-file-upload-button:hover,
button:hover{
    background-color: #333;
    color: #ccc;
}

input[type=checkbox], input[type=radio]{
    display: inline;
}

.mailform {
	padding:60px 0 0;
	border-top: 1px solid #ddd;
}

/*-------------------------------------------
type A
-------------------------------------------*/
.mailform dl{
	padding-bottom: 60px;
	margin-bottom: 60px;
	border-bottom: 1px solid #ddd;
}
.mailform dt,.mailform dd {
	text-align: left;
	font-weight: normal;
}
.mailform dt {
	width: 100%;
	font-weight: bold;
}
.mailform dd {
	width: 100%;
	margin-bottom: 10px;
}
.mailform dd input{
	border: 1px solid #ccc;
	padding:5px 3px;
}
.mailform dd textarea {
	width: 100%;
	height: 120px;
	resize: vertical;
	border: 1px solid #ccc;
}
/*-------------------------------------------
type B
-------------------------------------------*/
.mailform ul{
	padding-bottom: 60px;
	margin-bottom: 60px;
	border-bottom: 1px solid #ddd;
}
.mailform li {
	margin-bottom: 2.3em;
}
.mailform li strong{
	padding-right:0.5em;
}
.mailform li textarea {
	width: 100%;
	height: 120px;
	display: block;
	resize: vertical;
	border: 1px solid #ccc;
}
.mailform li input {
	border: 1px solid #ccc;
	padding:5px 3px;
}
.mailform li input[type=text] {
	width: 86%;
	display: block;
}
/*-------------------------------------------
submit
-------------------------------------------*/
.mailform  .btn_submit,
.mailform  .btn_reset{
  padding: 1.5em;
  width: 50%;
  color: #fff;
  background-color: #d92653;
  border:none;
}
.mailform  .btn_submit:hover,
.mailform  .btn_reset:hover{
  color: #fff;
  background-color: #ff4271;
}
.radio{
	margin-left: 10px;
}
.radio:first-child{
	margin-left: 0;
}
input[type=text]{
	width: 50%;
}


/*-------------------------------------------
Focus style
-------------------------------------------*/
input[type="text"],
textarea {
	outline: none;
	border: 1px solid #aaa;
	-webkit-transition: all .3s;
	transition: all .3s;
}
input[type="text"]:focus,
textarea:focus {
	box-shadow: 5px 5px 0 #099c7f;
}
/*-------------------------------------------
radio button
-------------------------------------------*/
.btn_radio input {
	display: none;
}
.btn_radio label{
	display: block;
	float: left;
	cursor: pointer;
	margin: 0;
	padding: 15px;
	background: #bdc3c7;
	color: #75828a;
	text-align: center;
	line-height: 1;
	transition: .2s;
	font-size: 1.1em;
	font-weight: normal;
	width: 50%;
}
.btn_radio label:first-of-type{
	border-radius: 1em 0 0 1em;
}
.btn_radio label:last-of-type{
	border-radius:  0 1em 1em 0;
}
.btn_radio input[type="radio"]:checked + .switch-on {
	background-color: #099c7f;
	color: #fff;
}
.btn_radio input[type="radio"]:checked + .switch-off {
	background-color: #099c7f;
	color: #fff;
}



