@charset "utf-8";

/* -----------------------------------------
	汎用クラス
----------------------------------------- */
.is-hide{display: none;}

/*灰色ボーダー*/
.bbG {
	border-bottom: 1px solid #e4e4e4;
	padding-bottom: 40px;
}

/* -----------------------------------------
	基本レイアウト
----------------------------------------- */

#mainContainer {
	width: 100%;
	background: #fff;
	position: relative;
}

#mainContainer .contentsWrapper {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding-bottom: 120px;
}

#mainContainer .contentsWrapper.col02 {
	display: flex;
	justify-content: space-between;
}

#mainContainer .contentsWrapper.col02 > .mainContents {
	max-width: 750px;
	width: 75%;
}

#mainContainer .contentsWrapper.col02 > .side {
	max-width: 228px;
	width: 23%;
}

#mainContainer .contentsWrapper.col02 > .mainContents > section,
#mainContainer .contentsWrapper > section {
	margin-bottom: 40px;
	background: #fff;
}

#mainContainer .contentsWrapper.col02 > .mainContents > section > section,
#mainContainer .contentsWrapper > section > section {
	margin-bottom: 30px;
}


#mainContainer .contentsWrapper.col02 > .mainContents > section:last-child,
#mainContainer .contentsWrapper > section:last-child,
#mainContainer .contentsWrapper.col02 > .mainContents > section > section:last-child,
#mainContainer .contentsWrapper > section > section:last-child {
	margin-bottom: 0;
}


/*スマホ　縦*/
@media screen and (max-width: 640px){

	/* -----------------------------------------
		汎用クラス
	----------------------------------------- */
	/*灰色ボーダー*/
	.bbG {
		border-bottom: 1px solid #e4e4e4;
		padding-bottom: 8%;
	}

	/* -----------------------------------------
		基本レイアウト
	----------------------------------------- */
	#mainContainer {
		width: 100%;
		padding: 0 3%;
	}

	#mainContainer .contentsWrapper {
		width: 100%;
		max-width: 100%;
		padding: 10% 0 15%;
	}

	#mainContainer .contentsWrapper.col02 {
		display: block;
	}

	#mainContainer .contentsWrapper.col02 > .mainContents {
		max-width: 100%;
		width: 100%;
	}

	#mainContainer .contentsWrapper.col02 > .side {
		display: none;
	}

	#mainContainer .contentsWrapper.col02 > .mainContents > section,
	#mainContainer .contentsWrapper > section {
		margin-bottom: 8%;
	}

	#mainContainer .contentsWrapper.col02 > .mainContents > section > section,
	#mainContainer .contentsWrapper > section > section {
		margin-bottom: 6%;
	}
}


/* -----------------------------------------
	サイドバー
----------------------------------------- */

#mainContainer .side .sideNav .side_linkList {
	border: 1px solid #e4e4e4;
	border-radius: 10px;
}


#mainContainer .side .sideNav .side_linkList li:not(:last-child) {
	border-bottom: 1px solid #e4e4e4;
}

#mainContainer .side .sideNav .side_linkList > li:first-child a {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

#mainContainer .side .sideNav .side_linkList > li:last-child a {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}


#mainContainer .side .sideNav .side_linkList a,
#mainContainer .side .sideNav .side_linkList .under_btn {
	display: block;
	background: #fff;
	font-size: 1.4rem;
	color: #333333;
	text-decoration: none;
	padding: 20px 20px 20px 45px;
	position: relative;
}

#mainContainer .side .sideNav .side_linkList .under_btn {
	cursor: pointer;
}


#mainContainer .side .sideNav .side_linkList a:before,
#mainContainer .side .sideNav .side_linkList .under_btn:before {
	content: "";
	display: block;
	background: url(/worker/common/img/ico_arrow_g.png) no-repeat;
	background-size: contain;
	width: 15px;
	height: 15px;
	position: absolute;
	left: 20px;
	top: 0;
	bottom: 0;
	margin: auto;
}

#mainContainer .side .sideNav .side_linkList .under_btn:before {
	transform: rotate(90deg);
}

#mainContainer .side .sideNav .side_linkList .under_btn.on:before {
	transform: rotate(270deg);
}

#mainContainer .side .sideNav .side_linkList .under_list {
	display: none;
	border-top: 1px solid #e4e4e4;
}

