@charset "utf-8";
/*---------- 求人受付ページ ----------*/
main.joboffer .mainvl {
    background: url(../img/employment-mainvisual.jpg);
}
/* arrowbtn */
main.joboffer .arrowbtn {
	border: 1px solid var(--border-color);
	border-radius: 5px;
	padding: 0 10px;
}
main.joboffer .arrowbtn a {
	display: block;
	width: 100%;
	padding: 10px 0;
	transition: ease all 0.3s;
    transform: translateX(0);
    display: flex;
    align-items: flex-end;
    font-weight: 500;
	
}
main.joboffer .arrowbtn a::before {
    content: "";
    width: 30px;
    height: 16px;
    background: url(../../img/nav-arrow.svg) no-repeat;
}
main.joboffer .arrowbtn a:hover {
    transform: translateX(10px);
}
/* 上下線 */
main.joboffer section dl div {
	border-top: 1px solid var(--border-color);
	padding: 25px 0;
	display: flex;
}
main.joboffer section dl div:last-of-type {
	border-bottom: 1px solid  var(--border-color);
}
main.joboffer section dl div dt {
	width: 30%;
}
main.joboffer section dl div dd {
	width: 68%;
}
/* 求人受付のご案内 */
main.joboffer section:nth-of-type(3) h3 {
	margin-bottom: 10px;
}
main.joboffer section:nth-of-type(3) p {
	margin-bottom: 25px;
}
main.joboffer section:nth-of-type(3) > div:first-of-type {
	margin-bottom: 20px;
}
main.joboffer section:nth-of-type(3) div ul {
	display: flex;
	gap: 5px 10px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}
main.joboffer section:nth-of-type(3) div ul li {
	display: flex;
}
main.joboffer section:nth-of-type(3) div ul li:nth-of-type(1) {
    width: 100%;
}
main.joboffer section:nth-of-type(3) div ul li::before {
    width: 1rem;
    height: 1.5rem;
    margin-right: 0.3rem;
    content: '';
    display: block;
    background-image: url(../../img/download-deco.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
main.joboffer section:nth-of-type(3) div li a {
    color: var(--nichide-color);
    text-decoration: underline transparent;
    font-weight: 500;
}
main.joboffer section:nth-of-type(3) div li a:hover {
    text-decoration: underline;
    transition: ease all 0.3s;
}
/* 企業説明会のご案内 */
main.joboffer section:nth-of-type(4) > p:first-of-type {
	margin-bottom: 10px;
}


/* 修正箇所追加分202204
---------------------------------------------------- */
main.joboffer .type h3 {
	margin-bottom: 10px;
}
main.joboffer .type h4 {
	font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    gap: 0 20px;
}
main.joboffer .type h4 span {
	background: #333;
    color: #fff;
    width: 8%;
    font-size: 0.8em;
    border-radius: 5px;
    padding: 2px 0;
    text-align: center;
}
main.joboffer .type > div {
	background: #fff;
    box-shadow: 0px 0px 10px -5px #bababa;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 60px;
}
main.joboffer .type > div:last-of-type {
	margin-bottom: 0;
}
main.joboffer .type ol {
	display: flex;
	justify-content: space-between;
}
main.joboffer .type ol li {
	border: 1px solid #D5D5D5;
	text-align: center;
	font-size: 1.1rem;
	font-weight: 400;
	padding: 20px 50px;
	border-radius: 10px;
}
main.joboffer .type ol li:nth-of-type(1) {
    width: 35%;
}
main.joboffer .type ol li:nth-of-type(2) {
    width: 63%;
}
main.joboffer .type ol li span {
	display: block;
	background: #333;
    color: #fff;
    font-size: 0.8em;
    border-radius: 5px;
    padding: 2px 0;
    text-align: center;
    width: 60px;
    margin: 0 auto 10px;
}
main.joboffer .type .btn {
	margin-top: 10px;
}
main.joboffer .type .btn p {
	background: linear-gradient(135deg, rgba(131,240,131,1) 0%, rgba(22,168,195,1) 100%);
    align-items: center;
    border: 0;
    box-sizing: border-box;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    line-height: 1em;
    padding: 3px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
    transition: all .3s;
    margin-bottom: 0;
    border-radius: 5px;
}
main.joboffer .type .btn p a {
	display: block;
    padding: 10px 0;
    width: 100%;
    height: 100%;
    transition: 300ms;
    color: #fff;
    font-size: 1rem !important;
    width: 100%;
    text-align: center;
    border-radius: 3px;
    font-weight: 400;
}
main.joboffer .type .btn p a:hover {
    outline: 0;
    background-color: #fff;
    color: #5bd69a;
    text-decoration: none;
}


@media screen and (max-width: 479px) {
	main.joboffer section dl div {
	    padding: 20px 0;
	}
	main.joboffer section:nth-of-type(3) div ul {
		margin-bottom: 15px;
	}
	main.joboffer section dl div dt {
    	width: 40%;
	}
	main.joboffer section dl div dd {
    	width: 60%;
	}
	/* 修正箇所追加分202204 
	-------------------------------------------------------*/
	main.joboffer .type h4 {
		gap: 0 10px;
		align-items: flex-start;
	}
	main.joboffer .type h4 span {
		width: 20%;
	}
	main.joboffer .type > div:last-of-type h4 span {
    	width: 35%;
	}
	main.joboffer .type > div {
		margin-bottom: 30px;
	}
	main.joboffer .type ol {
		flex-direction: column;
		gap: 20px 0;
	}
	main.joboffer .type ol li {
		padding: 20px 30px;
	}
	main.joboffer .type ol li:nth-of-type(1),
	main.joboffer .type ol li:nth-of-type(2) {
		width: 100%;
	}
	/* 企業登録ボタングレーアウト
	------------------------------------------------------ */
	main.joboffer .type ol li:nth-of-type(1) .btn p {
		background: #929292;
	}
	main.joboffer .type ol li:nth-of-type(1) .btn p a {
		color: #000;
		pointer-events: none;
	}
	main.joboffer .type ol li:nth-of-type(1) .spview {
		margin: 10px 0 10px;
	}
}
/*---------- 求人受付ページ end ----------*/