@charset "UTF-8";
/* CSS reset */
* {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
}
html,body,div,h1,h2,h3,h4,h5,h6,p,blockquote,pre,address,ul,ol,li,dl,dt,dd,table,th,td,form,fieldset{
	margin: 0;
	padding: 0;
	line-height:1.8em;
	font-family: 'Kosugi Maru', sans-serif;
	font-size:14px;
	font-weight:400;
	letter-spacing:0.15em;
}
@media screen and (min-width:0px) and (max-width:767px){
	html,body,div,h1,h2,h3,h4,h5,h6,p,blockquote,pre,address,ul,ol,li,dl,dt,dd,table,th,td,form,fieldset{
		margin: 0;
		padding: 0;
		line-height:1.8em;
		font-family: 'Kosugi Maru', sans-serif;
		font-size:12px;
		font-weight:400;
		letter-spacing:0.15em;
	}
}
body .ua-android{
	font-family: 'Kosugi Maru', sans-serif;
}
body .gothic{
	font-family: 'Kosugi Maru', sans-serif;
}
body .eng{
	font-family: 'IBM Plex Sans JP', sans-serif;
	font-weight: 700;
}
body .bold{
	font-weight:800;
}
html,body{
	width:100%;
	min-width: 1000px;
	overflow-x:hidden;
}
@media screen and (min-width:0px) and (max-width:767px){
	html,body{
		width:100%;
		min-width:unset;
		overflow-x:hidden;
	}
}
/*parallax*/
#parallax_01{
	background-image:url("../../img/base/body_bg_01.png");
	background-repeat: no-repeat;
	background-position:top 190px/*←チラつき防止*/ left 0;/*topの位置はbase.jsのparallaxでも指定*/
}
#parallax_02{
	background-image:url("../../img/base/body_bg_02.png");
	background-repeat: no-repeat;
	background-position:top -9999px right 0;/*topの位置はbase.jsのparallaxでも指定*/
}
#parallax_03{
	background-image:url("../../img/base/body_bg_03.png");
	background-repeat: no-repeat;
	background-position:top -9999px left -100px;/*topの位置はbase.jsのparallaxでも指定*/
}
/*#parallax_04は、TOPページ下段のwe_are_attractの背景で指定*/

@media screen and (min-width:0px) and (max-width:767px){
	#parallax_01,#parallax_02,#parallax_03{
		background-image: none;/*スマホではparallaxは非表示*/
	}
}

table{
	border-collapse: collapse;
	border-spacing: 0;
}
ul, ol{
	list-style: none; /*マーカーを消す*/
}
a{
	text-decoration: none; /*下線を消す*/
	color:#000;
}
img{
	border: 0;
}
img, input{
	vertical-align:bottom;
}
/* CSS reset */

.clearfix:after{
	content:"";
	display: block;
	clear: both;
}
/*clearfix*/

.transition{
	transition:all ease 0.5s;
	-ms-transition:all ease 0.5s;
	-moz-transition:all ease 0.5s;
	-webkit-transition:all ease 0.5s;
}
/*transition*/


.sp_br{
	display: none;
}
@media screen and (min-width:0px) and (max-width:767px){
    
.pc_br{
	display:none;
	}
.sp_br{
	display:block;
	}
}
/*pc_br*/

/*font-weight*/
body .bold{
	font-weight:800;
}
body .thin{
	font-weight:300;
}
/*text-align*/
body .t_left{
    text-align: left;
}
body .t_center{
    text-align: center;
}
body .t_right{
    text-align: right;
}
/*font-size*/
body .t_big{
    font-size: 18px;
}
body .t_small{
    font-size: 12px;
}
@media screen and (min-width:0px) and (max-width:767px){
	body .t_big{
		font-size: 16px;
	}
	body .t_small{
		font-size: 10px;
	}
}

/*small*/
body small{
    font-size: 10px;
}

/*color*/
body .gray{
    color: #565656;
}
body .red{
    color: #ff0000;
}
body .green{
    color: #18a283;
}
body .white{
    color: #ffffff;
}
/*text:hover*/
body a.gray:hover,
body a.red:hover,
body a.green:hover{
 /*text-decoration: underline;*/
}

