@charset "utf-8";
/* CSS Document */
/*================================================
information
================================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* 共通 */

body * {
	margin: 0;
	padding: 0;
}

header {
	background-color: #ffffff;
	padding: 13px 0;
	position: sticky;
	font-family: 'Inter', sans-serif;
	box-shadow: none;
}
header .header_inner {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .header_inner .logo_area {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex: 0 1 auto;
	gap: 36px
}
header .header_inner .logo_area .logo_image {
	width: 42px;
}
header .header_inner .logo_area .logo_image img {
	width: auto;
	max-width: 100%;
	vertical-align: text-bottom;
}
header .header_inner .copy_area {
	flex: 0 1 auto;
}
header .header_inner .copy_area .main_copy {
	font-size: 40px;
	font-weight: bold;
}
header .header_inner .copy_area .main_copy .strong_text {
	color: #ffffff;
	background-color: #33A8ED;
	font-size: 27px;
	font-weight: bold;
	line-height: 1em;
	padding: 0 2px;
	display: inline-block;
	vertical-align: middle;
}
header .header_inner .copy_area .sub_copy {
	font-size: 18px;
}
header .header_inner .link_btn {
	max-width: 285px;
	flex: 1;
}
header .header_inner .link_btn > a {
	color: #ffffff;
	background-color: #E73A17;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 18px;
	font-weight: bold;
	line-height: 65px;
	text-decoration: none;
	text-align: center;
	width: 100%;
	padding: 0 33px;
	border-radius: 35px;
	position: relative;
}
header .header_inner .link_btn > a:hover {
	background-color: #ce2a09;
	opacity: 1;
}
header .header_inner .link_btn > a .cv_arrow {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	position: relative;
}
header .header_inner .link_btn > a .cv_arrow::before,
header .header_inner .link_btn > a .cv_arrow::after {
	background-color: #ffffff;
	content: "";
	width: 6px;
	height: 2px;
	border-radius: 1px;
	position: absolute;
	top: calc(50% - 2px);
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
header .header_inner .link_btn > a .cv_arrow::before {
	top: calc(50% + 2px);
	transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
	header .header_inner .logo_area {
		gap: 20px
	}
	header .header_inner .copy_area .sub_copy {
		font-size: 12px;
	}
	header .header_inner .copy_area .sub_copy .sp {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	header {
		padding: calc((9 / 375) * 100vw) 0;
	}
	header .header_inner {
		padding: 0 calc((13 / 375) * 100vw) 0 calc((18 / 375) * 100vw);
	}
	header .header_inner .logo_area {
		gap: calc((17 / 375) * 100vw);
	}
	header .header_inner .logo_area .logo_image {
		width: calc((24 / 375) * 100vw);
	}
	header .header_inner .copy_area .main_copy {
		font-size: calc((22 / 375) * 100vw);
		line-height: 1;
	}
	header .header_inner .copy_area .main_copy .strong_text {
		font-size: calc((16 / 375) * 100vw);
		padding: 0 calc((4 / 375) * 100vw);
	}
	header .header_inner .copy_area .sub_copy {
		margin-top: calc((3 / 375) * 100vw);;
		font-size: calc((8 / 375) * 100vw);
		line-height: 1.2;
	}
	header .header_inner .copy_area .sub_copy .sp {
		display: inherit!important;
	}
	header .header_inner .link_btn {
		max-width: calc((122 / 375) * 100vw);
	}
	header .header_inner .link_btn > a {
		font-size: calc((8 / 375) * 100vw);
		line-height: calc((28 / 375) * 100vw);
		padding: 0 calc((14 / 375) * 100vw);
		border-radius: calc((15 / 375) * 100vw);
	}
	header .header_inner .link_btn > a .cv_arrow {
		width: calc((10 / 375) * 100vw);
		height: calc((10 / 375) * 100vw);
		border-width: calc((1 / 375) * 100vw);
	}
	header .header_inner .link_btn > a .cv_arrow::before,
	header .header_inner .link_btn > a .cv_arrow::after {
		width: calc((3 / 375) * 100vw);
		height: calc((1 / 375) * 100vw);
		border-radius: calc((1 / 375) * 100vw);
		top: calc(50% - ((1 / 375) * 100vw));
	}
	header .header_inner .link_btn > a .cv_arrow::before {
		top: calc(50% + calc((1 / 375) * 100vw));
	}
}

main {
	font-weight: 600;
	margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
	main {
		margin-bottom: calc((60 / 375) * 100vw);
	}
}

#main_wrapper {
	width: 100%;
	max-width: 1280px;
	padding: 0 40px;
	margin: 0 auto;
	position: relative;
}
@media screen and (max-width: 767px) {
	#main_wrapper {
		padding: 0 calc((20 / 375) * 100vw);
	}
}

#mainvisual {
	max-width: 1200px;
	margin: 0 auto 40px;
	position: relative;
	font-family: 'Inter', sans-serif;
}
#mainvisual img {
	max-width: 100%;
}
#mainvisual .text_area {
	color: #ffffff;
	position: absolute;
	left: 90px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}
