@charset "utf-8";

/*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=BIZ+UDPGothic&display=swap');
/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------*/
/*各cssファイルの読み込み
---------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #000;	/*全体の文字色*/
	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: 1.7;		/*行間*/
	background: #eee;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 20px;}
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.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	text-decoration: none;
}
a:hover {
	color: #47aeff;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	max-width: 1500px;	/*サイトの最大幅*/
	margin: 0 auto;
	padding: 0 3%;		/*上下、左右へのボックス内の余白*/
}


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




/*トップページのキャッチコピー*/
.catch {
	margin:0 5%;
	width: 90%;		/*ロゴ画像の幅を上書き*/
	top: 35%;	/*上に空ける余白の上書き。*/
	text-align:center;
	position:absolute;
}

.catch img {
	width: 100%;
}



/*ヘッダー右上メニュー
---------------------------------------------------------------------------*/
/*メニュー全体のブロック設定*/
#header-nav {
	position: absolute;
	right: 3%;	/*ヘッダーの右から3%の場所に配置。*/
	top: 30px;	/*ヘッダーの上から30pxの場所に配置。*/
	letter-spacing: -0.1em;	/*文字間隔を少し広げる指定*/
	font-size: 16px;	/*文字サイズ*/
}
/*メニュー１個あたりの設定*/
#header-nav li {
	float: left;	/*左に回り込み*/
	margin-left: 10px;	/*メニュー間に空けるスペース*/
	padding:5px;
}
#header-nav li a {
	text-decoration: none;display: inline-block;
	/*border: 1px solid #fff;	/*枠線の幅、線種、色*/
	padding: 10px 40px;		/*上下、左右へのメニュー内の余白*/
	background:#fdb44b url("../../images/arrow4.png")no-repeat left 10px center /20px;
	color:#000;
}
#header-nav li a:hover {
	background:#ccc url("../../images/arrow4.png")no-repeat left 10px center /20px;	/*マウスオン時の背景色*/
	color:#000;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;
	overflow: hidden;
	position: relative;
	padding-left:100px;
	/*background: #2788c5 url(../images/bg_menu.jpg) repeat-x center center;	/*背景色、背景画像の読み込み。※古いブラウザ用。*/
	/*background: #2788c5 url(../images/bg_menu.jpg) repeat-x center center / 100px;	/*背景色、背景画像の読み込み。*/
    background: #00204a;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.4);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.4は色が40%ついた状態の事。*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 20%;	/*メニュー幅（100÷5個=20%）*/
}
#menubar li a {
	display:  block;text-decoration: none;
	line-height: 1.6;	/*行間*/
	color: #fff;		/*文字色*/
	font-size: 1.4vw;	/*文字サイズ*/
	height: 45px;		/*高さ。下のmargin(10+10=20)とpadding-top(10)の数字を合計して「100」になるようにする。*/
	margin: 10px 0;		/*上下、左右に空けるメニューの外のスペース。この部分はマウスオン時に反応しない(色がかわらない)部分になります。*/
	padding-top: 15px;	/*メニュー内の上に空ける余白。上下のバランスをここで調整して下さい。*/
	padding-left: 40px;	/*メニュー内の左側に空ける余白。アイコンとのバランスを調整します。*/
	border-radius: 5px;	/*角丸のサイズ。マウスオン時に角が丸くなる設定です。*/
}

/*アイコンの設定*/
#menubar li.mark-track{
	background: url("../images/track-icon.svg") no-repeat left 10px center/ 20px;
}
#menubar li.mark-mail{
	background: url("../images/mail-icon.svg") no-repeat left 10px center/ 20px;
}

/*「募集要項」メニューの設定
アイコンの読み込み。左から15pxの場所に配置。背景画像の一番上(0)を基準に読み込む。サイズは50px。*/
#menubar li.boshu {
	background: url(../images/mark_menu.png) no-repeat 15px 10px / 30px;
}
/*「社員インタビュー」メニューの設定
アイコンの読み込み。左から15pxの場所に配置。背景画像の上から100px(-100px)を基準に読み込む。サイズは50px。*/
#menubar li.day {
	background: url(../images/mark_menu.png) no-repeat 15px 10px / 30px;
}
/*「平野商運とは」メニューの設定
アイコンの読み込み。左から15pxの場所に配置。背景画像の上から100px(-200px)を基準に読み込む。サイズは50px。*/
#menubar li.about {
	background: url(../images/mark_menu.png) no-repeat 15px 10px / 30px;
}
/*「よくある質問」メニューの設定
アイコンの読み込み。左から15pxの場所に配置。背景画像の上から100px(-300px)を基準に読み込む。サイズは50px。*/
#menubar li.shitsumon{
	background: url(../images/mark_menu.png) no-repeat 15px 10px / 30px;
}
/*「お問合せ」メニューの設定
アイコンの読み込み。左から15pxの場所に配置。背景画像の上から100px(-400px)を基準に読み込む。サイズは50px。*/
#menubar li.contact {
	background: url(../images/mark_menu.png) no-repeat 15px 10px / 30px;
}
/*装飾文字（英語表記）の設定*/
#menubar li a span {
	text-shadow: none;display: block;
	font-size: 12px;		/*文字サイズ*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くする設定*/
	padding-left: 3px;		/*左に少しだけ余白を作る。*/
	opacity: 0.6;			/*60%だけ色がついた状態。*/
}
/*マウスオン時メニューと、現在表示中(current)メニューの設定*/
#menubar li a:hover,#menubar li.current a {
	background: rgba(255,255,255,0.15);	/*0,0,0は黒の事で、0.15は15%だけ色がついた状態の事。*/
}
/*スマホ用メニューを表示させない*/
#menubar-s-sub {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}




/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
body.is-fixed-menu #menubar.nav-fix-pos {
	position: fixed;
	width: 100%;
	top: 0px;
}
body.is-fixed-menu .contents:first-of-type {
	/*margin-top: 100px;	/*メニューブロックの高さを指定する。背景画像も高さ100pxなので通常はこのままで。*/
}
/*※以下の２ブロックのスタイルの「中身」は、上の２ブロックのスタイルと単純に合わせておいて下さい。fixmenuスクリプトを２つ使う為に必要な設定になります。*/
body.is-fixed #menubar.nav-fix-pos {
	position: fixed;
	width: 100%;top: 0px;
}
body.is-fixed .contents:first-of-type {
	margin-top: 100px;
}


