﻿@CHARSET "utf-8";
/*------------------------------------------------------------------------------
	共通
------------------------------------------------------------------------------*/
html,body	{
	padding: 0px;
	margin: 0px;
	height:100%;
	color: #0A2A59;
}

body	{
	margin: 0;
}

form {
	display: inline;
}

h2	{
	font-size: 14px;
	font-weight: bold;
}

.require_mark	{
	color: #fd6c8b;
}

.error	{
	color: #fc2757;
}

.frame	{
	padding: 20px;
	background-color: #F8F8F8;
	color: #0b1e47;
	font-weight: bold;
	font-family: "Yu Gothic",YuGothic,"Hiragino Sans","Hiragino Kaku Gothic ProN",Verdana,"メイリオ",Meiryo,sans-serif;
}

/*------------------------------------------------------------------------------
	layout
------------------------------------------------------------------------------*/
.wrapper	{
}

.main	{
	height: 100%;
	width: 100%;
	max-width: 1220px;
	margin: 0 auto;
	padding: 0 10px;
}


#content, #content_flex {
	width: 100%;
	height: 100%;
	display: flex;
	margin: 10px 0;
}

#left {
	width: calc(100% - 300px - 30px);
	margin: 0 30px 0 0;
}

#right {
	width: 300px;
}

#left_sub {
	width: 300px;
}

#right_main {
	flex: 1;
	margin: 0 0 0 30px;
}


/* mobile */
@media screen and (max-width: 767px) {

	#content {
		width: 100%;
		height: 100%;
		display: block;
		margin: 10px 0;
	}

	#content_flex {
		width: 100%;
		height: 100%;
		display: flex;
		margin: 10px 0;
		flex-flow: row wrap;
	}

	#left {
		width: 100% !important;
		margin: 0!important;
	}

	#right {
		width: 100% !important;
		margin: 0 !important;
	}

	#left_sub {
		width: 100% !important;
		margin: 20px 0 0;
		order: 2;
	}

	#right_main {
		width: 100% !important;
		margin: 0;
		order: 1;
	}

}
/*------------------------------------------------------------------------------
	title
------------------------------------------------------------------------------*/
#heading, .title_h1 {
	text-align: center;
}

#heading h1, .title_h1 > p {
	color: #0a2a59;
	font-weight: bold;
	font-size: 2.8rem;
	font-family: "Yu Gothic",YuGothic,"Hiragino Sans","Hiragino Kaku Gothic ProN",Verdana,"メイリオ",Meiryo,sans-serif;
	padding: 40px 0;
	display: inline-block;
}

#heading h1:after, .title_h1 > p:after {
	content: '';
	width: 80%;
	height: 2px;
	background: #00968d;
	display: block;
	margin: 5px auto 0;
}

/* mobile */
@media screen and (max-width: 767px) {
	#heading h1, .title_h1 > p {
		font-size: 2.4rem;
	}
}

/*------------------------------------------------------------------------------
	pagetop
------------------------------------------------------------------------------*/
#pagetop {
	position: fixed;
	bottom: 20px;
	font-size: 14px;
	display: none;
}

#pagetop a {
	background-color: rgba(0, 150, 141, 0.8);
	text-decoration: none;
	color: #fff;
	width: 100px;
	text-align: center;
	display: block;
	border-radius: 5px;
	opacity: 0.8;
	line-height: 70px;
	padding: 0;
}

#pagetop a:hover {
	text-decoration: none;
	background-color: rgba(0, 150, 141, 0.6);
}

@media screen and (min-width: 1441px) {
	#pagetop {
		left: calc(1200px + (100% - 1200px) / 2);
	}
}

@media screen and (max-width: 1440px) {
	#pagetop {
		right: 20px;
	}
}

/* mobile */
@media screen and (max-width: 767px) {
	#pagetop a {
		width: 80px;
		line-height: 50px;
	}
}
/*------------------------------------------------------------------------------
	breadcrumb
------------------------------------------------------------------------------*/
#bread_crumb * {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
}

#bread_crumb {
	margin: 5px 0;
}

#bread_crumb a {
	color: #0b1e47;
	text-decoration: none;
	outline: none;
}

#bread_crumb ul	{
	margin: 0;
	list-style: none;
}

#bread_crumb li	{
	list-style: none;
	display: inline-block;
	font-size: 1.5rem;
	margin: 0 0.4rem 0 0;
	padding: 0 0.9rem 0 0;
	position: relative;
}

