@charset "utf-8";

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

/*全体の設定
---------------------------------------------------------------------------*/
html,body,#container {height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #2a3439;	/*全体の文字色*/
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 1.7;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
#container header .slider {
	margin-top: 80px;
}
ol {padding-left: 40px;padding-bottom: 15px;}
img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	line-height: normal;
}

table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}


/*追加したセンター揃えのp*/
.senterp {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 100%;
	line-height: 140%;
	text-align: center;
}

/*追加したバック付きのp*/
.bkplusp {
	font-size: 100%;
	line-height: 160%;
	background-color: #FFF7C6;
	padding-left: 10px;
	padding-top: 1px;
}

/*追加したバック付きのp50%*/
.bkplusp50 {
	font-size: 100%;
	line-height: 160%;
	background-color: #FFF7C6;
	padding-left: 10px;
	width: 48%;
	float: left;
	padding-top: 0px;
	padding-bottom: 0px;
}

/*追加したセンターそろえのh5（h5タグにclass="centerh5"を指定した場合）*/
#contents h5.centerh5  {
	font-size: 150%;
	text-align: center;
	border-bottom-width: 0px;
	margin-bottom: 10px;
}

/*二回り小さいp*/
.smallp2 {
	font-size: 95%;
	float: left;
	width: 96%;
	line-height: 150%;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	margin-bottom: 10px;
	background-color: #FFF7C6;
}

/*二回り小さいp赤地*/
.smallp3 {
	font-size: 95%;
	float: left;
	width: 96%;
	line-height: 150%;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	margin-bottom: 10px;
	background-color: #FFE8E8;
	color: #C20202;
}

/*企業理念の所*/
.rinen {
	margin-bottom: 20px;
}


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

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

/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background-color: #FFFFFF;
	position: relative;
}


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

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


/*コンテンツ（mainとsubを囲むブロック。１カラム時の場合はメインコンテツを囲むブロック。）
---------------------------------------------------------------------------*/
#contents {
	position: relative;
	z-index: 1;
	overflow: hidden;
	background: #fff;	/*背景色*/
	padding-top: 20px;
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 20px;	/*上下、左右へのブロック内の余白*/
}
/*contentsの中にあるinner*/
#contents .inner {
	padding-top: 10px;
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 10px;	/*上下、左右へのブロック内の余白*/
}
/*h2タグ*/
#contents h2 {
	clear: both;
	margin-bottom: 20px;
	line-height: 1.3;
	font-size: 35px;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	color: #024384;		/*文字色*/
}
.list h2 strong {
	color: #31D0FF;
	font-weight: normal;
	font-size: 90%;
}
/*h2タグにclass="type1"を指定した場合*/
#contents h2.type1 {
	background: #333;	/*背景色（古いブラウザ用）*/
	background: url(../images/bg_company.jpg) no-repeat center center/cover;	/*背景画像の読み込み*/
	padding: 50px 0px;	/*上下、左右へのボックス内の余白*/
	color: #533333;	/*文字色*/
}

/*h2タグにclass="type2"を指定した場合*/
#contents h2.type2 {
	background: #333;	/*背景色（古いブラウザ用）*/
	background: url(../images/bg_business.jpg) no-repeat center center/cover;	/*背景画像の読み込み*/
	padding: 50px 0px;	/*上下、左右へのボックス内の余白*/
	color: #533333;	/*文字色*/
}

/*h2タグにclass="type3"を指定した場合*/
#contents h2.type3 {
	background: #333;	/*背景色（古いブラウザ用）*/
	background: url(../images/bg_prodcts.jpg) no-repeat center center/cover;	/*背景画像の読み込み*/
	padding: 50px 0px;	/*上下、左右へのボックス内の余白*/
	color: #533333;	/*文字色*/
}

/*h2タグにclass="type4"を指定した場合*/
#contents h2.type4 {
	background: #333;	/*背景色（古いブラウザ用）*/
	background: url(../images/bg_contact.jpg) no-repeat center center/cover;	/*背景画像の読み込み*/
	padding: 50px 0px;	/*上下、左右へのボックス内の余白*/
	color: #533333;	/*文字色*/
}

/*h2タグにclass="type5"を指定した場合*/
#contents h2.type5 {
	background: #333;	/*背景色（古いブラウザ用）*/
	background: url(../images/bg_whatsnew.jpg) no-repeat center center/cover;	/*背景画像の読み込み*/
	padding: 50px 0px;	/*上下、左右へのボックス内の余白*/
	color: #533333;	/*文字色*/
}