/*background-repeat*/
.no_repeat{
    background-repeat: no-repeat;
}
.repeat_x{
    background-repeat: repeat-x;
}
.repeat_y{
    background-repeat: repeat-y;
}
.repeat{
    background-repeat: repeat;
}


/*-------------------------------
loading animetion
-------------------------------*/

.loading {
	width: 100vw;
	height: 100vh;
	transition: all 1s;
	background-color: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	opacity: 1;
	visibility: visible;
}
.loading.is-active {
	opacity:0;
	visibility: hidden;
}
.loading-animation{
	width:100vw;
	height: 100vh;
	position: relative;
	opacity: 0;
	visibility: hidden;
}
.loading-animation img#loading_01{
	position:absolute;
	top:50%;left:50%;
	width: 700px;
	height: 103px;
	margin: -60px 0 0 -350px;
}
.loading-animation img#loading_02{
	position:absolute;
	top:50%;left:50%;
	width: 700px;
	height: 103px;
	margin: -60px 0 0 -350px;
}
.loading-animation.is-active {
	opacity: 1;
	visibility: visible;
}

@media screen and (min-width:0px) and (max-width:767px){

	.loading {
		width: 100vw;
		height: 100vh;
		transition: all 1s;
		background-color: #FFF;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 999;
		opacity: 1;
		visibility: visible;
	}
	.loading.is-active {
		opacity:0;
		visibility: hidden;
	}
	.loading-animation{
		width: 100%;
		height: 100vh;
		position: relative;
		opacity: 0;
		visibility: hidden;
	}
	.loading-animation img#loading_01{
		position:absolute;
		top:45%;left:50%;
		width: 80%;
		height: auto;
		margin-left: -40%;
	}
	.loading-animation img#loading_02{
		position:absolute;
		top:45%;left:50%;
		width: 80%;
		height: auto;
		margin-left: -40%;
	}
	.loading-animation.is-active {
		opacity: 1;
		visibility: visible;
	}
}

/*-------------------------------
コンテンツ幅
-------------------------------*/

.cont_w_1360{
    width: 1360px;
    margin: 0 auto;
}
.cont_w_1200{
    width: 1200px;
    margin: 0 auto;
}
.cont_w_1100{
    width: 1100px;
    margin: 0 auto;
}
.cont_w_1000{
    width: 1000px;
    margin: 0 auto;
}
.cont_w_100{
    width: 100%;
}
@media screen and (min-width:0px) and (max-width:767px){
    .cont_w_1360,
    .cont_w_1200,
    .cont_w_1100,
    .cont_w_1000,
    .cont_w_100{
        width: 100%;
    }
}

/*-------------------------------
float
-------------------------------*/

.w_80{
    width: 80%;
}
.w_75{
    width: 75%;
}
.w_70{
    width: 70%;
}
.w_66{
    width: 66%;
}
.w_65{
    width: 65%;
}
.w_60{
    width: 60%;
}
.w_50{
    width: 50%;
}
.w_49{
    width: 49%;
}
.w_48{
    width: 48%;
}
.w_47{
    width: 47%;
}
.w_44{
    width: 44%;
}
.w_40{
    width: 40%;
}
.w_35{
    width: 35%;
}
.w_33{
    width: 33.3%;
}
.w_30{
    width: 30%;
}
.w_25{
    width: 25%;
}
.w_20{
    width: 20%;
}
.w_15{
    width: 15%;
}
.f_l{
    float: left;
}
.f_r{
    float: right;
}
.c_b{
	clear: both;
}
@media screen and (min-width:0px) and (max-width:767px){
    .w_80,
	.w_75,
	.w_70,
	.w_66,
	.w_65,
	.w_60,
	.w_50,
	.w_49,
	.w_48,
	.w_47,
	.w_44,
	.w_40,
	.w_35,
    .w_33,
	.w_30,
    .w_25,
    .w_20,
	.w_15{
        width: 100%;
    }
    .f_l,
    .f_r{
        float: none;
    }
}

/*---------------------------------------
    title
---------------------------------------*/

