@charset "utf-8";


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

/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;padding: 0px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	color: #000;		/*文字色*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,select,textarea,input {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
video {max-width: 100%;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;
	transition: 0.4s;
}
a:hover {
	color: #0074ea;
	text-decoration: none;
}

/*ヘッダーブロック（ロゴやメニューが入った最上段ブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: fixed;	/*ヘッダーを上部に固定する指定*/
	z-index: 1;
	left: 0px;			/*左からの配置場所の指定*/
	top: 0px;			/*上からの配置場所の指定*/
	width: 100%;		/*幅*/
	background: #fff;	/*背景色*/
	/*font-size: 13px;	/*文字サイズ*/
	height: 70px;		/*ヘッダーの高さ*/
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
/*ロゴ画像*/
header #logo img {
	height: 50px;	/*高さ。上のheaderのheightと合わせる。*/
	float: left;	/*左に回り込み*/
	margin:10px;
	/*background: #0074ea;	/*背景色*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#menubar {
	float: right;
}
/*メニュー１個あたりの指定*/
#menubar li {
	float: left;
	letter-spacing: 0.1em;
}
#menubar li a, .ddmenu-title {
	display: block;text-decoration: none;
	/*color: #fff;	/*文字色*/
	padding: 0px 20px;	/*上下、左右へのメニュー内の余白*/
	line-height: 70px;	/*行間。headerのheightと数字を合わせる。*/
}
/*マウスオン時の背景色*/
#menubar li a:hover {
	background: #D3E9FF !important;
	font-weight:bold;
}
/*ドロップダウンメニューの親メニューへの追加指定。基本指定は上の.ddmenu-titleにあります。*/
.ddmenu-title {
	padding-left: 40px;	/*アイコン分の余白を確保*/
	background: url(../images/arrow1.png) no-repeat 10px center / auto 25px;	/*アイコン画像の読み込み。最後の25pxは高さ指定。*/
}

/*小さい端末用メニューを非表示にする*/
#menubar-s,#menubar-s2 {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ドロップダウンメニュー（ddmenu）
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;z-index: 10;
	width: auto;
	margin-left: -40px;	/*.ddmenu-titleのpadding-leftと数字を合わせてマイナス記号をつける。*/
}
/*メニュー１個あたりの指定*/
#menubar ul.ddmenu li {
	float: none;
}
#menubar ul.ddmenu li a {
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒の事で0.8は色が80%出た状態。*/
	border: 1px solid rgba(255,255,255,0.4);	/*線の幅、線種、色。255,255,255は白の事で0.4は色が40%出た状態。*/
	border-top: none;	/*上の線だけ消す*/
}
/*１つ目のメニューへの追加指定*/
#menubar ul.ddmenu li:first-child a {
	border-top: 1px solid rgba(255,255,255,0.4);	/*上の線の指定*/
}
/*ドロップダウンのマウスオン事*/
li:hover ul.ddmenu {
	animation-name: opa1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 0.4S;	/*アニメーションの実行時間。0.4秒。*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}

/*お問い合わせ
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
ul.head-contact {
	float: right;	/*アイコンブロックを右に回り込み*/
	/*margin-right: 20px;	/*右側に空けるスペース*/
}
/*アイコン１個あたりの設定*/
ul.head-contact li {
	display: inline-block;	/*横並びにさせる指定*/
	padding: 0 20px;		/*上に空ける余白。header内の上下の配置バランスをここでとって下さい。*/
	background:#003278;
	color:#fff;
	line-height: 70px;
}
ul.head-contact li a{
	color:#fff;
	text-decoration: none;
}
/*アイコン画像の設定*/
ul.head-contact img {
	width: 30px;		/*画像の幅*/
	margin-right: 5px;	/*画像同士の余白*/
}




/*コンテンツ（contents）
---------------------------------------------------------------------------*/
/*コンテンツブロック全体*/
#contents {
	margin-top: 70px;	/*上に空ける余白。headerとの間に空けたいスペースを調整して下さい*/
	padding: 0 0 40px;		/*コンテンツ内の余白*/
}
/*トップページのコンテンツへの追加指定*/
.home #contents {
	margin-top: 570px;	/*スライドショーの高さに合わせて調整して下さい*/
}

