﻿/* ************************************** _

タイトル：layout.css

レイアウト用CSSファイル

_ ************************************** */


/* ログイン
---------------------------------------------------------------------------- */
.login_wrap{
	text-align:center;
	margin-top:90px;
}
.login_wrap input[type="text"]{
	width:400px;
	margin:0 auto 8px auto;
	display:block;
}
.login_wrap input[type="password"]{
	width:400px;
	margin:0 auto 8px auto;
	display:block;
}
.login_wrap p{
	color:#ff1d25;
	font-weight:bold;
}

.login_wrap .g-recaptcha {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 16px;
}

/* ダッシュボード
---------------------------------------------------------------------------- */
.column4_list{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:stretch;
	align-content:stretch;
	max-width:980px;
	width:100%;
	overflow:hidden;
}
.column4_list div.rollover{
	flex-basis: 48.5%;
	max-width:48.5%;
	height:215px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	border:1px solid #f0b200;
	color:#f0b200;
	font-weight:bold;
	text-align:center;
	background-color: #fff;
	border-radius: 5px;
	margin:0 0 20px 0;
	position: relative;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.column4_list div ul{
	width:100%;
}
.column4_list div ul li{
	display: flex; 	/* 子要素をflexboxで揃える */
	flex-direction: column; /* 子要素をflexboxにより縦方向に揃える */
	justify-content: center; /* 子要素をflexboxにより中央に配置する */
	align-items: center;  /* 子要素をflexboxにより中央に配置する */
	align-content: center;  /* 子要素をflexboxにより中央に配置する */
	height:215px;
	font-weight:bold;
	font-size:22px;
}
.column4_list div ul li p{
	margin-bottom:20px;
}
.column4_list div a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-indent:-999px;
}

.column4_list div.rollover:hover {
	filter:alpha(opacity=70);/* IE 6,7*/
	-ms-filter: "alpha(opacity=70)";/* IE 8,9 */
	-moz-opacity:0.7;/* FF , Netscape */
	-khtml-opacity: 0.7;/* Safari 1.x */
	opacity:0.7;
	zoom:1;/*IE*/
}

/* 入力
---------------------------------------------------------------------------- */

ul.side_slide{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	width:100%;
	margin-bottom:30px;
}
ul.side_slide li{
	flex-basis: auto;
	min-width:30px;
	margin:0 20px;
	font-size:24px;
	font-weight:normal;
}
ul.side_slide li:nth-child(2){
	padding-top:5px;
}

ul.upimg{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:stretch;
	align-content:stretch;
	width:100%;
	margin-bottom:50px;
}
ul.upimg li{
	flex-basis: 23%;
	max-width:23%;
	position:relative;
	margin-bottom:30px;
}
ul.upimg li h5{
	border-bottom:1px solid #ccc;
	margin-bottom:2px;
	padding-left:5px;
	font-weight:normal;
}


ul.upimg li img{
	width:auto;
	margin-top:8px;
	pointer-events: none;
	display:block;
}

ul.upimg li canvas{
	margin-bottom:5px;
	width:100%;
}
/*
ul.upimg li label img {
  pointer-events: auto;
}
*/

ul.upimg li label{
	background-image: url("/images/cmn_img/choice_img.png");
	background-size:cover;
	width:216px;
	height:52px;
	margin-top:5px;
}

ul.upimg li label input{
  display:none;
}
ul.upimg li label input{
  cursor:pointer;
}
ul.upimg li .btn-primary{
  margin-top:5px;
}

ul.upimg li button {
	-webkit-appearance: button;
	-webkit-writing-mode: horizontal-tb !important;
	text-rendering: auto;
	color: buttontext;
	letter-spacing: normal;
	word-spacing: normal;
	text-transform: none;
	text-indent: 0px;
	text-shadow: none;
	display: inline-block;
	text-align: center;
	align-items: flex-start;
	cursor: default;
	background-color: buttonface;
	box-sizing: border-box;
	margin: 0em;
	font: 400 13.3333px ;
	padding: 4px 6px 0 6px;
	border-width: 2px;
	border-style: outset;
	border-color: buttonface;
	border-image: initial;
}

ul.upimg li .close{
		position:absolute;
		display:inline-block;
		top:120px;
		right:4px;
		width:40px;
		height:40px;
		border:0;
		background-color:black;
		border-radius:5px;
		margin:0;
		padding:0;
		transform:scale(0.5);
		cursor:pointer;
	}
ul.upimg li .close:before{
		content:"";
		position:absolute;
		display:inline-block;
		top:8px;
		left:17px;
		width:6px;
		height:24px;
		border:0;
		margin:0;
		padding:0;
		background-color:white;
		-moz-transform:rotate(45deg);
		-webkit-transform:rotate(45deg);
		transform:rotate(45deg);
	}
ul.upimg li .close:after{
		content:"";
		position:absolute;
		display:inline-block;
		top:8px;
		left:17px;
		width:6px;
		height:24px;
		border:0;
		margin:0;
		padding:0;
		background-color:white;
		-moz-transform:rotate(-45deg);
		-webkit-transform:rotate(-45deg);
		transform:rotate(-45deg);
	}
ul.upimg li .close:hover{
		background-color:red;
	}

.attention_wrap{
	width:100%;
	padding:10px 20px 0 20px;
}
.attention_wrap p{
	color: #FF0000 !important;
}


/* ページャー  */
.pager .pagination {
  text-align: center;
	margin:15px 0;;
	padding-bottom:100px;
}

.pager .pagination li {
  display: inline;
  margin: 0 5px;
  padding: 0;
  display: inline-block;
  background:#fff;
  width: 50px;
  height: 50px;
  text-align: center;
  position: relative;
}


.pager .pagination li a{
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display:table;
  color: #F0B200;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
  border:1px solid #F0B200;
  border-radius: 50px;
}

.pager .pagination li.pre a , .pager .pagination li.next a{
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display:table;
  color: #F0B200;
  border:none!important;
	font-size:200%;
	line-height:1.0;
}
.pager .pagination li.saisyo a , .pager .pagination li.saigo a{
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display:table;
  color: #F0B200;
	font-size:200%;
	line-height:1.1;
}

.pager .pagination li a span{
  display:table-cell;
  vertical-align:middle;
}
.pager .pagination li.pre a span , .pager .pagination li.next a span{
  display:table-cell;
  vertical-align:top;
}
.pager .pagination li.saisyo a span , .pager .pagination li.saigo a span{
  display:table-cell;
  vertical-align:top;
}

.pager .pagination li a:hover,
.pager .pagination li a.active{
  color: #fff;
  background: #F0B200;
  border-radius: 50px;
}

@media screen and (max-width: 736px) {
.pager .pagination {
  text-align: center;
	margin:15px 0;;
	padding-bottom:50px;
}

.pager .pagination li {
  display: inline;
  margin: 0 5px;
  padding: 0;
  display: inline-block;
  background:#fff;
  width: 30px;
  height: 30px;
  text-align: center;
  position: relative;
	font-size:80%;
}


.pager .pagination li a{
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display:table;
  color: #F0B200;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
  border:1px solid #F0B200;
  border-radius: 30px;
}

.pager .pagination li.pre a , .pager .pagination li.next a{
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display:table;
  color: #F0B200;
  border:none!important;
	font-size:150%;
	line-height:1.1;
}
.pager .pagination li.saisyo a , .pager .pagination li.saigo a{
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display:table;
  color: #F0B200;
	font-size:150%;
	line-height:1.1;
}

.pager .pagination li a span{
  display:table-cell;
  vertical-align:middle;
}
.pager .pagination li.pre a span , .pager .pagination li.next a span{
  display:table-cell;
  vertical-align:top;
}
.pager .pagination li.saisyo a span , .pager .pagination li.saigo a span{
  display:table-cell;
  vertical-align:top;
}

.pager .pagination li a:hover,
.pager .pagination li a.active{
  color: #fff;
  background: #F0B200;
  border-radius: 30px;
}
}


/* 検索
---------------------------------------------------------------------------- */
.search_menu_wrap{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content:flex-start;
	align-items:stretch;
	align-content:stretch;
	width:100%;
	gap: 0 1%;
}
.search_menu_wrap_pd{
	padding:20px 30px 60px 30px;
}

.search_menu_wrap div.search_menu_wrap_box .selectbox {
	overflow: hidden;
	width: auto;
	margin: 0 auto;
	text-align: center;
	position: relative;
	border-radius: 2px;
	border: 2px solid #f0b200;
	background: #ffffff;
	display: inline-block;
	vertical-align: bottom;
	/*max-width: 300px;*/
}

.search_menu_wrap_pd h3 {
  position: relative;
  padding: 5px 5px 5px 48px;
  background: #333;
  font-size: 22px;
  color: white;
  margin-left: -33px;
  line-height: 1.3;
  z-index:-1;
	font-weight:bold;
	margin-bottom:30px;
}

.search_menu_wrap_pd h3:before {
  position: absolute;
  content: '';
  left: -2px;
  top: -2px;
  border: none;
  border-left: solid 40px white;
  border-bottom: solid 79px transparent;
  z-index:-2
}
/*space-between で2つの時に左寄せ*/
.search_menu_wrap::after{
	content:"";
	display: block;
	width:48%;
}

.search_menu_wrap div.search_menu_wrap_box{
	/*flex-basis: 48.5%;
	max-width: 48.5%;*/
	flex-basis: auto;
	max-width: auto;
	margin-bottom:20px;
	font-size:90%!important;
}


