@charset "utf-8";

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

/*全体の設定
---------------------------------------------------------------------------*/
html,body,#container {height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #2a3439;	/*全体の文字色*/
	font-family: "Noto Sans JP", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
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: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #2a3439;		/*リンクテキストの色*/
	transition: 0.2s;	/*マウスオン時の移り変わるまでの時間設定。0.2秒。*/
}
a:hover {
	color: #59b9d5;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*inner
---------------------------------------------------------------------------*/
.inner {
	max-width: 1200px;	/*サイトの最大幅*/
	margin: 0 auto;
	padding-left: 1% !important;
	padding-right: 1% !important;
}

/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 70px;
	background: #59b9d5;
	position: relative;
}
/*トップページのヘッダーと、スライドショーブロック共通設定。他の端末サイズでの再設定が複数あるので変更する際は注意。*/
#top header, #mainimg {
	height: 380px;	/*スライドショー表示領域の高さの設定。*/
}
/*ロゴ画像（※トップページ以外）*/
header #logo {
	width: 200px;
	padding-top: 15px;
}
/*トップページのロゴ画像*/
#top #logo img {
	position: fixed;	/*スクロールしても固定表示させる設定。*/
	left: 5%;	/*左から10%の場所に配置。*/
	top: 10px;	/*上から50pxの場所に配置。*/
	z-index: 1;
	width: 150px;	/*画像の幅*/
}

/*メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	position: relative;z-index: 10;
	text-align: center;	/*文字を中央に*/
	background: #fff;	/*背景色*/
	border-bottom: 1px solid #2a3439;	/*下線の幅、線種、色*/
}
#menubar > ul {overflow: hidden;}
/*メニュー１個あたりの設定*/
#menubar ul li {
	float: left;	/*左に回り込み*/
	width: 20%;		/*幅。今回は５個メニューがあるので100÷5=20*/
}
#menubar ul li a {
	text-decoration: none;display: block;
	height: 63px;	/*メニューブロックの高さ*/
	padding-top: 12px;	/*メニューブロックの高さプラス、上に空ける余白。メニューテキストの上下の配置バランスをここで調整して下さい。*/
}
/*飾り文字*/
#menubar ul li span {
	display: block;
	font-size: 10px;	/*文字サイズ*/
	color: #999;		/*文字色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ドロップダウンメニュー用
----------------------------------------------------------------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;padding: 0;height: auto;
	width: 400px;	/*ブロックの幅*/
	border-radius: 10px;	/*角丸のサイズ*/
	background: #59b9d5;	/*背景色*/
	padding: 10px;			/*ブロック内の余白*/
	font-size: 13px;		/*文字サイズ*/
	text-align: left;		/*文字を左よせ*/
	box-shadow: 2px 2px 8px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒の事。0.2は20%透明度。*/
}
#menubar ul.ddmenu::before {
	content: "▲";
	font-size: 15px;
	color: #59b9d5;
	position: absolute;
	top: -18px;
	left: 27%;
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	width: 50%;		/*幅。２列なので50%。*/
	float: left;	/*左に回り込み*/
}
#menubar ul.ddmenu li a {
	transition: 0s;background: none;height: auto;width: 100%;
	color: #fff;	/*文字色*/
	opacity: 0.7;	/*透明度70%*/
	padding: 0px 5px;	/*上下、左右への余白*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	opacity: 1;	/*100%表示にする*/
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
body.is-fixed-menu #menubar.nav-fix-pos {
	position: fixed;width: 100%;top: 0px;
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.95);	/*背景色。255,255,255は白の事で0.95は透明度。*/
}
body.is-fixed-menu #contents {
	margin-top: 75px;
}
/*※以下の２ブロックのスタイルの中身は、上の２ブロックのスタイルと単純に合わせておいて下さい。fixmenuスクリプトを２つ使う為に必要な設定になります。*/
body.is-fixed #menubar.nav-fix-pos {
	position: fixed;width: 100%;top: 0px;
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.95);	/*背景色。255,255,255は白の事で0.95は透明度。*/
}
body.is-fixed #contents {
	margin-top: 75px;
}

/*コンテンツ（mainとsubを囲むブロック。１カラム時の場合はメインコンテツを囲むブロック。）
---------------------------------------------------------------------------*/
#contents {
	position: relative;z-index: 1;
	overflow: hidden;
	background: #fff;	/*背景色*/
	padding: 40px 0px;	/*上下、左右へのブロック内の余白*/
}
/*contentsの中にあるinner*/
#contents .inner {
	padding: 40px 0px;	/*上下、左右へのブロック内の余白*/
}
/*h2タグ*/
#contents h2 {
	clear: both;
	margin-bottom: 20px;
	line-height: 1.5;
	font-size: 40px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	color: #0d7aff;		/*文字色*/
}
/*h2タグにclass="type1"を指定した場合*/
#contents h2.type1 {
	background: #333;	/*背景色（古いブラウザ用）*/
	background: url(../images/bg_company.jpg) no-repeat center center/cover;	/*背景画像の読み込み*/
	padding: 50px 0px;	/*上下、左右へのボックス内の余白*/
	color: #fff;	/*文字色*/
}
/*h2タグのspan（装飾用）タグ*/
#contents h2 span {
	display: block;
	font-size: 14px;	/*文字サイズ*/
	color: #999;		/*文字色*/
	letter-spacing: 0.3em;	/*文字間隔を広くとる設定*/
}
/*h3タグ*/
#contents h3 {
	clear: both;
	margin-bottom: 20px;
	font-size: 30px;	/*文字サイズ*/
	border-bottom: 1px solid #ccc;
}
/*h3タグの１文字目*/
#contents h3::first-letter {
	border-left: 3px solid #59b9d5;	/*左側の線の幅、線種、色*/
	padding-left: 20px;	/*線と文字との余白*/
}
/*段落タグ*/
#contents p {
	padding: 0 20px 20px;
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -10px;
}
/*section同士の余白*/
#contents section + section {
	margin-top: 40px;
}
/*h6タグ*/
#contents h6 {
		clear: both;
	margin-bottom: 5px;
	font-size: 25px;	/*文字サイズ*/
}
/*mainコンテンツ
---------------------------------------------------------------------------*/
/*mainブロック*/
.main {
	float: left;	/*左に回り込み*/
	width: 75%;		/*メインコンテンツの幅*/
}

/*求人一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
	position: relative;
	overflow: hidden;
	padding: 40px;		/*ボックス内の余白*/
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	margin-bottom: 50px;		/*ボックス間の余白*/
	box-shadow: 2px 2px 10px rgba(0,0,0,0.15);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
}
/*ボックス内のh4タグ設定*/
.list h4 {
	font-size: 20px;	/*文字サイズ*/
	color: #59b9d5;		/*文字色*/
}
.list h4 a {
	color: #59b9d5;	/*リンクテキストの文字色*/
}
/*ボックス内のp(段落)タグ設定*/
.list p {
	padding: 0px 0px 10px !important;	/*上、左右、下への余白*/
}

/*アイコン（正社員、アルバイト、パート、未経験可、など）
---------------------------------------------------------------------------*/
/*アイコン共通*/
.icon {
	display: inline-block;
	margin: 2px;
	font-size: 12px;	/*文字サイズ*/
	padding: 0 5px;		/*ボックス内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	background: #eee;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
}
.icon a {text-decoration: none;}
/*アイコン色付き（正社員）*/
.icon.color1 {
	border: 1px solid #59b9d5;	/*枠線の幅、線種、色*/
	background: #66d5f5;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#66d5f5, #59b9d5);	/*グラデーション*/
	color: #fff !important;	/*文字色*/
}
/*アイコン色付き（アルバイト）*/
.icon.color2 {
	border: 1px solid #161995;	/*枠線の幅、線種、色*/
	background: #2b2ebc;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#2b2ebc, #161995);	/*グラデーション*/
	color: #fff;	/*文字色*/
}

/*求人一覧ページの「詳細を見る・応募する」ボタン
---------------------------------------------------------------------------*/
a.btn {
	display: block;text-decoration: none;
	background: #59b9d5;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#66d5f5, #59b9d5);	/*グラデーション*/
	color: #fff;	/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	padding: 10px;		/*ボタン内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.3は色が30%ついた状態。*/
	border: 1px solid #59b9d5;	/*枠線の幅、線種、色*/
}
/*マウスオン時*/
a:hover.btn {
	box-shadow: none;
	background: #fff;	/*背景色*/
	color: #59b9d5;		/*文字色*/
}

/*list2ボックス（トップページの「現在の求人」で使っている色のついた各ブロック）
---------------------------------------------------------------------------*/
/*ボックス全体を囲むulタグへの設定*/
.list2 {
	padding-bottom: 50px;
	overflow: hidden;
}
/*各ボックスの設定*/
.list2 li {
	float: left;	/*左に回り込み*/
	width: 24%;		/*幅*/
	margin: 10px 0.5%;	/*上下、左右へのボックスの外側へ空けるスペース*/
	line-height: 1.5;	/*行間*/
	position: relative;
}
.list2 a {
	display: block;text-decoration: none;
	height: 80px;	/*ボックスの高さ*/
	overflow: hidden;	/*ボックスから飛び出た場合、非表示にする設定*/
	background: #59b9d5;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#66d5f5, #59b9d5);/*背景グラデーション*/
	border-radius: 10px;	/*角丸のサイズ*/
	box-shadow: 2px 2px 3px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒の事で0.2は20%色がついた状態の事。*/
	padding: 15px;	/*ボックス内の余白*/
	color: #fff;	/*文字色*/
}
/*マウスオン時*/
.list2 a:hover {
	background: #f5f5f5;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#f5f5f5, #e2e2e2);/*背景グラデーション*/
	color: #59b9d5;	/*文字色*/
}
/*ボックス内の画像。※imgタグにclass="img"をつけた場合。*/
.list2 .img {
	height: 100%;			/*高さ*/
	background: #fff0;	/*背景色*/
	float: right;		/*右に回り込み*/
	border-radius: 3px;	/*角丸のサイズ*/
}
/*件数のテキスト。※list2内でspanタグで囲った場合。*/
.list2 span {
	font-size: 28px;	/*文字サイズ*/
	position: absolute;
	bottom: 15px;	/*下から15pxの場所に配置*/
	right: 110px;	/*右から110pxの場所に配置*/
}

/*subコンテンツ
---------------------------------------------------------------------------*/
/*subブロック*/
.sub {
	float: right;	/*右に回り込み*/
	width: 22%;		/*サブコンテンツの幅*/
}
/*subコンテンツ内のh2タグ設定*/
.sub h2 {
	margin-bottom: 0 !important;
	font-size: 16px !important;	/*文字サイズ*/
	padding: 10px;		/*ボックス内の余白*/
	border: 1px solid #dcdcdc;	/*メニューの線の幅、線種、色*/
	color: #333 !important;
}
/*subコンテンツ内の段落タグ設定*/
.sub p {
	margin: 0 !important;
	padding: 10px !important;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
.sub ul.submenu {
	margin-bottom: 20px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #dcdcdc;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
.sub ul.submenu li a {
	text-decoration: none;display: block;
	padding: 5px 10px;	/*メニュー内の余白。上下、左右への設定。*/
	border-bottom: solid 1px #dcdcdc;	/*下の線の線種、幅、色*/
	border-left: solid 1px #dcdcdc;		/*左の線の線種、幅、色*/
	border-right: solid 1px #dcdcdc;	/*右の線の線種、幅、色*/
}
/*マウスオン時の背景色*/
.sub ul.submenu li a:hover {
	background: #f4f4f4;	/*背景色*/
}
/*h2直下にsubmenuが続いた場合のみ、submenuの上の線を消す設定*/
.sub h2 + ul.submenu {
	border-top: none;
}

/*subコンテンツ内のbox1
---------------------------------------------------------------------------*/
.sub .box1 {
	overflow: hidden;
	padding: 10px;			/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	border: solid 1px #dcdcdc;	/*線の線種、幅、色*/
	box-shadow: 0px 0px 20px rgba(0,0,0,0.1) inset;	/*ボックスの影。右へ、下へ、広げる幅、0,0,0は黒の事で0.1は透明度10%の事。insetは内側への影、という意味。*/
}
/*h2直下にbox1が続いた場合のみ、box1の上の線を消す設定*/
.sub h2 + .box1 {
	border-top: none;
}
/*box1内のサブメニュー*/
.sub ul.submenu {
	margin-bottom: 0;
}

/*subコンテンツ内のlist-subボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.sub .list-sub {
	position: relative;overflow: hidden;
	border-left: 1px solid #dcdcdc;		/*左の線の線種、幅、色*/
	border-right: 1px solid #dcdcdc;	/*右の線の線種、幅、色*/
	border-bottom: 1px solid #dcdcdc;	/*下の線の線種、幅、色*/
	line-height: 1.5;	/*行間を少し狭くする。基本となる値は一番上のbodyにあります。*/
	font-size: 12px;	/*文字サイズ*/
}
.sub .list-sub a {
	display: block;text-decoration: none;overflow: hidden;
	padding: 5px;	/*ボックス内の余白*/
}
/*マウスオン時のボックス*/
.sub .list-sub a:hover {
	background: #f4f4f4;	/*背景色*/
}
/*h4タグ*/
.sub .list-sub a h4 {
	font-weight: bold;	/*太字にする設定*/
	font-size: 12px;	/*文字サイズ*/
}
/*段落(p)タグ*/
.sub .list-sub p {
	padding: 0 !important;
}
/*画像*/
.sub .list-sub figure {
	width: 30%;		/*画像の幅*/
	float: left;	/*左に回り込み*/
	margin-right: 5px;	/*画像右側に空ける余白*/
}

/*一覧ページのボックス内の右上のマーク
（CMSの場合は管理ページだと「オプション1」～のプルダウン、setup.phpだと「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
/*option1〜option3、と、newアイコン共通*/
.option1,.option2,.option3,.new {
	font-size: 12px;	/*文字サイズ*/
	text-align: center;
	display: block;
	width: 80px;		/*幅*/
	line-height: 30px;	/*高さ*/
	position: absolute;
	right: 40px;	/*右から40pxの場所に配置*/
	top: 0px;		/*上から0pxの場所に配置*/
}
/*subコンテンツ内で使う場合の追加（変更）設定*/
.sub .option1,.sub .option2,.sub .option3,.sub .new {
	font-size: 10px;	/*文字サイズ*/
	line-height: 16px;	/*行間*/
	right: 0px;		/*右から0pxの場所に配置*/
	transform: rotate(45deg) translate(22px,-10px);	/*45度回転、右へ,下へ(マイナス設定なので上へ向けての指定)の移動距離*/
}
/*option1*/
.option1 {
	color: #FFF;			/*文字色*/
	background: #f83d72;	/*背景色*/
}
/*option2*/
.option2 {
	color: #000;			/*文字色*/
	background: #ffd200;	/*背景色*/
}
/*option3*/
.option3 {
	color: #FFF;			/*文字色*/
	background: #999;	/*背景色*/
}
/*new*/
.new {
	color: #FFF;			/*文字色*/
	background: #F00;	/*背景色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;position: relative;z-index: 1;
	font-size: 12px;		/*文字サイズ*/
	background: #59b9d5;	/*背景色*/
	color: #fff;	/*文字色*/
	text-align: center;
}
footer a {color: #fff;}
footer a:hover {color: #fff;}
footer .pr {display: block;font-size: 80%;}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 20px 0;	/*上下、左右へのボックス内の余白*/
	background: url(../images/#) no-repeat 98% center/18%;
}
#footermenu a {
	text-decoration: none;
	opacity: 0.7;	/*透明度。70%の色がついた状態。*/
}
#footermenu a:hover {
	opacity: 1;
}
/*１行分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 18%;		/*幅*/
	padding-right: 1%;
	padding-left: 1%;
	text-align: left;
	line-height: 1.7;
}
/*見出し*/
#footermenu li.title, #footermenu li.title a {
	opacity: 1;	/*透明度。100%色がついた状態。*/
	font-size: 14px;	/*文字サイズ*/
}

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

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	background: #eee;	/*背景色*/
	padding: 20px;		/*ブロック内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;		/*幅*/
	color: #59b9d5;	/*文字色*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
}

/*ta1設定
---------------------------------------------------------------------------*/
/*ta1テーブル*/
.ta1 {
	width: 100%;
	margin: 0 0 20px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #f6f5f2;	/*背景色*/
	font-size: 18px;	/*文字サイズ*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}
/*labelタグを２列表示にする（CMS用）*/
.ta1.cms td label {
	display: block;
	float: left;
	width: 50%;
}

/*よく頂く質問
---------------------------------------------------------------------------*/
/*外側ブロック*/
.faq {
	padding: 0px 20px;	/*上下、左右への余白*/
}
/*質問*/
.faq dt {
	color: #0D7AFF;	/*文字色*/
	font-weight: bold;	/*太字にする設定*/
	background: url(../images/faq_q.png) no-repeat left center;	/*背景アイコン*/
	padding-left: 30px;	/*背景アイコンに重ならないよう左に余白を作る*/
}
/*回答*/
.faq dd {
	background: url(../images/faq_a.png) no-repeat left top;	/*背景アイコン*/
	padding-left: 30px;	/*背景アイコンに重ならないよう左に余白を作る*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	margin-bottom: 20px;	/*ボックスの下側（外側）に空けるスペース*/
	padding-bottom: 20px;	/*ボックス内の下側に空けるスペース*/
}

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

/*ヘッダーにメニューが固定される分、リンク先が隠れるのを防ぐ為のスタイル。※ページ内へのリンクで使う。
---------------------------------------------------------------------------*/
.link {
	display: block;
	margin-top: -100px;
	padding-top: 100px;
}

/*ページの上部へボタン「↑」設定
---------------------------------------------------------------------------*/
@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;
	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: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.p0 {padding:0 !important;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #59b9d5 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.l {text-align: left !important;}
.w50 {overflow: hidden;width: 50%;}
.fl {float: left;}
img.fl {float: left;width:30%;margin-right: 20px;margin-bottom: 20px;}
.fr {float: right;}
img.fr {float: right;width:30%;margin-left: 20px;margin-bottom: 20px;}
.photo {padding: 10px;background: #fff;border: 5px solid #fff;box-shadow: 2px 4px 5px rgba(0,0,0,0.2);}
.big1 {font-size: 22px;}
.sub .big1 {font-size: 12px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
.date {text-align: right;color: #999;font-size: 11px;}



/*------------------------------------------------------------------------------------------------------------------------------------------------------
※ここから数ブロック（420px以下環境まで）は、スライドショー表示領域の高さとロゴサイズの再設定です。
面倒ですができるだけ綺麗に表示できるよう細かく設定して下さい。
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*画面幅1500px以上の設定（スライドショー領域の再設定）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1500px){

	#top header, #mainimg {height: 450px;}

}

/*画面幅2000px以上の設定（スライドショー領域の再設定）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:2000px){

	#top header, #mainimg {height: 550px;}

}

/*画面幅1200px以下の設定（スライドショー領域の再設定）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1200px){

	#top header, #mainimg {height: 300px;}

}

/*画面幅1000px以下の設定（スライドショー領域の再設定とロゴ）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1000px){

	#top header, #mainimg {height: 250px;}
	#top #logo img {left: 1%;top: 20px;width: 200px;}

}

/*画面幅800px以下の設定（スライドショー領域の再設定）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

	#top header, #mainimg {height: 200px;}

}

/*画面幅620px以下の設定（スライドショー領域の再設定とロゴ）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:620px){

	#top header, #mainimg {height: 180px;}
	#top #logo img {left: 1%;top: 10px;width: 120px;}

}

/*画面幅500px以下の設定（スライドショー領域の再設定）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:500px){

	#top header, #mainimg {height: 120px;}

}

/*画面幅420px以下の設定（スライドショー領域の再設定とロゴ）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:420px){

	#top header, #mainimg {height: 80px;}
	#top #logo img {left: 1%;top: 10px;width: 90px;}

}



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

/*list2ボックス（トップページの「現在の求人」で使っている色のついた各ブロック）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list2 li {
	width: 49%;		/*幅*/
	margin: 10px 0.5%;	/*上下、左右へのボックスの外側へ空けるスペース*/
}

}



/*画面を横向きにした場合の高さが500px以下の場合の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (orientation: landscape) and (max-height:500px){

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s ul li a {
	padding: 10px;		/*メニュー内の余白*/
	float: left;		/*左に回り込み*/
	width: 40%;			/*幅*/
	margin-left: 4%;	/*メニューの左側に空けるスペース*/
}

}



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

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
@keyframes menu1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: fixed;z-index: 100;
	top: 0px;
	width: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
}
/*メニュー１個あたりの設定*/
#menubar-s ul li a {
	display: block;text-decoration: none;
	padding: 10px 15px;	/*上下、左右へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;		/*文字色*/
	font-size: 16px;	/*文字サイズ*/
}
/*飾り文字*/
#menubar-s ul li span {
	display: block;
	font-size: 10px;	/*文字サイズ*/
	color: #999;		/*文字色*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 100;
	top: 8px;		/*上から8pxの場所に配置*/
	right: 10px;	/*右から10pxの場所に配置*/
	border-radius: 50%;	/*円形にする*/
	border: 1px solid #fff;
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #59b9d5 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #59b9d5 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*fixmenuから折りたたみメニューになるのでリセット。*/
body.is-fixed-menu #contents {
	margin-top: 0px;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
