@charset "utf-8";

/*----------------------------------------------------------


2013リニューアル

【header】
【footer】
【ベースとなるCSS】

 ＝ 全てのページに使用される可能性のあるCSSを記述
・角丸部分（radius）
・パンくずリスト

----------------------------------------------------------*/

body {
	/*overflow-x:hidden;
	overflow-y:auto;*/
	width:100%;
	/*min-width:960px;*/
	/*position:relative;*/
}

.contentsinner {
	/*background-color:#FFFCF2;*//*★20200710追加*/
	padding:15px;
	margin: 0 auto 0;
	width:960px;
}


/* リンク */
a {
	text-decoration:underline;
}

 a:hover img{
 	filter: alpha(opacity=80);
 	-moz-opacity:0.80;
	opacity:0.80;
}


/*----------------------------------------------------------*/
/*SNSボタン */
.snsBox {
	position:absolute;
	right:0;
}

/*----------------------------------------------------------*/

/* 汎用非表示クラス */
 .nd{
 	display:none;
 }

select {
	text-indent: .01px; /*Firefox用*/
    text-overflow: ""; /*Firefox用*/
}

/*セレクトボックスIE対応*/
select::-ms-expand {
  display: none;
}

/*テキストボックスIE11対応*/
input::-ms-clear { display:none; }
input::-ms-reveal { display:none; }

/*----------------------------------------------------------

					角丸部分（radius）

・基本的には外周はradiusは5pxで統一
	radius5にある要素は3px
・楕円のボタンなどは15pxで統一

その他、細かい指示は各classにて指示
----------------------------------------------------------*/
.rad3{
    border-radius: 3px;        /* CSS3草案 */
    -webkit-border-radius: 3px;    /* Safari,Google Chrome用 */
    -moz-border-radius: 3px;   /* Firefox用 */
}
.rad5{
    border-radius: 5px;        /* CSS3草案 */
    -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */
    -moz-border-radius: 5px;   /* Firefox用 */
}
.rad10{
    border-radius: 10px;        /* CSS3草案 */
    -webkit-border-radius: 10px;    /* Safari,Google Chrome用 */
    -moz-border-radius: 10px;   /* Firefox用 */
}
.rad15{
    border-radius: 15px;        /* CSS3草案 */
    -webkit-border-radius: 15px;    /* Safari,Google Chrome用 */
    -moz-border-radius: 15px;   /* Firefox用 */
}
.rad5top{
    border-radius: 5px 5px 0 0;        /* CSS3草案 */
    -webkit-border-radius: 5px 5px 0 0;    /* Safari,Google Chrome用 */
    -moz-border-radius: 5px 5px 0 0;   /* Firefox用 */
}



/*----------------------------------------------------------

				ヘッダー

----------------------------------------------------------*/
.top_line {
	border-top:5px solid #534741;
}
#header{
	width:100%;
	background:#fff;
}

/*サイトヘッダー　背景
----------------------------------------------------*/

/*サイトヘッダー　リンク
----------------------------------------------------*/
.header_link {
	width:960px;
	margin:0 auto;
	position:relative;
	z-index:2;
}

a.link_job {
	display:block;
	height:25px;
	width:130px;
	text-align:center;
	line-height:25px;
	background-color:#4897e2;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    font-size:11px;
    color:#FFF;
    font-weight:bold;
    text-decoration:none;
}

a.link_job:hover {
	color:#FFF;
	filter: alpha(opacity=70);
    -moz-opacity:0.70;
    opacity:0.70;
}

ul.header_link_inner {
	position:absolute;
	right:0;
	top:0;
	display:table;
	border-collapse:separate;
	border-spacing:1px 0;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
}

ul.header_link_inner li {
	display:table-cell;
	width:30%;
	text-align:center;
	vertical-align:middle;
	height:31px;
}



ul.header_link_inner li {
	background-color:#534741;
}

ul.header_link_inner li:nth-of-type(1){
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}

ul.header_link_inner li:nth-of-type(2){
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}

ul.header_link_inner li a {
	color:#FFF;
	font-weight:bold;
	font-size:12px;
	text-decoration:none;
	display:block;
	width:100%;
	/*padding:6px 0 6px;*/
}