/*title_page*/
.title_page{
	width: 460px;
	text-align: center;
	font-size: 18px;
	color: #727272;
	border-top: solid 5px #d8d8d8;
	border-bottom: solid 5px #d8d8d8;
	padding: 37px 0;
	margin: 75px auto 100px;
}
/*title_border*/
.title_border{
	width: 100%;
	border-top: solid 1px #000;
	border-bottom: solid 1px #000;
	text-align: center;
	padding: 20px 0;
}
/*title_border_white*/
.title_border_white{
	width: 100%;
	border-top: solid 1px #fff;
	border-bottom: solid 1px #fff;
	text-align: center;
	padding: 15px 0;
}
/*title_dot_white*/
.title_dot_white{
	padding-left: 30px;
	position: relative;
}
.title_dot_white:before{
	content:"";
	width: 10px;
	height: 10px;
	background-color: #fff;
	position: absolute;
	top:8px;left:0;
}
/*title_dot_gray*/
.title_dot_gray{
	padding-left: 30px;
	position: relative;
}
.title_dot_gray:before{
	content:"";
	width: 10px;
	height: 10px;
	background-color: #898989;
	position: absolute;
	top:8px;left:0;
}
/*title_dot_orange*/
.title_dot_orange{
	padding-left: 30px;
	position: relative;
}
.title_dot_orange:before{
	content:"";
	width: 10px;
	height: 10px;
	background-color: #dbb20f;
	position: absolute;
	top:8px;left:0;
}
/*title_cont*/
.title_cont{
	width: 350px;
	margin: 0 auto 75px;
	text-align: center;
	font-size: 18px;
	padding: 35px 0;
	border-top: solid 1px #000;
	border-bottom: solid 1px #000;
}

@media screen and (min-width:0px) and (max-width:767px) {
	/*title_page*/
	.title_page{
		width: 80%;
		text-align: center;
		font-size: 16px;
		color: #727272;
		border-top: solid 5px #d8d8d8;
		border-bottom: solid 5px #d8d8d8;
		padding: 25px 0;
		margin: 50px auto;
	}
	/*title_border*/
	.title_border{
		width: 90%;
		border-top: solid 1px #000;
		border-bottom: solid 1px #000;
		text-align: center;
		padding: 15px 0;
	}
	/*title_border_white*/
	.title_border_white{
		width: 90%;
		border-top: solid 1px #FFF;
		border-bottom: solid 1px #FFF;
		text-align: center;
		padding: 15px 0;
	}
	/*title_dot_white*/
	.title_dot_white{
		padding-left: 25px;
		position: relative;
	}
	.title_dot_white:before{
		content:"";
		width: 10px;
		height: 10px;
		background-color: #fff;
		position: absolute;
		top:10px;left:0;
	}
	/*title_dot_gray*/
	.title_dot_gray{
		padding-left: 25px;
		position: relative;
	}
	.title_dot_gray:before{
		content:"";
		width: 10px;
		height: 10px;
		background-color: #898989;
		position: absolute;
		top:10px;left:0;
	}
	/*title_dot_orange*/
	.title_dot_orange{
		padding-left: 25px;
		position: relative;
	}
	.title_dot_orange:before{
		content:"";
		width: 10px;
		height: 10px;
		background-color: #dbb20f;
		position: absolute;
		top:10px;left:0;
	}
	/*title_cont*/
	.title_cont{
		width: 70%;
		margin: 0 auto 30px;
		text-align: center;
		font-size: 16px;
		padding: 20px 0;
		border-top: solid 1px #000;
		border-bottom: solid 1px #000;
	}
	
}


/*---------------------------------------
    link_btn a
---------------------------------------*/

.link_btn_white a{
	display: block;
	width: 230px;
	height: 40px;
	padding: 12px 0 0 12px;
	background-color: #fff;
	background-image: url("../../img/home/arrow_btn.png");
	background-repeat: no-repeat;
	background-position: bottom 10px right 10px;
	font-size: 12px;
	letter-spacing: 0.1em;
	position: relative;
}
.link_btn_white a:after {
	position: absolute;
	bottom: 0;
	left:0;
	content: '';
	width: 0;
	height: 1px;
	transition: .3s;
	background-color: #333;
}
.link_btn_white a:hover{
	background-color:#f5efcf;
}
.link_btn_white a:hover:after{
	width: 100%;
}


/*---------------------------------------
    zoom animation
---------------------------------------*/

.zoom img {
  width: 100%;
  height: auto;
  animation: animationZoom 5s ease-in-out forwards;
}

@keyframes animationZoom {
  100% {
    transform:scale(1.1);
  } 
}


