@charset "utf-8";



/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1+Code:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");

/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("animation.css");
@import url("inview.css");



/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	margin: 0;padding: 0;
	font-size: 13px;	/*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています。*/
	overflow-x: hidden;
}

body {
	font-family: 'Lato', 'M PLUS 1 Code', "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	letter-spacing: 0.05em;
	background: #ffffff;	/*背景色*/
	color: #555;		/*全体の文字色*/
	line-height: 2;		/*行間*/
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;}

/*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%;}

/*ul,olタグ*/
ul, ol {margin-bottom: 30px;}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #57524b;	/*文字色*/
	transition: 0.3s;
	text-decoration: none;
}

i {
	font-family: "Font Awesome 5 Free";
	font-style: normal;
	font-weight: 900;
}

/*sectionタグと、詳細ページの共通設定
---------------------------------------------------------------------------*/
section,
main > article {
	margin: 0 auto;
	padding: 5%;		/*ボックス内の余白*/
}


/*2カラムブロック（※900px未満では１カラム）
---------------------------------------------------------------------------*/
/*２カラムを囲むブロック*/
.c2 {
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*子要素を縦並びにする*/
}

/*c2内のh2見出し*/
.c2 h2 {
	font-size: 2em;
}

/*小さい端末で見た場合（１カラムになった際）に、画像を常に先頭に持ってくる*/
.c2 .image {
	order: -1;
}


/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	display: flex;					/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	background: rgba(255,255,255,0.8);			/*背景色*/
	position: fixed; z-index: 10;	/*スクロールしても動かないようにする指定*/
	width: 100%;
	padding: 0px 1%;					/*上下、左右へのヘッダー内の余白*/
	height: 100px;					/*ヘッダーの高さ。変更する場合、数行下にある#mainimgのtopの数値も合わせて変更して下さい。*/
}

/*ヘッダーのリンクテキストの文字色*/
header a {
	color: #000000;
}

/*ロゴ画像*/
header #logo img {display: block;}
header #logo {
	margin: 0;
	width: 250px;	/*幅*/
	letter-spacing:-.4em;

	a, p {
		display: inline-block;
		vertical-align: top;
		letter-spacing: normal;

		img {
			height: 72px;
		}
	}
	p {
		font-size: 16px;
		font-weight: bold;
		line-height: 24px;
		margin: 0px;
		margin-left: 10px;
		padding-left: 10px;
		border-left: solid 1px #dddddd;

		span {
			color: #3b6aba;
		}
	}
}

header #logo.dw {
	z-index: 200;
	filter: brightness(0) invert(1);
}


/*トップページのメイン画像
---------------------------------------------------------------------------*/
/*全体を囲むブロック*/
#mainimg {
	width: 100%;
	height: 0;
	padding: 0;
	padding-top: 50%;
	position: relative;
	top: 100px;	/*headerのheightの数値と合わせて下さい。*/
	overflow: hidden;
	background: #000000;	/*背景色、背景画像の読み込み、最後の100%は画像幅。*/
	color: #ffffff;	/*文字色*/

    .intro video {
        width: 100%;
		height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
}

/*テキストブロック*/
#mainimg #text {
	position: absolute;
	z-index: 1;
	left: 0px;		/*mainimgに対して左からの配置場所指定*/
	top: 0px;		/*mainimgに対して上からの配置場所指定*/
	padding: 0px 3%;
	width: 100%;	/*幅*/
	height: 100%;	/*高さ*/
	display: flex;			/*flexボックスを使う指定*/
	align-items: center;	/*垂直揃えの指定。天地中央に配置されるように。*/
}

/*h2見出し*/
#mainimg #text h2 {
	margin: 0;
	font-weight: 500;	/*文字の太さ。数値が大きいほど太くなります。*/
	font-size:min(5vw,80px);
	/*font-size: 5.8vh;*/
	line-height: 1.2;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);	/*テキストの影。右へ、下へ、ぼかし幅。0,0,0は黒の事で0.3は色が30%出た状態。*/
	/*文字アニメーション*/
	animation: slideIn 1s ease-out;
	margin-bottom: 30px;

	span {
		color: #3b6aba;
	}
}
@keyframes slideIn {
	0% {
	  transform: translateX(-5%);
	  opacity: 0;
	}
	100% {
	  transform: translateX(0);
	  opacity: 1;
	}
}