/*h2タグのspan（装飾用）タグ*/
#contents h2 span {
	display: block;
	font-size: 14px;	/*文字サイズ*/
	color: #999;		/*文字色*/
	letter-spacing: 0.3em;	/*文字間隔を広くとる設定*/
}
/*h3タグ*/
#contents h3 {
	clear: both;
	margin-bottom: 20px;
	font-size: 20px;	/*文字サイズ*/
	border-bottom: 1px solid #ccc;
}
/*h3タグの１文字目*/
#contents h3::first-letter {
	border-left: 3px solid #ff3300;	/*左側の線の幅、線種、色*/
	padding-left: 20px;	/*線と文字との余白*/
}
/*段落タグ*/
#contents p {
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    margin-top: 15px;
    font-weight: normal;
}
.rinen p {
	font-size: 115%;
}

#contents h2 + p,
#contents h3 + p {
	margin-top: -10px;
}
/*section同士の余白*/
#contents section + section {
	margin-top: 20px;
}

/*外部リンクのボタン*/
.companylink a {
	text-align: center;
	border-radius: 8px;
	color: #424242;
	text-decoration: none;
	display: block;
	border: 1px solid #C9C9C9;
	padding-top: 10px;
	padding-bottom: 10px;
}

/*外部リンクのボタン画像付き罫なし*/
.companylink2 a {
	display: block;
}

.companylink a:hover {
	background-color: #C7C7C7;
	color: #fff;
}


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

/*一覧ページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list {
	position: relative;
	overflow: hidden;
	padding-top: 40px;
	padding-right: 40px;
	padding-left: 40px;
	padding-bottom: 40px;		/*ボックス内の余白*/
	border: 1px solid #b5b5b5;	/*枠線の幅、線種、色*/
	margin-bottom: 50px;		/*ボックス間の余白*/
	box-shadow: 2px 2px 10px rgba(0,0,0,0.15);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
}

/*ボックス内のh4タグ設定*/
.list h4 {
	font-size: 28px;	/*文字サイズ*/
	color: #024384;		/*文字色*/
	text-decoration: none;
}

/*ボックス内のh4タグ設定*/
.list h5 {
    font-size: 22px;	/*文字サイズ*/
    color: #424242;		/*文字色*/
    border-bottom: 1px solid #C5C5C5;
    margin-bottom: 15px;
    margin-top: 5px;
}

.list h4 a {
	color: #024384;	/*リンクテキストの文字色*/
}

.list .kyoten {
    font-size: 28px;	/*文字サイズ*/
    color: #424242;		/*文字色*/
    margin-bottom: 5px;
    margin-top: 5px;
}

.list .area {
    font-size: 20px;	/*文字サイズ*/
    color: #424242;		/*文字色*/
    margin-bottom: 5px;
    margin-top: 5px;
}




/*追加したバックの付いた見出し*/
.bkindex {
	display: block;
	text-decoration: none;
	background: #ffae5f;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#ffae5f, #fc7508);	/*グラデーション*/
	color: #fff;	/*文字色*/
	font-size: 26px;	/*文字サイズ*/
	text-align: left;
	padding-top: 2px;
	padding-right: 2px;
	padding-left: 8px;
	padding-bottom: 2px;		/*ボタン内の余白*/
	border-radius: 4px;	/*文字間隔を広くとる設定*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.3は色が30%ついた状態。*/
	border: 1px solid #fc7508;	/*枠線の幅、線種、色*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	margin-bottom: 10px;
}


/*ボックス内のp(段落)タグ設定*/
.list p {
	padding: 0px 0px 10px !important;	/*上、左右、下への余白*/
}

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

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

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


/*list3ボックス（追加したボックス）
---------------------------------------------------------------------------*/

/*ボックス全体を囲むulタグへの設定*/
.list3 {
	overflow: hidden;
}
/*各ボックスの設定*/
.list3 li {
	float: left;	/*左に回り込み*/
	width: 32%;		/*幅*/
	margin: 10px 0.5%;	/*上下、左右へのボックスの外側へ空けるスペース*/
	line-height: 1.5;
	position: relative;
}