#mainContainer .side .sideNav .side_linkList .under_list li a {
	padding-left: 65px;
}

#mainContainer .side .sideNav .side_linkList .under_list li a:before {
	left: 40px;
}

#mainContainer .side .sideNav .side_linkList a:hover,
#mainContainer .side .sideNav .side_linkList .active a:hover,
#mainContainer .side .sideNav .side_linkList .under_btn:hover {
	background: #548f49;
	color: #ffffff;
	font-weight: bold;
}


#mainContainer .side .sideNav .side_linkList a:hover:before,
#mainContainer .side .sideNav .side_linkList .active a:hover:before,
#mainContainer .side .sideNav .side_linkList .under_btn:hover:before {
	background: url(/worker//common/img/ico_arrow_w.png) no-repeat;
	background-size: contain;
	width: 16px;
	height: 16px;
}

#mainContainer .side .sideNav .side_linkList .active a {
	background: #faf9ed;
}


#mainContainer .side .sideNav .side_linkList .active a:before {
	background: url(/worker/common/img/ico_arrow_g.png) no-repeat;
	background-size: contain;
	width: 15px;
	height: 15px;
}

#mainContainer .side .sideNav .entry_btn {
	margin-top: 20px;
}

#mainContainer .side .sideNav .entry_btn a {
	display: block;
	border: 1px solid #e8e06f;
	border-radius: 8px;
	background-color: #fffb80;
	font-weight: bold;
	text-decoration: none;
	color: #333;
	padding: 10px 30px 10px 50px;
	position: relative;
}


#mainContainer .side .sideNav .entry_btn a:hover {
	opacity: 0.7;
}
#mainContainer .side .sideNav .entry_btn a:before {
	content: "";
	display: block;
	background: url(/worker/work_search/img/ico_entry02.png) no-repeat;
	background-size: contain;
	width: 23px;
	height: 25px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 15px;
	margin: auto;
}

#mainContainer .side .sideNav .entry_btn a:after {
	content: "";
	display: block;
	border-top: 1px solid #548f49;
	border-right: 1px solid #548f49;
	width: 10px;
	height: 10px;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 15px;
}

/*スマホ　縦*/
@media screen and (max-width: 640px){
	#mainContainer .side {
		display: none;
	}
}

/* -----------------------------------------
	ボックスレイアウト
----------------------------------------- */

.contentsWrapper .box_col2 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.contentsWrapper .box_col2 > * {
	width: 48%;
	max-width: 360px;
	margin-bottom: 20px;
}

/*スマホ　縦*/
@media screen and (max-width: 640px){
	.contentsWrapper .box_col2 {
		display: block;
	}

	.contentsWrapper .box_col2 > * {
		width: 100%;
		max-width: 100%;
		margin-bottom: 5%;
	}
}



/* -----------------------------------------
	header
----------------------------------------- */

@media screen and (min-width: 641px) , print{
header {
	padding-top: 10px;
}

header .headerUp {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
}

header .headerUp .logo {
	width: 299px;
}

header .headerUp .spBtn,
header .headerUp .myPage,
header .headerBottom #g_naviList_top {
	display:none;
}

header .headerUp .link_contact {
	font-size: 1.3rem;
	display: flex;
/* 2019/03/29 group logo */
/*	align-items: center;*/
	margin-top: 5px;
	margin-right: 20px;
}


header .headerUp .link_contact:before {
	content: "";
	display: block;
	background: url(/common/img/icon_tel.png) no-repeat;
	width: 14px;
	height: 14px;
	margin-right: 5px;
}

header .headerUp .link_contact a {
	color: #333333;
	text-decoration: none;
}
header .headerUp .link_contact a:hover {
	text-decoration: underline;
}
/* 2019/08/15 add start */
header .headerUp .link_kintai a {
	display: flex;
	align-items: center;
	background: #44753c;
	/* border: 1px solid #bac3d9;*/
	border-radius: 15px;
	text-decoration: none;
	font-size: 1.4rem;
	color: #ffffff;
	padding: 4px 15px;
}

header .headerUp .link_kintai a:hover {
	opacity: 0.7;
}

header .headerUp .link_kintai a:before {
	content: "";
	display: block;
	background: url(/worker/common/img/ico_kintai.png) no-repeat;
	background-size: contain;
	width: 12px;
	height: 12px;
	margin-right: 5px;
}
/* 2019/08/15 add end */