.main,.sub {
	float: none;
	width: auto;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n .sub,body.s-n #footermenu {display: none;}
.big1 {font-size: 20px;}
.w50 {overflow: hidden;width: auto;}
.fl {float: none;}
.fr {float: none;}

}



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

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

/*inner
---------------------------------------------------------------------------*/
.inner {
	padding-left: 2% !important;
	padding-right: 2% !important;
}

/*コンテンツ（mainとsubを囲むブロック。１カラム時の場合はメインコンテツを囲むブロック。）
---------------------------------------------------------------------------*/
#contents {
	padding: 20px 0px;	/*上下、左右へのブロック内の余白*/
}
/*contentsの中にあるinner*/
#contents .inner {
	padding: 20px 0px;	/*上下、左右へのブロック内の余白*/
}
/*h2,h3タグ*/
#contents h2 {
	font-size: 20px;	/*文字サイズ*/
}
/*h2タグのspan（装飾用）タグ*/
#contents h2 span {
	font-size: 10px;	/*文字サイズ*/
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
}
/*h3タグ*/
#contents h3 {
	font-size: 20px;	/*文字サイズ*/
	padding-left: 10px;
}
/*h3タグの１文字目*/
#contents h3::first-letter {
	padding-left: 10px;	/*線と文字との余白*/
}
/*段落タグ*/
#contents p {
	padding: 0 10px 20px;
}

/*求人一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
	padding: 10px;		/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックス間の余白*/
}
/*ボックス内のh4タグ設定*/
.list h4 {
	font-size: 16px;	/*文字サイズ*/
}

/*list2ボックス（トップページの「現在の求人」で使っている色のついた各ブロック）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list2 li {
	width: auto;		/*幅*/
	margin: 0 0 10px;	/*上、左右、下へのボックスの外側へ空けるスペース*/
}
.list2 a {
	height: auto;	/*ボックスの高さ*/
	padding: 10px;	/*ボックス内の余白*/
}
/*ボックス内の画像。※imgタグにclass="img"をつけた場合。*/
.list2 .img {
	height: auto;
	width: 10%;
}
/*件数のテキスト。※list2内でspanタグで囲った場合。*/
.list2 span {
	font-size: 20px;/*文字サイズ*/
	right: 20%;		/*右から20%の場所に配置*/
	bottom: 6px;	/*下から6pxの場所に配置*/
}

/*一覧ページのボックス内の右上のマーク
（CMSの場合は管理ページだと「オプション1」～のプルダウン、setup.phpだと「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
/*option1〜option3、と、newアイコン共通*/
.option1,.option2,.option3,.new {
	font-size: 10px;	/*文字サイズ*/
	width: 50px;		/*幅*/
	line-height: 20px;	/*高さ*/
	right: 10px;	/*右から10pxの場所に配置*/
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	display: none;	/*画面領域が狭いので非表示に。*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

/*その他
---------------------------------------------------------------------------*/
.photo {padding: 5px;border: 2px solid #fff;}
.ws,.wl {width: 94%;}
.fl {float: none;}
img.fl {float: none;display: block;width:90%;margin: 0 auto 20px;}
.fr {float: none;}
img.fr {float: none;display: block;width:90%;margin: 0 auto 20px;}
.big1 {font-size: 16px;}
.sh {display:block;}
.pc {display:none;}

}



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

/*ta1設定
---------------------------------------------------------------------------*/
/*labelタグを2列から1列表示にする（CMS用）*/
.ta1.cms td label {
	float: none;
	width: 100%;
}

}









/* ================================================== *
 *
 *    Utility
 *
 * ================================================== */

/* ------------------------------------------------- *
 *        overflow
 * ------------------------------------------------- */

.u-ofHidden {
  overflow: hidden;
}

/* ------------------------------------------------- *
 *        display
 * ------------------------------------------------- */

.u-hidden {
  display: none;
}

/* ------------------------------------------------- *
 *        float
 * ------------------------------------------------- */

.u-floatL {
  float: left !important;
}

.u-floatR {
  float: right !important;
}

.u-clearL {
  clear: left !important;
}

.u-clearR {
  clear: right !important;
}

.u-clear:before,
.u-clear:after {
  content: " ";
  display: table;
}

.u-clear:after {
  clear: both;
}

/* ------------------------------------------------- *
 *        font
 * ------------------------------------------------- */

.u-alignL {
  text-align: left !important;
}

.u-alignC {
  text-align: center !important;
}

.u-alignR {
  text-align: right !important;
}

.u-alignT {
  vertical-align: top !important;
}

.u-alignM {
  vertical-align: middle !important;
}

.u-alignB {
  vertical-align: bottom !important;
}

.u-fs11 {
  font-size: 11px !important;
}

.u-fs12 {
  font-size: 12px !important;
}

.u-fs14 {
  font-size: 14px !important;
}

.u-fs24 {
  font-size: 24px !important;
}

.u-fNormal {
  font-weight: 500 !important;
}

.u-fBold {
  font-weight: 600 !important;
}

.u-fColor1 {
  color: #000 !important;
}

/* ------------------------------------------------- *
 *        margin & padding
 * ------------------------------------------------- */

.u-mt0 {
  margin-top: 0px !important;
}