/*office3060ボックス（追加したボックス地図部分）
---------------------------------------------------------------------------*/
/*ボックス全体を囲むulタグへの設定*/
.office3060 {
	padding-bottom: 50px;
	overflow: hidden;
}
/*各ボックスの設定*/
.photo30 {
	float: left;	/*左に回り込み*/
	width: 30%;		/*幅*/
	margin-top: 10px;
	margin-right: 2%;
	margin-bottom: 10px;	/*上下、左右へのボックスの外側へ空けるスペース*/
	line-height: 1.5;
	position: relative;
}

.map60 {
	float: left;	/*左に回り込み*/
	width: 65%;		/*幅*/
	margin-top: 10px;
	margin-left: 2.5%;
	margin-bottom: 10px;	/*上下、左右へのボックスの外側へ空けるスペース*/
	line-height: 1.5;
	position: relative;
	height: auto;
	margin-right: 0px;
}

.office3060 .photo30 p {
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 88%;
	line-height: 150%;
}


/*box6030ボックス（追加したボックス地図部分）
---------------------------------------------------------------------------*/
/*ボックス全体を囲むulタグへの設定*/
.box6030 {
	padding-bottom: 5px;
	overflow: hidden;
	padding-top: 15px;
	margin-top: 30px;
	border-top: 1px solid #D1D1D1;
}
/*各ボックスの設定*/
.tex60 {
	float: left;	/*左に回り込み*/
	width: 60%;		/*幅*/
	margin-top: 10px;
	margin-right: 2%;
	margin-bottom: 10px;	/*上下、左右へのボックスの外側へ空けるスペース*/
	line-height: 1.5;
	position: relative;
}

.tex60 h5 {
	border-bottom: 5px solid #EDEDED;
}

.img30 {
	float: left;	/*左に回り込み*/
	width: 35%;		/*幅*/
	margin-top: 10px;
	margin-left: 2.5%;
	margin-bottom: 10px;	/*上下、左右へのボックスの外側へ空けるスペース*/
	line-height: 1.5;
	position: relative;
	height: auto;
	margin-right: 0px;
}



/*list50ボックス（追加したボックス左右２個）
---------------------------------------------------------------------------*/
/*ボックス全体を囲むulタグへの設定*/
.list50 {
	padding-bottom: 50px;
	overflow: hidden;
}

.list50 img {
	margin-top: 5px;
}

/*各ボックスの設定*/
.list50 li {
	float: left;	/*左に回り込み*/
	width: 45%;		/*幅*/
	margin: 10px 2.5%;	/*上下、左右へのボックスの外側へ空けるスペース*/
	line-height: 2;
	position: relative;
}


/*ボックス内の画像。※imgタグにclass="img"をつけた場合。*/
.list50 .img {
	height: 100%;			/*高さ*/
	background: #fff;	/*背景色*/
	float: right;		/*回り込み*/
	border-radius: 3px;	/*角丸のサイズ*/
	margin-top: 3px;
}




/*img50_lボックス（追加したボックス左右２個左右のマージンの無いタイプ左）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.img50_l {
	overflow: hidden;
	float: left;	/*左に回り込み*/
	width: 48%;		/*幅*/
	margin-top: 10px;
	margin-right: 2%;
	line-height: 2;
	position: relative;
	clear: left;
}


.img50_l h4 a {
	font-size: 60%;
	text-align: center;
	background-color: #A1A1A1;
	border-radius: 8px;
	color: #FFFFFF;
	text-decoration: none;
	display: block;
}

.img50_l h4 a:hover {
	background-color: #b5b5b5;
	
}

.img50_l p {
	font-size: 100%;
	line-height: 130%;
	margin-top: 10px;
}


/*img50_rボックス（追加したボックス左右２個左右のマージンの無いタイプ右）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.img50_r {
	overflow: hidden;
	float: right;	/*右に回り込み*/
	width: 48%;		/*幅*/
	margin-top: 10px;
	margin-left: 2%;
	line-height: 2;
	position: relative;
}

.img50_r h4 a {
	font-size: 60%;
	text-align: center;
	background-color: #A1A1A1;
	border-radius: 8px;
	color: #FFFFFF;
	text-decoration: none;
	display: block;
}

.img50_r h4 a:hover {
	background-color: #b5b5b5;
	
}

.img50_r p {
	font-size: 100%;
	line-height: 130%;
	margin-top: 10px;
}



