@charset "utf-8";
/* CSS Document */

body {
    line-height:1;
	font-family: Verdana, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	color:#333333;
    font-size:62.5%;
	line-height:1.6em;
}

* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
    behavior: url("boxsizing.htc");
}


 
/* 画面から画像がはみ出ないようにする */
img {
    max-width:100%;
    width /***/:auto; /* IE8のみ */
    height:auto;
    vertical-align:bottom;
}

/* レスポンシブで画像を切り替える（CSS） */
@media screen and (max-width: 800px) {
    .pc {
        display:none; /* PC用画像を非表示にする */
    }
}
/* レスポンシブで画像を切り替える（CSS） */
@media screen and (min-width: 801px) {
    .sp {
        display:none; /* PC用画像を非表示にする */
    }
}

/*==================
header
====================*/

header{
	width:100%;
	/*max-width:1180px;*/
	text-align:center;
	margin:0 auto;
	position:relative;
	/*overflow:hidden;*/
}

.headinner{
	max-width:1280px;
	margin:0 auto;
}
header h1{
	padding:15px 0 10px;
	text-align:left;
}

header .btn_contact{
	position:absolute;
	top:20px;
	right:0px;
	}

/*==================
ナビゲーション
====================*/

@media screen and (min-width: 801px) {
.headinner{
	min-width:960px;
	position:relative;
}
nav{/*
	max-width:1180px;*/
	border-top:1px solid #cccccc;
	width:100%;
	text-align:center;
	margin:10px auto 0px;
	}
nav ul{
	max-width:1280px;
	min-width:960px;
	margin:0 auto;
	overflow:hidden;
	font-size:1.6em;
}	
nav ul.gnav li{
	float:left;
	border-left:1px solid #cccccc;
	width:14.2857%;
	line-height:62px;
}
nav ul.gnav li a{
	text-decoration:none;
	color:#333;
	display:block;
}
nav ul.gnav li:last-child{
	border-right:1px solid #cccccc;
}
nav ul.gnav li.select{
	background:#fbf9ed;
	border-bottom:3px solid #f8d738;
	line-height:59px;
}
nav ul.gnav li:hover{
	background:#fbf9ed;
	border-bottom:3px solid #f8d738;
	line-height:59px;
}
}

@media screen and (max-width: 800px) {
#top-head{
	border-bottom:3px solid #dfdfdf;
}
header h1{
	padding:10px 0;
	text-align:left;
}
header h1 img{
	max-width:85%;
	max-height:40px;
}
/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 12px;
    top: 14px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 10000;
}
#nav-toggle div {
    position: relative;
    z-index: 10000;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #666;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    z-index: 10000;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}
    #top-head,
    .inner {
        width: 100%;
        padding: 0;
    }
    #top-head {
        top: 0;
        position: fixed;
        margin-top: 0;
    }
    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        background: transparent;
    }
    #mobile-head {
        background: #fff;
        width: 100%;
        height: 56px;
        z-index: 99999;
        position: relative;
    }
    #global-nav {
        position: absolute;
        /* 開いてないときは画面外に配置 */
        top: -500px;
        background: rgba(255,255,255,0.9);
        width: 100%;
        text-align: center;
        padding: 10px 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    z-index: 10000;
    }
    #global-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
    }
    #global-nav ul li {
        float: none;
        position: static;
		border-bottom:1px solid #dfdfdf;
		text-align:center;
    }
    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        width: 100%;
        display: block;
		color:#333;
		text-decoration:none;
		font-weight:bold;
		font-size:1.3em;
        padding: 12px 0;
    }
    #nav-toggle {
        display: block;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(556px);
        -webkit-transform: translateY(556px);
        transform: translateY(556px);
    }
nav ul.gnav li:hover{
	background:#fbf9ed;
}
.main,
.tmain{
	margin-top:50px;
}
}


/*==================
共通
====================*/

p{
	font-size:1.4em;
	line-height:1.8em;
	text-align:left;
	margin:15px 0px;
	}


