@charset "utf-8";


/*cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("theme.css");
@import url("inview.css");


/*animation11のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {right: -200px;}
	100% {right: 0px;}
}


/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html {
	font-size: clamp(13px, 0.29vw + 11.9px, 16px);	/*画面幅375px〜1400pxの間で、13px〜16pxに可変。下でrem管理しているものも連動します。*/
	overflow-x: visible;
}
body {
	margin: 0;padding:0;
	font-family: var(--base-font);	/*フォント指定。theme.cssのbase-fontを読み込みます。*/
	-webkit-text-size-adjust: none;
	background: var(--bg-color);	/*背景色。theme.cssのbg-colorを読み込みます。*/
	color: var(--bg-inverse-color);	/*文字色。theme.cssのbg-inverse-colorを読み込みます。*/
	line-height: 2;		/*行間*/
	overflow-x: hidden;
}
/*一覧ページの背景色*/
body.list {
	background: var(--primary-light-color);	/*背景色。theme.cssのprimary-light-colorを読み込みます。*/
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*他*/
input {font-size: 1rem;}


/*section
---------------------------------------------------------------------------*/
section {
	padding: var(--content-space-v, var(--content-space-l)) var(--content-space-l);	/*theme.cssの値を読み込みます。前半2つは上下への余白。-vがない場合は-lを読み込みます。最後の1つは左右への余白。*/
}

/*section内の最初と最後の要素のマージンはリセット（余白はsectionのpaddingで管理する為）*/
section > :first-child {margin-top: 0;}
section > :last-child {margin-bottom: 0;}

/*見出しの上のマージンもリセット（同上。ブロックの中に入っていてもsectionの余白が変わらないようにする為）*/
main h2 {margin-top: 0;}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	filter: brightness(1.1);	/*少しだけ明るくする*/
	text-decoration: none;
}


/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	animation: opa1 0.2s 0.2s both;  /*0.2(2つ目の数字)秒待機後、0.2(1つ目の数字)秒かけてフェードイン*/
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダー*/
header {
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 0 var(--content-space-s) 1rem;	/*上の余白はなし、左右はtheme.cssのcontent-space-sを読み込み、下に1文字分の余白。*/
	background: #fff;	/*背景色*/
}

/*h1テキスト*/
header h1 {
	font-size: 0.7rem;	/*文字サイズ70%*/
	width: 100%;
	font-weight: normal;
}

/*ロゴ画像*/
header .logo {margin: 0;flex-shrink: 0;}
header .logo img {
	display: block;
	width: 220px;	/*ロゴの幅。お好みで。*/
}


/*メニューオーバーレイ（メニュー領域外クリックで閉じる用）
---------------------------------------------------------------------------*/
#menubar-overlay {
	display: none;
	position: fixed;
	z-index: 99;	/*#menubar(100)の下、ページの上*/
	top: 0;left: 0;
	width: 100%;height: 100%;
	background: rgba(0,0,0,0.3);	/*半透明の黒。お好みで濃さを調整。*/
}

/*noscroll（メニュー表示中のスクロール禁止用）*/
body.noscroll {
	overflow: hidden;
}


/*アイコンを上に置くメニュー（「お気に入り」「閲覧履歴」）
---------------------------------------------------------------------------*/
#menubar > nav > ul li.stack {
	text-align: center;
	line-height: 1.3;	/*行間を狭く*/
}
#menubar > nav > ul li.stack i {
	display: block;			/*アイコンを独立した行に*/
	margin-bottom: 0.2rem;	/*文字との間に空けるスペース*/
	color: var(--primary-color);	/*アイコン色。theme.cssのprimary-colorを読み込みます。*/
	font-size: 1.5rem;		/*アイコンサイズ。*/
}


/*大きな端末で見たメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
.large-screen #menubar > nav > ul {
	display: flex;
	align-items: center;
	gap: 1.5rem;		/*メニュー同士に空けるスペース。1.5文字分。*/
	font-size: 0.8rem;	/*文字サイズ80%*/
	font-weight: bold;	/*太字*/
}

/*メニュー１個あたりの設定*/
.large-screen #menubar li a {
	display: block;text-decoration: none;
}


/*大きな端末で見た場合のドロップダウンメニュー
---------------------------------------------------------------------------*/
/*ドロップダウン全体*/
.large-screen #menubar ul ul {
	text-shadow: none;
	position: absolute;z-index: 100;
	animation: opa1 0.5s 0.1s both;	/*0.1秒待機後、0.5秒かけてフェードイン表示*/
}

/*メニュー１個あたり*/
.large-screen #menubar ul ul a {
	background: #fff;		/*背景色*/
	padding: 0.2rem 1rem;	/*上下に0.2文字分、左右に1文字分の余白*/
	border-radius: 5px;		/*角を丸く*/
	margin-top: 2px;		/*メニュー同士の間に空けるスペース*/
	border: 1px solid var(--bg-inverse-color);	/*枠線の幅、線種、最後は色の指定でtheme.cssのbg-inverse-colorを読み込みます。。*/
}


