/* --------------------------
    login
-------------------------- */
#loginform-wrap {
	max-width: 640px;
	background-color: #fff;
	padding: 4em;
	margin: 0 auto;
	border-radius: 0.5em;
}

#loginform-wrap > .error {
	display: block;
	border: 1px solid var(--color-red);
	border-radius: 3px;
	background-color: var(--color-red-pale);
	color: var(--color-red);
	padding: 0.5em 1em;
	margin-bottom: 1em;
}

#loginform {
	width: 100%;
}

#loginform .login-username,
#loginform .login-password {
	display: flex;
	flex-flow: column;
}

#loginform .login-username input[type=text],
#loginform .login-password input[type=password] {
	display: block;
	width: 100%;
	border-radius: 3px;
	border: none;
	border: 1px solid #bbb;
	padding: 1em;
	background-color: #fcfcfc;
}

#loginform .login-username label,
#loginform .login-password label {
	font-size: 0.875em;
}

#loginform img {
	margin-bottom: 0;
}

#loginform p:has(img) {
	margin-bottom: 0;
}

#siteguard_captcha {
	display: block;
	width: 6em;
	border-radius: 3px;
	border: none;
	border: 1px solid #bbb;
	padding: 0.5em 1em;
	background-color: #fcfcfc;
}

#loginform label[for="siteguard_captcha"] {
	font-size: 0.875em;
}

#loginform .login-submit {
	margin-bottom: 0;
}

#loginform .button {
	display: block;
	width: 100%;
	border: none;
	padding: 1lh 2.5lh;
	border-radius: 3px;
	font-size: 1em;
}

#loginform .button:hover {
	cursor: pointer;
}

@media (max-width: 768px) {
	#loginform-wrap {
		padding: 2em;
	}
}


/* --------------------------
    job
-------------------------- */
#job-search-form {
	margin-bottom: 2em;
}

#job-search-form > div {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 0.5em;
	overflow: hidden;
}

#job-search-form > div + div {
	margin-top: 0.5em;
}

#job-search-form > div > input[type=checkbox] {
	display: none;
}

#job-search-form > div > input[type=checkbox] + label {
	display: block;
	background-color: #fff;
	padding: 1em 3em 1em 2em;
	font-weight: 500;
	position: relative;
}

#job-search-form > div > input[type=checkbox] + label:hover {
	cursor: pointer;
}

#job-search-form > div > input[type=checkbox] + label:hover,
#job-search-form > div > input[type=checkbox]:checked + label {
	background-color: var(--color-blue-pale);
	color: var(--color-blue);
}

#job-search-form > div > input[type=checkbox] + label:before {
	content: '\2b';
	font-family: var(--font-awesome);
	font-weight: 700;
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
}

#job-search-form > div > input[type=checkbox]:checked + label:before {
	content: '\f068';
}

#job-search-form > div > input[type=checkbox] + label + div {
	display: none;
	padding: 1em 2em;
}

#job-search-form > div > input[type=checkbox]:checked + label + div {
	display: flex;
}

#job-search-form > div > div {
	display: flex;
	flex-wrap: wrap;
}

#job-search-form > div > div > span {
	display: block;
	width: calc(100% / 3 - 1em);
}

#job-search-form > div > div > span:not(:nth-of-type(3n)) {
	margin-right: calc(3em / 2);
}

#job-search-form > div > div > span:nth-of-type(n+4) {
	margin-top: 0.5em
}

#job-search-form > div > div > span > input[type=checkbox] + label:hover {
	font-weight: 500;
	cursor: pointer;
}

#job-search-form > div > div > span > input[type=checkbox]:checked + label {
	font-weight: 500;
}

#job-search-form > div > div > span > div {
	display: none;
	background-color: #f5f5f5;
	padding: 0.5em 1em;
	margin-top: 0.5em;
	border-radius: 0.5em;
}

#job-search-form > div > div > span > input[type=checkbox] + label + input[type=checkbox] {
	display: none;
}