.search_menu_wrap div.search_menu_wrap_box label input[type="checkbox"] + span,
.search_menu_wrap div.search_menu_wrap_box label input[type="radio"] + span {
  font-size:90%!important;
  padding: 3px 30px 0 28px;
}
.search_menu_wrap div.search_menu_wrap_box.threebox{
	flex-basis: 32%;
	max-width: 32%;
}


.search_menu_wrap div.search_menu_wrap_box.fourbox{
	flex-basis: 24%;
	max-width: 24%;
}
.search_menu_wrap div.search_menu_wrap_box.wd100{
	flex-basis: 100%;
	max-width: 100%;
	margin-bottom:30px;
}
.search_menu_wrap div.search_menu_wrap_box.wd62{
	flex-basis: 62.5%;
	max-width: 62.5%;
	margin-bottom:30px;
}

.search_menu_wrap_box.tax label input[type="checkbox"] + span{
	position: relative;
	padding: 0 30px 0 40px;
}

.search_menu_wrap_box.tax input[type="checkbox"] + span::before, .search_menu_wrap_box label input[type="checkbox"] + span::after {
	position: absolute;
	top: 4px;
	left: 7px;
	display: inline-block;
	content: '';
	box-sizing: border-box;
}
.search_menu_wrap_box label input[type="checkbox"] + span::after {
	z-index: 1;
	margin: 7px 0;
	width: 6px;
	height: 9px;
}
.search_menu_wrap_box.tax label input[type="checkbox"] + span::after {
	z-index: 1;
	margin: 5px 8px;
	width: 6px;
	height: 9px;
}


.search_menu_wrap_box.tax label input[type="checkbox"] + span.tax_24 {
  z-index: 0;
  /*background-color: transparent;*/
	background-color:#ff9e5c;
}
.search_menu_wrap_box.tax label input[type="checkbox"] + span.tax_48 {
  z-index: 0;
  /*background-color: transparent;*/
	background-color:#ffbfc6;
}
.search_menu_wrap_box.tax label input[type="checkbox"] + span.tax_60 {
  z-index: 0;
  /*background-color: transparent;*/
	background-color:#81d3f7;
}
.search_menu_wrap_box.tax label input[type="checkbox"] + span::before {
  z-index: 0;
  background-color: white;
  width: 22px;
  height: 22px;
  border: 2px #f0b200 solid;
  border-radius: 5px;
}
.search_menu_wrap_box.tax label input[type="checkbox"]:checked + span::after {
	border: 2px solid #f0b200;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 1;
}

.kanri_search{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:stretch;
	align-content:stretch;
	width:100%;
	margin-bottom:20px;
	text-align: right;
}
.kanri_search input{
	width: 100%;
}


 div.kanri_search_box{
	width:100%;
}
.search_menu_wrap th{
	font-weight:normal!important;
}

@media screen and (max-width: 736px) {
	.kanri_search{
		margin-bottom:10px;
	}
	.kanri_search div.kanri_search_box{
		flex-basis: 100%;
		max-width: 100%;
		margin-bottom:10px;
	}
	.search_menu_wrap div.search_menu_wrap_box.threebox , .search_menu_wrap div.search_menu_wrap_box.fourbox{
		flex-basis: 100%;
		max-width: 100%;
	}
}

.kigyo_account_wrap{
	width:100%!important;
	margin:0 auto 50px auto!important;
}

/* job-list.html 求人一覧
---------------------------------------------------------------------------- */