/*小さな端末で見たメニュー（開閉メニュー）
---------------------------------------------------------------------------*/
/*メニューブロック共通*/
.small-screen #menubar {
	animation: animation1 0.2s both;
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 50%;	/*画面の半分の幅*/
	height: 100%;
	padding: 100px var(--content-space-l) 50px;	/*上下に100px、左右にtheme.cssのcontent-space-lで指定しているサイズ、下に50pxの余白*/
	background: var(--bg-color);	/*背景色。theme.cssのbg-colorを読み込みます。*/
	color: var(--bg-inverse-color);	/*文字色。theme.cssのbg-inverse-colorを読み込みます。*/
}

.small-screen #menubar {display: none;}

	/*画面幅700px以下の追加指定*/
	@media (max-width:700px) {

	.small-screen #menubar {
		width: 100%;	/*幅を100%に*/
	}

	}/*追加指定ここまで*/


/*メニュー１個あたり*/
.small-screen #menubar a,
.small-screen .stack {
	display: block;text-decoration: none;
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける*/
	padding: 1rem 2rem;		/*メニュー内の余白。上下に１文字分、左右に２文字分。*/
	border: 1px solid var(--bg-border-color);	/*枠線の幅、線種、var以降は色の指定でtheme.cssのbg-border-colorを読み込みます。*/
	border-radius: 5px;		/*角を少し丸くする*/
}

/*お問い合わせ（背景をなくして、枠線をつける）*/
.small-screen #menubar .btn a {
	text-align: center;	/*テキストをセンタリング*/
}

/*子メニュー（ドロップダウンメニュー）*/
.small-screen #menubar ul ul a {
	margin-left: 2rem;	/*左に２文字分のスペースを空ける*/
	padding: 0.5rem 1.5rem;	/*メニュー内の余白。上下に0.5文字分、左右に1.5文字分。*/
}

/*ドロップダウンのアイコン*/
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f078";		/*このアイコンを使う*/
	margin-right: 1em;		/*アイコンとメニューテキストとの間に空けるスペース。1文字分。*/
	font-size: 0.7em;		/*アイコンサイズ。70%*/
	vertical-align: middle;
	display: inline-block;
	line-height: 1;
}

/*ドロップダウン共通（デフォルトで非表示。チラつかないよう念の為。）
---------------------------------------------------------------------------*/
#menubar ul ul {display: none;}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
#menubar_hdr {
	display: none; /* デフォルトは非表示 */
	animation: opa1 0s 0.2s both;
	cursor: pointer;
	position: fixed;
	z-index: 101;
	right: 0px;	/*右からの配置場所*/
	top: 0px;	/*上からの配置場所*/
	width: 70px;	/*ボタンの幅*/
	height: 70px;	/*ボタンの高さ*/
	background: var(--primary-color);	/*背景色。theme.cssのprimary-colorを読み込みます。*/
	border-bottom-left-radius: 10px;	/*左下の角だけ丸くする*/
}

/*ハンバーガーアイコンの線*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;
	position: absolute;
	left: 18px;
	width: 35px;
	height: 2px;		/*線の高さ*/
	background: var(--primary-inverse-color);	/*線の色。theme.cssのprimary-inverse-colorを読み込みます。*/
}

/*バツ印が出ている時のボタン色*/
#menubar_hdr.ham {
	background: #ff0000;	/*背景色*/
}
#menubar_hdr.ham span {
	background: #fff;	/*線の色*/
}

/*以下変更不要*/
#menubar_hdr span:nth-of-type(1) {
	top: 24px;
}
#menubar_hdr span:nth-of-type(2) {
	top: 34px;
}
#menubar_hdr span:nth-of-type(3) {
	top: 44px;
}
#menubar_hdr.ham span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
}
#menubar_hdr.ham span:nth-of-type(2) {
	opacity: 0;
}
#menubar_hdr.ham span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
}

/*小さな画面での設定*/
.small-screen #menubar_hdr {
	display: flex;
}


/*メイン画像
---------------------------------------------------------------------------*/
/*メイン画像全体を囲むブロック*/
.mainimg {
	width: 100%;
	position: relative;
	overflow: hidden;
	display: grid;
	align-content: center;			/*中身を上下中央に配置*/
	min-height: max(20rem, 33vw);	/*最低の高さ。中身が増えればここから自動で高くなります。*/
	padding: 2rem 0;				/*上下に空けるスペース。2文字分。*/
}

/*画像（変更不要）*/
.mainimg picture {
	display: block;
	position: absolute;
	inset: 0;
}
.mainimg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/*メイン画像上のテキスト
---------------------------------------------------------------------------*/
/*テキストブロックの基本設定（中央配置がデフォルト）*/
.mainimg .text {
	position: relative;z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin: 0 var(--content-space-l);	/*余白。上下は0、左右にはtheme.cssのcontent-space-lのサイズを読み込みます。*/
	-webkit-text-stroke: 0.4em #fff;	/*ここが縁の幅と色の指定*/
	paint-order: stroke fill;
}

/*テキストブロックを左に配置させたい場合*/
.mainimg .text.left {
	align-items: flex-start;
	text-align: left;
}

/*テキストブロックを右に配置させたい場合*/
.mainimg .text.right {
	align-items: flex-end;
	text-align: right;
}

/*h2（大きな文字）*/
.mainimg .text h2 {
	margin: 0;padding: 0;
	color: var(--primary-color);	/*文字色。theme.cssのprimary-colorを読み込みます。*/
	font-weight: 500;	/*文字の太さ。200〜900まで指定できます。大きいほど太字に。*/
	font-size: max(18px, 2.8vw);	/*文字サイズ。18pxより小さくならない。3は可変サイズなのでお好みで。*/
	line-height: 1.5;		/*行間を狭く*/
}

