@charset "UTF-8";
/* css Jobs [top] */

@import url("main.css");

/*---------------------------------------------------- */
/* list */
/*---------------------------------------------------- */
/*== Section ==*/
#list_block {
	padding: 0;
	margin: 0 auto;
	height: auto;
	background-color: #03448e;
	position: relative;
}

/*== Waku ==*/
.listArea {
	padding: 0;
	margin: 0 auto;
	height: auto;
}
.listArea .waku_list {
	padding: 0;
	margin: 0 auto;
	height: auto;
	position: relative;
}
.listArea .waku_list .listbox {
	padding: 0;
	margin: 0;
	height: auto;
	display: inline-block;
    *display: inline;
    *zoom: 1;
	vertical-align: top;
}
.waku_list .listbox article {
	padding: 0;
	margin: 0 auto;
	height: auto;
	position: relative;
	overflow: hidden;
	background-color: #fff;
	box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	-o-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	box-sizing: border-box;
}

/*== img ==*/
.waku_list .listbox article figure {
	padding: 0;
	margin: 0;
	width: 100%;
	position: relative;
	overflow: hidden;
}
.waku_list .listbox article figure img {
	width: 100%;
	max-width: 100%;
	max-height: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	position: relative;
	overflow: hidden;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	-o-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	box-sizing: border-box;
	-webkit-transition: all .5s ease-out;
	transition: all .5s ease-out;
	/*border-radius: 3px 3px 0 0;*/
}

/*== Detail ==*/
.waku_list .listbox article .detail {
	padding: 0;
	margin: 0 auto;
	width: 100%;
	height: auto;
	position: relative;
	background-color: #fff;
	border-right: solid 1px #e5e5e5;
	border-bottom: solid 1px #e5e5e5;
	border-left: solid 1px #e5e5e5;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	-o-box-sizing: border-box; 
	-ms-box-sizing: border-box; 
	box-sizing: border-box;
}

/*== h3 ==*/
.waku_list .listbox article .detail .list-title {
	padding: 0;
	margin: 0 auto;
	height: auto;
	position: relative;
}
.waku_list .listbox article .detail .list-title h3 {
	padding: 0;
	margin: 0;
	color: #3d3e3f;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	text-align: left;
	line-height: 1.2;
}

/*== P ==*/
.waku_list .listbox article .detail .txt_list {
	padding: 0;
	margin: 0 auto;
	height: auto;
	position: relative;
}
.waku_list .listbox article .detail .txt_list p {
	padding: 0;
	margin: 0;
	color: #6d6e6f;
	font-weight: 400;
	text-decoration: none;
	text-align: left;
	line-height: 1.3;
}
.waku_list .listbox article .detail .txt_list p a,
.waku_list .listbox article .detail .txt_list p a:hover {
	font-weight: 500;
	text-decoration: underline;
}

/*== Figcaption ==*/
.waku_list .listbox article figcaption {
	padding: 0;
	margin: 0;
	height: auto;
	background-color: #0092d5;
	color: #fff;
	font-family: "Open Sans", "Lucida Grande", Arial, sans-serif;
	font-weight: 900;
	text-align: center;
	line-height: 1.0;
	/*border-radius: 4px 0 0 3px;*/
	position: absolute;
	z-index: 1;
	bottom: 0;
	right: 0;
}

/*== a:links ==*/
.waku_list .listbox article a {
	text-decoration: none;
	text-indent: -999px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	overflow: hidden;
	z-index: 2;
	background-color: transparent;
	/*border-radius: 3px;*/
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	-ms-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}
.waku_list .listbox article a:hover {
	background-color: rgba(0, 0, 0, .5);
}
.waku_list .listbox article a:before {
	content: "\f064";
	font: 24px/44px "Font Awesome 5 Free";
	font-weight: 900;
	color: rgba(0, 0, 0, 0);
	text-indent: 11px;
	width: 46px;
	height: 46px;
	background-color: rgba(255, 255, 255, 0);
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, 20%); 
	transform: translate(-50%, 20%);
	z-index: 3;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	-ms-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}
.waku_list .listbox article a:hover:before {
	color: rgba(0, 0, 0, .8);
	background-color: rgba(255, 255, 255, .9);
	-webkit-transform: translate(-50%, -50%); 
	transform: translate(-50%, -50%);
}
.waku_list .listbox article:hover figure img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}



/* PC */
@media print, screen and (min-width: 960px) {
/*---------------------------------------------------- */
/* list */
/*---------------------------------------------------- */
/*== Section ==*/
#list_block {
	padding: 75px 0;
	width: 100%;
}

/*== Waku ==*/
.listArea {
	width: 96%;
	max-width: 1080px;
}
.listArea .waku_list {
	width: 98%;
}
.listArea .waku_list .listbox {
	padding-bottom: 25px;
	margin: 0 1.2%;
	width: 30.5%;
}
.waku_list .listbox article {
	width: 100%;
}

/*== img ==*/
.waku_list .listbox article figure {
	height: 200px;
}

