@charset "utf-8";


/*各cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("keyframes.css");
@import url("slide.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;padding: 0px;
	 font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	color: #606060;		/*文字色*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,select,textarea,input {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
video {max-width: 100%;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;
	transition: 0.4s;
	text-decoration: none;
}
a:hover {
	color: #000;
}

/*ヘッダーブロック（ロゴやメニューが入った最上段ブロック）
---------------------------------------------------------------------------*/
/*header {
  width: 100%;
  font-size: 2em;
  text-align: center;
  color: #fff;
  background:none;
  padding: .5em;
  box-sizing: border-box;
	z-index: 5;
}*/
#fixed-header {
	position: fixed;	/*ヘッダーを上部に固定する指定*/
	z-index: 5;
	left: 2.5%;			/*左からの配置場所の指定*/
	top: 20px;			/*上からの配置場所の指定*/
	width: 95%;		/*幅*/
	/*font-size: 13px;	/*文字サイズ*/
	height: 60px;		/*ヘッダーの高さ*/
	background:#fff;
	border-radius:40px;
}
/*ロゴ画像*/
#fixed-header #logo img {
	height: 35px;	/*高さ。上のheaderのheightと合わせる。*/
	float: left;	/*左に回り込み*/
	margin:10px 0 0 60px
	/*background: #0074ea;	/*背景色*/
}


#fixed-header {
  position: fixed;
  /*top: -70px;  */
	left:2.5%;
  width: 95%;
  height: 60px;
		line-height:2.5em;
  /*line-height: 70px;*/
  /*font-size: 2em;
  text-align: center;
  color: #fff;*/
  background: #fff;
  box-sizing: border-box;
  transition: .5s;
border-radius:40px;
}
#fixed-header.is-show {
  top: 20px;
}

/*fixed-headerお問い合わせボタン*/
#fixed-header .contact-btn{
	background:#69bfdc;
	border-radius:20px;
	height:40px;
	width:120px;
	margin-top:10px;
	text-align:center;
	position: absolute;
	right:20px;
}
#fixed-header .contact-btn a{
	color:#fff;
	text-decoration:none;
}
#fixed-header .contact-btn:hover{
	background:#2c78aa!important;
	border-radius:20px;
		height:40px;
	width:120px;
}


/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#menubar {
	float: right;
	margin-right:150px;
}
/*メニュー１個あたりの指定*/
#menubar li {
	float: left;
	letter-spacing: 0.1em;
}
#menubar li a, .ddmenu-title {
	display: block;text-decoration: none;
	/*color: #fff;	/*文字色*/
	padding: 0px 20px;	/*上下、左右へのメニュー内の余白*/
	line-height: 60px;	/*行間。headerのheightと数字を合わせる。*/
}
/*マウスオン時の背景色*/
#menubar li a:hover {
	background: #dddddd !important;
}
/*ドロップダウンメニューの親メニューへの追加指定。基本指定は上の.ddmenu-titleにあります。*/
.ddmenu-title {
	padding-left: 40px;	/*アイコン分の余白を確保*/
	background: url(../images/arrow1.png) no-repeat 10px center / auto 25px;	/*アイコン画像の読み込み。最後の25pxは高さ指定。*/
}

/*小さい端末用メニューを非表示にする*/
#menubar-s,#menubar-s2 {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ドロップダウンメニュー（ddmenu）
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;z-index: 10;
	width: auto;
	margin-left: -40px;	/*.ddmenu-titleのpadding-leftと数字を合わせてマイナス記号をつける。*/
}
/*メニュー１個あたりの指定*/
#menubar ul.ddmenu li {
	float: none;
}
#menubar ul.ddmenu li a {
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒の事で0.8は色が80%出た状態。*/
	border: 1px solid rgba(255,255,255,0.4);	/*線の幅、線種、色。255,255,255は白の事で0.4は色が40%出た状態。*/
	border-top: none;	/*上の線だけ消す*/
}
/*１つ目のメニューへの追加指定*/
#menubar ul.ddmenu li:first-child a {
	border-top: 1px solid rgba(255,255,255,0.4);	/*上の線の指定*/
}
/*ドロップダウンのマウスオン事*/
li:hover ul.ddmenu {
	animation-name: opa1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 0.4S;	/*アニメーションの実行時間。0.4秒。*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}

/*QRコードのわく*/
.qr-box{
	border:solid 1px #000;
	border-radius:6px;
	padding:20px 0;
	width:90%;
	text-align:center;
	margin:40px auto;
}
.qr-box img{
	height:100px;
}


/*お問い合わせフォーム flow
-----------------------------*/
.flow{
	width:100%;
	text-align:center;
}
.flow img{
	height:100px;
}



/*facebookやtwitterなどのアイコン
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
ul.icon {
	float: right;	/*アイコンブロックを右に回り込み*/
	margin-right: 20px;	/*右側に空けるスペース*/
}
/*アイコン１個あたりの設定*/
ul.icon li {
	display: inline-block;	/*横並びにさせる指定*/
	padding-top: 10px;		/*上に空ける余白。header内の上下の配置バランスをここでとって下さい。*/
}
/*アイコン画像の設定*/
ul.icon img {
	width: 30px;		/*画像の幅*/
	margin-right: 5px;	/*画像同士の余白*/
}

/*コンテンツ（contents）
---------------------------------------------------------------------------*/
/*コンテンツブロック全体*/
#contents {
	margin-top: 0px;	/*上に空ける余白。headerとの間に空けたいスペースを調整して下さい*/
}

#contents .bg{
	background:url(../images/bg-blue.svg)no-repeat left center / 800px;
}
		
/*トップページのコンテンツへの追加指定*/
.home #contents {
	margin-top: 50px;	/*スライドショーの高さに合わせて調整して下さい*/
	position:relative;
}
/*トップページのコンテンツへの追加指定*/
.secand #contents {
	margin-top: 0px;	/*セカンドメイン画像の高さに合わせて調整して下さい*/
}
/*h2タグ*/
/*h2タグ内のspanタグの文字の最初と最後に表示させる記号*/
/*#contents h2 span::before,#contents h2 span::after {
	content: "-";
}
*/
#contents h2 {
	text-align: center;		/*文字をセンタリング*/
}