#bread_crumb li > span {
	color: #00968d;
}

#bread_crumb li::after	{
	content: "\f105";
	display: inline-block;
	position: absolute;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
/* 	font-family: FontAwesome; */
	top: 0;
	bottom: 0;
	left: auto;
	right: 0;
	margin: auto 0;
	width: 0.9rem;
	height: 0.9rem;
	font-size: 0.9rem;
	line-height: 0.9rem;
	text-align: right;
	color: #888;
}

#bread_crumb li:last-child {
	margin: 0;
	padding: 0;
}
#bread_crumb li:last-child::after {
	content: "";
	display: none;
}

/*------------------------------------------------------------------------------
	Noimage
------------------------------------------------------------------------------*/
.no_image {
	background-color: #fff;
	background-image: url(../image/noimage_bk.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.no_image:before {
  content: "";
  display: block;
  padding-top: 66.6%;
}

.no_image::after {
	content: "\f030  NOIMAGE";
	color: #c8c8c8;
	font-size: 1.8rem;
	font-weight: bold;
	font-family: "Font Awesome 5 Free";
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
/*------------------------------------------------------------------------------
	pager2
------------------------------------------------------------------------------*/
.pager2 {
	color: #0b1e47;
	font-size: 1.4rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.pager2 .page_info {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pager2 .page_link {
	display: flex;
	justify-content: flex-end;
	flex-grow: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pager2 .page_link span {
	color: #fff;
	min-width: 25px;
	font-size: 1.3rem;
	text-align: center;
	padding: 1px 5px;
	background: #00968d;
	border: 1px solid #00968d;
	border-radius: 3px;
	margin: 0 3px;
}

.pager2 .page_link a {
	color: #00968d;
	min-width: 25px;
	font-size: 1.3rem;
	text-align: center;
	padding: 1px 5px;
	background: #fff;
	border: 1px solid #00968d;
	border-radius: 3px;
	margin: 0 3px;
}

.pager2 .page_link .prev, .pager2 .page_link .next {
	color: #fff;
	padding: 1px 5px;
	background: #00968d;
	border: 1px solid #00968d;
	border-radius: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.pager2 .page_link .prev {
	margin: 0 3px 0 0;
}

.pager2 .page_link .prev i {
	margin: 0 3px 0 0;
}

.pager2 .page_link .next {
	margin: 0 0 0 3px;
}

.pager2 .page_link .next i {
	margin: 0 0 0 3px;
}

/* mobile */
@media screen and (max-width: 960px) {

	.pager2 .page_info {
		width: 100%;
	}

	.pager2 .page_link {
		justify-content: center;
		margin: 10px 0 0;
	}

}
/*------------------------------------------------------------------------------
	button
------------------------------------------------------------------------------*/
.btn01 {
	background-color: #00968d;
	border: solid 2px #00968d;
	color: #FFFFFF;
	font-size: 1.8rem;
	padding: 10px 70px;
	text-align: center;
	display: inline-block;
	font-weight: bold;
	cursor: pointer;
}

.btn01:hover {
	background-color: #FFFFFF;
	color: #00968d;
}

.btn02 {
	background-color: #FBA20A;
	border: solid 2px #FBA20A;
	color: #FFFFFF;
	font-size: 1.8rem;
	padding: 10px 10px;
	text-align: center;
	display: inline-block;
	font-weight: bold;
	cursor: pointer;
}

.btn02:hover {
	background-color: #FFFFFF;
	color: #FBA20A;
}

.btn03 {
	background-color: #555;
	color: #FFFFFF;
	font-size: 1.8rem;
	padding: 10px 10px;
	text-align: center;
	display: inline-block;
	font-weight: bold;
}

.btn03:hover, .btn03.btn_selected {
	opacity: 0.8;
}

.btn_or {
	font-size: 1.2rem;
	padding: 5px 8px;
	color: #fff;
	background-color:#555;
	border-style: none;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
 	cursor: pointer;
 }

.btn_or:hover, .btn_or.btn_selected {
	opacity: 0.8;
}

.btn_or:disabled	{
	background-color: #C0C0C0;
	cursor: auto;
}
/*------------------------------------------------------------------------------
	sidebar
------------------------------------------------------------------------------*/
.sidebar_title {
	width: 100%;
	font-size: 1.6rem;
	font-weight: bold;
	font-family: "Yu Gothic",YuGothic,"Hiragino Sans","Hiragino Kaku Gothic ProN",Verdana,"メイリオ",Meiryo,sans-serif;
	padding: 5px 0;
	text-align: center;
	border-bottom: 2px solid #00968d;
	color: #0a2a59;
	background-color: #F5F5F5;
}

/*------------------------------------------------------------------------------
	form
------------------------------------------------------------------------------*/
.select_box {
	overflow: hidden;
	width: 100%;
	text-align: center;
}

.select_box select {
	width: 100%;
	max-width: 100%;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.select_box select::-ms-expand {
	display: none;
}
.select_box {
	position: relative;
	border-radius: 2px;
	border: 1px solid #00968d;
	background: #ffffff;
}
.select_box::before {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 5px;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #00968d;
	pointer-events: none;
	margin: auto 0;
}
.select_box select {
	padding: 12px 38px 12px 5px;
}

.text_box {
	border: 1px solid #00968d;
	height: 40px;
	padding: 0 5px;
	border-radius: 5px;
	width: 100%;
}

.required::after {
	content: '必須';
	color: #fff;
	background-color: #FB0909;
	font-size: 1.1rem;
	line-height: 1;
	padding: 5px;
	border-radius: 0;
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 0 5px;
	font-weight: normal;
}

.required.nomargin::after {
	margin: 0;
}
/*------------------------------------------------------------------------------
	画像アップロードパーツ
------------------------------------------------------------------------------*/
.process_icon {
	display: inline-block;
	border: solid 2px #FBA20A;
	color: #FBA20A;
	background-color: #FFFFFF;
	padding: 3px 10px;
}

.process_text {
	display: inline-block;
	margin-left: 5px;
}

.uploadBtn {
	background-color: #00968d;
	border: solid 2px #00968d;
	color: #FFFFFF;
	font-size: 1.6rem;
	padding: 3px 10px;
	text-align: center;
	display: inline-block;
	cursor: pointer;
	border-radius: 5px;
}

.upload_text {
	padding: 10px;
	background-color: #F5F5F5;
}
/*------------------------------------------------------------------------------
	画像アップロード
------------------------------------------------------------------------------*/
.upload_image	{
	border: solid 1px #CCC;
	background-color: #FFFFFF;
}

.upload_image_100	{
	width: 100px;
	height: 100px;
	margin-bottom: 5px;
	border: solid 1px #CCC;
	background-color: #FFFFFF;
}

.upload_image_120	{
	width: 120px;
	height: 120px;
	margin-bottom: 5px;
	border: solid 1px #CCC;
	background-color: #FFFFFF;
}

.upload_image_150	{
	width: 150px;
	height: 150px;
	border: solid 1px #CCC;
	background-color: #FFFFFF;
}

.upload_image_220	{
	width: 220px;
	height: 220px;
	margin-bottom: 5px;
	border: solid 1px #CCC;
	background-color: #FFFFFF;
}

.upload_image_550	{
	width: 550px;
	height: 194px;
	border: solid 1px #CCC;
	background-color: #FFFFFF;
	margin-bottom: 5px;
}

.upload_image_550_2	{
	width: 550px;
	height: 253px;
	border: solid 1px #CCC;
	background-color: #FFFFFF;
	margin-bottom: 5px;
}

.upimg {
	display: inline-block;
}

.upimg img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

.upimg.contain img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.upimg.cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/*------------------------------------------------------------------------------
	アップロード
------------------------------------------------------------------------------*/
.upload_dialog	{
	width: 350px;
	padding: 10px 10px 30px 10px;
	background-color: #FFFFFF;
	border: solid 2px #808080;
	font-size: 12px;
	text-align: center;
	position: absolute;
	display: none;
}

.upload_dialog label.file_btn {
	padding: 5px;
	color: #ffffff;
	background-color: #384878;
	cursor: pointer;
	display: inline-block;
	border-radius: 3px;
}

.upload_dialog .file_btn input[type="file"] {
	display: none;
}

.upload_dialog .file_btn + span {
	margin: 10px 0 0 0;
}

.upload_dialog input[type="button"] {
	background-color: #00968d;
	border: solid 1px #00968d;
	color: #FFFFFF;
	font-size: 1.2rem;
	padding: 3px 10px;
	text-align: center;
	display: inline-block;
	cursor: pointer;
	border-radius: 3px;
}

.upload_dialog input[type="button"]:first-child {
	margin: 0 10px 0 0;
}

.upload_dialog input[type="button"]:last-child {
	background-color: #757575;
	border: solid 1px #757575;
}

.upload_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height:100%;
	z-index:1000;
	background-color: transparent;
	background-image: url(../image/common/upload_bg.png);
	background-repeat: repeat;
}
/*------------------------------------------------------------------------------
	求人
------------------------------------------------------------------------------*/
/* 横並び */
.recruit_list_side {
	margin: 0 0 30px 0;
}

.recruit_list_side .aj-search-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.recruit_list_side .aj-search-item li {
	width: 19%;
	padding: 0;
	margin: 0 1.25% 20px 0;
	border: solid 1px #C0C0C0;
}

.recruit_list_side .aj-search-item li:nth-child(5n) {
	margin: 0 0 20px 0;
}

.recruit_list_side .aj-search-item li a {
	display: block;
	color: #0A2A59;
	font-size: 1.2rem;
	padding: 0;
	width: 100%;
	height: 100%;
}

.recruit_list_side .aj-search-item .aj_company_name {
	display: none;
}

.recruit_list_side .aj-search-item .aj_recruit {
}

.recruit_list_side .aj-search-item .aj_img {
	position: relative;
	width: 100%;
	background-color: #FFFFFF;
	border-bottom: solid 1px #C0C0C0;
}

.recruit_list_side .aj-search-item .aj_img::before {
	content: "";
	display: block;
	padding-top: 66.6%;
}

.recruit_list_side .aj-search-item .aj_img p {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.recruit_list_side .aj-search-item .aj_img span {
	display: inline-block;
	width: 100%;
	height: 100%;
}

.recruit_list_side .aj-search-item .aj_img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.recruit_list_side .aj-search-item .aj_catchcopy {
	font-size: 1.3rem;
	font-weight: bold;
	text-decoration: underline;
	line-height: 1.4;
	position: relative;
	min-height: 2em;
	padding: 10px;
	color: #009680;
}

.recruit_list_side .aj-search-item a:hover .aj_catchcopy {
	text-decoration: none;
}

.recruit_list_side .aj-search-item .aj_info {
	padding: 0 10px 10px;
}

.recruit_list_side .aj_job_name {
	font-weight: bold;
	margin: 0 0 5px 0;
}

.recruit_list_side .aj_employee_name, .recruit_list_side .aj_salary,.recruit_list_side  .aj_addr {
	position: relative;
	padding: 0 0 0 1.2em;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.recruit_list_side .aj_employee_name::before, .recruit_list_side .aj_salary::before, .recruit_list_side .aj_addr::before {
	content: "";
	position: absolute;
	display: block;
	width: 1em;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto 0 auto auto;
	text-align: left;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	font-size: 1.2rem;
	line-height: 1.4;
	color: #FF7F50;
}

.recruit_list_side .aj_employee_name::before {
	content: "\f007";
}

.recruit_list_side .aj_salary::before {
	content: "\f157";
}

.recruit_list_side .aj_addr::before {
	content: "\f3c5";
}

/* 縦並び*/
.recruit_list_behind .aj-search-item {
	margin: 10px 0 0 0;
}

.recruit_list_behind .aj-search-item li {
	padding: 0 0 10px 0;
	margin: 0 0 20px 0;
	border-bottom: solid 1px #C0C0C0;
}

.recruit_list_behind .aj-search-item li a {
	display: block;
	color: #0A2A59;
	font-size: 1.2rem;
	width: 100%;
	height: 100%;
}

.recruit_list_behind .aj-search-item .aj_catch {
	display: flex;
}

.recruit_list_behind .aj-search-item .aj_img {
	width: 30%;
	position: relative;
	background-color: #FFFFFF;
}

.recruit_list_behind .aj-search-item .aj_img::before {
	content: "";
	display: block;
	padding-top: 66.6%;
}

.recruit_list_behind .aj-search-item .aj_img p {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.recruit_list_behind .aj-search-item .aj_img span {
	display: inline-block;
	width: 100%;
	height: 100%;
}

.recruit_list_behind .aj-search-item .aj_img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.recruit_list_behind .aj-search-item .aj_txt {
	flex: 1;
	padding: 0 0 0 10px;
}

.recruit_list_behind .aj-search-item .aj_catchcopy {
	font-size: 1.3rem;
	font-weight: bold;
	text-decoration: underline;
	line-height: 1.4;
	position: relative;
	padding: 0 1em 0 0;
	min-height: 2em;
	color: #009680;
}

.recruit_list_behind .aj-search-item .aj_catchcopy::after {
	content: "\f105";
	display: block;
	position: absolute;
	width: 1em;
	height: 2rem;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto 0 auto auto;
	text-align: right;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	font-size: 2rem;
	line-height: 1;
}

.recruit_list_behind .aj-search-item a:hover .aj_catchcopy {
	text-decoration: none;
}

.recruit_list_behind .aj-search-item .aj_company_name {
	font-size: 1.1rem;
	margin: 5px 0 3px;
	color: #888888;
}


.recruit_list_behind .aj-search-item .aj_job_name {
	font-weight: bold;
	margin: 0 0 5px 0;
}

.recruit_list_behind .aj_employee_name, .recruit_list_behind .aj_salary, .recruit_list_behind .aj_addr {
	position: relative;
	padding: 0 0 0 1.2em;
	max-width: 100%;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.recruit_list_behind .aj_employee_name::before, .recruit_list_behind .aj_salary::before, .recruit_list_behind .aj_addr::before {
	content: "";
	position: absolute;
	display: block;
	width: 1em;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto 0 auto auto;
	text-align: left;
	font-weight: 900;
	font-family: "Font Awesome 5 Free";
	font-size: 1.2rem;
	line-height: 1.4;
	color: #FF7F50;
}

.recruit_list_behind .aj_employee_name::before {
	content: "\f007";
}

.recruit_list_behind .aj_salary::before {
	content: "\f157";
}

.recruit_list_behind .aj_addr::before {
	content: "\f3c5";
}

@media screen and (max-width: 767px) {
	/* 求人(横並び) */
	.recruit_list_side .recruit_list {
		margin: 0 0 30px 0;
		padding: 0 10px;
	}

	.recruit_list_side .aj-search-item li {
		width: 100%;
		padding: 0;
		margin: 0 0 20px 0;
	}

	.recruit_list_side .aj-search-item li:nth-child(5n) {
		margin: 0 0 20px 0;
	}
}





input[type=checkbox],input[type=radio] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	position: relative;
	right: 0;
	bottom: 0;
	left: 0;
	height: 16px;
	width: 16px;
	vertical-align: -0.8rem;
	transition:all .15s ease-out 0s;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	margin: .4rem;
	outline: none;
	border-radius: 10%;
}
/* Checkbox */
input[type=checkbox]:before,input[type=checkbox]:after {
	position: absolute;
	content: "";
	background: #fff;
	transition: all .2s ease-in-out;
}
input[type=checkbox]:before {
	left: 1px;
	top: 5px;
	width: 0;
	height: 2px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}
input[type=checkbox]:after {
	right: 5px;
	bottom: 3px;
	width: 2px;
	height: 0;
	transform: rotate(40deg);
	-webkit-transform: rotate(40deg);
	-moz-transform: rotate(40deg);
	-ms-transform: rotate(40deg);
	-o-transform: rotate(40deg);
	transition-delay: .2s;
}
input[type=checkbox]:checked:before {
	left: 1px;
	top: 7px;
	width: 5px;
	height: 2px;
}
input[type=checkbox]:checked:after {
	right: 3px;
	bottom: 1px;
	width: 2px;
	height: 10px;
}
input[type=checkbox]:indeterminate:before,input[type=checkbox]:indeterminate:after {
	width: 7px;
	height: 2px;
	transform: rotate(0);
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	-o-transform: rotate(0);
}
input[type=checkbox]:indeterminate:before {
	left: 1px;
	top: 7px;
}
input[type=checkbox]:indeterminate:after {
	right: 1px;
	bottom: 7px;
}
/* Radio */
input[type=radio] {
	border-radius: 50%;
}
input[type=radio]:checked:before {
	transform: scale(1);
}
input[type=radio]:before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin: 2px;
	transform: scale(0);
	transition: all ease-out 250ms;
}
/* 色 */
input[type=checkbox],input[type=radio] {
	border: 2px solid #333;
}
input[type=checkbox]:checked,input[type=checkbox]:indeterminate,input[type=radio]:checked:before {
	background: #333;
}