/*サブメニューfixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
body.inner .sub:nav-fix-pos {
	position: fixed;width: 100%;top: 0px;
}
body.inner .sub:first-of-type {
	margin-top: 100px;	/*メニューブロックの高さを指定する。背景画像も高さ100pxなので通常はこのままで。*/
}
/*※以下の２ブロックのスタイルの「中身」は、上の２ブロックのスタイルと単純に合わせておいて下さい。fixmenuスクリプトを２つ使う為に必要な設定になります。*/
body.inner .sub:nav-fix-pos {
	position: fixed;width: 100%;top: 0px;
}
body.inner .sub:first-of-type {
	margin-top: 100px;
}

/*contents
---------------------------------------------------------------------------*/

.contents {
	clear: both;
	overflow: hidden;
	padding-top: 40px;		/*上に空けるボックス内の余白*/
	padding-bottom: 40px;	/*下に空けるボックス内の余白*/
	padding-left:100px;		/*コンテンツ内の余白*/
}
/*トップページのコンテンツへの追加指定*/
.home #contents {
	margin-top: 0px;	/*スライドショーの高さに合わせて調整して下さい*/
}
/*コンテンツのh2タグ設定*/
.contents h2 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下に空けるスペース*/
	padding: 10px 20px;		/*上下、左右への余白*/
	font-size: 20px;		/*文字サイズ*/
	background: #00204a;	/*背景色*/
	color: #fff;			/*文字色*/
	border-radius: 5px;		/*角丸のサイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる設定*/
}
/*h2タグの１文字目の設定。左側のアクセントラインです。*/
.contents h2::first-letter {
	border-left: 3px solid #fff;	/*左の線の幅、線種、色*/
	padding-left: 15px;				/*線と文字列との間に空ける余白*/
}
/*h2タグに「class="simple"」を指定した場合の追加設定。大文字でセンタリングされる見出しです。*/
.contents h2.simple {
	background: none;padding: 0;
	font-size: 48px;	/*文字サイズ*/
	text-align: center;	/*文字を中央に*/
	color: #2788c5;		/*文字色*/
}
.contents h2.simple::first-letter {
	border: none;
	padding: 0;
}
.contents h2.simple + p {
	margin-top: -20px;
}
/*コンテンツのh3タグ設定*/
.contents h3 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下に空けるスペース*/
	padding: 6px 15px;		/*上下、左右への余白*/
	font-size: 18px;		/*文字サイズ*/
	border: 1px solid #ccc;		/*枠線の幅、線種、色*/
	border-radius: 5px;		/*角丸のサイズ*/
	background: #fff;		/*背景色*/
	color: #333;			/*文字色*/
}
/*h3タグの１文字目への設定。左側のアクセントラインです。*/
.contents h3::first-letter {
	border-left: 3px solid #47aeff;	/*左の線の幅、線種、色*/
	padding-left: 15px;				/*線と文字列との間に空ける余白*/
}
/*コンテンツの段落タグ設定*/
.contents p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他*/
.contents h2 + p,
.contents h3 + p {
	margin-top: -10px;
}

.contents section{
	overflow: hidden;
}
.contents section + section {
	padding-top: 30px;
}
.contents p + p {
	margin-top: -8px;
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
.main {
	float: right;	/*右に回り込み*/
	width: 75%;		/*ブロックの幅*/
}

/*subコンテンツ（左側のブロック）
---------------------------------------------------------------------------*/
.sub {
	float: left;	/*左に回り込み*/
	width: 20%;		/*ブロックの幅*/
}
/*h2見出しタグ設定*/
.sub h2 {
	margin-bottom: 0;
	letter-spacing: normal;
	font-size: 16px;
	background: #00204a;	/*背景色*/
	color: #fff;			/*文字色*/
	text-align: center;		/*文字をセンタリング*/
	padding: 10px 0;		/*上下、左右への見出し内の余白*/
	border-radius: 5px 5px 0px 0px;	/*上、右、下、左への角丸の指定*/
}
.sub h2::first-letter {
	border: none;padding: 0;
}
.sub h2 + p,
.sub h3 + p {
	margin-top: 0;
}

/*サブメニュー（左側ブロックのメニュー）
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
.sub .submenu {
	margin-bottom: 20px;	/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
.sub .submenu li a {
	text-decoration: none;display: block;
	padding: 10px 10px;	/*上下、左右のボックス内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-top: none;		/*上の線だけ消す*/
	background: #fff;		/*背景色*/
	color: #000;	/*文字色*/
}
.sub .submenu li a:hover {
	color: #47aeff;
}

/*subコンテンツ内のlistブロック
---------------------------------------------------------------------------*/
.sub .list {
	overflow: hidden;
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.4;	/*行間*/
	background: #fff;	/*背景色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-top: none;	/*上の線だけ消す*/
	padding: 5px;		/*ボックス内の余白*/
	color: #000;		/*文字色*/
}
.sub .list a {
	color: #666;		/*リンクテキストの文字色*/
}
/*最後のlistボックスへの設定*/
.sub .list:last-of-type {
	margin-bottom: 20px;	/*ボックスの下に空ける余白*/
}
/*画像*/
.sub .list figure {
	float: left;		/*左に回り込み*/
	width: 30%;			/*画像幅*/
	margin-right: 5px;	/*画像の右に空けるスペース*/
}
/*h4見出しの文字色*/
.sub .list h4, .sub .list h4 a {
	color: #47aeff;
}

/*各ページ下部に配置している「アクセス」ブロック
---------------------------------------------------------------------------*/
/*左側ブロック（地図が入っている方）*/
.href-left {
	float: left;	/*左に回り込み*/
	width: 49%;		/*ブロック幅*/
}
/*右側ブロック（詳細情報）*/
.href-right {
	float: right;	/*右に回り込み*/
	width: 49%;		/*ブロック幅*/
}
/*ソーシャルメディアアイコン*/
.icon img {
	width: 40px;	/*画像の幅*/
}