/* レスポンシブで画像を切り替える（CSS） */
@media screen and (max-width: 800px) {
p{
	font-size:1.4em;
	line-height:1.8em;
	text-align:left;
	margin:15px 20px;
	}
	
}

table{
	text-align:center;
	margin:30px auto 50px;
	border-top:#b3b3b3 dotted 1px;
	width:100%;
}
table th{
	padding:12px 20px;
	border-bottom:#b3b3b3 dotted 1px;
	vertical-align:top;
	font-weight:normal;
	text-align:left;
	line-height:1.8em;
	font-size:1.3em;
}
table td{
	border-bottom:#b3b3b3 dotted 1px;
	vertical-align:top;
	font-weight:normal;
	text-align:left;
	line-height:1.8em;
	font-size:1.4em;
}
table td .yl{
	border-left:3px solid #f3cc10;
	padding:5px 20px;
	margin:5px 0;
}


@media only screen and (max-width:800px){
table{
	text-align:center;
	margin:20px auto 20px;
	border-top:#b3b3b3 dotted 1px;
	width:100%;
}
}
@media only screen and (max-width:480px){
    table { padding: 0 10px; }
    table th,
    table td{
        width: 100%;
        display: block;
    }
}

/*==================
トップページ
====================*/
.tmain{
	background:#f6f4ef;
	border-top:1px solid #cccccc;
	border-bottom:1px solid #cccccc;
	text-align:center;
	margin:0 auto;
        z-index: -1;
        position: relative;
		width:100%;
}
.tmaininner{
	max-width:1280px;
	text-align:center;
	margin:0 auto;
}
.tmaininner .pc-only{
	display: block;
}
.tmaininner .sp-only{
	display: none;
}
.tmaininner img{
	width: 100%;
	height: auto;
}
.tnews{
	padding:30px 0 0px;
}

.tnews .tnewsinner{
	max-width:1280px;
	margin:0 auto;
}

@media only screen and (min-width:761px){
.tmain{
	min-width:960px;
	}
.w20{
	width:20%;
	float:left;
}
.w80{
	margin:0px auto 30px;
	width:80%;
	float:left;
}
}
.tbtn{
	max-width:1280px;
	margin:20px auto;
}
.topbtnl{
	float:left;
	width:32%;
	text-align:center;
	margin-bottom:30px;
	margin-right:2%;
	border:1px solid #ccc;
	min-height:350px;
}
.topbtnr{
	float:right;
	text-align:center;
	margin-bottom:30px;
	width:32%;
	border:1px solid #ccc;
	min-height:350px;
}
.topbtnr2{
	float:right;
	text-align:center;
	margin-bottom:20px;
	width:32%;
}
.topbtnl img,
.topbtnr img{
	margin:1px;
}
.topbtnl h2,
.topbtnr h2{
	border-bottom:3px solid #ecd934;
	margin:5px 50px 10px;
	padding:15px;
	font-size:2.0em;
	font-weight:normal;
}
.topbtnl p,
.topbtnr p{
	text-align:center;
	margin:5px 25px 20px;
}

/*日付*/

#date{
	background: #ecd934 !important;
	width: 55%;
	float:left;
	height: 200px;
	text-align:center;
	margin:0 auto;
}

#date_text{
	margin: 0 auto;
	padding: 0;
	background: #ecd934;
	overflow:hidden;
}

#date p{
	color:#FFF;
	text-align:center;
	font-size:23px;
	margin:15px auto;
	background: #ecd934;
}

#date #monthName, #year, #dayName{
	font-size:23px;
	letter-spacing:0.1em;
}

#date p.day{
	font-weight:bold;
	line-height: 1.0em;
	font-size:45px;
}

/* 天気 */
#weather{
	float: left;
	width: 45%;
	/*width:100%;*/
}


#weather_today,
#weather_tomorrow{
	height: 100px;
	/*width:50%;
	float:left;*/
	text-align:center;
	border-top:1px solid #ccc;
}
#weather_tomorrow{
	border-bottom:1px solid #ccc;
}

#weather p{
	font-weight: bold;
	text-align:center;
	margin:10px auto 5px;
}