/*img50sボックス（追加したボックスセンタータイプ）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.img50s {
	overflow: hidden;
	float: left;	/*左に回り込み*/
	width: 48%;		/*幅*/
	margin-top: 10px;
	margin-right: 1%;
	line-height: 2;
	position: relative;
	margin-left: 1%;
}


.img50s h4 a {
	font-size: 60%;
	text-align: center;
	background-color: #A1A1A1;
	border-radius: 8px;
	color: #FFFFFF;
	text-decoration: none;
	display: block;
}

.img50s h4 a:hover {
	background-color: #b5b5b5;
	
}


.img50s .productsyousai a {
    text-align: center;
    border-radius: 8px;
    color: #424242;
    text-decoration: none;
    display: block;
    border: 1px solid #C9C9C9;
    padding-top: 2px;
    padding-bottom: 2px;
    margin-bottom: 6px;
}

.img50s .productsyousai a:hover {
	background-color: #C7C7C7;
	color: #fff;
}

.img50s p {
	font-size: 100%;
	line-height: 130%;
	margin-top: 10px;
}

/*videoボックス見出し*/
.img50s p strong {
	font-weight: bold;
	color: #533333;
}


/*img50s_lineボックス（追加したボックスセンタータイプ罫線囲みのタイプ）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.img50s_line {
	overflow: hidden;
	float: left;	/*左に回り込み*/
	width: 45.5%;		/*幅*/
	margin-top: 12px;
	margin-right: 1%;
	line-height: 2;
	position: relative;
	margin-left: 1%;
	border-radius: 8px;
	border: 1px solid #FF8535;
	padding-top: 1%;
	padding-right: 1%;
	padding-bottom: 1%;
	padding-left: 1%;
}

.img50s_line2 {
    overflow: hidden;
    float: left;	/*左に回り込み*/
    width: 45.5%;		/*幅*/
    margin-top: 12px;
    margin-right: 1%;
    position: relative;
    margin-left: 1%;
    border-radius: 8px;
    border: 1px solid #FF8535;
    padding-top: 1%;
    padding-right: 1%;
    padding-bottom: 1%;
    padding-left: 1%;
    line-height: 110%;
}

.img50s_line .productsyousai a {
	text-align: center;
	border-radius: 8px;
	color: #424242;
	text-decoration: none;
	display: block;
	border: 1px solid #C9C9C9;
	padding-top: 2px;
	padding-bottom: 2px;
}

.img50s_line2 .productsmov a {
    text-align: center;
    border-radius: 8px;
    color: #424242;
    text-decoration: none;
    display: block;
    border: 1px solid #C9C9C9;
    padding-top: 2px;
    padding-bottom: 2px;
    margin-top: 10px;
    margin-left: 12px;
    margin-right: 12px;
    margin-bottom: 3px;
}

.img50s_line .productsyousai a:hover {
	background-color: #C7C7C7;
	color: #fff;
}

.img50s_line2 .productsmov a:hover {
	background-color: #C7C7C7;
	color: #fff;
}


.img50s_line p {
	font-size: 100%;
	line-height: 130%;
	margin-top: 10px;
}

.img50s_line2 p {
	font-size: 100%;
	line-height: 130%;
	margin-top: 10px;
}

/*罫線囲みの左側のimgの設定*/
.img50s_line img {
	width: 40%;
	float: left;
}

/*罫線囲みの左側のimgの設定*/
.img50s_line2 img {
}

/*罫線囲みの右側のボックスの設定*/
.img_line_right {
	width: 58%;
	float: left;
	margin-left: 2%;
}

/*オンラインカタログよくある質問などのボックス*/
.img100box{
	width: auto;
	clear: left;
}



/*CHECK!マークのところ
---------------------------------------------------------------------------*/

/*一回り小さいp*/
.smallp p{
	font-size: 95%;
	float: left;
	margin-top: 10px;
	width: 100%;
	line-height: 160%;
}


.checkbox img {
	width: 8%;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	float: left;
	margin-top: 0px;
}
.img50_l .checkbox img {
	width: 16%;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	float: left;
}
.img50_r .checkbox img {
	width: 16%;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	float: left;
}

.checkbox p{
	font-size: 90%;
	float: left;
	margin-top: 10px;
	width: 90%;
	line-height: 160%;
}


.img50_l .checkbox p{
	font-size: 90%;
	float: left;
	margin-top: 10px;
	width: 80%;
	line-height: 160%;
}