/*box1（１カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box1 {
	overflow: hidden;
	background: #fff;		/*背景色*/
	color: #000;			/*文字色*/
	margin: 0 2% 20px;		/*上、左右、下へのボックスの外に空けるスペース*/
	border: 1px solid #eeeae2;	/*枠線の幅、線種、色*/
	padding: 3%;
}
/*box1内のh4(見出し)タグ*/
.box1 h4 {
	color: #fe0000;		/*文字色*/
	font-size: 26px;	/*文字サイズ*/
	border-bottom: 2px dotted #47aeff;	/*下線の幅、線種、色*/
	margin-bottom: 10px;	/*下に空けるスペース*/
}
/*box1内のp(段落)タグ*/
.box1 p {padding: 0 !important;line-height: 1.5;}
.box1 p a {color: #666;}
/*box2内のbtn1。本体の設定はこの下の下のブロックにあります。*/
.box1 p.btn1 {margin-top: 20px;}


/*listブロック
---------------------------------------------------------------------------*/
/*listブロック全体を囲むブロック（※.list-squareでも使用しています）*/
.list-container {
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding:0 0 40px 0;
}
/*list-column（4列ブロック）
---------------------------------------------------------------------------*/
/*１カラムあたりの設定*/
.contents .list-column04 {
	display: flex;
	flex-direction: column;			/*中のブロックを並べる向きの指定。これは縦に並べる意味。*/
	width: 21%;						/*ブロック幅*/
	margin: 20px 1%;			/*ブロックの下に空ける余白*/
	padding:1%;
	background: #fff;				/*背景色*/
	/*color: #fff;					/*文字色*/
	/*border-radius: 5px;				/*角丸の指定。ほんの少し角が丸くなります。*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
}

/*ボックス内のh4（見出し）タグ*/
.contents .list-column04 h4 {
	margin-bottom: 20px;	/*下のテキストとの間に空けるスペース*/
	/*font-size: 100%;		/*文字サイズ*/
	font-weight:bold;
	color:#00204a;
	text-align:center;
	line-height:1.5em;
}
/*ボックス内のp（段落）タグ*/
.contents .list-column04 p {
	padding: 0;		/*余白のリセット*/
}
.contents .list-column04 p a img{
	margin-right:10px;
	width:30px;
}

/*「class="text"」を指定したブロック。テキストブロック。*/
.contents .list-column04 .text {
	padding: 5%;			/*ブロック内の余白*/
	flex: 1 0 auto;
}
/*IEバグ対応*/
.contents .list-column04 figure {
	min-height: 0%;
	border:solid 1px #ccc;
	text-align:center;
	padding:5px;
}

.box-50th{
	width:100%;
	text-align:center;
	padding:40px 0 0;
	float:left;
}

/*リンクボタン
----------------------------*/
.link-btn{
	background:#fdb44b url("../../images/arrow4.png")no-repeat left 10px center / 20px;
	padding:5px 10px;
	border-radius:20px;
	color:#000;
	font-weight:bold;
	font-size:120%;
	margin:20px auto 0 ;
	width:300px;
	text-align:center;
}


/*box2（３カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box2 {
	position: relative;
	width: 24.5%;		/*ボックスの幅*/
	float: left;		/*左に回り込み*/
	text-align: center;	/*内容をセンタリング*/
	padding: 3%;		/*ボックス内の余白*/
	padding-bottom: 75px;	/*下の余白だけ上書き*/
	background: #fff;		/*背景色*/
	border: 1px solid #eeeae2;	/*枠線の幅、線種、色*/
	margin: 0 0 20px 2%;		/*上、右、下、左へのボックスの外に空けるスペース*/
	line-height: 1.5;	/*行間*/
	color: #000;		/*文字色*/
}
/*box2内の津島市*/
.box2 span.date {
	position: absolute;
	left: -10px;	/*左から-10pxの場所に配置*/
	top: -10px;		/*上から-10pxの場所に配置*/
	background: #00204a;	/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 12px;		/*文字サイズ*/
	width: 75px;			/*幅*/
	height:55px;
	padding-top:20px;
	line-height: 1.5;		/*高さ*/
	border-radius: 50%;		/*円形にする*/
	text-align: center;		/*文字をセンタリング*/
	transform: rotate(-20deg);	/*回転の角度*/
}

/*box2内のあま市*/
.box2 span.date-ama {
	position: absolute;
	left: -10px;	/*左から-10pxの場所に配置*/
	top: -10px;		/*上から-10pxの場所に配置*/
	background: #67ad1b;	/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 12px;		/*文字サイズ*/
	width: 50px;			/*幅*/
	line-height: 50px;		/*高さ*/
	border-radius: 50%;		/*円形にする*/
	text-align: center;		/*文字をセンタリング*/
	transform: rotate(-20deg);	/*回転の角度*/
}



/*box2内のp(段落)タグ*/
.box2 p {
	padding: 0 !important;
	height: 4.5em;		/*高さ。*/
	overflow: hidden;	/*オーバーした分は非表示に。*/
	font-size: 14px;	/*文字サイズ*/
	text-align: left;	/*文字を左よせ*/
}
/*段落タグにリンクが設定された場合の文字色*/
.box2 p a {
	color: #666;
}
/*box2内のh4(見出し)タグ*/
.box2 h4 {
	color: #fe0000;	/*文字色*/
	height: 1.5em;	/*高さ*/
	overflow: hidden;	/*オーバーした分は非表示に。*/
	font-size:120%;
	font-weight:bold;
}
/*box2内のfigure(画像)タグ*/
.box2 figure {
	margin-bottom: 5px;	/*下に空けるスペース*/
}
/*box2内のbtn1。本体の設定はこの下のブロックにあります。*/
.box2 p.btn1 {
	height: auto;
	position: absolute;
	bottom: 30px;	/*box2の下から30pxの場所に配置*/
	width: 80%;		/*ボタンの幅*/
}
.box2 p.btn1 a {
	display: block;
	padding: 5px 0;	/*上下、左右へのボタン内の余白*/
}






/*box3（2カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box3 {
	position: relative;
	width: 30%;		/*ボックスの幅*/
	float: left;		/*左に回り込み*/
	text-align: center;	/*内容をセンタリング*/
	padding: 1%;		/*ボックス内の余白*/
	/*padding-bottom: 75px;	/*下の余白だけ上書き*/
	background: #fff;		/*背景色*/
	border: 1px solid #eeeae2;	/*枠線の幅、線種、色*/
	margin: 0 0 20px 0.5%;		/*上、右、下、左へのボックスの外に空けるスペース*/
	line-height: 1.5;	/*行間*/
	color: #000;		/*文字色*/
}
/*box3内の津島市*/
.box3 span.date {
	position: absolute;
	left: -10px;	/*左から-10pxの場所に配置*/
	top: -10px;		/*上から-10pxの場所に配置*/
	background: #002896;	/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 12px;		/*文字サイズ*/
	width: 75px;			/*幅*/
	height:55px;
	padding-top:20px;
	line-height: 1.5;		/*高さ*/
	border-radius: 50%;		/*円形にする*/
	text-align: center;		/*文字をセンタリング*/
	transform: rotate(-20deg);	/*回転の角度*/
}