.joblist_wrap div.joblist_wrap_box{
	width:100%;
	/*border-radius: 5px;*/
	border-top:10px solid #F0B200;
	border-left:1px solid #ccc;
	border-right:1px solid #ccc;
	border-bottom:1px solid #ccc;
	/*outline: 1px solid #ccc;*/
	/*outline-offset: -10px;*/
	margin-bottom:30px;
	position:relative;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
.joblist_wrap div.joblist_wrap_box_pd{
	padding:50px 30px 30px 30px;	
}
.joblist_wrap div.joblist_wrap_box.finish{
	/*pointer-events: none;*/
	cursor: auto;
}
.joblist_wrap div.joblist_wrap_box.finish:hover{
  cursor:auto;
	opacity: 1.0;
}
.joblist_wrap div.joblist_wrap_box.finish p.finish_icon {
	position:absolute;
	background-color:#0071bc;
	color:#fff;
	font-weight:bold;
	padding:3px 10px;
	display:inline-block;
	top:22px;
	left:24px;
	/*font-size: 80%;*/
}

.joblist_wrap div.joblist_wrap_box a{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
	opacity: 1;
}
.joblist_wrap div.joblist_wrap_box:hover{
  cursor:pointer;
	opacity: .7;
}


.joblist_wrap div.joblist_wrap_box .jobtxt_pd{
	padding:20px 20px 20px 20px;
}
.joblist_wrap div.joblist_wrap_box p{
	font-size: 120%;
	font-weight:bold;
}
.joblist-title{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	margin:0;
	line-height:1.5;
	/*font-size:90%;*/
	font-weight:bold;
}
.joblist_wrap div.joblist_wrap_box p.title.line{
	border-bottom: 1px dotted #ccc;
}
.joblist_wrap div.joblist_wrap_box p.address{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	margin:5px 0 8px 0;
	padding:0;
	line-height:1.8;
	border-bottom: 1px dotted #ccc;
}
.joblist_wrap div.joblist_wrap_box p.company-name{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	border-bottom: 1px dotted #ccc;
	/*border-top: 1px dotted #ccc;*/
	margin:5px 0 0 0;
	padding:0px 0;
}
.joblist_wrap div.joblist_wrap_box p.company-name2{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	border-bottom: 1px dotted #ccc;
	margin:5px 0 0 0;
	padding:2px 0;
}
.joblist_wrap div.joblist_wrap_box .job_2dan{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:stretch;
	align-content:stretch;
	width:100%;
}

.joblist_wrap div.joblist_wrap_box .job_2dan .jobimg {
	flex-basis:40%;
	max-width:40%;
}
.joblist_wrap div.joblist_wrap_box .job_2dan .jobimg img {
	width: 100%;
	height: auto;
	/*height: 305px;*/
	object-fit: cover;
}

.joblist_wrap div.joblist_wrap_box .job_2dan .jobtxt {
	flex-basis: 55%;
	max-width:55%;
}


.joblist_wrap div.joblist_wrap_box .job_2dan .jobtxt dl {
  display: flex;
  flex-wrap: wrap;
	font-size:90%;
	margin-bottom:20px;
	justify-content: space-between;
}
.joblist_wrap div.joblist_wrap_box .job_2dan .jobtxt dt {
  width: 17%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
	text-align: left;
	 margin: 0 0 20px 0;
	line-height:1.5;
	font-weight:bold;
}
.joblist_wrap div.joblist_wrap_box .job_2dan .jobtxt dd {
  width: 78%;
  padding: 0 0;
	 margin: 0 0 20px 0;
	line-height:1.5;
	 display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3; /* 行数 */
}



@media screen and (max-width: 880px) {
.joblist_wrap{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:stretch;
	align-content:stretch;
	width:100%;
}
/*space-between で2つの時に左寄せ*/
	.joblist_wrap::after{
		width:48.5%;
	}
	/*.joblist_wrap div.joblist_wrap_2dan{
		flex-basis: 48.5%;
		max-width: 48.5%;
	}*/
.joblist_wrap div.joblist_wrap_box .jobimg {
	flex-basis:100%;
	max-width:100%;
}
.joblist_wrap div.joblist_wrap_box .jobtxt {
	flex-basis: 100%;
	max-width:100%;
	padding-top:5px;
}

}

@media screen and (max-width: 736px) {
	/*space-between で2つの時に左寄せ*/
	.joblist_wrap::after{
		width:100%;
	}
	.joblist_wrap div.joblist_wrap_box{
		flex-basis: 100%;
		max-width: 100%;
	}
	.joblist_wrap div.joblist_wrap_box .job_2dan .jobimg {
		flex-basis:100%;
		max-width:100%;
	}
	.joblist_wrap div.joblist_wrap_box .job_2dan .jobtxt {
		flex-basis: 100%;
		max-width:100%;
	}
	.joblist_wrap div.joblist_wrap_box_pd{
		padding:40px 30px 30px 30px;	
	}
}
@media screen and (max-width: 480px) {
/*space-between で2つの時に左寄せ*/
	.joblist_wrap::after{
		width:100%;
	}
	.joblist_wrap div.joblist_wrap_2dan{
		flex-basis: 100%;
		max-width: 100%;
	}
}
	
/* job-edit.html 求人登録・更新
---------------------------------------------------------------------------- */
.job_edit_topwrap{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:stretch;
	align-content:stretch;
	width:100%;
	margin-bottom:50px;
}
.job_edit_topwrap div.job_edit_topwrap_img{
	flex-basis: 30%;
	max-width:250px;
	position:relative;
}

.job_edit_topwrap div.job_edit_topwrap_img h5{
	border-bottom:1px solid #ccc;
	margin-bottom:8px;
	padding-left:5px;
	font-weight:bold;
}


.job_edit_topwrap div.job_edit_topwrap_img img{
	width:auto;
	margin-top:8px;
	pointer-events: none;
	display:block;
}

.job_edit_topwrap div.job_edit_topwrap_img canvas{
	margin-bottom:5px;
	width:100%;
}
.job_edit_topwrap div.job_edit_topwrap_img label{
	background-image: url("/images/cmn_img/choice_img.png");
	background-size:cover;
	width:250px;
	height:60px;
	margin-top:5px;
}

.job_edit_topwrap div.job_edit_topwrap_img label input{
  display:none;
}
.job_edit_topwrap div.job_edit_topwrap_img label input{
  cursor:pointer;
}
.job_edit_topwrap div.job_edit_topwrap_img .btn-primary{
  margin-top:5px;
}

.job_edit_topwrap div.job_edit_topwrap_img button {
	-webkit-appearance: button;
	-webkit-writing-mode: horizontal-tb !important;
	text-rendering: auto;
	color: buttontext;
	letter-spacing: normal;
	word-spacing: normal;
	text-transform: none;
	text-indent: 0px;
	text-shadow: none;
	display: inline-block;
	text-align: center;
	align-items: flex-start;
	cursor: default;
	background-color: buttonface;
	box-sizing: border-box;
	margin: 0em;
	font: 400 13.3333px ;
	padding: 4px 6px 0 6px;
	border-width: 2px;
	border-style: outset;
	border-color: buttonface;
	border-image: initial;
}

.job_edit_topwrap div.job_edit_topwrap_img .close{
		position:absolute;
		display:inline-block;
		top:130px;
		right:8px;
		width:40px;
		height:40px;
		border:0;
		background-color:black;
		border-radius:5px;
		margin:0;
		padding:0;
		transform:scale(0.5);
		cursor:pointer;
	}
.job_edit_topwrap div.job_edit_topwrap_img .close:before{
		content:"";
		position:absolute;
		display:inline-block;
		top:8px;
		left:17px;
		width:6px;
		height:24px;
		border:0;
		margin:0;
		padding:0;
		background-color:white;
		-moz-transform:rotate(45deg);
		-webkit-transform:rotate(45deg);
		transform:rotate(45deg);
	}
.job_edit_topwrap div.job_edit_topwrap_img .close:after{
		content:"";
		position:absolute;
		display:inline-block;
		top:8px;
		left:17px;
		width:6px;
		height:24px;
		border:0;
		margin:0;
		padding:0;
		background-color:white;
		-moz-transform:rotate(-45deg);
		-webkit-transform:rotate(-45deg);
		transform:rotate(-45deg);
	}
.job_edit_topwrap div.job_edit_topwrap_img .close:hover{
		background-color:red;
}

.job_edit_topwrap div.job_edit_topwrap_txt{
	flex-basis: 65%;
	max-width:65%;
	position:relative;
}
.job_edit_topwrap div.job_edit_topwrap_txt dt{
	font-weight:bold;
}

@media screen and (max-width: 736px) {
.job_edit_topwrap div.job_edit_topwrap_img{
	flex-basis: 100%;
	max-width:250px;
	margin:0 auto 30px auto;
}
.job_edit_topwrap div.job_edit_topwrap_txt{
	flex-basis: 100%;
	max-width:100%;
	position:relative;
}
}

.jobblock_wrap{
	width:100%;
	padding:2% 3%;
	margin-bottom:50px;
	background-color:#f2f2f2;
}

.jobblock_wrap_inner{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:stretch;
	align-content:stretch;
	width:100%;
}
.jobblock_wrap_inner div.jobblock_wrap_inner_box{
	flex-basis: 48.5%;
	max-width: 48.5%;
	margin-bottom:30px;
	background-color:#fff;
}

.jobblock_wrap_inner div.jobblock_wrap_inner_box_pd{
	padding:20px;
}

.job_edit_img{
	max-width:250px;
	position:relative;
	margin:0 auto 30px auto;
}

.job_edit_img h5{
	border-bottom:1px solid #ccc;
	margin-bottom:8px;
	padding-left:5px;
	font-weight:bold;
}
.job_edit_img img{
	width:auto;
	margin-top:8px;
	pointer-events: none;
	display:block;
}

.job_edit_img canvas{
	margin-bottom:5px;
	width:100%;
}
.job_edit_img label{
	background-image: url("/images/cmn_img/choice_img.png");
	background-size:cover;
	width:250px;
	height:60px;
	margin-top:5px;
}

.job_edit_img label input{
  display:none;
}
.job_edit_img label input{
  cursor:pointer;
}
.job_edit_img .btn-primary{
  margin-top:5px;
}

.job_edit_img button {
	-webkit-appearance: button;
	-webkit-writing-mode: horizontal-tb !important;
	text-rendering: auto;
	color: buttontext;
	letter-spacing: normal;
	word-spacing: normal;
	text-transform: none;
	text-indent: 0px;
	text-shadow: none;
	display: inline-block;
	text-align: center;
	align-items: flex-start;
	cursor: default;
	background-color: buttonface;
	box-sizing: border-box;
	margin: 0em;
	font: 400 13.3333px ;
	padding: 4px 6px 0 6px;
	border-width: 2px;
	border-style: outset;
	border-color: buttonface;
	border-image: initial;
}

.job_edit_img .close{
		position:absolute;
		display:inline-block;
		top:130px;
		right:8px;
		width:40px;
		height:40px;
		border:0;
		background-color:black;
		border-radius:5px;
		margin:0;
		padding:0;
		transform:scale(0.5);
		cursor:pointer;
	}
.job_edit_img .close:before{
		content:"";
		position:absolute;
		display:inline-block;
		top:8px;
		left:17px;
		width:6px;
		height:24px;
		border:0;
		margin:0;
		padding:0;
		background-color:white;
		-moz-transform:rotate(45deg);
		-webkit-transform:rotate(45deg);
		transform:rotate(45deg);
	}
.job_edit_img .close:after{
		content:"";
		position:absolute;
		display:inline-block;
		top:8px;
		left:17px;
		width:6px;
		height:24px;
		border:0;
		margin:0;
		padding:0;
		background-color:white;
		-moz-transform:rotate(-45deg);
		-webkit-transform:rotate(-45deg);
		transform:rotate(-45deg);
	}
.job_edit_img .close:hover{
		background-color:red;
}

@media screen and (max-width: 736px) {
	.jobblock_wrap_inner div.jobblock_wrap_inner_box{
		flex-basis: 100%;
		max-width: 100%;
	}
}


/* job-list.html 求人一覧
---------------------------------------------------------------------------- */
.companylist_wrap div.companylist_wrap_box{
	width:100%;
	/*border-radius: 5px;*/
	border-top:10px solid #F0B200;
	border-left:1px solid #ccc;
	border-right:1px solid #ccc;
	border-bottom:1px solid #ccc;
	/*outline: 1px solid #ccc;*/
	/*outline-offset: -10px;*/
	margin-bottom:30px;
	position:relative;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
.companylist_wrap div.companylist_wrap_box_pd{
	padding:50px 30px 30px 30px;	
}
.companylist_wrap div.companylist_wrap_box.finish{
	/*pointer-events: none;*/
	cursor: auto;
}
.companylist_wrap div.companylist_wrap_box.finish:hover{
  cursor:auto;
	opacity: 1.0;
}
.companylist_wrap div.companylist_wrap_box.finish p.finish_icon {
	position:absolute;
	background-color:#0071bc;
	color:#fff;
	font-weight:bold;
	padding:3px 10px;
	display:inline-block;
	top:22px;
	left:24px;
	/*font-size: 80%;*/
}
/*
.companylist_wrap div.companylist_wrap_box a{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
	opacity: 1;
}

.companylist_wrap div.companylist_wrap_box:hover{
  cursor:pointer;
	opacity: .7;
}
*/

.companylist_wrap div.companylist_wrap_box .jobtxt_pd{
	padding:20px 20px 20px 20px;
}
.companylist_wrap div.companylist_wrap_box p{
	/*font-size:90%;*/
	font-weight:bold;
}
.joblist-title,
.companylist-title{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	margin:0;
	line-height:1.5;
	/*font-size:90%;*/
	font-weight:bold;
}


.companylist_wrap div.companylist_wrap_box p.title.line{
	border-bottom: 1px dotted #ccc;
}
.companylist_wrap div.companylist_wrap_box p.address{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	margin:5px 0 8px 0;
	padding:0;
	line-height:1.8;
	border-bottom: 1px dotted #ccc;
}
.companylist_wrap div.companylist_wrap_box p.company-name{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	border-bottom: 1px dotted #ccc;
	/*border-top: 1px dotted #ccc;*/
	margin:5px 0 0 0;
	padding:0px 0;
}
.companylist_wrap div.companylist_wrap_box p.company-name2{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	border-bottom: 1px dotted #ccc;
	margin:5px 0 0 0;
	padding:2px 0;
}
.companylist_wrap div.companylist_wrap_box .job_2dan{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:center;
	align-content:stretch;
	width:100%;
	margin-bottom:30px;
}

.companylist_wrap div.companylist_wrap_box .job_2dan .jobimg {
	flex-basis:40%;
	max-width:40%;
}
.companylist_wrap div.companylist_wrap_box .job_2dan .jobimg img {
	width: 100%;
	max-width:455px;
	/*height: auto;*/
	height: 341px;
	object-fit: contain;
}

.companylist_wrap div.companylist_wrap_box .job_2dan .jobtxt {
	flex-basis: 55%;
	max-width:55%;
}


.companylist_wrap div.companylist_wrap_box .job_2dan .jobtxt dl {
  display: flex;
  flex-wrap: wrap;
	font-size:90%;
	justify-content: space-between;
}
.companylist_wrap div.companylist_wrap_box .job_2dan .jobtxt dt {
  /* width: 27%; */
  width: 19%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
	text-align: left;
	 margin: 0 0 20px 0;
	line-height:1.5;
	font-weight:bold;
	border-bottom:1px solid #ccc;
}
.companylist_wrap div.companylist_wrap_box .job_2dan .jobtxt dd {
  /* width: 73%; */
  width: 81%;
  padding: 0 0;
	 margin: 0 0 20px 0;
	line-height:1.5;
	 display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3; /* 行数 */
	border-bottom:1px solid #ccc;
}

.companylist_wrap div.companylist_wrap_box .job_2dan .jobtxt .dl_2dan{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:stretch;
	align-content:stretch;
	width:100%;
}
.companylist_wrap div.companylist_wrap_box .job_2dan .jobtxt .dl_2dan .dl_2dan_box{
	flex-basis: 49%;
	max-width: 49%;
}
.companylist_wrap div.companylist_wrap_box .job_2dan .jobtxt .dl_2dan .dl_2dan_box dt , .companylist_wrap div.companylist_wrap_box .job_2dan .jobtxt .dl_2dan .dl_2dan_box dd {
	/* margin: 0 0 30px 0; */
}
.companylist_wrap div.companylist_wrap_box .job_2dan .jobtxt .dl_2dan .dl_2dan_box dt.mb0 , .companylist_wrap div.companylist_wrap_box .job_2dan .jobtxt .dl_2dan .dl_2dan_box dd.mb0 {
	margin: 0 0 0 0;
}
.companylist_wrap div.companylist_wrap_box .job_2dan .jobtxt .dl_2dan .dl_2dan_box dt {
	/* width:55%; */
	width:38%;
}
.companylist_wrap div.companylist_wrap_box .job_2dan .jobtxt .dl_2dan .dl_2dan_box dd {
	/* width:45%; */
	width:62%;
}
.companylist_wrap div.companylist_wrap_box .job_2dan .jobtxt .dl_2dan .dl_2dan_box small{
	font-size:70%;
}


.companylist_dl_kai{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:stretch;
	align-content:stretch;
	width:100%;
}
.companylist_dl_kai .companylist_dl_kai_box{
	flex-basis: 48.5%;
	max-width: 48.5%;
}
.companylist_dl_kai .companylist_dl_kai_box dl {
  display: flex;
  flex-wrap: wrap;
	font-size:90%;
	justify-content: space-between;
}
.companylist_dl_kai .companylist_dl_kai_box dt {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
	text-align: left;
	 margin: 0 0 20px 0;
	line-height:1.5;
	font-weight:bold;
	border-bottom:1px solid #ccc;
}
.companylist_dl_kai .companylist_dl_kai_box dd {
  width: 75%;
  padding: 0 0;
	 margin: 0 0 20px 0;
	line-height:1.5;
	 display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3; /* 行数 */
	border-bottom:1px solid #ccc;
}
.company_jisseki dl {
  display: flex;
  flex-wrap: wrap;
	font-size:90%;
	justify-content: space-between;
	margin-bottom:20px;
}
.company_jisseki dt {
  width: 12%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
	text-align: left;
	 margin: 0 0 20px 0;
	line-height:1.5;
	font-weight:bold;
}
.company_jisseki dd {
  width: 88%;
  padding: 0 0;
	 margin: 0 0 20px 0;
	line-height:1.5;
}
@media screen and (max-width: 736px) {
	.companylist_wrap div.companylist_wrap_box .job_2dan .jobtxt dt {
  width: 25%;
}
.companylist_wrap div.companylist_wrap_box .job_2dan .jobtxt dd {
  width: 75%;
  padding: 0 0;
}
.companylist_wrap div.companylist_wrap_box .job_2dan .jobtxt .dl_2dan .dl_2dan_box{
	flex-basis: 100%;
	max-width: 100%;
}
.companylist_wrap div.companylist_wrap_box .job_2dan .jobtxt .dl_2dan .dl_2dan_box.dl_2dan_box_teichaku{
	margin-bottom:15px;
	}
	.companylist_dl_kai .companylist_dl_kai_box{
		flex-basis: 100%;
		max-width: 100%;
	}
	.company_jisseki dt {
	  width: 25%;
	}
	.company_jisseki dd {
	  width: 75%;
	}
	.companylist_wrap div.companylist_wrap_box .job_2dan .jobtxt .dl_2dan .dl_2dan_box dt {
		width:25%;
	}
	.companylist_wrap div.companylist_wrap_box .job_2dan .jobtxt .dl_2dan .dl_2dan_box dd {
		width:75%;
	}
}

@media screen and (max-width: 880px) {
.companylist_wrap{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:stretch;
	align-content:stretch;
	width:100%;
}
/*space-between で2つの時に左寄せ*/
	.companylist_wrap::after{
		width:48.5%;

	}
	/*.companylist_wrap div.companylist_wrap_2dan{
		flex-basis: 48.5%;
		max-width: 48.5%;
	}*/
.companylist_wrap div.companylist_wrap_box .jobimg {
	flex-basis:100%;
	max-width:100%;
}
.companylist_wrap div.companylist_wrap_box .jobtxt {
	flex-basis: 100%;
	max-width:100%;
	padding-top:5px;
}

}

@media screen and (max-width: 736px) {
.companylist_wrap div.companylist_wrap_box .job_2dan{
	margin-bottom:0;
}
	/*space-between で2つの時に左寄せ*/
	.companylist_wrap::after{
		width:100%;
	}
	.companylist_wrap div.companylist_wrap_box{
		flex-basis: 100%;
		max-width: 100%;
	}
	.companylist_wrap div.companylist_wrap_box .job_2dan .jobimg {
		flex-basis:100%;
		max-width:100%;
	}
	.companylist_wrap div.companylist_wrap_box .job_2dan .jobtxt {
		flex-basis: 100%;
		max-width:100%;
	}
	.companylist_wrap div.companylist_wrap_box_pd{
		padding:40px 30px 30px 30px;	
	}
}
@media screen and (max-width: 480px) {
/*space-between で2つの時に左寄せ*/
	.companylist_wrap::after{
		width:100%;
	}
	.companylist_wrap div.companylist_wrap_2dan{
		flex-basis: 100%;
		max-width: 100%;
	}
}


/* job-detail.html 求人詳細情報　メイン部分
---------------------------------------------------------------------------- */
.jobdetail_main_wrap{
	/*border-top:5px solid #666;*/
	border-bottom:5px solid #666;
	padding: 0px 0 0 0;
	margin:10px auto 40px auto;
	position:relative;
	max-width:1280px;
	width:100%;
}
.jobdetail_main_wrap::before{
  content: "";
  position: absolute;
  right: 0;
  bottom: -30px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #666 transparent transparent transparent;
  border-width: 30px 30px 0 30px;
}

.jobdetail_main{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:stretch;
	align-content:stretch;
	width:100%;
	margin-bottom:30px;
}
.jobdetail_main div.jobdetail_main_img {
	flex-basis: 48.5%;
	max-width: 48.5%;
	position:relative;
}
.jobdetail_main div.jobdetail_main_img p.syokusyu_icon {
	position:absolute;
	background-color:#0071bc;
	color:#fff;
	font-weight:bold;
	padding:3px 10px;
	display:inline-block;
	top:12px;
	right:12px;
	font-size: 80%;
}
.jobdetail_main div.jobdetail_main_img img {
	width: 100%;
}
.jobdetail_main div.jobdetail_main_info {
	flex-basis: 48.5%;
	max-width: 48.5%;
}
.jobdetail_main div.jobdetail_main_info h3 {
	border-bottom:5px solid #F0B200;
	paddng-left:12px;
	margin-bottom:20px;
	font-size:130%;
	font-weight:bold;
	line-height:1.5;
}

.jobdetail_main div.jobdetail_main_info dl {
  display: flex;
  flex-wrap: wrap;
	font-size:80%;
	margin-bottom:12px;
}
.jobdetail_main div.jobdetail_main_info dt {
  width: 14%;
  padding: 0.5% 1%;
  background-color: #F0B200;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
	color:#fff;
}
.jobdetail_main div.jobdetail_main_info dd {
  width: 84%;
  padding: 0.5% 1%;
  background-color: #fff;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.jobdetail_icon_wrap{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content:flex-start;
	align-items:stretch;
	align-content:stretch;
	width:100%;
	font-size:60%;
}
.jobdetail_icon{
	border:2px solid #F0B200;
	margin:3px;
	padding:0 5px;
	text-align:center;
	font-weight:bold;
}
.dl_wrap{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:stretch;
	align-content:stretch;
	width:100%;
	margin:0 0 0 0;
}
/*space-between で2つの時に左寄せ*/
.dl_wrap::after{
	content:"";
	display: block;
	width:31.25%;
}
.dl_wrap .dl_wrap_box{
	flex-basis: 32%;
	max-width: 32%;
}
.dl_wrap .dl_wrap_box.botton2{
	flex-basis: 47.5%;
	max-width: 47.5%;
}
.dl_btn {
  display: inline-block;
  width: 100%;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
}
.dl_btn::before,
.dl_btn::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.dl_btn,
.dl_btn::before,
.dl_btn::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.dl_btn {
  background-color: #E8340C;
	box-shadow: 2px 2px 0 #8b1900;
	color: #fff;
	margin-bottom: 1rem;
}
.dl_btn:hover {
  background-color: #fb7b5e;
	box-shadow: 2px 2px 0 #ba3a1d;
	color: #fff;
	text-decoration: none;
}

@media screen and (max-width: 980px) {
	.jobdetail_main{
		padding:0 20px;
	}
	.jobdetail_main div.jobdetail_main_img {
		flex-basis: 100%;
		max-width: 100%;
			margin-bottom:20px;
		position:relative;
	}
	.jobdetail_main div.jobdetail_main_info {
		flex-basis: 100%;
		max-width: 100%;
	}
	.jobdetail_main div.jobdetail_main_info dt {
	  width: 18%;
	  padding: 0.5% 1%;
	}
	.jobdetail_main div.jobdetail_main_info dd {
	  width: 80%;
	  padding: 0.5% 1%;
		-webkit-line-clamp: 2;
	}
}

/* job-detail.html 求人詳細情報　コンテンツ部分
---------------------------------------------------------------------------- */
.youtube_wrap {
  width: 100%;
	max-width:820px;
	margin: 0 auto 30px auto;
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.job_detail_wrap{
	background-color:#fff;
	width:100%;
	max-width:960px;
	margin:0 auto 0 auto;
}
.job_detail_wrap.company_syosai{
	background-color:#fff;
	width:100%;
	max-width:1240px;
	margin:0 auto 0 auto;
}
.job_detail_wrap_pd{
	padding:30px 70px;
}
.job_detail_wrap_pd.company_syosai{
	padding:30px 20px;
}
.job_detail_conts{
	margin-bottom:80px;
}

.job_detail_conts dl{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:stretch;
	align-content:stretch;
	width:100%;
}
.job_detail_conts dl dt{
	flex-basis: 30.7%;
	max-width: 30.7%;
	margin-bottom:3px;
	background-color:#F0B200;
	color:#fff;
	padding:10px;
	font-weight:bold;
}
.job_detail_conts dl dd{
	flex-basis: 68.7%;
	max-width: 68.7;
	margin-bottom:3px;
	background-color:#f2f2f2;
	padding:10px;
}

.job_detail_conts p{
	margin-bottom:30px;
}
.job_detail_conts p.img{
	margin-bottom:20px;
}
.job_detail_conts p.img img{
	width:100%;
}

.senpai_wrap{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:stretch;
	align-content:stretch;
	width:100%;
	margin-bottom:50px;
}
.senpai_wrap div.senpai_img{
	flex-basis: 30%;
	max-width: 30%;
	text-align:center;
}
.senpai_wrap div.senpai_img p{
	font-size:90%;
}

.senpai_wrap div.senpai_img img{
	width:100%;
	border:2px solid #F0B200;
	margin-bottom:10px;
	border-radius: 10px;
}
.senpai_wrap div.senpai_txt{
	flex-basis: 65%;
	max-width: 65%;
}

@media screen and (max-width: 736px) {
.job_detail_wrap_pd{
	padding:20px 20px;
}
.senpai_wrap div.senpai_img{
	flex-basis: 100%;
	max-width: 100%;
	margin-bottom:20px;
}

.senpai_wrap div.senpai_txt{
	flex-basis: 100%;
	max-width: 100%;
}
}

/* school-list.html 学校一覧
---------------------------------------------------------------------------- */
.schoollist_wrap div.schoollist_wrap_box{
	width:100%;
	/*border-radius: 5px;*/
	border-top:10px solid #F0B200;
	border-left:1px solid #ccc;
	border-right:1px solid #ccc;
	border-bottom:1px solid #ccc;
	/*outline: 1px solid #ccc;*/
	/*outline-offset: -10px;*/
	margin-bottom:30px;
	position:relative;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
.schoollist_wrap div.schoollist_wrap_box_pd{
	padding:60px 30px 30px 30px;	
}
.schoollist_wrap div.schoollist_wrap_box .jobtxt_pd{
	padding:20px 20px 20px 20px;
}

.schoollist_wrap div.schoollist_wrap_box .school_2dan{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:stretch;
	align-content:stretch;
	width:100%;
	margin-bottom:30px;
}

.schoollist_wrap div.schoollist_wrap_box .school_2dan .school_2dan_box {
	flex-basis:48.5%;
	max-width:48.5%;
}


.schoollist_wrap div.schoollist_wrap_box .school_2dan .school_2dan_box dl {
  display: flex;
  flex-wrap: wrap;
	font-size:90%;
	justify-content: space-between;
}
.schoollist_wrap div.schoollist_wrap_box .school_2dan .school_2dan_box dt {
  width: 28%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
	text-align: left;
	 margin: 0 0 20px 0;
	line-height:1.5;
	font-weight:bold;
	border-bottom:1px solid #ccc;
}
.schoollist_wrap div.schoollist_wrap_box .school_2dan .school_2dan_box dd {
  width: 72%;
  padding: 0 0;
	 margin: 0 0 20px 0;
	line-height:1.5;
	 display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3; /* 行数 */
	border-bottom:1px solid #ccc;
}

.schoollist_wrap div.schoollist_wrap_box .school_2dan .school_2dan_box #school_course dd span + span::before {
	content: "/";
	margin: 0 5px;
}

.schoollist_wrap div.schoollist_wrap_box .school_2dan .jobtxt .dl_2dan{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:stretch;
	align-content:stretch;
	width:100%;

}
.schoollist_wrap div.schoollist_wrap_box .school_2dan .jobtxt .dl_2dan .dl_2dan_box{
	flex-basis: 49%;
	max-width: 49%;
}
.schoollist_wrap div.schoollist_wrap_box .school_2dan .jobtxt .dl_2dan .dl_2dan_box dt , .schoollist_wrap div.schoollist_wrap_box .school_2dan .jobtxt .dl_2dan .dl_2dan_box dd {
	margin: 0 0 30px 0;
}
.schoollist_wrap div.schoollist_wrap_box .school_2dan .jobtxt .dl_2dan .dl_2dan_box dt.mb0 , .schoollist_wrap div.schoollist_wrap_box .school_2dan .jobtxt .dl_2dan .dl_2dan_box dd.mb0 {
	margin: 0 0 0 0;
}
.schoollist_wrap div.schoollist_wrap_box .school_2dan .jobtxt .dl_2dan .dl_2dan_box dt {
	width:41%;
}
.schoollist_wrap div.schoollist_wrap_box .school_2dan .jobtxt .dl_2dan .dl_2dan_box dd {
	width:59%;
}
.schoollist_wrap div.schoollist_wrap_box .school_2dan .jobtxt .dl_2dan .dl_2dan_box small{
	font-size:70%;
}
.schoollist_wrap div.schoollist_wrap_box .DM_wrap{
	position:absolute;
	width:35px;
	height:35px;
	top: 25px;
	right: 10px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	z-index:999;
}
.schoollist_wrap div.schoollist_wrap_box .DM_wrap a:hover{
	background-color:transparent;
}
.schoollist_wrap div.schoollist_wrap_box .shcool_hensyuwrap{
	position:absolute;
	top: 10px;
	right: 15px;
	text-align:right;
	z-index:999;
}

@media screen and (max-width: 736px) {
	.schoollist_wrap div.schoollist_wrap_box .school_2dan .school_2dan_box {
	flex-basis:100%;
	max-width:100%;
}
	.schoollist_wrap div.schoollist_wrap_box .school_2dan .jobtxt dt {
  width: 25%;
}
.schoollist_wrap div.schoollist_wrap_box .school_2dan .jobtxt dd {
  width: 75%;
  padding: 0 0;
}
.schoollist_wrap div.schoollist_wrap_box .school_2dan .jobtxt .dl_2dan .dl_2dan_box{
	flex-basis: 100%;
	max-width: 100%;
}
.schoollist_wrap div.schoollist_wrap_box .school_2dan .jobtxt .dl_2dan .dl_2dan_box.dl_2dan_box_teichaku{
	margin-bottom:15px;
	}
	.companylist_dl_kai .companylist_dl_kai_box{
		flex-basis: 100%;
		max-width: 100%;
	}
	.company_jisseki dt {
	  width: 25%;
	}
	.company_jisseki dd {
	  width: 75%;
	}
	.schoollist_wrap div.schoollist_wrap_box .school_2dan .jobtxt .dl_2dan .dl_2dan_box dt {
		width:25%;
	}
	.schoollist_wrap div.schoollist_wrap_box .school_2dan .jobtxt .dl_2dan .dl_2dan_box dd {
		width:75%;
	}
}

@media screen and (max-width: 880px) {
.schoollist_wrap{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:stretch;
	align-content:stretch;
	width:100%;
}
/*space-between で2つの時に左寄せ*/
	.schoollist_wrap::after{
		width:48.5%;

	}
	/*.schoollist_wrap div.schoollist_wrap_2dan{
		flex-basis: 48.5%;
		max-width: 48.5%;
	}*/
.schoollist_wrap div.schoollist_wrap_box .jobimg {
	flex-basis:100%;
	max-width:100%;
}
.schoollist_wrap div.schoollist_wrap_box .jobtxt {
	flex-basis: 100%;
	max-width:100%;
	padding-top:5px;
}

}

@media screen and (max-width: 736px) {
.schoollist_wrap div.schoollist_wrap_box .school_2dan{
	margin-bottom:0;
}
	/*space-between で2つの時に左寄せ*/
	.schoollist_wrap::after{
		width:100%;
	}
	.schoollist_wrap div.schoollist_wrap_box{
		flex-basis: 100%;
		max-width: 100%;
	}
	.schoollist_wrap div.schoollist_wrap_box .school_2dan .jobimg {
		flex-basis:100%;
		max-width:100%;
	}
	.schoollist_wrap div.schoollist_wrap_box .school_2dan .jobtxt {
		flex-basis: 100%;
		max-width:100%;
	}
	.schoollist_wrap div.schoollist_wrap_box_pd{
		padding:50px 30px 30px 30px;	
	}
}
@media screen and (max-width: 480px) {
/*space-between で2つの時に左寄せ*/
	.schoollist_wrap::after{
		width:100%;
	}
	.schoollist_wrap div.schoollist_wrap_2dan{
		flex-basis: 100%;
		max-width: 100%;
	}
}
@media screen and (max-width: 780px) {
.scroll_school .schoollist_table_wrap{
width:780px;
	padding-bottom:20px;
}
.scroll_school{
overflow: auto;　　　　/*tableをスクロールさせる*/
white-space: nowrap;　　/*tableのセル内にある文字の折り返しを禁止*/
}
.scroll_school::-webkit-scrollbar{　　/*tableにスクロールバーを追加*/
 height: 5px;
}
.scroll_school::-webkit-scrollbar-track{　　/*tableにスクロールバーを追加*/
 background: #F1F1F1;
}
.scroll_school::-webkit-scrollbar-thumb {　　/*tableにスクロールバーを追加*/
 background: #BCBCBC;
}
}

/* company-edit.html 会社情報
---------------------------------------------------------------------------- */
.company_logo_icon_wrap{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:stretch;
	align-content:stretch;
	width:100%;
	margin-bottom:50px;
}
.company_logo_icon_wrap div.company_logo_box{
	flex-basis: 30%;
	max-width:250px;
	position:relative;
}

.company_logo_icon_wrap div.company_logo_box h5 , .company_logo_icon_wrap div.company_icon_box h5{
	border-bottom:1px solid #ccc;
	margin-bottom:8px;
	padding-left:5px;
	font-weight:bold;
}


.company_logo_icon_wrap div.company_logo_box img{
	width:auto;
	margin-top:8px;
	pointer-events: none;
	display:block;
}

.company_logo_icon_wrap div.company_logo_box canvas{
	margin-bottom:5px;
	width:100%;
}
/*
ul.upimg li label img {
  pointer-events: auto;
}
*/

.company_logo_icon_wrap div.company_logo_box label{
	background-image: url("/images/cmn_img/choice_img.png");
	background-size:cover;
	width:250px;
	height:60px;
	margin-top:5px;
}

.company_logo_icon_wrap div.company_logo_box label input{
  display:none;
}
.company_logo_icon_wrap div.company_logo_box label input{
  cursor:pointer;
}
.company_logo_icon_wrap div.company_logo_box .btn-primary{
  margin-top:5px;
}

.company_logo_icon_wrap div.company_logo_box button {
	-webkit-appearance: button;
	-webkit-writing-mode: horizontal-tb !important;
	text-rendering: auto;
	color: buttontext;
	letter-spacing: normal;
	word-spacing: normal;
	text-transform: none;
	text-indent: 0px;
	text-shadow: none;
	display: inline-block;
	text-align: center;
	align-items: flex-start;
	cursor: default;
	background-color: buttonface;
	box-sizing: border-box;
	margin: 0em;
	font: 400 13.3333px ;
	padding: 4px 6px 0 6px;
	border-width: 2px;
	border-style: outset;
	border-color: buttonface;
	border-image: initial;
}

.company_logo_icon_wrap div.company_logo_box .close{
		position:absolute;
		display:inline-block;
		top:130px;
		right:8px;
		width:40px;
		height:40px;
		border:0;
		background-color:black;
		border-radius:5px;
		margin:0;
		padding:0;
		transform:scale(0.5);
		cursor:pointer;
	}
.company_logo_icon_wrap div.company_logo_box .close:before{
		content:"";
		position:absolute;
		display:inline-block;
		top:8px;
		left:17px;
		width:6px;
		height:24px;
		border:0;
		margin:0;
		padding:0;
		background-color:white;
		-moz-transform:rotate(45deg);
		-webkit-transform:rotate(45deg);
		transform:rotate(45deg);
	}
.company_logo_icon_wrap div.company_logo_box .close:after{
		content:"";
		position:absolute;
		display:inline-block;
		top:8px;
		left:17px;
		width:6px;
		height:24px;
		border:0;
		margin:0;
		padding:0;
		background-color:white;
		-moz-transform:rotate(-45deg);
		-webkit-transform:rotate(-45deg);
		transform:rotate(-45deg);
	}
.company_logo_icon_wrap div.company_logo_box .close:hover{
		background-color:red;
}

.company_logo_icon_wrap div.company_icon_box{
	flex-basis: 65%;
	max-width:65%;
	position:relative;
}

@media screen and (max-width: 736px) {
.company_logo_icon_wrap div.company_logo_box{
	flex-basis: 100%;
	max-width:250px;
	margin:0 auto 30px auto;
}
.company_logo_icon_wrap div.company_icon_box{
	flex-basis: 100%;
	max-width:100%;
	position:relative;
}
}


/* account-list.html オーサムアカウント
---------------------------------------------------------------------------- */
.accountlist_wrap{
	width:100%;
	margin: 0 auto;
}

.accountlist_table_koumoku{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:stretch;
	align-content:stretch;
}
.accountlist_table_koumoku div.accountlist_table_th:nth-child(6){
	width:50%!important;
}
.accountlist_table_koumoku div.accountlist_table_th{
	flex: 1;
	font-weight:bold;
	text-align:center;
	padding:10px 10px;
	width:100%;
}
.accountlist_table_info{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:center;
	align-content:stretch;
	width:100%;
	 position:relative;
}

.accountlist_table_info div.accountlist_table_td{
	flex: 1;
	padding:10px 10px;
	vertical-align: middle;
	line-height:1.3;
	text-align:center;
	width:100%;
}
.accountlist_table_info div.accountlist_table_td ul{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:stretch;
	align-content:stretch;
	width:100%;
}
.accountlist_table_info div.accountlist_table_td ul li{
	flex-basis: 48.5%;
	max-width: 48.5%;
}


.accountlist_table_info div.accountlist_table_td:nth-child(6){
	width:50%!important;
}
.accountlist_table_info:nth-child(even) {
	background: #f7f7f7;
}
.accountlist_wrap form:nth-child(even){
	background: #f7f7f7;
}
@media screen and (max-width: 780px) {
.scroll_account .accountlist_wrap{
	width:780px;
	padding-bottom:20px;
}
.scroll_account{
overflow: auto;　　　　/*tableをスクロールさせる*/
white-space: nowrap;　　/*tableのセル内にある文字の折り返しを禁止*/
}
.scroll_account::-webkit-scrollbar{　　/*tableにスクロールバーを追加*/
 height: 5px;
}
.scroll_account::-webkit-scrollbar-track{　　/*tableにスクロールバーを追加*/
 background: #F1F1F1;
}
.scroll_account::-webkit-scrollbar-thumb {　　/*tableにスクロールバーを追加*/
 background: #BCBCBC;
}
}



/* ============================
fade
=============================*/
.mfp-fade.mfp-bg{
	opacity: 0;
	transition: all 0.3s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing{
	opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content{
	opacity: 0;
	transition: all 0.3s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content{
	opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content{
	opacity: 0;
}
.white-popup-block{
	background: #FFF;
	width: 90%;
	margin: 0 auto;
	padding: 3%;
	text-align: center;
}

a.popup_close_btn{
	display: block;
	width:60%;
	background: #000;
	padding:10px 0;
	color: #FFF;
	border-radius: 5px;
	text-align: center;
	transition: all .3s;
	box-sizing: content-box;
	margin:20px auto 0 auto
}

a.btn:hover{
	background: #333;
}


a.btn span {
	font-size: 80%;
	display: inline-block;
	margin: 0 0 0 10px;
}

/*お気に入り登録済*/
label.favorite_sumi input[type="checkbox"] {
  display: none; /* デフォルトのチェックボックスを非表示 */
}

label.favorite_sumi input[type="checkbox"] + span::before {
  border: 0px #f0b200 solid;
  border-radius: 5px;
} 

label.favorite_sumi input[type="checkbox"] + span::before {
	content: '';/*何も入れない*/
	display: inline-block;/*忘れずに！*/
	width: 22px;/*画像の幅*/
	height: 24px;/*画像の高さ*/
	background-position: bottom;
	background-image: url("/images/cmn_img/okiniiri_all_star_off.svg");
	/* background-image: url("http://localhost:8888/haisuku/public/images/cmn_img/okiniiri_all_star_off.svg"); */
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
}
label.favorite_sumi input[type="checkbox"]:checked + span::before {
  background-color: transparent;
}
label.favorite_sumi input[type="checkbox"]:checked + span::before {
	border: 0px solid #fff;
	border-width: 0 0 0 0;
	content: '';/*何も入れない*/
	display: inline-block;
	width: 22px;/*画像の幅*/
	height: 24px;/*画像の高さ*/
	background-position: bottom;
	background-image: url("/images/cmn_img/okiniiri_all_star_on.svg");
	/* background-image: url("http://localhost:8888/haisuku/public/images/cmn_img/okiniiri_all_star_on.svg"); */
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
}
label.favorite_sumi input[type="checkbox"] + span::after {
	width: 0;
	height: 0;
}
label.favorite_sumi input[type="checkbox"] + span {
	padding-top: 4px;
}

/*お気に入り一括登録*/
label.favorite_all input[type="checkbox"] {
  display: none; /* デフォルトのチェックボックスを非表示 */
}

label.favorite_all input[type="checkbox"] + span::before {
  border: 0px #f0b200 solid;
  border-radius: 5px;
} 

label.favorite_all input[type="checkbox"] + span::before {
	content: '';/*何も入れない*/
	display: inline-block;/*忘れずに！*/
	width: 22px;/*画像の幅*/
	height: 24px;/*画像の高さ*/
	background-position: bottom;
	background-image: url("/images/cmn_img/okiniiri_all_star_off.svg");
	/* background-image: url("http://localhost:8888/haisuku/public/images/cmn_img/okiniiri_all_star_off.svg"); */
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
}
label.favorite_all input[type="checkbox"]:checked + span::before {
  background-color: transparent;
}
label.favorite_all input[type="checkbox"]:checked + span::before {
	border: 0px solid #fff;
	border-width: 0 0 0 0;
	content: '';/*何も入れない*/
	display: inline-block;
	width: 22px;/*画像の幅*/
	height: 24px;/*画像の高さ*/
	background-position: bottom;
	background-image: url("/images/cmn_img/okiniiri_all_star_on.svg");
	/* background-image: url("http://localhost:8888/haisuku/public/images/cmn_img/okiniiri_all_star_on.svg"); */
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
}
label.favorite_all input[type="checkbox"] + span::after {
	width: 0;
	height: 0;
}

/*
label.favorite_all input[type="checkbox"] + span::before {
	z-index: 0;
	background-color: transparent;
	width: 22px;
	height: 22px;
	border: none;
	border-radius: 5px;
}
*/

/*お気に入り登録　アイコンのみ表示*/
label.favorite input[type="checkbox"] {
  display: none; /* デフォルトのチェックボックスを非表示 */
}

label.favorite input[type="checkbox"] + span::before {
  border: 0px #f0b200 solid;
  border-radius: 5px;
} 

label.favorite input[type="checkbox"] + span::before {
	content: '';/*何も入れない*/
	display: inline-block;/*忘れずに！*/
	width: 22px;/*画像の幅*/
	height: 24px;/*画像の高さ*/
	background-position: bottom;
	background-image: url("/images/cmn_img/okiniiri_all_star_off.svg");
	/* background-image: url("http://localhost:8888/haisuku/public/images/cmn_img/okiniiri_all_star_off.svg"); */
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
}
label.favorite input[type="checkbox"]:checked + span::before {
  background-color: transparent;
}
label.favorite input[type="checkbox"]:checked + span::before {
	border: 0px solid #fff;
	border-width: 0 0 0 0;
	content: '';/*何も入れない*/
	display: inline-block;
	width: 22px;/*画像の幅*/
	height: 24px;/*画像の高さ*/
	background-position: bottom;
	background-image: url("/images/cmn_img/okiniiri_all_star_on.svg");
	/* background-image: url("http://localhost:8888/haisuku/public/images/cmn_img/okiniiri_all_star_on.svg"); */
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
}
label.favorite input[type="checkbox"] + span::after {
	width: 0;
	height: 0;
}

.okiniiri{
	position:absolute;
	/*bottom:10px;
	left:30px;*/
	left:15px;
	top:0px;
}

.ikkatu_okiniiri{
	text-align:left;
	/*margin-bottom:20px;*/
}

@media screen and (max-width: 736px) {
	label.favorite_all input[type="checkbox"] + span::before, label.favorite input[type="checkbox"] + span::after {
		top: 3px;
	}
	.okiniiri{
		/*bottom:inherit;
		left:inherit;*/
		left:15px;
		top:0px;
	}
}

/*見てね一括登録*/
label.mitene_all input[type="checkbox"] {
  display: none; /* デフォルトのチェックボックスを非表示 */
}


label.mitene_all input[type="checkbox"] + span::before {
  border: 0px #f0b200 solid;
  border-radius: 5px;
} 

label.mitene_all input[type="checkbox"] + span::before {
   content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 30px;/*画像の幅*/
  height: 30px;/*画像の高さ*/
  background-image: url("/images/cmn_img/mitene_icon_off.svg");
  background-size: contain;
  vertical-align: middle;
	top: 5px;
	left: -5px;
}
label.favorite input[type="checkbox"] + span::before {
	content: '';/*何も入れない*/
	display: inline-block;/*忘れずに！*/
	width: 22px;/*画像の幅*/
	height: 24px;/*画像の高さ*/
	background-position: bottom;
	background-image: url("/images/cmn_img/okiniiri_all_star_off.svg");
	/* background-image: url("http://localhost:8888/haisuku/public/images/cmn_img/okiniiri_all_star_off.svg"); */
	background-repeat: no-repeat;

	background-size: contain;
	vertical-align: middle;
}
label.favorite input[type="checkbox"]:checked + span::before {
  background-color: transparent;
}
label.favorite input[type="checkbox"]:checked + span::before {
	border: 0px solid #fff;
	border-width: 0 0 0 0;
	content: '';/*何も入れない*/
	display: inline-block;
	width: 22px;/*画像の幅*/
	height: 24px;/*画像の高さ*/
	background-position: bottom;
	background-image: url("/images/cmn_img/okiniiri_all_star_on.svg");
	/* background-image: url("http://localhost:8888/haisuku/public/images/cmn_img/okiniiri_all_star_on.svg"); */
	background-repeat: no-repeat;
	background-size: contain;
	vertical-align: middle;
}
label.mitene_all input[type="checkbox"]:checked + span::before {
  background-color: transparent;
}
label.mitene_all input[type="checkbox"]:checked + span::before {
  border: 0px solid #fff;
  border-width: 0 0 0 0;
	content: '';/*何も入れない*/
  display: inline-block;
  width: 30px;/*画像の幅*/
  height: 30px;/*画像の高さ*/
	background-image: url("/images/cmn_img/mitene_icon_on.svg?1");
	background-size: contain;
  vertical-align: middle;
	top: 5px;
	left: -5px;
}
label.mitene_all input[type="checkbox"] + span::after {
	width: 0;
	height: 0;
}
/*見てね　アイコンのみ表示*/
label.mitene input[type="checkbox"] {
  display: none; /* デフォルトのチェックボックスを非表示 */
}

label.mitene input[type="checkbox"] + span {
	position: relative;
	padding: 0 30px 0 35px!important;
}

label.mitene input[type="checkbox"] + span::before {
  border: 0px #f0b200 solid;
  border-radius: 5px;
} 


label.mitene input[type="checkbox"] + span::before {
   content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 30px;/*画像の幅*/
  height: 30px;/*画像の高さ*/
  background-image: url("/images/cmn_img/mitene_icon_off.svg");
  background-size: contain;
  vertical-align: middle;
}
label.mitene input[type="checkbox"]:checked + span::before {
  background-color: transparent;
}
label.mitene input[type="checkbox"]:checked + span::before {
  border: 0px solid #fff;
  border-width: 0 0 0 0;
	content: '';/*何も入れない*/
  display: inline-block;
  width: 30px;/*画像の幅*/
  height: 30px;/*画像の高さ*/
	background-image: url("/images/cmn_img/mitene_icon_on.svg?1");
	background-size: contain;
  vertical-align: middle;
}
label.mitene input[type="checkbox"] + span::after {
	width: 0;
	height: 0;
}
.mitene_place{
	position: absolute;
	/*width:35px;
	height:35px;*/
	top: 0px;
	left:10px;
	/*bottom: 0;
	left: 8px;*/
	margin: auto;
	z-index:9999;
	line-height:2.0;
}


@media screen and (max-width: 736px) {
	label.mitene_all input[type="checkbox"] + span::before , label.mitene_all input[type="checkbox"]:checked + span::before {
		top: 0px;
	}
}

.kensuu_wrap{
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:stretch;
	align-content:stretch;
	width:100%;
	border-bottom:1px dotted #ccc;
	margin-bottom:20px;
	padding-bottom:5px;
}
.kensuu_wrap div.kensuu_wrap_box{
	flex-basis: 48.5%;
	max-width: 48.5%;
}

.balloon2 {
  position: relative;
  display: inline-block;
  margin: 0 0 1.5em 0;
  padding: 0px 20px;
  min-width: 200px;
  max-width: 100%;
  color: #555;
  background: #FFF;
  border: solid 3px #555;
  box-sizing: border-box;
	text-align:center;
	/*letter-spacing: 1px;*/
}

.balloon2:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 2;
}

.balloon2:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #555;
  z-index: 1;
}

.balloon2 p {
  margin: 0;
  padding: 0;
	font-weight:bold;
	line-height:1.3;
}
.balloon2 span {
  font-weight:bold;
	color:#DB0F2F;
	font-size:200%;
}
@media screen and (max-width: 736px) {
	.kensuu_wrap div.kensuu_wrap_box{
		flex-basis: 100%;
		max-width: 100%;
	}
	.kensuu_wrap div.kensuu_wrap_box.center{
		text-align: center;
		margin-bottom:20px;
	}
}

/* アコーディオン */
.s_01 .accordion_one {
  max-width: 1280px;
	width:100%;
  margin: 12px auto 20px auto;
}
.s_01 .accordion_one .accordion_header {
  background-color: #F0B200;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 5px 11%;
  text-align: center;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
}

.s_01 .accordion_one .accordion_header:before {
  content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 24px;/*画像の幅*/
  height: 24px;/*画像の高さ*/
  background-image: url("/images/cmn_img/loope.svg");
  background-size: contain;
  vertical-align: middle;
	margin-right:5px;
}

.s_01 .accordion_one:nth-of-type(2) .accordion_header {
	background-color: #F0B200;
}
.s_01 .accordion_one:nth-of-type(3) .accordion_header {
	background-color: #1c85d8;
}
.s_01 .accordion_one .accordion_header:hover {
  opacity: .8;
}
.s_01 .accordion_one .accordion_header .i_box {
  content:"";
  display:block;
  width:12px;
  height:12px;
  border-top: #fff 4px solid;
  border-right: #fff 4px solid;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position:absolute;
  right: 3%;
  top: 0;
  bottom: 15%;
  margin: auto;
  transition-duration: 0.2s;
}
.s_01 .accordion_one .accordion_header .i_box .one_i {
  display: block;
width: 180px;
font-size: 75%;
line-height: 2;
display: flex;
align-items: center;
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.s_01 .accordion_one .accordion_header.open .i_box {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
	bottom: 0%;
	top: 3px;
}

.s_01 .accordion_one .accordion_header .i_box .one_i:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}
.s_01 .accordion_one .accordion_header.open .i_box .one_i:before {
  content: none;
}
.s_01 .accordion_one .accordion_header.open .i_box .one_i:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.s_01 .accordion_one .accordion_inner {
  display: none;
  padding: 30px 30px;
  border-left: 2px solid #F0B200;
  border-right: 2px solid #F0B200;
  border-bottom: 2px solid #F0B200;
  box-sizing: border-box;
}
.s_01 .accordion_one .accordion_inner .box_one {
  height: auto;
}
.s_01 .accordion_one .accordion_inner p.txt_a_ac {
  margin: 0;
}

.s_01 .accordion_one .accordion_openbox {

  padding: 30px 30px;
  border-left: 2px solid #F0B200;
  border-right: 2px solid #F0B200;
  border-bottom: 2px solid #F0B200;
  box-sizing: border-box;
}
.s_01 .accordion_one .accordion_openbox .box_one {
  height: auto;
}
.s_01 .accordion_one .accordion_openbox p.txt_a_ac {
  margin: 0;
}





@media screen and (max-width: 1024px) {
  .s_01 .accordion_one .accordion_header {
	font-size: 18px;
  }
  .s_01 .accordion_one .accordion_header .i_box {
	width: 12px;
	height: 12px;
	margin-top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .s_01 .accordion_one .accordion_header {
	padding: 3px 60px 3px 5px;
	line-height:1.8;
  }
	.s_01 .accordion_one .accordion_header .i_box {
	margin-top: 11px;
  }
}


/* DM */
.dm_thanks{
	padding-bottom:40vh;
}

/* 20221031追加 */
.company_mainbb{
	background-image: url("/images/cmn_img/company_bbbg.jpg");
	background-repeat: no-repeat;
	background-position: center;
	height:300px;
	width:100%;
	max-width:1560px;
	margin:0 auto;
	position:relative;
}
.company_mainbb .catch{
	position:absolute;
top: 50%;
	left: 20px;
	transform: translateY(-50%);
}
@media screen and (max-width: 736px) {
.company_mainbb{
	background-image: none;
	height:auto;
	width:100%;
	max-width:736px;
	position:relative;
}
}

.shcool_mainbb{
	background-image: url("/images/cmn_img/school_bbbg.jpg");
	background-repeat: no-repeat;
	background-position: center;
	height:300px;
	width:100%;
	max-width:1560px;
	margin:0 auto;
	position:relative;
}
.shcool_mainbb .catch{
	position:absolute;
top: 50%;
	left: 20px;
	transform: translateY(-50%);
}
@media screen and (max-width: 736px) {
.shcool_mainbb{
	background-image: none;
	height:auto;
	width:100%;
	max-width:736px;
	position:relative;
}
}

.hide {
	display: none;
}

.joblist_wrap div.joblist_wrap_box .job_2dan .jobtxt dd span + span::before {
	content: "/";
	margin: 0 5px;
}

.small-text {
	font-size: 12px;
	color: rgb(160, 160, 160);
	font-weight: normal;
	margin-left: 0.5em;
}

.achievement-schools {
	display: flex;
	flex-wrap: wrap;
}
.achievement-schools p {
	margin-bottom: 0;
}
.achievement-schools p + p:before {
	content: "／";
	display: inline-block;
}

.text-pre {
	white-space: pre-line;
}

.no-data {
	width: 100%;
	height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.no-data p:first-child {
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 8px;
}
.no-data p {
	font-size: 16px;
	font-weight: normal;
	color: #8f8f8f;
}
.no-data a {
	color: #767676;
}

.link-btn {
color: #F0B200;
display: inline-block;
margin-top:8px;
}

.job_2dan .alignCenter {
	position: relative;
	padding-bottom: 60px;
}

#duplicate-form {
	left: 0;
	right: 0;
	margin: 10px auto 0;
	position: absolute;
	z-index: 99;
}

.overlay-btn {
	position: absolute;
	z-index: 99;
}

.study_wrap {
	position: fixed;
	right: 10px;
	bottom: 20px;
}

.study_wrap img {
	width: 100%;
}

.study_wrap img.study_pc {
	width: 250px;
}

.study_wrap img.study_sp {
	display: none;
}

@media screen and (max-width: 736px) {
	.study_wrap {
		position: fixed;
		right: 0;
		bottom: 10px;
		left: 0;
		max-width: 300px;
		width: 100%;
		margin: 0 auto;
	}

	.study_wrap img.study_pc {
		display: none;
	}

	.study_wrap img.study_sp {
		display: block;
	}

	footer {
		padding-bottom: 70px;
	}
}


/* plus A */
.flex-check{


}

.flex-check label{
width: 180px;
font-size: 75%;
vertical-align: middle;
line-height: 2;
}

.search_box{
	background-color: #f9f9f9;
}


.search_title{
	font-weight: bold;
}

.search_industry{
	width: 97%;
	padding: 10px 0 10px 10px;
	background-color: #fff;
	border: 1px solid #eee;
	margin: 0 auto;
	display: flex; 
	flex-wrap: wrap;
}

.search_industry label{
	width: 22rem;
	margin-bottom: 3px; 
	white-space: nowrap;
}

.search_pref{
	width: 97%;
	padding: 10px 0 10px 10px;
	background-color: #fff;
	border: 1px solid #eee;
	margin: 0 auto;
	display: flex; 
	flex-wrap: wrap;
	justify-content: flex-start;
	overflow-y: auto;
}

.search_pref label{
	width: 6rem;
	margin-bottom: 3px; 
	white-space: nowrap;
}

.search_occupation{
	width: 97%;
	padding: 10px 0 10px 10px;
	background-color: #fff;
	border: 1px solid #eee;
	max-height: 12rem;
	margin: 0 auto;
	display: flex; 
	flex-wrap: wrap;
	justify-content: flex-start;
	overflow-y: scroll;
}

.search_occupation label{
	width: 22rem;
	margin-bottom: 3px; 
	white-space: nowrap;
}

.search_occupation::-webkit-scrollbar {
  width: 12px;
}

.search_occupation::-webkit-scrollbar-track {
  background-color: #fff;
}

.search_occupation::-webkit-scrollbar-thumb {
  background-color: #F0B200;
  border-radius: 6px;
}

.companylist-title{
	font-size: 120%;
}

.search_city{
	width: 97%;
	padding: 10px 0 10px 10px;
	background-color: #fff;
	border: 1px solid #eee;
	
	margin: 0 auto;
	display: flex; 
	flex-wrap: wrap;
	justify-content: flex-start;
}

.search_city label{
	width: 8rem;
	margin-bottom: 3px; 
	white-space: nowrap;
}


.job_box{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:stretch;
	align-content:stretch;
	width:100%;
	margin-bottom:20px;
}


.job_box1{
	width: 75%;
}
.job_box1 input{
	width: 100%;
}

.job_box2{
	width: 22%;
}

.job_box2 label,
.job_box2 span{
	text-wrap: nowrap;
}


@media screen and (max-width: 736px) {
	.search_industry {
		width: 100%;
	}
	.search_industry label{
		width: 18rem;
	}

	.search_pref{
		width: 100%;
	}

	.search_pref label{
		width: 8rem;
	}

	.search_occupation{
		width: 100%;
		overflow-x: hidden;
	}

	.search_occupation label{
		width: 16rem;
	}

	.shinkibutton{
		margin-bottom: 1rem;
	}


	.s_01 .accordion_one .accordion_inner {
		padding: 20px;
	}



	.job_box{
		display: block;
	}

	.job_box1{
		width: 100%;
	}

	.job_box2{
		width: 100%;
		text-align: right;
	}

	.job_box2 span{
		margin-top: 4px;
		padding-right: 0!important;
	}

	

}