.img50_r .checkbox p{
	font-size: 90%;
	float: left;
	margin-top: 10px;
	width: 80%;
	line-height: 160%;
}

/*listimgボックス（追加したボックスimgのみ）
---------------------------------------------------------------------------*/

.listimg {
	position: relative;
	overflow: hidden;	/*枠線の幅、線種、色*/
	margin-bottom: 50px;		/*ボックス間の余白*/
	box-shadow: 2px 2px 10px;	/*ボックスの影。右に、下に、広げる幅、0,0,0は黒の事で0.15は透明度15%の事。*/
	-webkit-box-shadow: 2px 2px 10px;
}

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

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

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

/*subコンテンツ内のbox2（追加）
---------------------------------------------------------------------------*/
.sub .box2 {
	overflow: hidden;
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
}



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

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

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

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

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

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

/*ta1設定
---------------------------------------------------------------------------*/
/*ta1テーブル*/
.ta1 {
	width: 100%;
	margin: 0 0 20px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #f6f5f2;	/*背景色*/
	font-size: 18px;	/*文字サイズ*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: left;	/*左よせ*/
	font-weight: normal;
}

/*ta1の左側ボックス1行目*/
.ta1 .aaa {
    width: 55px;	/*幅*/
    text-align: left;	/*左よせ*/
    font-weight: normal;
    background-color: #F5F5F5;
}

/*ta1の左側ボックス2行目*/
.ta1 .bbb {
    width: 35px;	/*幅*/
    text-align: left;	/*左よせ*/
    font-weight: normal;
    background-color: #F5F5F5;
}

.ta1 .ccc {
    width: 90px;	/*幅*/
    text-align: left;	/*左よせ*/
    font-weight: normal;
    background-color: #F5F5F5;
}


/*ta1の営業拠点インデックス*/
.ta1 .areaindex {
    text-align: center;	/*左よせ*/
    font-weight: normal;
    background-color: #ECECEC;
}

/*ta1の営業拠点名称*/
.ta1 .comname0 {
    text-align: left;	/*左よせ*/
    font-weight: normal;
    background-color: #F5F5F5;
}
.ta1 .comname1 {
    width: 20%;	/*幅*/
    text-align: left;	/*左よせ*/
    font-weight: normal;
    background-color: #F5F5F5;
}
.ta1 .comname2 {
    width: 20%;	/*幅*/
    text-align: left;	/*左よせ*/
    font-weight: normal;
}
.ta1 .comshiten {
    text-align: left;	/*左よせ*/
    font-weight: normal;
    background-color: #FFF0DB;
}
.ta1 .comadress {
	width: 35%;	/*幅*/
    text-align: left;	/*左よせ*/
    font-weight: normal;
}
.ta1 .comphone {
	width: 25%;
    text-align: left;	/*左よせ*/
    font-weight: normal;
}

.ta1 .comrecruit {
    background-color: #FFFFCC;
}



/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}
/*labelタグを２列表示にする（CMS用）*/
.ta1.cms td label {
	display: block;
	float: left;
	width: 50%;
}

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

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

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

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

/*ページの上部へボタン「↑」設定
---------------------------------------------------------------------------*/
@keyframes scroll {0% {opacity: 0;}100% {opacity: 1;}}
body .nav-fix-pos-pagetop a {display: none;}
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;
	text-decoration: none;
	text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	z-index: 1;
	position: fixed;
	bottom: 20px;	/*下から20pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	background: #533333;	/*背景色（古いブラウザ用）*/
	background: r#533333;
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
	cursor:pointer;
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #5e4949;	/*背景色*/
}

/*その他
---------------------------------------------------------------------------*/
.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: #024384 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.l {text-align: left !important;}
.w50 {overflow: hidden;width: 50%;}
.fl {float: left;}
img.fl {float: left;width:30%;margin-right: 20px;margin-bottom: 20px;}
.fr {float: right;}
img.fr {float: right;width:30%;margin-left: 20px;margin-bottom: 20px;}
.photo {padding: 10px;background: #fff;border: 5px solid #fff;box-shadow: 2px 4px 5px rgba(0,0,0,0.2);}
.big1 {font-size: 22px;}
.sub .big1 {font-size: 12px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
.date {text-align: right;color: #999;font-size: 11px;}







/*追加した設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

.imgbox1 {
}

.imgbox1 img {
	width: 30%;
	float: left;
}
.imgbox1 p {
	text-align: right;
}

.imgbox2 {
}

.imgbox2 img {
	width: 100%;
	float: left;
}

/*画面幅1000px→（950に変更）以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:950px){


/*list2ボックス（トップページの「現在の求人」で使っている色のついた各ブロック）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/

.list2 li {
	width: 100%;		/*幅*/
	margin: 0 0 10px;	/*上、左右、下へのボックスの外側へ空けるスペース*/
}
.list2 a {
	height: auto;	/*ボックスの高さ*/
	padding: 10px;	/*ボックス内の余白*/
}

/*ボックス内の画像。※imgタグにclass="img"をつけた場合。*/
.list2 .img {
	display: none;
}

.list3 li {
	width: 32%;		/*幅*/
	margin: 10px 0.5%;	/*上下、左右へのボックスの外側へ空けるスペース*/
}

}



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

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

}

