@charset "UTF-8";

/* ========== リセット ↓ ========== */
html {
	margin: 0;
	padding: 0;
	font-size: 62.5%;
}

body {
	margin: 0;
	padding: 0;
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ ゴシック", "MS Gothic", sans-serif;
	font-size: 1.6rem;
	color: #333;
	text-align: left;
	line-height: 2;
	-webkit-text-size-adjust: 100%;
}

/* IE用 */
main {
	display: block;
}

p {
	margin: 0;
	padding: 0;
	font-weight: normal;
}

a {
	text-decoration: none;
	color: #333;
}

img {
	height: auto;
}

figure {
	margin: 0;
	padding: 0;
}

ul, ol {
	margin: 0;
	padding: 0;
}

ul li, ol li {
	list-style-type: none;
	padding: 0;
}

dl,
dt,
dd {
	margin: 0;
	padding: 0;
}
dl {
	display: flex;
}

table, tr, th, td {
	font-weight: normal;
	margin: 0;
	padding: 0;
	border-collapse: collapse;
}
/* ========== リセット ↑ ========== */

/* ========== 共通設定 ↓ ========== */
* {
	box-sizing: border-box;
}
main {
	padding-top: 106px;
}
/* 見出し */
.pageTitle {
	font-size: 2.0em;
	text-align: center;
	margin-top: 50px;
}
h1 {
	font-size: 1.8em;
	line-height: 1.5;
	text-indent: 0.5em;
}
h1::after {
	content: "";
	width: 100%;
	height: 10px;
	display: block;
}
h2 {
	padding-left: 10px;
	font-size: 1.5em;
	font-weight: normal;
	/* margin-left: 20px; */
}
/* リンク設定 */
a:hover {
	text-decoration: underline;
}
/* ----- 色設定 ↓ ----- */
/* ヘッダ、レスポンシブメニュー、メニューボタン */
header {
	background: #ffc17a;
}
@media screen and (max-width: 678px) {
	#nav-toggle,
	header .nav_menu {
		background: #ffc17a;
	}
	/* レスポンシブメニュー項目 */
	header .nav_menu li:hover {
		background: #f5f5dc;
	}
}
/* フッタ、h2見出し */
footer {
	background: #f69355;
}
h2 {
	border-left: 10px solid #f69355;
}
/* 表 */
.table_list dl:nth-child(even) {
	background: #fbf1d6;
}
/* 表ヘッダ、ページ内部リンク */
.table_list dl.table_head,
.offer_table dt,
.inner_link li {
	background: #ffe087;
}
/* 見出し */
h1::after {
	background: linear-gradient(90deg,#ffc457,#fff);
}
/* ----- 色設定 ↑ ----- */

/* ----- ヘッダ ↓ ----- */
header {
	/* 固定設定 */
	position: fixed;
	top: 0;
	height: 106px;
	z-index: 800;
	width: 100%;
	box-shadow: 0 0 8px #555;
}
header > div {
	display: flex;
	justify-content: space-between;
	max-width: 1100px;
	margin: 0 auto;
	padding: 10px 20px;
	height: 100%;
}
header .sitename a {
	display: block;
}
header .sitename img {
	margin: calc((86px - 75px) / 2) 0;
}
header nav ul {
	display: flex;
}
header nav li {
	margin: 0 10px;
}
header nav a {
	display: block;
	text-align: center;
}
header nav p {
	font-weight: bold;
	font-size: 2.0rem;
	line-height: 1;
	position: relative;
}
header nav p::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #333;
	transform: scale(0,1);
	transition: transform 0.5s;
	transform-origin: left;
}
header nav a:hover {
	text-decoration: none;
}
header nav a:hover p::after {
	transform: scale(1,1);
}
/* ----- ヘッダ ↑ ----- */

/* ----- フッタ ↓ ----- */
footer {
	padding-top: 20px;
}
footer .footer_content {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}
footer .footer_nav {
	display: flex;
	margin: 0 auto;
	justify-content: center;
}
footer .footer_nav li::after {
	content: "｜";
	margin: 0 1em;
}
footer .footer_nav li:last-child::after {
	content: none;
}
/* 著作権 */
footer .copyright {
	text-align: center;
	font-size: 1.4rem;
	padding: 10px 0;
}
/* ----- フッタ ↑ ----- */