.banas{
	float:right;
	text-align:center;
	margin-bottom:30px;
	width:32%;
}
.banal{
	float:left;
	width:32%;
	margin-bottom:60px;
	margin-right:1%;
}


@media screen and (max-width: 800px) {

.tmain{
	margin-top:60px;
}
.tmaininner .pc-only{
	display: none;
}
.tmaininner .sp-only{
	display: block;
}
.tnews{
	padding:30px 0 10px;
}
.topbtn{
	font-size:1.3em;
	line-height:1.7em;
}
.topbtnl{
	float:left;
	width:48%;
	text-align:center;
	margin-bottom:20px;
	margin-right:1%;
	margin-left:1%;
	border:1px solid #ccc;
	min-height:383px;
}
.topbtnr{
	float:left;
	text-align:center;
	margin-bottom:20px;
	width:48%;
	margin-right:1%;
	margin-left:1%;
	border:1px solid #ccc;
	min-height:383px;
}
.topbtnr2{
	float:left;
	text-align:center;
	margin-bottom:10px;
	width:48%;
	margin-right:1%;
	margin-left:1%;
}
.topbtnl h2,
.topbtnr h2{
	border-bottom:3px solid #ecd934;
	margin:5px 20px 10px;
	padding:15px;
	font-size:1.8em;
	font-weight:normal;
}

.banas{
	float:right;
	text-align:center;
	margin-bottom:20px;
	width:48%;
	margin-right:1%;
	margin-left:1%;
}
.banal{
	float:none;
	width:100%;
	text-align:center;
	margin:0 auto 30px;
}

}
@media screen and (max-width: 600px) {

.topbtnl{
	min-height:345px;
}
.topbtnr{
	min-height:345px;
}
.topbtnl h2,
.topbtnr h2{
	border-bottom:3px solid #ecd934;
	margin:5px 10px 10px;
	padding:15px;
	font-size:1.6em;
	font-weight:normal;
}

#date{
	background: #ecd934 !important;
	width: 100%;
	float:none;
	height: 120px;
	text-align:center;
	margin:0 auto;
}
#date p{
	color:#FFF;
	text-align:center;
	font-size:20px;
	margin:5px auto;
	background: #ecd934;
}


#date #monthName, #year, #dayName{
	font-size:18px;
}

#date p.day{
	font-size:25px;
}
/* 天気 */
#weather{
	float: none;
	width: 100%;
	/*width:100%;*/
}

.banas{
	float:none;
	width:100%;
	text-align:center;
	margin:0 auto 30px;
}
.banal{
	float:none;
	width:100%;
	text-align:center;
	margin:0 auto 30px;
}

}

/*==================
ビル運営代行
====================*/

.building .main{
	background:url(../img/building/building_main.png) no-repeat center center; /*背景をhtml要素に表示*/
	background-size:cover; /* 背景画像をhtml要素にフィット */
	height:250px;
}
.building .title{
	text-align:center;
	padding:90px 0;
	z-index:1;
}
.building section{
	border-top:#dfdfdf 1px solid;
	overflow:hidden;
}
.building .backb{
	background:#f5f4ec;
}
.building .contents{
	max-width:1040px;
	margin:0 auto;
	padding:15px 0;
}
.building section .catch{
	color:#0d8db2;
	font-size:1.6em;
	font-weight:bold;
	line-height:1.8em;
	padding:10px;
	letter-spacing:0.05em;
}
.building h2{
	text-align:center;
	margin:30px auto;
}
.building h3{
	text-align:center;
	margin:20px auto 40px;
}
.building h4{
	background:url(../img/common/h4_line.png) left bottom no-repeat;
	text-align:left;
	font-size:1.8em;
	margin:0px auto 20px;
	padding:15px 0px;
	letter-spacing:0.05em;
}
@media screen and (max-width: 800px) {
.building .contents{
	text-align:center;
}
.building h4{
	padding:15px 20px;
	}
}

.building .btn {
	padding:20px 0 60px;
	margin:0 auto;
	overflow:hidden;
	max-width:900px;
}
.building .btn ul li{
	float:left;
	width:25%;
	display:block;
	text-align:center;
}