/*p（説明テキスト部分）*/
.mainimg .text p {
	font-size: 0.9rem;	/*文字サイズ90%*/
	-webkit-text-stroke-width: 0.25em;	/*縁の幅だけ細めに上書き*/
}


/*contents
---------------------------------------------------------------------------*/
#contents {
	flex: 1;
	min-height: 0;
}


/*トップページの検索ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
#search {
	padding-inline: var(--content-space-l);
	position: relative;z-index: 1;
	margin-top: 2rem;	/*上に2文字分のスペースを空ける*/
}

/*メイン画像の中に置いた場合*/
.mainimg #search {
	padding: 0;
	margin: 1.5rem var(--content-space-l) 0;	/*上に1.5文字分、左右はコンテンツと同じスペースを空ける。*/
	max-width: 68vw;	/*検索ボックスの最大幅。68%。*/
}

	/*画面幅600px以下の追加指定*/
	@media (max-width:600px) {

	/*メイン画像の中に置いた場合*/
	.mainimg #search {
		max-width: 100%;
	}

	}/*追加指定ここまで*/


/*枠線と背景のブロック*/
#search .box {
	padding: 1.5rem;	/*ブロック内の余白。1.5文字分。*/
	border-radius: 5px;	/*角を少しだけ丸く*/
	background: #fff;	/*背景色*/
	border: 1px solid var(--bg-border-color);	/*枠線の幅、線種、var以降は色の指定でtheme.cssのbg-border-colorを読み込みます。*/
}


/*検索ブロック内のフォーム
---------------------------------------------------------------------------*/
/*検索項目全体を囲むブロック（項目を増減しても自動で並びます）*/
#search .items {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));	/*15remは項目1個あたりの最小幅。これより狭くなると自動で折り返します。*/
	gap: 1rem 1.5rem;	/*項目同士の余白。上下に1文字分、左右に1.5文字分。*/
}

/*検索項目１個あたり*/
#search .item {
	min-width: 0;	/*はみ出し防止（変更不要）*/
}

/*項目名（勤務地、職種など）*/
#search .item label {
	display: block;
	font-size: 0.85rem;	/*文字サイズ85%*/
	font-weight: bold;	/*太字に*/
	line-height: 1.5;	/*行間を狭く*/
	margin-bottom: 0.3rem;	/*下に空けるスペース*/
	color: var(--primary-color);	/*文字色。theme.cssのprimary-colorを読み込みます。*/
}

/*項目名のアイコン*/
#search .item label i {
	margin-right: 0.4rem;	/*文字との間に空けるスペース*/
}

/*プルダウンメニューと入力欄の共通設定*/
#search select,
#search input[type="text"] {
	width: 100%;
	-webkit-appearance: none;appearance: none;
	font: inherit;
	line-height: 1.5;
	color: inherit;			/*文字色*/
	background-color: #fff;	/*背景色*/
	border: 1px solid var(--bg-border-color);	/*枠線の幅、線種、var以降は色の指定でtheme.cssのbg-border-colorを読み込みます。*/
	border-radius: 5px;		/*角を少しだけ丸く*/
	padding: 0.6rem 0.8rem;	/*上下に0.6文字分、左右に0.8文字分の余白*/
}

/*プルダウンメニュー*/
#search select {
	padding-right: 2.4rem;	/*右に矢印用の余白を空ける*/
	cursor: pointer;
	/*以下は右側の矢印アイコン（変更不要）*/
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.8rem center;
	background-size: 0.8rem auto;
}

/*選択中・入力中*/
#search select:focus,
#search input[type="text"]:focus {
	outline: none;
	border-color: var(--primary-color);	/*枠線の色。theme.cssのprimary-colorを読み込みます。*/
}

/*検索ボタン内のアイコン*/
#search .search-btn i {
	margin-right: 0.5rem;	/*文字との間に空けるスペース*/
}

/*人気のキーワード*/
#search .keyword {
	margin-bottom: 0;
	display: flex;
	flex-wrap: wrap;	/*入りきらない場合は折り返す*/
	align-items: center;
	gap: 0.5rem;		/*キーワード同士に空けるスペース*/
	font-size: 0.8rem;	/*文字サイズ80%*/
}

/*「人気のキーワード」の文字*/
#search .keyword span {
	font-weight: bold;	/*太字に*/
}

/*キーワード１個あたり*/
#search .keyword a {
	text-decoration: none;
	color: var(--primary-color);	/*文字色。theme.cssのprimary-colorを読み込みます。*/
}


/*main
---------------------------------------------------------------------------*/
main {
	container-type: inline-size;
}

/*h2見出しのspan（小文字）*/
main h2 span {
	font-size: 0.8rem;	/*文字サイズ80%*/
	margin-left: 1rem;	/*左に1文字分のスペースを空ける*/
	opacity: 0.8;		/*色を80%だけ出す*/
}

/*h3見出し*/
main h3::before {
	content: "";
	border-left: 5px solid var(--primary-color);
	padding-right: 1rem;
}

/*main内で使用するul,ol要素（リストタグ）*/
main ul,main ol {
	margin-left: 2rem;
	margin-right: 2rem;
}