#contents .inner{
	max-width:1200px;
	position:relative;
	margin:40px auto 0 auto;
}
/*h2タグ*/
#contents h2 {
	clear: both;
	margin-bottom: 20px;	/*下に空けるスペース*/
	font-size: 120%;		/*文字サイズ*/
	background: #ccc;		/*背景色*/
	text-align:center;
	/*color: #fff;			/*文字色*/
	/*border-left: 50px solid #0074ea;	/*左の線の幅、線種、色*/
	/*line-height: 50px;		/*行間*/
	/*padding-left: 30px;		/*左に空ける余白*/
}
#contents h2 img{
	height:80px;
	background:#fff;
	padding:10px 30px;
}
/*h2タグ内のspanタグ*/
#contents h2 span {
	font-size: 80%;	/*文字サイズ*/
	padding-left: 20px	/*左に空ける余白*/
}
/*h2タグ内のspanタグの文字の最初と最後に表示させる記号*/
#contents h2 span::before,#contents h2 span::after {
	content: "-";
}
/*h3タグ*/
h3 {
  position: relative;
  padding: 0 65px;
  text-align: center;
	color:#fff;
	font-size:2.0em;
}

h3:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background: #fff;
}

h3 span {
  position: relative;
  padding: 0 1em;
  background: #333;
}



/*段落タグ設定*/
#contents p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#contents p + p {
	margin-top: -5px;
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -10px;
}
#contents section + section {
	margin-top: 30px;
}


/*くわしく見る　ボタン
--------------------------------------*/
.btn-contact{
	background:#003278 url("../images/white-arrow.svg")no-repeat center left 20px;
	background-size:20px;
	color:#fff;
	text-align:center;
	border-radius:50px;
	width:20%;
	padding:10px;
	display: inline-block;
	margin-bottom:40px;
}




/*HOME　採用情報
---------------------------------------*/
.home-recruit{
	background:url("../images/recruit-image.jpg")no-repeat center center;
	background-size:cover;
	width:100%;
	position: relative;
	height:600px;
/* 垂直方向の中央揃え */
  display: flex;
  align-items: center;
}
/*HOME　採用情報キャッチコピー
------------------------------*/
.recruit-catch{
  width:70%;
	margin:0 auto;
	text-align:center;
	position:relative;
}
.recruit-catch img{
	width:100%;
}
/*採用情報はこちら　ボタン
--------------------------------------*/
.btn-recruit{
	background:#8c0000 url("../images/white-arrow.svg")no-repeat center left 20px;
	background-size:20px;
	color:#fff;
	font-size:1.5em;
	text-align:center;
	border-radius:50px;
	width:auto;
	padding:10px 100px;
	display: inline-block;
	margin-top:40px;
}

/*list 事業案内
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#contents .list-business {
	position: relative;overflow: hidden;
	display: flex;
	align-items: center;
	/*background: #000;	/*背景色*/
	/*color: #fff;		/*文字色*/
	margin-bottom: 30px;	/*ボックス同士に空けるスペース*/
}
/*リンクテキストの文字色*/
#contents .list-business a {
	color: #fff;
}
/*ボックス内のh4（見出し）タグ*/
#contents .list-business h4 {
	margin-bottom: 10px;	/*下のテキストとの間に空けるスペース*/
	font-size: 120%;		/*文字サイズ*/
	font-weight:bold;
}
/*ボックス内のp（段落）タグ*/
#contents .list-business p {
	padding: 0;		/*余白のリセット*/
}
/*ボックス内のfigure画像*/
#contents .list-business figure {
	float: right;	/*左に回り込み*/
	width: 40%;		/*画像の幅*/
}
#contents .list-business figure img{
	border-radius:6px;
}
/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list-business .text {
	float: left;	/*右に回り込み*/
	width: 54%;		/*幅*/
	margin: 3%;		/*外側に取るスペース。これがないと枠ギチギチに文字が表示されます。*/
	border-bottom:solid 1px #ccc;
}