/*pタグ。小文字の説明文。*/
#mainimg #text p.text {
	font-size: 13px;		/*文字サイズ*/
	margin: 0 10px 30px;	/*上、左右、下へのpタグ内の余白*/
	/*文字アニメーション*/
	animation: opacityIn 2s ease-out;
}
@keyframes opacityIn {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

#mainimg #text ul.work {
	margin: 0px;
	padding-left: 0px;
	font-size: 1.5em;
	line-height: 1.4em;
	font-weight: bold;
	font-family: "Font Awesome 5 Free";
	letter-spacing:-.4em;

	li {
		list-style: none;
		display: inline-block;
		vertical-align: top;
		letter-spacing:normal;
		text-align: center;
		backdrop-filter: blur(2px);
		filter:drop-shadow(0px 0px 10px rgba(255,255,255, 1));
		transition: 0.3s;
		animation: opacityIn 2s ease-out;
		width: 30%;
		max-width: 200px;
		margin: 0px 1.5%;
		
		p {
			position: relative;
			display: inline-block;
			border: solid 4px #ffffff;
			border-radius: 50%;
			width: 100%;
			padding: 50%;
			height: auto;
			color: #ffffff;
			text-decoration: none;
			

			b {
				position: absolute;
				width: 100%;
				top: 50%;
				left: 50%;
				transform: translate(-50%, -50%);
				padding: 50% 0px;
				font-weight: bold;
			}
		}

	}

}


/*menubarブロック初期設定
---------------------------------------------------------------------------*/
#menubar ul {list-style: none;margin: 0;padding: 0;font-family: "Font Awesome 5 Free";}
#menubar .ddmenu_parent ul {display: none;}

/*メニューを非表示にしておく*/
#menubar {display: none;}

/*開閉用のスタイル*/
#menubar.db {display: block;}
#menubar.dn {display: none;}

/*メニュー１個あたりの設定*/
#menubar a {
	display: block;
	text-decoration: none;
	text-align: center;		/*テキストを中央に*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	padding: 10px;			/*メニュー内の余白*/
}
#menubar a:hover {
	color: #3b6aba;
}

/*ドロップダウンメニューのリンクタグ*/
#menubar .ddmenu {
	cursor: default;	/*リンク要素のカーソルを矢印に変更しておく*/
}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	content: "\f078";	/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	font-weight: bold;	/*この手の設定がないとアイコンが出ない場合があります*/
	margin-right: 0.5em;	/*アイコンとテキストとの間に空けるスペース*/
	display: inline-block;
	transform: scale(0.7);	/*元々のサイズの70%に。*/
}

/*大きな端末用のメニューブロック設定
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
.p #menubar > nav > ul {
	display: flex;		/*flexボックスを使う指定*/
	margin-left: 30px;	/*左側にとるスペース。ロゴとの間の間隔を調整します。*/
	font-size: 0.85rem;	/*文字サイズ。85%。*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる*/
}

.p #menubar > nav > ul > li {
	position: relative;
	border-left: solid 1px #dddddd;
	vertical-align: middle;
	width: 100px;
	height: 100px;
}
.p #menubar > nav > ul > li.point {
	background: #3b6aba;
	border-left: solid 1px #ffffff;
	
	a {
		color: #ffffff;
		
		i {
			display: block;
			font-size: 20px;
			line-height: 20px;
		}
	}

	a:hover {
		color: #f4ff60;
	}
}
.p #menubar > nav > ul > li > a {
	display: block;
	width: 100px;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

/*メニュー１個あたりの設定*/
.p #menubar a {
	padding: 10px;	/*メニュー同士の余白*/
}


/*大きな端末用のドロップダウンメニュー
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
.p #menubar ul ul {
	position: absolute;
	z-index: 100;
	border-radius: 6px;	/*角を丸くする指定*/
	overflow: hidden;
	text-align: center;		/*文字をセンタリング*/
	color: #ffffff;			/*文字色*/
}

/*メニュー１個あたり*/
.p #menubar ul ul {
	top: 110px;
	left: 50%;
	transform: translate(-50%, 0);
	width: 200px;

	a {
		color: inherit;
		background: rgba(59,106,186,0.8);	/*背景色。0,0,0は黒のことで0.7は色が70%出た状態*/
		backdrop-filter: blur(3px);
		padding: 10px 20px;				/*上下、左右へのメニュー内の余白*/
		margin: 0 auto;
	}
	a:hover {
		background: rgba(59,106,186,1);	/*背景色。0,0,0は黒のことで0.7は色が70%出た状態*/
	}
}


/*小さな端末用の設定（開閉ブロック）
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.s #menubar.db {
	position: fixed;
	overflow: hidden;
	z-index: 100;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	padding: 120px 20px;	/*上下、左右へのブロック内の余白*/
	background: rgba(59,106,186,1);		/*背景色。0,0,0は黒の事で0.9は色が90%出た状態の事。*/
	animation: opa1 0.2s both;	/*animation.cssの、animation1を実行する。0.2sは0.2秒の事。*/
	text-align: center;	/*内容をセンタリング*/
	color: #ffffff;		/*文字色*/
}
.s #menubar.db nav > ul > li {
	font-size: 1.4em;
	border-bottom: solid 1px #ffffff;
}
.s #menubar.db nav > ul > li > ul {
	margin-bottom: 10px;

	li {
		a {
			text-align: left;
			font-size: 0.8em;
			padding: 5px;
		}
		a::before {
			content: "- ";
			transform: scale(0.7);
		}
	}
}
.s #menubar.db a {
	display: block;
	color: #ffffff;	/*リンクテキストの文字色*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*開閉用のスタイル*/