.home-title{
	font-weight:bold;
	font-size: 2.0rem;		/*文字サイズ。bodyで指定しているfont-sizeの2.8倍。*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる*/
	margin-bottom: 0.1em;		/*下に空けるスペース。ここのfont-sizeの2文字分。*/
	display: inline-block;
	border-bottom: 1px solid #d1d3d3;	/*下線の幅、線種、色*/
	padding:0 20px;
}

/*h2の装飾文字部分*/
#contents h2 span {
	display: block;
	font-size: 1.0em;		/*文字サイズ。親要素（上のh2のfont-size）の30%。*/
	opacity: 0.5;			/*透明度。50%だけ色を出す指定。*/
	letter-spacing: 0.5em;	/*文字間隔を広くとる*/

}

/*h2の文字を左寄せで下線を引くタイプ*/
#contents h2.normal {
	text-align: left;	/*文字を左寄せ*/
	font-size: 2rem;	/*文字サイズ。bodyで指定しているfont-sizeの2倍。*/
	border-bottom: 1px solid #d1d3d3;	/*下線の幅、線種、色*/
	margin-bottom: 0.5em;	/*下に空けるスペース。ここのfont-sizeの2文字分。*/
}

/*h2のタイプ　フォント指定*/
/*明朝*/
.type1{
font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
/*文字白 明朝*/
.type2{
color:#fff!important;
font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
/*ゴシック*/
.type3{
font-family: 'BIZ UDPGothic', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/ padding:10px 0;
}
/*左寄せ*/
.type4{text-align:left!important;}
/*下にグレーの線　　HOME会社概要*/
.type5{
text-align:center!important;
border-bottom:solid 5px #606060;
}

/*h3タグ*/

#contents h3 {
	font-size: 1.2rem;	/*文字サイズ*/
	font-weight:bold;
	margin: 40px 0 2rem;	/*h2の外側にとるスペース。上、左右、下への順番。*/
	border-bottom: 3px solid #eee;	/*下線の幅、線種、色。ベースカラーです。下と数字を合わせておく。*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広くとる*/
	color:#666;
}

/*mainブロック内のh2タグに下線を引くための指定。*/
#contents h3 span.uline {
	display: inline-block;
	border-bottom: 3px solid #69bfdc;	/*下線の幅、線種、色。アクセントカラーです。上と数字を合わせておく。*/
	position: relative;
	bottom: -3px;		/*下からの配置場所指定。上にある２つのborder-bottomと重ねる為の指定なので、数字を合わせてから冒頭にマイナスをつけて下さい。*/
	padding: 0 1rem;	/*上下、左右への余白。テキストの両脇に少し余裕をもって線を引くためです。*/
}

#contents h3.sub {
	font-size: 1.0rem;	/*文字サイズ*/
	font-weight:bold;
	margin: 40px 0 2rem;	/*h2の外側にとるスペース。上、左右、下への順番。*/
	padding-left:20px;
	border-bottom: 1px solid #69bfdc;	/*下線の幅、線種、色。ベースカラーです。下と数字を合わせておく。*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広くとる*/
	color:#666;
}


/*段落タグ設定*/
#contents p {
	padding: 0px 20px 0px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#contents p + p {
	margin-top: -5px;
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -10px;
}
/*#contents section + section {
	margin-top: 30px;
}*/

#contents section{
	width:100%;
	padding:40px 0;
}

/*contents inner  コンテンツの内側
---------------------------------------------------------------------------*/
.inner{
	padding: 3% 0;		/*コンテンツ内の余白*/
	margin:0 10%;
}




/*HOME　
---------------------------------------------------------------------------*/
/*ボックスの設定*/

.list-container{
	display:flex;
	justify-content: space-around;
}

#contents .list {
	position: relative;
	overflow: hidden;
	display: flex;
	flex: wrap;
	flex-direction:column;/*中の子要素をたて並びに*/
	width:48%;
	align-items: center;
	margin-bottom: 1px;	/*ボックス同士に空けるスペース*/
	/*background:#fff;*/
	text-align:center;
	margin:20px 0;
	padding:40px;
}
/*リンクテキストの文字色*/
#contents .list a {
	color: #085294;
}
/*ボックス内のh4（見出し）タグ*/
#contents .list h4 {
	margin-bottom: 10px;	/*下のテキストとの間に空けるスペース*/
	font-size: 120%;		/*文字サイズ*/
	font-weight:bold;
	color:#085294;
	border-left:solid 5px;
}
#contents .list h4 span{
	font-size:16px;
	font-weight:normal;
}
/*ボックス内のp（段落）タグ*/
#contents .list p {
	padding: 0;		/*余白のリセット*/
}
/*ボックス内のfigure画像*/
#contents .list figure {
	float: left;	/*左に回り込み*/
	width: 100%;		/*画像の幅*/
	margin-top:auto;
}
/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list .text {
	float: right;	/*右に回り込み*/
	width: 94%;		/*幅*/
	margin: 3%;		/*外側に取るスペース。これがないと枠ギチギチに文字が表示されます。*/
	margin-top:auto;
}

.border {
	border:solid 1px #606060;
	box-sizing: border-box;
}


/*HOME　　事業内容
------------------------------------------*/
.ta-works{
	width:90%;
	margin:0 5%;
}
.ta-works tr{
	border-bottom:solid 1px #606060;
}
.ta-works th,.ta-works td{
	padding:5px;
}
.ta-works th{
	width:2em;
	vertical-align: top;
}


/*
.works-list{
	width:90%;
	margin:20px auto;
}
.works-list ul li{
	border-bottom:solid 1px #606060;
	list-style-type:decimal;
	margin:0px 0 0px 2em;
	padding:10px 0;
}*/

/*HOME　　プロジェクト
------------------------------------------*/
.ta-pro{
	width:90%;
	margin:0 5%;
}
.ta-pro th,.ta-pro td{
	padding:5px;
}
.ta-pro th{
	width:2em;
	vertical-align: top;
}


/*
.pro-list{
	width:90%;
	margin:20px auto;
}
.pro-list ul li{
	list-style-type:decimal;
	margin:0px 0 0px 2em;
	padding:10px 0;
}*/



