@charset "utf-8";
/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
html,body,#container {height: 100%; min-height:100vh;}
body {
	margin: 0px;
	padding: 0px;
	color: #000000;	/*全体の文字色*/
	font-family:YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Maru Gothic Pro","ヒラギノ丸ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #f5f4f0;	/*背景色*/
	-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: #666;		/*リンクテキストの色*/
	transition: 0.2s;	/*マウスオン時の移り変わるまでの時間設定。0.2秒。*/
}
a:hover {
	color: #66cc00;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*ヘッダー
---------------------------------------------------------------------------*/
header {
	background: #000000;	/*背景色*/
	position: relative;z-index: 40;
}
/*トップページのヘッダー*/
#top header {
	position: relative;z-index: 10;
	min-height: 100%;
	margin-bottom: -72px;	/*メニューの高さ（「#menubar ul li aのline-height: 70px;」と「#menubarのborderの上下2px分」）を合計した数字を設定する*/
	background: #fff;	/*背景色*/
}
/*h1画像（トップページ以外で使用するロゴ画像）*/
header h1 img {
	width: 300px;	/*画像幅*/
	padding: 10px 5%;	/*上下、左右への余白*/
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	text-indent: -9999px;
	position: fixed;	/*スクロールしても固定表示させる指定*/
	top: 0px;
	width: 100%;
	height: 100%;
	background: url(../images/mainimg_s.jpg) no-repeat center center;	/*背景画像（古いブラウザ用）*/
	background: url(../images/mainimg.jpg) no-repeat center center / cover;	/*背景画像*/
}

/*トップページのSVGロゴアニメーション設定
---------------------------------------------------------------------------*/
#svg-logo {
	fill: transparent;	/*初期の色。透明。*/
	stroke: #fff;		/*フチ取りの色*/
	stroke-width: 1;	/*フチ取りの幅*/
	width: 40%;			/*画像の幅*/
	height: 40%;		/*画像の高さ*/
	position: fixed;	/*スクロールしても固定表示させる指定*/
	left: 30%;			/*左から30%の場所に配置*/
	bottom: 40%;		/*下から40%の場所に配置*/
}

/*h1　（トップページのメイン画像上に出てくるサイト名）
---------------------------------------------------------------------------*/
#top header h1 {
	color: #fff;	/*文字色*/
	text-align: center;	/*テキストを中央に*/
	position: fixed;	/*スクロールしても固定表示させる指定*/
	left: 0%;			/*左から0%の場所に配置*/
	bottom: 35%;		/*下から35%の場所に配置*/
	width: 100%;		/*幅*/
	animation-name: move-h1;	/*アニメーションのキーフレーム（下）で指定しているkeyframesの名前（move-h1）*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-delay: 1.5s;		/*1.5秒遅れて開始させる*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
}
/*アニメーションのキーフレーム*/
@keyframes move-h1 {
0% {
	opacity: 0;	/*透明度0%*/
}
100% {
	opacity: 1;	/*透明度100%*/
}
}

/*トップページの「エリヤは「持続可能な開発目標（SDGs）」の実現に貢献します」ボックス設定
---------------------------------------------------------------------------*/
/*ボックス*/
#topics {
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒の事で0.7は透明度70%の事*/
	color: #fff;		/*文字色*/
	position: fixed;	/*スクロールしても固定表示させる指定*/
	width: 100%;		/*幅*/
	text-align: center;	/*文字を中央に*/
	padding: 10px 0px;	/*上下、左右へのボックス内の余白*/
	animation-name: move-topics;	/*アニメーションのキーフレーム（下）で指定しているkeyframesの名前（move-topics）*/
	animation-duration: 0.3s;		/*アニメーションの実行時間。0.3秒。*/
	animation-delay: 2s;		/*2秒遅れて開始させる*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	bottom: 15%;	/*古いブラウザ用にフィニッシュの場所を指定しておく*/
}
/*ボックス内のh2見出し*/
#topics h2 {
	font-size: 30px;	/*文字サイズ*/
}
/*アニメーションのキーフレーム*/
@keyframes move-topics {
0% {
	opacity: 0;		/*透明度0%*/
	bottom: 0%;		/*下から0%の場所からスタート*/
}
100% {
	opacity: 1;		/*透明度100%*/
	bottom: 15%;	/*下から15%の場所でフィニッシュ*/
}
}

/*メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	position: relative;z-index: 30;
	border-top: 1px solid #9c9c9c;		/*上の線の幅、線種、色*/
	border-bottom: 1px solid #9c9c9c;	/*下の線の幅、線種、色*/
	text-align: center;	/*文字を中央に*/
}
#menubar ul {
	background: #fff;	/*背景色*/
	overflow: hidden;
}
/*マウスオン時*/
#menubar ul > li:hover > a {
	background: rgba(0,0,0,0.7);
	color: #fff;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
/*メニュー１個あたりの設定*/
#menubar ul li {
	float: left;	/*左に回り込み*/
	width: 20%;		/*幅。下の「#menubar ul.ddmenu」と合わせる。今回は５個メニューがあるので100÷5=20*/
}
#menubar ul li a {
	text-decoration: none;display: block;
	border-left: 1px solid #9c9c9c;	/*左側の線の幅、線種、色*/
	line-height: 50px;	/*高さ（行間）*/
	margin: 10px 0;		/*上下、左右、aタグの外側にに空けるスペース。*/
	color: #333;
}
#menubar ul li span {
	text-decoration: none;display: block;
	border-left: 1px solid #9c9c9c;	/*左側の線の幅、線種、色*/
	line-height: 50px;	/*高さ（行間）*/
	margin: 10px 0;		/*上下、左右、aタグの外側にに空けるスペース。*/
	color: #333;
}
#menubar ul li:first-child a {
	border-left: none;	/*１個目のメニューの左の線を消す指定*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ドロップダウンメニュー用
----------------------------------------------------------------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;margin-top: 1px;
	border-top: 2px solid #fff;	/*上の線の幅、選手、色。marginでもいいのですが見づらいのであえて線にしています。*/
	width: 20%;	/*幅。上の「#menubar li」と合わせる。*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;width: 100%;overflow: hidden;
	border-bottom: 2px solid #fff;	/*下の線の幅、選手、色。marginでもいいのですが見づらいのであえて線にしています。*/
}
#menubar ul.ddmenu li a {
	border: none;margin: 0;width: 100%;line-height: normal;
	padding: 10px 0;	/*上下、左右への余白*/
	background: #333;	/*背景色（古いブラウザ用）#333*/
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒の事で0.8は透明度80%の事*/
	color: #fff;	/*文字色*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	background: rgba(0,0,0,0.6);
	color: #fff;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