/*---------------------------------------
    contents_link_jirei
---------------------------------------*/

.contents_link_jirei{
	width: 1200px;
	margin: 100px auto 0;
}
.link_banner_jirei:nth-of-type(1){
	padding: 0 30px 0 0;
}
.link_banner_jirei:nth-of-type(2){
	padding: 0 0 0 30px;
}
.link_banner_jirei a{
	display: block;
	width: 570px;
	height:450px;
	position: relative;
	overflow: hidden;
}
.link_jirei_title{
	width: 550px;
	height: 120px;
	padding: 50px 50px 0 0;
	text-align: right;
	background-image: url("../../img/base/bg_link_jirei_title.png");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top:15px;left:15px;
	z-index: 2;
}
.link_jirei_title .eng{
	display: block;
	font-size: 18px;
	margin-bottom: 5px;
}
.link_jirei_image{
	width: 100%;
	height: 100%;
	background-color: #fff;
}
.link_jirei_image img{
	transition: 1s;
	opacity: 0.75;
}
.link_banner_jirei a:hover > .link_jirei_image img{
	opacity: 1;
    transform:scale(1.025);
}

@media screen and (min-width:0px) and (max-width:767px) {

	.contents_link_jirei{
		width:90%;
		margin: 50px auto 0;
	}
	.link_banner_jirei:nth-of-type(1){
		padding: 0;
		margin-bottom: 15px;
	}
	.link_banner_jirei:nth-of-type(2){
		padding: 0;
	}
	.link_banner_jirei a{
		display: block;
		width: 100%;
		height:0;
		padding-bottom: 82%;
		position: relative;
		overflow: hidden;
	}
	.link_jirei_title{
		width: 96%;
		height: 30%;
		padding: 25px 20px 0 0;
		text-align: right;
		background-image: url("../../img/base/bg_link_jirei_title.png");
		background-repeat: no-repeat;
		background-size:100% 100%;
		position: absolute;
		top:7px;left:2%;
		z-index: 2;
	}
	.link_jirei_title .eng{
		display: block;
		font-size: 12px;
		margin-bottom:0;
	}
	.link_jirei_image{
		width: 100%;
		height: 100%;
		background-color: #fff;
	}
	.link_jirei_image img{
		width: 120%;
		margin-left: -10%;
		transition: 1s;
		opacity: 0.75;
	}
	.link_banner_jirei a:hover > .link_jirei_image img{
		opacity: 1;
		transform:scale(1.025);
	}
}

/*---------------------------------------
    pager
---------------------------------------*/

#pager{
    margin: 100px auto;
    text-align: center;
}
#pager .pages,
#pager .nextpostslink,
#pager .previouspostslink{
	border: none;
}
#pager .page,
#pager .current{
	padding: 15px;
}
#pager .current{
	background-color: #000;
	color: #fff;
}

@media screen and (min-width:0px) and (max-width:989px) {
	
    #pager{
        margin: 50px auto;
        text-align: center;
    }
	#pager .pages,
	#pager .nextpostslink,
	#pager .previouspostslink{
		border: none;
		display: inline-block;
	}
	#pager .page,
	#pager .current{
		padding: 5px;
	}
	#pager .current{
		background-color: #000;
		color: #fff;
	}
}


/*====================================
	attract(under_page)
======================================*/