/*list  SDGS
---------------------------------------------------------------------------*/
/*ボックスの設定*/
/*親要素設定　　子要素を横並びにするflexボックス*/
.rowbox{
	display:flex;
	flex-direction: row;
	justify-content: space-around;  /*均等に間隔をあける・両端にも間隔をあける*/
}
#contents .list {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	/*background: #ccc;	/*背景色*/
	/*color: #fff;		/*文字色*/
	margin-bottom: 30px;	/*ボックス同士に空けるスペース*/
	width:50%;
}
/*リンクテキストの文字色*/
#contents .list a {
	color: #fff;
}
/*ボックス内のh4（見出し）タグ*/
#contents .list h4 {
	margin-bottom: 10px;	/*下のテキストとの間に空けるスペース*/
	font-size: 120%;		/*文字サイズ*/
	font-weight:bold;
}
/*ボックス内のp（段落）タグ*/
#contents .list p {
	padding: 0;		/*余白のリセット*/
}
/*ボックス内のfigure画像*/
#contents .list figure {
	float: right;	/*左に回り込み*/
	width: 20%;		/*画像の幅*/
}
#contents .list figure img{
	border-radius:6px;
}
/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list .text {
	float: left;	/*右に回り込み*/
	width: 64%;		/*幅*/
	margin: 3%;		/*外側に取るスペース。これがないと枠ギチギチに文字が表示されます。*/
	border-bottom:solid 1px #ccc;
}

/*list4（トップページ4分割）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#contents .list-container{
	display:flex;
	flex-direction: row;
	padding:40px 0;
}
#contents .list4 {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	/*background: #000;	/*背景色*/
	color: #fff;		/*文字色*/
	width:25%;
	/*margin-bottom: 1px;	/*ボックス同士に空けるスペース*/	
}
/*リンクテキストの文字色*/
#contents .list4 a {
	color: #fff;
}
/*ボックス内のh4（見出し）タグ*/
#contents .list4 h4 {
	margin-bottom: 10px;	/*下のテキストとの間に空けるスペース*/
	font-size: 120%;		/*文字サイズ*/
}
/*ボックス内のp（段落）タグ*/
#contents .list4 p {
	padding: 0;		/*余白のリセット*/
}
/*ボックス内のfigure画像*/
#contents .list4 figure {
	float: left;	/*左に回り込み*/
	/*width: 25%;		/*画像の幅*/
}
/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list4 .text {
	float: right;	/*右に回り込み*/
	width: 64%;		/*幅*/
	margin: 3%;		/*外側に取るスペース。これがないと枠ギチギチに文字が表示されます。*/
}

/*btn1
---------------------------------------------------------------------------*/
.btn1 a {
	display: block;text-decoration: none;
	background: #0074ea url(../images/arrow4.png) no-repeat 95% center / 15px;	/*背景色、アイコン画像の読み込み。95%は左からの配置場所、最後の15pxは画像幅。*/
	color: #fff;	/*文字色*/
	max-width: 300px;	/*最大幅。画面幅が狭くなった場合、小さく縮小されていきます。*/
	text-align: center;	/*テキストをセンタリング*/
	padding: 5px 30px;	/*上下、左右へのボタン内の余白*/
	margin: 20px auto 0;	/*上、左右、下へのボタンの外側への余白*/
}
/*マウスオン事に少し位置をずらす指定*/
.btn1 a:hover {
	position: relative;
	left: 1px;
	top: 1px;
}


/*セカンド　共通
----------------------------------------------*/
/*セカンドタイトル*/
.secand-title {
  position: relative;
  padding: 1rem 2rem 0 0;
	margin-bottom:40px;
  border-bottom: 6px solid #ccc;
font-size:1.5em;
font-weight:bold;
}

.secand-title:before {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20%;
  height: 6px;
  content: '';
  background: #003278;
}

/*会社概要
---------------------------------*/
.philosophy{
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size:1.5em;
	margin:0 30%;
}
.philosophy ul li{
	list-style-type:decimal;
	text-align:left;
}
.philosophy span{
	font-size:16px;
}
/*社長　名前*/
.president{
	text-align:right;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size:1.5em;
	font-weight:bold;
}
.president span{
	font-size:0.7em;
	margin-right:1em;
}

/*会社概要*/
.outline-box{
	background:#eee;
	overflow: hidden;/*背景色が切れないようにする*/
}

.map figure{
	width:30%;
	float:left;
}

.map iframe{
	width:65%;
	float:right;
}


/*sdgs*/
.sdgs{
	text-align:center;
}
.sdgs img{
	height:80px;
}