body.is-fixed #menubar.nav-fix-pos {
	position: fixed;
	width: 100%;
	top: 0px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
	border-bottom: 1px solid #9c9c9c;	/*下の線の幅、線種、色*/
}
body.is-fixed #menubar.nav-fix-pos ul {
	background: rgba(255,255,255,0.95);
}
body.is-fixed .inner#first {
	margin-top: 72px;	/*メニューの高さ（「#menubar ul li aのline-height: 50px;」と「marginの計20px分」と、「#menubarのborderの上下2px分」）を合計した数字を設定する*/
}
/*上の３つのスタイルの「.is-fixed」を「.is-fixed-menu」と変更して同じスタイルを設定して下さい。*/
body.is-fixed-menu #menubar.nav-fix-pos {
	position: fixed;
	width: 100%;
	top: 0px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
	border-bottom: 1px solid #9c9c9c;	/*下の線の幅、線種、色*/
}
body.is-fixed-menu #menubar.nav-fix-pos ul {
	background: rgba(255,255,255,0.95);
}
body.is-fixed-menu .inner#first {
	margin-top: 72px;	/*メニューの高さ（「#menubar ul li aのline-height: 50px;」と「marginの計20px分」と、「#menubarのborderの上下2px分」）を合計した数字を設定する*/
}

/*inner
---------------------------------------------------------------------------*/
.inner {
	position: relative;z-index: 20;
	background: #f5f4f0;	/*基準となる背景色*/
}
/*innerにbg1スタイルを追加した場合の背景色*/
.inner.bg1 {
	background: #fff !important;
}
/*innerにbg2スタイルを追加した場合の背景色*/
.inner.bg2 {
	background: #f3f6ef !important;
}
/*innerにbg_flower1スタイルを追加した場合の背景色（トップページのキャンペーンブロックで使用）*/
.inner.bg_flower1 {
	background: #e8e3dd;/*url(../images/bg_flower1.jpg) no-repeat center top/100% !important*/
}

/*box 会社概要
---------------------------------------------------------------------------*/
.box {
	background: #fff;				/*背景色（古いブラウザ用）*/
	background: #fff;	/*背景色。0,0,0は黒の事で0.7は色が70%出た状態の事。*/
	padding: 5%;					/*ボックス内の余白*/
	margin-bottom: 30px;			/*ボックスの下に空けるスペース*/
	border: 1px solid #fff;						/*線の幅、線種、色（古いブラウザ用）*/
	border: 1px solid rgba(255,255,255,0.3);	/*線の幅、線種、色。255,255,255は白の事で0.3は色が30%出た状態の事。*/

}

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

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

/*コンテンツ
---------------------------------------------------------------------------*/
.contents {
	overflow: hidden;margin: 0 auto;
	max-width: 1200px;	/*サイトの最大幅*/
	padding: 50px 5%;	/*上下、左右へのコンテンツ内の余白*/
}
/*h2タグ*/
.contents h2 {
	clear: both;
	margin-bottom: 20px;
	font-size: 30px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
}
/*h2タグのspan（装飾用）タグ*/
.contents h2 span {
	display: block;
	margin-top: -10px;
	font-size: 14px;	/*文字サイズ*/
	color: #ff0000;		/*文字色*/
	letter-spacing: 0.3em;	/*文字間隔を広くとる設定*/
}
/*type1*/
.contents h2.type1 {
	font-size: 30px;	/*文字サイズ*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.8);	/*背景色。255,255,255は白の事で0.8は透明度80%の事。*/
	border-radius: 50px;	/*角丸のサイズ*/
	box-shadow: 0px 2px 0px 2px rgba(0,0,0,0.1);	/*影。右へ、下へ、ぼかす範囲、広げる範囲。0,0,0は黒の事で0.1は透明度10%の事*/
}
/*type2*/
.contents h2.type2 {
	background: url(../images/bg_type1.jpg) no-repeat center center;	/*背景画像の読み込み（古いブラウザ用）*/
	background: url(../images/bg_type1.jpg) no-repeat center center/cover;	/*背景画像の読み込み*/
	color: #fff;	/*文字色*/
	text-align: left;	/*文字を左寄せ*/
	padding: 40px 50px;	/*上下、左右へのボックス内の余白*/
	border: 10px solid #fff;	/*枠線の幅、線種、色*/
	box-shadow: 2px 2px 2px rgba(0,0,0,0.1);}	/*影。右へ、下へ、ぼかす範囲。0,0,0は黒の事で0.1は透明度10%の事*/
/*type2のspan（装飾用）タグ*/
.contents h2.type2 span {
	color: #fff;	/*文字色（古いブラウザ用）*/
	color: rgba(255,255,255,0.3);	/*文字色。255,255,255は白の事で0.3は透明度30%の事。*/
}
/*type3 会社概要*/
.contents h2.type3 {
	background: url(../images/bg_type3.png) no-repeat center center;	/*背景画像の読み込み（古いブラウザ用）*/
	background: url(../images/bg_type3.png) no-repeat center center/cover;	/*背景画像の読み込み*/
	padding: 150px 150px;	/*上下、左右へのボックス内の余白*/
	box-shadow: 2px 2px 2px rgba(0,0,0,0.1);　/*影。右へ、下へ、ぼかす範囲。0,0,0は黒の事で0.1は透明度10%の事*/
}
/*type4 沿革*/
.contents h2.type4 {
	background: url(../images/bg_type4.jpg) no-repeat center center;	/*背景画像の読み込み（古いブラウザ用）*/
	background: url(../images/bg_type4.jpg) no-repeat center center/cover;	/*背景画像の読み込み*/
	color: #fff;	/*文字色*/
	text-align: left;	/*文字を左寄せ*/
	padding: 120px 70px;	/*上下、左右へのボックス内の余白*/
	border: 10px solid #fff;	/*枠線の幅、線種、色*/
	box-shadow: 2px 2px 2px rgba(0,0,0,0.1);	/*影。右へ、下へ、ぼかす範囲。0,0,0は黒の事で0.1は透明度10%の事*/
}
/*type4のspan（装飾用）タグ*/
.contents h2.type4 span {
	color: #fff;	/*文字色（古いブラウザ用）*/
	color: rgba(255,255,255,0.5);	/*文字色。255,255,255は白の事で0.3は透明度30%の事。*/
}

.contents h3 {
	clear: both;
	margin-bottom: 20px;
	font-size: 24px;	/*文字サイズ*/
	font-weight: 600;
	border-bottom: 2px dotted #ccc;	/*下線の幅、線種、色*/
	padding-left: 20px;
}
/*h3タグの１文字目*/
.contents h3::first-letter {
	border-left: 4px solid #ff0000;	/*左側の線の幅、線種、色*/
	padding-left: 20px;	/*線と文字との余白*/
}
/*段落タグ*/
.contents p {
	padding: 0 20px 20px;	/*上 左右 下*/
}
/*section同士の余白*/
.contents section + section {
	margin-top: 50px;
}


/*挑戦が未来を創るvideo（動画再生）
---------------------------------------------------------------------------*/
.container-video {
  position: relative;
  max-width: 100%;
  height: 480px;
  overflow: hidden;
  opacity: 0.01;
  animation: load 1.5s 0.8s ease-out forwards;
}
.container-video #video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1000;
  overflow: hidden;
  transform: translate(-50%, -50%) scale(1.05);
}