.attract{
	margin-top: 100px;
	padding: 75px 0;
	background-image: url("../../img/home/bg_we_area_attract_gray.png");
}
.attract h2{
	width: 167px;
	margin: 0 auto;
}
.attract .attract_link_area{
	margin-top: 50px;
}
.attract .attract_link a{
	display: block;
	width: 33%;
	height: 120px;
	margin: 0 0.33% 0.33% 0;
	overflow: hidden;
	position: relative;
	float: left;
}
.attract .attract_link_name{
	width: 100%;
	height: 120px;
	transition: .5s;
	background-color: rgba(0,0,0,0.70);
	color: #fff;
	padding: 70px 30px 0 0;
	text-align: right;
}
.attract .attract_link_image{
	width: 120px;
	height: 120px;
	overflow: hidden;
	background-color: #fff;
	position: absolute;
	top:0;left:0;
	z-index: 2;
}
.attract .attract_link_image img#at{
	display: block;
	width: 27px;
	height: 41px;
	position: absolute;
	top:30%;right:5%;
	opacity: 1;
}
.attract .attract_link_image img{
	width: auto;
	height: 100%;
	margin-left: -15%;
	transition: 1s;
	opacity: 0.7;
}
.attract .attract_link_image.no_opacity img{
	opacity: 1;
}
.attract .attract_link a:hover > .attract_link_name{
	background-color: rgba(0,0,0,1.00);
}
.attract .attract_link a:hover > .attract_link_image img{
	opacity: 1;
    transform:scale(1.025);
}
.attract aside{
	margin-top: 2px;
	padding:50px 0 25px;
	background-color: rgba(255,255,255,0.35);
}
.attract aside ul li{
	margin: 0 0 50px;
}
.attract aside ul li p.title_dot_white{
	width: 85%;
	padding-bottom: 10px;
	border-bottom: solid 1px #000;
	margin-bottom: 15px;
}
.attract aside ul li p a{
	text-decoration: underline;
}
	
@media screen and (min-width:0px) and (max-width:767px) {

	.attract{
		margin: 35px auto 0;
		padding: 50px 0 25px;
		background-image: url("../../img/home/bg_we_area_attract_gray_sp.png");
	}
	.attract h2{
		width: 100%;
		margin: 0 auto;
		text-align: center;
	}
	.attract h2 img{
		width: 50%;
	}
	.attract .attract_link a{
		display: block;
		width: 100%;
		height: 70px;
		margin: 0 0 2px;
		overflow: hidden;
		position: relative;
		float: none;
	}
	.attract .attract_link_area{
		margin-top: 30px;
		padding:0 5%;
	}
	.attract .attract_link_name{
		width: 100%;
		height: 70px;
		transition: .5s;
		background-color: rgba(0,0,0,0.70);
		color: #fff;
		padding: 40px 15px 0 0;
		text-align: right;
	}
	.attract .attract_link_image{
		width: 70px;
		height: 70px;
		overflow: hidden;
		background-color: #fff;
		position: absolute;
		top:0;left:0;
		z-index: 2;
	}
	.attract .attract_link_image img#at{
		display: block;
		width: 26px;
		height: 40px;
		position: absolute;
		top:30%;right:5%;
		opacity: 1;
	}
	.attract .attract_link_image img{
		width: auto;
		height: 100%;
		margin-left: -15%;
		transition: 1s;
		opacity: 0.7;
	}
	.attract .attract_link_image.no_opacity img{
		opacity: 1;
	}
	.attract .attract_link a:hover > .attract_link_name{
		background-color: rgba(0,0,0,1.00);
	}
	.attract .attract_link a:hover > .attract_link_image img{
		opacity: 1;
		transform:scale(1.025);
	}
	.attract aside{
		width: 90%;
		padding:25px 5% 10px;
		margin:2px auto 0;
		background-color: rgba(255,255,255,0.35);
	}
	.attract aside ul li{
		margin: 0 0 25px;
	}
	.attract aside ul li:nth-of-type(3),
	.attract aside ul li:nth-of-type(4){
		display: none;
	}
	.attract aside ul li p.title_dot_white{
		width: 100%;
		padding-bottom: 10px;
		border-bottom: solid 1px #000;
		margin-bottom: 15px;
		top:0;
	}
	.attract aside ul li p.title_dot_white:before{
		top:5px;
	}
	.attract aside ul li p a{
		text-decoration: underline;
	}
}


/*---------------------------------------
    #cf7
---------------------------------------*/