/*お気に入り（ハートアイコン）
---------------------------------------------------------------------------*/
.list .fav {
	position: absolute;
	z-index: 2;		/*見出しリンクより上に出してクリックできるようにする*/
	background: #fff;	/*背景色*/
	color: inherit;		/*文字色を親から引き継ぐ*/
	font-size: inherit;	/*文字サイズを親から引き継ぐ*/
	cursor: pointer;
	transition: 0.3s;	/*マウスオンにかける時間。0.3秒。*/
	right: 0.5rem;	/*右から0.5文字分の場所に配置*/
	bottom: 0.5rem;	/*下から0.5文字分の場所に配置*/
	border: 1px solid var(--bg-border-color);	/*枠線の幅、線種、var以降は色の指定でtheme.cssのbg-border-colorを読み込みます。*/
	border-radius: 50%;	/*円形にする*/
	width: 2rem;		/*幅。２文字分。*/
	height: 2rem;		/*高さ。２文字分。*/
	display: flex;			/*中のアイコンを上下左右の中央に配置する*/
	align-items: center;
	justify-content: center;
}
/*色付き*/
.list .fav.current {
	background: var(--primary-color);		/*背景色。theme.cssのprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。theme.cssのprimary-inverse-colorを読み込みます。*/
}

/*マウスオン時*/
.list .fav:hover {
	background: var(--primary-light-color);	/*背景色。theme.cssのprimary-light-colorを読み込みます。*/
	border-color: var(--primary-color);		/*枠線の色。theme.cssのprimary-colorを読み込みます。*/
}

/*登録済みのマウスオン時*/
.list .fav.current:hover {
	background: var(--primary-color);	/*背景色は変えない。theme.cssのprimary-colorを読み込みます。*/
	opacity: 0.8;						/*少し薄くする*/
}


/*list1、list3共通
---------------------------------------------------------------------------*/
.list1 *, .list3 * {margin: 0;padding: 0;}

/*h4見出し*/
.list1 .list h4, .list3 .list h4 {
	display: flex;
	flex-direction: column-reverse;	/*上下を入れ替える*/
	line-height: 1.5;	/*行間を少し狭く*/
}

/*h4見出し内のspan（会社名など）*/
.list1 .list h4 > span, .list3 .list h4 > span {
	color: var(--primary-color);	/*文字色。theme.cssのprmary-colorを読み込みます。*/
	display: block;
	font-size: 0.8em;	/*文字サイズ80&¥%*/
}

/*タグ（未経験OK、土日祝休み、残業・・・など）*/
.list1 .tag, .list3 .tag {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;	/*タグ同士の間に空けるスペース。0.4文字分。*/
}
.list1 .tag span, .list3 .tag span {
	border: 1px solid var(--bg-border-color);	/*枠線の幅、線種、var以降は線の色のことでtheme.cssのbg-border-colorを読み込みます。*/
	padding: 0 0.2rem;	/*上下、左右への余白*/
}

/*「東京都千代田区」「正社員」「月給・・・」などの間に1文字分のスペースを空ける*/
.list1 .list .text i + i, .list3 .list .text i + i {
	margin-left: 1rem;
}


/*list3
---------------------------------------------------------------------------*/
/*ボックス１個あたり*/
.list3 .list {
	display: flex;
	align-items: center;
	gap: 1rem;
	position: relative;
	background: #fff;		/*背景色*/
	border: 1px solid var(--bg-border-color);	/*枠線の幅、線種、var以降は線の色のことでtheme.cssのbg-border-colorを読み込みます*/
	overflow: hidden;
	padding: 1rem;	/*ボックス内の余白。1文字分。*/
}

	/*画面幅600px以下の追加指定*/
	@media (max-width:600px) {

	/*ボックス１個あたり*/
	.list3 .list {
		flex-direction: column;	/*縦積みにする。*/
	}

	}/*追加指定ここまで*/


.list3 .list + .list {
	border-top: 0;
}

/*画像ボックス*/
.list3 .image {
	width: 20%;	/*幅。お好みで。*/
}

	/*画面幅600px以下の追加指定*/
	@media (max-width:600px) {

	/*画像ボックス*/
	.list3 .image {
		width: 100%;
	}

	}/*追加指定ここまで*/


/*テキストボックス*/
.list3 .list .text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;	/*画像とテキストブロックの間にとる余白。0.2文字分。*/
}

/*見出しにリンク指定をした場合。ボックス全体をクリックできるようにする*/
.list3 .list h4 a {
	text-decoration: none;
}
.list3 .list h4 a:hover {
	filter: none;	/*filterをかけると下の::afterの範囲が見出しだけに縮んでしまうためリセット*/
	text-decoration: underline;	/*マウスオンで下線をつける*/
}

/*マウスオンでボックスの背景色を変える（見出しにリンクがある場合のみ）*/
.list3 .list:has(h4 a) {
	transition: 0.3s;	/*背景色が変わるまでにかける時間。0.3秒。*/
}
.list3 .list:has(h4 a):hover {
	background: var(--primary-light-color);	/*背景色。theme.cssのprimary-light-colorを読み込みます。*/
}
.list3 .list h4 a::after {
	content: "";
	position: absolute;
	inset: 0;	/*ボックス全体を覆う*/
	z-index: 1;
}

/*h4の中に置いた場合は、重ねずにその場に並べる*/
.list3 h4 .icon {
	position: static;
	display: inline-block;
	margin-right: 0.5rem;	/*文字との間に空けるスペース*/
	vertical-align: middle;
}