/*お問い合わせはこちら*/
.contact-box{
	background:#333;
	overflow: hidden;
	text-align: center;
	padding:40px 0;
}

.contact-box img{
	height:40px;
}

/*事業案内
-----------------------------------------------*/
/*list3（3分割）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#contents .list-container3{
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}
.list3 {
	flex-direction: column;			/*子要素を縦並びにする*/
	width: 32%;		/*幅。３列になります。*/
}
/*リンクテキストの文字色*/
.list3 a {
	color: #fff;
}
/*ボックス内のh4（見出し）タグ*/
.list3 h4 {
	margin-bottom: 10px;	/*下のテキストとの間に空けるスペース*/
	font-size: 120%;		/*文字サイズ*/
}
/*ボックス内のp（段落）タグ*/
.list3 p {
	padding: 0;		/*余白のリセット*/
}
/*ボックス内のfigure画像*/
.list3 figure {
	float: left;	/*左に回り込み*/
	/*width: 25%;		/*画像の幅*/
}
/*「class="text"」を指定したブロック。テキストブロック。*/
.list3 .text {
	text-align:center;
	/*width: 64%;		/*幅*/
	margin: 1.5% 1.5% 5% 1.5%;		/*外側に取るスペース。これがないと枠ギチギチに文字が表示されます。*/
}

/*採用情報
-----------------------------------------*/
.secand-recruit{
	background:url("../images/recruit-image.jpg")no-repeat center top;
	background-size:cover;
	width:100%;
	position: relative;
	height:500px;
/* 垂直方向の中央揃え */
  display: flex;
  align-items: center;
}


/*list2（2分割）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#contents .list-container2{
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}
.list2 {
	flex-direction: column;			/*子要素を縦並びにする*/
	width: 45%;		/*幅。2列になります。*/
}
/*リンクテキストの文字色*/
.list2 a {
	color: #fff;
}
/*ボックス内のh4（見出し）タグ*/
.list2 h4 {
	margin-bottom: 10px;	/*下のテキストとの間に空けるスペース*/
	font-size: 120%;		/*文字サイズ*/
		background:#003278;
	padding:10px;
	color:#fff;
	font-weight:bold;
	text-align:center;
}
/*ボックス内のp（段落）タグ*/
.list2 p {
	padding: 0;		/*余白のリセット*/
}
/*ボックス内のfigure画像*/
.list2 figure {
	float: left;	/*左に回り込み*/
	/*width: 25%;		/*画像の幅*/
}
/*「class="text"」を指定したブロック。テキストブロック。*/
.list2 .text {
	/*width: 64%;		/*幅*/
	margin: 1.5% 1.5% 5% 1.5%;		/*外側に取るスペース。これがないと枠ギチギチに文字が表示されます。*/
}

.recruit-title{
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	color:#0050C0;
	font-size:2.0em;
	font-weight:bold;
	text-align:center;
}
/*背景グレーのタイトル*/
.title-gray{
	background:#ccc;
	padding:10px;
	font-weight:bold;
	font-size:1.2em;
}
/*青い太文字*/
.blue-text{
	color:#005BBB;
	font-size:1.2em;
	font-weight:bold;
}

/*タブ切り替え
------------------------------------*/
/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);*/
  width: 100%;
  margin: 0 auto;}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/3);
  height: 50px;
  border-bottom: 3px solid #003278;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
}


/*選択されているタブのコンテンツのみを表示*/
#job01:checked ~ #job01_content,
#job02:checked ~ #job02_content,
#job03:checked ~ #job03_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #003278;
  color: #fff;
}