header .headerBottom {
	border-top: 1px solid #e4e4e4;
	border-bottom: 1px solid #e4e4e4;
	background: #fff;
}

header .headerBottom.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
}

header .headerBottom .g_navi {
	display: flex;
	justify-content: center;
}

header .headerBottom .g_navi > li {
	width: 250px;
	position: relative;
}


header .headerBottom .g_navi > li a {
	padding: 20px;
	display: block;
	position: relative;
	margin-left: 1px;
	text-align: center;
}

header .headerBottom .g_navi > li:last-child  a {
	margin-right: 1px;
}


header .headerBottom .g_navi > li:before {
	content: "";
	display: block;
	width: 1px;
	height: 26px;
	background: #e4e4e4;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

header .headerBottom .g_navi > li:last-child:after {
	content: "";
	display: block;
	width: 1px;
	height: 26px;
	background: #e4e4e4;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
}
	
header .headerBottom .g_navi > li a img {
	max-width: 100%;
}


/*初めての方へ
お仕事開始までの流れ
仮登録*/
header .headerBottom .g_navi > #g_naviList01.active a,
header .headerBottom .g_navi > #g_naviList01.current a,
header .headerBottom .g_navi > #g_naviList02.active a,
header .headerBottom .g_navi > #g_naviList02.current a,
header .headerBottom .g_navi > #g_naviList03.active a,
header .headerBottom .g_navi > #g_naviList03.current a {
	background: #e8f5e5;
}


header .headerBottom .g_navi > #g_naviList01.active a:after,
header .headerBottom .g_navi > #g_naviList01.current a:after,
header .headerBottom .g_navi > #g_naviList02.active a:after,
header .headerBottom .g_navi > #g_naviList02.current a:after,
header .headerBottom .g_navi > #g_naviList03.active a:after,
header .headerBottom .g_navi > #g_naviList03.current a:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-top: 5px solid #548f49;
	border-right: 5px solid #548f49;
	border-left: 5px solid transparent;
	border-bottom: 5px solid transparent;
	position: absolute;
	top: 3px;
	right: 3px;
}


/*マイページログイン*/
header .headerBottom .g_navi > #g_naviList04.active a,
header .headerBottom .g_navi > #g_naviList04.current a {
	background: #fcf5e9;
}

header .headerBottom .g_navi > #g_naviList04.active a:after,
header .headerBottom .g_navi > #g_naviList04.current a:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-top: 5px solid #e09316;
	border-right: 5px solid #e09316;
	border-left: 5px solid transparent;
	border-bottom: 5px solid transparent;
	position: absolute;
	top: 3px;
	right: 3px;
}

/* 2019/03/29 group logo start */
header .headerUp .right {
	display: flex;
}
/* 2019/03/29 group logo end */

}