#job-search-form > div > div > span > input[type=checkbox] + label + input[type=checkbox] + label {
	border: 1px solid var(--color-blue);
	padding: 0.25lh 0.5lh;
	font-size: 0.75em;
	color: var(--color-blue);
	border-radius: 0.75lh;
	margin-left: 1em;
}

#job-search-form > div > div > span > input[type=checkbox] + label + input[type=checkbox] + label:hover {
	background-color: var(--color-blue-pale);
}

#job-search-form > div > div > span > input[type=checkbox] + label + input[type=checkbox]:checked + label {
	background-color: var(--color-blue);
	color: #fff;
}

#job-search-form > div > div > span > input[type=checkbox] + label + input[type=checkbox]:checked + label + div {
	display: block;
}

#job-search-form > .sumbit-wrap {
	display: block;
	background-color: var(--color-blue);
	border-radius: 0.5em;
	margin-top: 0.5em;
	position: relative;
}

#job-search-form > .sumbit-wrap:before {
	content: '\f002';
	display: block;
	color: #fff;
	font-family: var(--font-awesome);
	font-weight: 700;
	font-size: 1.25em;
	position: absolute;
	top: 50%;;
	left: 2em;
	transform: translateY(-50%);
}

#job-search-form > .sumbit-wrap > input {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	appearance: none;
	border: none;
	background-color: transparent;
	padding: 1em 2em 1em 3em;
	font-size: 1.25em;
	font-weight: 700;
	color: #fff;
}

#job-search-form > .sumbit-wrap > input:hover {
	cursor: pointer;
}

#job-archive-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 1em;
}

#job-archive-header > div + div {
	margin-left: 1em;
}

#job-archive-header > div > span {
	font-size: 2em;
	font-weight: 700;
}

/*
#job-archive-list {
	list-style-type: none;
}

#job-archive-list > li {
	border: 1px solid #ddd;
	border-top: 3px solid var(--color-blue);
	border-radius: 0 0 0.5em 0.5em;
	overflow: hidden;
	background-color: #fff;
}

#job-archive-list > li + li {
	margin-top: 2em;
}

#job-archive-list > li > article > .header {
	padding: 2em;
	border-bottom: 1px solid #ddd;
}

#job-archive-list > li > article > .header > .title {
	font-size: clamp(1.25em, 2.5vw, 1.75em);
}

#job-archive-list > li > article > .header > .tags {
	display: flex;
	flex-wrap: wrap;
	line-height: 1.25;
	margin-top: 0.5em;
}

#job-archive-list > li > article > .header > .tags > span {
	color: var(--color-blue);
	border: 1px solid var(--color-blue);
	padding: 0.5em 1em;
	border-radius: 0.25em;
	font-size: 0.75em;
	margin: 0.5em 0.5em 0 0;
}

#job-archive-list > li > article > .header > .tags > span:before {
	content: '#';
}

#job-archive-list > li > article > .content {
	padding: 2em;
}

#job-archive-list > li > article > .content {
	display: flex;
	flex-flow: row-reverse;
	justify-content: space-between;
	align-items: flex-start;
}

#job-archive-list > li > article > .content > figure {
	width: calc(40% - 1em);
	aspect-ratio: 3 / 2;
	background-color: #eee;
	border-radius: 0.5em;
	overflow: hidden;
}

#job-archive-list > li > article > .content > figure > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

#job-archive-list > li > article > .content > div {
	width: calc(60% - 1em);
}

#job-archive-list > li > article > .content:not(:has(figure)) > div {
	width: 100%;
}

#job-archive-list > li > article > .content > div .catchcopy {
	font-size: clamp(1em, 2vw, 1.5em);
	font-weight: 500;
	margin-bottom: 0.5em;
}

#job-archive-list > li > article > .content > div > * + .meta {
	margin-top: 1em;
}

#job-archive-list > li > article > .content > div > .meta > dl {
	display: flex;
	align-items: center;
	line-height: 1.25;
	margin-top: 0.5em;
}

#job-archive-list > li > article > .content > div > .meta > dl > dt {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 8rem;
	padding: 0.5em;
	border-radius: 0.25em;
	background-color: var(--color-blue);
	color: #fff;
	font-weight: 700;
	margin-right: 1rem;
}

#job-archive-list > li > article > .content > div > .meta > dl > dd {
	width: calc(100% - 9rem);
}

#job-archive-list > li > article > .content > div > .meta > dl > dd > span {
	display: inline-block;
}

#job-archive-list > li > article > .content > div > .meta > dl > dd > span:not(:last-of-type):after {
	content: '、';
}

#job-archive-list > li > article > .footer > a {
	display: block;
	width: 100%;
	padding: 1em 2em;
	background-color: var(--color-blue);
	font-size: clamp(1em, 1.5vw, 1.25em);
	font-weight: 700;
	text-align: center;
	color: #fff;
}
*/