#mainvisual .text_area #mainlogo {
	max-width: 312px;
	margin-bottom: 20px;
}
#mainvisual .text_area #page_title {
	font-size: 82px;
	font-weight: bold;
}
#mainvisual .text_area #page_title .strong_text {
	color: #ffffff;
	background-color: #33A8ED;
	font-size: 56px;
	font-weight: bold;
	line-height: 1em;
	padding: 0 3px;
	display: inline-block;
	vertical-align: middle;
}
#mainvisual .text_area .lead_text {
	font-size: 28px;
	font-weight: 600;
	margin-top: 16px;
}
#mainvisual .text_area #main_cv {
	margin-top: 30px;
	max-width: 365px;
	flex: 1;
}
#mainvisual .text_area #main_cv > a {
	color: #ffffff;
	background-color: #E73A17;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 22px;
	font-weight: bold;
	line-height: 78px;
	text-decoration: none;
	text-align: center;
	width: 100%;
	padding: 0 38px;
	border: 3px solid #ffffff;
	border-radius: 40px;
	position: relative;
	box-shadow: 0 5px 15px #55510533;
}
#mainvisual .text_area #main_cv > a:hover {
	background-color: #ce2a09;
	opacity: 1;
}
#mainvisual .text_area #main_cv > a .cv_arrow {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	border: 3px solid #ffffff;
	border-radius: 50%;
	position: relative;
}
#mainvisual .text_area #main_cv > a .cv_arrow::before,
#mainvisual .text_area #main_cv > a .cv_arrow::after {
	background-color: #ffffff;
	content: "";
	width: 10px;
	height: 3px;
	border-radius: 2px;
	position: absolute;
	top: calc(50% - 3px);
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
#mainvisual .text_area #main_cv > a .cv_arrow::before {
	top: calc(50% + 3px);
	transform: translate(-50%, -50%) rotate(-45deg);
}
#mainvisual .bg_image {
	position: relative;
	z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
	#mainvisual {
		margin: 0 auto calc((40 / 1199) * 100vw);
	}
	#mainvisual .text_area {
		left: calc((90 / 1199) * 100vw);
	}
	#mainvisual .text_area #mainlogo {
		width: calc((312 / 1199) * 100vw);
		margin-bottom: calc((20 / 1199) * 100vw);
	}
	#mainvisual .text_area #page_title {
		font-size: calc((82 / 1199) * 100vw);
	}
	#mainvisual .text_area #page_title .strong_text {
		font-size: calc((56 / 1199) * 100vw);
		padding: 0 calc((3 / 1199) * 100vw);
	}
	#mainvisual .text_area .lead_text {
		font-size: calc((28 / 1199) * 100vw);
		margin-top: calc((16 / 1199) * 100vw);
	}
	#mainvisual .text_area #main_cv {
		margin-top: calc((30 / 1199) * 100vw);
		width: calc((365 / 1199) * 100vw);
	}
	#mainvisual .text_area #main_cv > a {
		font-size: calc((22 / 1199) * 100vw);
		line-height: calc((78 / 1199) * 100vw);
		padding: 0 calc((38 / 1199) * 100vw);
		border-width: calc((3 / 1199) * 100vw);
		border-radius: calc((40 / 1199) * 100vw);
	}
	#mainvisual .text_area #main_cv > a .cv_arrow {
		width: calc((30 / 1199) * 100vw);
		height: calc((30 / 1199) * 100vw);
		border-width: calc((3 / 1199) * 100vw);
	}
	#mainvisual .text_area #main_cv > a .cv_arrow::before,
	#mainvisual .text_area #main_cv > a .cv_arrow::after {
		width: calc((10 / 1199) * 100vw);
		height: calc((3 / 1199) * 100vw);
		top: calc(50% - ((3 / 1199) * 100vw));
	}
	#mainvisual .text_area #main_cv > a .cv_arrow::before {
		top: calc(50% + calc((3 / 1199) * 100vw));
	}
}
@media screen and (max-width: 767px) {
	#mainvisual {
		margin: 0 auto calc((40 / 375) * 100vw);
	}
	#mainvisual .text_area {
		left: calc((20 / 375) * 100vw);
	}
	#mainvisual .text_area #mainlogo {
		width: calc((95 / 375) * 100vw);
		margin-bottom: calc((5 / 375) * 100vw);
	}
	#mainvisual .text_area #page_title {
		font-size: calc((24 / 375) * 100vw);
	}
	#mainvisual .text_area #page_title .strong_text {
		font-size: calc((18 / 375) * 100vw);
		padding: 0 calc((3 / 375) * 100vw);
	}
	#mainvisual .text_area .lead_text {
		font-size: calc((10 / 375) * 100vw);
		margin-top: calc((5 / 375) * 100vw);
	}
	#mainvisual .text_area #main_cv {
		margin-top: calc((5 / 375) * 100vw);
		width: calc((160 / 375) * 100vw);
	}
	#mainvisual .text_area #main_cv > a {
		font-size: calc((11 / 375) * 100vw);
		line-height: calc((36 / 375) * 100vw);
		padding: 0 calc((10 / 375) * 100vw);
		border-width: calc((1.5 / 375) * 100vw);
		border-radius: calc((40 / 375) * 100vw);
	}
	#mainvisual .text_area #main_cv > a .cv_arrow {
		width: calc((14 / 375) * 100vw);
		height: calc((14 / 375) * 100vw);
		border-width: calc((1.5 / 375) * 100vw);
	}
	#mainvisual .text_area #main_cv > a .cv_arrow::before,
	#mainvisual .text_area #main_cv > a .cv_arrow::after {
		width: calc((4 / 375) * 100vw);
		height: calc((1 / 375) * 100vw);
		border-radius: calc(50% - ((1 / 375) * 100vw));
		top: calc(50% - ((1 / 375) * 100vw));
	}
	#mainvisual .text_area #main_cv > a .cv_arrow::before {
		top: calc(50% + ((1 / 375) * 100vw));
	}
}

.image_bnr {
	max-width: 860px;
	margin: 60px auto;
}
.image_bnr img {
	width: 100%;
}
@media screen and (max-width: 767px){
	.image_bnr {
		margin: 8vw auto;
	}
}

/* 記事ページ */
#article header .header_inner {
	max-width: 1040px;
}

#article #mainvisual {
	max-width: 1040px;
}

.body_container {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
	.body_container {
		gap: calc((40 / 1279) * 100vw);
	}
}
@media screen and (max-width: 767px) {
	.body_container {
		flex-direction: column;
		gap: calc((20 / 375) * 375);
	}
}
.main_column {
	width: 100%;
	max-width: 860px;
	font-weight: 600;
	display: flex;
	flex-direction: column;
}

aside {
	max-width: 300px;
	font-weight: 600;
}

.column_hd {
	text-align: center;
	position: relative;
	color: #333333;
	padding-bottom: 13px;
	margin-bottom: 35px;
	font-size: 28px;
	font-weight: 800;
}
.column_hd:before,
.column_hd:after {
	content: "";
	display: inline-block;
	height: 3px;
	width: 90px;
	background: #7ec8f4;
	position: absolute;
	left: 50%;
	bottom: 0;
}
.column_hd:before {
	margin-left: -90px;
	background-color: #007aff;
}

@media screen and (min-width: 768px) and (max-width: 1179px) {
	.main_column {
		width: calc((860 / 1279) * 100vw);
	}
	aside {
		width: calc((300 / 1279) * 100vw);
	}
}
@media screen and (max-width: 767px) {
	.article_container {
		width: 100%;
		margin: 0 auto;
		display: block;
	}
	.main_column {
		width: auto;
		background-color: #ffffff;
		margin: 0;
		padding: 0 0;
		border: none;
	}
	aside {
		width: 100%;
		max-width: none;
		padding: 0;
	}

	.column_hd {
		font-size: calc((42 / 750) * 100vw);
		padding-bottom: calc((15 / 750) * 100vw);
		margin-bottom: calc((30 / 750) * 100vw);
	}
	.column_hd:before,
	.column_hd:after {
		width: calc((160 / 750) * 100vw);
	}
	.column_hd:before {
		margin-left: calc((-160 / 750) * 100vw);
	}
}

.article_head {
	max-width: 860px;
	margin-right: auto;
	margin-bottom: 30px;
}
.article_head .article_title {
	font-size: 42px;
	line-height: 1.2;
	font-weight: 800;
	margin-top: 0.5em;
}
.article_head .post_date {
	font-size: 14px;
	margin: 10px 0 0;
	padding: 0 0 0 24px;
	color: #555555;
	background: url("../../images/employer/information/column/ico_date.svg") no-repeat 0 center;
	background-size: 16px;
}
.main_image {
	margin-bottom: 20px;
}
.main_image img {
	width: 100%;
}

.column {
	margin: 0;
	padding: 0;
}

.article_body {
	width: 100%;
	font-weight: 600;
	line-height: 1.7;
}
.article_body * {
	word-break: break-all;
}
.article_body > *:first-child {
	margin-top: 0!important;
}
.article_body > *:last-child {
	margin-bottom: 0!important;
}
.article_body h2 {
	font-size: 1.5em;
	font-weight: 800;
	margin-top: 45px;
	margin-bottom: 5px;
}
.article_body h3 {
	font-size: 1.2em;
	font-weight: 800;
	margin-top: 40px;
	margin-bottom: 5px;
}
.article_body h4 {
	margin-top: 30px;
	margin-bottom: 5px;
	font-size: 1.1em;
}
.article_body a {
	color: #33a8ed;
	font-size: 100%;
	text-decoration: underline;
	display: inline;
}
.article_body a:hover {
	text-decoration: none;
}
.article_body p {
	margin:0 0 1.5em;
}
.article_body h3 + h4 {
	margin-top: 1.0em;
}
.article_body ul {
	padding-left: 1.5em;
	margin:0 0 1.0em;
	list-style-type: disc;
}
.article_body ol {
	padding-left: 1.0em;
	margin:0 0 1.0em;
	list-style-type: decimal;
}
.article_body p + ul,
.article_body p + ol {
	margin-top: -1.5em;
}
.article_body ul + p,
.article_body ol + p {
	margin-top: -1.0em;
}
.article_body img {
	width: auto;
	height: auto;
	max-width: 100%;
}
.article_body iframe {
	width: 100%;
	height: 400px;
}
.article_body sup {
	font-size: 0.8rem;
}
.article_body small {
	font-size: 1.1rem;
}
.article_body hr {
	margin: 40px 0;
}

