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

	Forms

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

textarea, input, select {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	font-size: 100%; /* 14px base */
	color: #333;
	letter-spacing: 1px;
}

input[type="text"],
textarea {
	display: block;
	width: 100%;
	height: 3.6em;
	margin: 0;
	padding: 0 10px;
	background-color: #f5f5f5;
	border: none;
	border-radius: 2px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance:none;
}
html.IE8 input[type="text"] {
	line-height: 3.6em;
}

textarea {
	padding: 10px;
	max-width: none;
	transition: height .3s;
}

input[type="text"]:focus,
textarea:focus {
	background-color: #f2f2f2;
}
textarea:focus {
	height: 18em;
}

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

/*
.c-submitset input[type="submit"]:hover {
	background-color: #262626;
}
*/


.c-submit {
	text-align: center;
	display: inline-block;
	background-color: #3f3f3f;
	position: relative;
	overflow: hidden;
}

.c-submit > input {
	color: #fff;
	font-size: 0.929em;
	line-height: 1.6;
	display: inline-block;
	background-color: transparent;
	padding: 20px 30px;
	min-width: 240px;
	cursor: pointer;
	-webkit-transition: background-color .15s;
	        transition: background-color .15s;
	position: relative;
	z-index: 1;
}

.c-submit:before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #262626;
	position: absolute;
	left: 0;
	top: 100%;
	-webkit-transition: -webkit-transform .12s ease-out;
			transition: transform .12s ease-out;
}
.c-submit:hover:before {
	-webkit-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	        transform: translateY(-100%);
}
.IE8 .c-submit:hover {
	background-color: #262626;
}

.c-submit:after {
	content: "";
	width: 8px;
	height: 14px;
	background: url(../images/sprite1.png) no-repeat -250px 0;
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -7px;
	opacity: 0;
	-webkit-transform: translateY(30px);
	    -ms-transform: translateY(30px);
	        transform: translateY(30px);
	-webkit-transition: all .15s ease-in;
	        transition: all .15s ease-in;
}
.c-submit:hover:after {
	opacity: 1;
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
	-webkit-transition-delay: .1s;
	        transition-delay: .1s;
}
.IE8 .c-submit:after {
	content: none;
}
.IE8 .c-submit:hover:after {
	content: "";
}

.c-submitset {
	text-align: center;
}

.c-submitset > li {
	display: inline-block;
	margin: 0 5px;
}