/*box3内のあま市*/
.box3 span.date-ama {
	position: absolute;
	left: -10px;	/*左から-10pxの場所に配置*/
	top: -10px;		/*上から-10pxの場所に配置*/
	background: #67ad1b;	/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 12px;		/*文字サイズ*/
	width: 50px;			/*幅*/
	line-height: 50px;		/*高さ*/
	border-radius: 50%;		/*円形にする*/
	text-align: center;		/*文字をセンタリング*/
	transform: rotate(-20deg);	/*回転の角度*/
}



/*box3内のp(段落)タグ*/
.box3 p {
	padding: 0 !important;
	height: 4.5em;		/*高さ。*/
	overflow: hidden;	/*オーバーした分は非表示に。*/
	font-size: 14px;	/*文字サイズ*/
	text-align: left;	/*文字を左よせ*/
}
/*段落タグにリンクが設定された場合の文字色*/
.box3 p a {
	color: #666;
}
/*box2内のh4(見出し)タグ*/
.box3 h4 {
	color: #fe0000;	/*文字色*/
	height: 1.5em;	/*高さ*/
	overflow: hidden;	/*オーバーした分は非表示に。*/
	font-size:120%;
	font-weight:bold;
}
/*box2内のfigure(画像)タグ*/
.box3 figure {
	margin-bottom: 5px;	/*下に空けるスペース*/
}
/*box2内のbtn1。本体の設定はこの下のブロックにあります。*/
.box3 p.btn1 {
	height: auto;
	position: absolute;
	bottom: 30px;	/*box2の下から30pxの場所に配置*/
	width: 80%;		/*ボタンの幅*/
}
.box3 p.btn1 a {
	display: block;
	padding: 5px 0;	/*上下、左右へのボタン内の余白*/
}


/*box1、box2、box3のfigure写真共通設定
---------------------------------------------------------------------------*/
.box1 figure a:hover,.box2 figure a:hover,.box3 figure a:hover {
	opacity: 0.8;	/*マウスオン時に80%透明度にする*/
}


/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*質問と答えのボックス全体を囲むブロック*/
.faq {
	padding: 0 20px 10px;	/*上、左右、下へのボックス内余白*/
	
}
/*質問*/
.faq dt {
	font-weight: bold;	/*太字にする設定*/
	color: #00204a;		/*文字色*/
	padding-top:10px;
}
/*回答*/
.faq dd {
	padding-bottom: 10px;	/*下に空けるスペース*/
	border-bottom:dotted 1px #ccc;
}

.faq dd ul li{
	margin-left:30px;
	list-style-type:disc;
}


/*社員インタビュー
------------------------------------------------*/
/*FAQ
---------------------------------------------------------------------------*/
/*FAQボックス全体*/
.interview {
	padding: 0 5px;	/*上下、左右へのボックス内の余白*/
}

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

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

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

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



/*btn1
---------------------------------------------------------------------------*/
p.btn1 a {
	text-decoration: none;display: inline-block;
	border: 1px solid transparent;	/*枠線の幅、線種、色。transparentは透明の事。*/
	background: #00204a;	/*背景色*/
	color: #fff !important;	/*文字色*/
	border-radius: 3px;		/*角丸のサイズ*/
	padding: 5px 30px;		/*上下、左右へのボタン内の余白*/
	text-align: center;		/*文字をセンタリング*/
}
/*マウスオン時*/
p.btn1 a:hover {
	border: 1px solid #00204a;	/*枠線の幅、線種、色。*/
	background: #fff;			/*背景色*/
	color: #00204a !important;	/*文字色*/
}