ul.header_link_inner li:hover {
	filter: alpha(opacity=70);
    -moz-opacity:0.70;
    opacity:0.70;
}

/*ul.header_link_inner li:first-of-type a {
	background-image:url(../../img/home/icon_search.png);
	background-repeat:no-repeat;
	background-size:12px;
	background-position:5px center;
	padding-left:8px;
}*/

ul.header_link_inner li:nth-of-type(3) a {
	border-left:1px solid #FFF;
	}

.status {
	position:absolute;
	left:140px;
	top:8px;
}

#recUpdate span.lpdyy,#recUpdate span.lpdyyc,#recUpdate span.lpdday{
	display:none;
}

/*サイトヘッダー　ロゴ
----------------------------------------------------*/

#header .headerInner {
	margin: 0 auto;
	height: 116px;
	width: 960px;
	background: url(../../img/header/jungle_img_01.png) no-repeat right bottom;
	position:relative;
}
#header .headerInner .logoinner{
	width: 630px;
	height: 0px;
	/*background: url(../../img/header/header_sub_title.png) no-repeat right 8px;*/
	position:absolute;
	top:20px;
	z-index:2;
}

/* Site Title */
#header h1.siteTitle,
#header h1.siteTitle a{
	float:left;
	display:block;
}
#header h1.siteTitle a{
	background: url(../../img/header/sitetitle_logo_04.png) no-repeat 0 0;
  background-size: 300px;
	text-decoration: none;
	text-indent: -9999em;
	outline: none;
	width: 300px;
	height: 70px;
	margin-right:10px;
	margin-top: 10px;
}
#header h1.siteTitle a:hover{
	filter: alpha(opacity=70);
    -moz-opacity:0.70;
    opacity:0.70;
}

.update {
	position:absolute;
	top:12px;
	right:3px;
	font-weight:bolder;
	z-index:2;
}
.update span {
	color: #e86588;
}

/*エリア選択
----------------------------------------------------*/
select.header_area {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 3px;
  -webkit-border-radius: 3px;    /* Safari,Google Chrome用 */
  -moz-border-radius: 3px;
  border: 0;
  margin: 0px 0 0 0;
  
  padding: 0px 24px 0px 10px;
  background-color:#00963e;
  background-image:none\9;
  background-image: url(../../img/header/area_select_toggle.png);
  background-position: 96% center;
  background-repeat:no-repeat;
  background-size:16px 17px;
  vertical-align: middle;
  font-size: 14px;
  height:40px;
  color: #FFF;
  font-weight:normal;
  text-align:center;
  width:90px;
  min-width:90px;
  box-sizing: content-box;
	/* box-shadow */
	box-shadow:rgba(0, 0, 0, 0.15) 1px 1px 1px 1px;
	-webkit-box-shadow:rgba(0, 0, 0, 0.15) 1px 1px 1px 1px;
	-moz-box-shadow:rgba(0, 0, 0, 0.15) 1px 1px 1px 1px;
	cursor:pointer;
}

select.header_area:hover {
	background-color: #008537;
	/* box-shadow */
	box-shadow: none;
}


/*▼地域選択プルダウン用追加*/
.select{
    position: relative;
    border-radius: 3px;
  -webkit-border-radius: 3px;    /* Safari,Google Chrome用 */
  -moz-border-radius: 3px;
  border: 0;
  margin: 8px 0 0 360px;
  padding: 0px 24px 0px 0px;
  background-color:#00963e;
  background-image:none\9;
  background-image: url(../../img/header/area_select_toggle.png);
  background-position: 96% center;
  background-repeat:no-repeat;
  background-size:16px 17px;
  vertical-align: middle;
  height:40px;
  color: #FFF;
  font-weight:bold;
  text-align:center;
  width:90px;
  min-width:90px;
  box-sizing: content-box;
	/* box-shadow */
	box-shadow:rgba(0, 0, 0, 0.15) 1px 1px 1px 1px;
	-webkit-box-shadow:rgba(0, 0, 0, 0.15) 1px 1px 1px 1px;
	-moz-box-shadow:rgba(0, 0, 0, 0.15) 1px 1px 1px 1px;
	cursor:pointer;
}
.select select{
    opacity: 0;
    top:0;
    left:0;
    z-index: 10;
    position: relative;
}
.pulldownText{
    position: absolute;
    left: 0;
    top: 0;
    font-size: 13px;
    display:block;
    width:90px;
    height:40px;
    line-height: 40px;
    z-index: 1;
}
/*▲地域選択プルダウン用追加*/
/*
.area01 {


}

.area02 {
	background-color:#00A9C7;
}

.area03 {
	background-color:#FFAB1B;
}

.area04 {
	background-color:#C8B319;
}

.area05 {
	background-color:#88C813;
}

.area06 {
	background-color:#2ECB71;
}

.area07 {
	background-color:#5CBFF1;
}

.area99 {
	background-color:#917DB8;
}
*/