#menubar_hdr.db {display: flex;}
#menubar_hdr.dn {display: none;}

/*３本バーを囲むブロック*/
#menubar_hdr {
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 0px;			/*右からの配置場所指定*/
	top: 0px;			/*上からの配置場所指定*/
	padding: 30px 24px;	/*上下、左右への余白*/
	width: 80px;		/*幅（３本バーが出ている場合の幅になります）*/
	height: 100px;		/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（３本バー）を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	background: rgba(59,106,186,0.8);	/*背景色*/
}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 2px solid #ffffff;	/*線の幅、線種、色*/
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 40px;						/*バーの幅*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(2px, 25px);	/*回転45°と、X軸Y軸への移動距離の指定*/
	margin-left: 12px;
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(2px, -25px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
	margin-left: 12px;
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}


/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロック*/
main {
	padding-top: 100px;
}

/*mainブロック内のh2タグ*/
main h2 {
	margin: 0 0 1em;		/*上、左右、下へのタグの外にとるスペース*/
	line-height: 1.5;		/*行間を少し狭く*/
	font-size: 3em;			/*文字サイズ。3倍。*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.2em;	/*文字間隔を少しだけ広くとる設定*/
	color: #3b6aba;			/*文字色*/
	font-family: 'Lato';	/*GoogleFontsの指定*/
	font-weight: 400;		/*文字の太さ*/
}

/*h2内のsupanタグ。小文字部分です。*/
main h2 span {
	display: block;
	font-weight: normal;
	color: #777777;		/*文字色*/
	font-size: 13px;	/*文字サイズ*/
}

/*mainブロック内のh3タグ*/
main h3 {
	margin: 0 0 1em;		/*上、左右、下へのタグの外にとるスペース*/
	color: #000000;			/*文字色*/

	span {
		color: #3b6aba;
	}
}

/*mainブロックのpタグ*/
main p {
	margin: 0 10px 20px;	/*上、左右、下へ空けるスペース*/
}
main p + p {margin-top: -15px;}


/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}

footer {
	font-size: 0.7rem;		/*文字サイズ*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
	background: #111111;		/*背景色*/
	color: #ffffff;			/*文字色*/

	a {
		text-decoration: none;
		color: #ffffff;
	}

	a:hover {
		color: #3b6aba;
	}
}

/*著作部分*/
footer .pr {display: block;}


/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	background: #333333;	/*背景色*/
	color: #999999;		/*文字色*/
	font-size: 0.7em;	/*文字サイズ*/
	padding: 20px;		/*ボックス内の余白*/
	display: flex;		/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: flex-start;		/*垂直揃えの指定。上に配置されるように。*/
}

/*ボックス内のリンクテキスト設定*/
#footermenu a {
	text-decoration: none;
	color: #999999;	/*文字色*/
}

/*リンクテキストのマウスオン時*/
#footermenu a:hover {
	color: #ccc;	/*文字色*/
}

/*ulタグ（メニューの列単位）*/
#footermenu ul {
	margin: 0;
	padding: 0 2px;
	flex: 1;
	list-style: none;
}

/*title*/
#footermenu .title {
	font-weight: bold;		/*太字にする*/
	color: #3b6aba;			/*文字色*/
	padding-bottom: 5px;	/*下に空けるスペース*/

	a {
		color: #3b6aba;			/*文字色*/
	}
}



/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0;	/*上下、左右へのボックス内の余白*/
	margin-bottom: 40px;
}

/*日付(dt)、記事(dd)共通設定*/
#new dt,
#new dd {
	padding: 5px 0;		/*上下、左右へのボックス内の余白*/
}

/*日付(dt)設定*/
#new dt {
	width: 8em;	/*幅。8文字(em)分。※下の「900px以上」の端末用の設定に再設定があります。*/
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: none;	/*小さな端末では非表示にしておく。*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 8em);	/*「8em」は上の「#new dt」のwidthの値です。※下の「900px以上」の端末用の設定に再設定があります。*/
}

div.listPage {
	font-family: "Font Awesome 5 Free";
	text-align: center;
	margin: 0 auto;
	padding: 0px;
	margin: 0 20px 30px;
	letter-spacing:-.4em;

	a {
		display:inline-block;
		letter-spacing:normal;
		padding: 10px 30px;
		margin: 0px 10px;
		border: solid 2px #3b6aba;
		border-radius: 10px;
		color: #3b6aba;
		font-size: 14px;
		font-weight: bold;
		text-decoration: none;
	}
	a:hover {
		color: #ffffff;
		background: #3b6aba;
	}

}