/*お問合せ欄 左右分けの設定
------------------------------------*/
.contact-l{
	position: relative;
	overflow: hidden;
	width:47%;
	display: flex;
	flex: wrap;
	flex-direction:column;/*中の子要素をたて並びに*/
}
.contact-l .text{
	margin-left:auto;  /*左側スペースをautoにしてみぎよせ*/
}
.contact-l h4{
	font-weight:bold;
	font-size:2.0em
}
.contact-r{
	position: relative;
	overflow: hidden;
	width:50%;
	display: flex;
	flex: wrap;
	align-items: center;
	text-align: left;
}


/*背景色
----------------------------------------------------------*/
.bg-blue{
	background-color:#085294;display:inline-block;
	
}
.bg-gray{
	background-color:#f5f5f5;display:inline-block;
}

.bg-yellow{
	background-color:#FFFAD2;display:inline-block;
}

.bg-white{
	background:#FFF;
}

/*btn1
---------------------------------------------------------------------------*/
.btn1 a {
	display: block;
	text-decoration: none;
	background:#D1E8FF url(../images/arrow4-blue.png) no-repeat 95% center / 15px;	/*背景色、アイコン画像の読み込み。95%は左からの配置場所、最後の15pxは画像幅。*/
	color: #000!important;	/*文字色*/
	max-width: 100%;	/*最大幅。画面幅が狭くなった場合、小さく縮小されていきます。*/
	text-align: center;	/*テキストをセンタリング*/
	font-weight:bold;
	border-radius:5px;
	padding: 5px 0px;	/*上下、左右へのボタン内の余白*/
	margin: 20px auto 0;	/*上、左右、下へのボタンの外側への余白*/
}
/*マウスオン事に少し位置をずらす指定*/
.btn1 a:hover {
	position: relative;
	left: 1px;
	top: 1px;
	background:#ccc url(../images/arrow4-blue.png) no-repeat 95% center / 15px;	/*背景色、アイコン画像の読み込み。95%は左からの配置場所、最後の15pxは画像幅。*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	/*font-size: 90%;		/*文字サイズ*/
	/*color: #fff;			/*文字色*/
}
footer a {color: #fff;}
footer a:hover {color: #fff;}
footer .pr {display: block;}


/*フッター　ロゴ
-------------------------------------*/
.foot-logo{
	width:30%;
 float:left;
	text-align:right;
}
.foot-logo img{
	height:30px;
	margin:20px 0;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 20px 3%;		/*上下、左右へのボックス内の余白*/
	/*background: #444;	/*背景色*/
}

/*フッターうちわく*/
	.footer-box{
		width:80%;
		margin:0 auto;
		position: relative;
		text-align: center;
	}


/*リンクテキスト*/
#footermenu a {
	color:#606060;
	text-decoration: none;
	opacity: 0.7;	/*透明度。70%の色がついた状態。*/
}
/*マウスオン時*/
#footermenu a:hover {
	opacity: 1;		/*透明度。100%色がついた状態。*/
}
/*１行分の設定*/
#footermenu ul {
	float: right;		/*左に回り込み*/
	width: 100%;			/*幅。今回は４列作っているので、この数字と下のpadding-rightとpadding-leftを合計した数字が１列分になる。(23%＋1%＋1%)×4列＝100%*/
	/*padding-right: 1%;	/*右に空ける余白*/
	/*padding-left: 1%;	/*左に空ける余白*/
	text-align: left;	/*テキストを左寄せ*/
	margin:10px;
}
#footermenu ul li{
	float:left;
	border-left:1px solid #606060;
	padding:0 10px;
	display:inline-block;
	line-height:1.0em;
}
/*見出し*/
#footermenu li.title, #footermenu li.title a {
	opacity: 1;	/*透明度。100%色がついた状態。*/
	font-size: 110%;	/*文字サイズ*/
}



/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	/*background: #000;	/*背景色*/
}
#copyright a {text-decoration: none;color:#606060;}
#copyright a:hover {color: #999; text-decoration: underline;}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 20px;		/*上下、左右へのブロック内の余白*/
	margin-bottom: 20px;	/*ブロックの下(外側)に空ける余白*/
	height: 100px;			/*高さ*/
	overflow: auto;			/*上の高さを超えるコンテンツ量になった場合にスクロールバーを出す*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
	padding:10px;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding:10px;
}



/*ta1設定
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;	/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;	/*ボックス内の余白*/
}
/*ta1テーブル*/
.ta1 {
	width: 100%;
	table-layout: fixed;
	margin: 0 0 20px;
	/*background: #fff;	/*背景色*/
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*左側ボックス*/
.ta1 th {
	width: 150px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}

/*ta2設定  会社概要　沿革
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta2 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #eee;	/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;	/*ボックス内の余白*/
}
/*ta2テーブル*/
.ta2 {
	width: 100%;
	table-layout: fixed;
	margin: 0 0 20px;
	/*background: #fff;	/*背景色*/
}
.ta2 td, .ta2 th {
	border-bottom: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*左側ボックス*/
.ta2 th {
	width: 150px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}

/*NEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*通常時のボタンは非表示*/
body .nav-fix-pos-pagetop a {display: none;}
/*fixmenu_pagetop.jsで設定している設定値になったら出現するボタンスタイル*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;
	text-decoration: none;
	text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	z-index: 1;
	position: fixed;
	bottom: 20px;	/*下から20pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	/*background: #666;	/*背景色（古いブラウザ用）*/
	/*background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事。0.6は60%色がついた状態。*/
	/*color: #fff;	/*文字色*/
	/*border: 1px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: opa1;	/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover img{
	opacity: 0.7;	/*背景色*/
}

body.is-fixed-pagetop .nav-fix-pos-pagetop a img{
	width:35px;
}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
	background: #ff0000;
	color:#fff;
	padding: 10px 25px !important;
	margin-bottom: 20px;
}
p.check a {color: #fff;}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 45px;
}
ol {
	padding: 0 20px 20px 45px;
}


/*HOME
---------------------------------------------------*/
.slogan-catch{
	font-weigth:bold;
	font-family: 'BIZ UDPGothic', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size:36px;
	text-align:center;
	line-height:1.0em;
	padding:40px 0 0;
}
.slogan-catch span{
	font-size:16px;
	font-weight:normal;
}


/*事業領域*/
.jigyo-image{
	margin:3% 13%;
}