#job-archive-list {
	list-style-type: none;
}


#job-archive-list > li + li {
	margin-top: 1em;
}

#job-archive-list > li > a > article {
	display: block;
	background-color: #fff;
	padding: 1em 3em 1em 2em;
	border-radius: 0.5em;
	border: 1px solid #ddd;
	position: relative;
}

#job-archive-list > li > a > article:before {
	content: '\f0a9';
	color: var(--color-blue);
	font-family: var(--font-awesome);
	font-weight: 700;
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
}

#job-archive-list > li > a > article > .content {
	display: flex;
	align-items: center;
}

#job-archive-list > li > a > article > .content > .title-wrap {
	display: flex;
	align-items: center;
	width: calc(100% - 8em);
}

#job-archive-list > li > a > article > .content > .title-wrap > time {
	width: 6em;
	letter-spacing: 0.1em;
	margin-right: 1em;
}

#job-archive-list > li > a > article > .header > .title-wrap > time > span {
	font-size: 0.875em;
}

#job-archive-list > li > a > article > .content > .title-wrap > h3 {
	width: calc(100% - 7em);
	font-size: 1em;
	font-weight: 500;
}

#job-archive-list > li > a > article .area {
	display: flex;
	flex-flow: column;
	width: 7em;
	margin-right: 1em;
	padding-left: 1em;
	position: relative;
}

#job-archive-list > li > a > article .area:before {
	content: '\f3c5';
	font-family: var(--font-awesome);
	font-weight: 700;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%)
}

#job-archive-list > li > a > article > .footer {
	display: flex;
	align-items: flex-start;
	margin-top: 0.5em;
}

#job-archive-list > li > a > article .occupation:before {
	content: '職種';
}

#job-archive-list > li > a > article .type:before {
	content: '雇用形態';
}

#job-archive-list > li > a > article .area:before {
	color: var(--color-blue);
	margin-right: 0.5em;
}

#job-archive-list > li > a > article .occupation:before,
#job-archive-list > li > a > article .type:before {
	display: inline-block;
	background-color: var(--color-blue);
	color: #fff;
	padding: 0.25em 1em;
	border-radius: 0.5em;
	margin-right: 1em;
	font-size: 0.75em;
}

#job-archive-list > li > a > article .occupation,
#job-archive-list > li > a > article .type {
	display: flex;
	flex-wrap: wrap;
	width: calc(50% - 1em);
	align-items: baseline;
}

#job-archive-list > li > a > article .occupation > span:not(:last-of-type):after,
#job-archive-list > li > a > article .type > span:not(:last-of-type):after {
	content: ' , ';
}


#job-single-wrap {
	background-color: #fff;
	border-radius: 1em;
	padding: 2em;
}

#job-single-meta {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1em;
}

#job-single-meta > div > div {
	padding-left: 1.5em;
	margin-right: 1em;
	position: relative;
}

#job-single-meta > div > .area:before {
	content: '\f3c5';
	font-family: var(--font-awesome);
	font-weight: 700;
	color: var(--color-blue);
	position: absolute;
	left: 0;
	top: 0;
}