/*スマホ　縦*/
@media screen and (max-width: 640px){
	header .headerUp {
		display: flex;
		justify-content: space-between;
		align-items: center;
		border-bottom: 1px solid #e4e4e4;
	}
	header .headerUp.active {
		border-bottom: none;
	}
	header .headerUp .logo {
		width: 58%;
		margin-right: 1%;
		padding-left: 3%;
	}
	header .headerUp .spBtn {
		background: url(/worker/common/img/btn_spmenu.png) no-repeat;
		background-size: contain;
		width: 17vw;
		height: 17vw;
	}
	
	header .headerUp.active .spBtn {
		background: url(/worker/common/img/btn_spmenu_c.png) no-repeat;
		background-size: contain;
		width: 17vw;
		height: 17vw;
	}
	
	header .headerUp .myPage {
		width: 16%;
	}
	
	header .headerBottom {
		display: none;
		background: rgba(75,137,63,0.9);
		position: absolute;
		right: 0;
		width: 65%;
		z-index: 2;
	}
	header .headerBottom .g_navi > li,
/*	header .headerBottom .link_contact{ */
	header .headerBottom .link_contact,
	header .headerBottom .link_kintai {
		border-bottom: 1px solid #ffffff;
	}
	header .headerBottom .g_navi > li a,
/*	header .headerBottom .link_contact a{ */
	header .headerBottom .link_contact a,
	header .headerBottom .link_kintai a{
		display: block;
		padding: 10% 7%;
		color: #fff;
		text-decoration: none;
		position: relative;
		font-size: 4vw;
	}

	header .headerBottom .g_navi > #g_naviList01 a,
	header .headerBottom .g_navi > #g_naviList02 a,
	header .headerBottom .g_navi > #g_naviList03 a,
	header .headerBottom .g_navi > #g_naviList04 a,
/*	header .headerBottom .link_contact a { */
	header .headerBottom .link_contact a ,
	header .headerBottom .link_kintai a {
		padding: 10% 7% 10% 20%;
	}

	header .headerBottom .g_navi > li a:after,
/*	header .headerBottom .link_contact a:after { */
	header .headerBottom .link_contact a:after,
	header .headerBottom .link_kintai a:after {
		content: "";
		display: block;
		width: 10px;
		height: 10px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		transform: rotate(45deg);
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		right: 7%;
	}

	header .headerBottom .g_navi > #g_naviList01 a:before,
	header .headerBottom .g_navi > #g_naviList02 a:before,
	header .headerBottom .g_navi > #g_naviList03 a:before,
	header .headerBottom .g_navi > #g_naviList04 a:before,
/*	header .headerBottom .link_contact a:before { */
	header .headerBottom .link_contact a:before,
	header .headerBottom .link_kintai a:before {
		content: "";
		display: block;
		width: 25px;
		height: 22px;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		left: 7%;
	}
	
	header .headerBottom .g_navi > #g_naviList01 a:before {
		background: url(/worker/common/img/ico_spmenu01.png) no-repeat;
		background-size: contain;
	}
	header .headerBottom .g_navi > #g_naviList02 a:before {
		background: url(/worker/common/img/ico_spmenu02.png) no-repeat;
		background-size: contain;
	}
	header .headerBottom .g_navi > #g_naviList03 a:before {
		background: url(/worker/common/img/ico_spmenu03.png) no-repeat;
		background-size: contain;
	}
	header .headerBottom .g_navi > #g_naviList04 a:before {
		background: url(/worker/common/img/ico_spmenu04.png) no-repeat;
		background-size: contain;
	}
	header .headerBottom .link_contact a:before {
		background: url(/worker/common/img/ico_spmenu05.png) no-repeat;
		background-size: contain;
	}
	/* 2019/08/20 add start */
	header .headerBottom .link_kintai a:before {
		background: url(/worker/common/img/ico_spmenu06.png) no-repeat;
		background-size: contain;
	}
	/* 2019/08/20 add end */

	#menu-bg {
		display: none;
		width: 100%;
		background-color: rgba(0,0,0,0.7);
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
	}

/* 2019/03/29 group logo start */
	header .headerUp .right {
		margin-left: 2%;
	}
/* 2019/03/29 group logo end */
}


/* -----------------------------------------
	mainVisual_top
----------------------------------------- */
#mainVisual_top {
	width: 100%;
	background: #548f49;
	max-height: 460px;
	height: 45vw;
	position: relative;
	overflow: hidden;
}

#mainVisual_top .mainVisual_in {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
}

#mainVisual_top canvas {
	width: 100% !important;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}



#mainVisual_top .mainVisual_in .mainimg {
	position: absolute;
	top: 0;
	left: -120px;
	z-index: 1;
	max-width: 622px;
	width: 62%;
	z-index: 1;
	background: #fff;
}

#mainVisual_top .mainVisual_in .mainimg picture {
	position: absolute;
	top: 0;
	left: 0;
}

#mainVisual_top .mainVisual_in .maintext {
	max-width: 457px;
	width: 100%;
	margin: 0 10px 70px;
}

#mainVisual_top .mainVisual_in .mainimg img,
#mainVisual_top .mainVisual_in .maintext img {
	max-width: 100%;
}


#mainVisual_top .mainVisual_in .mainBtn {
	position: absolute;
	top: 80px;
	right: 25px;
	max-width: 457px;
	width: 46%;
	z-index: 1;
}

#mainVisual_top .mainVisual_in .mainBtn .mainBtn_list {
	display: flex;
	justify-content: space-between;
}

#mainVisual_top .mainVisual_in .mainBtn .mainBtn_list li {
	max-width: 217px;
	width: 49%;
}