/*画面幅801px以上の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media print, screen and (Min-width:801px){

/*上部ロゴ部分
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo {
	width: 1000px;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
}

/*スマホ用ロゴ画像を見せない*/
header #logo2 {
	display: none;
}

.img_line_right h4 {
	font-size: 120%;
	margin-bottom: 10px;
	margin-top: 10px;
	line-height: 120%;
}

}


/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){
	
	#contents {
	padding: 10px 0px;	/*上下、左右へのブロック内の余白*/
}

	
/*PC用のロゴ画像を見せない*/
header #logo {
	display: none;
	margin-bottom: 50px;
	padding-bottom: 50px;
}

/*check!のロゴ*/
.checkbox img {
	width: 16%;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 3px;
	float: left;
	margin-top: 0px;
}
.img50_l .checkbox img {
	width: 32%;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 3px;
	float: left;
}
.img50_r .checkbox img {
	width: 32%;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 3px;
	float: left;
}

/*各ボックスの設定*/
.list50 li {
	float: left;	/*左に回り込み*/
	width: 90%;		/*幅*/
	margin: 10px 5%;	/*上下、左右へのボックスの外側へ空けるスペース*/
	line-height: 2;
	position: relative;
}

/*ビデオボックス他センターそろえの設定*/
.img50s {
	overflow: hidden;
	float: left;	/*左に回り込み*/
	width: 100%;		/*幅*/
}


/*ビデオの左右を合わせる*/
video {
    width: 100%;
    height: auto;
  }

/*追加したバック付きのp50%*/
.bkplusp50 {
	font-size: 100%;
	line-height: 160%;
	background-color: #FFF7C6;
	padding-left: 10px;
	padding-top: 1px;
	width: 97%;
	float: left;
}

/*取扱商品のボックスの設定*/
.img50s_line {
	width: 92%;
	padding-top: 3%;
	padding-right: 3%;
	padding-bottom: 3%;
	padding-left: 3%;
}

/*罫線囲みの左側のimgの設定*/
.img50s_line img {
	width: 30%;
	float: left;
}
	
/*取扱商品のボックスの設定*/
.img50s_line2 {
	width: 92%;
	padding-top: 3%;
	padding-right: 3%;
	padding-bottom: 3%;
	padding-left: 3%;
}

/*罫線囲みの左側のimgの設定*/
.img50s_line2 img {
}

/*罫線囲みの右側のボックスの設定*/
.img_line_right {
	width: 68%;
	float: left;
	margin-left: 2%;
}

.img_line_right h4 {
	font-size: 140%;
	margin-bottom: 10px;
	margin-top: 10px;
	line-height: 120%;
}

/*ロゴ大きく見える）
---------------------------------------------------------------------------*/
header #logo2 {
	width: auto;
	margin-bottom: 20px;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/

@keyframes menu1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

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

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

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

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

/*その他
---------------------------------------------------------------------------*/
body.s-n .sub,body.s-n #footermenu {display: none;}
.big1 {font-size: 20px;}
.w50 {overflow: hidden;width: auto;}
.fl {float: none;}
.fr {float: none;}
	
/*トップページ外部リンクバナー*/
.companylink2 img {
	width: 70%;
}

}



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

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

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


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

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

/*list2ボックス
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list2 li {
	width: 100%;		/*幅*/
	margin: 0 0 10px;	/*上、左右、下へのボックスの外側へ空けるスペース*/
}
.list2 a {
	height: auto;	/*ボックスの高さ*/
	padding: 10px;	/*ボックス内の余白*/
}
/*ボックス内の画像。※imgタグにclass="img"をつけた場合。*/
.list2 .img {
	display: none;
}