.building .buildingp01{
	background:url(../img/building/building_p01.png) no-repeat center center; /*背景をhtml要素に表示*/
	background-size:cover; /* 背景画像をhtml要素にフィット */
	height:360px;
}
.building .buildingp02{
	background:url(../img/building/building_p02.png) no-repeat center left; /*背景をhtml要素に表示*/
	background-size:cover; /* 背景画像をhtml要素にフィット */
	height:360px;
}
.building .buildingp03{
	background:url(../img/building/building_p03.png) no-repeat center center; /*背景をhtml要素に表示*/
	background-size:cover; /* 背景画像をhtml要素にフィット */
	height:360px;
}
/*==================
改修工事
====================*/

.refurbishment .main{
	background:url(../img/refurbishment/refurbishment_main.png) no-repeat center center; /*背景をhtml要素に表示*/
	background-size:cover; /* 背景画像をhtml要素にフィット */
	height:250px;
}
.refurbishment .title{
	text-align:center;
	padding:90px 0;
	z-index:1;
}
.refurbishment section{
	border-top:#dfdfdf 1px solid;
}
.refurbishment .contents{
	max-width:1040px;
	margin:0 auto;
	overflow:hidden;
	padding:15px 0;
}
.refurbishment section .catch{
	color:#0d8db2;
	font-size:1.6em;
	font-weight:bold;
	line-height:1.8em;
	padding:10px;
	letter-spacing:0.05em;
}
.refurbishment h2{
	text-align:center;
	margin:30px auto;
}
.refurbishment h3{
	text-align:center;
	margin:20px auto 40px;
}
.refurbishment h4{
	background:url(../img/common/h4_line.png) left bottom no-repeat;
	text-align:left;
	font-size:1.8em;
	margin:0px auto 20px;
	padding:15px 0px;
	letter-spacing:0.05em;
}
@media screen and (max-width: 800px) {
.refurbishment h4{
	padding:15px 20px;
	}
}

.refurbishment .btn {
	padding:20px 0 60px;
	margin:0 auto;
	overflow:hidden;
	max-width:1000px;
}
.refurbishment .btn ul li{
	float:left;
	width:20%;
	display:block;
	text-align:center;
}

.refurbishment .refurbishmentp01{
	background:url(../img/refurbishment/refurbishment_p01.png) no-repeat center center; /*背景をhtml要素に表示*/
	background-size:cover; /* 背景画像をhtml要素にフィット */
	height:360px;
}
.refurbishment .refurbishmentp02{
	background:url(../img/refurbishment/refurbishment_p02.png) no-repeat center center; /*背景をhtml要素に表示*/
	background-size:cover; /* 背景画像をhtml要素にフィット */
	height:360px;
}
.refurbishment .refurbishmentp03{
	background:url(../img/refurbishment/refurbishment_p03.png) no-repeat center center; /*背景をhtml要素に表示*/
	background-size:cover; /* 背景画像をhtml要素にフィット */
	height:360px;
}
.refurbishment .refurbishmentp04{
	background:url(../img/refurbishment/refurbishment_p04.png) no-repeat center center; /*背景をhtml要素に表示*/
	background-size:cover; /* 背景画像をhtml要素にフィット */
	height:360px;
}


/*==================
内装工事
====================*/

.reform .main{
	background:url(../img/reform/reform_main.png) no-repeat center center; /*背景をhtml要素に表示*/
	background-size:cover; /* 背景画像をhtml要素にフィット */
	height:250px;
}
.reform .title{
	text-align:center;
	padding:90px 0;
	z-index:1;
}
.reform section{
	border-top:#dfdfdf 1px solid;
}
.reform .backb{
	background:#f5f4ec;
}
.reform .contents{
	max-width:1040px;
	margin:0 auto;
	overflow:hidden;
	padding:15px 0;
}
.reform section .catch{
	color:#0d8db2;
	font-size:1.6em;
	font-weight:bold;
	line-height:1.8em;
	padding:10px;
	letter-spacing:0.05em;
}
.reform h2{
	text-align:center;
	margin:30px auto;
}
.reform h3{
	text-align:center;
	margin:20px auto 40px;
}
.reform h4{
	background:url(../img/common/h4_line.png) left bottom no-repeat;
	text-align:left;
	font-size:1.8em;
	margin:0px auto 20px;
	padding:15px 0px;
	letter-spacing:0.05em;
}
@media screen and (max-width: 800px) {
.reform h4{
	padding:15px 20px;
	}
}