.article_body .blue {
/*	color: #007aff!important;*/
	color: #33a8ed!important;
}
.article_body .pink {
	color: #ea696c!important;
}

.article_body .italic {
	font-style: italic;
}

.article_body .bold,
.article_body strong {
	font-weight: 800!important;
}

.article_body .center {
	text-align: center!important;
}
.article_body .left {
	text-align: left!important;
}
.article_body .right {
	text-align: right!important;
}

.article_body .kiji_hd_lv2 {
	margin: 60px 0 20px;
	padding: 0;
	font-size: 3.0rem;
	line-height: 1.5;
	font-weight: 800;
}
.article_body .kiji_hd_lv3 {
	margin: 40px 0 20px;
	padding: 14px 15px;
	line-height: 1.2;
	font-size: 2.0rem;
	font-weight: 800;
	background: #f6f6f6;
	border-left: 10px solid #33a8ed;
}
.article_body .kiji_hd_lv4 {
	margin: 30px 0 20px;
	padding: 5px 0 5px 15px;
	line-height: 1.2;
	font-size: 2.0rem;
	font-weight: 600;
	border-left: 5px solid #33a8ed;
}
.article_body .kiji_hd_lv5 {
	margin: 30px 0 20px;
	line-height: 1.2;
	font-size: 1.8rem;
	font-weight: 600;
}

.article_body ul,
.article_body ul *,
.article_body ul > li,
.article_body .basic_li,
.article_body .basic_li *,
.article_body .basic_li > li {
	list-style: none;
}
.article_body ul,
.article_body .basic_li {
	padding-left: 25px;
}
.article_body ul > li,
.article_body .basic_li > li {
	margin: 0;
	padding: 0;
	position: relative;
}
.article_body ul > li:before,
.article_body .basic_li > li:before {
	content: "・";
	display: block;
	width: 1em;
	height: 1em;
	position: absolute;
	top: 0;
	left: -25px;
	color: #000000!important;
	font-weight: 600!important;
}

.article_body ol,
.article_body .basic_ol {
	padding-left: 25px;
	list-style: none;
	counter-reset: title;
}
.article_body ol > li,
.article_body .basic_ol > li {
	counter-increment: title;
	position: relative;
}
.article_body ol > li:before,
.article_body .basic_ol > li:before {
	position: absolute;
	content: counter(title)".";
	left: -25px;
	color: #000000!important;
	font-weight: 600!important;
}

.article_body .upper_roman_ol {
	padding-left: 30px;
	list-style: upper-roman;;
}
.article_body .upper_roman_ol > li {
	position: relative;
}
.article_body .upper_roman_ol > li:before {
	display: none;
}

.article_body .quote_txt {
	font-size: 1.1rem;
	color: #555555;
}

.article_body .contents_box {
	margin: 40px 0;
	padding: 30px;
	border: 1px solid #ccc;
	background-color: #f8f9fa;
}
.article_body .contents_box .contents_hd {
	color: #555555;
	font-size: 1.6rem;
	font-weight: 800;
	margin-bottom: 15px;
}
.article_body .contents_box .contents_li,
.article_body .contents_box .contents_li > li {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 1.5rem;
}
.article_body .contents_box .contents_li > li {
	counter-increment: title;
	padding-left: 1.5em;
	position: relative;
}
.article_body .contents_box .contents_li > li:before {
	color: #33a8ed!important;
	position: absolute;
	content: counter(title)".";
	font-weight: 800;
	margin-right: 10px;
	left: 0;
}
.article_body .contents_box .contents_sub_li,
.article_body .contents_box .contents_sub_li *,
.article_body .contents_box .contents_sub_li > li {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 1.5rem;
}
.article_body .contents_box .contents_sub_li {
	margin: 0 0 10px;
	padding: 0;
}
.article_body .contents_box .contents_sub_li > li {
	margin: 0;
	padding: 0 0 0 1.2em;
	position: relative;
}
.article_body .contents_box .contents_sub_li > li:before {
	content: "・";
	display: block;
	width: 1em;
	height: 1em;
	color: #33a8ed!important;
	position: absolute;
	top: 0;
	left: 0;
}
.article_body .contents_box .contents_sub_li > li::marker {
	display: none;
}
.article_body .contents_box .contents_li > li:last-child .contents_sub_li {
	margin-bottom: 0;
}

.article_body table,
.article_body table th,
.article_body table td,
.article_body .basic_table,
.article_body .basic_table th,
.article_body .basic_table td {
	border-collapse: collapse;
	border: 1px solid #dcdcdc;
/*	font-size: 1.5rem;*/
}
.article_body table,
.article_body .basic_table {
	margin: 20px 0;
	width: 100%;
	table-layout: fixed;
}
.article_body table th,
.article_body table td,
.article_body .basic_table th,
.article_body .basic_table td {
	padding: 10px 15px;
	line-height: 1.4;
}
.article_body table th,
.article_body .basic_table th {
	background: #dbeffb;
	font-weight: 800;
}
.article_body table tbody th:first-child,
.article_body .basic_table tbody th:first-child {
	text-align: left;
}
.article_body table caption,
.article_body .basic_table caption {
	font-size: 1.2rem;
	caption-side: bottom;
	text-align: left;
	margin-top: 10px;
}
.article_body .tb_even {
	table-layout: fixed;
}
.article_body .tb_even td {
	text-align: center;
}

.article_body .td_point {
	color: #ea696c;
}