#mainVisual_top .mainVisual_in .mainBtn .mainBtn03 {
	max-width: 215px;
	width: 50%;
	margin: 20px auto 0;
}


@media screen and (max-width: 999px) and (min-width: 641px){
	#mainVisual_top .mainVisual_in .mainBtn {
		position: absolute;
		top: 8vw;
	}
	#mainVisual_top .mainVisual_in .maintext {
		margin: 0 auto 7vw;
	}
}

/*スマホ　縦*/
@media screen and (max-width: 640px){

	#mainVisual_top {
		width: 100%;
		max-height: 100%;
		height: auto;
		position: relative;
		padding-bottom: 10%;
	}

	#mainVisual_top .mainVisual_in {
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
		position: relative;
	}

	#mainVisual_top .mainVisual_in .mainimg {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		max-width: 100%;
		width: 100%;
		z-index: 1;
		background: #fff;
	}

	#mainVisual_top .mainVisual_in .maintext {
		max-width: 100%;
		width: 100%;
		margin: 0 auto 10%;
		z-index: 1;
	}


	#mainVisual_top .mainVisual_in .mainBtn {
		position: relative;
		top: auto;
		right: auto;
		max-width: 100%;
		width: 100%;
	}

	#mainVisual_top .mainVisual_in .mainBtn .mainBtn_list {
		display: block;
		width: 100%;
	}

	#mainVisual_top .mainVisual_in .mainBtn .mainBtn_list li {
		max-width: 100%;
		width: 65%;
		margin: 0 auto 5%;
	}

	#mainVisual_top .mainVisual_in .mainBtn .mainBtn03 {
		max-width: 100%;
		width: 65%;
		margin: 0 auto 0;
	}
}


/* -----------------------------------------
	mainVisual
----------------------------------------- */

#mainVisual {
	width: 100%;
	position: relative;
	overflow: hidden;
	background:#548f49;
	height:120px;
}

#mainVisual .mainVisual_in {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1;
}

#mainVisual .mainVisual_in .heading01 {
	font-size: 2.8rem;
	color: #fff;
	margin-left: 8%;
	display: flex;
	align-items: center;
	width: 42%;
}

#mainVisual .mainVisual_in .mainImg {
	width: auto;
	margin-right: -50px;
}

#mainVisual .mainVisual_in .mainImg img{
	height: 120px !important;
	width: auto !important;
}

#mainVisual .mainVisual_in01 {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	display: flex;
	height: 120px;
	z-index: 1;
}

#mainVisual .mainVisual_in01 .heading01 {
	font-size: 2.8rem;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}


#mainVisual canvas {
	width: 100% !important;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}



/*スマホ　縦*/
@media screen and (max-width: 640px){

	#mainVisual {
		width: 100%;
		padding: 0 3%;
		height: 40vw;
		background:#548f49;
	}

	#mainVisual .mainVisual_in {
		width: 100%;
		max-width: 100%;
		height: 100%;
		display: block;
		z-index: 1;
	}

	#mainVisual .mainVisual_in .heading01 {
		font-size: 2.8rem;
		color: #fff;
		margin-left: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
	}

	#mainVisual .mainVisual_in .mainImg {
		display: none;
	}


	#mainVisual .mainVisual_in01 {
		width: 100%;
		max-width: 100%;
		height: 100%;
		display: block;
		z-index: 1;
	}

	#mainVisual .mainVisual_in01 .heading01 {
		font-size: 2.8rem;
		color: #fff;
		margin-left: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
	}


	#mainVisual canvas {
		width: 100% !important;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
	}
}


/* -----------------------------------------
	ぱんくず
----------------------------------------- */

.breadClumb {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto 20px;
	padding-top: 10px;
	font-size: 1.1rem;
}

.breadClumb ul {
	display: flex;
	flex-wrap: wrap;
}
.breadClumb ul li a {
	color: #666666;
}
.breadClumb ul li + li:before {
	content: "/";
	display: inline-block;
	margin: 0 10px;
}

/*スマホ　縦*/
@media screen and (max-width: 640px){
	.breadClumb {
/*		display: none; */
		margin: 0 auto 0px;
	}
}


/* -----------------------------------------
	見出し
----------------------------------------- */
.heading02 {
	font-size: 2.2rem;
	position: relative;
	padding: 0 0 0 20px;
	margin: 0 0 20px;
}