/*listブロック
---------------------------------------------------------------------------*/
.list-container .list {
	margin-bottom: 30px;	/*ボックス同士の上下間に空けるスペース*/
	padding: 10px;			/*ボックス内の余白*/
	background: #ffffff;		/*背景色*/
	color: #999999;			/*文字色*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
	position: relative;
}

/*ボックス内のh4タグ*/
.list-container .list h4 {
	margin: 0;
	padding: 10px 0px;
	color: #666666;	/*文字色*/
}
.list-container .list h4 a {
	color: #666666;	/*リンクテキストの文字色*/
}

.list-container .list .text p {
	margin-bottom: 10px;
}

/*ボックス内のpタグ*/
.list-container .list p {
	margin: 0;
	font-size: 0.8em;	/*文字サイズを80%に*/
}

/*list内のNEWマーク*/
.list-container .list .new {
	font-size: 0.6em;		/*文字サイズ*/
	background: #ff0000;	/*背景色*/
	color: #ffffff;			/*文字色*/
	width: 50px;			/*幅*/
	line-height: 50px;		/*高さ*/
	border-radius: 50%;		/*角丸のサイズ。円形になります。*/
	text-align: center;		/*テキストをセンタリング*/
	position: absolute;
	left: -10px;			/*listブロックに対して左からの配置場所の指定*/
	top: -10px;				/*listブロックに対して上からの配置場所の指定*/
	transform: rotate(-30deg);	/*回転。まっすぐ表示させたいならこの１行を削除。*/
}


/*求人一覧ページ（ist2　横長ブロックタイプ）
---------------------------------------------------------------------------*/
/*list2ボックス。１個あたりのボックスの指定です。*/
.list2 {
	display: flex;	/*flexボックスを使う指定*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 25px 0;	/*上下、左右へのボックス内の余白*/
}

.list2 div {
	flex: 1;
}

/*１つ目のボックスにのみ上に線を入れる*/
.list2:nth-of-type(1) {
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
}

/*ボックス内のfigure画像*/
.list2 figure {
	width: 20%;			/*画像の幅*/
	margin-right: 20px;	/*画像の右側に空けるスペース*/
}

/*ボックス内のh4タグ*/
.list2 h4 {
	margin: 0;				/*デフォルトマージンを一旦リセット*/
	margin-bottom: 10px;	/*下に少し余白を作る*/
	color: #3b6aba;			/*文字色*/
}

.list2 h4 a {
	color: #3b6aba;			/*リンクテキストの文字色*/
}

.list2 h4 a:hover {
	color: #333333;			/*マウスオン時の文字色*/
}

/*ボックス内のpタグ*/
.list2 p {
	margin: 0;
	font-size: 0.7em;		/*文字サイズを70%に。*/
}


/*求人一覧ページのlistボックス内の情報詳細欄（tableっぽく見える所）
---------------------------------------------------------------------------*/
/*ボックス全体*/
dl.line {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	font-size: 0.7em;	/*文字サイズを70%に。*/
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
}

/*左右のボックス*/
dl.line dt, dl.line dd {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 0 5px;					/*上下、左右へのボックス内の余白*/
}

/*左のボックス*/
dl.line dt {
	width: 8em;				/*幅。8文字(em)分。*/
	background: #f0f0f0;	/*背景色*/
}
/*右のボックス*/
dl.line dd {
	width: calc(100% - 8em);	/*「8em」は上の「dl.line dt」のwidthの値です。*/
}

/*list2ブロック内でのline設定*/
.list2 dl.line dt:nth-of-type(1), .list2 dl.line dd:nth-of-type(1),
.list2 dl.line dt:nth-of-type(2), .list2 dl.line dd:nth-of-type(2) {
	border-top: none;
}


/*サムネイルスライドショー
---------------------------------------------------------------------------*/
/*画像１枚あたりの設定*/
.list-slide .list {
	margin: 10px;	/*画像の外側に空けるスペース*/

	img {
		border-radius: 10px;
	}
}


/*FAQ
---------------------------------------------------------------------------*/
/*FAQボックス全体*/
.faq {
	padding: 0 5px;	/*上下、左右へのボックス内の余白*/
}

/*質問*/
.faq dt {
	border-radius: 3px;		/*枠を角丸にする指定*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	background: linear-gradient(#fff, #f7f7f7);	/*背景グラデーション*/
	text-indent: -2em;				/*テキストのインデント。質問が複数行になった際に、テキストの冒頭を揃える為に設定しています。*/
	padding: 5px 1em 5px 3em;		/*ボックス内の余白。ここを変更する場合、上のtext-indentも調整します。*/
	border: 1px solid #e4e2d7;		/*枠線の幅、線種、色*/
}

/*アイコン（Font Awesome）*/
.faq dt::before {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f059";		/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	color: #3b6aba;			/*アイコンの色*/
	padding-right: 1em;		/*アイコンとテキストの間の余白*/
}