/*list2内でspanタグで囲った場合。*/
.list2 span {
	font-size: 20px;/*文字サイズ*/
	right: 20%;		/*右から20%の場所に配置*/
	bottom: 6px;	/*下から6pxの場所に配置*/
}

.list3 li {
	width: 100%;		/*幅*/
	margin: 0 0 10px;	/*上、左右、下へのボックスの外側へ空けるスペース*/
}
.list3 a {
	height: auto;	/*ボックスの高さ*/
	padding: 10px;	/*ボックス内の余白*/
}
/*ボックス内の画像。※imgタグにclass="img"をつけた場合。*/
.list3 .img {
	height: auto;
	width: 94%;
}


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

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
}

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

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

.img_line_right h4 {
	font-size: 120%;
	margin-bottom: 10px;
	margin-top: 10px;
	line-height: 120%;
}

#menubar_hdr {
	display: block;
	position: fixed;z-index: 100;
	top: 5%;		/*上から8pxの場所に配置*/
	right: 5px;	/*右から5pxの場所に配置*/
	border-radius: 50%;	/*円形にする*/
	border: 1px solid #fff;
}
	
/*トップページ外部リンクバナー*/
.companylink2 img {
	width: 45%;
}

}



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

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

}

.boldtext {
	font-size: 105%;
	font-weight: bold;
	color: #533333;
	margin-bottom: 3px;
}
.productsttl {
	width: auto;
}


/* =========================
   Recruit (採用サイト風)
========================= */
.recruit {
  --bg: #0b0f1a;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --card: #ffffff;
  --accent: #d60000;     /* 採用サイトっぽいアクセント */
  --accent2: #ff3b30;
  --shadow: 0 10px 30px rgba(0, 0, 0, .08);

  color: var(--text);
  background: #fafafa;
  font-family: system-ui, -apple-system, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.7;
}

.recruit img {
  max-width: 100%;
  height: auto;
  display: block;
}

.recruit a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: 28px 64px;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 56vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(1200px 500px at 20% 30%, rgba(214,0,0,.25), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.65));
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 40px));
  color: #fff;
  text-align: left;
  padding-block: 54px;
}

.hero__kicker {
  letter-spacing: .12em;
  font-weight: 700;
  opacity: .9;
  margin: 0 0 12px;
}

.hero__title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  margin: 0 0 14px;
}

.hero__lead {
  max-width: 65ch;
  margin: 0 0 22px;
  color: rgba(255,255,255,.92);
}

/* =========================
   SECTION HEAD
========================= */
.section-head {
  margin: 10px 0 18px;
  padding-top: 12px;
}

.section-head__title {
  font-size: clamp(20px, 2.2vw, 28px);
  margin: 0 0 6px;
  position: relative;
  padding-left: 14px;
}

.section-head__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 4px;
  height: 1.2em;
  border-radius: 999px;
  background: var(--accent);
}

.section-head__sub {
  margin: 0;
  color: var(--muted);
}

.section-head--tight {
  margin-top: 28px;
}

/* =========================
   CARD / STAFF
========================= */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.staff {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
}

.staff__media {
  background: #111;
}

.staff__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.staff__body {
  padding: 24px 26px;
}

.staff__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(214,0,0,.08);
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
}

.staff__profile {
  color: var(--muted);
  font-size: 14px;
}

.staff__catch {
  font-size: 16px;
  font-weight: 700;
  margin: 10px 0 18px;
  padding: 12px 14px;
  background: #f9fafb;
  border: 1px solid var(--line);
  border-radius: 12px;
}

/* =========================
   Q&A
========================= */
.qa__item + .qa__item {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}

.qa__q {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.4;
}