/*募集要項　テーブル
--------------------------
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta-recruit caption {
	/*border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border:none;
	/*border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	/*background: #fff;	/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;	/*ボックス内の余白*/
}
/*.ta-recruitテーブル*/
.ta-recruit {
	width: 100%;
	table-layout: fixed;
	margin: 0 0 40px;
	/*background: #fff;	/*背景色*/
}
.ta-recruit, .ta-recruit td, .ta-recruit th {
	border:none;	/*テーブルの枠線の幅、線種、色*/
	padding: 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*左側ボックス*/
.ta-recruit th {
	width: 150px;	/*幅*/
	text-align: center;	/*センタリング*/
	background:#ddd;
	border:solid 5px #fff;
	font-weight:bold;
}
.ta-recruit td{
	border:solid 5px #eee;
	background:#fff;
}
.ta-recruit tr{
	border-bottom:solid 1px #ccc;
}

/*リクルートバナー　テーブル*/
.ric-bnr{
	width:100%;
}
.ric-bnr td{
	text-align:center;
}

/*お問合せご応募こちら　ボタン
--------------------------------------*/
.btn-order{
	background:#8c0000 url("../images/white-arrow.svg")no-repeat center left 20px;
	background-size:20px;
	color:#fff;
	font-size:1.5em;
	text-align:center;
	border-radius:50px;
	width:30%;
	padding:10px;
	display: inline-block;

}



/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	/*text-align: center;*/
	font-size: 90%;		/*文字サイズ*/
	color: #fff;			/*文字色*/
	background: #003278;	/*背景色*/
}
footer a {color: #fff;}
footer a:hover {color: #fff;}
footer .pr {display: block;}


/*住所など
-------------------------------*/
.address{
	padding:20px;
	color:#fff;
	float:left;
	width:30%;
}
.address img{
	height:40px;
	margin-bottom:20px;
}

/*リンクバナー
-------------------------------------*/
.bnr{
	float:right;
	width:25%;
	padding:20px;
	display: inline-block;
}
.bnr ul li{
	border:solid 1px #ccc;
	background:#fff;
	text-align:center;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 20px 3%;		/*上下、左右へのボックス内の余白*/
	background: #0074ea;	/*背景色*/
}
/*リンクテキスト*/
#footermenu a {
	text-decoration: none;
	opacity: 0.7;	/*透明度。70%の色がついた状態。*/
}
/*マウスオン時*/
#footermenu a:hover {
	opacity: 1;		/*透明度。100%色がついた状態。*/
}
/*１行分の設定*/
#footermenu ul {
	float: left;		/*左に回り込み*/
	width: 23%;			/*幅。今回は４列作っているので、この数字と下のpadding-rightとpadding-leftを合計した数字が１列分になる。(23%＋1%＋1%)×4列＝100%*/
	padding-right: 1%;	/*右に空ける余白*/
	padding-left: 1%;	/*左に空ける余白*/
	text-align: left;	/*テキストを左寄せ*/
}
/*見出し*/
#footermenu li.title, #footermenu li.title a {
	opacity: 1;	/*透明度。100%色がついた状態。*/
	font-size: 110%;	/*文字サイズ*/
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	/*background: #000;	/*背景色*/
}
#copyright a {text-decoration: none;}
#copyright a:hover {color: #666;}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0px 20px;		/*上下、左右へのブロック内の余白*/
	margin-bottom: 40px;	/*ブロックの下(外側)に空ける余白*/
	height: 100px;			/*高さ*/
	overflow: auto;			/*上の高さを超えるコンテンツ量になった場合にスクロールバーを出す*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}

/*お知らせ一覧ページ
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new-list dl {
	padding: 20px;		/*上下、左右へのブロック内の余白*/
	/*margin-bottom: 40px;	/*ブロックの下(外側)に空ける余白*/
	/*height: 100px;			/*高さ*/
	overflow: auto;			/*上の高さを超えるコンテンツ量になった場合にスクロールバーを出す*/
}
/*日付設定*/
#new-list dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}
/*記事設定*/
#new-list dd {
	padding-left: 9em;
	padding-bottom:20px;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}
/*タイトル*/
.news-title{
	font-weight:bold;
}


/*ta1設定
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	/*border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border:none;
	/*border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	/*background: #fff;	/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;	/*ボックス内の余白*/
}
/*ta1テーブル*/
.ta1 {
	width: 100%;
	table-layout: fixed;
	margin: 0 0 40px;
	/*background: #fff;	/*背景色*/
}
.ta1, .ta1 td, .ta1 th {
	border:none;	/*テーブルの枠線の幅、線種、色*/
	padding: 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*左側ボックス*/
.ta1 th {
	width: 150px;	/*幅*/
	text-align: center;	/*センタリング*/
	background:#ddd;
	border:solid 5px #eee;
	font-weight:bold;
}
.ta1 td{
	border:solid 5px #eee;
	background:#fff;
}
.ta1 tr{
	border-bottom:solid 1px #ccc;
}

/*inputボタン
---------------------------------------------------------------------------*/
#contents input[type="submit"].btn,
#contents input[type="button"].btn,
#contents input[type="reset"].btn {
	padding: 5px 10px;		/*上下、左右へのボックス内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	font-size: 20px;		/*文字サイズ*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #eee;		/*背景色*/
}
/*マウスオン時の設定*/
#contents input[type="submit"].btn:hover,
#contents input[type="button"].btn:hover,
#contents input[type="reset"].btn:hover {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
}