/*== Detail ==*/
.waku_list .listbox article .detail {
	padding: 22px 25px;
	width: 100%;
	min-height: 310px;
}

/*== h3 ==*/
.waku_list .listbox article .detail .list-title {
	margin-bottom: 12px;
	width: 100%;
}
.waku_list .listbox article .detail .list-title h3 {
	font-size: 22px;
}

/*== P ==*/
.waku_list .listbox article .detail .txt_list {
	width: 98%;
}
.waku_list .listbox article .detail .txt_list p {
	font-size: 18px;
}

/*== Figcaption ==*/
.waku_list .listbox article figcaption {
	padding: 10px 0;
	width: 40px;
	font-size: 20px;
}



}


/* Tablet */
@media only screen and (max-width: 959px) and (min-width: 600px) {
/*---------------------------------------------------- */
/* list */
/*---------------------------------------------------- */
/*== Section ==*/
#list_block {
	padding: 55px 0;
	width: 100%;
}

/*== Waku ==*/
.listArea {
	width: 96%;
}
.listArea .waku_list {
	width: 98%;
}
.listArea .waku_list .listbox {
	padding-bottom: 20px;
	margin: 0 0.8%;
	width: 30.9%;
}
.waku_list .listbox article {
	width: 100%;
}

/*== img ==*/
.waku_list .listbox article figure {
	height: 160px;
}

/*== Detail ==*/
.waku_list .listbox article .detail {
	padding: 18px 23px;
	width: 100%;
	min-height: 310px;
}

/*== h3 ==*/
.waku_list .listbox article .detail .list-title {
	margin-bottom: 10px;
	width: 100%;
}
.waku_list .listbox article .detail .list-title h3 {
	font-size: 20px;
}

/*== P ==*/
.waku_list .listbox article .detail .txt_list {
	width: 98%;
}
.waku_list .listbox article .detail .txt_list p {
	font-size: 16px;
}

/*== Figcaption ==*/
.waku_list .listbox article figcaption {
	padding: 8px 0;
	width: 36px;
	font-size: 18px;
}

	@media only screen and (max-width: 750px) and (min-width: 600px) {
		/*---------------------------------------------------- */
		/* list */
		/*---------------------------------------------------- */
		/*== Waku ==*/
		.waku_list .listbox article .detail .haco_list {
			width: 98%;
		}
		.listArea .waku_list .listbox {
			padding-bottom: 18px;
			margin: 0 1.0%;
			width: 47.2%;
		}
		
		/*== img ==*/
		.waku_list .listbox article figure {
			height: 200px;
		}

		/*== Detail ==*/
		.waku_list .listbox article .detail {
			padding: 18px 23px;
			width: 100%;
			min-height: 250px;
		}
		
		/*== h3 ==*/
		.waku_list .listbox article .detail .list-title {
			margin-bottom: 8px;
			width: 100%;
		}
		.waku_list .listbox article .detail .list-title h3 {
			font-size: 17px;
		}
		
		/*== P ==*/
		.waku_list .listbox article .detail .txt_list {
			width: 98%;
		}
		.waku_list .listbox article .detail .txt_list p {
			font-size: 15px;
		}

		
	}


}


/* SP */
@media only screen and (max-width: 599px)  {
/*---------------------------------------------------- */
/* list */
/*---------------------------------------------------- */
/*== Section ==*/
#list_block {
	padding: 35px 0;
	width: 100%;
}

/*== Waku ==*/
.listArea {
	width: 94%;
}
.listArea .waku_list {
	width: 98%;
	text-align: center;
}
.listArea .waku_list .listbox {
	padding-bottom: 15px;
	margin: 0 0.6%;
	width: 96.0%;
}
.waku_list .listbox article {
	width: 100%;
}

/*== img ==*/
.waku_list .listbox article figure {
	height: 180px;
}

/*== Detail ==*/
.waku_list .listbox article .detail {
	padding: 15px 18px;
	width: 100%;
}

/*== h3 ==*/
.waku_list .listbox article .detail .list-title {
	margin-bottom: 8px;
	width: 100%;
}
.waku_list .listbox article .detail .list-title h3 {
	font-size: 18px;
}

/*== P ==*/
.waku_list .listbox article .detail .txt_list {
	width: 98%;
}
.waku_list .listbox article .detail .txt_list p {
	font-size: 14px;
}

/*== Figcaption ==*/
.waku_list .listbox article figcaption {
	padding: 7px 0;
	width: 30px;
	font-size: 16px;
}

/*== a:links ==*/
.waku_list .listbox article a:before {
	content: "\f064";
	font: 24px/44px "Font Awesome 5 Free";
	font-weight: 900;
	color: rgba(0, 0, 0, 0);
	text-indent: 2px;
	width: 46px;
	height: 46px;
	background-color: rgba(255, 255, 255, 0);
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, 20%); 
	transform: translate(-50%, 20%);
	z-index: 3;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	-ms-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}


}