@keyframes load {
  100% {
    opacity: 1;
  }
}
.table-center {
  display: table;
  width: 100%;
  position: relative;
  height: auto;　/*デフォルト100%*/
}
.table-center > div {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  text-align: center;
}
.table-center > div p {
  color: #fff;
  text-shadow: 0 0px 5px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 10px;
  font-size: 2em;
  font-weight: 600;
}

/*トップページの挑戦が未来を創る文字画像（list4）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
.list4 {
	overflow: hidden;
	margin-bottom: 50px;
	padding:;	/*ボックス内の余白*/
	background: ;		/*背景色*/
}
/*figure画像*/
.list4 figure {
	width: 100%;		/*幅*/
	float: center;	/*左に回り込み*/
}

/*トップページの挑戦が未来を創る（文字後ろの背景を半透明にする）
---------------------------------------------------------------------------*/
@charset "utf-8";

div.bg-img {
 padding: 50px;
}

div.bg-rgba {
 background-color:rgba(255,255,255,0.6);
 margin: auto;
 text-align: center; 
 border-radius: 30px; /*角を丸く*/
}

div.bg-rgba p {margin: 0;}


/*トップページの「CSR活動について」のlistブロック（画像の裏側）
---------------------------------------------------------------------------*/
/*各ボックスの指定*/
.list {
	position: relative;
	float: left;	/*左に回り込み*/
	width: 22%;			/*各ブロック幅*/
	margin-left: 2.5%;	/*左に空けるスペース*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	background: #000;	/*背景色*/
}
.list a {
	display: block;
	text-decoration: none;
}
/*マウスオン時*/
.list a:hover {
	color: #fff;	/*文字色*/
}
/*リンクを指定した際に右上に出る「→」*/
.list a::after {
	content: "→";	/*この文字を出力します。変更してもかまいませんが機種依存文字は使わないで下さい。*/
	position: absolute;
	right: 10px;	/*右からの配置場所指定*/
	top: 10px;		/*上からの配置場所指定*/
	font-size: 12px;	/*文字サイズ*/
	line-height: 30px;	/*行間。下のwidthと揃えて下さい。*/
	width: 30px;		/*幅。上のline-heightと揃えて下さい。*/
	border-radius: 50%;	/*角丸の指定。円形になります。*/
	background: #ccc;	/*背景色*/
	color: #000;		/*文字色*/
	text-align: center;
}
/*h4タグ*/
.list h4 {
	position: absolute;
	bottom: 0px;	/*下からの配置場所指定。*/
	left: 0px;		/*左からの配置場所指定。*/
	width: 100%;
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.5);	/*背景色。0,0,0は黒の事で0.5は色が50%出た状態。*/
	text-align: center;	/*内容をセンタリング*/
	padding: 10px 0;	/*上下、左右への余白*/
	color: #fff;	/*文字色*/
}

/*トップページのCRS活動（figure）見えている画像に対しての設定
---------------------------------------------------------------------------*/
/*ステップブロック１個あたりの設定*/
figure {
  position: relative;
  overflow: hidden;
}
figcaption {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.6);
  -webkit-transition: .1s;
  transition: .1s;
  opacity: 0;
}
figcaption h3,
figcaption p {
  position: absolute;
  left: -100%;
  width: 220px;
  -webkit-transition: .1s;
  transition: .1s;
}
figcaption h3 {
  top: 30px;
}
figcaption p {
  top: 100px;
}
figure:hover figcaption {
  opacity: 1;
}
figure:hover figcaption h3,
figure:hover figcaption p {
  left: 0px;
}
figure:hover figcaption h3 {
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
}
figure:hover figcaption p {
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
}

/*トップページ「ビジョン実現に向けた組織戦略」３列ブロック（list-column）　　
---------------------------------------------------------------------------*/
/*カラムブロック全体を囲むボックス*/
.contents .list-column-container {
	display: flex;
	justify-content: space-between;	/*中のブロックの横並びの揃え方*/
	flex-wrap: wrap;				/*中のブロックを自動で折り返す*/
	margin: 0%;
}
/*１カラムあたりの設定*/
.contents .list-column {
	display: flex; 
	flex-direction: column;			/*中のブロックを並べる向きの指定。これは縦に並べる意味。*/
	width: 32%;						/*ブロック幅*/
	margin-bottom: 20px;			/*ブロックの下に空ける余白*/
	background: #fff;				/*背景色*/
	color: #000;					/*文字色*/
	border: 2px solid #ccc;	/*枠線の幅、線種、色*/
	box-shadow: 2px 2px 2px rgba(0,0,0,0.1);}	/*影。右へ、下へ、ぼかす範囲。0,0,0は黒の事で0.1は透明度10%の事*/
	border-radius: 3px;				/*角丸の指定。ほんの少し角が丸くなります。*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
}
/*リンクテキストの文字色*/
.contents .list-column a {
	color: #fff;
}
/*ボックス内のh4（見出し）タグ*/
.contents .list-column h4 {
	font-size: 120%;		/*文字サイズ*/
	padding: 10px 30px 0px 30px;			/*上下、左右への余白*/
	text-align:left;
	color: #ff0000;		/*文字色*/
}
/*ボックス内のp（段落）タグ*/
.contents .list-column p {
	padding: 0px 30px 10px 30px;		/*余白*/
	font-size: 90%;
	color: #333;
	text-align:left;
	line-height: 180%;　/*文字の行間*/
}
.contents .list-column p span {
	font-size: 110%;
	color: black;
	line-height: 1.8;　/*文字の行間*/
}
/*「class="text"」を指定したブロック。テキストブロック。*/
.contents .list-column .text {
	padding: 1%;			/*ブロック内の余白*/
	flex: 10 auto;
}

/*IEバグ対応*/
.contents .list-column figure {
	min-height: 0%;
	width: 100%;		/*画像の幅*/
}

/*Serviceサブカテゴリ「会社概要ページ」の会社ロゴ 中心から円形に広がりながら表示される
---------------------------------------------------------------------------*/
/*ロゴボックスの設定*/
.type3 {
  animation: type3 0.8s cubic-bezier(.4, 0, .2, 1);
}

@keyframes type3 {
  0% {
    clip-path: circle(0 at 50% 50%);
    -webkit-clip-path: circle(0 at 50% 50%);
  }
  
  100% {
    clip-path: circle(100% at 50% 50%);
    -webkit-clip-path: circle(100% at 50% 50%);
  }
}

/*会社概要ページの内容　左から右に流れて表示される
---------------------------------------------------------------------------*/
/*会社概要ボックスの設定*/
.box {
  overflow: hidden;
  position: relative;
}

.box:before {
  animation: box 2s cubic-bezier(.4, 0, .2, 1) forwards;
  background: #fff;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes box {
  100% {
    transform: translateX(100%);
  }
}

/*Serviceサブカテゴリ 各ページの表題画像の左右から表示するアニメーション設定
---------------------------------------------------------------------------*/
/*ボックスの設定*/
.type2 {
  overflow: hidden;
  position: relative;
}