/*説明だけ小さめにする*/
.list3 .list p {
	font-size: 0.85em;	/*文字サイズ。85%。*/
	line-height: 1.5;	/*行間*/
}

/*ボタン*/
.list3 .list .btn-container {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;	/*上下に並んだボタンの間に空けるスペース。0.5文字分。*/
}
.list3 .list .btn-container .btn a {
	display: block;
	text-align: center;
}


/*list1
---------------------------------------------------------------------------*/
/*ボックス全体（デフォルトは3カラム）*/
.list1 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));	/*3列*/
	gap: 2vw;		/*ボックス同士の間に空けるスペース。2%。*/
}

/*4カラム用*/
.list1.c4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));	/*4列*/
}

	/*画面幅600px以下の追加指定*/
	@media (max-width:600px) {

	/*ボックス全体*/
	.list1 {
		grid-template-columns: repeat(1, minmax(0, 1fr));	/*1列*/
	}

	/*4カラム用*/
	.list1.c4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));	/*2列*/
	}

	}/*追加指定ここまで*/


/*ボックス１個あたり*/
.list1 .list {
	display: flex;
	flex-direction: column;
	position: relative;
	background: #fff;		/*背景色*/
	border: 1px solid var(--bg-border-color);	/*枠線の幅、線種、var以降は線の色のことでtheme.cssのbg-border-colorを読み込みます*/
	border-radius: 5px;	/*角を丸くする*/
	overflow: hidden;
}

/*画像ブロック*/
.list1 .list .image {
	position: relative;
}

/*マウスオンで画像を拡大*/
.list1 .image img {
	transition: 0.5s;	/*マウスオンにかける時間。0.5秒。*/
}
.list1 .list .image a:hover img {
	transform: scale(1.05);	/*マウスオン時の拡大率。105%。*/
}

/*テキストボックス*/
.list1 .list .text {
	flex: 1;
	padding: 1rem;	/*ボックス内の余白。1文字分。*/
	display: flex;
	flex-direction: column;
	gap: 0.2rem;	/*画像とテキストブロックの間にとる余白。0.2文字分。*/
}

/*説明だけ小さめにする*/
.list1 .list p {
	font-size: 0.85em;	/*文字サイズ。85%。*/
	line-height: 1.5;	/*行間*/
}

/*画像の代わりにアイコンをおいた場合*/
.list1 .list > i {
	background: var(--primary-inverse-color);	/*背景色。theme.cssのprimary-inverse-colorを読み込みます。*/
	color: var(--primary-color);				/*文字色。theme.cssのprimary-colorを読み込みます。*/
	display: block;
	margin: 2rem auto 0.5rem;	/*上下に2文字分、下に0.5文字分の余白、左右は中央に。*/
	font-size: 36px;		/*アイコンサイズ。お好みで。*/
}
/*アクセントカラー版*/
.list1 .list > i.accent-color {
	color: var(--accent-color);
}

/*list1内にボタンをおいた場合*/
.list1 .list .btn {
	padding: 0 1rem 1rem;	/*ボタンの左右と下に空けるスペース。1文字分。*/
}
.list1 .list .btn a {
	display: block;
	text-align: center;	/*ボタン内の文字を中央に*/
}


/*アイコン（「おすすめ」など）
---------------------------------------------------------------------------*/
.list .icon {
	font-size: 0.8rem;	/*文字サイズ80%*/
	padding: 0.2rem 0.4rem;	/*上下、左右への余白*/
	line-height: 1.4;
	font-weight: bold;	/*太字*/
	position: absolute;
	left: 5px;			/*ボックスの左からの配置*/
	top: 5px;			/*ボックスの上からの配置*/
	background: var(--primary-color);		/*背景色。theme.cssのprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。theme.cssのprimary-inverse-colorを読み込みます。*/
	border-radius: 3px;	/*角を少しだけ丸く*/
}

/*アクセントカラー版*/
.list .icon.accent {
	background: var(--accent-color);	/*背景色。theme.cssのaccent-colorを読み込みます。*/
	color: var(--accent-inverse-color);	/*文字色。theme.cssのaccent-inverse-colorを読み込みます。*/
}

/*終了アイコン*/
.list .icon.closed {
	background: #888;	/*背景色*/
	color: #eee;		/*文字色*/
}


/*２カラム（.c2をつけたブロックを左右2列に）
---------------------------------------------------------------------------*/
/*２カラムにするブロック全体*/
.c2 {
	display: grid;
	grid-template-columns: 1.2fr 1fr;	/*左右のカラムの幅。左を少し広めに。同じ幅にする場合は 1fr 1fr に。*/
	gap: 2vw;		/*左右のカラムの間に空けるスペース。2%。*/
}

	/*画面幅800px以下の追加指定*/
	@media (max-width:800px) {

	.c2 {
		grid-template-columns: repeat(1, minmax(0, 1fr));	/*1列（上下に並ぶ）*/
	}

	}/*追加指定ここまで*/