/*回答*/
.faq dd {
	padding: 5px 1em 30px 3em;		/*ボックス内の余白**/
}

/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}

.faq dt span {text-indent: 0;}


/*icon
---------------------------------------------------------------------------*/
.icon {
	display: inline-block;
	margin: 1px;
	line-height: 1.5;
	padding: 0px 10px;
	border: 1px solid #999999;
	color: #999999;
	font-weight: normal;
	font-size: 0.8em;
}
.icon.newicon {
	border-color: transparent;
	background: #f00;
	color: #ffffff;
}
.icon.upicon {
	border-color: transparent;
	background: #54b1ff;
	color: #ffffff;
}

/*btnの設定
---------------------------------------------------------------------------*/
a.btn1, a.btn2 {
	display: inline-block;text-decoration: none;
	letter-spacing: 0.1em;
	border-radius: 3px;
	padding: 5px 30px;
	font-size: 1.2em;
	box-shadow: 1px 2px 3px rgba(0,0,0,0.2);
}
a.btn1 {
	background: #ffce2b;
	color: #444;
}
a.btn2 {
	background: #3b6aba;
	color: #ffffff;
}
.radius {
	border-radius: 100px !important;
}
a.btn1 i, a.btn2 i {
	margin-left: 20px;
}
a:hover.btn1, a:hover.btn2 {
	transform: scale(1.03);
	filter: brightness(1.1);
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 10px 5px;		/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	background: #eeeeee;		/*背景色*/
	margin-bottom: 15px;	/*下に空けるスペース*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid #ccc;	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;
	margin: 0 auto 30px;		/*最後の「30px」がテーブルの下に空けるスペースです*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #ccc;	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 10px 5px;		/*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: left;	/*左よせにする*/
}


/*背景色パターン
---------------------------------------------------------------------------*/
.bg1 {
	background: #eeeeee;
}
.bg2 {
	background: #dbeeff;
}
.bg3 {
	background: #3b6aba;
	color: #ffffff;

	h2, span {
		color: #ffffff;
	}
}
.bg4 {
	background: url(../images/bg4.jpg) 50% 0 / cover no-repeat ;

	h2, span {
		color: #ffffff;
	}
}
.bg5 {
	background: #dbeeff;
}

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

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


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: #3b6aba !important;}
.color-check, .color-check a {color: #f00 !important;}
.c {text-align: center !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb30 {margin-bottom: 30px !important;}
.mt30 {margin-top: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: #eeeeee; border: 1px solid #ccc; border-radius: 3px;margin: 2px 0; word-break: break-all;}
.small {font-size: 0.6em; letter-spacing: normal !important;}
.large {font-size: 1.8em !important;}
.block {display: block !important;}
.sh {display: block;}
.pc {display: none;}
.hidden {position: absolute; top: -9999px; left: -9999px;}




/*---------------------------------------------------------------------------
ここから下は画面幅901px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:901px) {


/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-size: 15px;	/*基準となるフォントサイズの上書き*/
}


/*2カラムブロック
---------------------------------------------------------------------------*/
/*２カラムを囲むブロック*/
.c2 {
	flex-direction: row;			/*子要素を横並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	
	margin-left: -6%;
	margin-right: -6%;
}
/*画像ブロック*/
.c2 .image {
	width: 50%;
}

/*テキストブロック*/
.c2 .text {
	width: 50%;
	padding: 0 3%;
}

/*最初(左)に配置*/
.c2 .l {
	order: -1;
}

/*画像を右側に配置する場合の設定*/
.c2 .image.r {
	overflow: hidden;
	/*margin-right: -6%;	画像を画面枠ギリギリまで移動する*/
	text-align: right;

	figure img {
		border-radius: 20px 0px 0px 20px;	/*角を丸くする指定。左上、右上、右下、左下への順番。*/
	}
}

/*画像を左側に配置する場合の設定*/
.c2 .image.l {
	overflow: hidden;
	/*margin-left: -6%;	画像を画面枠ギリギリまで移動する*/
	text-align: left;

	figure img {
		border-radius: 0px 20px 20px 0px;	/*角を丸くする指定。左上、右上、右下、左下への順番。*/
	}
}


/*トップページのメイン画像
---------------------------------------------------------------------------*/
/*テキストブロック*/
#mainimg #text {
	width: 56%;		/*幅*/
}


/*menubarブロック設定
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar {
	font-size: 0.85em;	/*文字サイズを少し小さくする*/
}
#menubar ul {
	display: flex;	/*flexボックスを使う指定*/
}

/*メニュー１個あたりの設定*/
#menubar a {
	padding: 10px 15px;	/*上下、左右への余白*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*ハンバーガーメニューを非表示にする*/
#menubar_hdr {display: none;}