.reform .btn {
	padding:20px 0 60px;
	margin:0 auto;
	overflow:hidden;
	max-width:700px;
}
.reform .btn ul li{
	float:left;
	width:33.3333%;
	display:block;
	text-align:center;
}

.reform .reformp01{
	background:url(../img/reform/reform_p01.png) no-repeat center center; /*背景をhtml要素に表示*/
	background-size:cover; /* 背景画像をhtml要素にフィット */
	height:360px;
}
.reform .reformp02{
	background:url(../img/reform/reform_p02.png) no-repeat center left; /*背景をhtml要素に表示*/
	background-size:cover; /* 背景画像をhtml要素にフィット */
	height:360px;
}
.reform  .jirei .w50{
	width:50%;
	float:left;
/*	text-align:center;*/
text-align:left;
	margin:20px auto;
	padding:10px;
	font-size:1.3em;
	line-height:2em;
	letter-spacing:0.1em;
}
@media screen and (max-width: 800px) {
.reform  .jirei .w50{
	width:100%;
	float:none;
	}
}

/*==================
資産運用
====================*/

.management .main{
	background:url(../img/management/management_main.png) no-repeat center center; /*背景をhtml要素に表示*/
	background-size:cover; /* 背景画像をhtml要素にフィット */
	height:250px;
}
.management .title{
	text-align:center;
	padding:90px 0;
	z-index:1;
}
.management section{
	border-top:#dfdfdf 1px solid;
}
.management .backb{
	background:#f5f4ec;
}
.management .contents{
	max-width:1040px;
	margin:0 auto;
	overflow:hidden;
	padding:15px 0;
}
.management section .catch{
	color:#0d8db2;
	font-size:1.6em;
	font-weight:bold;
	line-height:1.8em;
	padding:10px;
	letter-spacing:0.05em;
}
.management h2{
	text-align:center;
	margin:30px auto;
}
.backy{
	border-bottom:#DDBF2D 8px solid;
	border-left:#DDBF2D 8px solid;
	border-right:#DDBF2D 8px solid;
	padding:0 0 10px;
	text-align:center;
}
.management h3{
	text-align:center;
	margin:0px auto 10px;
	font-size:2.5em;
	line-height:2.0em;
	color:#fff;
	background:#ddbf2d;
	font-weight:normal;
	letter-spacing:0.05em;
}
.management h4{
	background:url(../img/common/h4_line.png) left bottom no-repeat;
	text-align:left;
	font-size:1.8em;
	margin:0px auto 20px;
	padding:15px 0px;
	letter-spacing:0.05em;
}
@media screen and (max-width: 800px) {
.management h4{
	padding:15px 20px;
	}
}
.management .contents ul li{
	font-size:1.3em;
	line-height:1.8em;
	list-style:disc;
	margin-left:25px;
}

/*==================
会社概要
====================*/

.company .main{
	background:url(../img/company/company_main.png) no-repeat center center; /*背景をhtml要素に表示*/
	background-size:cover; /* 背景画像をhtml要素にフィット */
	height:250px;
}
.company .title{
	text-align:center;
	padding:90px 0;
	z-index:1;
}
.company .contents{
	max-width:1040px;
	margin:0 auto;
	overflow:hidden;
	padding:0 20px;
	padding-top:30px;
}
.company h2{
	text-align:center;
	margin:20px auto;
}
.company table {
	margin:50px 0 80px;
}
.company table th{
	color:#0d8db2;
	background:#f8f7f1;
	white-space:nowrap;
	font-weight:bold;
}
.company table td{
	letter-spacing:0.1em;
	padding:10px 20px;
}

/*==================
求める人物像
====================*/