/* タブレット以下サイズのみ表示 */
.res_display {
	display: none;
}
.res_display_flex {
	display: none;
}
/* PCサイズのみ表示 */
.com_display {
	display: block;
}
.com_display_flex {
	display: flex;
}
/* コンテンツ */
.content_area {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
	padding-top: 106px;
	margin-top: -106px;
	margin-bottom: 50px;
}
/* フレックススタイル */
.flex_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
/* 上部余白設定 */
.m_t16 {
	margin-top: 16px;
}
/* リスト設定 */
ul.disc_list,
ol.num_list {
	margin-left: 20px;
}
ul.disc_list li {
	list-style-type: disc;
}
ol.num_list li {
	list-style-type: decimal;
}
/* 図 */
figure {
	text-align: center;
}
figure.border_fig {
	padding: 0 5px;
	margin-bottom: 10px;
}
/* 画像サイズ（400x267）の場合 */
figure.border_fig img{
	border: 1px solid #aaa;
	display: block;
	margin: 0 auto;
	max-width: calc(400px + 2px);
}
/* 大きめテキスト */
.large_text {
	font-size: 2.0rem;
}
/* ページ最初の文 */
.first_sentence {
	margin-top: 16px;
	margin-bottom: 32px;
	padding: 0 20px;
}
/* リンク */
.link_pdf::after {
	content: url(../images/icon_pdf.png);
	display: inline-block;
	padding: 5px 0 0 5px;
	vertical-align: middle;
}
/* ページ上部へ戻るボタン */
.pageTop {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: #fff;
	height: 48px;
	width: 48px;
	border-radius: 50%;
	/* 初期設定↓（初回読み込み時に表示しない） */
	display: none;
}
/* ========== 共通設定 ↑ ========== */

/* ========== 各ページ設定 ↓ ========== */
/* キービジュアル */
.topImage {
	width: 100%;
	max-height: 600px;
}
.topImage img {
	width: 100%;
	max-height: 600px;
	object-fit: cover;
	object-position: 50% 70%;
	display: block;
}
/* 事業一覧表 */
.table_list {
	max-width: calc(678px - 40px);
	margin: 0 auto;
}
.table_list dl {
	width: 100%;
	border: 1px solid #333;
	border-bottom: none;
}
.table_list dl.table_head {
	border-radius: 10px 10px 0 0;
}
.table_list dl:last-child {
	border-radius: 0 0 10px 10px;
	border-bottom: 1px solid #333;
}
.table_list dt {
	width: 40%;
	padding: 5px 15px;
	border-right: 1px solid #333;
}
.table_list dd {
	width: 60%;
	padding: 5px 20px;
}
.table_list a::after {
	content: '▼';
	display: inline-block;
	padding-left: 5px;
}
/* 事業紹介 */
.jigyo_box {
	margin-top: 16px;
	margin-bottom: 32px;
}
.jigyo_box p {
	width: 50%;
}
.jigyo_box figure {
	width: 50%;
}
/* ページ内リンク */
ul.inner_link {
	display: flex;
	flex-wrap: wrap;
	margin: 20px auto 0;
	width: 80%;
}
.inner_link li {
	border-radius: 10px;
	margin: 5px;
}
.inner_link li a {
	padding: 5px 10px;
	display: block;
}
.inner_link li a::after {
	content: '▼';
	display: inline-block;
	padding-left: 5px;
}
/* 求人情報 */
.offer_table {
	position: relative;
	margin-bottom: 40px;
}
.offer_table dl {
	position: relative;
	width: 100%;
	border: 1px solid #666;
	border-bottom: none;
}
.offer_table dl:last-child {
	border-bottom: 1px solid #666;
}
.offer_table dt {
	width: 20%;
	padding: 5px;
	border-right: 1px solid #666;
}
.offer_table dd {
	width: 80%;
	padding: 5px;
}
/* お知らせ */
.info_box dt {
	margin-right: 15px;
}
/* ========== 各ページ設定 ↑ ========== */