/*カラム１つあたり*/
.c2 > div {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

/*カラム内のlist3*/
.c2 .list3 {
	display: flex;
	flex-direction: column;
	flex: 1;			/*カラムの下端まで伸ばす*/
}
.c2 .list3 .list {
	flex: 1;			/*ボックスの高さを均等にする*/
}

/*カラム内のlist1*/
.c2 .list1 {
	grid-template-columns: repeat(1, minmax(0, 1fr));	/*1列*/
	flex: 1;				/*カラムの下端まで伸ばす*/
	align-content: space-between;	/*余ったスペースをボックスの間に均等に配る*/
}

/*画像ブロック*/
.c2 .list1 .list .text {
	flex: none;		/*テキストは中身の高さのままにする*/
}
.c2 .list1 .list .image {
	aspect-ratio: 2 / 1;	/*画像の縦横比。2:1。お好みで。*/
}
.c2 .list1 .list .image a {
	display: block;
	height: 100%;
}
.c2 .list1 .list .image img {
	position: absolute;	/*画像自身の高さでカードの高さが決まらないように*/
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;	/*比率を保ったまま切り抜いて枠いっぱいに*/
}

/*「もっと見る」ボタン*/
.c2 > div > .btn {
	padding-top: 1rem;	/*ボタンの上に空けるスペース。1文字分。*/
}
.c2 > div > .btn a {
	display: block;
	text-align: center;
}


/*list2（「求人特集」ブロック）
---------------------------------------------------------------------------*/
.list2 * {margin: 0;padding: 0;}

/*ボックス全体*/
.list2 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));	/*3列*/
	gap: 2vw;		/*ボックス同士の間に空けるスペース。2%。*/
}

/*4カラム用*/
.list2.c4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));	/*4列*/
}

	/*画面幅600px以下の追加指定*/
	@media (max-width:600px) {

	/*ボックス全体*/
	.list2 {
		grid-template-columns: repeat(1, minmax(0, 1fr));	/*1列*/
	}

	/*4カラム用*/
	.list2.c4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));	/*2列*/
	}

	}/*追加指定ここまで*/


/*ボックス１個あたり*/
.list2 .list {
	border-radius: 5px;	/*角を丸くする*/
	overflow: hidden;
	position: relative;
	line-height: 1.5;
	border: 1px solid var(--bg-border-color);	/*枠線の幅、線種、var以降は色の指定でtheme.cssのbg-border-colorを読み込みます。*/
}

/*テキストボックス*/
.list2 .list .text {
	position: absolute;
	width: 50%;	/*ボックスの幅*/
	left: 1rem;	/*テキストの左側に1文字分の余白をあける*/
	top: 50%;
	transform: translateY(-50%);
}

/*画像ブロック*/
.list2 .list .image {
	position: relative;
	aspect-ratio: 5 / 2;	/*アスペクト比5対2。お好みで。*/
}
.list2 .list .image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*左側の背景グラデーション（共通）*/
.list2 .list .image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #fff 30%, transparent 60%);/*デフォルトは、白背景 → 透明*/
}

/*テキスト（共通）*/
.list2 .list h4 {
	font-size: 0.8rem;	/*文字サイズ80%*/
}
/*「→」のアイコン*/
.list2 .list h4 i {
	font-size: 1.5rem;	/*文字サイズ150%*/
	margin-top: 5px;	/*上に5pxスペースを空ける*/
}