/*NEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*通常時のボタンは非表示*/
body .nav-fix-pos-pagetop a {display: none;}
/*fixmenu_pagetop.jsで設定している設定値になったら出現するボタンスタイル*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	z-index: 1;
	position: fixed;
	bottom: 20px;	/*下から20pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	background: #666;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事。0.6は60%色がついた状態。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: opa1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
	background: #ff0000;
	color:#fff;
	padding: 10px 25px !important;
	margin-bottom: 20px;
}
p.check a {color: #fff;}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 45px;
}
ol {
	padding: 0 20px 20px 45px;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #222;padding: 5px 10px;border-radius: 4px;border: 1px solid #333;color: #fff;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.mt15,.mt1em {margin-top: 15px !important;}
.mt30 {margin-top: 30px !important;}
.mt50 {margin-top: 50px !important;}
.clear {clear: both;}
.color1, .color1 a {color: #0074ea !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fl {float: left;}
.fr {float: right;}
.big1 {font-size: 40px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.dn {display: none;}
.sh {display: none;}
.border-top{border-top:solid 1px #ccc;}
.link {display: block;margin-top: -80px;padding-top: 80px;}

/*画面幅1100px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1100px){
/*ロゴ画像*/
header #logo img {
	height: 30px;	/*高さ。上のheaderのheightと合わせる。*/
	float: left;	/*左に回り込み*/
	margin:10px;
	/*background: #0074ea;	/*背景色*/
}
	
/*トップページのコンテンツへの追加指定*/
.home #contents {
	margin-top: 580px;	/*スライドショーの高さに合わせて調整して下さい*/
}
#contents .inner{
	max-width:1200px;
	position:relative;
	margin:40px 2% 0 2%;
}	
	
/*会社概要
---------------------------------*/
.philosophy{
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size:1.5em;
	margin:0 25%;
}

}

/*画面幅900px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px){
	
/*headerのお問い合わせを非表示*/
ul.head-contact {display:none;}
	


/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック全体*/
#menubar-s {
	overflow: auto;
	height: 100%;
	text-align: left;
	position: fixed;
	z-index: 99;
	top: 0px;
	width: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	animation-name: opa1;		/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	font-size: 16px;	/*文字サイズ*/
}
/*メニュー１個あたりの設定と、子メニューの見出し。*/
#menubar-s ul li a,#menubar_hdr2 {
	display: block;text-decoration: none;
	padding: 10px 15px;	/*上下、左右へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;		/*文字色*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*子メニュー
---------------------------------------------------------------------------*/
/*子メニューの見出しの追加。基本は上のブロックで設定しています。*/
#menubar_hdr2 {
	padding-left: 35px;
}
/*子メニューメニューブロック全体*/
#menubar-s2 {
	display: block;
	margin-top: 10px;
	background: rgba(0,0,0,0.5);	/*背景色*/
	border: 1px solid #666;		/*上の線の幅、線種、色*/
	border-bottom: none;		/*下の線のみ消す*/
}
/*「＞」アイコン設定*/
#menubar_hdr2.close {
	background: url(../images/arrow2.png) no-repeat 10px 18px / 18px;
}
/*「＾」アイコン設定*/
#menubar_hdr2.open {
	background: url(../images/arrow3.png) no-repeat 10px 18px / auto 18px;
}
/*子メニュー１個あたりの設定*/
#menubar-s2 li a {
	color: #fff !important;	/*文字色*/
	padding: 5px;	/*余白*/
	border-bottom: 1px solid #666 !important;		/*下の線の幅、線種、色*/
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;
	z-index: 100;
	top: 0px;		/*上からの配置場所*/
	right: 10px;	/*右からの配置場所*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background:#003278 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background:#003278 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}
	
	
/*会社概要
---------------------------------*/
.philosophy{
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size:1.5em;
	margin:0 5%;
}