.u-pt0 {
  padding-top: 0px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-mr0 {
  margin-right: 0px !important;
}

.u-pr0 {
  padding-right: 0px !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-pr5 {
  padding-right: 5px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-pr35 {
  padding-right: 35px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-pr45 {
  padding-right: 45px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-mb0 {
  margin-bottom: 0px !important;
}

.u-pb0 {
  padding-bottom: 0px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-ml0 {
  margin-left: 0px !important;
}

.u-pl0 {
  padding-left: 0px !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-pl35 {
  padding-left: 35px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-pl45 {
  padding-left: 45px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-mbAjust {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {

.u-mbAjust {
  margin-bottom: 70px;
}

}



.icon-001,
.icon-002,
.icon-003,
.icon-004,
.icon-005,
.pagetop > a:before,
.link1:before,
.link1.-external:after,
.link_image1 > a > span:before,
.link_image1 > a > span.-external:after,
.link_image1 > a.-enlarge:before,
.button1:before,
.button1.-external:before,
.nav-global_navItem:before,
.nav-global_localNav > li > a:before,
.nav-local2_navItem > a:before,
.nav-local2_navItem > span:before,
.nav-local3_nav > li > a:before,
.nav-local3_subNav > li > a:before,
.nav-footer_nav > li > a:before,
.nav-footer_localNav > li > a:before,
.nav-csrspl01_navItem.-next > a:before,
.nav-csrspl01_navItem.-next > span:before,
.nav-csrspl01_navItem.-prev > a:after,
.nav-csrspl01_navItem.-prev > span:after,
.modal_close:before,
.slide_topics1 .slick-next:after,
.slide_topics1 .slick-prev:after,
.slide_brand1 .slick-next:after,
.slide_brand1 .slick-prev:after {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
}

.icon-001 {
  content: "";
}

.icon-002 {
  content: "";
}

.icon-003 {
  content: "";
}

.icon-004 {
  content: "";
}

.icon-005 {
  content: "";
}




/* ================================================== *
 *
 *    HEADER
 *
 * ================================================== */

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  box-sizing: border-box;
  width: 100%;
  min-width: 1240px;
  padding-right: 20px;
  padding-left: 20px;
  background: #ffffff;
  border-bottom: 1px solid #dcdcdc;
}

.-top .header,
.-lower .header {
  border-bottom: none;
}

.header_inner {
  display: table;
  width: 1200px;
  height: 100px;
  margin: 0 auto;
}

.header_logo {
  display: table-cell;
  width: 450px;
  padding: 4px 0 0;
  vertical-align: middle;
}

.header_logo > span,
.header_logo > a {
  display: inline-block;
}

.header.-fixed,
.header.-opend {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-animation: showTheHeader 0.5s ease both;
  animation: showTheHeader 0.5s ease both;
  border-bottom: 1px solid #ccc;
}

.header.-fixed .header_inner,
.header.-fixed .nav-global_nav,
.header.-opend .header_inner,
.header.-opend .nav-global_nav {
  height: 70px;
}

.header.-fixed .nav-global_nav > li.-hasLocal .nav-global_navItem:before,
.header.-opend .nav-global_nav > li.-hasLocal .nav-global_navItem:before {
  bottom: 0;
}

.header.-fixed .nav-global_nav .nav-global_local,
.header.-opend .nav-global_nav .nav-global_local {
  top: 70px;
}

.header.-fixed {
  -webkit-animation: showTheHeader 0.5s ease both;
  animation: showTheHeader 0.5s ease both;
}



/* ================================================== *
 *
 *    GRID
 *
 * ================================================== */

/* ------------------------------------------------- *
 *        grid1
 * ------------------------------------------------- */

.grid1:before,
.grid1:after {
  content: " ";
  display: table;
}

.grid1:after {
  clear: both;
}

.grid1 .grid1_unit {
  float: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.grid1.-border {
  margin-top: 30px !important;
  border-top: 1px solid #dcdcdc;
}

.grid1.-gutter20 {
  margin-right: -10px;
  margin-left: -10px;
}

.grid1.-gutter20 > .grid1_unit {
  padding-right: 10px;
  padding-left: 10px;
}

.grid1.-gutter30 {
  margin-right: -15px;
  margin-left: -15px;
}

.grid1.-gutter30 > .grid1_unit {
  padding-right: 15px;
  padding-left: 15px;
}

.grid1.-gutter40 {
  margin-right: -20px;
  margin-left: -20px;
}

.grid1.-gutter40 > .grid1_unit {
  padding-right: 20px;
  padding-left: 20px;
}

.grid1.-gutter60 {
  margin-right: -30px;
  margin-left: -30px;
}

.grid1.-gutter60 > .grid1_unit {
  padding-right: 30px;
  padding-left: 30px;
}

.grid1.-col1 {
  float: none;
}

.grid1.-col2 .grid1_unit {
  width: 50%;
}

.grid1.-col2 .grid1_unit:nth-child(2n+1) {
  clear: both;
}

.grid1.-col2 .grid1_unit.-flex1 {
  width: 33.333333%;
}

.grid1.-col2 .grid1_unit.-flex2 {
  width: 66.666666%;
}

.grid1.-col2 .grid1_unit.-w160 {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 160px;
}

.grid1.-col2 .grid1_unit.-w400 {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 400px;
}

.grid1.-col2.-reverse .grid1_unit {
  float: right;
}

.grid1.-col2.-type1 .grid1_unit:nth-child(odd) {
  float: right;
}

.grid1.-col2.-type1 .grid1_unit:nth-child(even) {
  float: left;
}

.grid1.-col2.-type1 .grid1_unit:nth-child(2n+1) {
  clear: none;
}

.grid1.-col2.-type2 .grid1_unit:nth-child(odd) {
  float: left;
}

.grid1.-col2.-type2 .grid1_unit:nth-child(even) {
  float: right;
}

.grid1.-col2.-type2 .grid1_unit:nth-child(2n+1) {
  clear: none;
}

.grid1.-col2.-type2 + .grid1.-col2.-type2 {
  padding-top: 10px;
}

.grid1.-col2.-type3 {
  display: table;
  width: 100%;
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
}

.grid1.-col2.-type3:before,
.grid1.-col2.-type3:after {
  display: none;
}

.grid1.-col2.-type3 .grid1_unit {
  float: none;
  display: table-cell;
  margin-right: 0;
  margin-left: 0;
  vertical-align: middle;
}

.grid1.-col2.-type3 .grid1_unit:nth-child(odd) {
  width: 158px;
}

.grid1.-col2.-type3 .grid1_unit:nth-child(odd).-w100 {
  width: 100px;
}

.grid1.-col2.-type3 .grid1_unit:nth-child(odd).-wauto {
  width: auto;
}

.grid1.-col2.-type3 .grid1_unit:nth-child(even) {
  width: auto;
  padding-left: 18px;
}

.grid1.-col2.-type4 {
  display: table;
  width: 100%;
  margin-top: 0;
}

.grid1.-col2.-type4:before,
.grid1.-col2.-type4:after {
  display: none;
}

.grid1.-col2.-type4 .grid1_unit {
  float: none;
  display: table-cell;
  vertical-align: middle;
}

.grid1.-col2.-type5 {
  display: table;
  margin-top: 0;
}

.grid1.-col2.-type5:before,
.grid1.-col2.-type5:after {
  display: none;
}

.grid1.-col2.-type5 .grid1_unit {
  float: none;
  display: table-cell;
  width: auto;
  vertical-align: middle;
}

.grid1.-col3 .grid1_unit {
  width: 33.333333%;
}

.grid1.-col3 .grid1_unit:nth-child(3n+1) {
  clear: both;
}

.grid1.-col3.-type2 {
  margin-top: 50px;
  margin-right: -15px;
  margin-left: -15px;
}

.grid1.-col3.-type2 .grid1_unit {
  margin-top: 0;
  padding-right: 15px;
  padding-left: 15px;
}

.grid1.-col3.-type2 .grid1_unit:nth-child(3n+1) {
  clear: none;
}

.grid1.-col3.-type3 {
  display: table;
  width: 100%;
}

.grid1.-col3.-type3:before,
.grid1.-col3.-type3:after {
  display: none;
}

.grid1.-col3.-type3 .grid1_unit {
  float: none;
  display: table-cell;
  border-left: 1px solid #dcdcdc;
  vertical-align: top;
}

.grid1.-col3.-type3 .grid1_unit:first-child {
  border-left: none;
}

.grid1.-col4 .grid1_unit {
  width: 25%;
}

.grid1.-col4 .grid1_unit:nth-child(4n+1) {
  clear: both;
}

.grid1.-col4.-type1 {
  margin-top: 10px;
}

.grid1.-col4.-type2 {
  margin-top: 10px;
  margin-right: -20px;
  margin-left: -20px;
}

.grid1.-col4.-type2 .grid1_unit {
  padding-right: 20px;
  padding-left: 20px;
}

.grid1.-col4.-type2 .grid1_unit:nth-child(4n+1) {
  clear: none;
}

.grid1.-col5 {
  margin-top: 10px;
}

.grid1.-col5 .grid1_unit {
  width: 20%;
}

.grid1.-col5 .grid1_unit:nth-child(5n+1) {
  clear: both;
}

/* ================================================== *
 *
 *    FRAME
 *
 * ================================================== */

/* ------------------------------------------------- *
 *        frame1
 * ------------------------------------------------- */

.frame1 {
  background: #ebe5e2;
}

.frame1_inner {
  width: 1200px;
  margin: 0 auto;
  padding: 40px 0 80px;
}

.frame1.-type1 .frame1_inner {
  padding-top: 40px;
}

/* ------------------------------------------------- *
 *        frame2
 * ------------------------------------------------- */

.frame2 {
  background: #fff;
}

.frame2_inner {
  width: 1200px;
  margin: 0 auto;
  padding: 40px 0 80px;
}

.frame2.-type1 .frame2_inner {
  padding-top: 20px;
}

/* ------------------------------------------------- *
 *        frame3
 * ------------------------------------------------- */

.frame3 {
  display: table;
  width: 100%;
}

.frame3_unit {
  display: table-cell;
  width: 50%;
}

.frame3_unit:nth-child(odd) {
  background: #fff;
}

.frame3_unit:nth-child(even) {
  background: #faf6f4;
}

.frame3_unitInner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 600px;
  padding: 40px 40px 80px;
}

.frame3_unit:nth-child(odd) .frame3_unitInner {
  margin: 0 0 0 auto;
}

.frame3_unit:nth-child(even) .frame3_unitInner {
  margin: 0 auto 0 0;
}

/* ------------------------------------------------- *
 *        frame4
 * ------------------------------------------------- */

.frame4 {
  background: #fff;
}

.frame4_inner {
  width: 1200px;
  margin: 0 auto;
  padding: 60px 0 0;
}

.frame4.-type1 .frame4_inner {
  padding-top: 20px;
}

.frame4:last-child .frame4_inner {
  padding-bottom: 80px;
}

.nav-local2 + .frame4 .frame4_inner {
  padding-top: 0;
}

/* ------------------------------------------------- *
 *        frame5
 * ------------------------------------------------- */

.frame5 {
  background: #faf6f4;
}

.frame5_inner {
  width: 1200px;
  margin: 0 auto;
  padding: 40px 0 80px;
}

/* ------------------------------------------------- *
 *        frame6
 * ------------------------------------------------- */

.frame6 {
  margin: 30px 0 0;
  border: 1px solid #dcdcdc;
}

.frame6_inner {
  padding: 30px;
}

/* ------------------------------------------------- *
 *        frame7
 * ------------------------------------------------- */

.frame7 {
  margin: 30px 0 0;
  border: 1px solid #dcdcdc;
  background: #f5f0e0;
}

.frame7.-type1 {
  border: none;
}

.frame7_inner {
  padding: 30px;
}

/* ------------------------------------------------- *
 *        frame8
 * ------------------------------------------------- */

.frame8 {
  margin: 30px 0 0;
  border: 1px solid #990000;
  background: #fff;
}

.frame8_inner {
  padding: 30px;
}

/* ================================================== *
 *
 *    TITLE
 *
 * ================================================== */

/* ------------------------------------------------- *
 *        title1
 * ------------------------------------------------- */

.title1 {
  width: 100%;
  background: #f6f0ed;
}

.title1_inner {
  width: 1200px;
  margin: 0 auto;
  padding: 35px 0;
}

.title1_label {
  font-size: 2.4rem;
  font-weight: 600;
}

/* ------------------------------------------------- *
 *        title2
 * ------------------------------------------------- */

.title2 {
  padding: 35px 20px;
  border-top: 4px solid #5f5e5e;
  background: #e6ddce;
  font-size: 2rem;
  font-weight: 600;
}

.title2:first-child {
  margin-top: 0;
}

/* ------------------------------------------------- *
 *        title3
 * ------------------------------------------------- */

.title3 {
  margin: 50px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid #c8c5c3;
    background: #e6ddce;
  font-size: 1.8rem;
  font-weight: 600;
}

.title3.-type1 {
  padding-top: 0;
  border-top: none;
}

.title3 > span {
  display: inline-block;
  padding: 4px 0 4px 19px;
  border-left: 4px solid #c8c5c3;
}

.title2 + .title3,
.grid1.-col2 .title3:first-child {
  margin-top: 10px;
}

/* ------------------------------------------------- *
 *        title4
 * ------------------------------------------------- */

.title4 {
  overflow: hidden;
  position: relative;
  margin: 40px 0 0;
  padding: 0 0 0 20px;
  color: #817e7c;
  font-size: 1.6rem;
  font-weight: 600;
}

.title4:before {
  content: "■";
  position: absolute;
  top: 0.3em;
  left: 0;
  color: #c8c5c3;
  font-size: 1.2rem;
}

.title4.-type1 {
  padding-left: 0;
}

.title4.-type1:before {
  display: none;
}

.title4 a {
  color: #817e7c;
}

/* ------------------------------------------------- *
 *        title5
 * ------------------------------------------------- */

.title5 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
}

.title5.-type1 {
  font-size: 3rem;
}

.title5 > span {
  display: block;
  font-size: 1.6rem;
}

/* ------------------------------------------------- *
 *        title6
 * ------------------------------------------------- */

.title6 {
  color: #817e7c;
  font-size: 2rem;
  font-weight: 600;
}

.title6 > span {
  font-size: 4rem;
}

/* ------------------------------------------------- *
 *        title7
 * ------------------------------------------------- */

.title7 {
  margin: 30px 0 0;
  font-size: 1.4rem;
}

.title7.-type1 {
  font-size: 2rem;
}

.title7_image {
  display: table;
  width: 200px;
  height: 150px;
  margin: 0 auto;
}

.title7_image > span {
  display: table-cell;
  vertical-align: middle;
}

.title7_image > span > img {
  width: 100%;
  height: auto;
}

.title7_label {
  color: #817e7c;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
}

.title7_label > span {
  font-size: 3rem;
}

/* ------------------------------------------------- *
 *        title8
 * ------------------------------------------------- */

.title8 {
  margin: 20px 0 0;
  font-size: 1.4rem;
  font-weight: 600;
}

/* ------------------------------------------------- *
 *        title9
 * ------------------------------------------------- */

.title9 {
  color: #817e7c;
  font-size: 1.8rem;
  font-weight: 600;
}

/* ------------------------------------------------- *
 *        title10
 * ------------------------------------------------- */

.title10 {
  margin: 50px 0 0;
  padding: 8px 22px;
  background: #d8d6d5;
  font-size: 1.8rem;
  font-weight: 600;
}

.title2 + .title10 {
  margin-top: 30px;
}

/* ------------------------------------------------- *
 *        title_top
 * ------------------------------------------------- */

.title_top {
  position: relative;
  padding: 0 0 23px;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
}

.title_top:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 60px;
  height: 3px;
  margin: auto;
  background: #c8c5c3;
}

/* ------------------------------------------------- *
 *        hero1
 * ------------------------------------------------- */

.hero1 {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 41.25% 0 0;
}

.hero1.-ie9 .hero1_unit1Image,
.hero1.-ie9 .hero1_unit2Image,
.hero1.-ie9 .hero1_unit3Image {
  overflow: visible;
  display: none;
  width: 100%;
  -webkit-transition: none;
  transition: none;
}

.hero1.-ie9 .hero1_unit1Image img,
.hero1.-ie9 .hero1_unit2Image img,
.hero1.-ie9 .hero1_unit3Image img {
  margin-left: 0;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: none;
  transition: none;
}

.hero1_unit1 {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 66.6875%;
  padding: 41.25% 0 0;
  background: #f1edeb;
}

.hero1_unit1Image {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  -webkit-transition: width 0.8s ease-in-out;
  transition: width 0.8s ease-in-out;
}

.hero1_unit1Image img {
  display: block;
  width: 100%;
  height: auto;
  margin-left: -30px;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: margin 0.8s ease-in-out,-webkit-transform 0.8s ease-in-out;
  transition: margin 0.8s ease-in-out,-webkit-transform 0.8s ease-in-out;
  transition: margin 0.8s ease-in-out,transform 0.8s ease-in-out;
  transition: margin 0.8s ease-in-out,transform 0.8s ease-in-out,-webkit-transform 0.8s ease-in-out;
}

.hero1_unit1Image.-active {
  width: 100%;
  z-index: 2;
}

.hero1_unit1Image.-active img {
  margin-left: 0;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.hero1_unit1Image.-active + .hero1_unit1Image {
  z-index: 3;
}

.hero1_unit1Image:first-child.-active {
  z-index: 2;
}

.hero1_unit1Image:first-child.-active + .hero1_unit1Image {
  z-index: 3;
}

.hero1_unit2 {
  overflow: hidden;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  padding: 20.625% 0 0;
  background: #ddd5d0;
}

.hero1_unit2Image {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  -webkit-transition: width 0.7s ease-in-out 0.7s;
  transition: width 0.7s ease-in-out 0.7s;
}

.hero1_unit2Image img {
  display: block;
  width: 100%;
  height: auto;
  margin-left: -30px;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: margin 0.7s ease-in-out 0.7s,-webkit-transform 0.7s ease-in-out 0.7s;
  transition: margin 0.7s ease-in-out 0.7s,-webkit-transform 0.7s ease-in-out 0.7s;
  transition: margin 0.7s ease-in-out 0.7s,transform 0.7s ease-in-out 0.7s;
  transition: margin 0.7s ease-in-out 0.7s,transform 0.7s ease-in-out 0.7s,-webkit-transform 0.7s ease-in-out 0.7s;
}

.hero1_unit2Image.-active {
  width: 100%;
  z-index: 2;
}

.hero1_unit2Image.-active img {
  margin-left: 0;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.hero1_unit2Image.-active + .hero1_unit2Image {
  z-index: 3;
}

.hero1_unit2Image:first-child.-active {
  z-index: 2;
}

.hero1_unit2Image:first-child.-active + .hero1_unit2Image {
  z-index: 3;
}

.hero1_unit3 {
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  width: 33.3125%;
  padding: 20.625% 0 0;
  background: #e5ddd8;
}

.hero1_unit3Image {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  -webkit-transition: width 0.7s ease-in-out 0.4s;
  transition: width 0.7s ease-in-out 0.4s;
}

.hero1_unit3Image img {
  display: block;
  width: 100%;
  height: auto;
  margin-left: -30px;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: margin 0.7s ease-in-out 0.4s, -webkit-transform 0.7s ease-in-out 0.4s;
  transition: margin 0.7s ease-in-out 0.4s, -webkit-transform 0.7s ease-in-out 0.4s;
  transition: margin 0.7s ease-in-out 0.4s, transform 0.7s ease-in-out 0.4s;
  transition: margin 0.7s ease-in-out 0.4s, transform 0.7s ease-in-out 0.4s, -webkit-transform 0.7s ease-in-out 0.4s;
}

.hero1_unit3Image.-active {
  width: 100%;
  z-index: 2;
}

.hero1_unit3Image.-active img {
  margin-left: 0;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.hero1_unit3Image.-active + .hero1_unit3Image {
  z-index: 3;
}

.hero1_unit3Image:first-child.-active {
  z-index: 2;
}

.hero1_unit3Image:first-child.-active + .hero1_unit3Image {
  z-index: 3;
}

.hero1_text {
  position: absolute;
  top: 16%;
  left: 50%;
  color: #fff;
  font-size: 2.5vw;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}

.hero1_text > span {
  display: block;
  margin: 0 0 0 -30px;
  opacity: 0;
  -webkit-transition: margin 1s ease 1.3s, opacity 1s ease 1.3s;
  transition: margin 1s ease 1.3s, opacity 1s ease 1.3s;
}

.hero1_text > span:first-child {
  -webkit-transition: margin 1s ease 0.8s, opacity 1s ease 0.8s;
  transition: margin 1s ease 0.8s, opacity 1s ease 0.8s;
}

.hero1_text.-active {
  z-index: 5;
}

.hero1_text.-active > span {
  margin: 0;
  opacity: 1;
}

/* ------------------------------------------------- *
 *        hero2
 * ------------------------------------------------- */

.hero2 {
  position: relative;
  width: 100%;
  height: 420px;
}

.hero2.-corporate:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: url(./assets/images/hero_corporate_01.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.hero2.-csr:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: url(./assets/images/hero_csr_01.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.hero2.-recruit:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: url(./assets/images/hero_recruit_01.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.hero2.-news:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: url(./assets/images/hero_news_01.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.hero2_inner {
  display: table;
  height: 100%;
  width: 1200px;
  margin: 0 auto;
}

.hero2_label {
  display: table-cell;
  color: #fff;
  vertical-align: middle;
  font-size: 3rem;
  font-weight: 600;
  text-shadow: 1px 1px 1px #000;
}

.hero2.-csr .hero2_label {
  text-shadow: none;
}

.hero2.-csr .hero2_label .hero2_mainLabel {
  margin-top: -0.25em;
  font-size: 8rem;
}

.hero2.-csr .hero2_label .hero2_subLabel {
  color: #000;
  font-size: 3.6rem;
}

.hero2.-csr .hero2_label .hero2_text {
  color: #000;
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 500;
}

/* ------------------------------------------------- *
 *        hero3
 * ------------------------------------------------- */

.hero3 {
  width: 100%;
  height: 680px;
  background: url(./assets/images/hero_csr-governance_01.png) no-repeat 50% 50%;
  background-size: cover;
}

.hero3_inner {
  position: relative;
  display: table;
  width: 1200px;
  height: 100%;
  margin: 0 auto;
}

.hero3_unit {
  display: table-cell;
  vertical-align: middle;
}

.hero3_label {
  width: 610px;
  font-size: 4rem;
  line-height: 1.3;
}

.hero3_text {
  width: 610px;
  margin: 30px 0 0;
  font-size: 1.6rem;
  line-height: 1.8;
}

.hero3_subLabel {
  width: 455px;
  margin: 60px 0 0;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  text-shadow: 1px 1px 1px #000;
}

.hero3_subLabel > span {
  display: inline-block;
  font-size: 2rem;
}

.hero3_subText {
  width: 455px;
  margin: 15px 0 0;
  font-size: 1.4rem;
  line-height: 1.7;
}

.hero3_link > li {
  position: absolute;
}

.hero3_link > li.-type1 {
  top: 0;
  right: 73px;
  width: 520px;
  min-height: 170px;
  background: url(./assets/images/hero_csr-governance_02.png) no-repeat 0 0;
}

.hero3_link > li.-type2 {
  top: 157px;
  right: -200px;
  width: 788px;
  min-height: 524px;
  background: url(./assets/images/hero_csr-governance_03.png) no-repeat 231px 0;
}

.hero3_link > li.-type3 {
  bottom: 0;
  right: 200px;
  width: 606px;
  min-height: 290px;
  background: url(./assets/images/hero_csr-governance_04.png) no-repeat 0 0;
}

.hero3_linkItem {
  position: relative;
  padding: 10px 15px;
  background: #fff;
}

.hero3_linkItem:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
}

.hero3_link .-type1 .hero3_linkItem {
  margin: 39px 0 0 275px;
}

.hero3_link .-type1 .hero3_linkItem:before {
  left: -7px;
  border-width: 4.5px 7px 4.5px 0;
  border-color: transparent #ffffff transparent transparent;
}

.hero3_link .-type2 .hero3_linkItem {
  margin: 72px 485px 0 0;
}

.hero3_link .-type2 .hero3_linkItem:before {
  right: -7px;
  border-width: 4.5px 0 4.5px 7px;
  border-color: transparent transparent transparent #ffffff;
}

.hero3_link .-type3 .hero3_linkItem {
  margin: 184px 0 0 337px;
}

.hero3_link .-type3 .hero3_linkItem:before {
  left: -7px;
  border-width: 4.5px 7px 4.5px 0;
  border-color: transparent #ffffff transparent transparent;
}

.hero3_linkItemTitle {
  display: block;
  color: #817e7c;
  font-size: 1.6rem;
  text-align: center;
  font-weight: 500;
}

.hero3_linkItemTitle > span {
  font-size: 2.6rem;
}

.hero3_linkItemTitle.link1 {
  color: #817e7c;
}

.hero3_linkItemTitle.link1:before {
  top: 0;
  bottom: 0;
  margin: auto;
}

.hero3_subLink {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.hero3_subLink > li {
  margin: 8px 0 0;
}

.hero3_subLink > li .link1 {
  color: #817e7c;
}

.hero3_subLink > li .link1:before {
  top: 0;
  bottom: 0;
  margin: auto;
}

/* ------------------------------------------------- *
 *        hero4
 * ------------------------------------------------- */

.hero4 {
  position: relative;
  width: 100%;
  height: 800px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.hero4.-csrspl07 {
  background-image: url(./assets/images/hero_csr-spl_yano.jpg);
  background-size: cover;
}

.hero4.-csrspl06 {
  background-image: url(./assets/images/hero_csr-spl_yamazaki.jpg);
  background-size: cover;
}

.hero4.-csrspl05 {
  background-image: url(./assets/images/hero_csr-spl_takebe.jpg);
  background-size: cover;
}

.hero4.-csrspl04 {
  background-image: url(./assets/images/hero_csr-spl_matsumoto.jpg);
  background-size: cover;
}

.hero4.-csrspl03 {
  background-image: url(./assets/images/hero_csr-spl_oike.jpg);
  background-size: cover;
}

.hero4.-csrspl02 {
  background-image: url(./assets/images/hero_csr-spl_honda.jpg);
  background-size: cover;
}

.hero4.-csrspl01 {
  background-image: url(./assets/images/hero_csr-spl_yamanobe.jpg);
  background-size: cover;
}

.hero4_label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1200px;
  color: #fff;
  text-align: center;
  font-size: 5rem;
  line-height: 1.3;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.hero4_label .-icon {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  padding: 10px;
  text-align: left;
  vertical-align: middle;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 500;
}

.hero4_label .-icon.-dinos {
  background: #78b920;
}



.hero4_label .-icon .-num {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: block;
  font-size: 8.6rem;
  line-height: 1;
}

/* ------------------------------------------------- *
 *        hero5
 * ------------------------------------------------- */

.hero5 {
  display: table;
  width: 1200px;
  height: 380px;
  margin: auto;
}

.hero5.-csrgovernance01 {
  background: #faf6f4 url(./assets/images/hero_csr-governance-01.png) no-repeat 80% 50%;
}

.hero5.-csrgovernance02,
.hero5.-csrgovernance03 {
  background: #faf6f4 url(./assets/images/hero_csr-governance-02.png) no-repeat 90% 50%;
}

.hero5.-csrgovernance04 {
  background: #faf6f4 url(./assets/images/hero_csr-governance-04.png) no-repeat 80% 50%;
}

.hero5_inner {
  display: table-cell;
  padding: 60px 560px 60px 60px;
  vertical-align: middle;
}

.hero5_subLabel {
  color: #817e7c;
  font-size: 1.6rem;
  font-weight: 600;
}

.hero5_title {
  color: #817e7c;
  font-size: 2rem;
  font-weight: 600;
}

.hero5_title > span {
  font-size: 4rem;
}

.hero5_text {
  margin-top: 20px;
  color: #817e7c;
  font-size: 2.4rem;
}

/* ================================================== *
 *
 *    TEXT
 *
 * ================================================== */

/* ------------------------------------------------- *
 *        text1
 * ------------------------------------------------- */

.text1 {
  margin: 30px 0 0;
  font-size: 1.4rem;
  line-height: 1.7;
}

.text1.-border {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #dcdcdc;
}

.text1.-centerPc {
  text-align: center;
}

.text1 .-bold {
  font-size: 2.4rem;
  font-weight: 600;
}

.text1 .-bold2 {
  font-size: 1.6rem;
  font-weight: 600;
}

.text1 .-bold3 {
  color: #900;
  font-weight: 600;
}

.text1 .-name {
  font-size: 3rem;
  font-weight: 600;
}

.text1 .-name > span {
  margin-left: 20px;
  font-size: 1.6rem;
  font-weight: 400;
}

.text1 .-report {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 600;
}

.text1 .-report + .-report {
  margin-top: 10px;
}

.text1 .-report > .-num {
  font-size: 2.4rem;
}

.text1 .-report > .-sub {
  font-size: 1.4rem;
}

.text1 .-report .-notes {
  color: #817e7c;
}

.text1 .-logo {
  overflow: hidden;
  vertical-align: top;
}

.text1 .-logo > span {
  float: left;
  display: block;
  margin-left: 14px;
  line-height: 24px;
}

.text1 .-logo > span:first-child {
  margin-left: 0;
}

.text1 .-logo > span.-dinos {
  width: 60px;
  height: auto;
}



.text1 .-logo > span.-image {
  width: 61px;
  height: auto;
}

.text1 .-logo > span > img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.text1 p {
  margin: 30px 0 0;
}

.text1 p:first-child {
  margin-top: 0;
}

/* ------------------------------------------------- *
 *        text2
 * ------------------------------------------------- */

.text2 {
  margin: 30px 0 0;
  color: #817e7c;
  font-size: 2.4rem;
  line-height: 1.5;
}

.text2 .-indentR {
  margin-right: -1em;
}

.text2 p {
  margin: 30px 0 0;
}

.text2 p:first-child {
  margin-top: 0;
}

/* ------------------------------------------------- *
 *        lead1
 * ------------------------------------------------- */

.lead1 {
  font-size: 2.4rem;
  font-weight: 600;
}

.lead1 > span {
  font-size: 1.6rem;
}

/* ------------------------------------------------- *
 *        lead2
 * ------------------------------------------------- */

.lead2 {
  font-size: 2.6rem;
  font-weight: 600;
}

.lead2 > span {
  margin-left: 1em;
  font-size: 1.6rem;
}

/* ------------------------------------------------- *
 *        lead3
 * ------------------------------------------------- */

.lead3 {
  margin: 0 0 5px;
  padding: 3px 22px;
  background: #d8d6d5;
  font-weight: 600;
}

/* ------------------------------------------------- *
 *        notes1
 * ------------------------------------------------- */

.notes1 {
  margin: 30px 0 0;
  font-size: 1.4rem;
  line-height: 1.7;
}

.notes1.-attention {
  color: #900;
  font-size: 1.6rem;
}

.notes1.-border {
  padding-top: 30px;
  border-top: 1px solid #dcdcdc;
}

.notes1.-count {
  counter-reset: notes;
}

.notes1.-count > li {
  padding: 0 0 0 2.2em;
  text-indent: -2.2em;
  counter-increment: notes;
}

.notes1.-count > li:before {
  content: "※" counter(notes);
}

.notes1 > li {
  position: relative;
  padding: 0 0 0 1.2em;
  text-indent: -1.2em;
}

.notes1 > li:before {
  content: "※";
  margin-right: 0.2em;
}

.notes1 > li .link1 {
  padding-left: 3em;
}

.notes1 > li .link1:before {
  left: 0;
  text-indent: 0;
}



/* ------------------------------------------------- *
 *        list_num1
 * ------------------------------------------------- */

.list_num1 {
  margin: 30px 0 0;
  font-size: 1.4rem;
  line-height: 1.7;
}

.list_num1 > li {
  margin: 10px 0 0 1.2em;
  list-style: outside decimal;
}

/* ------------------------------------------------- *
 *        list_num2
 * ------------------------------------------------- */

.list_num2 {
  margin: 30px 0 0;
  font-size: 1.4rem;
  line-height: 1.7;
}

.list_num2 > li {
  position: relative;
  margin-top: 15px;
  padding-left: 3em;
}

.list_num2 > li .-mark {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 3em;
}

.list_num2.-indent {
  margin-left: 1.7em;
}

.list_num2.-type1 > li {
  padding-left: 1.5em;
}

.list_num2.-type1 > li .-mark {
  width: 1.5em;
}

/* ------------------------------------------------- *
 *        list_def1
 * ------------------------------------------------- */

.list_def1 {
  overflow: hidden;
  margin: 30px 0 0;
  font-size: 1.4rem;
  line-height: 1.6;
}

.list_def1 dt {
  clear: left;
  float: left;
  margin: 10px 0 0;
  font-weight: 600;
}

.list_def1 dt:first-child {
  margin-top: 0;
}

.list_def1 dt:first-child + dd {
  margin-top: 0;
}

.list_def1 dd {
  margin: 10px 0 0;
}

.list_def1.-type1 {
  margin-top: 15px;
}

.list_def1.-w10em dt {
  width: 10em;
}

.list_def1.-w10em dd {
  margin-left: 11em;
}

.list_def1.-w6em dt {
  width: 6em;
}

.list_def1.-w6em dd {
  margin-left: 7em;
}

.list_def1.-w4em dt {
  width: 4em;
}

.list_def1.-w4em dd {
  margin-left: 5em;
}

/* ================================================== *
 *
 *    LINK
 *
 * ================================================== */

/* ------------------------------------------------- *
 *        link1
 * ------------------------------------------------- */

.link1 {
  position: relative;
  display: inline-block;
  padding: 0 0 0 28px;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.link1:before {
  position: absolute;
  top: 0.2em;
  left: 0;
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 8px 0 0;
  border-radius: 50%;
  background: #bcb7b5;
  color: #fff;
  font-size: 10px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
}

.link1:hover {
  opacity: .5;
}

.link1.-external:after {
  content: "";
  display: inline-block;
  margin: 0 0 0 5px;
  color: #bcb7b5;
  font-size: 12px;
  text-align: center;
  vertical-align: middle;
}

.link1.-pdf:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 23px;
  margin: 0 6px 0 0;
  border-radius: 0;
  background: url(./assets/images/icn_pdf_01.svg) no-repeat 0 0;
}

.link1.-anchor:before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.link1.-back:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.title3 .link1:before {
  top: 3px;
}

/* ------------------------------------------------- *
 *        link_list1
 * ------------------------------------------------- */

.link_list1 {
  font-size: 1.4rem;
}

.link_list1.-indent {
  margin-left: 15px;
}

.link_list1 > li {
  margin: 10px 0 0;
}

.link_list1 > li > a {
  position: relative;
  display: inline-block;
}

/* ------------------------------------------------- *
 *        link_image1
 * ------------------------------------------------- */

.link_image1 {
  font-size: 1.6rem;
}

.link_image1 > a {
  position: relative;
  display: block;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}

.link_image1 > a:hover {
  opacity: .5;
}

.link_image1 > a > img {
  width: 100%;
  height: auto;
}

.link_image1 > a > span {
  position: relative;
  display: block;
  margin: 15px 0 0;
  padding: 0 0 0 14px;
  font-weight: 600;
}

.link_image1 > a > span:before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  display: block;
  color: #bcb7b5;
  font-size: 10px;
  line-height: 2.7;
}

.link_image1 > a > span.-external:after {
  content: "";
  display: inline-block;
  margin: 0 0 0 5px;
  color: #bcb7b5;
  font-size: 12px;
  text-align: center;
  vertical-align: middle;
}

.link_image1 > a > span.-name {
  font-size: 2rem;
}

.link_image1 > a > span.-name .-yomi {
  margin-left: 10px;
  font-size: 1.2rem;
  font-weight: 500;
}

.link_image1 > a > span.-name .-jobBefore {
  color: #817e7c;
  font-size: 1.4rem;
  font-weight: 500;
}

.link_image1 > a > span.-name .-jobAfter {
  font-size: 1.6rem;
}

.link_image1 > a > span.-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  margin: 0 13px 0 0;
  padding: 4px;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  vertical-align: middle;
}

.link_image1 > a > span.-icon:before {
  display: none;
}

.link_image1 > a > span.-icon.-dinos {
  background: #78b920;
}



.link_image1 > a > span.-icon .-num {
  position: absolute;
  right: 4px;
  bottom: 4px;
  display: block;
  font-size: 3rem;
  line-height: 1;
}

/* ================================================== *
 *
 *    IMAGE
 *
 * ================================================== */

/* ------------------------------------------------- *
 *        .image1
 * ------------------------------------------------- */

.image1 {
  margin: 30px auto 0;
  text-align: center;
}

.image1.-type2 {
  padding-left: 200px;
}

.image1.-type3 {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.image1.-right {
  margin-right: 0;
}

.image1.-left {
  margin-left: 0;
}

.image1.-w92 img {
  width: 92px;
}

.image1.-w145 img {
  width: 100px;
}

.image1.-w160 img {
  width: 160px;
}

.image1.-w200 img {
  width: 200px;
}

.image1.-w240 img {
  width: 240px;
}

.image1.-w250 img {
  width: 250px;
}

.image1.-w269 img {
  width: 269px;
}

.image1.-w280 img {
  width: 280px;
}

.image1.-w340 img {
  width: 340px;
}

.image1.-w355 img {
  width: 355px;
}

.image1.-w356 img {
  width: 356px;
}

.image1.-w380 img {
  width: 380px;
}

.image1.-w396 img {
  width: 396px;
}

.image1.-w399 img {
  width: 399px;
}

.image1.-w442 img {
  width: 442px;
}

.image1.-w460 img {
  width: 460px;
}

.image1.-w472 img {
  width: 472px;
}

.image1.-w502 img {
  width: 502px;
}

.image1.-w512 img {
  width: 512px;
}

.image1.-w540 img {
  width: 540px;
}

.image1.-w542 img {
  width: 542px;
}

.image1.-w548 img {
  width: 548px;
}

.image1.-w580 img {
  width: 580px;
}

.image1.-w641 img {
  width: 641px;
}

.image1.-w793 img {
  width: 793px;
}

.image1.-w880 img {
  width: 880px;
}

.image1.-w1000 img {
  width: 1000px;
}

.image1.-w1014 {
  margin-top: 50px;
  padding-right: 232px;
  width: 780px;
}

.image1 img {
  width: 100%;
  height: auto;
}

.image1 .-caption {
  display: block;
  margin: 0 0 14px;
  text-align: center;
  font-size: 1.4rem;
}

.image1 img + .-caption {
  margin-top: 14px;
  margin-bottom: 0;
}

/* ================================================== *
 *
 *    BUTTON
 *
 * ================================================== */

/* ------------------------------------------------- *
 *        button1
 * ------------------------------------------------- */

.button1 {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  padding: 7px 40px;
  border: 2px solid #bcb7b5;
  background: #fff;
  text-align: center;
  font-size: 1.4rem;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.button1:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  display: block;
  height: 10px;
  margin: auto;
  color: #bcb7b5;
  font-size: 10px;
  line-height: 1;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.button1:hover {
  color: #000;
  opacity: .5;
}

.button1:hover:before {
  right: 5px;
}

.button1.-primary {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
}

.button1.-send {
  background: #8b8380;
  color: #fff;
}

.button1.-wauto {
  display: block;
}

.button1.-dinos {
  padding-top: 10px;
  padding-bottom: 10px;
  border-color: #78b91f;
}

.button1.-dinos .-bold {
  color: #78b91f;
}





.button1.-external:before {
  content: "";
  color: #bcb7b5;
  font-size: 12px;
}

.button1.-external:hover:before {
  right: 10px;
}

.button1 .-bold {
  font-size: 2rem;
  font-weight: 600;
}

.button1 .-num {
  font-size: 3rem;
  font-weight: 600;
}

.button1 .-image {
  margin-right: 10px;
  vertical-align: bottom;
}

.button1.-dinos .-image {
  width: 75px;
  height: 20px;
}



/* ------------------------------------------------- *
 *        button_set1
 * ------------------------------------------------- */

.button_set1 {
  margin: 30px auto 0;
  text-align: center;
}

/* ------------------------------------------------- *
 *        button_set2
 * ------------------------------------------------- */

.button_set2 {
  display: table;
  margin: 30px 0 0;
}

.button_set2 > li {
  display: table-cell;
  padding: 0 0 0 30px;
}

.button_set2 > li:first-child {
  padding-left: 0;
}

.button_set2.-gutter10 > li {
  padding-left: 10px;
}

.button_set2.-gutter10 > li:first-child {
  padding-left: 0;
}

.button_set2.-type1 {
  margin-right: auto;
  margin-left: auto;
}

.button_set2.-type1 > li {
  padding-left: 40px;
}

.button_set2.-type1 > li:first-child {
  padding-left: 0;
}

.button_set2.-type2 {
  display: block;
}

.button_set2.-type2 > li {
  display: block;
  padding-top: 30px;
  padding-left: 0;
}

.button_set2.-type2 > li:first-child {
  padding-top: 0;
}

.button_set2.-type3 {
  width: 100%;
}

.button_set2.-type5 {
  overflow: hidden;
  display: block;
  margin-top: 0;
}

.button_set2.-type5 > li {
  float: left;
  display: block;
  margin-top: 30px;
}

.button_set2 .-caption {
  display: block;
  margin-top: 5px;
  text-align: center;
  font-size: 1.4rem;
}

.button_set2 .-caption .-bold {
  font-size: 2rem;
  font-weight: 600;
}

.button_set2 .-caption .-bold.-dinos {
  color: #78b91f;
}

/* ================================================== *
 *
 *    TABLE
 *
 * ================================================== */

/* ------------------------------------------------- *
 *        table1
 * ------------------------------------------------- */

.table1 {
  margin: 30px 0 0;
  font-size: 1.4rem;
}

.table1.-arrow {
  position: relative;
}

.table1.-arrow:before {
  content: "";
  position: absolute;
  top: -23px;
  right: 0;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 16px 15px 0 15px;
  border-color: #ccc transparent transparent transparent;
}

.table1_table {
  width: 100%;
  border-bottom: 1px solid #dcdcdc;
}

.table1_table th {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 25px 30px;
  border-top: 1px solid #dcdcdc;
  font-weight: 600;
  white-space: nowrap;
  vertical-align: top;
}

.table1_table th.-w180 {
  width: 180px;
  white-space: normal;
}

.table1_table th.-w380 {
  width: 380px;
  white-space: normal;
}

.table1_table tr:nth-child(odd) th {
  background: #faf6f4;
}

.table1_table tr:nth-child(even) th {
  background: #f7f1ee;
}

.table1_table thead tr:first-child th {
  background: #ecdfd8;
  text-align: center;
  vertical-align: middle;
  font-size: 1.6rem;
}

.table1_table thead tr:first-child th.-type1 {
  background: #faf6f4;
}

.table1_table td {
  padding: 25px 0 25px 30px;
  border-top: 1px solid #dcdcdc;
  vertical-align: top;
}

.table1_table.-type2 th,
.table1_table.-type2 td {
  padding: 10px 14px 10px 14px;
  border: 1px solid #ccc;
}

/* ------------------------------------------------- *
 *        table2
 * ------------------------------------------------- */

.table2 {
  margin: 20px 0 0;
  font-size: 1.4rem;
}

.table2_table th,
.table2_table td {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px 0 0 40px;
}

.table2_table th:first-child,
.table2_table td:first-child {
  padding-left: 0;
}

.table2_table th {
  font-weight: 600;
  white-space: nowrap;
  vertical-align: top;
}

.table2_table tr:first-child th,
.table2_table tr:first-child td {
  padding-top: 0;
}

/* ================================================== *
 *
 *    NAV
 *
 * ================================================== */

/* ------------------------------------------------- *
 *        nav-global
 * ------------------------------------------------- */

.nav-global_menu {
  display: none;
}

.nav-global_menuBar {
  display: none;
}

.nav-global_nav {
  display: table;
  width: 100%;
  height: 100%;
}

.nav-global_nav > li {
  display: table-cell;
  font-size: 1.4rem;
  text-align: center;
  vertical-align: middle;
}

.nav-global_nav > li.-current {
  background: #faf6f4;
}

.nav-global_navItem {
  display: table;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100px;
  padding: 0;
  cursor: pointer;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}

.nav-global_navItem > span {
  display: table-cell;
  padding: 0 20px;
  vertical-align: middle;
  margin: 0 auto;
}

.nav-global_nav > li:hover .nav-global_navItem {
  background: #ebe5e2;
  color: #000;
}

.header.-fixed .nav-global_navItem {
  height: 70px;
}

.nav-global_nav > li.-hasLocal .nav-global_navItem {
  position: relative;
}

.nav-global_nav > li.-hasLocal .nav-global_navItem:before,
.nav-global_nav > li.-hasLocal .nav-global_navItem:after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 7px 4.5px 0 4.5px;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.nav-global_nav > li.-hasLocal .nav-global_navItem:before {
  bottom: 21px;
  border-color: #cccccc transparent transparent transparent;
}

.nav-global_nav > li.-hasLocal .nav-global_navItem:after {
  bottom: -7px;
  border-color: #ebe5e2 transparent transparent transparent;
  opacity: 0;
}

.nav-global_nav > li.-hasLocal.-hover .nav-global_navItem:before {
  opacity: 0;
}

.nav-global_nav > li.-hasLocal.-hover .nav-global_navItem:after {
  z-index: 999;
  opacity: 1;
}

.nav-global_nav > li.-hasLocal.-hover .nav-global_local {
  display: block;
}

.nav-global_localToggle {
  display: none;
}

/* ------------------------------------------------- *
 *        nav-global_local
 * ------------------------------------------------- */

.nav-global_local {
  display: none;
  position: absolute;
  top: 100px;
  left: 0;
  z-index: 99;
  width: 100%;
  background: rgba(51, 51, 51, 0.9);
  color: #fff;
  text-align: left;
}

.nav-global_localInner {
  width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

.nav-global_localInner:before,
.nav-global_localInner:after {
  content: " ";
  display: table;
}

.nav-global_localInner:after {
  clear: both;
}

.nav-global_localHeader {
  float: left;
  width: 250px;
}

.nav-global_localBody {
  float: right;
  width: 930px;
}

.nav-global_localTitle {
  margin: -0.25em 0 0 0;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  text-shadow: 1px 1px 1px #000;
}

.nav-global_localLink {
  margin: 20px 0 0;
}

.nav-global_localLink > a {
  display: inline-block;
  padding: 0 0 0 12px;
  background: url(./assets/images/icn_arrow01_r.png) no-repeat 0 60%;
  font-size: 1.2rem;
  color: inherit;
  text-shadow: 1px 1px 1px #000;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}

.nav-global_localLink > a:hover {
  opacity: 0.5;
}

.nav-global_localNav {
  float: left;
  margin: -20px 0 0 0;
}

.nav-global_localNav > li {
  float: left;
  width: 270px;
  margin: 20px 0 0 40px;
}

.nav-global_localNav > li:nth-child(3n+1) {
  clear: both;
}

.nav-global_localNav > li > a {
  position: relative;
  display: block;
  color: inherit;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}

.nav-global_localNav > li > a:hover {
  opacity: 0.5;
}

.nav-global_localNav > li > a span {
  display: inline-block;
  margin: 5px 0 0;
  padding: 0 0 0 12px;
  background: url(./assets/images/icn_arrow01_r.png) no-repeat 0 0.5em;
  font-size: 1.6rem;
  text-shadow: 1px 1px 1px #000;
  color: inherit;
}

.overlay {
  display: none;
}

/* ------------------------------------------------- *
 *        nav-local1
 * ------------------------------------------------- */

.nav-local1 {
  clear: both;
  width: 100%;
  background: #8b8380;
}

.nav-local1_nav {
  display: table;
  table-layout: fixed;
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 1.28;
  color: #fff;
}

.nav-local1_navItem {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
}

.nav-local1_navItem.-current {
  opacity: .3;
}

.nav-local1_navItem > a,
.nav-local1_navItem > span {
  display: table;
  width: 100%;
  height: 55px;
  color: #fff;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.nav-local1_navItem > a:hover,
.nav-local1_navItem > span:hover {
  opacity: .5;
}

.nav-local1_navItem > a > span,
.nav-local1_navItem > span > span {
  display: table-cell;
  vertical-align: middle;
  margin: 0 auto;
}

/* ------------------------------------------------- *
 *        nav-local2
 * ------------------------------------------------- */

.nav-local2 {
  width: 1200px;
  margin: 30px auto;
  background: #fff;
}

.nav-local2.-footer {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid #dcdcdc;
}

.nav-local2_title {
  display: none;
}

.nav-local2_nav {
  display: table;
  margin: 0 auto;
  font-size: 1.4rem;
}

.nav-local2_navItem {
  display: table-cell;
  padding: 7px 20px;
  border-left: 1px solid #ccc;
}

.nav-local2_navItem:first-child {
  padding-left: 15px;
  border-left: none;
}

.nav-local2_navItem:last-child {
  padding-right: 15px;
}

.nav-local2_navItem.-current > a {
  color: #bcb7b5;
}

.nav-local2_navItem.-current > a > span {
  position: relative;
  display: inline-block;
}

.nav-local2_navItem.-current > a > span:after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: #bcb7b5;
}

.nav-local2_navItem > a,
.nav-local2_navItem > span {
  display: inline-block;
  line-height: 20px;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.nav-local2_navItem > a:before,
.nav-local2_navItem > span:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 8px 0 0;
  border-radius: 50%;
  background: #bcb7b5;
  color: #fff;
  font-size: 10px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
}

.nav-local2_navItem > a:hover,
.nav-local2_navItem > span:hover {
  opacity: .5;
}

/* ------------------------------------------------- *
 *        nav-local3
 * ------------------------------------------------- */

.nav-local3 {
  margin: 20px 0 0;
}

.nav-local3_title {
  padding: 10px;
  background: #8b8380;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
}

.nav-local3_nav + .nav-local3_title {
  margin-top: -1px;
}

.nav-local3_subTitle {
  padding: 10px;
  background: #bcb7b5;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
}

.nav-local3_nav + .nav-local3_subTitle {
  margin-top: -1px;
}

.nav-local3_nav {
  margin: 20px 0 0;
  border-top: 1px solid #dcdcdc;
  font-size: 1.4rem;
}

.nav-local3_nav > li {
  border-bottom: 1px solid #dcdcdc;
}

.nav-local3_nav > li.-current {
  background: #faf6f4;
}

.nav-local3_nav > li > a {
  display: block;
  padding: 25px 5px;
}

.nav-local3_nav > li > a:before {
  content: "";
  margin-right: 6px;
  color: #bcb7b5;
  font-size: 10px;
  vertical-align: middle;
}

.nav-local3_title + .nav-local3_nav,
.nav-local3_subTitle + .nav-local3_nav {
  margin-top: 0;
  border-top: none;
}

.nav-local3_subNav {
  margin: -5px 0 0;
  padding: 0 0 20px;
  font-size: 1.2rem;
}

.nav-local3_subNav > li > a {
  display: block;
  padding: 5px 15px 5px 30px;
}

.nav-local3_subNav > li > a:before {
  content: "";
  margin-right: 6px;
  color: #bcb7b5;
  font-size: 10px;
  vertical-align: middle;
}

.nav-local3_subNav > li.-current {
  background: #f1eae6;
}

/* ------------------------------------------------- *
 *        nav-footer
 * ------------------------------------------------- */

.nav-footer:before,
.nav-footer:after {
  content: " ";
  display: table;
}

.nav-footer:after {
  clear: both;
}

.nav-footer_nav {
  float: left;
  width: 270px;
  margin: 0 0 0 40px;
  font-size: 1.4rem;
  font-weight: 600;
}

.nav-footer_nav:first-child {
  margin-left: 0;
}

.nav-footer_nav > li {
  margin: 20px 0 0;
}

.nav-footer_nav > li:first-child {
  margin-top: 0;
}

.nav-footer_nav > li > a {
  position: relative;
  display: inline-block;
  padding-left: 10px;
}

.nav-footer_nav > li > a:before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: -1px;
  display: block;
  color: #bcb7b5;
  font-size: 10px;
}

.nav-footer_localNav {
  margin: 0 0 0 10px;
  font-size: 1.2rem;
  font-weight: 500;
}

.nav-footer_localNav > li {
  margin: 10px 0 0;
}

.nav-footer_localNav > li:first-child {
  margin-top: 8px;
}

.nav-footer_localNav > li > a {
  position: relative;
  display: inline-block;
}

.nav-footer_localToggle {
  display: none;
}

/* ------------------------------------------------- *
 *        nav-csrspl01
 * ------------------------------------------------- */

.nav-csrspl01 {
  position: fixed;
  top: 0;
  right: -70px;
  bottom: 0;
  z-index: 999;
  display: block;
  height: 302px;
  margin: auto;
}

.nav-csrspl01_navItem {
  display: table;
  width: 70px;
  height: 70px;
  font-size: 1.2rem;
}

.nav-csrspl01_navItem > a,
.nav-csrspl01_navItem > span {
  display: table-cell;
  width: 70px;
  height: 70px;
  background: #bcb7b5;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
}

.nav-csrspl01_navItem > a:hover {
  background: #dddbda;
}

.nav-csrspl01_navItem.-next {
  margin-bottom: 1px;
}

.nav-csrspl01_navItem.-next > a:before,
.nav-csrspl01_navItem.-next > span:before {
  content: "";
  display: block;
  margin-bottom: 3px;
  font-size: 1.9rem;
  line-height: 1;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.nav-csrspl01_navItem.-prev {
  margin-top: 1px;
}

.nav-csrspl01_navItem.-prev > a:after,
.nav-csrspl01_navItem.-prev > span:after {
  content: "";
  display: block;
  margin-top: 3px;
  font-size: 1.9rem;
  line-height: 1;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.nav-csrspl01_navItem.-next.-disabled > a,
.nav-csrspl01_navItem.-next.-disabled > span,
.nav-csrspl01_navItem.-prev.-disabled > a,
.nav-csrspl01_navItem.-prev.-disabled > span {
  background: #85807b;
  color: #adacaa;
  cursor: auto;
}

.nav-csrspl01_navItem.-current .-num {
  display: inline-block;
  font-size: 3rem;
  line-height: 1;
}

.nav-csrspl01_navItem.-index {
  position: relative;
  margin: 20px 0 0;
}

.nav-csrspl01_navItem.-index > a,
.nav-csrspl01_navItem.-index > span {
  position: relative;
  cursor: pointer;
}

.nav-csrspl01_navItem.-index > a:before,
.nav-csrspl01_navItem.-index > span:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4px;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 4.5px 7px 4.5px 0;
  border-color: transparent #ffffff transparent transparent;
}

.nav-csrspl01_navItem.-index.-hover > a,
.nav-csrspl01_navItem.-index.-hover > span {
  z-index: 999;
  color: #d4d2d1;
  background: #a39d9a;
}

.nav-csrspl01_navItem.-index.-hover > a:before,
.nav-csrspl01_navItem.-index.-hover > span:before {
  left: -6px;
  border-color: transparent #a39d9a transparent transparent;
}

.nav-csrspl01_sub {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
}

.nav-csrspl01_navItem.-index.-hover .nav-csrspl01_sub {
  display: block;
}

.nav-csrspl01_subNav {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1200px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.nav-csrspl01_subNavItem {
  position: relative;
  float: left;
  display: table;
  width: 380px;
  min-height: 60px;
  margin: 20px 0 20px 30px;
  font-size: 1.8rem;
}

.nav-csrspl01_subNavItem:nth-child(3n+1) {
  clear: both;
  margin-left: 0;
}

.nav-csrspl01_subNavItem > a {
  display: table-cell;
  padding-left: 72px;
  color: #fff;
  vertical-align: middle;
}

.nav-csrspl01_subNavItem > a:hover {
  opacity: .5;
}

.nav-csrspl01_subNavItem .-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  margin: 0 13px 0 0;
  padding: 4px;
  font-size: 1.3rem;
  line-height: 1;
  vertical-align: middle;
}

.nav-csrspl01_subNavItem .-icon.-dinos {
  background: #78b920;
}



.nav-csrspl01_subNavItem .-icon .-num {
  position: absolute;
  right: 4px;
  bottom: 4px;
  display: block;
  font-size: 3rem;
  line-height: 1;
}

/* ------------------------------------------------- *
 *        nav-csrspl02
 * ------------------------------------------------- */

.nav-csrspl02 {
  font-size: 1.4rem;
}

.nav-csrspl02_title {
  position: relative;
  padding: 0 0 23px;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
}

.nav-csrspl02_title:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 60px;
  height: 3px;
  margin: auto;
  background: #c8c5c3;
}

.nav-csrspl02_nav:before,
.nav-csrspl02_nav:after {
  content: " ";
  display: table;
}

.nav-csrspl02_nav:after {
  clear: both;
}

.nav-csrspl02_navItem {
  position: relative;
  float: left;
  display: table;
  width: 380px;
  min-height: 60px;
  margin: 20px 0 20px 30px;
  font-size: 1.8rem;
}

.nav-csrspl02_navItem:nth-child(3n+1) {
  clear: both;
  margin-left: 0;
}

.nav-csrspl02_navItem > a {
  display: table-cell;
  padding-left: 72px;
  vertical-align: middle;
}

.nav-csrspl02_navItem > a:hover {
  opacity: .5;
}

.nav-csrspl02_navItem .-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  margin: 0 13px 0 0;
  padding: 4px;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  vertical-align: middle;
}

.nav-csrspl02_navItem .-icon.-dinos {
  background: #78b920;
}



.nav-csrspl02_navItem .-icon .-num {
  position: absolute;
  right: 4px;
  bottom: 4px;
  display: block;
  font-size: 3rem;
  line-height: 1;
}

.nav-csrspl02_link {
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid #dcdcdc;
}

/* ================================================== *
 *
 *    BLOCK
 *
 * ================================================== */

/* ------------------------------------------------- *
 *        breadcrumb1
 * ------------------------------------------------- */

.breadcrumb1 {
  width: 1200px;
  margin: 15px auto;
  font-size: 1.2rem;
}

.title1 .breadcrumb1 {
  margin-top: 5px;
  margin-bottom: 8px;
}

.breadcrumb1_list {
  overflow: hidden;
  display: block;
  color: #bcb7b5;
}

.breadcrumb1_list > li {
  float: left;
  display: block;
  padding: 0 14px 0 0;
}

.breadcrumb1_list > li:after {
  content: "＞";
  padding: 0 0 0 14px;
}

.breadcrumb1_list > li:last-child {
  padding-left: 0;
}

.breadcrumb1_list > li:last-child:after {
  display: none;
}

/* ------------------------------------------------- *
 *        shortcut1
 * ------------------------------------------------- */

.shortcut1 {
  margin-top: 30px;
}

.shortcut1_toggle {
  display: none;
}

/* ------------------------------------------------- *
 *        topics1
 * ------------------------------------------------- */

.topics1 {
  font-size: 1.4rem;
}

.topics1 > a {
  display: block;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}

.topics1 > a:hover {
  color: #000;
  opacity: .5;
}

.topics1_image {
  display: block;
}

.topics1_image > img {
  width: 100%;
  height: auto;
}

.topics1_text {
  display: block;
  margin: 15px 0 0;
}

.topics1_date {
  display: block;
  margin: 10px 0 0;
  color: #999;
}

/* ------------------------------------------------- *
 *        news1
 * ------------------------------------------------- */

.news1 {
  margin: 40px 0 0;
  font-size: 1.4rem;
}

.news1.-border {
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid #dcdcdc;
}

.news1 > li {
  margin: 15px 0 0;
}

.news1 > li:before,
.news1 > li:after {
  content: " ";
  display: table;
}

.news1 > li:after {
  clear: both;
}

.news1_date {
  float: left;
  display: block;
  color: #999;
  margin: 5px 20px 0 0;
}

.news1_category {
  float: left;
  margin: 5px 0 0;
}

.news1_category:before,
.news1_category:after {
  content: " ";
  display: table;
}

.news1_category:after {
  clear: both;
}

.news1_category > li {
  float: left;
  width: 66px;
  margin: 0 0 0 2px;
  background: #bcb7b5;
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.9;
}

.news1_category > li:first-child {
  margin-left: 0;
}

.news1_category > li.-dinos {
  margin-left: 10px;
  background: #78b91f;
}



.news1_title {
  float: left;
  margin: 2px 0 0 20px;
  font-size: 1.6rem;
  font-weight: 600;
}

.news1_text {
  clear: both;
  display: block;
  padding: 10px 0 0;
}

.news1_text.-pdf {
  position: relative;
  padding-left: 25px;
}

.news1_text.-pdf:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  width: 18px;
  height: 23px;
  background: url(./assets/images/icn_pdf_01.svg) no-repeat 0 0;
}

/* ------------------------------------------------- *
 *        banner1
 * ------------------------------------------------- */

.banner1 {
  margin-top: 30px;
  background: #fff;
}

.banner1 > a {
  display: block;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}

.banner1 > a:hover {
  opacity: .5;
}

.banner1_image {
  display: block;
}

.banner1_image > img {
  width: 100%;
  height: auto;
}

.banner1_logo {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  height: 90px;
  text-align: center;
  line-height: 90px;
}

.banner1_logo.-type1 {
  border: 1px solid #dcdcdc;
  line-height: 88px;
}

.banner1_logo > img {
  vertical-align: middle;
}

.banner1_caption {
  display: block;
  margin-top: 5px;
  font-size: 1.4rem;
}

/* ------------------------------------------------- *
 *        entry1
 * ------------------------------------------------- */

.entry1 {
  margin: 27px 0 0;
  padding-top: 30px;
  padding-bottom: 20px;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  font-size: 1.4rem;
  line-height: 1.7;
}

.entry1 p {
  margin: 20px 0 0;
}

.entry1 .-pdf {
  position: relative;
  padding-left: 25px;
}

.entry1 .-pdf:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 18px;
  height: 23px;
  background: url(./assets/images/icn_pdf_01.svg) no-repeat 0 0;
}

.entry1 .-adjustImage {
  width: 100%;
  height: auto;
}

/* ------------------------------------------------- *
 *        media1
 * ------------------------------------------------- */

.media1_image {
  border: 1px solid #dcdcdc;
}

.media1_image a {
  display: block;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}

.media1_image a:hover {
  opacity: .5;
}

.media1_image a img {
  width: 100%;
  height: auto;
}

.media1_label {
  margin: 12px 0 0;
}

.media1_label:before,
.media1_label:after {
  content: " ";
  display: table;
}

.media1_label:after {
  clear: both;
}

.media1_label > li {
  float: left;
  width: 66px;
  margin: 0 0 0 2px;
  background: #bcb7b5;
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.9;
}

.media1_label > li:first-child {
  margin-left: 0;
}

.media1_label > li.-dinos {
  background: #78b91f;
}



.media1_text {
  margin: 5px 0 0;
  font-size: 1.4rem;
}

/* ------------------------------------------------- *
 *        history1
 * ------------------------------------------------- */

.history1 {
  overflow: hidden;
  position: relative;
}

.history1:before {
  content: "";
  position: absolute;
  top: 65px;
  right: 0;
  left: 0;
  width: 4px;
  height: 100%;
  margin: auto;
  background: #f6f0ed;
}

.history1_unit {
  position: relative;
}

.history1_unit:before,
.history1_unit:after {
  content: " ";
  display: table;
}

.history1_unit:after {
  clear: both;
}

.history1_unit.-nocl:before,
.history1_unit.-nocl:after {
  display: none;
}

.history1_unit:last-child:before {
  content: "";
  position: absolute;
  top: 68px;
  right: 0;
  left: 0;
  display: block;
  width: 4px;
  height: 100%;
  margin: auto;
  background: #fff;
}

.history1_unit.-nocl + .history1_unit {
  margin-top: 116px;
}

.history1_label {
  position: absolute;
  top: 0;
  width: 520px;
  height: 30px;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  line-height: 3rem;
  font-weight: bold;
}

.history1_label.-dinos {
  left: 0;
  background: #78b91f;
}





.history1_year {
  position: absolute;
  top: -8px;
  right: 0;
  left: 0;
  width: 108px;
  height: 47px;
  margin: auto;
  background: #bcb7b5;
  color: #fff;
  text-align: center;
  font-size: 3rem;
  line-height: 45px;
}

.history1_year:before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -12px;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 12px 6px 0 6px;
  border-color: #bcb7b5 transparent transparent transparent;
}

.history1_year:after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -29px;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin: auto;
  background: #bcb7b5;
}

.history1_unit.-type1 .history1_year {
  top: 0;
}

.history1_subUnit {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 520px;
  margin: 40px 0 0;
  padding: 29px;
  border: 1px solid #bcb7b5;
}

.history1_subUnit:before {
  content: "";
  position: absolute;
  display: block;
  top: 20px;
  width: 73px;
  height: 1px;
  background: #bcb7b5;
}

.history1_subUnit.-right {
  clear: right;
  float: right;
}

.history1_subUnit.-right:before {
  left: -74px;
}

.history1_subUnit.-left {
  clear: left;
  float: left;
}

.history1_subUnit.-left:before {
  right: -74px;
}

.history1_subUnit .history1_label {
  display: none;
}

.history1_unit.-type1 .history1_subUnit {
  margin-top: 48px;
}

.history1_subUnitInner {
  margin: 30px 0 0;
  padding: 30px 0 0;
  border-top: 1px solid #c8c5c3;
}

.history1_subUnitInner:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.history1_subUnitInner:before,
.history1_subUnitInner:after {
  content: " ";
  display: table;
}

.history1_subUnitInner:after {
  clear: both;
}

.history1_subUnitInner .history1_text {
  float: left;
  width: 220px;
}

.history1_subUnitInner .history1_text.-type1 {
  width: auto;
}

.history1_subUnitInner .history1_image {
  float: right;
  width: 220px;
}

.history1_text {
  font-size: 1.4rem;
}

.history1_image > img {
  width: 100%;
  height: auto;
}

/* ------------------------------------------------- *
 *        csrmessage1
 * ------------------------------------------------- */

.csrmessage1 {
  padding: 80px 60px;
  background: url(./assets/images/img_csr-topinterview_02.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.csrmessage1_title {
  text-align: center;
  font-size: 3rem;
  text-shadow: 1px 1px 1px #fff;
}

.csrmessage1_text {
  margin: 40px 0 0;
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.8;
  text-shadow: 1px 1px 1px #fff;
}

/* ------------------------------------------------- *
 *        csrspl01
 * ------------------------------------------------- */

.csrspl01 {
  position: relative;
}

.csrspl01_unit {
  overflow: hidden;
  visibility: hidden;
  max-height: 0;
  opacity: 0;
  -webkit-transition: opacity 1s ease-out 0.5s;
  transition: opacity 1s ease-out 0.5s;
}

.csrspl01_unit.-active {
  visibility: visible;
  max-height: 100%;
  opacity: 1;
}

.csrspl01_unit.-active + .csrspl01_unit {
  max-height: 100%;
}

.csrspl01_unit.-dinos .title5 {
  color: #78b920;
  font-weight: 500;
}

.csrspl01_unit.-dinos .csrspl01_introTitle {
  color: #78b920;
}

.csrspl01_unit.-dinos .csrspl01_introIcon {
  background: #78b920;
}





.csrspl01_intro {
  display: table;
  width: 100%;
  background: #ebe5e2;
}

.csrspl01_introUnit {
  position: relative;
  display: table-cell;
  width: 50%;
  vertical-align: middle;
}

.csrspl01_introUnit.-csrspl07 {
  height: 580px;
  background: url(./assets/images/img_csr-spl_yano_01.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.csrspl01_introUnit.-csrspl06 {
  height: 580px;
  background: url(./assets/images/img_csr-spl_yamazaki_01.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.csrspl01_introUnit.-csrspl05 {
  height: 580px;
  background: url(./assets/images/img_csr-spl_takebe_01.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.csrspl01_introUnit.-csrspl04 {
  height: 580px;
  background: url(./assets/images/img_csr-spl_matsumoto_01.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.csrspl01_introUnit.-csrspl03 {
  height: 580px;
  background: url(./assets/images/img_csr-spl_oike_01.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.csrspl01_introUnit.-csrspl02 {
  height: 580px;
  background: url(./assets/images/img_csr-spl_honda_01.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.csrspl01_introUnit.-csrspl01 {
  height: 580px;
  background: url(./assets/images/img_csr-spl_yamanobe_01.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.csrspl01_introUnitInner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 600px;
  margin: 0 0 0 auto;
  padding: 40px 40px 40px 0;
}

.csrspl01_introUnit.-reverse {
  padding-right: 0;
  padding-left: 40px;
}

.csrspl01_introUnit.-reverse .csrspl01_introUnitInner {
  margin-right: auto;
  margin-left: 0;
}

.csrspl01_introImage {
  display: none;
}

.csrspl01_introTitle {
  font-size: 3.6rem;
  font-weight: 600;
}

.csrspl01_introLead {
  margin: 50px 0 0;
  font-size: 2.4rem;
}

.csrspl01_introText {
  margin: 35px 0 0;
  font-size: 1.4rem;
}

.csrspl01_introText .-name {
  font-size: 2.4rem;
  font-weight: 600;
}

.csrspl01_introNote {
  margin: 20px 0 0;
  text-align: right;
  font-size: 1.4rem;
  line-height: 1.7;
}

.csrspl01_introNote > li {
  position: relative;
  padding: 0 0 0 1.2em;
  text-indent: -1.2em;
}

.csrspl01_introNote > li:before {
  content: "※";
  margin-right: 0.2em;
}

.csrspl01_introIcon {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100px;
  height: 100px;
  padding: 10px;
  color: #fff;
  text-align: left;
  vertical-align: middle;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
}

.csrspl01_introIcon.-reverse {
  right: 0;
  left: auto;
}

.csrspl01_introIcon .-num {
  position: absolute;
  right: 5px;
  bottom: 5px;
  display: block;
  font-size: 6rem;
  line-height: 1;
}

/* ------------------------------------------------- *
 *        faq1
 * ------------------------------------------------- */

.faq1_unit {
  margin: 30px 0 0;
}

.faq1_q {
  position: relative;
  padding: 0 0 0 22px;
  font-size: 1.6em;
  font-weight: 600;
}

.faq1_a {
  position: relative;
  margin: 20px 0 0;
  padding: 0 0 0 22px;
  font-size: 1.4rem;
  color: #817e7c;
}

.faq1_a > p {
  margin: 20px 0 0;
}

.faq1_a > p:first-child {
  margin-top: 0;
}

.faq1_icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  text-align: center;
}

/* ------------------------------------------------- *
 *        modal1
 * ------------------------------------------------- */

.modal {
  position: fixed;
  left: 50%;
  z-index: 1001;
  display: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 730px;
  height: auto;
  margin-left: -365px;
  padding: 40px;
  background-color: #fff;
}

.modal_close {
  position: absolute;
  top: -42px;
  right: 0;
  cursor: pointer;
}

.modal_close:before {
  content: "";
  color: #fff;
  font-size: 2.2rem;
}

.map_canvas {
  width: 100%;
  height: 400px;
  margin: 30px 0 0;
}

.modal_num1 {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {

.modal_num1 {
  font-size: 18px;
}

}

#modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: none;
  width: 100%;
  height: 130%;
  background-color: rgba(0, 0, 0, 0.7);
}

/* ------------------------------------------------- *
 *        #aform-1
 * ------------------------------------------------- */

#aform-1 {
  font-size: 1.4rem;
}

#aform-1 dl {
  display: table;
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}

#aform-1 dl dt {
  float: none;
  display: table-cell;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 25px 60px 25px 30px;
  font-weight: 600;
  vertical-align: top;
}

#aform-1 dl dt .required {
  top: 25px;
  right: 30px;
  width: 3em;
  height: 1.5em;
  background: #b43232;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5;
}

#aform-1 dl:nth-child(odd) dt {
  background: #faf6f4;
}

#aform-1 dl:nth-child(even) dt {
  background: #f7f1ee;
}

#aform-1 dl + dl {
  border-top: none;
}

#aform-1 dl input[type="text"],
#aform-1 dl input[type="tel"],
#aform-1 dl input[type="email"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: auto;
  font-size: 1.4rem;
  border: 1px solid #dcdcdc;
}

#aform-1 dl select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.4rem;
  width: auto;
}

#aform-1 dl textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #dcdcdc;
  font-size: 1.4rem;
}

#aform-1 dl input[type="email"].aform-email {
  width: 80%;
}

#aform-1 dl dd {
  display: table-cell;
  padding: 25px 0 25px 30px;
  vertical-align: top;
}

#aform-1 .aform-header {
  display: none;
}

#aform-1 .aform-hdln {
  position: relative;
  margin: 50px 0 30px;
  padding: 20px 0 0 23px;
  border-top: 1px solid #c8c5c3;
  border-bottom: none;
  font-size: 1.8rem;
}

#aform-1 .aform-hdln:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  display: block;
  width: 4px;
  height: 1.5em;
  background: #c8c5c3;
}

#aform-1 .aform-radio-ul {
  margin-top: -5px;
}

#aform-1 .aform-radio-ul li {
  float: left;
  width: 50%;
  margin-top: 5px;
}

#aform-1 .aform-name-ul,
#aform-1 .aform-kana-ul {
  overflow: hidden;
  margin-left: -10px;
}

#aform-1 .aform-name-ul li,
#aform-1 .aform-kana-ul li {
  float: left;
  margin-left: 10px;
}

#aform-1 .aform-twice-note {
  margin: 5px 0;
  font-size: 1.4rem;
}

#aform-1 .aform-input.error {
  background: #f4e0e0;
}

#aform-1 .validation-advice {
  color: #b43232;
}

#aform-1 .validation-advice label img {
  display: none;
}

#aform-1 .submit {
  background: transparent;
}

#aform-1 .submit input {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 7px 50px;
  border: 2px solid #bcb7b5;
  border-radius: 0;
  background: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
}