/*文字の右にライン
---------------------------------------------------*/
.title-border-right {
display: flex;
align-items: center;
	font-size:30px;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	margin:40px 0;
}
.title-border-right:after {
border-top: 1px solid;
content: "";
flex-grow: 1;
}
.title-border-right:after {
margin-left: 1rem;
}

.title-border-right span{
	font-size:16px;
}

/*コメント　大
--------------------------------*/
.comment-big{
	font-size:18px;
	margin-bottom:20px;
	text-align: center;
}

/*事業紹介
-------------------------------*/
.business-container {
  padding: 0;
  margin: 0;
	width:100%;
	float:left;
	margin:20px 0;
	padding:10px 0;
}
.business-container div{
	width:33.3%;
	float:left;
	height:300px;
	  text-align:center;
  position:relative;
}
.business-name{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:100%;
	font-weight:bold;
	color:#fff;
	font-size:120%;
}

/*背景*/
.bg-logistic{background:url("../images/service-logi.jpg")no-repeat;background-size:cover;}
.bg-logistic:hover{opacity: 0.8;}
.bg-seculity{background:url("../images/service-security.jpg")no-repeat;background-size:cover;}
.bg-seculity:hover{opacity: 0.8;}
.bg-hoken{background:url("../images/service-hoken.jpg")no-repeat;background-size:cover;}
.bg-hoken:hover{opacity: 0.8;}
.bg-fudousan{background:url("../images/service-warehouse.jpg")no-repeat;background-size:cover;}
.bg-fudousan:hover{opacity: 0.8;}
.bg-mobility{background:url("../images/service-seibi.jpg")no-repeat;background-size:cover;}
.bg-mobility:hover{opacity: 0.8;}
.bg-solution{background:url("../images/service-solution.jpg")no-repeat;background-size:cover;}
.bg-solution:hover{opacity: 0.8;}


/*HOME　背景*/
.bg-service-image{
	background:url("../images/bg-home.jpg")no-repeat top center;
	background-size:cover;
}

/*HOME　グレー文字のキャッチ

デジタル空間での・・・-----------------------*/

.home-catch{
	width:100%;
	padding:40px 0;
	text-align:center;
}
.home-catch img{
	width:50%;
}

.home-catch p{
	margin-top:30px;
	font-size:1.5em;
}


/*ミッション
--------------------------*/
.home-catch-mission{
	width:100%;
	padding:40px 0;
	text-align:center;
}

.home-catch-mission img{
	width:25%;
}

.home-catch-mission p{
	margin-top:30px;
	font-size:1.5em;
}

/*ホールディングスリスト
-------------------------------------------*/
.holdings-image{
	width:80%;
	margin:0 auto;
}

.holdings-list{
	width:100%;
}

.holdings-list ul{
	float:left;
		border-bottom:solid 1px #fff;
	padding:40px 0;
	width:100%;
}

.holdings-list ul li{
	width:30%;
	float:left;
	list-style-type:none;
	margin:1.5%;
	background:#fff;
	text-align:center;
	padding:5px 0;
}
/*一の谷バナー*/
.holdings-list ul li.bg-black{
	background:#000;
}

/*ホールディングスリスト  その他
-------------------------------------------*/
.holdings-list-other{
	width:100%;
}

.holdings-list-other ul{
	float:left;
	padding:40px 0;
	width:100%;
}

.holdings-list-other ul li{
	width:45%;
	float:left;
	list-style-type:none;
	margin:1.5% 2.5%;
	text-align:center;
}



/*コンタクトの枠
--------------------------------------------------*/
.contact-box{
	background:#69bfdc;
	padding:40px 0;
	text-align:center;
	color:#fff;
}
.contact-box a{
	font-weight:bold;
	font-size:120%;
}

.contact-box:hover{
	background:#2c78ac;
	text-decoration:none!important;
}

/*お問い合わせボタン 大*/
.contact-btn01{
	background:#e84715;
	padding:10px 0;
	border-radius:30px;
	text-align:center;
	margin:8px auto 30px;
	width:30%;
	color:#fff!important;
}
.tel {
	font-size:36px;
	font-weight:bold;
	background:url("../images/tel.svg")no-repeat left center /40px;
	width:500px;
	margin:0 auto;
}
.tel span{
	font-size:20px;
}
.tel a{
	color:#fff;
}

/*セカンドページ
-----------------------------------------------------*/
.secand-top{
	position:relative;
	width:100%;
	top:0;
	height:300px;
	background:url("../images/bg.jpg")no-repeat center center;
	background-size:cover;
}

/*セカンドページの背景*/
/*企業情報*/
.bg-profile{
	background:url("../images/company/secand-top.jpg")no-repeat center center;
	background-size:cover;
}
/*事業案内*/
.bg-service{
	background:url("../images/service/secand-top.jpg")no-repeat center center;
	background-size:cover;
}
/*拠点案内*/
.bg-office{
	background:url("../images/office/secand-top.jpg")no-repeat center center;
	background-size:cover;
}
/*採用情報*/
.bg-recruit{
	background:url("../images/recruit/secand-top.jpg")no-repeat center center;
	background-size:cover;
}
/*私達の取組み*/
.bg-efforts{
	background:url("../images/efforts/secand-top.jpg")no-repeat center center;
	background-size:cover;
}

.secand-title{
	font-size: 36px;		/*文字サイズ*/
	color: #085294;			/*文字色*/
	text-align:center;
	font-weight:bold;
  position:absolute;
  top:45%;
  left:50%;
  transform:translate(-50%,-50%);
  width:100%;
	/*padding-top:50px;/*ヘッダの分だけ空ける*/;
}

.secand-title-sub{
	position:absolute;
	left:0;
	top:150px;
	border-bottom:solid 5px #e84715;
	padding:0 20px;
	font-weight:bold;
}

/*セカンドページタイトル　*/
.secand-title01{
	font-size: 36px;		/*文字サイズ*/
	color: #606060;			/*文字色*/
	text-align:center;
	font-weight:bold;
  width:100%;
	padding-top:150px;/*ヘッダの分だけ空ける*/
	line-height:1.0em;
}

.secand-title01 span{
	color:#000;
	font-size:22px;
	font-weight:normal;
}