.type2:before,
.type2:after {
  animation: 2s cubic-bezier(.4, 0, .2, 1) forwards;
  background: #fff;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 1;
}

.type2:before {
  animation-name: type2-before;
  top: 0;
  bottom: 50%;
}

.type2:after {
  animation-name: type2-after;
  top: 50%;
  bottom: 0;
}

@keyframes type2-before {
  100% {
    transform: translateX(100%);
  }
}

@keyframes type2-after {
  100% {
    transform: translateX(-100%);
  }
}

/*Serviceサブカテゴリの「ITページ」ボックス（list3）　　
---------------------------------------------------------------------------*/
/*ボックスの設定*/
.contents .list3 {
	position: relative;
	border-radius: 5px;				/*角丸の指定。ほんの少し角が丸くなります。*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
	display: flex;
	align-items: center;			/*中のブロックの縦並びの揃え方*/
	background: #000;		/*背景色*/
	color: #fff;			/*文字色*/
	margin: 0 1% 50px;		/*ボックスの下に空けるスペース。上、左右、下への順番。*/
}
/*リンクテキストの文字色*/
.contents .list3 a {
	color: #fff;
}
/*ボックス内のh4（見出し）タグ*/
.contents .list3 h4 {
	margin-bottom: 20px;	/*下のテキストとの間に空けるスペース*/
	font-size: 140%;		/*文字サイズ*/
}
/*ボックス内のp（段落）タグ*/
.contents .list3 p {
	padding: 0;		/*余白のリセット*/
}
/*ボックス内のfigure画像*/
.contents .list3 figure {
	width: 50%;		/*画像の幅*/
}
/*「class="text"」を指定したブロック。テキストブロック。*/
.contents .list3 .text3 {
	width: 40%;		/*ブロックの幅。下のpaddingの5%とも連動するので変更の際は注意して下さい。*/
	padding: 2% 5%;	/*上下、左右へのブロック内の余白*/
}

/*偶数目のブロックの設定（画像とテキストブロックが左右交互に入れ替わる設定です。全部同じむきがよければこのブロックを削除します。）*/
.contents .list3:nth-of-type(even) .text3 {
	order: 1;
}

/*装飾文字の設定（共通）*/
.contents .list3::before {
	font-size: 16vw;
	line-height: 1;
	position: absolute;
	color: rgba(255,255,255,0.15);	/*文字色。255,255,255は白のことで、0.15は色が15%出た状態のこと。*/
	font-family: 'Tangerine', cursive;	/*冒頭で読み込んだGoogle Fontsを適用する指定*/
}
/*奇数番目のブロックの文字の配置場所指定*/
.contents .list3:nth-of-type(odd)::before {
	left: -20px;
	top: -40px;
}
/*偶数番目のブロックの文字の配置場所指定*/
.contents .list3:nth-of-type(even)::before {
	right: 0px;
	top: -40px;
}
/*１つ目ブロックに表示させるテキスト*/
.contents .list3:nth-of-type(1)::before {
	content: "System";
}
/*２つ目ブロックに表示させるテキスト*/
.contents .list3:nth-of-type(2)::before {
	content: "Appli";
}
/*３つ目ブロックに表示させるテキスト*/
.contents .list3:nth-of-type(3)::before {
	content: "Web";
}

/*ボックス内のボタン（共通）*/
.btn1 a {
	display: block;
	text-decoration: none;
	border: 1px solid #fff;		/*枠線の幅、線種、色*/
	text-align: center;			/*テキストをセンタリング*/
	padding: 10px 30px;			/*上下、左右へのボタン内の余白*/
	margin: 40px auto 0;		/*上、左右、下へのボックスの外側への余白*/
}
/*ボタンのマウスオン時（共通）*/
.btn1 a:hover {
	background: #fff;	/*背景色*/
	color: #000 !important;		/*文字色*/
}

/*Serviceサブカテゴリの「デジタルソリューション事業」のステップブロック（info.html）
---------------------------------------------------------------------------*/
/*ステップブロック１個あたりの設定*/
.step {
	overflow: hidden;
	padding: 20px 20px 120px;	/*上、左右、下へのボックス内の余白*/
	margin-bottom: 20px;
}	
/*h4見出し*/
.step h4 {
	color: #ff0000;		/*文字色*/
	font-size: 30px;	/*文字サイズ*/
}
/*h4見出しのspanタグ。見出し冒頭の番号。*/
.step h4 span {
	display: inline-block;
	background: #ff0000;	/*背景色*/
	color: #fff;			/*文字色*/
	width: 50px;			/*幅*/
	line-height: 50px;		/*高さ（行間）*/
	border-radius: 50%;		/*角丸のサイズ。50%にすると円形になる。*/
	text-align: center;		/*文字を中央に*/
	margin-right: 20px;		/*右側に空けるスペース*/
}
/*段落タグ*/
.step p {
	padding: 0 !important;
}
/*最後のステップボックス*/
.step:last-child {
	background: none;	/*背景を消す*/
	padding-bottom: 0;	/*下の余白を消す*/
}

/*Serviceサブカテゴリの「建設・不動産」のブロック（list2）　　
---------------------------------------------------------------------------*/
/*各ブロックの設定*/
.list2 {
	overflow: hidden;
	margin-bottom: 20px;
	padding: 2%;	/*ボックス内の余白*/
	border: 3px solid #ccc;	/*枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
}
/*ボックス内の右側のブロック*/
.list2 .text {
	margin-left: 31%;	/*左に空けるスペース。下のfigureの幅を考慮して設定。*/
}
/*h4見出し*/
.list2 h4 {
	font-size: 130%;	/*文字サイズ*/
	color: #ff0000;		/*文字色*/
}
/*figure画像*/
.list2 figure {
	width: 30%;		/*幅*/
	float: left;	/*左に回り込み*/
}
/*list2内のテーブルタグ*/
.list2 table {
	font-size: 13px;	/*文字サイズ*/
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
}
/*list2内のテーブルタグ（行）*/
.list2 table tr {
	border-top: 1px dashed #ccc;	/*各行の上の線の幅、線種、色*/
}
/*list2内のテーブルタグ（tdとth）*/
.list2 table td, .list2 table th {
	padding: 2px 5px;	/*上下、左右への余白*/
}
/*list2内のテーブルタグ（th見出し）*/
.list2 table th {
	background: #eee;	/*背景色*/
	text-align: left;	/*テキストを左よせ*/
}


/*list1(旧CSR活動について)とlist2(建設・不動産)の段落タグ指定
---------------------------------------------------------------------------*/
.list1 p, .list2 p {
	padding: 0 !important;
}