#job-single-meta > div > .type:before {
	content: '\f017';
	font-family: var(--font-awesome);
	font-weight: 700;
	color: var(--color-blue);
	position: absolute;
	left: 0;
	top: 0;
}

#job-single-meta > div > .occupation:before {
	content: '\f007';
	font-family: var(--font-awesome);
	font-weight: 700;
	color: var(--color-blue);
	position: absolute;
	left: 0;
	top: 0;
}

#job-single-meta > div > div > span:not(:first-of-type):before {
	content: ', ';
}

#job-single-meta > time {
	letter-spacing: 0.1em;
}

#job-single-wrap > h2 {
	display: flex;
	flex-flow: column;
	font-size: clamp(1.25em, 2.25vw, 1.75em);
	color: var(--color-blue-dull);
    margin-bottom: 1em;
	font-weight: 500;
}

#job-single-wrap > h2:after {
	content: '';
	display: block;
	width: 100%;
	height: 0.15em;
	border-radius: 0.075em;
    margin: 0.25em 0 0 0;
	background-color: var(--color-blue);
}

#job-single-information-list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 2em;
}

#job-single-information-list > dt {
	width: 12em;
	border-bottom: 1px dotted var(--color-blue-dull);
	color: var(--color-blue-dull);
	padding: 1em;
	font-weight: 700;
}

#job-single-information-list > dd {
	width: calc(100% - 12em);
	border-bottom: 1px dotted var(--color-blue-dull);
	padding: 1em;
}

.job-offer-set {
	margin-top: 2em;
}

.job-offer-set > dl {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 2em;
}

.job-offer-set > dl > dt {
	width: 12em;
	border-bottom: 1px dotted var(--color-blue-dull);
	color: var(--color-blue-dull);
	padding: 1em;
	font-weight: 700;
}

.job-offer-set > dl > dd {
	width: calc(100% - 12em);
	border-bottom: 1px dotted var(--color-blue-dull);
	padding: 1em;
}

#job-single-url {
	display: flex;
	justify-content: flex-end;
}

#job-single-url:before {
	content: 'HP';
	display: inline-block;
	background-color: var(--color-blue);
	color: #fff;
	padding: 0.25em 1em;
	border-radius: 0.5em;
	margin-right: 1em;
	font-size: 0.75em;
}

#job-emphasis {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25em;
	color: var(--color-red);
	font-weight: 600;
}

#job-single-url-not-login-content {
	display: flex;
	justify-content: space-between;
	border: 0.5em solid var(--color-blue-light);
	padding: 4em 0;
	margin-top: 2em;
}

#job-single-url-not-login-content > div {
	width: 50%;
	padding: 0 4em;
}

#job-single-url-not-login-content > div + div {
	border-left: 1px solid var(--color-blue-light);
}

#job-single-url-not-login-content > div > div > #loginform-wrap {
	background-color: unset;
	padding: 0;
}

#job-single-url-login-content {
	background-color: var(--color-blue-pale);
	padding: 4em;
	margin-top: 2em;
}

#job-single-url-login-content > p {
	display: flex;
	justify-content: center;
}

#job-single-url-login-content > div > a {
    display: flex;
	justify-content: center;
    background-color: var(--color-blue);
    border-radius: 0.5em;
	padding: 1em 2em;
	color: #fff;
	font-size: 1.25em;
	font-weight: 700;
    text-decoration: none;
    position: relative;
}

@media (max-width: 768px) {
	#job-single-url-not-login-content {
		flex-flow: column;
		padding: 2em 0;
	}

	#job-single-url-not-login-content > div {
		width: 100%;
		padding: 0 2em;
	}

	#job-single-url-not-login-content > div + div {
		border-left: unset;
		margin-top: 3em;
	}

	#job-single-url-login-content {
		padding: 2em;
	}
	
	#job-single-information-list > dt,
	.job-offer-set > dl > dt {
		width: 100%;
		display: flex;
		justify-content: center;
	}
	
	#job-single-information-list > dd,
	.job-offer-set > dl > dd {
		width: 100%;
	}
	
	
}