/*---------　gnavi　-----------*/

.gnavi {
	background:#00ab4a;
	height:82px;
	/* box-shadow */
	box-shadow:rgba(0, 0, 0, 0.3) 0px 2px 3px 1px;
	-webkit-box-shadow:rgba(0, 0, 0, 0.3) 0px 2px 3px 1px;
	-moz-box-shadow:rgba(0, 0, 0, 0.3) 0px 2px 3px 1px;
	position:relative;
	z-index:21;
}

.gnavi_error {
	background:#00ab4a;
	height:60px;
	/* box-shadow */
	box-shadow:rgba(0, 0, 0, 0.3) 0px 2px 3px 1px;
	-webkit-box-shadow:rgba(0, 0, 0, 0.3) 0px 2px 3px 1px;
	-moz-box-shadow:rgba(0, 0, 0, 0.3) 0px 2px 3px 1px;
	position:relative;
	z-index:21;
}

.gnavi_inner {
	width:960px;
	margin:0 auto;
	display:table;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
}



div.age_select_area {
	display:table-cell;
	width:315px;
	vertical-align:top;
	padding:10px 0 4px;
}

.age_select_lead {
	color:#fff;
	font-size:12px;
	font-weight:bolder;
}

.age_selected {
	display:inline-block;
	color:#555;
	padding:8px 60px 8px 40px;
	margin-top:4px;
	font-size: 16px;
	position:relative;
	font-weight:bolder;
	background-color:#f7f7f7;
	background-image:url(../../img/header/age_select_arrow.png),-webkit-gradient(linear, left top, left bottom, from(#fff), to(#dde9d9));
	background-image:url(../../img/header/age_select_arrow.png),-moz-linear-gradient(top,#fff,#dde9d9);
	background-image:url(../../img/header/age_select_arrow.png),-ms-linear-gradient(top,#fff,#dde9d9);
	background-image:url(../../img/header/age_select_arrow.png),-ms-filter:"progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#fff', endColorstr='#dde9d9')";
	zoom: 1;
    	background-repeat:no-repeat;
    	background-position:95% center;
	/* box-shadow */
	box-shadow:rgba(0, 0, 0, 0.2) 1px 1px 1px 1px;
	-webkit-box-shadow:rgba(0, 0, 0, 0.2) 1px 1px 1px 1px;
	-moz-box-shadow:rgba(0, 0, 0, 0.2) 1px 1px 1px 1px;
	cursor:pointer;
}

.age_selected:hover {
	background-color:#eeeeee;
	background-image:url(../../img/header/age_select_arrow.png),-webkit-gradient(linear, left top, left bottom, from(#dde9d9), to(#dde9d9));
	background-image:url(../../img/header/age_select_arrow.png),-moz-linear-gradient(top,#dde9d9,#dde9d9);
	background-image:url(../../img/header/age_select_arrow.png),-ms-linear-gradient(top,#dde9d9,#dde9d9);
	background-image:url(../../img/header/age_select_arrow.png),-ms-filter:"progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#dde9d9', endColorstr='#dde9d9')";
    	background-repeat:no-repeat;
    	background-position:95% center;
	/* box-shadow */
	box-shadow: none;
}

.age_selected:not(:target) {
	background-color:#f7f7f7;
	background-image:url(../../img/header/age_select_arrow.png);
	background-repeat:no-repeat;
	background-position:95% center;
}

.selected {
	font-size:16px;
}

.age_select_text {
	color:#fff;
	font-size:20px;
	font-weight:bold;
	letter-spacing: 3px;
	margin-left: 5px;
	/*text-shadow: 2px 2px #FFFFFF;*/
}

div.header_contents {
	display:table-cell;
	width:600px;
}

div.header_contents ul {
	display:table;
	width:100%;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
	border-left:1px solid #228e4e;
	border-right:1px solid #7cdda3;
}

div.header_contents ul li {
	width:25%;
	display:table-cell;
	height:82px;
	text-align:center;
	vertical-align:middle;
	border-left:1px solid #7cdda3;
	border-right:1px solid #228e4e;
}

div.header_contents ul li a {
	font-size:16px;
	font-weight:bold;
	color:#fff;
	text-decoration:none;
	/*text-shadow: 2px 2px #FFFFFF;*/
	display:block;
}

div.header_contents ul li.nav01 a {
}

div.header_contents ul li a span {
	display:block;
	width:66px;
	height:75px;
	margin:-40px auto 0px auto;
}

.nav01 {

}

.nav01 a span {
	background-image: url(../../img/header/gnavi_icon02.png);
	background-repeat:no-repeat;
	background-position:-264px 0px;
}

.nav01:hover a span {
	background-image: url(../../img/header/gnavi_icon02.png);
	background-repeat:no-repeat;
	background-position:0 0px;
}

.nav01:hover {
	/*background-image:url(../../img/header/gnavi_triangle01.png);*/
	background-repeat: no-repeat;
	background-position: center bottom;
}

.nav02 {

}

.nav02:hover {
	/*background: url(../../img/header/gnavi_triangle02.png);*/
	background-repeat: no-repeat;
	background-position: center bottom;
}

.nav02 span {
	background-image: url(../../img/header/gnavi_icon02.png);
	background-repeat:no-repeat;
	background-position:-330px 0px;
}

.nav02:hover a span {
	background-image: url(../../img/header/gnavi_icon02.png);
	background-repeat:no-repeat;
	background-position:-66px 0px;
}

.nav03 {

}

.nav03:hover {
	/*background:url(../../img/header/gnavi_triangle03.png);*/
	background-repeat: no-repeat;
	background-position: center bottom;
}

.nav03 span {
	background-image: url(../../img/header/gnavi_icon02.png);
	background-repeat:no-repeat;
	background-position:-396px 0px;
}

.nav03:hover a span {
	background-image: url(../../img/header/gnavi_icon02.png);
	background-repeat:no-repeat;
	background-position:-132px 0px;
}

.nav04 {

}

.nav04:hover {
	/*background-image:url(../../img/header/gnavi_triangle04.png);*/
	background-repeat: no-repeat;
	background-position: center bottom;
}

.nav04 span {
	background-image: url(../../img/header/gnavi_icon02.png);
	background-repeat:no-repeat;
	background-position:-462px 0px;
}

.nav04:hover a span {
	background-image: url(../../img/header/gnavi_icon02.png);
	background-repeat:no-repeat;
	background-position:-198px 0px;
}

.nav01:hover,.nav02:hover,.nav03:hover,.nav04:hover {
	background-color:#00963e;
	position: relative;
}
.nav01:hover:after,.nav02:hover:after,.nav03:hover:after,.nav04:hover:after {
                content: '';
                position: absolute;
                border-top: 6px solid #ffffff;
                border-right: 5px solid transparent;
                border-left: 5px solid transparent;
                bottom: 6px;
                left: 73px;
}



.noselect_msg {
	position:absolute;
	top:-42px;
	left:150px;
	z-index:100;
}
p.age_selected:hover {
	opacity:0.8;
}
ul.age_select_box {
	position:absolute;
	/*top:29px;
	left:5px;*/
	background-color:#534741;
	/*border-top:14px solid #535156;
	border-bottom:8px solid #535156;*/
	width:271px;
	z-index:9999;
	padding:10px 0 10px;
	display:none;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-right-radius: 5px;
	-khtml-border-radius-topright: 5px;
	border-top-right-radius: 5px;
	-moz-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-khtml-border-radius-bottomleft: 5px;
	border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-khtml-border-radius-bottomright: 5px;
	border-bottom-right-radius: 5px;
}
ul.age_select_box>li {
	height:34px;
	background:#FFFFFF;
	border-radius:3px;
	margin:2px 10px;
}
ul.age_select_box>li span {
	display:table-cell;
	vertical-align: middle;
	width:105px;
	float:left;
	color:#535156;
	font-weight:bold;
	font-size:14px;
	letter-spacing:2px;
	margin:12px 0 0 10px;
}

ul.age_select_box ul {
	float:right;
	width:132px;
}
ul.age_select_box ul li {
	float:left;
	margin:2px 2px 0 0;
}
ul.age_select_box ul li a {
	width:64px;
	height:30px;
	color:#FFFFFF;
	font-weight:bold;
	font-size:13px;
	text-align:center;
	letter-spacing:2px;
	text-decoration: none;
	display: table-cell;
	vertical-align: middle;
	border-radius:3px;
}
ul.age_select_box ul li a.age_man {
	background-color:#36b6e7;
}
ul.age_select_box ul li a.age_woman {
	background-color:#f0abec;
}
ul.age_select_box ul li a.age_man:hover {
	background-color:#1965dc;
}
ul.age_select_box ul li a.age_woman:hover {
	background-color:#e02b7a;
}

/* 転職ガイド */
.dropmenu{
  *zoom: 1;
  list-style-type: none;
  /*width: 960px;
  margin: 5px auto 30px;*/
  margin:0;
  padding: 0;
}
.dropmenu:before, .dropmenu:after{
  content: "";
  display: table;
}
.dropmenu:after{
  clear: both;
}
.dropmenu li{
  position: relative;
  width: 20%;
  /*float: left;*/
	margin: 0;
  /*padding: 0;*/
  /*text-align: center;*/
}
.dropmenu li a{
  display: block;
  margin: 0;
  padding: 15px 0 11px;
  /*background: #8a9b0f;
  color: #fff;
  font-size: 14px;
  line-height: 1;*/
  text-decoration: none;
}
.dropmenu li ul{
  list-style: none;
  position: absolute;
  z-index: 9999;
  top: 82px;
  right: 24px;
  margin: 0;
  padding: 0;
  width:240px;
  filter: alpha(opacity=95);
  -moz-opacity:0.95;
  opacity:0.95;
  border-left:none;
  border-right:none;
}
.dropmenu li ul li{
	display:block;
  width: 110%;
  line-height:38px;
  border-left:none;
  border-right:none;
}
.dropmenu li ul li:last-child{
  border-bottom:none;
}

.dropmenu li ul li a{
  padding: 0px 30px;
  /*border-top: 1px solid #7c8c0e;*/
  color:#FFF;
  font-weight:normal;
  background-color: #444;
  background-image:url(../../img/header/guidelink_triangle.png);
  background-position:15px center;
  background-repeat:no-repeat;
  text-align: left;
  text-shadow:none;
  font-size:14px;
  border-left:none;
  border-right:none;
}

.dropmenu li ul li a:hover{
  background-color: #333;
}
/*.dropmenu li:hover > a{
  background: #6e7c0c;
}
.dropmenu li a:hover{
  background: #616d0b;
}*/


#nav li.nav04 ul li{
  overflow: hidden;
  height: 0;
  transition: .2s;
}
#nav li.nav04:hover ul li{
  overflow: visible;
  height: 38px;
}


/*会員登録・ログイン・検討中・閲覧履歴
-----------------------------------------------------------------*/
#header #headerContents{
	float:right;
	margin:31px 0 0;
}
#header #headerContents .loginState ul.headerNavi li{
	float:left;
}
#header #headerContents .loginState ul.headerNavi li a{
	display:block;
	width:102px;
	height:33px;
	float:left;
	text-indent:-9999em;
}
#header #headerContents .loginState ul.headerNavi li.navs01 a{
	background: url(../../img/header/contents_member_nav.png) no-repeat 0 0;
}
#header #headerContents .loginState ul.headerNavi li.navs02 a{
	background: url(../../img/header/contents_member_nav.png) no-repeat -102px 0;
}
#header #headerContents .loginState ul.headerNavi li.navs03 a{
	background: url(../../img/header/contents_member_nav.png) no-repeat -408px 0;
}
#header #headerContents .loginState ul.headerNavi li.navs04 a{
	background: url(../../img/header/contents_member_nav.png) no-repeat -510px 0;
}
#header #headerContents .loginState ul.headerNavi li.navs05 a{
	background: url(../../img/header/contents_member_nav.png) no-repeat -204px 0;
}
#header #headerContents .loginState ul.headerNavi li.navs06 a{
	background: url(../../img/header/contents_member_nav.png) no-repeat -306px 0;
}
#header #headerContents .loginState ul.headerNavi li a:hover{
     filter: alpha(opacity=60);
    -moz-opacity:0.60;
    opacity:0.60;
}