/*代表あいさつ*/
.list-greeting{
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction:row;/*中の子要素をよこ並びに*/
	align-items: top;
	margin-bottom: 1px;	/*ボックス同士に空けるスペース*/
}
/*ボックス内のp（段落）タグ*/
.list-greeting p {
	padding: 0;		/*余白のリセット*/
	color:#000;
	line-height:1.5em;
}
/*ボックス内のfigure画像*/
.list-greeting figure {
	width: 30%;		/*画像の幅*/
	text-align:center;
}
.list-greeting figure span{
	font-size:120%;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight:bold;
}
/*「class="text"」を指定したブロック。テキストブロック。*/
.list-greeting .text {
	width: 67%;		/*幅*/
	margin: 0 3% 0 0;		/*外側に取るスペース。これがないと枠ギチギチに文字が表示されます。*/
}

/*SDGｓのアイコンリスト*/
.list-greeting ul {
	float:left;
	width:100%;
	margin-top:20px;
}
.list-greeting ul li{
	list-tyle-type:none;
	width:80px;
	float:left;
	margin-right:10px;
}

/*ホールディングス　*/
.vision{
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	text-align:center;
	font-size:26px;
	font-weight:bold;
	margin:40px 0;
}

.vision span{
	font-size:20px;
}


/*ホールディングス　会社バナー*/
.border-bottom{
	border-bottom:solid 1px #ccc;
	padding-bottom:20px;
	margin-bottom:40px;
}


/*拠点案内
--------------------------------------------*/
/*MAPボタン*/
.map-btn{
	background:#e84715;
	padding:5px;
	border-radius:20px;
	width:100px;
	text-align:center;
	margin:8px;
	float:right;
	color:#fff!important;
}
.map-btn a{
	
	text-decoration:none;
}

.office-sub{
	font-size:120%;
	color:#085294;
	font-weight:bold;
}

.warehouse-photo img{
	margin:20px 10px 0 0;
}
/*私たちの取組み
--------------------------------------------------------*/
.line{
	background:#40cad6;
	height:1px;
	width:100%;
	margin-bottom:40px;
}


/*事業案内
------------------------------------------------------*/

/*ビジネスサポート事業　ロジスティクス事業*/
.service-catch img{
	height:100px;
	margin-bottom:40px;
}

/*倉庫ボタン 大*/
.souko-btn{
	background:#7c9c47;
	padding:10px 0;
	border-radius:30px;
	text-align:center;
	margin:8px auto;
	width:30%;
	color:#fff!important;
}


/*戸田川倉庫
--------------------------------------------*/
#contents .list4 {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction:column;/*中の子要素をたて並びに*/
	width:22%;
	align-items: center;
	margin-bottom: 1px;	/*ボックス同士に空けるスペース*/
	background:#fff;
	text-align:center;
	margin:20px 1.5%;
	padding:10px;
}
/*リンクテキストの文字色*/
#contents .list4 a {
	color: #fff;
}
/*ボックス内のh4（見出し）タグ*/
#contents .list4 h4 {
	margin-bottom: 10px;	/*下のテキストとの間に空けるスペース*/
	font-size: 120%;		/*文字サイズ*/
	font-weight:bold;
	color:#085294;
	border-left:solid 5px;
	text-align:center;
}
/*ボックス内のp（段落）タグ*/
#contents .list4 p {
	padding: 0;		/*余白のリセット*/
}
/*ボックス内のfigure画像*/
#contents .list4 figure {
	float: left;	/*左に回り込み*/
	width: 100%;		/*画像の幅*/
}
/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list4 .text {
	/*float: right;	/*右に回り込み*/
	width: 94%;		/*幅*/
	margin: 3%;		/*外側に取るスペース。これがないと枠ギチギチに文字が表示されます。*/
	text-align:left;
	line-height:1.5em;
	font-size:90%;
}


/*採用情報
--------------------------------------*/
/*FAQ
---------------------------------------------------------------------------*/
/*FAQボックス全体*/
.faq {
	padding: 0 5px;	/*上下、左右へのボックス内の余白*/
}

/*質問*/
.faq dt {
	border-radius: 3px;		/*枠を角丸にする指定*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	background: #fff;		/*背景色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	text-indent: -2em;				/*テキストのインデント。質問が複数行になった際に、テキストの冒頭を揃える為に設定しています。*/
	padding: 5px 1em 5px 3em;		/*ボックス内の余白。ここを変更する場合、上のtext-indentも調整します。*/
}

/*アイコン（Font Awesome）*/
.faq dt::before {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f059";		/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	color: #085294;			/*アイコンの色*/
	padding-right: 1em;		/*アイコンとテキストの間の余白*/
}

/*回答*/
.faq dd {
	padding: 5px 1em 30px 3em;		/*ボックス内の余白**/
}

/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}

.faq dt span {text-indent: 0;}