.recruit .main{
	background:url(../img/recruit/recruit_main.png) no-repeat center center; /*背景をhtml要素に表示*/
	background-size:cover; /* 背景画像をhtml要素にフィット */
	height:450px;
}
.recruit .title{
	text-align:center;
	padding:190px 0;
	z-index:1;
}
.recruit section{
	border-top:#dfdfdf 1px solid;
}
.recruit .backb{
	background:#f5f4ec;
}
.recruit .contents{
	max-width:1040px;
	margin:0 auto;
	overflow:hidden;
	padding:15px 0;
}
.recruit .catch{
	color:#0d8db2;
	font-size:1.6em;
	font-weight:bold;
	line-height:1.8em;
	padding:10px;
	letter-spacing:0.05em;
}
.recruit h2{
	text-align:center;
	margin:30px auto;
}

.recruit .recruitbtn{
	max-width:1280px;
	margin:30px auto 50px;
	overflow:hidden;
}
.recruit .btnl{
	float:left;
	width:32%;
	text-align:center;
	margin-bottom:30px;
	margin-right:2%;
}
.recruit .btnr{
	float:right;
	text-align:center;
	margin-bottom:30px;
	width:32%;
}
/*==================
管理の仕事
====================*/

.recruit_kanri .main{
	background:url(../img/recruit/kanri_main.png) no-repeat center center; /*背景をhtml要素に表示*/
	background-size:cover; /* 背景画像をhtml要素にフィット */
	height:450px;
}
.recruit_kanri .catch{
	text-align:left;
	padding:50px 10px;
	max-width:1200px;
	margin:0 auto;
	z-index:1;
}
.recruit_kanri .name{
	text-align:left;
	padding:50px 10px;
	max-width:1200px;
	margin:0 auto;
	z-index:1;
}

.recruit_kanri .contents{
	max-width:1040px;
	margin:0 auto;
	overflow:hidden;
	padding:15px 0;
}

.recruit_kanri .contents img.fR,
.recruit_kanri .contents img.fL{
	margin-bottom:50px;
}
@media screen and (max-width: 800px) {

.recruit_kanri .main{
	background:none;
	height:auto;
}
.recruit_kanri .catch{
	text-align:center;
	padding:10px 10px 0px;
	z-index:1;
}
.recruit_kanri .name{
	text-align:right;
	margin-top:20px;
	padding:10px 10px;
	z-index:1;
	font-size:1.2em;
	background:#efefef;
}
.recruit_kanri .contents{
	text-align:center;
	margin:0px auto;
}
.recruit_kanri .contents img.fR,
.recruit_kanri .contents img.fL{
	margin-bottom:20px;
}
}

.recruit_kanri h2{
	background:url(../img/common/h4_line.png) left bottom no-repeat;
	text-align:left;
	font-size:1.8em;
	margin:30px auto 20px;
	padding:15px 0px;
	letter-spacing:0.05em;
	clear:both;
}

/*==================
リフォームの仕事
====================*/

.recruit_reform .main{
	background:url(../img/recruit/reform_main.png) no-repeat center center; /*背景をhtml要素に表示*/
	background-size:cover; /* 背景画像をhtml要素にフィット */
	height:450px;
}
.recruit_reform .catch{
	text-align:left;
	padding:50px 10px;
	max-width:1200px;
	margin:0 auto;
	z-index:1;
}
.recruit_reform .name{
	text-align:left;
	padding:50px 10px;
	max-width:1200px;
	margin:0 auto;
	z-index:1;
}

.recruit_reform .contents{
	max-width:1040px;
	margin:0 auto;
	overflow:hidden;
	padding:15px 0;
}

.recruit_reform .contents img.fR,
.recruit_reform .contents img.fL{
	margin-bottom:50px;
}
@media screen and (max-width: 800px) {

.recruit_reform .main{
	background:none;
	height:auto;
}
.recruit_reform .catch{
	text-align:center;
	padding:10px 10px 0px;
	z-index:1;
}
.recruit_reform .name{
	text-align:right;
	margin-top:20px;
	padding:10px 10px;
	z-index:1;
	font-size:1.2em;
	background:#efefef;
}
.recruit_reform .contents{
	text-align:center;
	margin:0px auto;
}
.recruit_reform .contents img.fR,
.recruit_reform .contents img.fL{
	margin-bottom:20px;
}
}