/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*日付(dt)設定*/
#new dt {
	width: 14em;	/*幅。14文字(em)分。*/
	display: flex;	/*flexボックスを使う指定*/
	justify-content: space-between;	/*日付とアイコンをそれぞれ端に寄せる*/
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: inline-block;	/*表示させる*/
	width: 6em;				/*幅。6文字(em)分。*/
	background: #999999;		/*背景色*/
	color: #ffffff;			/*文字色*/
	font-size: 0.8em;		/*文字サイズを80%に。*/
	text-align: center;		/*文字をセンタリング*/
	margin-right: 1em;		/*アイコンの右側に空けるスペース*/
	align-self: flex-start;	/*高さを間延びさせない指定*/
	line-height: 1.8;		/*行間を少し狭く*/
	position: relative;top: 0.4em;	/*上下の配置バランスの微調整*/
}

/*bg1設定。サンプルテンプレートでは「サービス」と書いてあるマーク*/
#new dt span.icon-bg1 {
	background: #3b6aba;	/*背景色*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 14em);	/*「14em」は上の「#new dt」のwidthの値です。*/
}


/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	font-size: 0.8em;	/*文字サイズ*/
	padding: 20px 50px;	/*上下、左右へのボックス内の余白*/
}


/*listブロック
---------------------------------------------------------------------------*/
/*listブロック全体を囲むブロック*/
.list-container {
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
}

/*１個あたりのボックス設定*/
.list-container .list {
	display: flex;					/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	width: 23.5%;						/*幅。３列になります。*/
	margin-right: 2%;
}

.list-container .list:nth-of-type(3n) {
	margin-right: 0;
}

.list-container.line4 {
	.list:nth-of-type(3n) {
		margin-right: 2%;
	}
	.list:nth-of-type(4n) {
		margin-right: 0;
	}
}

/*ボックス内のtextブロック*/
.list-container .list .text {
	flex: 1;
}


/*求人一覧ページ（ist2　横長ブロックタイプ）
---------------------------------------------------------------------------*/
/*list2ボックス。１個あたりのボックスの指定です。*/
.list2 {
	padding-left: 10px;	/*ボックス内の左側にだけ余白を作る*/
}


/*求人一覧ページのlistボックス内の情報詳細欄（tableっぽく見える所）
---------------------------------------------------------------------------*/
/*list2ブロック内でのline設定*/
.list2 dl.line dd {
	width: calc(50% - 8em - 10px);	/*大きな端末向けの再設定。２列にしたいので、100%でなく半分の50%から引いています。*/
	margin-right: 10px;				/*２列になった際の間のスペース*/
}

.list2 dl.line {border-top: none;}

.list2 dl.line dt:nth-of-type(1), .list2 dl.line dd:nth-of-type(1),
.list2 dl.line dt:nth-of-type(2), .list2 dl.line dd:nth-of-type(2) {
	border-top: 1px solid #ccc;
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 5px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 20px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 20%;		/*幅*/
}


/*その他
---------------------------------------------------------------------------*/
.ws {width: 48%;display: inline;}
.sh {display: none;}
.pc {display: inline-block;}

/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}

div.contact {
	font-family: "Font Awesome 6 Pro";
	text-align: center;

	.company {
		font-size: min(5.5vw, 30px);
		font-weight: 900;
		margin: 0 0px 25px;

		img {
			width: min(8.5vw, 40px);
			filter: brightness(0) invert(1);
		}
	}

	.phone {
		font-weight: 900;
		font-size: min(4vw, 22px);
		text-decoration: none;
		color: #ffffff;
	}
	.phone:hover {
		color: #f4ff60;
	}

	.address {
		font-size: 0.9em;
	}

	.button {
		display: inline-block;
		font-size: 0.9em;
		color: #3b6aba;
		background: #ffffff;
		text-decoration: none;
		padding: 10px 20px;
		margin: 0 20px 30px;
		border-radius: 6px;
	}
	.button:hover {
		color: #ffffff;
		background: #769bd9;
	}
}

.gcerti {
	background: #333333;
	text-align: center;
	padding: 0px 0px 20px 0px;

	img {
		width: 80px;
		margin: 0px 10px;
	}
}


/*---------------------------------------------------------------------------
ここから下は画面幅900px以下、401px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width: 401px) and (max-device-width: 900px) {
	#mainimg #text {
		width: 100%;
		text-align: center;
	}
	#mainimg #text h2 {
		font-size: min(8vw, 100px);
		/*font-size: 3.4vh;*/
		margin-bottom: 20px;
	}
	#mainimg {
		padding-top: 70%;
		
		.intro video {
			width: auto;
			height: 100%;
		}
	}
}