.qa__q::before {
  content: "Q";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.qa__a p {
  margin: 0 0 10px;
  color: #111827;
}

.qa__a p:last-child {
  margin-bottom: 0;
}

/* =========================
   NUMBERS
========================= */
.numbers {
  margin-top: 22px;
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.numbers__item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 14px;
  background: #fff;
}

.numbers__label {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.numbers__value {
  margin: 6px 0 0;
  font-size: 15px;
  font-weight: 800;
  color: #111827;
}

/* =========================
   TIMELINE
========================= */
.flow {
  margin-top: 28px;
}

.timeline {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  border-left: 2px solid rgba(214,0,0,.18);
}

.timeline__item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 14px 0 14px 18px;
  position: relative;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(214,0,0,.12);
}

.timeline__time {
  font-weight: 900;
  color: var(--accent);
}

.timeline__title {
  margin: 0 0 6px;
  font-size: 15px;
}

.timeline__text {
  margin: 0;
  color: #374151;
}

/* =========================
   CTA
========================= */
.cta {
  margin-top: 34px;
  background: linear-gradient(135deg, rgba(214,0,0,.12), rgba(255,59,48,.06));
  border: 1px solid rgba(214,0,0,.18);
  border-radius: 18px;
  padding: 22px;
}

.cta__inner {
  display: grid;
  gap: 10px;
}

.cta__title {
  margin: 0;
  font-size: 20px;
}

.cta__text {
  margin: 0;
  color: #374151;
}

.cta__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* =========================
   Buttons
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .05s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  user-select: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(214,0,0,.18);
}

.btn--primary:hover {
  background: #bf0000;
}

.btn--ghost {
  background: rgba(255,255,255,.7);
  border-color: rgba(17,24,39,.15);
}

.btn--ghost:hover {
  background: #fff;
  border-color: rgba(17,24,39,.25);
}

/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
  .staff {
    grid-template-columns: 1fr;
  }
  .staff__media img {
    min-height: 240px;
  }
  .numbers__grid {
    grid-template-columns: 1fr;
  }
  .timeline__item {
    grid-template-columns: 72px 1fr;
  }
}


/* HERO内の文字色を白に固定（青くならないように） */
.recruit .hero,
.recruit .hero * {
  color: #fff;
}

.recruit .hero__lead {
  color: rgba(255, 255, 255, 0.92);
}

/* 念のためリンクも白に固定 */
.recruit .hero a {
  color: #fff;
}

/* 社員カード：写真(上) + 文字(下) の縦レイアウト */
.recruit .staff--stack {
  display: block; /* grid解除 */
}

.recruit .staff--stack .staff__media {
  margin: 0;
  background: #111;
}

.recruit .staff--stack .staff__media img {
  width: 100%;
  height: auto;            /* 高さ固定しない */
  max-height: 360px;       /* 写真がデカすぎないよう上限 */
  object-fit: cover;
}

/* 本文の余白を少し広めにして読みやすく */
.recruit .staff--stack .staff__body {
  padding: 22px 24px;
}

/* 社員カードを強制的に縦積みにする（横並びgridを潰す） */
.recruit .staff.staff--stack {
  display: block !important;
}

/* figureの余計な余白を消す */
.recruit .staff--stack .staff__media {
  margin: 0;
  background: #111;
}

/* 画像は「大きすぎない」＋「トリミングで綺麗に」 */
.recruit .staff--stack .staff__media img {
  width: 100%;
  height: 260px;          /* ←ここで写真の大きさを制御 */
  object-fit: cover;
  display: block;
}

/* 文字領域を読みやすく */
.recruit .staff--stack .staff__body {
  padding: 20px 22px;
}

/* Qの見出しがデカすぎる場合は少し抑える */
.recruit .qa__q {
  font-size: 16px;
  margin: 0 0 10px;
}

/* 文章の行間を整える */
.recruit .qa__a p {
  margin: 0 0 10px;
  color: #111827;
}

.recruit .hero,
.recruit .hero * {
  color: #fff !important;
}

.recruit .hero a {
  color: #fff !important;
}
/* =========================
   Recruit 追い込み上書き（既存テーマCSSに勝つ）
   ※必ずstyle.cssの末尾に置く
========================= */
#contents main.recruit .hero__title,
#contents main.recruit .hero__kicker,
#contents main.recruit .hero__lead,
#contents main.recruit .hero a {
  color: #fff !important;
}

/* 写真上の文字を読みやすく（薄い影） */
#contents main.recruit .hero__inner {
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
}

/* 社員カード：縦積みを強制（gridを完全解除） */
#contents main.recruit .staff.staff--stack {
  display: block !important;
  grid-template-columns: none !important;
}

/* 写真の高さを固定して主張しすぎないように */
#contents main.recruit .staff.staff--stack .staff__media img {
  height: 240px !important;
  max-height: none !important;
  object-fit: cover;
}

/* Qの見出しが青くなるのを抑止 */
#contents main.recruit .qa__q {
  color: #111827 !important;
}