#aform-1 .submit input#aform_btn_submit {
  background: #8b8380;
  color: #fff;
}

#aform-1 .list1 {
  margin-top: 30px;
}

#aform-1 .list1 li {
  padding-left: 1.2em;
}


/* ------------------------------------------------- *
 *        #aform-2
 * ------------------------------------------------- */

#aform-2 {
  font-size: 1.4rem;
}

#aform-2 dl {
  display: table;
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}

#aform-2 dl dt {
  float: none;
  display: table-cell;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 25px 60px 25px 30px;
  font-weight: 600;
  vertical-align: top;
}

#aform-2 dl dt .required {
  top: 25px;
  right: 30px;
  width: 3em;
  height: 1.5em;
  background: #b43232;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5;
}

#aform-2 dl:nth-child(odd) dt {
  background: #faf6f4;
}

#aform-2 dl:nth-child(even) dt {
  background: #f7f1ee;
}

#aform-2 dl + dl {
  border-top: none;
}

#aform-2 dl input[type="text"],
#aform-2 dl input[type="tel"],
#aform-2 dl input[type="email"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: auto;
  font-size: 1.4rem;
  border: 1px solid #dcdcdc;
}

#aform-2 dl select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.4rem;
  width: auto;
}

#aform-2 dl textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #dcdcdc;
  font-size: 1.4rem;
}