/*read more*/
.read-more{
	text-align:right;
}
.read-more img{
	height:40px;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #222;padding: 5px 10px;border-radius: 4px;border: 1px solid #333;color: #fff;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb10em {margin-bottom: 10em !important;}
.mb15em {margin-bottom: 15em !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.mt30 {margin-top: 30px !important;}
.mt50 {margin-top: 50px !important;}
.clear {clear: both;}
.color1, .color1 a {color: #0074ea !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fl {float: left;}
.fr {float: right;}
.big1 {font-size: 40px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.dn {display: none;}
.sh {display: none;}
.em{font-weight:bold;}

/*ページ内リンク　ヘッダ部分をよける*/
:root{
	scroll-padding: 100px;
	scroll-behavior: smooth;
}

/*スマホ時　ロゴ　非表示*/
.sh-logo{ display:none;}


/*画面幅1200px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1200px){
	
	#fixed-header{
		display: none;
	}
	
/*スマホ時　ロゴ表示*/
.sh-logo{
	display:inline;
	position:absolute;
	left:20px;
	top:10px;
	z-index: 100;
	background:#fff;
	border-radius:20px;
	padding:8px;
}
.sh-logo img{
	height:25px;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック全体*/
#menubar-s {
	display: inline;
	overflow: auto;
	height: 100%;
	text-align: left;
	position: fixed;z-index: 100;
	top: 0px;
	width: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	animation-name: opa1;		/*keyframes.cssで使う@keyframesの指定*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	font-size: 16px;	/*文字サイズ*/
}
/*メニュー１個あたりの設定と、子メニューの見出し。*/
#menubar-s ul li a,#menubar_hdr2 {
	display: block;text-decoration: none;
	padding: 10px 15px;	/*上下、左右へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;		/*文字色*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*子メニュー
---------------------------------------------------------------------------*/
/*子メニューの見出しの追加。基本は上のブロックで設定しています。*/
#menubar_hdr2 {
	padding-left: 35px;
}
/*子メニューメニューブロック全体*/
#menubar-s2 {
	display: block;
	margin-top: 10px;
	background: rgba(0,0,0,0.5);	/*背景色*/
	border: 1px solid #666;		/*上の線の幅、線種、色*/
	border-bottom: none;		/*下の線のみ消す*/
}
/*「＞」アイコン設定*/
#menubar_hdr2.close {
	background: url(../images/arrow2.png) no-repeat 10px 18px / 18px;
}
/*「＾」アイコン設定*/
#menubar_hdr2.open {
	background: url(../images/arrow3.png) no-repeat 10px 18px / auto 18px;
}
/*子メニュー１個あたりの設定*/
#menubar-s2 li a {
	color: #fff !important;	/*文字色*/
	padding: 5px;	/*余白*/
	border-bottom: 1px solid #666 !important;		/*下の線の幅、線種、色*/
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;
	z-index: 100;
	top: 0px;		/*上からの配置場所*/
	right: 10px;	/*右からの配置場所*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: url(../images/icon_menu.png) no-repeat center top/50px;	/*背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}
	
	
	
/*contents inner  コンテンツの内側
---------------------------------------------------------------------------*/
.inner{
	padding: 3% 0;		/*コンテンツ内の余白*/
	margin:0 0%;
}

	
/*HOME　記事の設定
-------------------------*/
/*HOME　　実績　プロジェクト
------------------------------------------*/
/*.works-list{
	width:90%;
	margin:20px auto;
}
.pro-list{
	width:90%;
	margin:20px auto;
}*/
	
/*お問い合わせボタン*/
.contact-btn{
	background:#e84715;
	padding:5px;
	border-radius:20px;
	width:100px;
	text-align:center;
	margin:5px;
	position:absolute;
right:60px;
	top:5px;
}
	
	
/*HOME
---------------------------------------------------*/
.slogan-catch{
	color:#fff;
	font-weigth:bold;
	font-family: 'BIZ UDPGothic', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size:28px;
	text-align:center;
	line-height:1.0em;
	padding:40px 0 0;
}
/*事業案内　白文字*/	
.business-name{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:100%;
	font-weight:bold;
	color:#fff;
	font-size:100%;
}

/*facebookやtwitterなどのアイコン
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
ul.icon {
	float: left;	/*アイコンブロックを左に回り込み*/
	margin-left: 20px;	/*左側に空けるスペース*/
}
	
/*事業領域*/
.jigyo-image{
	margin:0 0%;
}
	
/*倉庫　画像*/
.warehouse-photo img{
	margin:20px 10px 0 0;
	width:45%;
}
	
	
	
/*フッター　ロゴ
-------------------------------------*/
.foot-logo{
	width:25%;
 float:left;
	text-align:left;
}
	
.foot-logo img{
	height:30px;
	margin:20px 0 0 10px;
}

/*フッターメニュー
---------------------------------------------------------------------------*/

/*フッターうちわく*/
	.footer-box{
		width:95%;
		margin:0 auto;
		position: relative;
		text-align: center;
	}	
	

/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 20px 0%;		/*上下、左右へのボックス内の余白*/
	/*background: #444;	/*背景色*/
}

/*リンクテキスト*/
#footermenu a {
	color:#606060;
	text-decoration: none;
	opacity: 0.7;	/*透明度。70%の色がついた状態。*/
}
/*マウスオン時*/
#footermenu a:hover {
	opacity: 1;		/*透明度。100%色がついた状態。*/
}
/*１行分の設定*/
#footermenu ul {
	float: left;		/*左に回り込み*/
	width: 100%;			/*幅。今回は４列作っているので、この数字と下のpadding-rightとpadding-leftを合計した数字が１列分になる。(23%＋1%＋1%)×4列＝100%*/
	/*padding-right: 1%;	/*右に空ける余白*/
	/*padding-left: 1%;	/*左に空ける余白*/
	text-align: left;	/*テキストを左寄せ*/
	margin:10px;
}
#footermenu ul li{
	float:left;
	border-left:1px solid #606060;
	padding:0 10px;
	display:inline-block;
	line-height:1.0em;
	font-size:0.8em;
}

}


/*画面幅700px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:700px){

#footermenu {display: none;}	
	
/*フッター　ロゴ
-------------------------------------*/
.foot-logo{
	width:100%;
 float:left;
	text-align:center;
	padding:10px 0;
}
	
.foot-logo img{
	height:30px;
	margin:20px 0;
}
}

/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;
	font-size: 2.93vw;
}

/*ヘッダーブロック（ロゴやメニューが入った最上段ブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 50px;		/*ヘッダーの高さ*/
}
/*ロゴ画像*/
header #logo img {
	height: 23px;	/*高さ。上のheaderのheightと合わせる。*/
	float: left;	/*左に回り込み*/
	margin:13px 0 0 5px
}
	
	
/*お問い合わせボタン*/
.contact-btn{
	background:#e84715;
	padding:5px;
	border-radius:20px;
	width:60px;
	text-align:center;
	margin:5px;
	position:absolute;
right:60px;
	top:5px;
}
	
	
/*contents inner  コンテンツの内側
---------------------------------------------------------------------------*/
.inner{
	padding: 40px 0%;		/*コンテンツ内の余白*/
}
	
	
	
/*HOME　記事の設定
-------------------------*/
/*HOME　　実績　プロジェクト
------------------------------------------*/
/*.works-list{
	width:95%;
	margin:20px auto;
}
.pro-list{
	width:95%;
	margin:20px auto;
}*/
/*facebookやtwitterなどのアイコン
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
ul.icon {
	float: none;
	margin: 0px;
}
/*アイコン１個あたりの設定*/
ul.icon li {
	padding-top: 0px;
}