/*写真を３列に並べたレイアウト
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.photo {
	position: relative;
	float: left;	/*左に回り込み*/
	width: 33.3%;	/*幅*/
}
.photo a:hover img {
	opacity: 0.8;	/*マウスオン時に80%の透明度にする*/
}
/*photoボックス内の段落(p)タグ*/
.photo p {
	padding: 5px 0 !important;	/*上下、左右への段落タグ内の余白*/
	position: absolute;
	bottom: 0px;	/*photoボックスの下から0pxの場所に配置*/
	width: 100%;	/*幅*/
	background: #111;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.5);	/*背景色。0,0,0は黒の事で0.5は50%色がついた状態のこと*/
	color: #fff;	/*文字色*/
	text-align: center;	/*文字をセンタリング*/
	font-size: 80%;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0px 20px;	/*上下、左右へのボックス内の余白*/
	margin-bottom: 20px;
}
/*日付設定*/
#new dt {
	float: left;	/*左に回り込み*/
	width: 9em;		/*幅*/
	letter-spacing: 0.1em;
	color: #47aeff;	/*文字色*/
}
/*記事設定*/
#new dd {
	padding-left: 9em;	/*左に空ける余白*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #fff;		/*背景色*/
	color: #ff0000;			/*文字色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
	font-size:20px!important;
}
/*ta1設定*/
.ta1 {
	width: 100%;
	margin: 0 auto 20px;
	background: #fff;	/*背景色*/
	color: #000;			/*文字色*/
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;		/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
/*リンクテキストの文字色*/
.ta1 a {color: #666;}
/*ta1のtdタグ内のリストタグ*/
.ta1 td ul.disc {padding: 0 5px 0 20px;}
/*ta1のtdタグ内の段落(p)タグ*/
.ta1 p {padding: 0;}

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

/*パンくずナビ
---------------------------------------------------------------------------*/
/*メニュー全体を囲むブロック*/
.pan {
	/*background: #0044A2;	/*背景色（古いブラウザ用）*/
	/*background: rgba(0,40,150,1);	/*背景色。0,0,0は黒の事で、0.7は70%色がついた状態の事。*/
	/*margin-bottom: 40px;			/*ボックスの下に空けるスペース*/
	margin-top: -40px;				/*ボックスを上のメニューにつけるための指定*/
	padding: 10px 3%;				/*ボックス内の余白。上下、左右。*/
	color: #000;					/*文字色*/
}
/*メニュー１個あたりの設定*/
.pan li {
	display: inline-block;	/*横並びにさせる指定*/
	padding: 5px;		/*余白*/
}
/*リンクテキストの文字色*/
.pan a {
	color: #000;
}
/*マウスオン時リンクテキストの文字色*/
.pan a:hover {
	color: #999;
}
/*リストタグの頭に加える記号*/
.pan li::before {
	content: ">";	/*このテキストを表示させる*/
	color: #000;	/*文字色*/
	padding-right: 12px;	/*記号とテキストとの余白*/
}
/*１番目のリストタグの頭に加える文字のリセット*/
.pan li:first-child::before {
	content: "";	/*テキストを空にする*/
}

/*背景色（bg1）
---------------------------------------------------------------------------*/
.bg1 {
	background: #e7dac4 url(../images/bg1.jpg);	/*背景色、背景画像の読み込み。※古いブラウザ用。*/
	background: #e7dac4 url(../images/bg1.jpg) center / 100px;	/*背景色、背景画像の読み込み。*/
}

/*背景色（bg2）
---------------------------------------------------------------------------*/
.bg2 {
	/*background: #00204a;	/*背景色、背景画像の読み込み。※古いブラウザ用。*/
	background: #00204a;	/*背景色、背景画像の読み込み。*/
	color: #fff;	/*文字色*/
}
.bg2 a {color: #fff;}
.bg2 h2 {color: #fff !important;}


/*背景色（bg3）
---------------------------------------------------------------------------*/
.bg3 {
	background: #2788c5 url(../images/bg1.jpg);	/*背景色、背景画像の読み込み。※古いブラウザ用。*/
	background: #2788c5 url(../images/bg1.jpg) center / 100px;	/*背景色、背景画像の読み込み。*/
	color: #fff;	/*文字色*/
}
.bg3 a {color: #666;}
.bg3 h2 {color: #036 !important;}



/*背景色（bg-access）※全ページ下部にある「アクセス」ブロック
---------------------------------------------------------------------------*/
.bg-access {
	background: #184062 url(../images/bg-access.jpg);	/*背景色、背景画像の読み込み。※古いブラウザ用。*/
	background: #184062 url(../images/bg-access.jpg) center / cover;	/*背景色、背景画像の読み込み。*/
}
.bg-access,.bg-access a {color: #fff;}
/*bg-access内のテーブル(ta1)*/
.bg-access .ta1 {
	background: transparent;
	color: #fff;
}
/*bg-access内の「h2 class="simple"」見出し*/
.bg-access h2.simple {
	color: #fff !important;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*アニメーションのキーフレーム設定（変更不要）*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*デフォルトでは非表示に*/
body .nav-fix-pos-pagetop a {display: none;}
/*ボタンの設定*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 100;position: fixed;
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*角丸のサイズ。円形にする。正方形がいいならこの１行削除。*/
	bottom: 8px;	/*下から30pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は色が60%ついた状態の事。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

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

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
.check {
	background-color: #fe0000;	/*背景色*/
	border-radius:40px;
	color:#fff;				/*文字色*/
	padding: 10px 25px !important;	/*上下、左右へのボックス内余白*/
	margin-bottom: 20px;
	text-align:center;
}
.check a {color: #fff;}


/*checkブロック。黄色
---------------------------------------------------------------------------*/

.check-y {
	background-color: #fdb44b;	/*背景色*/
	border-radius:40px;
	color:#000;				/*文字色*/
	padding: 10px 0 !important;	/*上下、左右へのボックス内余白*/
	margin-bottom: 20px;
	text-align:center;
	width:60%;
	margin:20px auto;
}
.check-y a {color: #000;
text-decolation:none!important;
}

/*checkブロック。青
---------------------------------------------------------------------------*/
p.check-b {
	
	background-color: #00204a;	/*背景色*/
	border-radius:40px;
	color:#fff;				/*文字色*/
	padding: 10px 25px !important;	/*上下、左右へのボックス内余白*/
	margin-bottom: 20px;
	text-align:center;
}
p.check-b a {color: #000;
text-decolation:underline;
}

/*インタビュー
------------------------------------------------*/
.secand-top{
	background: url("../images/interview/secand-top.jpg")no-repeat center center;
	background-size:cover;
	height:200px;
	margin-bottom:40px;
	position: relative;
	text-align:center;
}

.interview-catch {
	font-size:36px;
	color:#fff;
	font-weight:bold;
	padding-top:65px;
}
/*listブロック
---------------------------------------------------------------------------*/
/*listブロック全体を囲むブロック*/
.list-container {
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	/*justify-content: space-between;	並びかたの種類の指定*/
}

/*１個あたりのボックス設定*/
.list-interview {
	flex-direction: column;			/*子要素を縦並びにする*/
	width: 29%;			/*幅。３列になります。*/
	margin-right: 1%;	/*右側へのマージン*/
	margin-left:1%;
	margin-bottom:20px;
	padding:1%;
	border-radius:4px;
	background:#fff;
}

/*背景ドライバー*/
.bg-driver{
background:#fff url("../images/interview/driver-icon.svg")no-repeat right 5px bottom 5px /30%;
}
/*背景ドライバー 女性*/
.bg-driver-women{
background:#fff url("../images/interview/driver-icon_pink.svg")no-repeat right 5px bottom 5px /30%;
}
/*背景デスクワーク*/
.bg-deskwork{
background:#fff url("../images/interview/deskwork-icon.svg")no-repeat right 5px bottom 5px /30%;
}

/*ボックス内のfigure画像*/
.list-interview figure {
	width: 100%;
	margin-right: 0;
}

/*ボックス内のtextブロック*/
.list-interview .text {
	margin-right: 0;
}

/*ボックス内のh4タグ*/
.list-interview h4 {
	margin: 10px 0;	/*上下、左右への余白*/
	font-weight:bold;
	color:#00204a;
	font-size:120%;
	border-bottom:solid 1px #ccc;
}

/*お問合せはこちら*/
.contact-box-outer{
	width:100%;
	text-align:center;
}
.contact-box{
	background:#00204a;
	border-radius:8px;
	padding:10px;
	width:60%;
	margin:0 auto ;
}
.contact-box img{
	height:40px;
	margin:10px 0;
}
.contact-box h4{
	background:#fff;
	border-radius:4px;
	padding:5px;
	text-align:center;
	font-size:20px;
	font-weight:bold;
	margin:10px 20%;
}
.contact-box .text{
	color:#fff;
	font-size:20px;
}

/*indeed*/
.indeed-box{
	background:#fff;
	border-radius:8px;
	padding:10px;
	width:60%;
	margin:0 auto;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.mb30 {margin-bottom: 30px !important;}
.mb40 {margin-bottom: 40px !important;}
.mt15,.mt1em {margin-top: 15px;}
.mt40 {margin-top: 40px !important;}
.clear {clear: both;}
.ofh {overflow: hidden;}
ul.disc {padding: 0em 25px 20px;list-style: disc;text-align:left;}
.color1, .color1 a {color: #47aeff;}/*水色*/
.color2, .color2 a {color: #F00;}/*赤*/
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.c-kadomaru {
	text-align: center; 
	font-size:26px;
	background:#fff;
	border-radius:6px;
}
.c01 {text-align: center;
       color:#000;}
.c img{
	margin-bottom:20px;
}
.r {text-align: right;}
.l {text-align: left;}
img.fr,figure.fr {float: right;margin: 10px;}
img.fl,figure.fl {float: left;margin: 10px;}
.fr {float: right;}
.fl {float: left;}
.w30p {width: 30%;}
.w65p {width: 65%;}
.w25p {width: 25%;}
.w70p {width: 70%;}


.big1 {
	font-size: 28px;
	letter-spacing: 0.1em;
	background:url(../images/logo-white.png) no-repeat left center / 100px;
	padding:5px 0px 5px 150px;
	}
.big2 {
	font-size: 28px;
	letter-spacing: 0.1em;
	padding:5px 0px 5px 0px;
	}
.foot-logo{width:200px;margin-bottom:10px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}

/*ページ内リンク
------------------------------------------------*/
.link {display: block;margin-top: -80px;padding-top: 80px;}

iframe{
	width:100%;
}

.em{ font-size:20px;}

.rec-em{ font-size:30px; font-weight:bold;}

.answer{
	color:#F66;
	font-weight:bold;
}


.tel-sp{
	pointer-events:none;
}

.greeting{
	font-size:18px;
}

.name{
	line-height:4.0em;
	float:right;
}

.map-sp{
	display:none;
}





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

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li a {
	font-size: 1.4vw;	/*文字サイズ*/
	height: 45px;		/*高さ。下のmargin(10+10=20)とpadding-top(10)の数字を合計して「100」になるようにする。*/
	margin: 10px 0;		/*上下、左右に空けるメニューの外のスペース。この部分はマウスオン時に反応しない(色がかわらない)部分になります。*/
	padding-top: 20px;	/*メニュー内の上に空ける余白。上下のバランスをここで調整して下さい。*/
}


	
.tel-sp{
	pointer-events:none;
}



/*インタビュー*/
/*ボックス内のh4タグ*/
.list-interview h4 {
	margin: 10px 0;	/*上下、左右への余白*/
	font-weight:bold;
	color:#00204a;
	font-size:100%;
	border-bottom:solid 1px #ccc;
}

}



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

/*メインメニュー
---------------------------------------------------------------------------*/

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）の設定をなくす
---------------------------------------------------------------------------*/
body.is-fixed-menu .contents:first-of-type,
body.is-fixed .contents:first-of-type {
	margin-top: 0px;
}


/*ロゴ画像*/
.home header h1 {
	position:static;
	margin: 0 auto;
	width: 200px;		/*ロゴ画像の幅*/
	padding-top: 18px;	/*上に空ける余白。上下のバランス調整をここでとって下さい。*/
}
/*contents
---------------------------------------------------------------------------*/
/*h2タグに「class="simple"」を指定した場合の追加設定。大文字でセンタリングされる見出しです。*/
.contents h2.simple {
	font-size: 30px;	/*文字サイズ*/
}

/*main,sub
---------------------------------------------------------------------------*/
.main, .sub{
	float: none;
	width: auto;
}

/*subコンテンツ内のlistブロック
---------------------------------------------------------------------------*/
.sub .list {
	line-height: 2;		/*行間*/
	padding: 10px;		/*ボックス内の余白*/
}
/*画像*/
.sub .list figure {
	width: 15%;			/*画像幅*/
	margin-right: 10px;	/*画像の右に空けるスペース*/
}
	
	
/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li a {
	font-size: 1.2vw;	/*文字サイズ*/
	height: 25px;		/*高さ。下のmargin(10+10=20)とpadding-top(10)の数字を合計して「100」になるようにする。*/
	margin: 10px 0;		/*上下、左右に空けるメニューの外のスペース。この部分はマウスオン時に反応しない(色がかわらない)部分になります。*/
	padding-top: 10px;	/*メニュー内の上に空ける余白。上下のバランスをここで調整して下さい。*/
}

/*その他
---------------------------------------------------------------------------*/
.sh {display:block;}
.pc {display:none;}
.link {margin-top: 0;padding-top: 0;}

.tel-sp{
	pointer-events:none;
}



	
/*インタビュー*/
/*１個あたりのボックス設定*/
.list-interview {
	flex-direction: column;			/*中の子要素を縦並びにする*/
	width: 43%;			/*幅。３列になります。*/
	margin-right: 2%;	/*右側へのマージン*/
	margin-left:2%;
	margin-bottom:20px;
	padding:10px;
	border-radius:4px;
}
	
/*ボックス内のh4タグ*/
.list-interview h4 {
	margin: 10px 0;	/*上下、左右への余白*/
	font-weight:bold;
	color:#00204a;
	font-size:100%;
	border-bottom:solid 1px #ccc;
}
	
	
/*認証・表彰*/
/*list-column（4列ブロック）
---------------------------------------------------------------------------*/
/*１カラムあたりの設定*/
.contents .list-column04 {
	display: flex;
	flex-direction: column;			/*中のブロックを並べる向きの指定。これは縦に並べる意味。*/
	width: 29%;						/*ブロック幅*/
	margin: 20px 1%;			/*ブロックの下に空ける余白*/
	padding:1%;
	background: #fff;				/*背景色*/
	/*color: #fff;					/*文字色*/
	/*border-radius: 5px;				/*角丸の指定。ほんの少し角が丸くなります。*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
}
/*ボックス内のh4（見出し）タグ*/
.contents .list-column04 h4 {
	margin-bottom: 20px;	/*下のテキストとの間に空けるスペース*/
	font-size: 80%;		/*文字サイズ*/
	font-weight:bold;
	color:#00204a;
	text-align:center;
	line-height:1.5em;
}

	
/*お問合せ*/
	
.contact-box{
	background:#00204a;
	border-radius:8px;
	padding:10px;
	width:80%;
	margin:0 auto;
}
	
.check-y {
	background-color: #fdb44b;	/*背景色*/
	border-radius:40px;
	color:#000;				/*文字色*/
	padding: 10px 0 !important;	/*上下、左右へのボックス内余白*/
	margin-bottom: 20px;
	text-align:center;
	width:80%;
	margin:20px auto;
}
	
/*indeed*/
.indeed-box{
	background:#fff;
	border-radius:8px;
	padding:10px;
	width:80%;
	margin:0 auto;
}

	
}



/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){
	
/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;
	overflow: hidden;
	position: fixed;
	bottom:0;
	z-index: 99;
	padding-left:0;
	margin-left:0;
	/*background: #2788c5 url(../images/bg_menu.jpg) repeat-x center center;	/*背景色、背景画像の読み込み。※古いブラウザ用。*/
	/*background: #2788c5 url(../images/bg_menu.jpg) repeat-x center center / 100px;	/*背景色、背景画像の読み込み。*/
    background: #00204a;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.4);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.4は色が40%ついた状態の事。*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 33%;	/*メニュー幅（100÷5個=20%）*/
}
/*幅広メニュー*/
#menubar li .wide{
	width:50%!important;
	}
	
#menubar li a {
	display:  block;text-decoration: none;
	line-height: 1.6;	/*行間*/
	color: #fff;		/*文字色*/
	font-size: 2.0vw;	/*文字サイズ*/
	height: 20px;		/*高さ。下のmargin(10+10=20)とpadding-top(10)の数字を合計して「100」になるようにする。*/
	margin: 5px 0;		/*上下、左右に空けるメニューの外のスペース。この部分はマウスオン時に反応しない(色がかわらない)部分になります。*/
	padding-top: 5px;	/*メニュー内の上に空ける余白。上下のバランスをここで調整して下さい。*/
	padding-left: 35px;	/*メニュー内の左側に空ける余白。アイコンとのバランスを調整します。*/
	border-radius: 5px;	/*角丸のサイズ。マウスオン時に角が丸くなる設定です。*/
}	
	
/*「募集要項」メニューの設定
アイコンの読み込み。左から15pxの場所に配置。背景画像の一番上(0)を基準に読み込む。サイズは50px。*/
#menubar li.boshu {
	background: url(../images/mark_menu.png) no-repeat 5px -100px / 25px;
}
/*「社員インタビュー」メニューの設定
アイコンの読み込み。左から15pxの場所に配置。背景画像の上から100px(-100px)を基準に読み込む。サイズは50px。*/
#menubar li.day {
	background: url(../images/mark_menu.png) no-repeat 5px -100px / 25px;
}
/*「平野商運とは」メニューの設定
アイコンの読み込み。左から15pxの場所に配置。背景画像の上から100px(-200px)を基準に読み込む。サイズは50px。*/
#menubar li.about {
	background: url(../images/mark_menu.png) no-repeat 5px -100px / 25px;
}
/*「よくある質問」メニューの設定
アイコンの読み込み。左から15pxの場所に配置。背景画像の上から100px(-300px)を基準に読み込む。サイズは50px。*/
#menubar li.shitsumon{
	background: url(../images/mark_menu.png) no-repeat 5px -100px / 25px;
}
/*「お問合せ」メニューの設定
アイコンの読み込み。左から15pxの場所に配置。背景画像の上から100px(-400px)を基準に読み込む。サイズは50px。*/
#menubar li.contact {
	background: url(../images/mark_menu.png) no-repeat 5px -100px / 25px;
}
	
.contents{
	margin-top: 0px;	/*上に空ける余白。headerとの間に空けたいスペースを調整して下さい*/
	padding-left:0px;		/*コンテンツ内の余白*/
}
/*contents
---------------------------------------------------------------------------*/
.contents {
	padding-top: 20px;		/*上に空けるボックス内の余白*/
	padding-bottom: 20px;	/*下に空けるボックス内の余白*/
}
.contents section + section {
	margin-top: 20px;
}

/*サブメニュー（左側ブロックのメニュー）
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
.sub .submenu li a {
	padding: 10px;	/*ボックス内の余白*/
}

/*box1（１カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box1 {
	margin: 0 0 20px 0;		/*上、右、下、左へのボックスの外に空けるスペース*/
}

/*box2（３カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box2 {
	width: auto;		/*ボックスの幅*/
	float: none;		/*左に回り込み*/
	padding: 3%;		/*余白の上書き*/
	margin: 0 0 20px 0;		/*上、右、下、左へのボックスの外に空けるスペース*/
	line-height: 2;	/*行間*/
}
/*box2内のp(段落)タグ*/
.box2 p {
	height: auto;	/*高さ。*/
	font-size: 100%;		/*文字サイズ*/
	margin-bottom: 15px;
}
/*box2内のh4(見出し)タグ*/
.box2 h4 {
	height: auto;	/*高さ*/
}
/*box2内のbtn1*/
.box2 p.btn1 {
	position: static;
	width: 99%;		/*ボタンの幅*/
}