/*Serviceサブカテゴリの「カーリース事業」車が走るアニメーション　
---------------------------------------------------------------------------*/
.car {
    width: 1000px; /* 車のサイズは適当に幅75pxくらい */
}
.move-animation {
    transform: translate(1200px,20px);

    animation: move 8s linear infinite;
}
@keyframes move {
    to {
        transform: translate(-1200px, 20px);
    }
}
.gata-gata-animation {
    animation: gata-goto .3s infinite;
}
@keyframes gata-goto {
    20% {
        transform: translateY(-2px);
        animation-timing-function: cubic-bezier(0.4, 0, 1, 1.3);
    }
    25% {
        transform: translateY(0px);
    }
    55% {
        transform: translateY(-1px);
        animation-timing-function: cubic-bezier(0.4, 0, 1, 1.3);
    }
    60% {
        transform: translateY(0px);
    }
}

/*「カーリース事業」車種のBOX マウスオーバーで要素を浮かせる
---------------------------------------------------------------------------*/
.img_wrap img{
  width: 100%;
  cursor: pointer;
}
.img_wrap:hover{
  box-shadow: 10px 10px 10px rgba(0,0,0,0.5);
  transform: translateY(-10px);
  transition-duration: 0.5s;
}

/*aタグにclass="btn"をつけた場合。トップページの「CSR活動について」ブロック内のボタンで使用。
---------------------------------------------------------------------------*/
a.btn {
	display: block;text-decoration: none;
	text-align: center;	/*テキストを中央に*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#515151, #000);/*背景グラデーション*/
	color: #fff;	/*文字色*/
	box-shadow: 2px 3px 2px rgba(0,0,0,0.2);	/*影。右へ、下へ、ぼかす範囲。0,0,0は黒の事で0.2は透明度20%の事*/
	border-radius: 3px;	/*角丸のサイズ*/
	padding: 10px 0;	/*上下、左右への余白*/
	font-size: 13px;	/*文字サイズ*/
}
/*マウスオン時*/
a:hover.btn {
	background: #fff;	/*背景色*/
	color: #000;		/*文字色*/
}

/*Corporateサブメニュー「vision」のアニメーション（passing）
---------------------------------------------------------------------------*/
/* animation */
@-webkit-keyframes passing-bar{
	0% {
		left: 0;
		right: auto;
		width: 0;
	}
	50% {
		left: 0;
		right: auto;
		width: 100%;
	}
	51% {
		left: auto;
		right: 0;
		width: 100%;
	}
	100% {
		left: auto;
		right: 0;
		width: 0;
	}
}
@keyframes passing-bar{
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 100%;
		width: 0;
	}
}
@-webkit-keyframes passing-txt{
	0% { opacity: 0; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes passing-txt{
	0% { opacity:0; }
	50% { opacity:0; }
	100% { opacity:1; }
}
/* css */
.passing .passing-box {
	display: block;
	text-align: center;
}
.passing .passing-bar {
	position: relative;
	display: inline-block;
	/*　後ほど解説　*/
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.passing .passing-bar:before {
	content: '';
	display: inline-block;
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	/* 任意の値 */
	background: #f5f4f0;
}
.passing .passing-txt {
	opacity: 0;
	/* 後ほど解説 */
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	/* 任意の値 */
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.5;
}
.passing.move .passing-bar:before {
	-webkit-animation: passing-bar 1s ease 0s 1 normal forwards;
	animation: passing-bar 1s ease 0s 1 normal forwards;
}
.passing.move .passing-txt {
	-webkit-animation: passing-txt 0s ease .5s 1 normal forwards;
	animation:passing-txt 0s ease .5s 1 normal forwards;
}

/*Corporateサブメニュー「vision」のアニメーション(passing-bar2)
---------------------------------------------------------------------------*/
/* animation */
@-webkit-keyframes passing-bar2{
	0% {
		left: 0;
		right: auto;
		width: 0;
	}
	50% {
		left: 0;
		right: auto;
		width: 100%;
	}
	51% {
		left: auto;
		right: 0;
		width: 100%;
	}
	100% {
		left: auto;
		right: 0;
		width: 0;
	}
}
@keyframes passing-bar2{
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 100%;
		width: 0;
	}
}
.passing .passing-bar2 {
	position: relative;
	display: inline-block;
	/*　後ほど解説　*/
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.passing .passing-bar2:before {
	content: '';
	display: inline-block;
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	/* 任意の値 */
	background: #fff;
}
.passing.move .passing-bar2:before {
	-webkit-animation: passing-bar2 1s ease 0s 1 normal forwards;
	animation: passing-bar2 1s ease 0s 1 normal forwards;
}

/*CorporateのVisionのBox
---------------------------------------------------------------------------*/
/*Vision設定*/
.vision{
    padding: 6em 12em;
    margin: 2em 0;
    color: #000;
    background: #fff;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}
.vision h2 {
    margin: 10px; 
    padding: 10px 0px; /*ボックス内の余白*/
    font-size: 28px;	/*文字サイズ*/
	color: #000;		/*文字色*/
	text-align: left;	/*左よせ*/ 
	font-weight:bold;   /*文字の太さ*/ 
}
.vision p {
    margin: 10px; 
    padding: 10px 0px; /*ボックス内の余白*/
    font-size: 18px;	/*文字サイズ*/
    line-height: 2.5;　/*文字の行間*/ 
	color: #000;		/*文字色*/  
	text-align: left;	/*左よせ*/  
	font-weight:bold; 　/*文字の太さ*/ 
}

/*フッター設定
---------------------------------------------------------------------------*/
footer .pr {display: block;font-size: 80%;}
footer {
	position: relative;z-index: 20;
	clear: both;
	line-height: 1.5;	/*行間を基準より少し狭くする*/
	padding: 50px 0 0;	/*上、左右、下へのボックス内の余白*/
	font-size: 85%;		/*文字サイズ*/
	background: #000000;	/*背景色*/
	color: #fff;	/*文字色*/
	margin-top:auto;
}
footer a {
	color: #fff;	/*リンクの文字色*/
}
footer a:hover {
	color: #66cc00;	/*マウスオン時のリンクの文字色*/
}
/*footer内のh3タグ*/
footer h3 {
	margin-bottom: 10px;
	font-size: 24px;	/*文字サイズ*/
}
/*footer内のh3タグの１文字目*/
footer h3::first-letter {
	border-left: 2px solid #fff;	/*左側の線の幅、線種、色*/
	padding-left: 10px;				/*線とテキストの間の余白*/
}
/*footer内の段落タグ*/
footer p {
	padding: 0px 10px 20px;	/*上、左右、下への余白*/
}
/*footerをセンター指定した*/
#footer-clear {
	clear: both;
	text-align: center;
	padding-bottom: 20px;
}

/*フッターのロゴ画像*/
#footer-logo img {
	 width: 30%;	/*画像の幅*/
}

/*フッター内のfacebookなどのアイコン設定
---------------------------------------------------------------------------*/
/*アイコン画像１個あたりの設定*/
#icon img {
	width: 40px;	/*アイコンの幅*/
	margin-right: 10px;	/*アイコン同士の余白*/
}

/*フッターメニュー
---------------------------------------------------------------------------*/
#footermenu {
	clear: both;
	text-align: center;
	padding-bottom: 20px;
}
#footermenu li {
	display: inline;
	margin: 10px;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	position: relative;z-index: 20;
	clear: both;overflow: hidden;
	padding-top: 50px;
	background: #f5f4f0;	/*背景色*/
}
#pagetop a {
	color: #fff;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	background: #66cc00;	/*背景色*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	width: 100px;	/*幅*/
	border-radius: 4px 4px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下への設定*/
	margin-right: 5%;
}
/*マウスオン時*/
#pagetop a:hover {
	background: #a50e0e;	/*背景色*/
}

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