.recruit_reform h2{
	background:url(../img/common/h4_line.png) left bottom no-repeat;
	text-align:left;
	font-size:1.8em;
	margin:30px auto 20px;
	padding:15px 0px;
	letter-spacing:0.05em;
	clear:both;
}

/*==================
募集要項
====================*/

.recruit_boshu .main{
	background:url(../img/recruit/boshu_main.png) no-repeat center center; /*背景をhtml要素に表示*/
	background-size:cover; /* 背景画像をhtml要素にフィット */
	height:250px;
}
.recruit_boshu .title{
	text-align:center;
	padding:90px 0;
	z-index:1;
}
.recruit_boshu .contents{
	max-width:1040px;
	margin:0 auto;
	overflow:hidden;
	padding:0 20px;
	padding-top:30px;
}
.recruit_boshu h2{
	text-align:center;
	margin:20px auto;
}
.recruit_boshu h3{
	text-align:center;
	margin:10px auto 20px;
	font-size:1.8em;
	font-weight:normal;
	letter-spacing:0.1em;
}
.recruit_boshu h4{
	background:url(../img/common/h4_line.png) left bottom no-repeat;
	text-align:left;
	font-size:1.8em;
	margin:30px auto 20px;
	padding:15px 0px;
	letter-spacing:0.05em;
	clear:both;
}
.recruit_boshu table {
	margin:50px 0 80px;
}
.recruit_boshu table th{
	color:#0d8db2;
	background:#f8f7f1;
	white-space:nowrap;
	font-weight:bold;
}
.recruit_boshu table td{
	letter-spacing:0.1em;
	padding:10px 20px;
}

.fcol_b{
	color:#1e748d;
	font-weight:bold;
}
.fcol_r{
	color:#c55050;
}
.waku_y{
	color:#f8f7f1;
	background:#e8c104;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
    display: inline-block;
  font-weight:bold;
  padding:10px;
}

.process{
	text-align:center;
	font-size:1.6em;
	letter-spacing:0.05em;
}
.process .process01{
	background:#faeb9f;
	padding:20px;
}
.process .process02{
	background:#f8e37c;
	padding:20px;
}
.process .process03{
	background:#f7db57;
	padding:20px;
}
.process .process04{
	background:#f5d434;
	padding:20px;
}
.process .process05{
	background:#f3cc10;
	padding:20px;
}
/*==================
お問い合わせ
====================*/

.contact .main{
	background:url(../img/contact/contact_main.png) no-repeat center center; /*背景をhtml要素に表示*/
	background-size:cover; /* 背景画像をhtml要素にフィット */
	height:250px;
}
.contact .title{
	text-align:center;
	padding:90px 0;
	z-index:1;
}
.contact .contents{
	max-width:1040px;
	margin:0 auto;
	overflow:hidden;
	padding:0 20px;
	padding-top:30px;
	margin-bottom:80px;
}
.contact h2{
	text-align:center;
	margin:20px auto;
}
.contact table {
	margin:50px 0 50px;
}
.contact table th{
	color:#0d8db2;
	background:#f8f7f1;
	white-space:nowrap;
	font-weight:bold;
}
.contact table td{
	letter-spacing:0.1em;
	padding:10px 20px;
}
.submit{
	width:50%;
	background:#f8f7f1;
	color:#0d8db2;
	font-size:1.4em;
	padding:8px 5px;
	margin:30px 25% 10px;
	text-decoration:none;
	line-height:1.8em;
	display:block;
	letter-spacing:0.3em;
	font-weight:bold;
}
.submit:hover{
	background:#efefef;
}

.contact p{
	margin:20px auto 40px;
		}
.contact .contents dl{
	margin:20px auto 40px;
	text-align:left;
	}
.contact .contents dt{
	font-size:1.8em;
	line-height:2.0em;
	margin:10px;
	}
.contact .contents dd{
	font-size:1.4em;
	line-height:1.8em;
	margin:0 0 30px 20px;
	}