/*box3（2カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box3 {
	width: auto;		/*ボックスの幅*/
	float: none;		/*左に回り込み*/
	padding: 3%;		/*余白の上書き*/
	margin: 0 0 20px 0;		/*上、右、下、左へのボックスの外に空けるスペース*/
	line-height: 2;	/*行間*/
}
/*box2内のp(段落)タグ*/
.box3 p {
	height: auto;	/*高さ。*/
	font-size: 100%;		/*文字サイズ*/
	margin-bottom: 15px;
}
/*box2内のh4(見出し)タグ*/
.box3 h4 {
	height: auto;	/*高さ*/
}
/*box2内のbtn1*/
.box3 p.btn1 {
	position: static;
	width: 99%;		/*ボタンの幅*/
}


/*各ページ下部に配置している「アクセス」ブロック
---------------------------------------------------------------------------*/
/*左側ブロック、右側ブロック*/
.href-left,.href-right {
	float: none;
	width: auto;
	padding-bottom: 30px;
}

/*パンくずナビ
---------------------------------------------------------------------------*/
/*メニュー全体を囲むブロック*/
.pan {
	margin-bottom: 20px;	/*ボックスの下に20pxのスペースを空ける*/
	margin-top: -20px;		/*ボックスを上のメニューにつけるための指定*/
	padding: 0;				/*ボックス内の余白。上下、左右。*/
}