/*---------------------------------------------------------------------------
ここから下は画面幅400px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:400px) {


	/*btnの設定
	---------------------------------------------------------------------------*/
	a.btn1, a.btn2 {
		padding: 0px 15px;
	}
	a.btn1 i, a.btn2 i {
		margin-left: 10px;
	}
	
	#mainimg #text h2 {
		font-size: min(10vw, 80px);
		/*font-size: 3em;*/
		margin-bottom: 20px;
	}
	#mainimg {
		height: auto;
		padding-top: 120%;
		text-align: center;
	
		.intro video {
			width: auto;
			height: 100%;
		}
	}
	#mainimg #text ul.work {
		text-align: center;
	
		li {
			width: 38%;
			padding: 0px 3%;
	
			p {
				border: solid 3px #ffffff;
	
				b {
					font-size: 0.8em;
					line-height: 1.3em;
				}
			}
		}
	}


	div.contact {
		.phone {
			display: block;
		}
	}

	#footermenu {
		display: none;
	}

	.gcerti {
		padding: 10px 0px;
		background: #ffffff;
	}


	
/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/
}

/* --------------------------------------------- */

.cf:after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden;
}

.lf {
    float: left;
}

.rh {
    float: right;
}

.pos {
    padding: 125px 0px 0px 0px;
    margin: -125px 0px 0px 0px;
    border: none;
    background: none;
    position: relative;
    z-index: -1px;
}

.content {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0px 10px;
    overflow: hidden;
	text-align: center;
}

.t2 {
    font-weight: 500;
    font-size: 2em;
    border-bottom: #74acdd solid 4px;
    line-height: 1.5em;
    display: inline-block;
    position: relative;
    padding: 0px 20px 5px 20px;
    margin-bottom: 1em;
	color: #000000;
}

.t2:before {
    content: '';
    width: 55px;
    height: 4px;
    background-color: #3b6aba;
    position: absolute;
    left: 0px;
    bottom: -4px;
}

.c2c {
    max-width: 920px;
    margin: 0 auto 4em auto;

	img {
		border: none;
		margin: 0px;
		padding: 0px;
		backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		max-width: 100%;
		height: auto;
	}
}

.c2c > div {
    max-width: calc(50% - 20px);

    background-color: #3b6aba;
    color: #fff;
    padding: 3%;

	i {
		font-size: 8em;
		margin-bottom: 0.2em;
	}

	p {
		margin: 0px;
	}
}

.c2c h3 {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.5em;
    margin-bottom: 1em;
	color: #ffffff;
}

.c2c h3 span {
    display: inline-block;
	color: #ffffff;
    border-bottom: #fff solid 4px;
    padding: 0px 5px 2px 5px;
}

.p2 {
    font-size: 1.2em;
    line-height: 1.5em;
	margin-bottom: 1.5em;
}

.c3c {
    margin: 0px -18px 2em -18px;
    padding-bottom: 1px;
}

.c3c > div:nth-child(3n + 1) {
    clear: both;
}

.c3c > div {
    float: left;
    width: calc(33.33% - 36px);
    margin: 0px 18px 2em 18px;
    background-color: #fff;
    border-top: #3b6aba solid 4px;
}

.c3c h4 {
    font-size: 1.4em;
    font-weight: bold;
    color: #3b6aba;
    line-height: 1.5em;
    padding: 15px 10px;

	span {
		font-weight: normal !important;
	}
}

.c3c h4 span {
    color: #494949;

    display: flex;
    justify-content: center;
    align-items: center;

}

.c3c p {
    border-top: #3b6aba solid 2px;
    text-align: left;
    padding: 15px 20px;
    line-height: 1.7em;
	margin: 0px;
}

.c4c {
    background-color: #fff;
    padding: 5px;
}

.c4c dl.d1 {
    background-color: #ffe0e0;
}

.c4c dl {
    margin: 0 auto 10px auto;
    max-width: 840px;
    position: relative;
    background-color: #ebebeb;
}

.c4c dl.d1 dt {
    background: url(../img/c1.png) no-repeat #ff6563;
}

.c4c dl dt {
    position: absolute;
    left: 10px;
    width: 200px;
    height: 100%;
    box-sizing: border-box;
    padding: 10px 0px 10px 10px;
    color: #fff;
    background-color: #999999;
    background-size: 50px auto !important;
    background-position: 15px center !important;
    display: flex;
    justify-content: center;
    align-items: center;
	font-weight: normal;
	text-align: right;

	i {
		margin-right: 0.5em;
	}
}

.c4c dl dd {
    text-align: left;
    padding: 10px 20px 10px 240px;
}

.c4c dl.d2 {
    background-color: #d1e0e5;
}

.c4c dl.d2 dt {
    background: #19657f;
}

.c4c dl.d3 {
    background-color: #d4efef;
}

.c4c dl.d3 dt {
    background: #28b0b0;
}

.c4c dl.d4 {
    background-color: #fdeccd;
}

.c4c dl.d4 dt {
    background: #f49f06;
}

.c4c dl.d5 {
    background-color: #eaf2d6;
}

.c4c dl.d5 dt {
    background: #94bd33;
}

.c4c dl.d6 {
    background-color: #ebdded;
}