#aform-2 dl input[type="email"].aform-email {
  width: 80%;
}

#aform-2 dl dd {
  display: table-cell;
  padding: 25px 0 25px 30px;
  vertical-align: top;
}

#aform-2 .aform-header {
  display: none;
}

#aform-2 .aform-hdln {
  position: relative;
  margin: 50px 0 30px;
  padding: 20px 0 0 23px;
  border-top: 1px solid #c8c5c3;
  border-bottom: none;
  font-size: 1.8rem;
}

#aform-2 .aform-hdln:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  display: block;
  width: 4px;
  height: 1.5em;
  background: #c8c5c3;
}

#aform-2 .aform-radio-ul {
  margin-top: -5px;
}

#aform-2 .aform-radio-ul li {
  float: left;
  width: 50%;
  margin-top: 5px;
}

#aform-2 .aform-name-ul,
#aform-2 .aform-kana-ul {
  overflow: hidden;
  margin-left: -10px;
}

#aform-2 .aform-name-ul li,
#aform-2 .aform-kana-ul li {
  float: left;
  margin-left: 10px;
}

#aform-2 .aform-twice-note {
  margin: 5px 0;
  font-size: 1.4rem;
}

#aform-2 .aform-input.error {
  background: #f4e0e0;
}

#aform-2 .validation-advice {
  color: #b43232;
}

