@charset "utf-8";
#main_contact {
	padding: 20px;
}
#main_contact input {
    border: 1px solid #ccc;
    line-height: 30px;
    padding: 5px 10px;
    box-sizing: border-box;
}
.form-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #f2f2f2;
}
.form-group2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
  	-webkit-box-pack: center;
    -ms-flex-pack: center;
	justify-content: center;
    padding: 20px 0;
}
.form-group2 form {
	margin: 0 10px;
}
.form-group div:first-child{
	width: 30%;
}
.form-group div:last-child{
    width: 70%;
}
.form-group input, textarea {
	width: 100%;
}
.warn {
	display: inline-block;
	font-size: 12px;
	color: red;
	padding: 0 0 0 5px;
}
.error {
	font-size: 11px;
	color: red;
    margin-bottom: 0;
}
.btn-input {
	background: #f2f2f2;
	border: none;
    border-radius: 50px;
    padding: 15px 30px 15px 30px;
    box-sizing: border-box;
}
.btn-input:after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.back:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.back:after {
	display: none;
}
.btn-input:hover {
    background: #ccc;
}
.btn-input:focus {
	outline: none;
}
.table-bordered {
	width: 100%;
	margin: 15px 0;
}
.table-bordered td,
.table-bordered th{
	width: 50%;
	padding: 10px;
	border: 1px solid #f2f2f2;
}
.table-bordered th{

}
.table-bordered td {
	text-align: left;
}
/*///////////////////////////////////////////////////////////////////////////////////////////////////////////////////ここからスマホ////////////////////////////////////////////////////////////////*/
@media only screen and (max-width: 767px){

}