/*トップページ内「News」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
	padding-left: 20px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;		/*幅*/
	color: #ff0000;	/*文字色*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
}


/*会社概要ページ　テーブル（ta1）設定
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin: 0 auto 20px;
	border-bottom: 1px solid #fff;	/*テーブルの下の枠線の幅、線種、色*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.8);	/*背景色。255,255,255は白の事で0.8は透明度80%の事*/
}
/*td,th共通*/
.ta1 td, .ta1 th {
	border-top: 1px solid #fff;	/*tdタグとthタグの上側の枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
	color: #fff;	/*文字色*/
	/*背景色 会社概要テーブルの右側*/
	background: #000;				/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒の事で0.7は色が70%出た状態の事。*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #cac8c2;	/*背景色*/
	font-size: 20px;	/*文字サイズ*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センター*/
	/*背景色 会社概要テーブルの左側項目名*/
	background: #000;				/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒の事で0.7は色が70%出た状態の事。*/
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}

/*footer　テーブル（ta2）設定　※今回不使用
---------------------------------------------------------------------------*/
/*ta2設定*/
.ta2 {
	width: 100%;
	margin: 0 auto 10px;
	border-bottom: 1px solid #fff;	/*テーブルの下の枠線の幅、線種、色*/
	text-align: center;
}
/*td,th共通*/
.ta2 td, .ta2 th {
	border-top: 1px solid #fff;	/*td,thの上側の線の幅、線種、色*/
	padding: 5px 10px;	/*ボックス内の余白*/
}
/*th見出し*/
.ta2 th {
	background: rgba(0,0,0,0.2);	/*背景色*/
}

/*リース事業ページ　テーブル（ta3）設定
---------------------------------------------------------------------------*/
/*ta3設定*/
.ta3 {
	width: 100%;
	margin: 0 auto 20px;
	border-bottom: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.8);	/*背景色。255,255,255は白の事で0.8は透明度80%の事*/
}
.ta3, .ta3 td, .ta3 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
}
/*th見出し（基準色）*/
.ta3 th {
	background: #d3e2ee;	/*背景色*/
}
/*bgcolor0背景色*/
.bgcolor0 {
	background: #f0f0f0 !important;
}
/*bgcolor1背景色*/
.bgcolor1 {
	background: #d6edda !important;
}
/*bgcolor2背景色*/
.bgcolor2 {
	background: #ede8d6 !important;
}
/*bgcolor3背景色*/
.bgcolor3 {
	background: #edd7d6 !important;
}

/*Recruit（採用情報）　テーブル（ta4）設定　
---------------------------------------------------------------------------*/
/*ta4設定*/
.ta4, .ta4 td, .ta4 th {
	padding: 10px 15px;	/*ボックス内の余白 修正前5px*/
}
/*ta1の左側ボックス*/
.ta4 th {
	width: 160px;	/*幅 修正前100px*/
}

/*inviewのスタイルの画像アニメーション 【トップページとIT企画開発事業】
---------------------------------------------------------------------------*/
/*下から上にフェードインしてくるスタイル（待機中）*/
.up {
	overflow: hidden;position: relative;
	opacity: 0;		/*透明度0%*/
	bottom: -50px;	/*基準値の下50pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.upstyle{
	opacity: 1;		/*透明度100%*/
	bottom: 0px;	/*基準値まで戻す*/
	transition: 1s 0.5s;	/*1sはアニメーションの実行時間1秒。0.5sは0.5秒遅れてスタートする指定。*/
}
.up1 {　　　/*CSR 環境保全活動*/
	overflow: hidden;position: relative;
	opacity: 0;		/*透明度0%*/
	bottom: -80px;	/*基準値の下80pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.up1style{
	opacity: 1;		/*透明度100%*/
	bottom: 0px;	/*基準値まで戻す*/
	transition: 1s 0.5s;	/*1sはアニメーションの実行時間1秒。0.5sは0.5秒遅れてスタートする指定。*/
}
.up2 {　　　/*CSR 教育支援*/
	overflow: hidden;position: relative;
	opacity: 0;		/*透明度0%*/
	bottom: -80px;	/*基準値の下80pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.up2style{
	opacity: 1;		/*透明度100%*/
	bottom: 0px;	/*基準値まで戻す*/
	transition: 1s 0.8s;	/*1sはアニメーションの実行時間1秒。0.3sは0.3秒遅れてスタートする指定。*/
}
.up3 {　　/*CSR 復興支援活動*/
	overflow: hidden;position: relative;
	opacity: 0;		/*透明度0%*/
	bottom: -80px;	/*基準値の下80pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.up3style{
	opacity: 1;		/*透明度100%*/
	bottom: 0px;	/*基準値まで戻す*/
	transition: 1s 1.0s;	/*1sはアニメーションの実行時間1秒。0.5sは0.5秒遅れてスタートする指定。*/
}
.up4 {　　/*CSR 自然環境保護活動*/
	overflow: hidden;position: relative;
	opacity: 0;		/*透明度0%*/
	bottom: -80px;	/*基準値の下80pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.up4style{
	opacity: 1;		/*透明度100%*/
	bottom: 0px;	/*基準値まで戻す*/
	transition: 1s 1.2s;	/*1sはアニメーションの実行時間1秒。0.5sは0.5秒遅れてスタートする指定。*/
}

/*右からフェードインしてくるスタイル（待機中）*/
.right {
	overflow: hidden;position: relative;
	opacity: 0;		/*透明度0%*/
	right: -200px;	/*基準値より右に200pxの場所からスタート*/
	text-align:left;　　/*画像表示位置*/
}
/*要素が見えたら実行するアクション*/
.rightstyle{
	opacity: 1;		/*透明度100%*/
	right: 0px;		/*基準値まで戻す*/
	transition: 1s 0.5s;	/*1sはアニメーションの実行時間1秒。0.5sは0.5秒遅れてスタートする指定。*/
}
/*左からフェードインしてくるスタイル（待機中）*/
.left {
	overflow: hidden;position: relative;
	opacity: 0;		/*透明度0%*/
	left: -200px;	/*基準値より左に200pxの場所からスタート*/
	text-align:right;　　/*画像表示位置*/
}
/*要素が見えたら実行するアクション*/
.leftstyle{
	opacity: 1;		/*透明度100%*/
	left: 0px;		/*基準値まで戻す*/
	transition: 1s 0.5s;	/*1sはアニメーションの実行時間1秒。0.5sは0.5秒遅れてスタートする指定。*/
}