/*住所など
-------------------------------*/
.address{
	padding:20px 3%;
	color:#fff;
	float:left;
	width:40%;
}
.address img{
	height:40px;
	margin-bottom:20px;
}

/*リンクバナー
-------------------------------------*/
.bnr{
	float:right;
	width:40%;
	padding:20px 3%;
	display: inline-block;
}
.bnr ul li{
	border:solid 1px #ccc;
}		
	

/*facebookやtwitterなどのアイコン
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
ul.icon {
	float: left;	/*アイコンブロックを左に回り込み*/
	margin-left: 20px;	/*左側に空けるスペース*/
}

/*お問合せご応募こちら　ボタン
--------------------------------------*/
.btn-order{
	background:#8c0000 url("../images/white-arrow.svg")no-repeat center left 20px;
	background-size:20px;
	color:#fff;
	font-size:1.5em;
	text-align:center;
	border-radius:50px;
	width:50%;
	padding:10px;
	display: inline-block;
}
	

}




/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;
	font-size: 2.93vw;
}

/*ヘッダーブロック（ロゴやメニューが入った最上段ブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 50px;		/*ヘッダーの高さ*/
	text-align: center;
}
/*ロゴ画像*/
header #logo img {
	/*float: none;	/*左に回り込み*/
	height:30px;
}

/*facebookやtwitterなどのアイコン
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
ul.icon {
	float: none;
	margin: 0px;
}
/*アイコン１個あたりの設定*/
ul.icon li {
	padding-top: 0px;
}

/*コンテンツ（contents）
---------------------------------------------------------------------------*/
/*コンテンツブロック全体*/
#contents {
	margin-top: 50px;	/*上に空ける余白。headerとの間に空けたいスペースを調整して下さい*/
}
/*トップページのコンテンツへの追加指定*/
.home #contents {
	margin-top: 400px;	/*スライドショーの高さに合わせて調整して下さい*/
}
/*h2タグ*/
#contents h2 img{
	height:40px;

}
/*h3タグ*/
/*h3タグ*/
h3 {
  position: relative;
  padding: 0 65px;
  text-align: center;
	color:#fff;
	font-size:1.3em;
}
/*段落タグ設定*/
#contents p {
	padding: 0px 15px 20px;	/*上、左右、下への余白*/
}

	
/*内側の枠
	-------------------------------------------------------------*/
.inner{
	padding: 0 3%;
}	

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 50px;
}
	
	
/*list4（トップページ4分割）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#contents .list-container{
	display:flex;
	flex-direction: row;
	padding:40px 0;
	flex-wrap: wrap;
}
#contents .list4 {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	/*background: #000;	/*背景色*/
	color: #fff;		/*文字色*/
	width:50%;
	/*margin-bottom: 1px;	/*ボックス同士に空けるスペース*/	
}
	
/*くわしく見る　ボタン
--------------------------------------*/
.btn-contact{
	background:#003278 url("../images/white-arrow.svg")no-repeat center left 20px;
	background-size:20px;
	color:#fff;
	text-align:center;
	border-radius:50px;
	width:60%;
	padding:10px;
	display: inline-block;
	margin-bottom:40px;
}
	
	
/*会社概要
---------------------------------*/
.philosophy{
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-size:1.5em;
	margin:0 5%;
}
/*SDGｓ
---------------------------------*/	
	.rowbox{
		flex-direction: column;
	}
#contents .list{
	width:100%;
}
	
/*HOME　採用情報
---------------------------------------*/
.home-recruit{
	background:url("../images/recruit-image.jpg")no-repeat center center;
	background-size:cover;
	width:100%;
	position: relative;
	height:300px;
}
/*HOME　採用情報キャッチコピー
------------------------------*/
.recruit-catch {
	width:90%;
	margin:0 auto;
}

/*採用情報はこちら　ボタン
--------------------------------------*/
.btn-recruit{
    margin-top:20px;
	width:60%;
	padding:10px 40px;
}
	