#aform-2 .validation-advice label img {
  display: none;
}

#aform-2 .submit {
  background: transparent;
}

#aform-2 .submit input {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 7px 50px;
  border: 2px solid #bcb7b5;
  border-radius: 0;
  background: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
}

#aform-2 .submit input#aform_btn_submit {
  background: #8b8380;
  color: #fff;
}

#aform-2 .list1 {
  margin-top: 30px;
}

#aform-2 .list1 li {
  padding-left: 1.2em;
}

/* ================================================== *
 *
 *    ICON
 *
 * ================================================== */

.icon {
  display: inline-block;
  vertical-align: middle;
}

/* ================================================== *
 *
 *    PLUGINS
 *
 * ================================================== */

/* ------------------------------------------------- *
 *        slick
 * ------------------------------------------------- */

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slide_topics1,
.slide_brand1 {
  position: relative;
}

.slide_brand1 img {
  display: inline;
}

.slide_topics1 .slick-next,
.slide_topics1 .slick-prev,
.slide_brand1 .slick-next,
.slide_brand1 .slick-prev {
  overflow: hidden;
  position: absolute;
  width: 33px;
  height: 33px;
  padding: 0;
  border: none;
  background-color: transparent;
  text-indent: 999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}

.slide_topics1 .slick-next,
.slide_topics1 .slick-prev {
  top: 90px;
}
.slide_brand1 .slick-next,
.slide_brand1 .slick-prev {
  top: 133px;
}

.slide_topics1 .slick-next:after,
.slide_topics1 .slick-prev:after,
.slide_brand1 .slick-next:after,
.slide_brand1 .slick-prev:after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 33px;
  height: 33px;
  color: #c8c5c3;
  font-size: 3.3rem;
}

.slide_topics1 .slick-next:hover,
.slide_topics1 .slick-prev:hover,
.slide_brand1 .slick-next:hover,
.slide_brand1 .slick-prev:hover {
  opacity: .5;
}

.slide_topics1 .slick-next,
.slide_brand1 .slick-next {
  right: -31px;
}

.slide_topics1 .slick-next:after,
.slide_brand1 .slick-next:after {
  left: -999px;
}

.slide_topics1 .slick-prev,
.slide_brand1 .slick-prev {
  left: -31px;
}

.slide_topics1 .slick-prev:after,
.slide_brand1 .slick-prev:after {
  left: 999px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media screen and (min-width: 768px) {

.u-hiddenPc {
  display: none !important;
}

.u-alignCPc {
  text-align: center !important;
}

}

@media screen and (max-width: 1200px) {

.hero1_text {
  font-size: 3rem;
}

}

@media screen and (max-width: 767px) {

.u-hiddenSp {
  display: none !important;
}

html {
  min-width: 100%;
}

body.-fixed {
  position: fixed;
  z-index: 1;
}

a:active,
a:hover {
  color: #000;
}

.l-navigation {
  width: auto;
}

.l-contents {
  padding-top: 40px;
}

.header {
  min-width: 0;
  padding-right: 0;
  padding-left: 0;
}

.-top .header,
.-lower .header {
  border-bottom: 1px solid #ccc;
}

.header_inner {
  position: relative;
  display: block;
  width: auto;
  height: 40px;
  padding: 0 0 0 20px;
}

.header_logo {
  width: 171px;
  padding-top: 13px;
}

.header_logo img {
  width: 100%;
  height: auto;
}

.header.-fixed .header_inner,
.header.-opend .header_inner {
  height: 40px;
}

.header.-fixed .nav-global_nav,
.header.-opend .nav-global_nav {
  height: auto;
}

.contents {
  width: auto;
  margin-bottom: 50px;
}

.main {
  float: none;
  width: auto;
  margin-right: 20px;
  margin-left: 20px;
}

.sub {
  float: none;
  width: auto;
}

.footer {
  display: block;
  width: auto;
  padding-top: 0;
  padding-bottom: 0;
}

.footer_info {
  width: auto;
  padding: 40px 0 30px;
}

.footer_logo {
  width: 179px;
}

.footer_logo img {
  width: 100%;
  height: auto;
}

.footer_symbol {
  margin-top: 23px;
}

.footer_symbol > li {
  width: 60px;
  padding: 0 7px;
}

.footer_symbol img {
  width: 100%;
  height: auto;
}

.footer_copyright {
  font-size: 1rem;
  line-height: 1.5;
}

.pagetop {
  display: none;
}

.grid1.-col2 {
  margin-right: -5px;
  margin-left: -5px;
}

.grid1.-col2 .grid1_unit {
  padding: 0 5px;
}

.grid1.-col2 .grid1_unit.-w160,
.grid1.-col2 .grid1_unit.-w400 {
  width: auto;
}

.grid1.-col2.-type1,
.grid1.-col2.-type2 {
  margin-right: 0;
  margin-left: 0;
}

.grid1.-col2.-type1 .grid1_unit,
.grid1.-col2.-type2 .grid1_unit {
  width: auto;
  padding-right: 0;
  padding-left: 0;
  text-align: left;
}

.grid1.-col2.-type1 .grid1_unit:nth-child(odd),
.grid1.-col2.-type1 .grid1_unit:nth-child(even),
.grid1.-col2.-type2 .grid1_unit:nth-child(odd),
.grid1.-col2.-type2 .grid1_unit:nth-child(even) {
  float: none;
}

.grid1.-col2.-type4,
.grid1.-col2.-type5 {
  display: block;
  margin-right: 0;
  margin-left: 0;
}

.grid1.-col2.-type4 .grid1_unit,
.grid1.-col2.-type5 .grid1_unit {
  display: block;
  width: auto;
  padding-right: 0;
  padding-left: 0;
}

.grid1.-col3 {
  margin-right: -5px;
  margin-left: -5px;
}

.grid1.-col3 .grid1_unit {
  padding-right: 5px;
  padding-left: 5px;
}

.grid1.-col3.-type2 {
  margin-top: 20px;
  margin-right: 0;
  margin-left: 0;
}

.grid1.-col3.-type2 .grid1_unit {
  margin-top: 0;
  margin-right: 10px;
  margin-left: 10px;
}

.grid1.-col3.-type3 {
  display: block;
  margin-right: 0;
  margin-left: 0;
}

.grid1.-col3.-type3 .grid1_unit {
  display: block;
  width: auto;
  margin-top: 20px;
  padding-right: 0;
  padding-left: 0;
  border-top: 1px solid #dcdcdc;
  border-left: none;
}

.grid1.-col3.-type3 .grid1_unit:first-child {
  border-left: none;
}

.grid1.-col4 {
  margin-right: -5px;
  margin-left: -5px;
}

.grid1.-col4 .grid1_unit {
  padding-right: 5px;
  padding-left: 5px;
}

.grid1.-col4.-type2 {
  margin-right: -5px;
  margin-left: -5px;
}

.grid1.-col4.-type2 .grid1_unit {
  padding-right: 5px;
  padding-left: 5px;
}

.grid1.-border {
  margin-top: 15px !important;
}

.grid1.-col1Sp {
  display: block;
  margin-right: 0;
  margin-left: 0;
}

.grid1.-col1Sp:before,
.grid1.-col1Sp:after {
  display: none;
}

.grid1.-col1Sp .grid1_unit {
  float: none;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}

.grid1.-col1Sp .grid1_unit.-flex1,
.grid1.-col1Sp .grid1_unit.-flex2 {
  width: 100%;
}

.grid1.-col1Sp.-reverse .grid1_unit {
  float: none;
}

.grid1.-col2Sp {
  margin-right: -5px;
  margin-left: -5px;
}

.grid1.-col2Sp .grid1_unit {
  width: 50%;
  padding-right: 5px;
  padding-left: 5px;
}

.grid1.-col2Sp .grid1_unit:nth-child(2n+1) {
  clear: both;
}

.grid1.-col3Sp {
  margin-right: -5px;
  margin-left: -5px;
}

.grid1.-col3Sp .grid1_unit {
  width: 33.33%;
  padding-right: 5px;
  padding-left: 5px;
}

.grid1.-col3Sp .grid1_unit:nth-child(3n+1) {
  clear: both;
}

.grid1.-col3Sp .grid1_unit:nth-child(5n+1) {
  clear: none;
}

.frame1_inner {
  width: auto;
  padding: 20px 20px 40px;
}

.frame1.-type1 .frame1_inner {
  padding-top: 15px;
}

.frame2_inner {
  width: auto;
  padding: 20px 20px 40px;
}

.frame3 {
  display: block;
}

.frame3_unit {
  display: block;
  width: auto;
}

.frame3_unitInner {
  width: auto;
  padding: 20px 20px 40px;
}

.frame3_unit:nth-child(odd) .frame3_unitInner,
.frame3_unit:nth-child(even) .frame3_unitInner {
  margin: 0;
}

.frame4_inner {
  width: auto;
  margin: 0 20px;
  padding-top: 30px;
}

.frame4.-type1 .frame4_inner {
  padding-top: 10px;
}

.frame4:last-child .frame4_inner {
  padding-bottom: 50px;
}

.nav-local2 + .frame4 .frame4_inner {
  margin-top: 30px;
}

.frame5_inner {
  width: auto;
  padding: 20px 20px 40px;
}

.frame6 {
  margin-top: 20px;
}

.frame6_inner {
  padding: 20px;
}

.frame7 {
  margin-top: 20px;
}

.frame7_inner {
  padding: 20px;
}

.frame8_inner {
  padding: 14px;
}

.title1_inner {
  width: auto;
  padding: 25px 20px;
}

.title1_label {
  font-size: 2rem;
}

.title2 {
  margin-top: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1.6rem;
}

.frame1 .title2,
.frame2 .title2,
.frame4 .title2 {
  margin-right: -20px;
  margin-left: -20px;
}

.title3 {
  margin-top: 25px;
  padding-top: 12px;
  font-size: 1.5rem;
}

.title3 > span {
  padding-left: 15px;
}

.title2 + .title3,
.grid1.-col2 .title3:first-child {
  margin-top: 15px;
}

.title4 {
  margin-top: 20px;
  padding-left: 15px;
  font-size: 1.4rem;
}

.title4:before {
  top: 0.3em;
  font-size: 1rem;
}

.title5 {
  font-size: 1.6rem;
}

.title5.-type1 {
  font-size: 1.6rem;
}

.title5 > span {
  display: inline;
  font-size: 1.2rem;
}

.title6 {
  text-align: center;
  font-size: 1.6rem;
}

.title6 > span {
  font-size: 2.5rem;
}

.title7 {
  display: table;
  margin-top: 15px;
}

.title7.-type1 {
  font-size: 1.6rem;
}

.title7_image {
  display: table-cell;
  width: 60px;
  height: auto;
  vertical-align: middle;
}

.title7_image > span {
  display: block;
}

.title7_label {
  display: table-cell;
  vertical-align: middle;
  font-size: 1.2rem;
}

.title7_label > span {
  font-size: 2rem;
}

.title8 {
  font-size: 1.2rem;
}

.title9 {
  font-size: 1.6rem;
}

.title10 {
  margin-top: 30px;
  font-size: 1.6rem;
}

.title_top {
  padding-bottom: 13px;
  font-size: 1.6rem;
}

.hero1 {
  padding-top: 0;
}

.hero1_unit1 {
  position: static;
  width: 100%;
  padding-top: 70%;
}

.hero1_unit1Image img {
  position: relative;
  height: auto;
}

.hero1_unit1Image:nth-child(odd) img {
  left: -10%;
  width: 130%;
}

.hero1_unit1Image:nth-child(even) img {
  left: 0;
  width: 100%;
}

.hero1_unit2 {
  display: none;
}

.hero1_unit3 {
  display: none;
}

.hero1_text {
  top: auto;
  bottom: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 15px 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.3)));
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  font-size: 1.8rem;
  text-shadow: 1px 1px 1px #000000;
}

.hero2 {
  height: auto;
}

.hero2.-corporate:before {
  position: static;
  display: block;
  width: 100%;
  height: 120px;
}

.hero2.-csr:before {
  position: static;
  display: block;
  width: 100%;
  height: 120px;
  background-position: 80% 50%;
}

.hero2.-recruit:before {
  position: static;
  display: block;
  width: 100%;
  height: 120px;
}

.hero2.-news:before {
  position: static;
  display: block;
  width: 100%;
  height: 120px;
}

.hero2_inner {
  display: block;
  width: auto;
  margin: 0 20px;
}

.hero2_label {
  display: block;
  margin-top: 25px;
  margin-right: 0;
  margin-left: 0;
  color: #000;
  font-size: 2rem;
  text-shadow: none;
}

.hero2.-csr .hero2_label .hero2_mainLabel {
  font-size: 3.5rem;
}

.hero2.-csr .hero2_label .hero2_subLabel {
  font-size: 2rem;
}

.hero2.-csr .hero2_label .hero2_text {
  font-size: 1.1rem;
  line-height: 1.5;
}

.hero3 {
  margin: 30px 0 0;
  height: auto;
  background: url(./assets/images/hero_csr-governance_01sp.png) no-repeat 50% 50%;
  background-size: cover;
}

.hero3_inner {
  display: block;
  width: auto;
  margin: 0 20px;
  padding: 25px 0;
}

.hero3_unit {
  display: block;
}

.hero3_label {
  width: auto;
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
}

.hero3_text {
  width: auto;
  margin-top: 15px;
  font-size: 1.4rem;
  line-height: 1.5;
}

.hero3_text:after {
  content: "";
  display: block;
  margin-top: 20px;
  margin-right: -20px;
  margin-left: -20px;
  padding-top: 106%;
  background: url(./assets/images/hero_csr-governance_02sp.png) no-repeat 0 0;
  background-size: 100% auto;
}

.hero3_text br {
  display: none;
}

.hero3_subLabel {
  position: relative;
  width: auto;
  margin-top: -11.6%;
  margin-right: -20px;
  margin-left: -20px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.2;
}

.hero3_subLabel > span {
  display: inline-block;
  font-size: 1.4rem;
}

.hero3_subText {
  width: auto;
  margin-top: 10px;
  color: #fff;
  font-size: 1.2rem;
  text-shadow: 1px 1px 1px #000;
}

.hero3_subText br {
  display: none;
}

.hero3_link > li {
  position: static;
}

.hero3_link > li.-type1,
.hero3_link > li.-type2,
.hero3_link > li.-type3 {
  width: auto;
  min-height: auto;
  background: none;
}

.hero3_linkItem:before {
  display: none;
}

.hero3_link .-type1 .hero3_linkItem,
.hero3_link .-type2 .hero3_linkItem,
.hero3_link .-type3 .hero3_linkItem {
  margin: 10px 0 0;
}

.hero3_linkItemTitle {
  font-size: 1.4rem;
}

.hero3_linkItemTitle > span {
  font-size: 2rem;
}

.hero3_linkItemTitle.link1 {
  text-align: left;
}

.hero4 {
  height: 568px;
}