.transform1 {
	transform: scaleX(0);	/*幅を0%でスタート*/
}
/*要素が見えたら実行するアクション*/
.transform1style {
	transform: scaleX(1);	/*幅を100%に戻す*/
}
/*transform2スタイル。倒れた状態から起き上がるスタイル（待機中）*/
.transform2 {
	transform: perspective(400px) rotateX(100deg);
}
/*要素が見えたら実行するアクション*/
.transform2style {
	transform: perspective(0px) rotateX(0deg);
}

/*reCAPTCHAのスタイル
---------------------------------------------------------------------------*/
.recaptcha {
  margin-right:auto;
  margin-left:auto;
  text-align: center;
  width:300px;
  margin-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: 16px;		/*文字サイズ*/
	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: -80px;
	padding-top: 80px;
}

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

/*その他
---------------------------------------------------------------------------*/
.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: #ff0000 !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:50%;margin-right: 20px;margin-bottom: 20px;}
.fr {float: right;}
img.fr {float: right;width:50%;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: 40px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}



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

/*h1　（トップページのメイン画像上に出てくるサイト名）
---------------------------------------------------------------------------*/
#top header h1 {
	bottom: 30%;		/*下から30%の場所に配置*/
}

/*トップページの「持続可能な開発目標（SDGs）」ボックス設定
---------------------------------------------------------------------------*/
#topics {
	display: none;	/*画面が狭いので非表示にする*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s li a {
	float: left;	/*左に回り込みさせて２列にする*/
	width: 40%;		/*幅*/
	margin-left: 4%;	/*メニューの左側に空けるスペース*/
}

}



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

footer{margin-top:auto;}

/*ヘッダー
---------------------------------------------------------------------------*/
header {
	 padding: 10px 0;	/*上下、左右への余白*/
	 position: fixed;
	 width: 100%;
	 border-bottom: 1px solid #fff;
}
/*トップページのヘッダー*/
#top header {
	margin-bottom: 0px;	/*大きな端末用ではこの分にメニューが表示されていましたが、小さな端末では開閉ブロックになるので余白をリセット。*/
}

/*挑戦が未来を創るvideo（動画再生）
---------------------------------------------------------------------------*/
.container-video {
  height: 250px;
}
.container-video #video {
  top: 100%;
  left: 100%;
}

@keyframes load {
  100% {
    opacity: 1;
  }
}

/*トップページの挑戦が未来を創る（文字後ろの背景を半透明にする）
---------------------------------------------------------------------------*/
@charset "utf-8";

div.bg-img {
 padding: 50px 30px 30px 50px;
}
	
/*トップページの挑戦が未来を創るの文字（list4）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
.list4 {
	overflow: hidden;
	padding: 5px 0px 0px 0px;	/*文字周りの余白*/
}
/*figure画像*/
.list4 figure {
	float: center;	/*左に回り込み*/
}
	
/*トップページ「CSR活動について」のlistブロック
---------------------------------------------------------------------------*/
/*各ボックスの指定*/
.up1 {
	width: 46%;			/*幅*/
	margin-left: 2.5%;	/*左に空けるスペース*/
}
.up1 figure {/*環境保全の画像*/
	width: 100%;
}
.up2 {
	width: 46%;			/*幅*/
	margin-left: 4.5%;	/*左に空けるスペース*/
}
.up2 figure {/*教育支援の画像*/
	width: 100%;
}
.up3 {
	width: 46%;			/*幅*/
	margin-left: 2.5%;	/*左に空けるスペース*/
	clear: left;
}
.up3 figure {/*復興支援の画像*/
	width: 100%;
}
.up4{
	width: 46%;			/*幅*/
	margin-left: 4.5%;	/*左に空けるスペース*/
}
.up4 figure {/*自然保護の画像*/
	width: 100%;
}
.list figcaption {
  pointer-events: none;
}
.list figure {
  pointer-events: none;
}


/*トップページ「ビジョン実現に向けた組織戦略」３列ブロック（list-column）
---------------------------------------------------------------------------*/
/*画面が狭いので横並びを無効にする*/
.list-column left {
	display:none
}
.list-column up {
	display:none
}
.list-column right {
	display:none
}
.contents .text up2 {
	display:none
}
.leftstyle  {
	display:none
}

/*カラムブロック全体を囲むボックス*/
.contents .list-column-container {
　display: block;
　text-align: center;
　width: 80%;
  height: auto;
}
/*１カラムあたりの設定*/
.contents .list-column {
	display: flex;
	width: 80%;						/*ブロック幅*/
	margin: 10px 10px 20px 10%;			/*ブロックの下に空ける余白*/
}
/*ボックス内のh4（見出し）タグ*/
.contents .list-column h4 {
	margin-bottom: 5px;	/*下のテキストとの間に空けるスペース*/
	font-family: "Noto Sans Japanese";
	padding: 10px 1px 0px 1px;			/*上下、左右への余白*/
	text-align:center;
	color: #ff0000;		/*文字色#005fcc*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
@keyframes menu1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: fixed;z-index: 50;
	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;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	margin-bottom: 30px;
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 15px;	/*メニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;	/*文字色*/
	font-size: 20px;
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

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

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

/*inner
---------------------------------------------------------------------------*/
.inner#first {padding-top: 50px;}
body#top .inner#first {padding-top: 0px;}

/*コンテンツ
---------------------------------------------------------------------------*/
/*h2タグ*/
.contents h2 {
	font-size: 30px;	/*文字サイズ*/
}
section + section {
	padding-top: 20px;
}

/*VisionのBox
---------------------------------------------------------------------------*/
.vision{
    padding: 1em 3em;
    margin: 1em 0;
}

.vision p {
    margin: 10px; 
    padding: 10px 0px; /*ボックス内の余白*/
    font-size: 18px;	/*文字サイズ*/
    line-height: 1.7;　/*文字の行間*/ 
	font-weight: normal; 　/*文字の太さ*/ 
}
	
/*listブロック（works.htmlで使用） CRS活動に追加
---------------------------------------------------------------------------*/
/*リンクを指定した際に右上に出る「→」*/
.list a::after {
	right: 2px;			/*右からの配置場所指定*/
	top: 2px;			/*上からの配置場所指定*/
	line-height: 20px;	/*行間。下のwidthと揃えて下さい。*/
	width: 20px;		/*幅。上のline-heightと揃えて下さい。*/
}
/*h4タグ*/
.list h4 {
	padding: 0;
}
/*list1
---------------------------------------------------------------------------*/
/*各ブロックの設定*/
.list1 {
	width: 44%;		/*ブロック幅*/
}
/*h4見出し*/
.list1 h4 {
	font-size: 20px;	/*文字サイズ*/
}

/*フッター設定
---------------------------------------------------------------------------*/
/*footer内の左右のブロック指定*/
#footer-left,#footer-right {
	width: auto;	/*幅*/
	float: none;	/*回り込みの解除*/
	padding: 0 5%;	/*上下、左右へのブロック内の余白*/
}

/*その他
---------------------------------------------------------------------------*/
.big1 {font-size: 20px;}
.w50 {overflow: hidden;width: auto;}
.fl {float: none;}
.fr {float: none;}
}

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