/*1つ目のボックスの色（文字・ボーダー・グラデーション）*/
.list2 .list:nth-of-type(1) {
	color: #25847f;	/*文字色*/
}
.list2 .list:nth-of-type(1) .image::after {
	background: linear-gradient(90deg, #eaf6fa 30%, transparent 60%);/*グラデーション。#eaf6fa → 透明。*/
}

/*2つ目のボックスの色（文字・ボーダー・グラデーション）*/
.list2 .list:nth-of-type(2) {
	color: #e07b00;	/*文字色*/
}
.list2 .list:nth-of-type(2) .image::after {
	background: linear-gradient(90deg, #fff3e0 30%, transparent 60%);/*グラデーション。#fff3e0 → 透明。*/
}

/*3つ目のボックスの色（文字・ボーダー・グラデーション）*/
.list2 .list:nth-of-type(3) {
	color: #1565c0;	/*文字色*/
}
.list2 .list:nth-of-type(3) .image::after {
	background: linear-gradient(90deg, #e3f2fd 40%, transparent 70%);/*グラデーション。#e3f2fd → 透明。このボックスだけ文字が長いので%の値を少し調整しています。*/
}

/*4つ目のボックスの色（文字・ボーダー・グラデーション）*/
.list2 .list:nth-of-type(4) {
	color: #d81b60;	/*文字色*/
}
.list2 .list:nth-of-type(4) .image::after {
	background: linear-gradient(90deg, #fce4ec 30%, transparent 60%);/*グラデーション。#fce4ec → 透明。*/
}


/*「エリアから探す」ブロック
---------------------------------------------------------------------------*/
.area * {margin: 0; padding: 0;}

/*ブロック全体*/
.area {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));	/*2列*/
	gap: 1rem;	/*ボックス同士の間に空けるスペース。1文字分。*/
}

	/*画面幅700px以下の追加指定*/
	@media (max-width:700px) {

	/*ブロック全体*/
	.area {
		grid-template-columns: repeat(1, minmax(0, 1fr));	/*1列*/
	}

	}/*追加指定ここまで*/


/*都道府県リンク*/
.area .list ul {
	list-style: none;
	margin-left: 1.4rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0 1rem;
}


/*「求人掲載をご検討の企業様へ」ブロック
---------------------------------------------------------------------------*/
.cta * {margin: 0;padding: 0;}

/*ブロック全体*/
.cta {
	background: var(--primary-light-color);	/*背景色。theme.cssのprimary-light-colorを読み込みます。*/
	display: flex;
	align-items: center;
	gap: 2rem;	/*ブロック同士の間に空けるスペース。2文字分。*/
	padding: 1rem;	/*ブロック内の余白。1文字分。*/
	border: 1px solid var(--primary-color);	/*枠線の幅、線種、var以降は色の指定でtheme.cssのprimary-colorを読み込みます。*/
}

	/*画面幅700px以下の追加指定*/
	@media (max-width:700px) {

	/*ブロック全体*/
	.cta {
		flex-direction: column;	/*縦積みに*/
		text-align: center;		/*テキストをセンタリング*/
	}

	}/*追加指定ここまで*/

/*h2見出し*/
.cta h2 {
	color: var(--primary-color);	/*文字色。theme.cssのprimary-colorを読み込みます。*/
}

/*イラストブロック*/
.cta .image {
	width: max(80px, 10%);	/*幅を10%。ただし、80pxより小さくならない。*/
}

/*テキストブロック*/
.cta .text {
	flex: 1;
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 0.2rem 1rem;	/*ボックス内の余白。上下に0.2文字分、左右に1文字分。*/
	margin-bottom: 1rem;	/*下に空けるスペース。１文字分。*/
	background: var(--primary-color);		/*背景色。theme.cssのprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。theme.cssのprimary-inverse-colorを読み込みます。*/
}

/*テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	border-top: 1px solid var(--bg-border-color);	/*テーブルの一番上の線。幅、線種、varは色の設定でtheme.cssのborder-colorを読み込みます。。*/
	width: 100%;
	margin-bottom: 2rem;	/*テーブルの下に空けるスペース。２文字分。*/
	background: #fff;	/*背景色*/
	color: #333;		/*文字色*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid var(--bg-border-color);	/*テーブルの下線。幅、線種、varは色の設定でtheme.cssのborder-colorを読み込みます。。*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 1rem;		/*ボックス内の余白。１文字分。*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: clamp(8rem, 22vw, 13rem);	/*幅。8文字分〜13文字分の間で、画面幅に応じて自動調整。真ん中の22vwは画面幅の22%。*/
	text-align: left;	/*左よせにする*/
	background: var(--light-color);		/*背景色。theme.cssのlight-colorを読み込みます。*/
	color: var(--light-inverse-color);	/*文字色。theme.cssのlight-inverse-colorを読み込みます。*/
}


/*ボタン
---------------------------------------------------------------------------*/
.btn a,
.btn button {
	display: inline-block;
	text-decoration: none;
	font-family: inherit;	/*buttonの既定フォントを打ち消す*/
	font-size: inherit;		/*buttonの既定の文字サイズを打ち消す*/
	line-height: inherit;	/*buttonの既定の行間を打ち消す*/
	cursor: pointer;		/*buttonでも指のカーソルにする*/
	font-weight: bold;
	background: var(--primary-color);		/*背景色。theme.csのprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。theme.csのprimary-inverse-colorを読み込みます。*/
	border: 1px solid var(--primary-color);	/*枠線の幅、線種、var以降は色の指定で、theme.cssのprimary-colorを読み込みます。*/
	padding: 0.4rem 2rem;	/*上下に0.4文字分、左右に2文字分の余白*/
	border-radius: 5px;	/*角を少しだけ丸く*/
}

/*マウスオン時*/
.btn button:hover {
	filter: brightness(1.1);	/*少しだけ明るくする*/
}

/*背景が白いタイプのボタン*/
.btn.inverse a,
.btn.inverse button {
	background: var(--primary-inverse-color);	/*背景色。theme.csのprimary-inverse-colorを読み込みます。*/
	color: var(--primary-color);				/*文字色。theme.csのprimary-colorを読み込みます。*/
}

/*アクセントカラー版*/
.btn.accent a,
.btn.accent button {
	background: var(--accent-color);		/*背景色。theme.csのaccent-colorを読み込みます。*/
	color: var(--accent-inverse-color);		/*文字色。theme.csのaccent-inverse-colorを読み込みます。*/
	border: 1px solid var(--accent-color);	/*枠線の幅、線種、var以降は色の指定で、theme.cssのaccent-colorを読み込みます。*/
}

/*アイコンサイズを1.2倍に*/
.btn i {
	transform: scale(1.2);
}


/*news（お知らせ）
---------------------------------------------------------------------------*/
dl.news * {margin: 0;padding: 0;}

/*日付*/
dl.news dt {
	display: flex;
}

	/*画面幅900px以上の追加指定*/
	@media (min-width: 900px){

	dl.news {
		display: grid;
		grid-template-columns: max-content minmax(0, 1fr);	/*日付幅は最大の文字数幅に自動調整し、右側テキストは残り一杯使う。*/
		gap: 0 2rem;	/*2remが、日付とテキストとの間に空けるスペース。お好みで。*/
		align-items: start;
	}

	}/*追加指定ここまで*/


/*フッター
---------------------------------------------------------------------------*/
footer ul {list-style: none;}
footer p {margin: 0;}
footer a {text-decoration: none;}

/*フッターボックス全体*/
footer {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 2rem;
	font-size: 0.8rem;	/*文字サイズ80%*/
    padding: var(--content-space-s);	/*ボックス内の余白。theme.cssのcontent-space-sを読み込みます。*/
	border-top: 1px solid var(--bg-border-color);	/*上の線の幅、線種、var以降は色の指定でtheme.cssのbg-border-colorを読み込みます。*/
	background: #fff;	/*背景色*/
}

/*ロゴの最大幅*/
footer .logo {
	max-width: 200px;
}

/*1つ目のdiv（ロゴが入ったブロック）*/
footer > div:first-child {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/*メニューブロック*/
footer .menu {
	display: flex;
	gap: 2rem;
}

/*メニューの見出し*/
footer li.title {
	font-weight: bold;
}

/*Copyright部分*/
footer small {
	width: 100%;
	display: block;
	text-align: center;	/*右寄せ*/
}

/*SNSアイコン*/
footer .sns {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;		/*アイコン同士のマージン的な要素。１文字分。*/
}
footer .sns i {
	font-size: 30px;	/*アイコンサイズ*/
}


/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）
---------------------------------------------------------------------------*/
.pr a {
	text-decoration: none;display: block;
	background: rgba(0,0,0,0.5);
	color: #ccc;
	text-align: right;
	padding: 0.5rem 1rem;
	font-size: 0.8rem;
}
.pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e2ca";
	font-weight: 900;
	margin-right: 0.5em;
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	animation: opa1 1s 0.4s both;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}


/*bg1-parts
---------------------------------------------------------------------------*/
.bg1-parts {
	background-color: var(--bg-inverse-color);	/*文字色。theme.cssのbg-inverse-colorを読み込みます。*/
	color: var(--bg-color);		/*背景色。theme.cssのbg-colorを読み込みます。*/
}

/*bg1-primary
---------------------------------------------------------------------------*/
.bg1-primary-parts {
	background-color: var(--primary-color);		/*背景色。theme.cssのprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。theme.cssのprimary-inverse-colorを読み込みます。*/
}

/*bg1-primary-light
---------------------------------------------------------------------------*/
.bg1-primary-light-parts {
	background-color: var(--primary-light-color);		/*背景色。theme.cssのprimary-light-colorを読み込みます。*/
	color: var(--primary-light-inverse-color);	/*文字色。theme.cssのprimary-light-inverse-colorを読み込みます。*/
}


/*bg1-light
---------------------------------------------------------------------------*/
.bg1-light-parts {
	background-color: var(--light-color);		/*背景色。theme.cssのlight-colorを読み込みます。*/
	color: var(--light-inverse-color);	/*背景色。theme.cssのlight-inverse-colorを読み込みます。*/
}


/*bg1-accent
---------------------------------------------------------------------------*/
.bg1-accent-parts {
	background-color: var(--accent-color);		/*背景色。theme.cssのaccent-colorを読み込みます。*/
	color: var(--accent-inverse-color);	/*背景色。theme.cssのaccent-inverse-colorを読み込みます。*/
}


/*bg-parts（bg1-primary-parts、bg1-light-parts、bg1-accent-partsとセットで使います）
---------------------------------------------------------------------------*/
.bg-parts {
	padding-top: var(--content-space-v, var(--content-space-l));		/*ボックス内の上に空ける余白。theme.cssのcontent-space-vを読み込みます。*/
	padding-bottom: var(--content-space-v, var(--content-space-l));	/*ボックス内の下に空ける余白。theme.cssのcontent-space-vを読み込みます。*/
}


/*section内で画面両サイドいっぱいまで広げる場合（marginのみでもいいが安定版に）
---------------------------------------------------------------------------*/
.bleed-x-parts {
	--bleed-x: var(--content-space-l);	/*エイリアスに*/
	width: calc(100% + (var(--bleed-x) * 2));	/*section内容の幅＋両サイドpadding（対象要素の幅）*/
	margin-left: calc(var(--bleed-x) * -1);
	margin-right: calc(var(--bleed-x) * -1);
	max-width: none;
}


/*左右によせる専用
---------------------------------------------------------------------------*/
.bleed-left-parts {
	width: calc(100% + var(--content-space-l));
	margin-left: calc(-1 * var(--content-space-l));
}
.bleed-right-parts {
	width: calc(100% + var(--content-space-l));
	margin-right: calc(-1 * var(--content-space-l));
}


/*その他
---------------------------------------------------------------------------*/
.color-check, .color-check a {color: #ff0000 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 100%;display: block;}
.wl {width: 100%;display: block;}
.padding-x {padding: 0 var(--content-space-l);}
.mt0 {margin-top: 0px !important;}
.mt20 {margin-top: 20px !important;}
.mt1rem {margin-top: 1rem !important;}
.mt3rem {margin-top: 3rem !important;}
.mb0 {margin-bottom: 0px !important;}
.mb1rem {margin-bottom: 1rem !important;}
.mb3rem {margin-bottom: 3rem !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: rgba(0,0,0,0.8);color: #fff; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.look .color-check {color: yellow !important;}
.small {font-size: 0.8em;}
.large {font-size: 1.4em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.inline-block {display: inline-block !important;}
.block {display: block !important;}
.is-clip {overflow: hidden;}

/*大きな画面の場合*/
.large-screen .ws {width: 50%;}
.large-screen .sh {display: none;}
.large-screen .pc {display: block;}