.tel-sp{
	pointer-events:none;
}
	
/*その他
	----------------------------*/
.c-kadomaru {
	text-align: center; 
	font-size:18px;
	background:#fff;
	border-radius:6px;
	}
.c-kadomaru img{width:50%;}
	
	
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	bottom: 70px;	/*下から30pxの場所に配置*/
}

}



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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
}



/*ヘッダー右上メニュー
---------------------------------------------------------------------------*/
/*メニュー全体のブロック設定*/
#header-nav {
	top: 145px;			/*ヘッダーの上から10pxの場所に配置。*/
	right:0px;
	font-size: 11px;	/*文字サイズ*/
}
	
/*ヘッダー右上メニュー
---------------------------------------------------------------------------*/
/*メニュー全体のブロック設定*/
.home #header-nav {
	top: 260px;			/*ヘッダーの上から10pxの場所に配置。*/
	right:25%;
	font-size: 11px;	/*文字サイズ*/
}


/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	top: 10px;	/*上から10pxの場所に配置*/
}



/*contents
---------------------------------------------------------------------------*/
/*コンテンツのh2タグ設定*/
.contents h2 {
	padding: 5px 10px;	/*上下、左右への余白*/
	font-size: 14px;	/*文字サイズ*/
	margin-bottom: 10px;
}
/*コンテンツのh3タグ設定*/
.contents h3 {
	padding: 3px 10px;	/*上下、左右への余白*/
	font-size: 12px;	/*文字サイズ*/
	margin-bottom: 10px;
}
/*h2タグに「class="simple"」を指定した場合の追加設定。大文字でセンタリングされる見出しです。*/
.contents h2.simple {
	font-size: 18px;	/*文字サイズ*/
	padding-bottom:15px;
}
/*コンテンツの段落タグ設定*/
.contents p {
	padding: 0px 10px 10px;	/*上、左右、下への余白*/
}
/*他*/
.contents h2 + p,
.contents h3 + p {
	margin-top: -5px;
}