/*list3ブロック（it.htmlで使用）
---------------------------------------------------------------------------*/
/*ボックス内のfigure画像*/
.contents .list3 figure {
	margin: 0 10px;
}

/*ボックス内のh4（見出し）タグ*/
.contents .list3 h4 {
	margin-bottom: 10px;	/*下のテキストとの間に空けるスペース*/
	font-size: 120%;		/*文字サイズ*/
}

/*ボックス内のp（段落）タグ*/
.contents .list3 p {
	line-height : 1.5em;　/* 行の高さ */
}

/*装飾文字の設定（共通）*/
.contents .list3::before {
	font-size: 20vw;
}

/*装飾文字奇数番目のブロックの文字の配置場所指定*/
.contents .list3:nth-of-type(odd)::before {
	left: -20px;
	top: 40px;
}
/*装飾文字偶数番目のブロックの文字の配置場所指定*/
.contents .list3:nth-of-type(even)::before {
	right: 30px;
	top: 40px;

}


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

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

/*section同士の余白*/
.contents section + section {
	margin-top: 10px;
}

/*ヘッダー
---------------------------------------------------------------------------*/
/*h1画像（トップページ以外で使用するロゴ画像）*/
header h1 img {
	width: 200px;	/*画像幅*/
}

/*トップページのメイン画像
mainimg_sは古い端末用で準備した小さい画像ですが、小さな端末では大きな画像を使う必要がないので小さい方を適用。
---------------------------------------------------------------------------*/
#mainimg {
	background: url(../images/mainimg_s.jpg) no-repeat center center / cover;
}

/*トップページのSVGロゴアニメーション設定
---------------------------------------------------------------------------*/
#svg-logo {
	width: 50%;	/*画像の幅*/
	left: 25%;	/*左から40%の場所に配置*/
}

/*トップページの「持続可能な開発目標（SDGs）」ボックス設定
---------------------------------------------------------------------------*/
/*ボックス内のh2見出し*/
#topics h2 {
	font-size: 18px;	/*文字サイズ*/
}

/*挑戦が未来を創るvideo（動画再生）
---------------------------------------------------------------------------*/
.container-video {
  height: 180px;
}
.container-video #video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 70%;
  height: auto;
  z-index: -1;
  overflow: hidden;
  transform: translate(-50%, -50%) scale(1.05);
}

@keyframes load {
  100% {
    opacity: 1;
  }
}

/*背景を半透明にする（トップページの挑戦が未来を創る）
---------------------------------------------------------------------------*/
@charset "utf-8";

div.bg-img {
 padding: 50px 0px 10px 20px;
}
	
div.bg-rgba {
 border-radius: 20px; /*角を丸く*/
}

/*list4（トップページの挑戦が未来を創るの文字）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
.list4 {
	overflow: hidden;
	padding: 5px 0px 0px 0px;	/*文字周りの余白*/
}
/*figure画像*/
.list4 figure {
	float: center;	/*左に回り込み*/
}
	
/*トップページ「CSR活動について」のlistブロック
---------------------------------------------------------------------------*/
/*ステップブロック１個あたりの設定*/
figure {
  position: relative;
  overflow: hidden;
  width: 133px;
}

/*Serviceサブカテゴリの「ITページ」ボックス（list3）　　
---------------------------------------------------------------------------*/
/*ボックスの設定*/
.contents .list3 {
	margin: 0 1% 15px;		/*ボックスの下に空けるスペース。上、左右、下への順番。*/
}
/*ボックス内のh4（見出し）タグ*/
.contents .list3 h4 {
	margin-bottom: 7px;	/*下のテキストとの間に空けるスペース*/
	font-size: 120%;		/*文字サイズ*/
}
/*ボックス内のfigure画像*/
.contents .list3 figure {
	width: 48%;		/*画像の幅*/
	margin: 3%;	
}
/*「class="text"」を指定したブロック。テキストブロック。*/
.contents .list3 .text3 {
	width: 40%;		/*ブロックの幅。下のpaddingの5%とも連動するので変更の際は注意して下さい。*/
	padding: 5% 5%;	/*上下、左右へのブロック内の余白*/
}

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

/*inner
---------------------------------------------------------------------------*/
.inner#first {padding-top: 70px;}

/*コンテンツ
---------------------------------------------------------------------------*/
.contents {
	padding: 20px 3%;	/*上下、左右へのコンテンツ内の余白*/
}
/*h2タグ*/
.contents h2 {
	font-size: 20px;
}
/*h2タグのspan（装飾用）タグ*/
.contents h2 span {
	margin-top: 0px;
	font-size: 10px;	/*文字サイズ*/
}
/*h3タグ*/
.contents h3 {
	font-size: 16px !important;
	padding-left: 10px;
	margin-bottom: 10px;
}
/*h3タグの１文字目*/
.contents h3::first-letter {
	padding-left: 10px;	/*線と文字との余白*/
}
/*段落タグ*/
.contents p {
	padding: 0 10px 10px;
}
/*type1*/
.contents h2.type1 {
	font-size: 20px;	/*文字サイズ*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.8);	/*背景色。255,255,255は白の事で0.8は透明度80%の事。*/
	border-radius: 40px;	/*角丸のサイズ*/
	box-shadow: 0px 1px 0px 1px rgba(0,0,0,0.1);	/*影。右へ、下へ、ぼかす範囲、広げる範囲。0,0,0は黒の事で0.1は透明度10%の事*/
}
.vision p {
    font-size: 12px;	/*文字サイズ*/
}
/*list2（Serviceサブカテゴリの「建設・不動産」ボックス）
---------------------------------------------------------------------------*/
/*ボックス内の右側のブロック*/
.list2 .text {
	margin-left: 0;
}
/*figure画像*/
.list2 figure {
	width: 50%;		/*幅*/
	float: none;
	display: block;
	margin: 0 auto;
	padding-bottom: 5px;
}
/*h4見出し*/
.list2 h4 {
	padding-bottom: 5px;
}

/*step（info.html）
---------------------------------------------------------------------------*/
/*ステップブロック１個あたりの設定*/
.step {
	padding: 10px 10px 60px;	/*上、左右、下へのボックス内の余白*/
	margin-bottom: 10px;
	background: url(../images/arrow1.png) no-repeat center bottom/100px;	/*背景の矢印画像の読み込み。りピーとせず、中央下部に配置。幅は200px。*/
}
/*h4見出し*/
.step h4 {
	font-size: 20px;	/*文字サイズ*/
}
/*h4見出しのspanタグ。見出し冒頭の番号。*/
.step h4 span {
	width: 30px;			/*幅*/
	line-height: 30px;		/*高さ（行間）*/
	margin-right: 10px;		/*右側に空けるスペース*/
}
/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 10px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

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

/*inputボタン
---------------------------------------------------------------------------*/
.contents input[type="submit"].btn,
.contents input[type="button"].btn,
.contents input[type="reset"].btn {
	font-size: 14px;		/*文字サイズ*/
	color: #000000;
}

/*その他
---------------------------------------------------------------------------*/
.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;}

}