/* ========== レスポンシブ設定 ↓ ========== */
@media screen and (max-width: 904px) {
	/* 事業紹介 */
	.jigyo_box p {
		/* width: 100%; */
		width: calc(100% - 412px - 5px);
		margin-right: 5px;
	}
	.jigyo_box figure {
		width: auto;
	}
}
/* タブレット（幅678px以下） */
@media screen and (max-width: 678px) {
	/* メニュー表示、スクロール制御 */
	.scroll_prevent {
		position: fixed;
		z-index: -10;
		width: 100%;
		height: 100%;
	}
	/* タブレット以下サイズのみ表示 */
	.res_display {
		display: block;
	}
	.res_display_flex {
		display: flex;
	}
	/* PCサイズのみ表示 */
	.com_display {
		display: none;
	}
	.com_display_flex {
		display: none!important;
	}
	/* フレックススタイル */
	.flex_box {
		display: block;
	}

	/* ----- ヘッダ ↓ ----- */
	header {
		height: 80px;
	}
	/* サイトタイトル */
	header .sitename img {
		height: 48px;
		margin: calc((60px - 48px) / 2) 0;
	}
	/* ハンバーガーメニュー設定 */
	#nav-toggle {
		display: block;
		width: 40px;
		height: 40px;
		z-index: 1000;
		cursor: pointer;
		border: 1px solid #333;
		border-radius: 10%;
		margin-top: 10px;
		position: fixed;
		top: 10px;
		right: 10px;
	}
	#nav-toggle span {
		width: 80%;
		display: block;
		height: 1px;
		position: absolute;
		left: 10%;
		background: #333;
		transition: transform 0.3s ease,
					top 0.5s ease,
					opacity 0.3s ease;
	}
	#nav-toggle span:nth-child(1) {
		top: calc(10px - 1px);
	}
	#nav-toggle span:nth-child(2) {
		top: calc(20px - 1px);
	}
	#nav-toggle span:nth-child(3) {
		top: calc(30px - 1px);
	}
	.open #nav-toggle span:nth-child(1) {
		top: 20px;
		transform: rotate(45deg);
	}
	.open #nav-toggle span:nth-child(2) {
		opacity: 0;
	}
	.open #nav-toggle span:nth-child(3) {
		top: 20px;
		transform: rotate(-45deg);
	}
	header .nav_menu {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		/* height: calc(60px * 3 + 40px + 15px); */
		height: 100%;
		z-index: 790;
		padding: 40px 25px 15px 25px;
		transform: translateY(-100%);
		transition: transform 0.8s ease;
	}
	.open header .nav_menu {
		transform: translateY(0) !important;
	}
	header .nav_menu li {
		padding: 10px 0 10px 10px;
		margin-right: 60px;
		transition: background 0.2s;
	}
	header .nav_menu a {
		font-size: 2.0rem;
		display: block;
	}
	header .nav_menu a:hover {
		text-decoration: none;
	}
	header .nav_menu img {
		width: 36px;
		margin-right: 5px;
		vertical-align: middle;
	}
	/* ----- ヘッダ ↑ ----- */
	main {
		padding-top: 80px;
	}
	/* コンテンツ */
	.content_area {
		padding-top: 80px;
		margin-top: -80px;
	}
	/* 事業紹介 */
	.jigyo_box p {
		width: 100%;
	}
	.jigyo_box figure {
		width: 100%;
	}
	/* ページ最初の文 */
	.first_sentence {
		padding: 0px;
	}
	/* ----- 一覧表 ↓ ----- */
	.table_list dl {
		display: block;
	}
	.table_list dt{
		width: 100%;
		border: none;
		/* padding-top: 0; */
		padding-bottom: 0;
	}
	.table_list dd {
		width: 100%;
		padding-top: 0;
		/* padding-bottom: 0; */
	}
	/* ----- 一覧表 ↑ ----- */
	/* ----- 求人情報表 ↓ ----- */
	.offer_table dl {
		display: block;
		/* border: none; */
	}
	/* .offer_table dl:last-child {
		border-bottom: none;
	} */
	.offer_table dt {
		width: 100%;
		border-right: none;
	}
	.offer_table dd {
		width: 100%;
		padding-bottom: 15px;
	}
	/* ----- 求人情報表 ↑ ----- */
}
@media screen and (max-width: 492px) {
	/* 図 */
	.border_fig img {
		width: 100%;
	}
	/* お知らせ */
	.info_box dl {
		display: block;
	}
	.info_box dd {
		margin-left: 15px;
	}
}
@media screen and (max-width: 360px) {
	/* サイトタイトル */
	header .sitename img {
		height: 40px;
		margin: calc((60px - 40px) / 2) 0;
	}
}
/* ========== レスポンシブ設定 ↑ ========== */