.hero4.-csrspl07 {
  background-image: url(./assets/images/hero_csr-spl_yano.jpg);
  background-size: cover;
}

.hero4.-csrspl06 {
  background-image: url(./assets/images/hero_csr-spl_yamazaki.jpg);
  background-size: cover;
}

.hero4.-csrspl05 {
  background-image: url(./assets/images/hero_csr-spl_takebe_sp.jpg);
  background-size: cover;
}

.hero4.-csrspl04 {
  background-image: url(./assets/images/hero_csr-spl_matsumoto_sp.jpg);
  background-size: cover;
}

.hero4.-csrspl03 {
  background-image: url(./assets/images/hero_csr-spl_oike.jpg);
  background-size: cover;
}

.hero4.-csrspl02 {
  background-image: url(./assets/images/hero_csr-spl_honda.jpg);
  background-size: cover;
}

.hero4.-csrspl01 {
  background-image: url(./assets/images/hero_csr-spl_yamanobe.jpg);
  background-size: cover;
}

.hero4_label {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 0 20px;
  font-size: 3rem;
}

.hero4_label .-icon {
  width: 80px;
  height: 80px;
  padding: 7px;
  font-size: 1.5rem;
}

.hero4_label .-icon .-num {
  position: absolute;
  right: 3px;
  bottom: 3px;
  display: block;
  font-size: 4.8rem;
}

.hero5 {
  display: block;
  width: auto;
  height: auto;
  margin-top: 30px;
}

.hero5.-csrgovernance01,
.hero5.-csrgovernance02,
.hero5.-csrgovernance03,
.hero5.-csrgovernance04 {
  background-position: 50% 20px;
  background-size: auto 170px;
}

.hero5_inner {
  display: block;
  padding: 200px 20px 20px;
}

.hero5_subLabel {
  font-size: 1.4rem;
}

.hero5_title {
  font-size: 1.4rem;
}

.hero5_title > span {
  font-size: 2.8rem;
}

.hero5_text {
  margin-top: 10px;
  font-size: 1.6rem;
}

.text1 {
  margin: 15px 0 0;
  font-size: 1.2rem;
}

.text1.-border {
  margin-top: 20px;
  padding-top: 20px;
}

.text1.-centerPc {
  text-align: left;
}

.text1 .-bold {
  font-size: 1.8rem;
}

.text1 .-bold2 {
  font-size: 1.4rem;
}

.text1 .-name {
  font-size: 1.8rem;
}

.text1 .-name > span {
  font-size: 1.2rem;
}

.text1 .-report {
  font-size: 1.4rem;
}

.text1 .-report > .-num {
  font-size: 2rem;
}

.text1 .-report > .-sub {
  font-size: 1.2rem;
}

.text1 .-logo {
  margin-left: -5px;
  margin-right: -5px;
  padding-left: 0;
}

.text1 .-logo > span {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 33.33%;
  margin-left: 0;
  padding: 0 5px;
  line-height: 24px;
}

.text1 .-logo > span.-dinos {
  width: 33.33%;
  height: auto;
}



.text1 .-logo > span.-image {
  width: 33.33%;
  height: auto;
}

.text1 p {
  margin-top: 15px;
}

.text2 {
  margin: 15px 0 0;
  font-size: 1.6rem;
}

.text2 p {
  margin-top: 15px;
}

.lead1 {
  font-size: 1.6rem;
}

.lead1 > span {
  font-size: 1.2rem;
}

.lead2 {
  font-size: 1.6rem;
}

.lead2 > span {
  margin-left: 0;
  font-size: 1.2rem;
}

.notes1 {
  margin-top: 15px;
  font-size: 1.2rem;
}

.notes1.-attention {
  color: #900;
  font-size: 1.4rem;
}

.notes1.-border {
  padding-top: 15px;
}

.list1 {
  margin-top: 15px;
  font-size: 1.2rem;
}

.list1 > li:before {
  margin-right: 0.6em;
  font-size: 0.9rem;
  line-height: 2;
}

.list1.-type1 {
  line-height: 1.5;
}

.list1.-type1 > li {
  margin-top: 2px;
}

.list1.-type1 > li:before {
  line-height: 2;
}

.list1_title {
  margin-top: 15px;
  font-size: 1.4rem;
}

.list1_title.-type1 {
  margin-top: 20px;
  padding-top: 20px;
}

.list2 {
  margin-top: 10px;
  font-size: 1.2rem;
}

.list2:before,
.list2:after {
  display: none;
}

.list2 > li {
  float: none;
  margin-top: 5px;
  margin-left: 0;
}

.list3 {
  margin-top: 15px;
  font-size: 1.2rem;
}

.list3 > li {
  margin-top: 10px;
}

.list_num1 {
  margin-top: 15px;
  font-size: 1.2rem;
}

.list_num2 {
  margin-top: 15px;
  font-size: 1.2rem;
}

.list_num2.-indent {
  margin-left: 1.2em;
}

.list_num2.-type1 > li {
  padding-left: 1.5em;
}

.list_num2.-type1 > li .-mark {
  width: 1.5em;
}

.list_def1 {
  margin-top: 15px;
  font-size: 1.2rem;
}

.list_def1.-type1 dt {
  float: none;
}

.list_def1.-type1.-w6em dt,
.list_def1.-type1.-w6em dt,
.list_def1.-type1.-w10em dt {
  width: auto;
}

.list_def1.-type1.-w6em dd,
.list_def1.-type1.-w6em dd,
.list_def1.-type1.-w10em dd {
  margin-left: auto;
}

.link1 {
  padding-left: 22px;
}

.link1:before {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  margin-right: 5px;
}

.link1:hover {
  opacity: 1;
}

.link1.-external:after {
  margin-left: 3px;
  font-size: 10px;
}

.link1.-anchor:before {
  -webkit-transform: rotate(90deg) scale(0.8);
  -ms-transform: rotate(90deg) scale(0.8);
  transform: rotate(90deg) scale(0.8);
}

.link1.-back:before {
  -webkit-transform: rotate(180deg) scale(0.8);
  -ms-transform: rotate(180deg) scale(0.8);
  transform: rotate(180deg) scale(0.8);
}

.link_image1 {
  font-size: 1.4rem;
}

.link_image1 > a.-enlarge {
  position: relative;
}

.link_image1 > a.-enlarge:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #bcb7b5;
  color: #fff;
  text-align: center;
  font-size: 2rem;
}

.link_image1 > a > span {
  margin: 5px 0 0;
}

.link_image1 > a > span:before {
  line-height: 2.1;
}

.link_image1 > a > span.-external:after {
  margin-left: 3px;
  font-size: 10px;
}

.link_image1 > a > span.-name {
  font-size: 1.8rem;
}

.link_image1 > a > span.-name .-jobBefore {
  font-size: 1.2rem;
}

.link_image1 > a > span.-name .-jobAfter {
  display: block;
  font-size: 1.4rem;
}

.link_image1 > a > span .-icon {
  width: 35px;
  height: 35px;
  padding: 2px;
  font-size: 0.7rem;
  vertical-align: top;
}

.link_image1 > a > span .-icon .-num {
  right: 2px;
  bottom: 2px;
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.link_image1 > a:hover {
  opacity: 1;
}

.image1 {
  margin-top: 15px;
}

.image1.-type1 {
  margin-right: -20px;
  margin-left: -20px;
}

.image1.-type1 .-caption {
  margin-right: 20px;
  margin-left: 20px;
}

.image1.-type2 {
  padding-left: 0;
}

.image1.-type3 {
  margin-right: auto;
  margin-left: auto;
}

.image1.-right {
  margin-right: auto;
}

.image1.-left {
  margin-left: auto;
}

.image1.-w92 img {
  width: 60px;
}

.image1.-w145 img {
  width: 60px;
}

.image1.-w160 img {
  width: 30%;
}

.image1.-w200 img {
  width: 30%;
}

.image1.-w240 img {
  width: 160px;
}

.image1.-w269 img {
  width: 160px;
}

.image1.-w280 img {
  width: 170px;
}

.image1.-w340 img {
  width: 180px;
}

.image1.-w355 img {
  width: 168px;
}

.image1.-w356 img {
  width: 168px;
}

.image1.-w380 img {
  width: 160px;
}

.image1.-w399 img {
  width: 168px;
}

.image1.-w442 img {
  width: 70%;
}

.image1.-w250 img,
.image1.-w396 img,
.image1.-w460 img,
.image1.-w472 img,
.image1.-w502 img,
.image1.-w512 img,
.image1.-w540 img,
.image1.-w542 img,
.image1.-w548 img,
.image1.-w580 img,
.image1.-w641 img,
.image1.-w793 img,
.image1.-w880 img,
.image1.-w1000 img {
  width: 100%;
}

.image1.-w1014 {
  margin-top: 20px;
  padding-right: 0;
  width: 100%;
}

.image1.-w1014 img {
  width: 100%;
}

.image1 .-caption {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.image1 img + .-caption {
  margin-top: 10px;
  margin-bottom: 0;
}

.button1 {
  width: 100%;
  padding-top: 10px;
  padding-right: 27px;
  padding-bottom: 10px;
  padding-left: 27px;
}

.button1:hover {
  opacity: 1;
}

.button1:hover:before {
  right: 10px;
}

.button1 .-bold {
  font-size: 1.8rem;
}

.button1 .-num {
  font-size: 2.5rem;
}

.button1 .-image {
  display: block;
  margin-right: auto;
  margin-bottom: 5px;
  margin-left: auto;
}

.button_set1 {
  margin-top: 15px;
}

.button_set2 {
  display: block;
  margin-top: 15px;
  font-size: 1.2rem;
}

.button_set2 > li {
  display: block;
  margin-top: 20px;
  padding-left: 0;
}

.button_set2.-gutter10 > li {
  padding-left: 0;
}

.button_set2.-type1 > li {
  padding-top: 10px;
  padding-left: 0;
}

.button_set2.-type1 > li:first-child {
  padding-top: 0;
}

.button_set2.-type2 > li {
  padding-top: 0;
}

.button_set2.-type4 {
  overflow: hidden;
  display: block;
  margin-top: 0;
}

.button_set2.-type4 > li {
  float: left;
  display: block;
  padding-top: 30px;
}

.button_set2.-type5 > li {
  float: none;
  margin-top: 15px;
}

.button_set2 .-caption {
  margin-top: 2px;
  font-size: 1.2rem;
}

.button_set2 .-caption .-bold {
  font-size: 1.8rem;
}

.table1 {
  margin-top: 15px;
  font-size: 1.2rem;
}

.table1.-arrow:before {
  top: -15px;
  border-width: 12px 10px 0 10px;
}

.table1_table {
  margin-top: 20px;
}

.table1_table th {
  min-width: 5em;
  padding: 8px 10px;
  white-space: normal;
}

.table1_table th.-w180,
.table1_table th.-w380 {
  width: auto;
}

.table1_table thead tr:first-child th {
  font-size: 1.4rem;
}

.table1_table td {
  padding: 8px 0 8px 10px;
}

.table1_table.-type1 th {
  display: block;
}

.table1_table.-type1 td {
  display: block;
}

.table2 {
  margin-top: 20px;
  font-size: 1.2rem;
}

.table2_table th,
.table2_table td {
  padding-top: 10px;
  padding-left: 20px;
}

.nav-global_menu {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 40px;
  height: 40px;
  border-left: 1px solid #ccc;
}

.nav-global_menuBar {
  position: absolute;
  right: 10px;
  display: block;
  width: 13px;
  height: 2px;
  border-radius: 1.5px;
  background: #bcb7b5;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.nav-global_menuBar:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -6px;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #bcb7b5;
}

.nav-global_menuBar:nth-of-type(1) {
  top: 13px;
}

.nav-global_menuBar:nth-of-type(2) {
  top: 19px;
}

.nav-global_menuBar:nth-of-type(3) {
  top: 25px;
}

.nav-global_menu.-active .nav-global_menuBar:nth-of-type(1) {
  width: 23px;
  -webkit-transform: translateX(1px) translateY(6px) rotate(-45deg);
  -ms-transform: translateX(1px) translateY(6px) rotate(-45deg);
  transform: translateX(1px) translateY(6px) rotate(-45deg);
}

.nav-global_menu.-active .nav-global_menuBar:nth-of-type(1):before {
  display: none;
}

.nav-global_menu.-active .nav-global_menuBar:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar .8s forwards;
  animation: active-menu-bar .8s forwards;
}

.nav-global_menu.-active .nav-global_menuBar:nth-of-type(3) {
  width: 23px;
  -webkit-transform: translateX(1px) translateY(-6px) rotate(45deg);
  -ms-transform: translateX(1px) translateY(-6px) rotate(45deg);
  transform: translateX(1px) translateY(-6px) rotate(45deg);
}

.nav-global_menu.-active .nav-global_menuBar:nth-of-type(3):before {
  display: none;
}

.nav-global_menu.-active + .nav-global {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-height: calc(100vh + 67px);
  -webkit-transition: max-height 0.2s ease-in;
  transition: max-height 0.2s ease-in;
}

.nav-global {
  overflow: hidden;
  position: absolute;
  z-index: 999;
  top: 40px;
  left: 0;
  width: 100%;
  max-height: 0;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}

.nav-global_nav {
  overflow: auto;
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 40px);
  font-weight: 600;
}

.nav-global_nav > li {
  display: block;
  width: 100%;
  border-top: 1px solid #ccc;
  text-align: left;
}

.nav-global_nav > li:last-child {
  margin-bottom: 67px;
  border-bottom: 1px solid #ccc;
}

.nav-global_navItem {
  position: relative;
  display: block;
  height: auto;
  padding: 10px 40px 10px 20px;
  background: #ebe5e2;
}

.nav-global_navItem:before {
  content: "";
  position: absolute;
  top: 0;
  left: auto;
  right: 17px;
  bottom: 0;
  display: block;
  width: 7px;
  height: 10px;
  margin: auto;
  color: #bcb7b5;
  font-size: 10px;
  line-height: 10px;
}

.nav-global_navItem > span {
  display: block;
  padding-right: 0;
  padding-left: 0;
}

.header.-fixed .nav-global_navItem {
  height: auto;
}

.nav-global_nav > li.-hasLocal {
  position: relative;
}

.nav-global_nav > li.-hasLocal .nav-global_navItem:before,
.nav-global_nav > li.-hasLocal .nav-global_navItem:after {
  display: none;
}

.nav-global_nav > li.-hasLocal:hover .nav-global_navItem:before,
.nav-global_nav > li.-hasLocal:hover .nav-global_navItem:after {
  z-index: auto;
  opacity: 1;
}

.nav-global_nav > li.-hasLocal:hover .nav-global_local {
  display: inherit;
}

.nav-global_localToggle {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 40px;
  height: 40px;
}

.nav-global_localToggleBar {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
}

.nav-global_localToggleBar:before,
.nav-global_localToggleBar:after {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.nav-global_localToggleBar:before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  height: 2px;
  border: none;
  background: #bcb7b5;
}

.nav-global_localToggleBar:after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 12px;
  border: none;
  background: #bcb7b5;
}

.nav-global_localToggle.-active .nav-global_localToggleBar:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.nav-global_localToggle.-active .nav-global_localToggleBar:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.nav-global_local {
  overflow: hidden;
  position: static;
  display: block;
  background: transparent;
  color: #000;
}

.nav-global_localToggle + .nav-global_local {
  max-height: 0;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}

.nav-global_localToggle.-active + .nav-global_local {
  max-height: 100vh;
  -webkit-transition: max-height 0.2s ease-in;
  transition: max-height 0.2s ease-in;
}

.nav-global_localInner {
  display: block;
  width: auto;
  margin: 0;
  padding: 0;
}

.nav-global_localHeader {
  float: none;
  width: auto;
}

.nav-global_localBody {
  float: none;
  width: auto;
}

.nav-global_localTitle {
  display: none;
}

.nav-global_localLink {
  display: none;
}

.nav-global_localNav {
  display: block;
  margin-top: 0;
  font-size: 1.2rem;
  font-weight: 500;
}

.nav-global_localNav > li {
  width: 100%;
  margin: 0;
  border-top: 1px solid #ccc;
}

.nav-global_localNav > li > a {
  display: block;
  padding: 10px 40px;
  background: #faf6f4;
  -webkit-transition: none;
  transition: none;
}

.nav-global_localNav > li > a:hover {
  opacity: 1;
}

.nav-global_localNav > li > a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 17px;
  bottom: 0;
  display: block;
  width: 7px;
  height: 10px;
  margin: auto;
  color: #bcb7b5;
  font-size: 10px;
  line-height: 10px;
}

.nav-global_localNav > li > a span {
  display: inline-block;
  margin-top: 0;
  padding-left: 0;
  background: none;
  font-size: 1.2rem;
  text-shadow: none;
}

.nav-global_localNav > li > a img {
  display: none;
}

.overlay {
  z-index: 1;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.nav-local1 {
  display: none;
}

.nav-local2 {
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
}

.nav-local2.-footer {
  margin-top: 30px;
  padding-top: 0;
}

.nav-local2_title {
  display: block;
  font-size: 1.4rem;
  padding: 10px 40px 10px 20px;
  border-bottom: 1px solid #ccc;
}

.nav-local2.-footer .nav-local2_title {
  padding-top: 5px;
  padding-bottom: 5px;
  background: #bcb7b5;
  color: #fff;
  font-weight: 600;
}

.nav-local2_toggle {
  position: relative;
}

.nav-local2_toggleBar {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 40px;
  height: 40px;
}

.nav-local2_toggleBar:before,
.nav-local2_toggleBar:after {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.nav-local2_toggleBar:before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  height: 2px;
  border: none;
  background: #bcb7b5;
}

.nav-local2_toggleBar:after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 12px;
  border: none;
  background: #bcb7b5;
}

.nav-local2_toggle.-active .nav-local2_toggleBar:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.nav-local2_toggle.-active .nav-local2_toggleBar:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.nav-local2_nav {
  display: block;
  font-size: 1.2rem;
}

.nav-local2_toggle + .nav-local2_nav {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}

.nav-local2_toggle.-active + .nav-local2_nav {
  max-height: 100vh;
  border-bottom: 1px solid #ccc;
  -webkit-transition: max-height 0.2s ease-in;
  transition: max-height 0.2s ease-in;
}

.nav-local2_navItem {
  display: block;
  padding: 0;
  border-left: none;
}

.nav-local2_navItem:first-child {
  margin-top: 10px;
  padding-left: 0;
}

.nav-local2_navItem:last-child {
  margin-bottom: 10px;
  padding-right: 0;
}

.nav-local2_navItem.-current > a > span:after {
  bottom: -3px;
}

.nav-local2_navItem > a,
.nav-local2_navItem > span {
  display: block;
  padding: 8px 20px;
}

.nav-local2_navItem > a:before,
.nav-local2_navItem > span:before {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  margin-right: 5px;
}

.nav-local2_navItem > a:hover,
.nav-local2_navItem > span:hover {
  opacity: 1;
}

.nav-local3_title {
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  text-align: left;
  font-size: 1.2rem;
}

.nav-local3_subTitle {
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  text-align: left;
  font-size: 1.2rem;
}

.nav-local3_nav > li > a {
  position: relative;
  padding-top: 12px;
  padding-right: 40px;
  padding-bottom: 12px;
  padding-left: 20px;
}

.nav-local3_nav > li > a:before {
  position: absolute;
  top: 0;
  left: auto;
  right: 17px;
  bottom: 0;
  width: 7px;
  height: 10px;
  margin: auto;
  line-height: 10px;
}

.nav-local3_subNav {
  margin-top: 0;
  margin-left: 20px;
  padding-bottom: 0;
  border-top: 1px solid #dcdcdc;
}

.nav-local3_subNav:before,
.nav-local3_subNav:after {
  content: " ";
  display: table;
}