.heading02:before {
	content: "";
	display: block;
	background: #548f49;
	height: 30px;
	width: 10px;
	border-radius: 10px;
	position: absolute;
	left: 0;
}


.heading03 {
	font-size: 1.8rem;
	position: relative;
	padding-left: 28px;
	margin-bottom: 20px;
}

.heading03:before {
	content: "";
	display: block;
	border: 6px solid #548f49;
	border-radius: 50%;
	background: #fff;
	width: 10px;
	height: 10px;
	position: absolute;
	left: 0;
	top: 1px;
}


.heading04 {
	background: #548f49;
	font-size: 1.8rem;
	padding: 10px;
	color: #ffffff;
	margin-bottom: 20px;
}

.heading05 {
	font-size: 1.6rem;
	margin-bottom: 10px;
}


/*スマホ　縦*/
@media screen and (max-width: 640px){
	.heading02 {
		font-size: 2.2rem;
		padding: 0 0 0 5%;
		margin: 0 0 5%;
	}

	.heading03 {
		font-size: 1.8rem;
		position: relative;
		padding-left: 28px;
		margin-bottom: 3%;
	}

	.heading03:before {
		left: 0;
		top: 4%;
	}
	.heading04 {
		font-size: 1.8rem;
		padding: 3%;
		margin-bottom: 3%;
	}

	.heading05 {
		font-size: 1.6rem;
		margin-bottom: 3%;
	}
}


/* -----------------------------------------
	リンクスタイル
----------------------------------------- */

.link_L a:hover,
.link01_L a:hover,
.linkBlank_L a:hover,
.linkPdf_L a:hover,
.link_R a:hover,
.link01_R a:hover,
.linkBlank_R a:hover,
.linkPdf_R a:hover{
	text-decoration: underline;
}

.link_L a,
.linkBlank_L a {
	position: relative;
	padding-left: 20px;
	text-decoration: none;
	display: inline-block;
}

.link01_L a {
	position: relative;
	padding-left: 20px;
	text-decoration: none;
	color: #333;
	display: inline-block;
}

.linkPdf_L a {
	position: relative;
	padding-left: 30px;
	text-decoration: none;
	display: inline-block;
}


.link_L a:before {
	content: "";
	display: block;
	background: url(/worker/common/img/ico_arrow_g.png) no-repeat;
	background-size: contain;
	width: 15px;
	height: 15px;
	position: absolute;
	top: 3px;
	left: 0;
}

.link01_L a:before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-top: 1px solid #5f5f5f;
	border-right: 1px solid #5f5f5f;
	transform: rotate(45deg);
	position: absolute;
	top: 7px;
	left: 3px;
}

.linkBlank_L a:before {
	content: "";
	display: block;
	background: url(/worker/common/img/ico_blank01.png) no-repeat;
	background-size: contain;
	width: 15px;
	height: 13px;
	position: absolute;
	top: 4px;
	left: 0;
}

.linkPdf_L a:before {
	content: "";
	display: block;
	background: url(/worker/common/img/ico_pdf01.png) no-repeat;
	background-size: contain;
	width: 23px;
	height: 21px;
	position: absolute;
	top: 0;
	left: 0;
}




.link_R a,
.linkBlank_R a,
.linkPdf_R a {
	text-decoration: none;
}

.link01_R a {
	text-decoration: none;
	color: #333;
}


.link_R a:after {
	content: "";
	display: inline-block;
	background: url(/worker/common/img/ico_arrow_g.png) no-repeat;
	background-size: contain;
	width: 15px;
	height: 15px;
	vertical-align: middle;
	margin-left: 8px;
}

.link01_R a:after {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-top: 1px solid #5f5f5f;
	border-right: 1px solid #5f5f5f;
	transform: rotate(45deg);
	vertical-align: middle;
	margin: 0 5px;
}

.linkBlank_R a:after {
	content: "";
	display: inline-block;
	background: url(/worker/common/img/ico_blank01.png) no-repeat;
	background-size: contain;
	width: 15px;
	height: 13px;
	vertical-align: middle;
	margin-left: 8px;
}

.linkPdf_R a:after {
	content: "";
	display: inline-block;
	background: url(/worker/common/img/ico_pdf01.png) no-repeat;
	background-size: contain;
	width: 23px;
	height: 21px;
	vertical-align: middle;
	margin-left: 8px;
}