/*地方ナビ
-------------------------------------------------------*/
.areanavi {
	width: 100%;
	height:40px;
}
.areanavi ul{
	width:960px;
	margin:0 auto;
}
.areanavi ul li{
	float:left;
	font-size:15px;
}
.areanavi ul li a{
	color:#FFFFFF;
	display:block;
	width:120px;
	padding-top:9px;
	height:31px;
	text-align:center;
	text-decoration:none;
	text-shadow:0 0 2px #555;
}
.areanavi ul li a:hover{
	color: #FFFFFF;
	display:block;
	width: 120px;
	float: left;
	padding-top:9px;
	height:31px;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	text-shadow:0 0 2px #000;
	background:#2A2F88;
	}
.areanavi ul li.active a,
.areanavi ul li.active a:hover{
	color: #FFFFFF;
	display:block;
	width: 120px;
	float: left;
	padding-top:9px;
	height:31px;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	text-shadow:0 0 2px #000;
	background:#2A2F88 url(../../img/header/nav_arrow.png) no-repeat 50% 100%;
}

/*　パンくずリスト背景　ログイン名
-------------------------------------------------------*/
.jbt-globalnavi{
	background: #ffffff;
	background: -moz-linear-gradient(top, #ffffff 0%, #f2f2f2 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f2f2f2));
	background: -webkit-linear-gradient(top, #ffffff 0%,#f2f2f2 100%);
	background: -o-linear-gradient(top, #ffffff 0%,#f2f2f2 100%);
	background: -ms-linear-gradient(top, #ffffff 0%,#f2f2f2 100%);
	background: linear-gradient(to bottom, #ffffff 0%,#f2f2f2 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f2f2f2',GradientType=0 );	padding:7px 0;
	border-bottom:1px #acacac solid;
	box-shadow:0 0 2px #b7b7b7;
	width: 100%;
	height:20px;
}
.jbt-globalnavi .inner{
	width:960px;
	margin:0 auto;
	position: relative;
}
#header .jbt-globalnavi .inner p.status{
	float:right;
	color: #555;
	font-size: 12px;
	font-weight: normal;
}
.jbt-globalnavi .inner p.status span.userName{
	font-size: 13px;
	font-weight: bold;
}


/*　各ページに記述　パンくずリスト
--------------------------------------------------*/
.pankuzu{
	width:100%;
	float:left;
}

p#topicpath{
	width:950px;
	margin:-15px auto 0;
	font-size:11px;
	background:url(../../img/home/icon_pager_home.png) no-repeat 8px 1px;
	text-indent: 0;
	z-index:10;
	position:relative;
}
p#topicpath a{
	text-decoration:none;
	color: #09C;
}
p#topicpath a:hover{
	text-decoration: underline;
}


/*----------------------------------------------------------

						フッター

----------------------------------------------------------*/
.bottom_decoration {
background-image: url(../../img/home/grass01.png);
background-color:#FFFCF2;
	background-repeat: repeat-x;
	background-position: center bottom;
	width:100%;
	height:50px;
}


.bottom_decoration_inner {
	position:relative;
	width:960px;
	margin:0 auto;
	padding:0 30px 0;
}

.footer{
	width:100%;
	font-size:11px;
	margin:0px 0 0;
	padding:35px 0 40px 0;
	background-color:#249352;
	background-image: url(../../img/home/grass02.png);
	background-repeat: repeat-x;
	background-position: center bottom;
}
.footer .inner{
	width:960px;
	margin:0 auto;
	position:relative;
}
.footer .inner .text{
	width:740px;
	color:#fff;
	float:left;
}
.footer p{
	line-height:1.6em;
}
.footer p.blue{
	color:#fff;
}


/*　2017年リニューアル
--------------------------------------------------*/
html {
    font-size: 62.5%;
}

/*★20200710追加*/
/* 
.l_header {
    background: #fff;
    border-top: 30px solid #279445;
    position: relative;
}
*/

.l_header__inner {
    position: relative;
    width: 960px;
    min-height: 96px;
    margin: 0 auto;
}
.l_header .logo {
    padding-top: 16px;
    margin: 0;
    max-width: 100%;
	height: auto;
	border-style: none;
}
.l_header .description {
    position: absolute;
    top: -24px;
    left: 0;
    width: 100%;
    color: #313131;/*★20200710追加*/
    font-size: 1.2rem;
}
.l_menu__sup {
    top: -40px;
    background: #88bc30;
    border-radius: 0 0 5px 5px;
}
.l_menu {
    width: 360px;
    position: absolute;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.l_menu__sup li:not(:last-child) {
    border-right: 1px solid rgba(61,61,61,.2);
}
.l_menu li:first-child {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 140px;
    -webkit-flex: 1 1 140px;
    flex: 1 1 140px;
}
.l_menu li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 110px;
    -webkit-flex: 1 1 110px;
    flex: 1 1 110px;
}
.l_menu__sup a {
    color: #fff;
    padding: 20px 0 10px;
}
.l_menu a {
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
}
.breadcrumb {
    background: #e5e5e5 url(../../img/bg-bread-542f812c2dd23a0ae47bc5bb13d7edfc.png) top;
    overflow: hidden;
}

.l_footer {
    text-align: center;
    font-size: 13px;
    overflow: visible;
    font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
    line-height: 150%;
    margin-top: 30px;
}
.l_footer .breadcrumb {
    border-top: 1px solid #ccc;
    text-align: left;
    border-bottom:1px solid #ddd;
}
.breadcrumb {
    background: #e5e5e5 url(../../img/bg-bread-542f812c2dd23a0ae47bc5bb13d7edfc.png) top;
    overflow: hidden;
}
.breadcrumb_inner {
    width: 960px;
    margin: 0 auto;
    position: relative;
}
.breadcrumb_items {
    padding: 0;
    display: table;
    background: #e5e5e5;
    margin: 0;
    background: #fff;
    color:#fff;
}

.breadcrumb_items>span {
    display: table-cell;
    font-size: 1.2rem;
    position: relative;
    min-width: 8em;
    vertical-align: middle;
    display: inline-block;
    padding: 13px 5px;
}
.breadcrumb_items>span>span {
	padding: 5px 10px 5px 30px;
}
.breadcrumb_items>span:not(:last-child) {
    background: #fff url(../../img/ico-breadcutter-cff02e0de2da6568538b29ee010450e0.png) no-repeat 0;
    padding-left: 10px;
	background-size: 10px 38px;
}
.breadcrumb_items>span:last-child {
    background: #e5e5e5 url(../../img/ico-breadend-5eadd6ce4dab8099d736e73d7ad3ce51.png) no-repeat 0;
    background-size: auto auto;
    padding-left: 20px;
    background-size: contain;
    color: #313131;
}
.breadcrumb_items>span:first-child {
    background: #fff url(../../../img/icon_house.png) no-repeat 0;
    padding-left: 0;
}
.breadcrumb_items a {
    text-decoration: none;
    color: #313131;
    text-decoration: underline;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
    padding-left: 20px;
}
.breadcrumb_item {
    display: block;
    padding: 10px 5px;
}
.footer_description {
    background: #e0e0e0;
    font-size: 1.2rem;
    padding: 1em 0;
}
.footer_description_inner {
    width: 810px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.footer_description_inner p {
    width: auto;
}
.footer_description p {
    width: 810px;
    text-align: left;
    margin: 1em auto;
    line-height: 1.75;
    word-break: break-all;
}

.footer_nav, .footer_nav a {
	color: #fa6b33;/*★20200710追加*/
}
.footer_nav {
    /*background: #279445;*//*★20200710追加*/
    font-size: 1.4rem;
    padding: 1em 0;
}
.footer_nav a {
	color: #fa6b33;/*★20200710追加*/
    text-decoration: underline;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
}
/*★20200710追加*/
/*
.footer_info {
    padding: 20px 0;
    font-size: 1.4rem;
    color: #42c176;
    background: #3d3d3d;
}*/

/*グローバルサイン
------------------------------------*/
.global{
	width:125px;
	height:90px;
	margin-left:15px;
	float: left;
}

/*トップへのリンク
----------------------------------------*/
.topLink a {
	position: absolute;
	right: -20px;
	text-indent: -9999em;
	bottom: 135px;
	width: 127px;
	height: 58px;
	display: block;
	outline: none;
	background: url(../../img/home/topLink.png) no-repeat 0 0;
}
.topLink a:hover{
	height:70px;
	bottom:130px;
}



/*他のページリンク
----------------------------------------*/
.footerLink{
	width:100%;
	background-color:#1b7540;
	text-align:center;
	padding:5px 0 10px 0;
}

.footerLink ul{
	width:960px;
	margin:0 auto;
}
.footerLink ul li{
	display:inline-block;
	margin:15px 20px 15px 0;
}
.footerLink ul li a{
	text-decoration:underline;
	color:#FFFFFF;
	font-size:12px;
}
.footerLink ul li a:before{
	content:"▶︎ ";
	color:#FFFFFF;
	font-size: 80%;
}
.footerLink ul li a:hover{
	text-decoration: underline;
}



/*コピーライト
----------------------------------------*/
.copyright{
	float:left;
	width:100%;
	letter-spacing:0.2em;
	font-size:11px;
	text-align:center;
	padding:14px 0;
	color:#fff;
	background: #424242;
}

/* 応募フォーム　メール注意喚起
----------------------------------------*/
.mail-receive-notice .notice-title{
	color : #0072b4;
	font-size : 12px;
	line-height : 1.3;
}
.mail-receive-notice .notice-title:hover{
	cursor:pointer;
	text-decoration : underline;
}

.mail-receive-notice .notice-body{
	font-size : 10px;
	background-color : #EEEEEE;
	line-height : 16px;
	margin-top : 5px;
	word-break : bleak-all;
	display : block;
	-webkit-margin-before: 1em;
	-webkit-margin-after: 1em;
	-webkit-margin-start: 0px;
	-webkit-margin-end: 0px;
}

/*! CSS Used from: https://cdn.jsdelivr.net/npm/font-awesome@4.6.3/css/font-awesome.min.css ; media=all */

.fa {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  }
  .fa-caret-up:before {
	content: "\f0d8";
  }
  
  /*! CSS Used fontfaces */
  @font-face {
	font-family: "FontAwesome";
	src: url("https://cdn.jsdelivr.net/npm/font-awesome@4.6.3/fonts/fontawesome-webfont.eot?v=4.6.3");
	src: url("https://cdn.jsdelivr.net/npm/font-awesome@4.6.3/fonts/fontawesome-webfont.eot#iefix&v=4.6.3")
		format("embedded-opentype"),
	  url("https://cdn.jsdelivr.net/npm/font-awesome@4.6.3/fonts/fontawesome-webfont.woff2?v=4.6.3")
		format("woff2"),
	  url("https://cdn.jsdelivr.net/npm/font-awesome@4.6.3/fonts/fontawesome-webfont.woff?v=4.6.3")
		format("woff"),
	  url("https://cdn.jsdelivr.net/npm/font-awesome@4.6.3/fonts/fontawesome-webfont.ttf?v=4.6.3")
		format("truetype"),
	  url("https://cdn.jsdelivr.net/npm/font-awesome@4.6.3/fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular")
		format("svg");
	font-weight: normal;
	font-style: normal;
  }
  