/*コンテンツ（contents）
---------------------------------------------------------------------------*/
/*コンテンツブロック全体*/
#contents {
	margin-top: 0px;	/*上に空ける余白。headerとの間に空けたいスペースを調整して下さい*/
}
/*トップページのコンテンツへの追加指定*/
.home #contents {
	margin-top: 50px;	/*スライドショーの高さに合わせて調整して下さい*/
}
/*h2タグ*/
#contents h2 {
	clear: both;
	font-size: 26px;		/*文字サイズ*/
	/*color: #085294;			/*文字色*/
	text-align:center;
	font-weight:bold;
	line-height:1.2em;
}
	
/*h2の装飾文字部分*/
#contents h2 span {
	display: block;
	font-size: 0.7em;		/*文字サイズ。親要素（上のh2のfont-size）の30%。*/
	opacity: 0.5;			/*透明度。50%だけ色を出す指定。*/
	letter-spacing: 0.3em;	/*文字間隔を広くとる*/
font-weight:normal;
}
	
/*h3
	--------------------------------------*/
	
#contents h3 {
	font-size: 1.0rem;	/*文字サイズ*/
	font-weight:bold;
	margin: 0px 0 2rem;	/*h2の外側にとるスペース。上、左右、下への順番。*/
	border-bottom: 3px solid #eee;	/*下線の幅、線種、色。ベースカラーです。下と数字を合わせておく。*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広くとる*/
	color:#666;
}

/*mainブロック内のh2タグに下線を引くための指定。*/
#contents h3 span.uline {
	display: inline-block;
	border-bottom: 3px solid #69bfdc;	/*下線の幅、線種、色。アクセントカラーです。上と数字を合わせておく。*/
	position: relative;
	bottom: -3px;		/*下からの配置場所指定。上にある２つのborder-bottomと重ねる為の指定なので、数字を合わせてから冒頭にマイナスをつけて下さい。*/
	padding: 0 1rem;	/*上下、左右への余白。テキストの両脇に少し余裕をもって線を引くためです。*/
}

	
#contents h3.sub {
	font-size: 1.0rem;	/*文字サイズ*/
	font-weight:bold;
	margin: 0px 0 1rem;	/*h2の外側にとるスペース。上、左右、下への順番。*/
	padding-left:20px;
	border-bottom: 1px solid #69bfdc;	/*下線の幅、線種、色。ベースカラーです。下と数字を合わせておく。*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広くとる*/
	color:#666;
}
	
/*段落タグ設定*/
#contents p {
	padding: 0px 15px 20px;	/*上、左右、下への余白*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}
	
	
/*HOME
---------------------------------------------------*/
.slogan-catch{
	color:#fff;
	font-weigth:bold;
	font-family: 'BIZ UDPGothic', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size:26px;
	text-align:center;
	line-height:1.5em;
	padding:40px 0 0;
}
.slogan-catch span{
	font-size:12px;
	font-weight:normal;
}
	
/*HOME　グレー文字のキャッチ

デジタル空間での・・・-----------------------*/

.home-catch{
	width:80%;
	padding:40px 10%;
	text-align:center;
}
.home-catch img{
	width:100%;
}

.home-catch p{
	margin-top:30px;
	font-size:1.5em;
}


/*ミッション
--------------------------*/
.home-catch-mission{
	width:100%;
	padding:40px 0;
	text-align:center;
}

.home-catch-mission img{
	width:40%;
}

.home-catch-mission p{
	margin-top:30px;
	font-size:1.5em;
}
	
/*HOME　タイトル*/
.home-title{
	font-weight:bold;
	font-size:1.5rem;		/*文字サイズ。bodyで指定しているfont-sizeの2.8倍。*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる*/
	margin-bottom: 0.1em;		/*下に空けるスペース。ここのfont-sizeの2文字分。*/
	display: inline-block;
	border-bottom: 1px solid #d1d3d3;	/*下線の幅、線種、色*/
	padding:0 20px;
}

/*h2の装飾文字部分*/
#contents h2 span {
	display: block;
	font-size: 0.5em;		/*文字サイズ。親要素（上のh2のfont-size）の30%。*/
	opacity: 0.5;			/*透明度。50%だけ色を出す指定。*/
	letter-spacing: 0.5em;	/*文字間隔を広くとる*/

}	
	

/*お問合せ欄 左右分けの設定
------------------------------------*/
.contact-l{
	position: relative;
	overflow: hidden;
	width:100%;
	display: flex;
	flex: wrap;
	flex-direction:column;/*中の子要素をたて並びに*/
}
.contact-l .text{
	margin-left:0;  /*左側スペースをautoにしてみぎよせ*/
	text-align: center;
}
.contact-l h4{
	font-weight:bold;
	font-size:2.0em
}
.contact-r{
	position: relative;
	overflow: hidden;
	width:100%;
	display: inherit;
	flex: wrap;
	align-items: center;
	text-align: center;
	margin-top:20px;
}

	
/*文字の右にライン
---------------------------------------------------*/
.title-border-right {
display: flex;
align-items: center;
	font-size:20px;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	margin:20px 0;
}
/*コメント　大
--------------------------------*/
.comment-big{
	font-size:14px;
}
	
/*事業紹介
-------------------------------*/
.business-container {
  margin:0px 0;
	padding:0px 0 30px;
	width:100%;
	float:left;
}
.business-container div{
	width:50%;
	float:left;
	height:150px;
	  text-align:center;
  position:relative;
}
.business-name{
  position:absolute;
  top:55%;
  left:50%;
  transform:translate(-50%,-50%);
  width:90%;
	font-weight:bold;
	color:#fff;
}
	
/*企業情報*/
	
.list-container{
	display:inherit;
	justify-content: space-around;
}

