@charset "utf-8";

/*
	Form Setting
  Table内に設置する場合は640で
    ブレイクポイントを設定
*/

/****************************************

           General Setting

*****************************************/
.sent .formwrap {
	display: none;
	/**送信完了後のフォームを消去(見えなくする)**/
	webkit-appearance: none;
	/**デバイスごとのデフォルトデザイン解除**/
}

.required {
	width: 70px;
	margin: 0 20px;
	padding: 5px;
	line-height: 1;
	font-size: 80%;
	color: #FFFFFF;
	background-color: #FF3300;
	text-align: center;
	display: inline-block;
}
/****************************************

          Forms

*****************************************/
input[type="text"],
input[type="password"],
input[type="email"],
textarea {
	width: 100%;
	padding: 5px;
	outline: none;
	border: 1px solid #C6C6C6;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #FCFCFC;
	color: #444444;
	font-size: 100%;
	font-family: inherit;
	/**fontの継承**/
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
	border: 1px solid #FFA500;
	background-color: #FFFFFF;
	color: #444444;
}

/**郵便番号**/
.wpform_zip {
	width: 15%;
	margin-bottom: 10px;
}

/**住所**/
.wpform_addr {
	width: 100%;
	margin: 0;
}

/**電話番号**/
.wpform_number {
	width: 30%;
	margin: 0;
}

@media only screen and (max-width: 640px) {
.wpform_addr,
.wpform_number {
	width: 100%;
}
}/*** Media Queries ***/

/**セレクトボックス専用CSS**/
.bto_template_slct select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	/**画像はプルダウンの↓の事**/
	width: auto;
	padding: 5px 30px 5px 5px;
	border: 1px solid #C6C6C6;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: #FFFFFF;
	color: #444444;
	font-size: 100%;
	background: url(../img/arrow.png) right 50% no-repeat, -webkit-linear-gradient(top, #FFFFFF 0%,#FCFCFC 100%);
	background: url(../img/arrow.png) right 50% no-repeat, linear-gradient(to bottom, #FFFFFF 0%,#FCFCFC 100%);
	background-size: 20px, 100%;
	/**画像はプルダウンの↑の事**/
	font-family: inherit;
	/**fontの継承**/
}

@-moz-document url-prefix() { /* for firefox */
	.bto_template_slct select {
	background: none;
	background-color: #FFFFFF;
}
}

select::-ms-expand {
	display: none;
}

@media only screen and (max-width: 480px) {
.bto_template_slct select {
	width: 100%;
}
}/*** Media Queries ***/
/**セレクトボックス専用CSS**/

/**ファイル選択専用CSS**/
/**
<input type="file">は必ず
<div class="select_file">で囲む
<div class="select_file">&nbsp;ファイルを選択[mwform_image name="photo"]</div>
**/
.file_input[type="file"],
input[type="file"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	cursor: pointer;
}

.select_file {
	height: auto;
	margin: 0;
	padding: 10px 10px;
	outline: none;
	border: 1px solid #DFDFDF;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	font-weight: normal;
	font-size: 100%;
	line-height: 1;
	color: #444444;
	background-color: #DFDFDF;
	text-decoration: none;
	text-align: center;
	display: inline-block;
	overflow: hidden;
	position: relative;
	font-family: inherit;
	/**fontの継承**/
}

.select_file:hover {
	border: 1px solid #CCCCCC;
	color: #CCCCCC;
	background-color: #444444;
}
/**ファイル選択専用CSS**/

.button_grd {
	width: auto;
	height: auto;
	margin: 0;
	padding: 24px 56px;
	outline: none;
	text-decoration: none;
	font-weight: 600;
	font-size: 140%;
	line-height: 0.85;
	color: #FF6E00;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3e3a39+0,000000+50,3e3a39+100&0.7+0,1+50,0.7+100 */
background: -moz-linear-gradient(top,  rgba(62,58,57,0.7) 0%, rgba(0,0,0,1) 50%, rgba(62,58,57,0.7) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(62,58,57,0.7) 0%,rgba(0,0,0,1) 50%,rgba(62,58,57,0.7) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(62,58,57,0.7) 0%,rgba(0,0,0,1) 50%,rgba(62,58,57,0.7) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b33e3a39', endColorstr='#b33e3a39',GradientType=0 ); /* IE6-9 */
	display: inline-block;
	font-family: inherit;
	/**fontの継承**/
	position: relative;
}

.button_grd::after {
	font-size: 180%;
	font-family: 'FontAwesome';
	content: "\f101";
	color: #FF6E00;
	position: absolute;
	top: 50%;
	right: 8px;
	margin-top: -17px;
}

.button_grd:hover {
	opacity: 0.7;
	text-decoration: none;
}

@media screen and (max-width: 640px) {
.button_grd {
	width: 100%;
	height: auto;
	margin: 10px 0;
}
}/*** Media Queries ***/

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	width: 220px;
	height: auto;
	margin: 10px 20px;
	padding: 15px 0;
	outline: none;
	border: 1px solid #C6C6C6;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-decoration: none;
	font-weight: normal;
	font-size: 90%;
	line-height: 1;
	color: #FFA500;
	background-color: #FEFEFE;
	display: inline-block;
	font-family: inherit;
	/**fontの継承**/
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
	border: 1px solid #C6C6C6;
	color: #FF8C00;
	background-color: #FBFBFB;
}

.button:active,
button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
	position: relative;
	top: 1px;
}

@media screen and (max-width: 640px) {
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	width: 100%;
	height: auto;
	margin: 10px 0;
}
}/*** Media Queries ***/

/****************************************

          Search Form

*****************************************/
#searchform {
	max-width: 100%;
	height: auto;
	margin: 0 0 20px;
	padding: 0;
	text-align: right;
}

@media screen and (max-width: 768px) {
#searchform {
	width: 100%;
	margin: 0 auto 20px;
	text-align: center;
}
}/*** Media Queries ***/

#s {
	width: 100%;
	max-width: 350px;
	margin: 0;
	padding: 7px;
	outline: none;
	border: 1px solid #C6C6C6;
	color: #444444;
	font-family: 'FontAwesome';
}

#s:focus {
	border: 1px solid #FFA500;
 	color: #444444;

}