@media screen and (max-width:980px){
.contact p{
	margin:50px auto 40px;
		}
	}
/* Tintai */
@media screen and (max-width:800px){
.contact p{
	margin:10px auto;
		}
	}

/*==================
フッターナビゲーション
====================*/

.footernavi{
	/*background:#f5f4ec;*/
	background:#f7f4ef;
	border-top:1px solid #e1e1e1;
	border-bottom:1px solid #e1e1e1;
	width:100%;
	padding:20px 0 30px;
	overflow:hidden;
}

.footernaviinner{
	max-width:1280px;
	margin:0 auto;
}

.fcom{
	border-bottom:2px solid #f9e16e;
	padding:10px;
	overflow:hidden;
}
.fcoml{
	font-size:1.8em;
	font-weight:bold;
	float:left;
}
.fcomr{
	font-size:1.3em;
	float:right;
}

.fnavi{
	width:16.6666%;
	float:left;
}
.fnavi dl dt{
	font-size:1.6em;
	padding:20px 10px 15px;
	font-weight:bold;
}
.fnavi dl dd{
	font-size:1.3em;
	padding:5px 10px;
}
.fnavi dl dd a{
	background:url(../img/common/footer_yaji.png) left 50% no-repeat;
	padding-left:15px;
	text-decoration:none;
	color:#555555;
	display:block;
}
.fnavi dl dd a:hover{
	color:#F54A4D;
}

/*==================
フッター
====================*/
footer{
	clear:both;
	padding:15px 0px;
	margin:0 auto;
	overflow:hidden;
	max-width:1280px;
}
.fmenu{
	float:left;
	font-size:1.3em;
}
.copyright{
	float:right;
	font-size:1.2em;
	font-family:verdana;
	text-align:center;
}

/* レスポンシブで画像を切り替える（CSS） */
@media screen and (max-width: 800px) {
.fcoml{
	font-size:1.6em;
	font-weight:bold;
	float:none;
	margin-bottom:10px;
}
.fcomr{
	font-size:1.2em;
	float:none;
}
.fnavi{
	width:33.3333%;
	float:left;
	margin-bottom:30px;
}
.br800{
	clear:both;
}
.fmenu{
	float:none;
	margin-bottom:15px;
}
.copyright{
	float:none;
	font-size:1.1em;
}
}
/* レスポンシブで画像を切り替える（CSS） */
@media screen and (max-width: 500px) {
.fnavi{
	width:50%;
	float:left;
	margin-bottom:30px;
}
.br800{
	clear:none;
}
.br500{
	clear:both;
}
}

/* PageTop */
.pageTop{
	position:fixed;
	right:20px;
	bottom:40px;
	display:none;
	z-index:500;
}
.pageTop:hover{
	filter: alpha(opacity=70);
	-moz-opacity:0.7;
	opacity:0.7;
}



@media print {
.sp {
   display:none; /* PC用画像を非表示にする */
}
	
.headinner{
	min-width:960px;
	position:relative;
}
nav{/*
	max-width:1180px;*/
	border-top:1px solid #cccccc;
	width:100%;
	text-align:center;
	margin:10px auto 0px;
	}
nav ul{
	max-width:1280px;
	min-width:960px;
	margin:0 auto;
	overflow:hidden;
	font-size:1.6em;
}	
nav ul.gnav li{
	float:left;
	border-left:1px solid #cccccc;
	width:14.2857%;
	line-height:62px;
}
nav ul.gnav li a{
	text-decoration:none;
	color:#333;
	display:block;
}
nav ul.gnav li:last-child{
	border-right:1px solid #cccccc;
}
nav ul.gnav li.select{
	background:#fbf9ed;
	border-bottom:3px solid #f8d738;
	line-height:59px;
}
nav ul.gnav li:hover{
	background:#fbf9ed;
	border-bottom:3px solid #f8d738;
	line-height:59px;
}
.tmain{
	min-width:960px;
	}
.w20{
	width:20%;
	float:left;
}
.w80{
	margin:0px auto 30px;
	width:80%;
	float:left;
}
}