.article_body .scroll_table {
	margin: 20px 0;
}
.article_body .scroll_table table,
.article_body .scroll_table table thead th,
.article_body .scroll_table table tbody th,
.article_body .scroll_table table tbody td {
	border-collapse: collapse;
}
.article_body .scroll_table table {
	margin: 0;
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.article_body .scroll_table table tbody th,
.article_body .scroll_table table tbody td {
	padding: 10px;
	line-height: 1.4;
	border: 1px solid #dcdcdc;
}
.article_body .scroll_table table thead th {
	padding: 10px 5px;
	line-height: 1.4;
	border: 1px solid #dcdcdc;
}
.article_body .scroll_table table thead th:first-child {
/*	width: 150px;*/
}
.article_body .scroll_table table thead th,
.article_body .scroll_table table tbody th {
	background: #dbeffb;
	font-weight: 800;
}
.article_body .scroll_table table caption {
	font-size: 1.2rem;
	caption-side: bottom;
	text-align: left;
	margin-top: 10px;
}

.article_body .normal_box {
	border: 5px solid #e9e9e9;
	padding: 20px 30px;
	margin-bottom: 30px;
}
.article_body .normal_box_hd {
	font-size: 1.8rem;
	font-weight: 800;
	margin-bottom: 10px;
}

.article_body .normal_box ul,
.article_body .normal_box ol,
.article_body .summary_inner ul,
.article_body .summary_inner ol,
.article_body .quote_box ul,
.article_body .quote_box ol {
	margin-top: 0;
}

.article_body .normal_box p:last-of-type,
.article_body .quote_box p:last-of-type,
.article_body .summary_inner p:last-of-type,
.article_body .normal_box ul:last-of-type,
.article_body .quote_box ul:last-of-type,
.article_body .summary_inner ul:last-of-type {
/*	margin-bottom: 0;*/
}
.article_body .normal_box *:last-child,
.article_body .quote_box *:last-child,
.article_body .summary_inner *:last-child {
	margin-bottom: 0;
}
.article_body .normal_box .cap_txt,
.article_body .quote_box .cap_txt,
.article_body .summary_inner .cap_txt,
.article_body .normal_box .quote_txt,
.article_body .quote_box .quote_txt,
.article_body .summary_inner .quote_txt {
	margin-top: inherit;
}

.article_body .quote_box {
	background-color: #ffffff;
	border: 3px solid #e9e9e9;
	padding: 30px 30px 30px 70px;
	margin-bottom: 30px;
	position: relative;
}
.article_body .quote_box:before {
	content: "";
	width: 35px;
	height: 35px;
	background: url("../../images/employer/information/column/ico_quote.svg") no-repeat center center;
	background-size: 100% auto;
	display: block;
	position: absolute;
	top: 30px;
	left: 15px;
}
.article_body .quote_box .quote_box_hd {
	font-size: 18px;
	font-weight: 800;
	margin: 0 0 10px;
}

.article_body .summary_box {
	margin-bottom: 30px;
}
.article_body .summary_hd {
	color: #ffffff;
	background-color: #165c86;
	margin: 0;
	padding: 8px 30px;
	font-size: 18px;
}
.article_body .summary_inner {
	padding: 30px;
	border: solid #aaaaaa;
	border-width: 0 2px 2px 2px;
}

.article_body .btn_box {
	text-align: center;
	margin: 40px 0;
}
.article_body .btn {
	display: block;
	color: #ffffff;
	background-color: #33a8ed;
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
	font-size: 2.0rem;
	font-weight: 800;
	text-align: center;
	height: 90px;
	line-height: 90px;
	position: relative;
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
	transition: .25s;
	text-decoration: none;
}
.article_body .btn:after {
	content: "";
	display: inline-block;
	height: 14px;
	width: 14px;
	border:solid #ffffff;
	border-width: 2px 2px 0 0;
	transform: rotate(45deg);
	position: absolute;
	right: 30px;
	top: 50%;
	margin-top: -11px;
	transition: .15s ease-in;
}
.article_body .btn span {
	color: #ffffff;
	font-size: 20px;
	font-weight: 800;
}
.article_body .btn:hover {
	background-color: #1873a8;
}
.article_body .btn:hover:after {
	right: 25px;
}
.article_body .btn.btn_orange {
	background-color: #fd9d53;
}
.article_body .btn_normal {
	margin: 40px auto;
	color: #33a8ed;
	background-color: #ffffff;
	border: 2px solid #33a8ed;
	box-shadow: none;
/*	height: 50px;
	line-height: 50px;*/
	width: 320px;
}
.article_body .btn_normal span {
	color: #33a8ed;
	font-size: 16px;
}
.article_body .btn_normal:after {
	border-color: #33a8ed;
}
.article_body .btn_normal:hover {
	background-color: #ffffff;
}
.article_body .btn_caption {
	font-size: 1.4rem;
	margin: 5px 0 0;
	text-align: center;
}

.article_body .btn_col2 {
	display: flex;
	justify-content: space-between;
}
.article_body .btn_col2 > * {
	width: 48%!important;
	margin-top: 0;
	margin-bottom: 0;
}

.article_body .supervision {
	border: 1px solid #cccccc;
	margin-top: 50px;
	padding: 30px;
	display: flex;
	justify-content: space-between;
}
.article_body .supervision figure {
	margin-right: 15px;
}
.article_body .supervision p:last-of-type {
	margin-bottom: 0;
}

.article_body .wj_article_img {
	margin: 20px 0;
}
.article_body .wj_article_img img{
	width: auto;
	max-width: 100%;
}
.article_body .wj_article_img .img_caption {
	font-size: 1.1rem;
	margin: 5px 0 0;
}

.article_body .cap_txt {
	font-size: 11px;
}

.article_body .info_imgbox {
	margin-bottom: 10px;
}
.article_body .info_imgbox img {
	margin: 0 auto;
}
.article_body .info_imgboxsp {
	margin-bottom: 15px;
}

.article_body .bnr {
	margin: 60px auto;
	text-align: center;
}
.article_body .bnr img {
	width: auto;
	max-width: 100%;
}
.article_body .bnr + .bnr_caption {
	margin: -40px auto 40px;
	text-align: center;
}

.article_body .col2 {
	display: flex;
	justify-content: space-between;
	margin: 30px 0;
}
.article_body .col2 > * {
	margin-top: 0;
	margin-bottom: 0;
}
.article_body .col2 > *:nth-child(even) {
	margin-left: 15px;
}
.article_body .col2 > .text_box {
	flex: 1;
}

.nopc {
	display: none;
}

/* セミナーページ */

.article_body .seminarPoint {
	margin: 0 0 20px;
	padding: 0 10px 20px;
	display: flex;
	width: 100%;
	flex-wrap: nowrap;
	border-bottom: 2px dotted #33a8ed;
}
.article_body .seminarPoint:first-of-type {
	margin-top: 40px;
}
.article_body .seminarPoint > dt {
	margin-right: 20px;
	width: 200px;
	font-weight: 800;
}
.article_body .seminarPoint > dd {
	flex: 1;
}
.article_body .seminarPoint > dd > *:last-child {
	margin-bottom: 0;
}

.article_body .dotList {
	padding: 0;
}
.article_body .dotList > li {
	list-style: none;
}
.article_body .dotList > li {
	text-indent: -1em;
	padding-left: 1em;
	position: relative;
}
.article_body .dotList > li:before {
	content: "・";
	position: relative;
}

.article_body .instructorName {
	font-weight: 800;
	margin-bottom: 10px;
}

.article_body .cvBtn {
	margin: 50px auto;
	width: 280px;
}
.article_body .cvBtn > a {
	color: #ffffff;
	background-color: #33a8ed;
	text-align: center;
	font-size: 18px;
	line-height: 56px;
	text-decoration: none;
	padding: 0 15px;
	display: block;
	width: 100%;
	border-radius: 10px;
}
.article_body .cvBtn > a:hover {
	opacity: 0.8;
}

.article_body #summary {
	padding: 30px 15px;
	margin-bottom: 0;
	background-color: #fafafa;
}

.article_body #summary .summaryTitle {
	font-size: 28px;
	font-weight: 800;
	text-align: center;
	margin-bottom: 20px;
}

.article_body .summaryTable {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	border: none;
}
.article_body .summaryTable tr {
	border-bottom: 2px dotted #33a8ed;
	vertical-align: top;
}
.article_body .summaryTable th,
.article_body .summaryTable td {
	padding: 20px 10px;
	text-align: left;
	background: none;
	border: none;
}
.article_body .summaryTable th {
	width: 100px;
	font-weight: 800;
}
.article_body .summaryTable td {
}