#contents .list {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction:column;/*中の子要素をたて並びに*/
	width:96%;
	align-items: center;
	margin-bottom: 1px;	/*ボックス同士に空けるスペース*/
		margin:20px 2%;
	padding:10px 0 10px;
}
	
	
/*代表あいさつ*/
.list-greeting{
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction:column;/*中の子要素をよこ並びに*/
	align-items: top;
	margin-bottom: 1px;	/*ボックス同士に空けるスペース*/
}
/*ボックス内のp（段落）タグ*/
.list-greeting p {
	padding: 10px 0 0;		/*余白のリセット*/
	color:#000;
	line-height:1.5em;
}
/*ボックス内のfigure画像*/
.list-greeting figure {
	width: 100%;		/*画像の幅*/
	text-align:center;
	margin-top:10px;
}
.list-greeting figure span{
	font-size:120%;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight:bold;
}
/*「class="text"」を指定したブロック。テキストブロック。*/
.list-greeting .text {
	width: 100%;		/*幅*/
	margin: 0 0% 0 0;		/*外側に取るスペース。これがないと枠ギチギチに文字が表示されます。*/
}
	
/*青文字タイトル*/
.list-greeting h2{
	margin-bottom:15px;
	font-size:20px!important;
}

/*SDGｓのアイコンリスト*/
.list-greeting ul {
	float:left;
	width:100%;
}
.list-greeting ul li{
	list-tyle-type:none;
	width:50px;
	float:left;
	margin-right:10px;
}
	
/*ホールディングス　リスト*/
.holdings-list ul li{
	width:47%;
	float:left;
	list-style-type:none;
	margin:1.5%;
}

/*お問い合わせボタン 大*/
.contact-btn01{
	background:#e84715;
	padding:10px 0;
	border-radius:30px;
	text-align:center;
	margin:8px auto;
	width:60%;
	color:#fff!important;
}
	
/*ホールディングスリスト  その他
-------------------------------------------*/
.holdings-list-other{
	width:100%;
}

.holdings-list-other ul{
	float:left;
	padding:40px 0;
}

.holdings-list-other ul li{
	width:47%;
	float:left;
	list-style-type:none;
	margin:1.5%;
}
	
	
/*事業案内
	----------------------------*/
	

/*ビジネスサポート事業　ロジスティクス事業*/
.service-catch img{
	height:60px;
	margin-bottom:40px;
}

/*戸田川倉庫　　画像リスト
--------------------------------------------*/
#contents .list4 {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction:column;/*中の子要素をたて並びに*/
	width:97%;
	align-items: center;
	margin-bottom: 1px;	/*ボックス同士に空けるスペース*/
	background:#fff;
	text-align:center;
	margin:20px 1.5%;
	padding:10px;
}
	
/*倉庫ボタン 大*/
.souko-btn{
	background:#7c9c47;
	padding:10px 0;
	border-radius:30px;
	text-align:center;
	margin:8px auto;
	width:70%;
	color:#fff!important;
}
	
	
/*私たちの取組み*/
/*ホールディングス　*/
.vision{
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	text-align:center;
	font-size:20px;
	font-weight:bold;
	margin:40px 0;
}

.vision span{
	font-size:18px;
}

/*ta2
------------------------------------*/
	
/*左側ボックス*/
.ta2 th {
	width: 50px;	/*幅*/
	text-align: center;	/*センタリング*/
	font-weight: normal;
}
	
/*セカンドページ
-------------------------------------*/
	
/*セカンドページのコンテンツスタート位置*/
.secand #contents {
	margin-top: 0px;	/*メイン画像の高さに合わせて調整して下さい*/
	background:#fff;
}
	
/*セカンドページ画像エリア*/
.secand-top{
	position:relative;
	width:100%;
	top:0;
	height:150px;
	z-index: -1;
}
	
	
/*セカンドページタイトル　*/
.secand-title01{
	font-size: 24px;		/*文字サイズ*/
	color: #606060;			/*文字色*/
	text-align:center;
	font-weight:bold;
  width:100%;
	padding-top:70px;/*ヘッダの分だけ空ける*/
	line-height:1.0em;
}

.secand-title01 span{
	color:#000;
	font-size:16px;
	font-weight:normal;
}	

/*セカンドタイトル*/
.secand-title{
	font-size: 26px;		/*文字サイズ*/
	color: #085294;			/*文字色*/
	text-align:center;
	font-weight:bold;
  position:absolute;
  top:30%;
  left:50%;
  transform:translate(-50%,-50%);
  width:100%;
	padding-top:50px;/*ヘッダの分だけ空ける*/
}
	
/*セカンドページ　小タイトル*/
.secand-title-sub{
	position:absolute;
	left:0;
	top:55px;
	border-bottom:solid 5px #e84715;
	padding:0 20px;
	font-weight:bold;
}
	
	
	
/*お問合せ*/
	
.tel {
	font-size:26px;
	font-weight:bold;
	background:url("../images/tel.svg")no-repeat left center /30px;
	width:90%;
	margin:0 auto;
	text-align:center;
}
.tel span{
	font-size:16px;
}	

	
/*倉庫　画像*/
.warehouse-photo img{
	margin:20px 0px 0 0;
	width:100%;
}
	
	
/*QRコードのわく*/
.qr-box{
	border:solid 1px #000;
	border-radius:6px;
	padding:20px 0 15px;
	width:90%;
	text-align:center!important;
	margin:40px auto;
}
.qr-box img{
	height:100px;
}
	
/*トップへ戻る
-------------------------------------*/	
body.is-fixed-pagetop .nav-fix-pos-pagetop a img{
	width:35px;
}

/*その他
---------------------------------------------------------------------------*/


body.s-n #sub,body.s-n {display: none;}
.big1 {font-size: 20px !important;}
.sh {display:inline;}
.pc {display:none;}
.ws,.wl {width: 94%;}
.fl {float: none;}
.fr {float: none;}

}




/*画面幅380px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:380px){

/*h2タグ*/
#contents h2 {
	clear: both;
	font-size: 20px;		/*文字サイズ*/
	/*color: #085294;			/*文字色*/
	text-align:center;
	font-weight:bold;
}
	
/*h2の装飾文字部分*/
#contents h2 span {
	display: block;
	font-size: 0.8em;		/*文字サイズ。親要素（上のh2のfont-size）の30%。*/
	opacity: 0.5;			/*透明度。50%だけ色を出す指定。*/
	letter-spacing: 0.3em;	/*文字間隔を広くとる*/

}
	
/*私たちの取組み*/
/*ホールディングス　*/
.vision{
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	text-align:center;
	font-size:18px;
	font-weight:bold;
	margin:40px 0;
}

.vision span{
	font-size:16px;
}

	
}