.c4c dl.d6 dt {
    background: #9b56a5;
}

.c4c dl.d7 {
    background-color: #ffe0eb;
}

.c4c dl.d7 dt {
    background: #ff639a;
}

.c4c dl.d8 {
    background-color: #ebebeb;
	margin: 0px auto;
}

.c4c dl.d8 dt {
    background: #999999;
}


@media screen and (max-width: 760px) {
	.content {
		padding: 0px;
	}

    .c2c > div {
        max-width: unset;
        float: none;
        width: auto;
        padding: 1em;
        margin-bottom: 1em;;
    }

	.c2c h3 span {
		font-size: 0.9em;
	}

	.c3c > div {
        float: none !important;
        width: auto;
        margin: 0px 0px 20px 0px;
        border-top-width: 2px;
        min-height: 0px !important;
    }

	.c3c p {
		padding: 0.5em 2.5em;
	}

	.c4c {
		padding: 1em;
	}
	
	.c4c dl dt {
		position: unset;
		padding: 0.5em;
		display: block;
		width: 100%;
		text-align: center;
	}

	.c4c dl dd {
		padding: 0.5em 1em 0.5em 1em;
	}
}




#corporatepolicy .corporatepolicy-body .bloc {
    position: relative;
    z-index: 2;
    padding: 50px 0;
}
.container {
    width: 1000px;
    margin: 0 auto;
    position: relative;
	text-align: left;
}
.container:before, .container:after {
    content: " ";
    display: table;
}
#corporatepolicy .corporatepolicy-body .col {
    width: 650px;
    margin: 0;
}
#corporatepolicy .corporatepolicy-body .ttl {
    color: #3b6aba;
    font-size: 2rem;
    background-size: 32px;
    margin-bottom: 15px;
}
#corporatepolicy .corporatepolicy-body .ttl span {
    padding: 0 5px 2px;
    display: block;
    border-bottom: solid 2px #3b6aba;
}
#corporatepolicy .corporatepolicy-body .photo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 300px;
}
.container:after {
    clear: both;
}
#corporatepolicy .corporatepolicy-body .bloc::after {
    position: absolute;
    z-index: -1;
    content: '';
    display: block;
    top: 45%;
    left: 50%;
    width: 90%;
    height: 70%;
    -webkit-transform: skew(5deg) translate(-50%, -50%) rotate(5deg);
    -moz-transform: skew(5deg) translate(-50%, -50%) rotate(5deg);
    -o-transform: skew(5deg) translate(-50%, -50%) rotate(5deg);
    background-color: rgba(1, 59, 150, 0.15);
}
#corporatepolicy .corporatepolicy-body .bloc + .bloc {
    margin-top: 4em;
}
#corporatepolicy .corporatepolicy-body .bloc:nth-child(even) .col {
    margin-left: 350px;
}
#corporatepolicy .corporatepolicy-body .bloc:nth-child(even) .photo {
    left: 0;
}
#corporatepolicy .corporatepolicy-body .bloc:nth-child(even)::after {
    -webkit-transform: skew(-5deg) translate(-50%, -50%) rotate(-5deg);
    -moz-transform: skew(-5deg) translate(-50%, -50%) rotate(-5deg);
    -o-transform: skew(-5deg) translate(-50%, -50%) rotate(-5deg);
    background-color: rgba(227, 151, 90, 0.15);
}

@media screen and (max-width: 760px) {
    #corporatepolicy .corporatepolicy-body .bloc {
        padding: 0 3.13vw;
    }
    .container, .container2 {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }
    #corporatepolicy .corporatepolicy-body .col {
        width: 100%;
    }
    #corporatepolicy .corporatepolicy-body .ttl {
        font-size: 1.9rem;
    }
    #corporatepolicy .corporatepolicy-body .photo {
        position: relative;
        width: 100%;
        top: 0;
        transform: translateY(0);
        padding: 0 4.69vw 4.69vw;
        padding-top: 0px;
        padding-right: 4.69vw;
        padding-bottom: 4.69vw;
        padding-left: 4.69vw;
    }
    #corporatepolicy .corporatepolicy-body .bloc:nth-child(even) .col {
        margin-left: 0;
    }
	#corporatepolicy .corporatepolicy-body .bloc:nth-child(even) .photo {
		left: 0;
	}

}


.etcContact {
	display: inline-block;
	background: #ffffff;
	color:#3b6aba;
	border-radius: 999px;
	padding: 10px 20px;

	a {
		color:#3b6aba !important;
	}
}
@media screen and (max-width: 760px) {
	.etcContact {
		display: block;
		border-radius: 999px;
		padding: 5px 20px;

		a {
			display: block;
		}
	}
}

.flag {
	height: 1.1em;
	margin: 0 5px 0 0;
	vertical-align: middle;
}

a.download {
	color: #3b6aba;
	font-size: 1.2em;
}
a.download:hover {
	color: #6586c0;
}