.article_body .summaryTable .seminarName {
	font-weight: 800;
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
	.article_head {
		width: calc((860 / 1279) * 100vw);
		}
}
@media screen and (min-width: 768px) and (max-width: 1040px) {
	.article_body {
		width: 100%;
		max-width: 740px;
		margin: 0 auto;
	}
}
@media screen and (max-width: 767px) {
	.article_head {
		margin-bottom: calc((30 / 750) * 100vw);
	}
	.article_head .article_title {
		font-size: calc((42 / 750) * 100vw);
		line-height: 1.2;
		margin-bottom: calc((10 / 750) * 100vw);
	}
	.article_head .post_date {
		font-size: calc((20 / 750) * 100vw);
		padding-left: calc((36 / 750) * 100vw);
		background-size: calc((28 / 750) * 100vw);
		margin-top: calc((10 / 750) * 100vw);
	}
	.article_body {
		width: 100%;
		margin: 0;
		line-height: 1.6;
	}
	.article_body * {
		font-size: calc((28 / 750) * 100vw);
	}
	.article_body h2 {
		font-size: calc((40 / 750) * 100vw);
		margin-top: calc((45 / 750) * 100vw);
		margin-bottom: calc((10 / 750) * 100vw);
	}
	.article_body h3 {
		font-size: calc((32 / 750) * 100vw);
		margin-top: calc((40 / 750) * 100vw);
		margin-bottom: calc((10 / 750) * 100vw);
	}
	.article_body h4 {
		font-size: calc((30 / 750) * 100vw);
		margin-top: calc((40 / 750) * 100vw);
		margin-bottom: calc((10 / 750) * 100vw);
	}
	.article_body p {
		font-size: calc((28 / 750) * 100vw);
		margin-bottom: calc((40 / 750) * 100vw);
	}
	.article_body ul,
	.article_body ol {
		margin-bottom: calc((30 / 750) * 100vw);
	}
	.article_body p + ul,
	.article_body p + ol {
		margin-top: calc((-40 / 750) * 100vw);
	}
	.article_body ul + p,
	.article_body ol + p {
		margin-top: calc((-30 / 750) * 100vw);
	}
	.article_body iframe {
		height: calc((400 / 750) * 100vw);
	}
	.article_body sup {
		font-size: calc((15 / 750) * 100vw);
	}
	.article_body small {
		font-size: calc((15 / 750) * 100vw);
	}
	.article_body hr {
		margin: calc((60 / 750) * 100vw) 0;
	}

	.article_body .kiji_hd_lv2 {
		margin: calc((60 / 750) * 100vw) 0 calc((30 / 750) * 100vw);
		font-size: calc((42 / 750) * 100vw);
	}
	.article_body .kiji_hd_lv3 {
		margin: calc((40 / 750) * 100vw) 0 calc((30 / 750) * 100vw);
		padding: calc((10 / 750) * 100vw);
		font-size: calc((36 / 750) * 100vw);
		border-left-width: calc((10 / 750) * 100vw);
	}
	.article_body .kiji_hd_lv4 {
		margin: calc((40 / 750) * 100vw) 0 calc((20 / 750) * 100vw);
		padding: calc((5 / 750) * 100vw) calc((5 / 750) * 100vw) calc((5 / 750) * 100vw) calc((10 / 750) * 100vw);
		font-size: calc((32 / 750) * 100vw);
		border-left-width: calc((10 / 750) * 100vw);
	}
	.article_body .kiji_hd_lv5 {
		margin: calc((40 / 750) * 100vw) 0 calc((30 / 750) * 100vw);
		font-size: calc((30 / 750) * 100vw);
	}

	.article_body .cap_txt {
		font-size: calc((20 / 750) * 100vw);
	}

	.article_body .quote_txt {
		font-size: calc((20 / 750) * 100vw);
	}

	.article_body .contents_box {
		margin: calc((45 / 750) * 100vw) 0;
		padding: calc((30 / 750) * 100vw);
	}
	.article_body .contents_box .contents_hd {
		font-size: calc((24 / 750) * 100vw);
		margin-bottom: calc((15 / 750) * 100vw);
	}
	.article_body .contents_box .contents_li,
	.article_body .contents_box .contents_li > li {
		font-size: calc((24 / 750) * 100vw);
	}
	.article_body .contents_box .contents_li > li:before {
		margin-right: calc((15 / 750) * 100vw);
	}
	.article_body .contents_box .contents_sub_li,
	.article_body .contents_box .contents_sub_li *,
	.article_body .contents_box .contents_sub_li > li {
		font-size: calc((24 / 750) * 100vw);
	}
	.article_body .contents_box .contents_sub_li {
		margin: 0 0 calc((20 / 750) * 100vw);
	}
	.article_body .contents_box .contents_sub_li > li {
	}
	.article_body .contents_box .contents_sub_li > li:before {
	}

	.article_body .normal_box {
		border-width: calc((10 / 750) * 100vw);
		padding: calc((25 / 750) * 100vw);
		margin-bottom: calc((40 / 750) * 100vw);
	}
	.article_body .normal_box_hd {
		font-size: calc((32 / 750) * 100vw);
		margin-bottom: calc((15 / 750) * 100vw);
	}

	.article_body .quote_box {
		border-width: calc((10 / 750) * 100vw);
		padding: calc((25 / 750) * 100vw) calc((25 / 750) * 100vw) calc((25 / 750) * 100vw) calc((80 / 750) * 100vw);
		margin-bottom: calc((40 / 750) * 100vw);
	}
	.article_body .quote_box:before {
		width: calc((40 / 750) * 100vw);
		height: calc((40 / 750) * 100vw);
		top: calc((25 / 750) * 100vw);
		left: calc((20 / 750) * 100vw);
	}
	.article_body .quote_box .quote_box_hd {
		font-size: calc((32 / 750) * 100vw);
		margin-bottom: calc((15 / 750) * 100vw);
	}
	.article_body .quote_box .quote_box_txt {
		font-size: calc((20 / 750) * 100vw);
	}

	.article_body .summary_box {
		margin-bottom: calc((40 / 750) * 100vw);
	}
	.article_body .summary_hd {
		padding: calc((10 / 750) * 100vw) calc((20 / 750) * 100vw);
		font-size: calc((32 / 750) * 100vw);
	}
	.article_body .summary_inner {
		padding: calc((25 / 750) * 100vw);
		border-width: 0 calc((10 / 750) * 100vw) calc((10 / 750) * 100vw) calc((10 / 750) * 100vw);
	}

	.article_body table,
	.article_body table th,
	.article_body table td,
	.article_body .basic_table,
	.article_body .basic_table th,
	.article_body .basic_table td {
		font-size: calc((28 / 750) * 100vw);
	}
	.article_body table,
	.article_body .basic_table {
		margin: calc((40 / 750) * 100vw) 0 calc((30 / 750) * 100vw);
	}
	.article_body table th,
	.article_body table td,
	.article_body .basic_table th,
	.article_body .basic_table td {
		padding: calc((15 / 750) * 100vw) calc((20 / 750) * 100vw);
	}
	.article_body .basic_table th {
	}
	.article_body .basic_table th:first-child,
	.article_body .basic_table tbody th {
/*		width: calc((200 / 750) * 100vw);*/
	}
	.article_body table caption,
	.article_body .basic_table caption {
		font-size: calc((20 / 750) * 100vw);
		margin-top: calc((15 / 750) * 100vw);
	}

	.article_body .scroll_table {
		margin: calc((40 / 750) * 100vw) 0;
		overflow-x: auto;
	}
	.article_body .scroll_table table {
		width: 700px;
		margin: 0;
	}

	.article_body .wj_article_img {
		margin: calc((40 / 750) * 100vw) 0 calc((30 / 750) * 100vw);
	}
	.article_body .wj_article_img .img_caption {
		font-size: calc((20 / 750) * 100vw);
		margin-top: calc((10 / 750) * 100vw);
	}

	.article_body .info_imgboxsp {
		margin-bottom: calc((20 / 750) * 100vw);
	}

	.article_body .bnr {
		margin: calc((60 / 750) * 100vw) auto;
	}

	.article_body .bnr + .bnr_caption {
		font-size: calc((28 / 750) * 100vw);
		margin: calc((30 / 750) * -100vw) auto calc((60 / 750) * 100vw);
	}

	.article_body ul,
	.article_body .basic_li {
		padding-left: calc((40 / 750) * 100vw);
/*		margin-bottom: 1.0em;*/
	}
	.article_body ul > li:before,
	.article_body .basic_li > li:before {
		left: calc((-40 / 750) * 100vw);
	}

	.article_body ol,
	.article_body .basic_ol {
		padding-left: calc((40 / 750) * 100vw);
	}
	.article_body ol > li:before,
	.article_body .basic_ol > li:before {
		left: calc((-40 / 750) * 100vw);
	}
	.article_body .col2 {
		display: block;
		margin: calc((40 / 750) * 100vw) 0;
	}
	.article_body .col2 > *:nth-child(even) {
		margin-left: 0;
	}

	.article_body .upper_roman_ol {
		padding-left: calc((50 / 750) * 100vw);
	}

	.article_body .btn_col2 {
		display: block;
	}
	.article_body .btn_col2 > * {
		width: 100%!important;
		margin: 0 0 calc((15 / 750) * 100vw)!important;
	}
	.article_body .btn_col2 > *:last-child {
		margin-bottom: 0!important;
	}

	.article_body .btn_box {
		margin: calc((40 / 750) * 100vw) 0;
	}
	.article_body .btn {
		max-width: none;
		margin: 0;
		padding: 0 calc((15 / 750) * 100vw);
		height: calc((120 / 750) * 100vw);
		font-size: calc((28 / 750) * 100vw);
		line-height: calc((120 / 750) * 100vw);
	}
	.article_body .btn:after {
		height: calc((25 / 750) * 100vw);
		width: calc((25 / 750) * 100vw);
		border-width: calc((6 / 750) * 100vw) calc((6 / 750) * 100vw) 0 0;
		right: calc((25 / 750) * 100vw);
		margin-top: calc((-12 / 750) * 100vw);
	}
	.article_body .btn span {
		font-size: 100%;
	}
	.article_body .btn:hover:after {
		right: calc((30 / 750) * 100vw);
	}

	.article_body .btn_normal {
		margin: calc((40 / 750) * 100vw) auto;
		border-width: calc((5 / 750) * 100vw);
		width: 100%;
	}

	.article_body .btn_caption {
		font-size: calc((26 / 750) * 100vw);
		margin: calc((10 / 750) * 100vw) 0 0;
	}

	#gnav .btn {
		background: unset;
		width: auto;
		max-width: auto;
		margin: auto;
		text-align: unset;
		height: auto;
		line-height: auto;
		position: absolute;
		box-shadow: unset;
		text-decoration: none;
	}
	.local_nav {
		width: 100%;
		margin: 0 auto;
	}
	#close {
		display: block;
	}

	.article_body .seminarPoint {
		margin: calc((15 / 750) * 100vw) auto;
		padding: 0 calc((10 / 750) * 100vw) calc((15 / 750) * 100vw);
		flex-wrap: wrap;
		flex-direction: column;
	}
	.article_body .seminarPoint > dt {
		margin-right: 0;
		margin-bottom: calc((10 / 750) * 100vw);
		width: 100%;
	}

	.article_body .cvBtn {
		width: calc((560 / 750) * 100vw);
		margin: calc((80 / 750) * 100vw) auto;
	}
	.article_body .cvBtn > a {
		font-size: calc((36 / 750) * 100vw);
		line-height: calc((120 / 750) * 100vw);
		padding: 0 calc((15 / 750) * 100vw);
		border-radius: calc((20 / 750) * 100vw);
	}

	.article_body #summary {
		padding: calc((15 / 750) * 100vw) calc((20 / 750) * 100vw);
	}
	.article_body #summary .summaryTitle {
		font-size: calc((36 / 750) * 100vw);
		margin-bottom: calc((20 / 750) * 100vw);
	}
	.article_body .summaryTable {
		margin-top: calc((20 / 750) * 100vw);
	}
	.article_body  .summaryTable tr {
		display: block;
		padding: calc((15 / 750) * 100vw) calc((10 / 750) * 100vw);
	}
	.article_body .summaryTable th,
	.article_body .summaryTable td {
		display: block;
		padding: 0;
	}
	.article_body .summaryTable th {
		width: 100%;
		margin-bottom: calc((20 / 750) * 100vw);
	}
	.article_body .summaryTable td {
	}
}
@media screen and (min-width: 767px) {
	.article_body a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
	}
}