/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 5px;
}
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}

/*box1とbox2
---------------------------------------------------------------------------*/
/*h4(見出し)タグ*/
.box1 h4,.box2 h4,.box3 h4 {
	font-size: 16px;	/*文字サイズ*/
}


/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*質問と答えのボックス全体を囲むブロック*/
.faq {
	padding: 0 10px 10px;	/*上、左右、下へのボックス内余白*/
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
img.fr,figure.fr,img.fl,figure.fl {float: none;margin: 0;width: 100%;}
.fr, .fl {float: none;}
.w30p, .w65p {width: auto;}
.w70p {width: auto;}
.w25p {width: auto; text-align:center;}
.big1 {
	font-size: 17px;
	letter-spacing: normal;
	padding:5px 0px 5px 0px;
	line-height:1.2em;
	background:none;
	}
.em{ font-size:14px;}
.rec-em{ font-size:20px; font-weight:bold;}


/*トップページのキャッチコピー*/
.catch {
	margin:0 5%;
	width: 90%;		/*ロゴ画像の幅を上書き*/
	padding-top: 0px;	/*上に空ける余白の上書き。*/
	text-align:center;
}


.big2 {
	font-size: 16px;
	letter-spacing: 0.1em;
	padding:5px 0px 5px 0px;
	}

.tel-sp{
	pointer-events:auto;
}

/*社長挨拶
----------------------------------------------------------*/
.greeting{
	font-size:13px;
}

.name{
	line-height:2.0em;
	float:right;
}


.map-pc{
	display:none;
}

.map-sp{
	display:inline;
}
	
	
/*インタビュー*/
/*１個あたりのボックス設定*/
.list-interview {
	flex-direction: column;			/*子要素を縦並びにする*/
	width: 100%;			/*幅。３列になります。*/
	margin-right: 0%;	/*右側へのマージン*/
	margin-bottom:20px;
	padding:10px;
	border-radius:4px;
}
	
/*ボックス内のh4タグ*/
.list-interview h4 {
	margin: 10px 0;	/*上下、左右への余白*/
	font-weight:bold;
	color:#00204a;
	font-size:120%;
	border-bottom:solid 1px #ccc;
}
	
/*認証・表彰*/
/*list-column（4列ブロック）
---------------------------------------------------------------------------*/
/*１カラムあたりの設定*/
.contents .list-column04 {
	display: flex;
	flex-direction: column;			/*中のブロックを並べる向きの指定。これは縦に並べる意味。*/
	width: 46%;						/*ブロック幅*/
	margin: 20px 1%;			/*ブロックの下に空ける余白*/
	padding:1%;
	background: #fff;				/*背景色*/
	/*color: #fff;					/*文字色*/
	/*border-radius: 5px;				/*角丸の指定。ほんの少し角が丸くなります。*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
}
	
/*ボックス内のh4（見出し）タグ*/
.contents .list-column04 h4 {
	margin-bottom: 20px;	/*下のテキストとの間に空けるスペース*/
	font-size: 90%;		/*文字サイズ*/
	font-weight:bold;
	color:#00204a;
	text-align:center;
	line-height:1.5em;
}

/*インタビュー　キャッチ*/
.interview-catch {
	font-size:26px;
	color:#fff;
	font-weight:bold;
	padding-top:60px;
}
	
	
/*お問合せ*/
	
.contact-box{
	background:#00204a;
	border-radius:8px;
	padding:10px;
	width:90%;
	margin:0 auto;
}
	
.contact-box h4{
	background:#fff;
	border-radius:4px;
	padding:5px;
	text-align:center;
	font-size:16px;
	font-weight:bold;
	margin:10px 0%;
}
.contact-box .text{
	color:#fff;
	font-size:16px;
}
	
.check-y {
	background-color: #fdb44b;	/*背景色*/
	border-radius:40px;
	color:#000;				/*文字色*/
	padding: 10px 0 !important;	/*上下、左右へのボックス内余白*/
	margin-bottom: 0px;
	text-align:center;
	width:90%;
	margin:20px auto;
}
	
/*indeed*/
.indeed-box{
	background:#fff;
	border-radius:8px;
	padding:10px;
	width:90%;
	margin:0 auto;
}

}