/*お問合せご応募こちら　ボタン
--------------------------------------*/
.btn-order{
	background:#8c0000 url("../images/white-arrow.svg")no-repeat center left 20px;
	background-size:20px;
	color:#fff;
	font-size:1.5em;
	text-align:center;
	border-radius:50px;
	width:80%;
	padding:10px;
	display: inline-block;
}

	
/*住所など
-------------------------------*/
.address{
	padding:20px 3%;
	color:#fff;
	float:left;
	width:94%;
}
.address img{
	height:40px;
	margin-bottom:20px;
}

/*リンクバナー
-------------------------------------*/
.bnr{
	float:left;
	width:94%;
	padding:20px 3%;
	display: inline-block;
}
.bnr ul li{
	border:solid 1px #ccc;
}	

	
/*事業案内
	-------------------------------*/
/*ボックスの設定*/
#contents .list-business {
	position: relative;
	overflow: hidden;
	display: inherit;
	align-items: center;
	/*background: #000;	/*背景色*/
	/*color: #fff;		/*文字色*/
	margin-bottom: 30px;	/*ボックス同士に空けるスペース*/
}
/*ボックス内のfigure画像*/
#contents .list-business figure {
	float: left;	/*左に回り込み*/
	width: 94%;		/*画像の幅*/
	margin: 0 3%;	
}
#contents .list-business figure img{
	/*border-radius:6px;*/
}
/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list-business .text {
	float: left;	/*右に回り込み*/
	width: 100%;		/*幅*/
	margin: 3% 0;		/*外側に取るスペース。これがないと枠ギチギチに文字が表示されます。*/
	border-bottom:solid 1px #ccc;
}
	
	
/*SDGS
	-------------------------------*/
/*ボックスの設定*/
#contents .list {
	position: relative;
	overflow: hidden;
	display: inherit;
	align-items: center;
	/*background: #000;	/*背景色*/
	/*color: #fff;		/*文字色*/
	margin-bottom: 30px;	/*ボックス同士に空けるスペース*/
}
/*ボックス内のfigure画像*/
#contents .list figure {
	float: right;	/*左に回り込み*/
	width: 30%;		/*画像の幅*/
	margin: 0 3%;	
}
#contents .list figure img{
	border-radius:6px;
}
/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list .text {
	float: left;	/*右に回り込み*/
	width: 64%;		/*幅*/
	margin: 3% 0;		/*外側に取るスペース。これがないと枠ギチギチに文字が表示されます。*/
	border-bottom:solid 1px #ccc;
}
	
/*実績案内*/
.list3 {
	flex-direction: column;			/*子要素を縦並びにする*/
	width: 48%;		/*幅。３列になります。*/
}
	
	
/*事業案内
-----------------------------------------------*/
/*list3（3分割）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#contents .list-container3{
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}
.list3 {
	flex-direction: column;			/*子要素を縦並びにする*/
	width: 96%;		/*幅。３列になります。*/
	margin: 2%;
}
	
/*お問合せ覧
---------------------------------*/
.contact-box img{
	height:30px;
}

	
/*会社概要
---------------------------------------*/
.map figure{
	width:94%;
	margin:3%;
	float:left;
}

.map iframe{
	width:96%;
	margin:3%;
	float:left;
}
	

/*採用情報
-----------------------------------------*/
.secand-recruit{
	background:url("../images/recruit-image.jpg")no-repeat center top;
	background-size:cover;
	width:100%;
	position: relative;
	height:300px;
}

	
/*タブのスタイル  縦並びにする*/
.tab_item {
  width: calc(100%/1);
}
/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 40px 0px 0;
  clear: both;
  overflow: hidden;
}
	
/*募集要項　　タブ内のテーブル*/	
.ta-recruit, .ta-recruit td, .ta-recruit th {
	border:none;	/*テーブルの枠線の幅、線種、色*/
	padding: 5px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*左側ボックス*/
.ta-recruit th {
	width: 50px;	/*幅*/
	text-align: center;	/*センタリング*/
	background:#ddd;
	border:solid 5px #fff;
	font-weight:bold;
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 20px;
}
ol {
	padding: 0 20px 20px 20px;
}	

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu {display: none;}
.big1 {font-size: 20px !important;}
.sh {display:block;}
.pc {display:none;}
.ws,.wl {width: 94%;}
.fl {float: none;}
.fr {float: none;}

}
