@charset "UTF-8";

/* CSS Document */

/*====================================

	page_ttl

====================================*/

.page_ttl {
	background: url(../images/page_ttl_bg.jpg) center center;
	background-size: cover;
}
.page_ttl h2 {
}

/*====================================

	#wp_contact

====================================*/

#wp_contact {
	width: 100%;
	padding-top: 0;
}
#wp_contact .inner {
}
#wp_contact .inner form dl {
	width: 100%;
	display: table;
	margin-bottom: 30px;
}
#wp_contact .inner form dl dt {
	display: table-cell;
	width: 200px;
	vertical-align: middle;
}
#wp_contact .inner form dl dd {
	display: table-cell;
	vertical-align: middle;
}
#wp_contact .inner form dl dd input {
	width: 100%;
}
#wp_contact .inner form dl dd ul {
}
#wp_contact .inner form dl dd ul li {
	width: 25%;
	border: 1px solid #997;
	float: left;
}
#wp_contact .inner form .wrap_submit {
	width: 100%;
	text-align: center;
}
#wp_contact .inner form .wrap_submit input {
	display: inline-block;
	width: 300px !important;
	background: linear-gradient(to bottom right, #7b1082, #336ed6);
	color: #fff;
	border: 1px solid #fff;
	font-family: 'Zen Old Mincho', serif;
	border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
}
#wp_contact .inner form .wrap_submit input:hover {
	background: #fff;
	color: #000;
	border: 1px solid #000;
}

/*====================================

	form

====================================*/

input,
button,
select,
textarea {
}
input,textarea {
	border: 1px solid #ddd;
	border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
input {
	padding: 10px; 
}
select {
	border: 1px solid #ddd;
	padding: 10px;
	border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
	background: #eee;
}
textarea {
	padding: 5px;  
	width: 100%;
}
.fm_radio {
	display: none;
}

.fm_radio + span {
	cursor: pointer;
	display: inline-block;
	margin: 0 0.2em 0;
	padding: 0 0 0 1.2em;
	position: relative;
}

.fm_radio + span::before {
	-webkit-transform: translateY(-50%);
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 50%;
	content: "";
	display: block;
	height: 16px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
}

.fm_radio + span::after {
	-webkit-transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.32);
	border: 1px solid transparent;
	border-radius: 50%;
	content: "";
	height: 8px;
	left: 4px;
	opacity: 0;
	padding: 2px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease 0s;
	width: 8px;
}
.fm_radio:checked + span::after {
	opacity: 1;
}

/* check box */

.fm_check {
	display: none;
}
.fm_check + span {
	cursor: pointer;
	display: inline-block;
	margin: 0 0.2em 0;
	padding: 0 0 0 1.2em;
	position: relative;
}
.fm_check + span::before {
	-webkit-transform: translateY(-50%);
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 2px;
	content: "";
	display: block;
	height: 1em;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1em;
}
.fm_check + span::after {
	-webkit-transform: translateY(-50%) rotate(-45deg);
	border-bottom: 3px solid rgba(0, 0, 0, 0.32);
	border-left: 3px solid rgba(0, 0, 0, 0.32);
	content: "";
	display: block;
	height: 0.6em;
	left: 0;
	margin-top: -0.2em;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	transition: all 0.3s ease 0s;
	width: 1em;
}
.fm_check:checked + span::after {
	opacity: 1;
}

/* select box */

.fm_select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background: transparent url(../images/arrow.svg) no-repeat center right 8px/16px 16px;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 0;
	color: inherit;
	cursor: pointer;
	font-family: inherit;
	font-size: 1em;
	padding: 0.4em 0.8em;
	width: 100%;
}
.fm_select::-ms-expand {
	display: none;
}
.fm_select:focus {
	border: 1px solid rgba(0, 0, 0, 0.32);
	box-shadow: none;
	outline: none;
}

/* submit */

.fm_submit {
	-webkit-appearance: none;
	background-color: rgba(0, 0, 0, 0.32);
	background-image: none;
	border: none;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	padding: 0.6em 5em;
	text-decoration: none;
	border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
.fm_submit:hover,
.fm_submit:focus {
	outline: none;
}
.fm_submit::-moz-foucus-inner {
	border: none;
	padding: 0;
}