.linkBlank_t {
	margin-right: 5px;
}

.linkBlank_t a:after {
	content: "";
	display: inline-block;
	background: url(/worker/common/img/ico_blank01.png) no-repeat;
	background-size: contain;
	width: 15px;
	height: 13px;
	vertical-align: middle;
	margin-left: 5px;
}

/* -----------------------------------------
	ボタンスタイル
----------------------------------------- */
.btn01 a {
	background: #548f49;
	display: block;
	font-size: 1.5rem;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	border-radius: 10px;
	padding: 15px 30px 15px 15px;
	text-align: center;
	position: relative;
}

.btn01 a:after {
	content: "";
	display: block;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	width: 10px;
	height: 10px;
	position: absolute;
	transform: rotate(45deg);
	top: 0;
	bottom: 0;
	margin: auto;
	right: 15px;
}

.btn02 a {
	background: #f4faf2;
	border: 1px solid #bfd9ba;
	display: block;
	font-size: 1.5rem;
	color: #4a8540;
	text-decoration: none;
	border-radius: 10px;
	padding: 15px 30px 15px 15px;
	text-align: center;
	position: relative;
}

.btn02 a:after {
	content: "";
	display: block;
	border-top: 1px solid #4a8540;
	border-right: 1px solid #4a8540;
	width: 10px;
	height: 10px;
	position: absolute;
	transform: rotate(45deg);
	top: 0;
	bottom: 0;
	margin: auto;
	right: 15px;
}


.btnBlank01 a {
	background: #548f49;
	display: block;
	font-size: 1.5rem;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	border-radius: 10px;
	padding: 15px 30px 15px 15px;
	text-align: center;
	position: relative;
}

.btnBlank01 a:after {
	content: "";
	display: block;
	background: url(/worker/common/img/ico_blank02.png) no-repeat;
	background-size: contain;
	width: 15px;
	height: 13px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 15px;
}

.btnBlank02 a {
	background: #f4faf2;
	border: 1px solid #bfd9ba;
	display: block;
	font-size: 1.5rem;
	color: #4a8540;
	text-decoration: none;
	border-radius: 10px;
	padding: 15px 30px 15px 15px;
	text-align: center;
	position: relative;
}

.btnBlank02 a:after {
	content: "";
	display: block;
	background: url(/worker/common/img/ico_blank01.png) no-repeat;
	background-size: contain;
	width: 15px;
	height: 13px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 15px;
}

.btnPdf01 a {
	background: #548f49;
	display: block;
	font-size: 1.5rem;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	border-radius: 10px;
	padding: 15px 30px 15px 15px;
	text-align: center;
	position: relative;
}

.btnPdf01 a:after {
	content: "";
	display: block;
	background: url(/worker/common/img/ico_pdf02.png) no-repeat;
	background-size: contain;
	width: 23px;
	height: 21px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 10px;
}

.btnPdf02 a {
	background: #f4faf2;
	border: 1px solid #bfd9ba;
	display: block;
	font-size: 1.5rem;
	color: #4a8540;
	text-decoration: none;
	border-radius: 10px;
	padding: 15px 30px 15px 15px;
	text-align: center;
	position: relative;
}

.btnPdf02 a:after {
	content: "";
	display: block;
	background: url(/worker/common/img/ico_pdf01.png) no-repeat;
	background-size: contain;
	width: 23px;
	height: 21px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 10px;
}


.btn01 a:hover,
.btn02 a:hover,
.btnBlank01 a:hover,
.btnBlank02 a:hover,
.btnPdf01 a:hover,
.btnPdf02 a:hover{
	opacity: 0.7;
}

/*スマホ　縦*/
@media screen and (max-width: 640px){
	.btn01 a,
	.btn02 a,
	.btnBlank01 a,
	.btnBlank02 a,
	.btnPdf01 a,
	.btnPdf02 a{
		padding: 4% 10%;
	}

	.btn01 a:after,
	.btn02 a:after{
		right: 5%;
	}
	.btnBlank01 a:after,
	.btnBlank02 a:after {
		right: 3%;
	}
	.btnPdf01 a:after,
	.btnPdf02 a:after {
		right: 3%;
	}
}