div#cf7{
    width: 100%;
}
div#cf7 p{
	text-align: center;
	margin-bottom: 75px;
}
div#cf7 p.last_text{
	color: #5b6b71;
	margin-bottom: 25px;
}
div#cf7 dl{
    width: 100%;
    margin-bottom: 50px;
}
div#cf7 dl dt{
    padding-top: 20px;
    position: relative;
}
div#cf7 dl dt:before{
	top:27px;
}
div#cf7 span.require{
    color: #ff0000;
    line-height: 1em;
    font-size: 12px;
    padding: 5px; 
}
div#cf7 dl dd input[type="text"]{
    width: 100%;
    border: solid 3px #687f87;
    height: 65px;
    line-height: 65px;
    padding: 0 15px;
    font-size: 16px;
	box-shadow: 0px 0px 5px #cccccc inset;
}
div#cf7 dl dd input[type="tel"]{
    width: 100%;
    border: solid 3px #687f87;
    height: 65px;
    line-height: 65px;
    padding: 0 15px;
    font-size: 16px;
	box-shadow: 0px 0px 5px #cccccc inset;
}
div#cf7 dl dd input[type="email"]{
    width: 100%;
    border: solid 3px #687f87;
    height: 65px;
    line-height: 65px;
    padding: 0 15px;
    font-size: 16px;
	box-shadow: 0px 0px 5px #cccccc inset;
}
div#cf7 dl dd textarea{
    width: 100%;
    height: 350px;
    border: solid 3px #687f87;
    font-size: 16px;
    padding: 15px;
	box-shadow: 0px 0px 5px #cccccc inset;
}
div#cf7 .submit{
    margin: 100px auto 0;
    text-align: center;
}
div#cf7 input[type="submit"]{
    display: block;
    border: none;
    width: 520px;
    height: 130px;
	border-radius: 5px;
	/*background-image:url("../../img/form/bg_submit_btn.png");*/
	background-color: #AAAAAA;
	background-repeat: no-repeat;
	background-position: center;
    text-align: center;
    color: #fff;
    font-size: 20px;
    margin: 0 auto;
    letter-spacing: 0.15em;
    transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
	cursor: pointer;
}
div#cf7 input[type="submit"]:hover{
    opacity: 0.8;
}

@media screen and (min-width:0px) and (max-width:989px) {
 
    div#cf7{
        width: 100%;
        margin: 30px 0 0;
    }
	div#cf7 p{
		text-align: left;
		margin-bottom: 25px;
	}
	div#cf7 p.last_text{
		color: #5b6b71;
		margin-bottom: 15px;
		text-align: center;
	}
    div#cf7 dl{
        width: 100%;
        margin-bottom: 20px;
    }
    div#cf7 dl dt{
        width: 100%;
        padding-top: 12px;
        margin-bottom: 10px;
        position: relative;
        float: none;
    }
	div#cf7 dl dt:before{
		top:18px;
	}
    div#cf7 span.require{
        color: #ff0000;
        line-height: 1em;
        font-size: 12px;
        padding:5px; 
    }
    div#cf7 dl dd{
        width: 100%;
        float: none;
    }
    div#cf7 dl dd input[type="text"]{
        width: 100%;
		border: solid 3px #687f87;
        height: 50px;
        line-height: 50px;
        padding: 0 15px;
        font-size: 14px;
		box-shadow: 0px 0px 5px #cccccc inset;
    }
	div#cf7 dl dd input[type="tel"]{
        width: 100%;
		border: solid 3px #687f87;
        height: 50px;
        line-height: 50px;
        padding: 0 15px;
        font-size: 14px;
		box-shadow: 0px 0px 5px #cccccc inset;
	}
	div#cf7 dl dd input[type="email"]{
        width: 100%;
		border: solid 3px #687f87;
        height: 50px;
        line-height: 50px;
        padding: 0 15px;
        font-size: 14px;
		box-shadow: 0px 0px 5px #cccccc inset;
	}
    div#cf7 dl dd textarea{
        width: 100%;
        height: 250px;
		border: solid 3px #687f87;
        font-size: 14px;
        padding: 10px;
		box-shadow: 0px 0px 5px #cccccc inset;
    }
    div#cf7 .submit{
        margin: 40px auto 0;
        text-align: center;
    }
    div#cf7 input[type="submit"]{
        display: block;
        border: none;
        width: 100%;
        height:0;
		padding-bottom: 30%;
		border-radius: 5px;
		/*background-image:url("../../img/form/bg_submit_btn.png");*/
		background-color: #AAAAAA;
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100% 100%;
		text-align: center;
		line-height: 100px;
		color: #fff;
        font-size: 16px;
        margin: 0 auto;
        letter-spacing: 0.15em;
        transition: all ease 0.3s;
        -moz-transition: all ease 0.3s;
        -webkit-transition: all ease 0.3s;
        -ms-transition: all ease 0.3s;
		cursor: pointer;
    }
    div#cf7 input[type="submit"]:hover{
        opacity: 0.8;
    }
}