.column .boxes_info {
	width: 980px;
	margin: 0 auto;
	padding: 20px 20px 40px;
	background: #33a8ed;
}
.column .boxes_info .inner {
	margin: 0 auto;
	width: 100%;
}
.column .box_info a {
	border: 1px solid #e7e7e7;
	background: #ffffff;
}

.column_nav {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}
.column_nav h3 {
	font-weight: normal;
	color: #fff;
}
.more_article a {
	font-size: 1.5rem;
	color: #fff;
}

@media screen and (max-width: 750px) {
	.column .boxes_info {
		width: 100%;
		margin: 0 auto;
		padding: 20px 20px 40px;
		background: #33a8ed;
	}
}


/* publish_area */
.article_body .publish_area {
	max-width: 740px;
	margin: 70px 0 50px;
	display: block;
}
.article_body .publish_area {
	border: 10px solid #34d1b5;
	transition: .3s ease;
	text-decoration: none;
}
.article_body .publish_area:hover {
	opacity: 0.8;
	border-color: #3cd4b9;
}
.article_body .publish_area .publish_inner {
	background: url("../../images/employer/information/column/bg_publish.jpg") no-repeat 0 center;
	position: relative;
	height: 280px;
}
.article_body .publish_area .txt_box {
	width: 450px;
	font-weight: 800;
	text-align: center;
	position: absolute;
	top: 30px;
	right: 0;
}
.article_body .publish_area .for_company {
	position: absolute;
	top: -40px;
	left: 50%;
	margin-left: -220px;
}
.article_body .publish_area .for_company span {
	color: #ffffff;
	background-color: #ff6640;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.6rem;
	font-weight: 800;
	text-align: center;
	line-height: 1.2;
	position: relative;
}
.article_body .publish_area .for_company span:after {
	content: "";
	display: inline-block;
	height: 26px;
	width: 46px;
	background: url("../../images/employer/information/column/parts_fuki.png") no-repeat 0 0;
	position: absolute;
	bottom: -7px;
	left: 50%;
	margin-left: -46px;
}
.article_body .publish_area .line_txt {
	color: #34d1b5;
	padding: 5px 20px;
	border-top: 1px solid #34d1b5;
	border-bottom: 1px solid #34d1b5;
}
.article_body .publish_area .publish_txt {
	font-size: 3.0rem;
	line-height: 1.2;
	margin: 5px 0 0;
	color: #333333;
}
.article_body .publish_area .publish_txt span {
	font-size: 1.8rem;
}
.article_body .publish_area .publish_li {
	margin: 10px 0 20px;
	list-style: none;
	display: flex;
	justify-content: center;
}
.article_body .publish_area .publish_li > li {
	border: 2px solid #ff6640;
	color: #ff6640;
	width: 140px;
	margin: 0 5px;
	font-size: 1.6rem;
	padding: 5px 0 3px 0;
}
.article_body .publish_area .publish_li > li::before {
	display: none;
}
.article_body .publish_area .publish_btn {
	display: block;
	margin: 0 auto;
	width: 260px;
	background-color: #ff6640;
	height: 50px;
	line-height: 50px;
	color: #ffffff;
	border-radius: 5px;
	text-decoration: none;
	background: -moz-linear-gradient(right, #ff6840, #ff4040); 
	background: -webkit-linear-gradient(right, #ff6840, #ff4040); 
	background: linear-gradient(to right, #ff6840, #ff4040); 
	box-shadow: 0 0 8px rgba(0,0,0,0.2);
	transition: .3s ease;
	position: relative;
}
.article_body .publish_area .publish_btn:after {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border: solid #ffffff;
	border-width: 2px 2px 0 0;
	transform: rotate(45deg);
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -4px;
}
.article_body .publish_area .publish_btn:hover {
	box-shadow: none;
}
@media screen and (min-width: 751px) and (max-width: 1040px) {
	.article_body .publish_area .for_company {
		margin-left: -180px;
	}
}
@media screen and (max-width: 750px) {
	.article_body .publish_area {
		width: 100%;
		border-width: 1.333vw;
	}
	.article_body .publish_area .publish_inner {
		background: url("../../images/employer/information/column/bg_publish_sp.jpg") no-repeat 0 top;
		background-size: 100% auto;
		height: auto;
		padding-top: 60vw;
		text-decoration: none;
	}
	.article_body .publish_area .for_company {
		position: absolute;
		top: 5.867vw;
		left: 50%;
		margin-left: 0;
	}
	.article_body .publish_area .for_company span {
		background-color: #ff6640;
		width: 35.2vw;
		height: 35.2vw;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		font-size: 4.8vw;
		text-align: center;
		line-height: 1.2;
		position: relative;
	}
	.article_body .publish_area .for_company span:after {
		height: 6.533vw;
		width: 11.467vw;
		bottom: -1.6vw;
		margin-left: -13.333vw;
		background-size: 100% auto;
	}
	.article_body .publish_area .txt_box {
		width: 100%;
		position: inherit;
		top: inherit;
		right: inherit;
		padding:0 2vw 4vw;
	}
	.article_body .publish_area .publish_txt {
		font-size: 5.6vw;
		line-height: 1.2;
		margin: 0.667vw 0 0;
	}
	.article_body .publish_area .publish_txt span {
		font-size: 4vw;
	}
	.article_body .publish_area .line_txt{
		font-size: 3.733vw;
		background: rgba(255,255,255,0.5);
		padding: 0.667vw 2.667vw;
		border-top-width: 0.2667vw;
		border-bottom-width: 0.2667vw;
	}
	.article_body .publish_area .publish_li {
		margin: 2.667vw 0 5.333vw;
	}
	.article_body .publish_area .publish_li li{
		border-width: 0.533vw;
		width: 36vw;
		margin: 0 1.333vw;
		font-size: 4.8vw;
		padding: 1.333vw 0 0.8vw;
	}
	.article_body .publish_area .publish_btn {
		max-width: 320px;
		width: 72vw;
		height: 13.867vw;
		line-height: 13.867vw;
		border-radius: 1.333vw;
		font-size: 3.733vw;
	}
	.article_body .publish_area .publish_btn:after {
		width: 1.333vw;
		height: 1.333;
		border-width: 0.533vw 0.533vw 0 0;
		right: 2.667vw;
		margin-top: -0.107px;
	}
}


/*------------------------------------------------------
	関連記事/人気記事
------------------------------------------------------*/

.related_area,
.related_area .related_items {
	max-width: 100%;
	margin: 0;
}
.related_area .related_items {
	margin: 20px 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 100%;
	gap: 2%;
}
.related_item {
	width: 32%;
/*	max-width: 230px;*/
	min-height: 280px;
	box-shadow: 0 0 8px rgba(0,0,0,0.2);
	position: relative;
	transition: .3s ease;
	margin-bottom: 20px;
}
.related_item a {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 2;
}
.related_item:hover {
	box-shadow: 0 0 1px rgba(0,0,0,0.2);
}
.related_item .related_thumb  {
	width: 100%;
	margin-bottom: 20px;
	height: auto;
/*	max-height: 130px;*/
	padding-top: 130px;
	overflow: hidden;
	position: relative;
}
.related_item .related_thumb img {
	width: 100%;
	height: 100%;
/*	min-height: auto;*/
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}
.related_item .related_title {
	font-weight: 800;
	padding: 0 10px;
	line-height: 1.4;
	margin-bottom: 5px;
}
.related_item .related_date {
	display: block;
	font-size: 1.3rem;
	color: #aaaaaa;
	padding: 0 10px;
}

.arrow_link {
	text-align: right;
	margin: 10px 0;
}
.arrow_link a {
	text-align: right;
	color: #33a8ed;
	position: relative;
}
.arrow_link a:before {
	content: "\03e";
	display: inline;
	margin-right: 5px;
}
/*
.recommend_area {
	margin-bottom: 40px;
}
.recommend_item {
	background-color: #ffffff;
	box-shadow: 0 0 6px rgba(0,0,0,0.2);
	position: relative;
	transition: .3s ease;
	margin-bottom: 15px;
	display: flex;
	padding: 10px;
}
.recommend_item a {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
.recommend_item:hover {
	box-shadow: 0 0 1px rgba(0,0,0,0.4);
}
.recommend_item .recommend_thumb {
	width: 80px;
	height: 80px;
	margin-right: 10px;
	align-items: flex-start;
	position: relative;
	overflow: hidden;
}
.recommend_item .recommend_thumb img {
	width: auto;
	height: 80px;
	min-height: inherit;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.recommend_item .recommend_text_area {
	flex: 1;
}
.recommend_item .recommend_title {
	display: block;
	font-size: 1.3rem;
	font-weight: 800;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow-y: hidden;
}
.recommend_item .recommend_date {
	font-size: 1.3rem;
	color: #aaaaaa;
}
*/
.side_banner {
	margin: 0 auto 30px;
	text-align: center;
}
.side_banner img {
	vertical-align: bottom;
	width: auto;
	max-width: 100%;
}
.side_banner a {
	transition: opacity .3s ease;
}
.side_banner a:hover {
	opacity: 0.8;
}
@media screen and (min-width: 750px){
	.entry_cta2 {
		position: -webkit-sticky;
		position: sticky;
		top: 130px;
		display: block;
	}
}

@media screen and (max-width: 767px) {
	.related_area,
	.related_area .related_items {
		width: 100%;
	}
	.related_area .related_items {
		justify-content: center;
		padding: 0;
	}	
	.related_item {
		width: 48%;
		max-width: none;
		min-height: auto;
		padding-bottom: calc((15 / 750) * 100vw);
		box-shadow: 0 0 8px rgba(0,0,0,0.2);
		position: relative;
		transition: .3s ease;
		margin: 0 0 calc((15 / 750) * 100vw);
	}
	.related_item:nth-child(even) {
		margin-left: 2%;
	}
	.related_item .related_thumb  {
		margin-bottom: calc((20 / 750) * 100vw);
		height: calc((185 / 750) * 100vw);
		max-height: none;
	}
	.related_item .related_title {
		font-size: calc((28 / 750) * 100vw);
		padding: 0 calc((15 / 750) * 100vw);
		margin-bottom: calc((10 / 750) * 100vw);
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 4;
		overflow-y: hidden;
	}
	.related_item .related_date {
		font-size: calc((20 / 750) * 100vw);
		padding: 0 calc((15 / 750) * 100vw);
	}

	.arrow_link {
		margin: 0;
		font-size: calc((28 / 750) * 100vw);
	}
	.arrow_link a {
	}
	.arrow_link a:before {
		margin-right: calc((10 / 750) * 100vw);
	}

	.side_banner {
		margin-bottom: 0;
	}

	.recommend_item {
		margin-bottom: calc((20 / 750) * 100vw);
		padding: calc((15 / 750) * 100vw);
	}
	.recommend_item .recommend_thumb {
		width: calc((160 / 750) * 100vw);
		height: calc((160 / 750) * 100vw);
		margin-right: calc((20 / 750) * 100vw);
	}
	.recommend_item .recommend_thumb img {
		height: calc((160 / 750) * 100vw);
	}
	.recommend_item .recommend_title {
		font-size: calc((28 / 750) * 100vw);
	}
	.recommend_item .recommend_date {
		font-size: calc((28 / 750) * 100vw);
	}
}

.index_content_title {
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 30px;
	position: relative;
	padding-left: 60px;
}
.index_content_title::before {
	background-color: #077aff;
	content: "";
	width: 50px;
	height: 50px;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	box-shadow: 0 3px 0 #066ce0ff;
	z-index: 1;
}
.index_content_title::after {
	content: "";
	width: 18px;
	height: 36px;
	border-bottom: 9px solid #ecf0f1;
	border-right: 9px solid #ecf0f1;
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	box-shadow: 3px 3px 0 #066ce0ff;
	z-index: 2;
}
@media screen and (max-width: 767px) {
	.index_content_title {
		font-size: calc((20 / 375) * 100vw);
		margin-bottom: calc((15 / 375) * 100vw);
		padding-left: calc((35 / 375) * 100vw);
	}
	.index_content_title::before {
		width: calc((30 / 375) * 100vw);
		height: calc((30 / 375) * 100vw);
		box-shadow: 0 calc((1.5 / 375) * 100vw) 0 #066ce0ff;
	}
	.index_content_title::after {
		width: calc((9 / 375) * 100vw);
		height: calc((18 / 375) * 100vw);
		border-bottom-width: calc((4 / 375) * 100vw);
		border-right-width: calc((4 / 375) * 100vw);
		left: calc((11 / 375) * 100vw);
		box-shadow: calc((2 / 375) * 100vw) calc((2 / 375) * 100vw) 0 #066ce0ff;
	}
}

.recommend_area {
	max-width: 100%;
	margin-bottom: 40px;
}
.recommend_area .recommend_items {
	margin: 20px 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 100%;
	gap: 2%;
}
.recommend_item {
	display: flex;
	flex-direction: column;
	width: calc(25% - (2% * 3 / 4));
	box-shadow: 0 0 8px rgba(0,0,0,0.2);
	position: relative;
	transition: .3s ease;
	padding-bottom: 10px;
}
.recommend_item a {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 2;
}
.recommend_item:hover {
/*	box-shadow: 0 0 1px rgba(0,0,0,0.2);*/
}
.recommend_item .recommend_thumb  {
	width: 100%;
	margin: 0;
	height: auto;
	padding-top: 56.25%;
	overflow: hidden;
	position: relative;
}
.recommend_item .recommend_thumb img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}
.recommend_item .recommend_title {
	font-weight: 800;
	padding: 0 10px;
	line-height: 1.4;
}
.recommend_item .recommend_description {
	display: none;
}
.recommend_item .recommend_info {
	display: flex;
	justify-content: flex-start;
	gap: 15px;
	padding: 0 10px;
	margin-top: 20px;
}
.recommend_item .recommend_date {
	display: block;
	font-size: 1.3rem;
	color: #aaaaaa;
	padding: 0 0 0 24px;
	background: url("../../images/employer/information/column/ico_date.svg") no-repeat 0 center;
	background-size: 16px;
}
.recommend_item .recommend_category {
	display: block;
	font-size: 1.4rem;
	padding: 0;
}
@media screen and (min-width: 767px) and (max-width: 1099px) {
	.recommend_area {
		max-width: 100%;
		margin-bottom: 40px;
	}
	.recommend_area .recommend_items {
		gap: 20px 2%;
	}
	.recommend_item {
		width: calc(50% - (2%  / 2));
	}
}
@media screen and (max-width: 767px) {
	.recommend_area {
		margin-bottom: 0;
		order: 2;
	}
	.recommend_items {
		border-top: calc((1 / 375) * 100vw) dashed #000000;
		flex-direction: column;
	}
	.recommend_item {
		width: 100%;
		padding: calc((10 / 375) * 100vw) calc((5 / 375) * 100vw);
		border: none;
		border-bottom: calc((1 / 375) * 100vw) dashed #000000;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		gap: calc((10 / 375) * 100vw);
		box-shadow: none;
	}
	.recommend_item .cv_arrow::before {
		border: none;
	}
	.recommend_item .recommend_thumb {
		width: 34.5%;
		padding-top: 23%;
		flex: 0 0 auto;
	}
	.recommend_item .recommend_text_area {
		flex: 1;
	}
	.recommend_item .recommend_title {
		font-size: calc((14 / 375) * 100vw);
		padding: 0;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow-y: hidden;
	}
	.recommend_item .recommend_description {
		font-size: calc((12	 / 375) * 100vw);
		word-break: break-all;
		margin-top: calc((5 / 375) * 100vw);
		padding: 0;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow-y: hidden;
	}
	.recommend_item .recommend_info {
		padding: 0;
		gap: calc((10 / 375) * 100vw);
		margin-top: calc((15 / 375) * 100vw);
	}
	.recommend_item .recommend_date {
		font-size: calc((10 / 375) * 100vw);
		padding-left: calc((18 / 375) * 100vw);
		background-size: calc((14 / 375) * 100vw);
	}
	.recommend_item .recommend_category {
		font-size: calc((10	 / 375) * 100vw);
	}
}

.latest_area {
	margin-bottom: 40px;
}
.latest_items {
	border-top: 1px dashed #000000;
}
.latest_item {
	position: relative;
	transition: .3s ease;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 20px 10px;
	border-bottom: 1px dashed #000000;
	gap: 10px;
}
.latest_item a {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 2;
}
.latest_item:hover {
	opacity: 0.8;
}
.latest_item .latest_thumb {
	width: 30%;
	padding-top: 18%;
	position: relative;
	overflow: hidden;
	flex: 0 1 auto;
}
.latest_item .latest_thumb img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}
.latest_item .latest_text_area {
	flex: 1;
}
.latest_item .latest_title {
	display: block;
	font-size: 1.8rem;
	font-weight: 800;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow-y: hidden;
}
.latest_item .latest_description {
	font-size: 1.4rem;
	word-break: break-all;
	margin-top: 5px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow-y: hidden;
}
.latest_item .latest_info {
	display: flex;
	justify-content: flex-start;
	gap: 15px;
	margin-top: 20px;
}
.latest_item .latest_date {
	font-size: 1.3rem;
	color: #aaaaaa;
	padding: 0 0 0 24px;
	background: url("../../images/employer/information/column/ico_date.svg") no-repeat 0 center;
	background-size: 16px;
}
.latest_item .latest_category {
	font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
	.latest_area {
		margin-bottom: 0;
		order: 2;
	}
	.latest_items {
		border-top-width: calc((1 / 375) * 100vw);
	}
	.latest_item {
		padding: calc((10 / 375) * 100vw) calc((5 / 375) * 100vw);
		border-bottom-width: calc((1 / 375) * 100vw);
		gap: calc((10 / 375) * 100vw);
	}
	.latest_item .latest_thumb {
		width: 34.5%;
		padding-top: 23%;
	}
	.latest_item .latest_text_area {
		flex: 1;
	}
	.latest_item .latest_title {
		font-size: calc((14 / 375) * 100vw);
	}
	.latest_item .latest_description {
		font-size: calc((12	/ 375) * 100vw);
		margin-top: calc((5 / 375) * 100vw);
	}
	.latest_item .latest_info {
		gap: calc((10 / 375) * 100vw);
		margin-top: calc((15 / 375) * 100vw);
	}
	.latest_item .latest_date {
		font-size: calc((10 / 375) * 100vw);
		padding-left: calc((18 / 375) * 100vw);
		background-size: calc((14 / 375) * 100vw);
	}
	.latest_item .latest_category {
		font-size: calc((10	 / 375) * 100vw);
	}
}

.pager {
	margin: 20px auto 0;
	text-align: center;
	font-family:  "Hiragino Maru Gothic W4 JIS2004", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue";
	font-size: 1.6rem;
	font-weight: 800;
}
.pager > * {
	margin: 0 10px;
}
.pager > .current {
	color: #ffe001;
}
@media screen and (max-width: 767px) {
	.pager {
		font-size: calc((32 / 750) * 100vw);
		margin-top: calc((30 / 750) * 100vw);
	}
	.pager > * {
		margin: 0 calc((10 / 750) * 100vw);
	}
}