.nav-local3_subNav:after {
  clear: both;
}

.nav-local3_subNav > li {
  float: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
}

.nav-local3_subNav > li > a {
  position: relative;
  padding-top: 8px;
  padding-right: 40px;
  padding-bottom: 8px;
  padding-left: 20px;
}

.nav-local3_subNav > li > a:before {
  position: absolute;
  top: 0;
  left: auto;
  right: 17px;
  bottom: 0;
  width: 7px;
  height: 10px;
  margin: auto;
  line-height: 10px;
}

.nav-local3_subNav > li.-current {
  background: transparent;
}

.nav-local3_subNav > li.-current > a {
  color: #bcb7b5;
}

.nav-footer {
  display: block;
  width: auto;
  border-bottom: 1px solid #ccc;
}

.nav-footer_nav {
  float: none;
  width: auto;
  margin-left: 0;
}

.nav-footer_nav > li {
  margin-top: 0;
  border-top: 1px solid #ccc;
}

.nav-footer_nav > li > a {
  display: block;
  padding: 10px 40px 10px 20px;
  background: #ebe5e2;
}

.nav-footer_nav > li > a:before {
  position: absolute;
  top: 0;
  left: auto;
  right: 17px;
  bottom: 0;
  width: 7px;
  height: 10px;
  margin: auto;
  line-height: 10px;
}

.nav-footer_localNav {
  overflow: hidden;
  max-height: 0;
  margin-left: 0;
  font-weight: 500;
}

.nav-footer_localNav > li {
  margin-top: 0;
  border-top: 1px solid #ccc;
}

.nav-footer_localNav > li:first-child {
  margin-top: 0;
}

.nav-footer_localNav > li > a {
  display: block;
  padding: 10px 40px 10px 20px;
  background: #faf6f4;
}

.nav-footer_localNav > li > a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 17px;
  display: block;
  bottom: 0;
  width: 7px;
  height: 10px;
  margin: auto;
  color: #bcb7b5;
  font-size: 10px;
  line-height: 10px;
}

.nav-footer_nav > li.-hasLocal {
  position: relative;
}

.nav-footer_nav > li.-hasLocal > a:before {
  display: none;
}

.nav-footer_localToggle {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 40px;
  height: 40px;
}

.nav-footer_localToggleBar {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
}

.nav-footer_localToggleBar:before,
.nav-footer_localToggleBar:after {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.nav-footer_localToggleBar:before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  height: 2px;
  border: none;
  background: #bcb7b5;
}

.nav-footer_localToggleBar:after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 12px;
  border: none;
  background: #bcb7b5;
}

.nav-footer_localToggle.-active .nav-footer_localToggleBar:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.nav-footer_localToggle.-active .nav-footer_localToggleBar:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.nav-footer_localToggle + .nav-footer_localNav {
  overflow: hidden;
  min-height: 0;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}

.nav-footer_localToggle.-active + .nav-footer_localNav {
  max-height: 100vh;
  -webkit-transition: max-height 0.2s ease-in;
  transition: max-height 0.2s ease-in;
}

.nav-csrspl01 {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
  z-index: 1;
  width: 100%;
  height: 40px;
}

.nav-csrspl01.-fixed {
  position: fixed;
  top: 40px;
}

.nav-csrspl01_nav {
  display: table;
  width: 100%;
  height: 40px;
}

.nav-csrspl01_navItem {
  display: table-cell;
  width: auto;
  height: 40px;
  vertical-align: top;
  font-size: 0.8rem;
}

.nav-csrspl01_navItem > a,
.nav-csrspl01_navItem > span {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 40px;
}

.nav-csrspl01_navItem.-next {
  width: 40px;
  margin-bottom: 0;
  border-right: 1px solid #fff;
}

.nav-csrspl01_navItem.-next > a,
.nav-csrspl01_navItem.-next > span {
  padding-top: 5px;
}

.nav-csrspl01_navItem.-next > a:before,
.nav-csrspl01_navItem.-next > span:before {
  font-size: 1.3rem;
}

.nav-csrspl01_navItem.-prev {
  width: 40px;
  margin-top: 0;
  border-left: 1px solid #fff;
}

.nav-csrspl01_navItem.-prev > a,
.nav-csrspl01_navItem.-prev > span {
  padding-top: 5px;
}

.nav-csrspl01_navItem.-prev > a:after,
.nav-csrspl01_navItem.-prev > span:after {
  font-size: 1.3rem;
}

.nav-csrspl01_navItem.-current {
  margin: 0;
  font-size: 1.4rem;
  line-height: 40px;
  vertical-align: middle;
}

.nav-csrspl01_navItem.-current > span {
  position: relative;
}

.nav-csrspl01_navItem.-current > span:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 4px 3.5px 0 3.5px;
  border-color: #ffffff transparent transparent transparent;
}

.nav-csrspl01_navItem.-current .-num {
  margin-left: 5px;
  font-size: 2.5rem;
  vertical-align: -2px;
}

.nav-csrspl01_navItem.-active > span {
  background: #a39d9a;
}

.nav-csrspl01_navItem.-active > span:before {
  z-index: 2;
  bottom: -4px;
  border-color: #a39d9a transparent transparent transparent;
}

.nav-csrspl01_navItem.-index {
  display: none;
}

.nav-csrspl01_sub {
  position: absolute;
  top: 40px;
  z-index: 1;
  height: auto;
}

.nav-csrspl01_navItem.-index.-hover .nav-csrspl01_sub {
  display: none;
}

.nav-csrspl01_navItem.-active .nav-csrspl01_sub {
  display: block;
}

.nav-csrspl01_subNav {
  position: static;
  width: auto;
  padding: 15px 30px 30px;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.nav-csrspl01_subNavItem {
  float: none;
  width: 100%;
  min-height: 35px;
  margin-top: 15px;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-size: 1.2rem;
  line-height: 35px;
}

.nav-csrspl01_subNavItem > a {
  padding-left: 45px;
}

.nav-csrspl01_subNavItem > a:hover {
  color: #fff;
  opacity: 1;
}

.nav-csrspl01_subNavItem .-icon {
  width: 35px;
  height: 35px;
  margin-right: 10px;
  padding: 2px;
  font-size: 0.7rem;
  vertical-align: top;
}

.nav-csrspl01_subNavItem .-icon .-num {
  right: 2px;
  bottom: 2px;
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.nav-csrspl02 {
  font-size: 1.2rem;
}

.nav-csrspl02_title {
  padding-bottom: 13px;
  font-size: 1.6rem;
}

.nav-csrspl02_navItem {
  float: none;
  width: 100%;
  min-height: 35px;
  margin-top: 15px;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-size: 1.2rem;
  line-height: 35px;
}

.nav-csrspl02_navItem > a {
  padding-left: 45px;
}

.nav-csrspl02_navItem > a:hover {
  opacity: 1;
}

.nav-csrspl02_navItem .-icon {
  width: 35px;
  height: 35px;
  margin-right: 10px;
  padding: 2px;
  font-size: 0.7rem;
  vertical-align: top;
}

.nav-csrspl02_navItem .-icon .-num {
  right: 2px;
  bottom: 2px;
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.nav-csrspl02_link {
  padding-top: 20px;
}

.breadcrumb1 {
  display: none;
}

.shortcut1 {
  margin-top: 15px;
}

.shortcut1_heading {
  position: relative;
}

.shortcut1_toggle {
  position: absolute;
  right: 0;
  bottom: 4px;
  display: block;
}

.shortcut1_body {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}

.shortcut1_heading.-active + .shortcut1_body {
  max-height: 100vh;
  -webkit-transition: max-height 0.2s ease-in;
  transition: max-height 0.2s ease-in;
}

.topics1 {
  font-size: 1.2rem;
}

.topics1 > a:hover {
  opacity: 1;
}

.topics1_text {
  margin-top: 10px;
}

.topics1_date {
  margin-top: 5px;
}

.news1 {
  margin-top: 10px;
  font-size: 1.2rem;
}

.news1_date {
  margin-right: 10px;
}

.news1_category > li {
  width: 86px;
  line-height: 1.8;
}

.news1_title {
  clear: both;
  float: none;
  margin-top: 0;
  margin-left: 0;
  padding-top: 5px;
}

.news1_text {
  padding-top: 5px;
}

.news1_text.-pdf {
  padding-left: 23px;
}

.news1_text.-pdf:before {
  top: 5px;
  display: block;
  width: 15px;
  height: 18px;
  background: url(./assets/images/icn_pdf_01.svg) no-repeat 0 0;
}

.banner1 {
  margin-top: 15px;
}

.banner1_logo {
  height: 45px;
  line-height: 45px;
}

.banner1_logo.-type1 {
  line-height: 43px;
}

.banner1_logo > img {
  width: auto;
  height: 17px;
}

.banner1_logo > img.-type1 {
  width: 110px;
  height: auto;
}

.banner1_logo > img.-type2 {
  width: auto;
  height: 25px;
}

.banner1_caption {
  font-size: 1.2rem;
}

.entry1 {
  margin-top: 20px;
  padding-top: 20px;
  font-size: 1.2rem;
}

.entry1 p {
  margin-top: 10px;
}

.entry1 .-pdf {
  padding-left: 23px;
}

.entry1 .-pdf:before {
  width: 15px;
  height: 18px;
  background: url(./assets/images/icn_pdf_01.svg) no-repeat 0 0;
}

.media1_label {
  margin-top: 8px;
}

.media1_label > li {
  float: none;
  width: 100%;
  line-height: 1.8;
}

.media1_text {
  font-size: 1.2rem;
}

.history1 {
  overflow: visible;
}

.history1:before {
  top: 43px;
  right: auto;
  left: 34px;
  width: 2px;
}

.history1_unit {
  margin: 15px 0 0 80px;
  padding: 14px;
  border: 1px solid #bcb7b5;
}

.history1_unit:before,
.history1_unit.-nocl:before {
  content: "";
  position: absolute;
  display: block;
  top: 45px;
  left: -41px;
  width: 40px;
  height: 1px;
  background: #bcb7b5;
}

.history1_unit:last-child:before {
  top: 50px;
  right: auto;
  left: -47px;
  display: block;
  width: 2px;
}

.history1_unit.-nocl + .history1_unit {
  margin-top: 15px;
}

.history1_label {
  position: static;
  width: 66px;
  height: auto;
  padding: 3px 0;
  font-size: 1.1rem;
  line-height: 1.5;
}

.history1_year {
  top: 0;
  left: -81px;
  right: auto;
  width: 70px;
  height: 30px;
  font-size: 2rem;
  line-height: 30px;
}

.history1_year:before {
  bottom: -8px;
  border-width: 8px 4px 0 4px;
}

.history1_year:after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -20px;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: auto;
  background: #bcb7b5;
}

.history1_subUnit {
  width: 100%;
  margin-top: 0;
  padding: 0;
  border: none;
}

.history1_subUnit:before {
  display: none;
}

.history1_subUnit.-right,
.history1_subUnit.-left {
  float: none;
}

.history1_subUnit .history1_label {
  display: block;
}

.history1_unit.-type1 .history1_subUnit {
  margin-top: 0;
}

.history1_subUnitInner {
  margin-top: 15px;
  padding-top: 15px;
}

.history1_subUnitInner:first-of-type {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #c8c5c3;
}

.history1_subUnitInner:before,
.history1_subUnitInner:after {
  display: none;
}

.history1_subUnitInner .history1_text,
.history1_subUnitInner .history1_image {
  float: none;
  width: auto;
  margin-top: 5px;
}

.history1_unit .history1_subUnit:first-of-type .history1_subUnitInner:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.history1_text {
  font-size: 1.2rem;
}

.csrmessage1 {
  margin-right: -20px;
  margin-left: -20px;
  padding: 30px 20px;
}

.csrmessage1_title {
  font-size: 1.8rem;
}

.csrmessage1_text {
  margin-top: 20px;
  font-size: 1.2rem;
  line-height: 2;
}

.csrspl01_unit:first-of-type {
  padding-top: 40px;
}

.csrspl01_introUnit {
  display: block;
  width: 100%;
}

.csrspl01_introUnit.-csrspl07,
.csrspl01_introUnit.-csrspl06,
.csrspl01_introUnit.-csrspl05,
.csrspl01_introUnit.-csrspl04,
.csrspl01_introUnit.-csrspl03,
.csrspl01_introUnit.-csrspl02,
.csrspl01_introUnit.-csrspl01 {
  display: none;
}

.csrspl01_introUnitInner {
  width: auto;
  padding: 40px 20px;
}

.csrspl01_introUnit.-reverse {
  padding-left: 0;
}

.csrspl01_introImage {
  position: relative;
  display: block;
}

.csrspl01_introImage > img {
  width: 100%;
  height: auto;
}

.csrspl01_introTitle {
  margin: 20px 0 0;
  font-size: 2rem;
}

.csrspl01_introLead {
  margin: 10px 0 0;
  font-size: 1.6rem;
}

.csrspl01_introText {
  margin-top: 20px;
  font-size: 1.2rem;
}

.csrspl01_introText .-name {
  font-size: 1.8rem;
}

.csrspl01_introNote {
  margin-top: 10px;
  text-align: left;
  font-size: 1.2rem;
}

.csrspl01_introIcon {
  width: 35px;
  height: 35px;
  padding: 2px;
  font-size: 0.7rem;
  vertical-align: top;
}

.csrspl01_introIcon .-num {
  right: 2px;
  bottom: 2px;
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.faq1_q {
  padding-left: 18px;
  font-size: 1.4rem;
}

.faq1_a {
  padding-left: 18px;
  font-size: 1.2rem;
}

.faq1_icon {
  width: 14px;
  font-size: 1.2rem;
}

.modal {
  right: 0;
  left: 0;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  padding: 20px;
}

.modal_close {
  top: -30px;
}

.modal_close:before {
  font-size: 1.6rem;
}

.map_canvas {
  height: 300px;
  margin-top: 15px;
}

#aform-1 dl {
  display: block;
  margin-top: 20px;
}

#aform-1 dl + dl {
  margin-top: 0;
  border-top: none;
}

#aform-1 dl dt {
  display: block;
  padding: 8px 10px;
}

#aform-1 dl dt .required {
  top: 25px;
  right: 30px;
  width: 3em;
  height: 1.3em;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.3;
}

#aform-1 dl dd {
  display: block;
  padding: 8px 0;
}

#aform-1 dl input[type="text"],
#aform-1 dl input[type="tel"],
#aform-1 dl input[type="email"] {
  width: 100%;
  font-size: 1.2rem;
}

#aform-1 dl input[type="email"].aform-email {
  width: 100%;
}

#aform-1 dl select {
  font-size: 1.2rem;
  width: 100%;
}

#aform-1 dl textarea {
  font-size: 1.2rem;
}

#aform-1 .aform-hdln {
  margin-top: 25px;
  margin-bottom: 15px;
  padding-top: 10px;
  padding-bottom: 0;
  padding-left: 19px;
  font-size: 1.5rem;
}

#aform-1 .aform-hdln:before {
  top: 10px;
}

#aform-1 .aform-radio-ul {
  margin-top: -10px;
}

#aform-1 .aform-radio-ul li {
  float: none;
  width: 100%;
  margin-top: 10px;
}

#aform-1 .aform-name-ul,
#aform-1 .aform-kana-ul {
  margin-top: 0;
  margin-left: 0;
}

#aform-1 .aform-name-ul li,
#aform-1 .aform-kana-ul li {
  float: none;
  width: 100%;
  margin-top: 10px;
  margin-left: 0;
}

#aform-1 .aform-twice-note {
  font-size: 1.2rem;
}

#aform-1 .submit {
  margin-right: 0;
  margin-left: 0;
  padding: 0;
}

#aform-1 .submit input {
  display: block;
  width: 100%;
  margin: 0;
  font-size: 1.4rem;
}

#aform-1 .aform-content dl dt .aform-label {
  padding-right: 0;
}

#aform-1 .list1 {
  margin-top: 15px;
}


#aform-2 dl {
  display: block;
  margin-top: 20px;
}

#aform-2 dl + dl {
  margin-top: 0;
  border-top: none;
}

#aform-2 dl dt {
  display: block;
  padding: 8px 10px;
}

#aform-2 dl dt .required {
  top: 25px;
  right: 30px;
  width: 3em;
  height: 1.3em;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.3;
}

#aform-2 dl dd {
  display: block;
  padding: 8px 0;
}

#aform-2 dl input[type="text"],
#aform-2 dl input[type="tel"],
#aform-2 dl input[type="email"] {
  width: 100%;
  font-size: 1.2rem;
}

#aform-2 dl input[type="email"].aform-email {
  width: 100%;
}

#aform-2 dl select {
  font-size: 1.2rem;
  width: 100%;
}

#aform-2 dl textarea {
  font-size: 1.2rem;
}

#aform-2 .aform-hdln {
  margin-top: 25px;
  margin-bottom: 15px;
  padding-top: 10px;
  padding-bottom: 0;
  padding-left: 19px;
  font-size: 1.5rem;
}

#aform-2 .aform-hdln:before {
  top: 10px;
}

#aform-2 .aform-radio-ul {
  margin-top: -10px;
}

#aform-2 .aform-radio-ul li {
  float: none;
  width: 100%;
  margin-top: 10px;
}

#aform-2 .aform-name-ul,
#aform-2 .aform-kana-ul {
  margin-top: 0;
  margin-left: 0;
}

#aform-2 .aform-name-ul li,
#aform-2 .aform-kana-ul li {
  float: none;
  width: 100%;
  margin-top: 10px;
  margin-left: 0;
}

#aform-2 .aform-twice-note {
  font-size: 1.2rem;
}

#aform-2 .submit {
  margin-right: 0;
  margin-left: 0;
  padding: 0;
}

#aform-2 .submit input {
  display: block;
  width: 100%;
  margin: 0;
  font-size: 1.4rem;
}

#aform-2 .aform-content dl dt .aform-label {
  padding-right: 0;
}

#aform-2 .list1 {
  margin-top: 15px;
}

.icon.-toggle {
  position: relative;
  width: 1.5em;
  height: 1.5em;
}

.icon.-toggle:before,
.icon.-toggle:after {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.icon.-toggle:before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  height: 2px;
  border: none;
  background: #bcb7b5;
}

.icon.-toggle:after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 12px;
  border: none;
  background: #bcb7b5;
}

.icon.-toggle.-active:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon.-toggle.-active:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.slide_topics1 .slick-next,
.slide_topics1 .slick-prev,
.slide_brand1 .slick-next,
.slide_brand1 .slick-prev {
  width: 19px;
  height: 19px;
}

.slide_topics1 .slick-next,
.slide_topics1 .slick-prev {
  top: 35%;
}

.slide_brand1 .slick-next,
.slide_brand1 .slick-prev {
  top: 50%;
}

.slide_topics1 .slick-next:after,
.slide_topics1 .slick-prev:after,
.slide_brand1 .slick-next:after,
.slide_brand1 .slick-prev:after {
  width: 19px;
  height: 19px;
  font-size: 1.9rem;
}

.slide_topics1 .slick-next:hover,
.slide_topics1 .slick-prev:hover,
.slide_brand1 .slick-next:hover,
.slide_brand1 .slick-prev:hover {
  opacity: 1;
}

.slide_topics1 .slick-next,
.slide_brand1 .slick-next {
  right: -15px;
}

.slide_topics1 .slick-prev,
.slide_brand1 .slick-prev {
  left: -15px;
}

}

@-webkit-keyframes showTheHeader {

0% {
  top: -67px;
}

100% {
  top: 0;
}

}

@keyframes showTheHeader {

0% {
  top: -67px;
}

100% {
  top: 0;
}

}

@keyframes showTheHeader {

0% {
  top: -67px;
}

100% {
  top: 0;
}

}

