@charset "utf-8";



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

/*cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("keyframes.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300&display=swap');

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #545454;	/*全体の文字色*/
	font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 18px;		/*文字サイズ*/
	line-height: 2.5;		/*行間*/
	background-image: url("../images/bg03.jpg");
	-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%;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}



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



/*PCのみ表示させたい場合「.pc」のクラスを追加。スマホのみ表示させたい場合「.sp」のクラスを追加。
---------------------------------------------------------------------------------------------------------*/
/*PCの場合*/
.pc	{ display:inline!important; }
.sp	{ display:none!important; }
@media screen and (max-width: 800px) {
/*タブレット、スマホの場合*/
.pc	{ display:none!important; }
.sp { display:inline!important; }
}


/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1400px;	/*最大幅。これ以上広くならない指定。*/
	margin: 0 auto;
}

/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: relative;
	padding: 20px;	/*ヘッダー内の余白*/
}
/*ヘッダーブロック（トップページへの追加設定）*/
.home header {
	padding: 0px;	/*余白をなしに*/
}



/*メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	position: relative;z-index: 10;
	text-align: center;	/*文字を中央に*/
	background: #fff;	/*背景色*/
	border-top: 1px solid #ccc;		/*上の線の幅、線種、色*/
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
	font-family: 'Questrial', sans-serif;	/*冒頭で読み込んだGoogle Fontsを適用する指定*/
	height: 75px;	/*高さ。「#menubar ul li a」や「fixmenu」とも連動するので変更の際は注意。説明はこの下の「#menubar ul li a」で書いています。*/

}
/*メニュー１個あたりの設定*/
#menubar ul li {
	float: left;	/*左に回り込み*/
	width: 20%;		/*幅。今回は５個なので、100÷5=20。*/
	font-size: 18px;	/*文字サイズ*/
	font-weight: bold;
}
#menubar ul li a {
	text-decoration: none;display: block;
	height: 65px;		/*メニューブロックの高さ。ここの「85」と、下の行の「20」を合計した「105」の数字と、上の「#menubar」の「height」および下のfixmenu設定に２箇所ある「margin-top」の数字を合わせて下さい。*/
	padding-top: 10px;	/*メニューブロックの高さプラス、上に空ける余白。メニューテキストの上下の配置バランスをここで調整して下さい。※変更の際は、上の行の注意書きもしっかり読んで下さい。*/
}
/*飾り文字*/
#menubar ul li span {
	display: block;
	font-size: 10px;	/*文字サイズ*/
	color: #FE9A2E;		/*文字色*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
	line-height:0.3em;
}
/*スマホ用メニューを表示させない*/
#menubar-s, #menubar-s2 {display: none;}

/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ドロップダウンメニューの親メニュー*/
#menubar a.cursor-default {
	cursor: default;	/*マウスオーバー時に通常のカーソルになるように*/
	color: #999;		/*文字色*/
}




/*コンテンツ（ヘッダーとフッター以外を囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	overflow: hidden;
	padding: 50px 3%;	/*上下、左右へのブロック内の余白*/
}


/*コンテンツ内にあるh2(見出し)タグの指定*/
#contents h2 {
	clear: both;
	margin-bottom: 30px;
	font-size: 28px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	color: #805D3E;
	line-height: 1.8em;

}

#contents h2 span {
	display: inline-block;
	background: url(../images/line1.png) repeat-x center bottom / auto 2px;	/*下線画像の読み込み。2pxは画像の高さの指定。*/
	padding: 0px 30px;	/*上下、左右への余白。文字の両サイドをここで空ける分だけ、下線が見えます。*/

}
/*コンテンツ内にあるh3(見出し)タグの指定*/
#contents h3 {
	clear: both;
	margin-bottom: 30px;
	font-size: 18px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
}
/*コンテンツ内にあるp(段落)タグ設定*/
#contents p {
	padding: 0px 20px 30px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#contents p + p {
	margin-top: -5px;
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -10px;
}

#contents a.anchor {
    display: block;
    padding-top: 800px;
    margin-top: -800px;
}



#recruit p {
	text-align:center;
	line-height:2em;
}


.acd-label {
	width:100%;
	text-align:center;
}

.acd-label a{
	background:#FA8258;
	color: #fff;
	display:block;
	border-radius:12px;
	position:relative;
	padding:0.2em 0.2em 0.2em 1em;
	margin-bottom:10px;
	cursor:pointer;
	font-size:24px;

}

@media screen and (max-width:600px){
.acd-label a{

	font-size:18px;


}
}


#contact h2 span{
	display: inline-block;
	background: url(../images/line2.png) repeat-x center bottom / auto 2px;	/*下線画像の読み込み。2pxは画像の高さの指定。*/
	padding: 0px 30px;	/*上下、左右への余白。文字の両サイドをここで空ける分だけ、下線が見えます。*/
	color: #fff;
}

#contact p {
	text-align:center;
	line-height:2em;
	color: #fff;
}

#contact a {
	text-decoration: none;

}

#contact .tel a{

	padding-left: 60px;
	background: url(../images/icon-tel.svg) no-repeat left center;
	background-size:40px;

	font-weight:bold;
	font-size:2.5em;
	color: #FBF1BD;
	
}

#contact .fax {
	line-height:0.5em;
	padding-left: 50px;
	font-weight:bold;
	font-size:1.5em;
	color: #FBF1BD;
	
}




/*listブロック
---------------------------------------------------------------------------*/
/*各ブロックごとの設定*/
.list {
	overflow: hidden;
	font-size: 90%;		/*文字サイズ*/
	margin-bottom: 30px;	/*ブロックの下に空けるスペース*/
	border-bottom: 1px dotted #805D3E;	/*各行の下線の幅、線種、色*/

}

/*各ブロックごとの設定（サムネイルタイプへの追加指定）*/
.list.thumb {
	width: 23%;			/*画像幅*/
	margin: 0 1% 20px;
	padding-top: 1%;
	float: left;		/*画像を左に回り込み*/
	text-align: center;
}
/*画像の設定*/
.list img {
	border-radius: 50%;	/*円形にする指定*/
	width: 30%;			/*画像の幅*/
	float: left;		/*画像を左に回り込み*/
	margin-right: 3%;	/*画像の右に空けるスペース*/
	margin-bottom: 14%;	/*画像の下に空けるスペース*/
}

.list .shop {
	float:left; 
	width:60%; 
}

.list .map {
	float:right;
	border:0; 
	width:40%; 
	height:220px;
}



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

.list .shop {
	float:left; 
	width:70%; 
}

.list .map {
	border:0; 
	width:30%; 
	height:180px;
}
}



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

.list .shop {
	float:none; 
	width:100%; 
}

.list .map {
	float:none; 
	border:0; 
	width:100%; 
	height:150px;
}
}


/*画像の設定（サムネイルタイプへの追加指定）*/
.list.thumb img {
	margin: 0;
	float: none;
	width: 60%;		/*画像の幅*/
}
/*マウスオン事*/
.list a:hover img {
	transition: 0.5s;
	opacity: 0.7;	/*透明度。70%色が出た状態。*/
}
/*マウスオン事（サムネイルタイプへの追加指定）*/
.list.thumb a:hover img {
	transform: scale(1.05);	/*ほんの少し画像を大きくする指定*/
}
/*h4タグ*/
.list h4 {
	font-size: 150%;	/*文字サイズ*/
	color: #2F7425;
}
/*h4タグ（サムネイルタイプへの追加指定）*/
.list.thumb h4 {
	font-size: 100%;	/*文字サイズ*/
}
/*p(段落)タグ*/
.list p {
	padding: 0 !important;
	line-height: 1.5em;
	margin-bottom:10px;
	
}



/*option1（productページのブロックの右上に斜めに配置している帯）
---------------------------------------------------------------------------*/
.option1 {
	text-align: center;display: block;
	width: 300px;		/*幅*/
	position: absolute;
	right: 0px;	/*ボックスに対して右から0pxの場所に配置*/
	top: 0px;	/*ボックスに対して上から0pxの場所に配置*/
	transform: rotate(45deg) translate(93px,-45px);	/*45度回転。右へ,下へ(マイナス設定なので上へ向けての指定)の移動距離*/
	background: #869666;	/*背景色*/
	color: #fff;			/*文字色*/
	letter-spacing: 0.1em;	/*文字間隔をほんの少し広くとる*/
	box-shadow: -3px 3px 10px rgba(0,0,0,0.15);	/*ボックスの影。右へ、下へ、ぼかし幅、0.15は色が15%出た状態の事。*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding: 10px;
	font-size: 90%;
}
footer a {text-decoration: none;}
footer a:hover {color: #545454;}
footer .pr {display: block;}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	height: 140px;	/*高さ。内様がこれを超えるとスクロールバーが出ます。*/
	overflow: auto;
	margin-bottom: 20px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
}


/*トップページ内「会社概要」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#ta01 dl {
	margin-bottom: 20px;
}
/*見出し*/
#ta01 dt {
	float: left;
	width: 15%;
	letter-spacing: 0.05em;
}
/*内容*/
#ta01 dd {
	width: 85%;
}





/*box1指定（角丸のボックス）
---------------------------------------------------------------------------*/
.box1 {
	overflow: hidden;position: relative;
	padding: 20px 40px;		/*上下、左右へのボックス内の余白*/
	border-radius: 30px;	/*角丸のサイズ。この１行を削除すると、通常の長方形になります。*/
	margin-bottom: 30px;	/*下に空けるスペース*/
	background: #fff;		/*背景色*/
}
/*bg1タイプの背景色*/
.bg1 {
	background: #F5EDD5;	/*背景色*/
}
/*bg2タイプの背景色*/
.bg2 {
	background: transparent;	/*背景を透明にする*/
	border: 2px dashed #fff;	/*枠線の幅、線種、色*/
}

/*bg3タイプの背景色*/
.bg3 {
	background: transparent;	/*背景を透明にする*/
}

/*bg4タイプの背景色*/
.bg4 {
	background: #6E584A;	/*背景色*/

}




/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border-top: 1px dotted #805D3E;	/*下の線の幅、線種、色*/
	text-align: center;		/*文字をセンタリング*/
	padding: 10px;			/*ボックス内の余白*/
	background: rgba(0,0,0,0.03);	/*背景色。0,0,0は黒の事で0.03は色が3%出た状態の事。*/
}
/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta1 th.tamidashi {
	text-align: center;	/*文字をセンタリング*/
	color:#805D3E;
}
/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 30px;

}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border-bottom: 1px dotted #805D3E;	/*各行の下線の幅、線種、色*/
	padding: 8px;			/*テーブル内の余白*/
	line-height:2em;
}
/*テーブルの左側ボックス*/
.ta1 th {
	text-align: center;	/*センタリング*/
	width: 25%;			/*幅*/
}



/*ta2（求人情報各ページ）*/

.ta2 {
	width: 95%;
	margin: 0 auto 30px;
}

.ta2 td, .ta2 th {
	border-top: 1px dotted #805D3E;	/*下の線の幅、線種、色*/
	line-height: 1.5;
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;

}

/*ta2の上側ボックス*/
.ta2 th {
	background: #;	/*背景色*/
	text-align: left;	/*センタリング*/
	font-weight:bold;
	font-size:85%;
	width:90px;

}

/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta2 th.tamidashi {
	color:#805D3E;
	width:90px;
}

/*ta2 文字左寄せ*/
.ta2 td{
	text-align: left;	/*左よせ*/
	font-size:80%;
	line-height:1.5em;
}


/*ta2 文字右寄せ*/
.ta2 td.right,ta2 th.right {
	text-align: right;	/*右よせ*/

}

/*ta2 文字左寄せ*/
.ta2 td.left,ta2 th.left {
	text-align: left;	/*左よせ*/
}

/*ta2 文字中央寄せ*/
.ta2 td.center,ta2 th.center {
	text-align: center;	/*中央よせ*/
}

/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){
/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta2 th.tamidashi {
	color:#805D3E;
	width:22%;
}


}





/*btn
---------------------------------------------------------------------------*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
	-webkit-appearance: none;
	outline: none;
	border: 1px solid #869666;
	background: #869666;
	color: #fff;
	padding: 10px 30px;
	border-radius: 100px;
	font-size: 16px;
}
input[type="submit"].btn:hover,
input[type="button"].btn:hover,
input[type="reset"].btn:hover {
	background: #fff;
	color: #869666;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
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;position: fixed;animation-name: opa1;animation-duration: 1s;animation-fill-mode: forwards;
	width: 80px;		/*ボタンの幅*/
	line-height: 80px;	/*ボタンの高さ*/
	bottom: 50px;		/*画面の下からの配置場所指定*/
	right: 3%;			/*画面の右からの配置場所指定*/
	background: rgba(255,255,255,0.5);	/*背景色*/
	border: 1px dashed #ccc;			/*枠線の幅、線種、色*/
	border-radius: 50%;	/*円形にする指定。この１行を削除すると正方形になります。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #fff;	/*背景色*/
	border: 1px dashed #b4c19a;			/*枠線の幅、線種、色*/
}

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

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 30px 42px;
}
ol {
	padding: 0 20px 30px 42px;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: rgba(0,0,0,0.1);border: 1px solid #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.mb30 {margin-bottom: 30px;}
.clear {clear: both;}
.color1, .color1 a {color: #869666;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.big1 {font-size: 40px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}



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

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック全体*/
#menubar-s {
	overflow: auto;height: 100%;
	position: fixed;z-index: 100;
	top: 0px;
	width: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	animation-name: frame1;		/*冒頭のkeyframesの名前*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	font-size: 16px;			/*文字サイズ*/
}
#menubar-s li span {
	margin-left: 20px;
	font-size: 80%;
}
/*メニュー１個あたりの設定と、子メニューの見出し。*/
#menubar-s ul li a,#menubar_hdr2 {
	display: block;text-decoration: none;
	padding: 30px 20px 30px 60px;
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;		/*文字色*/
}
/*PC用メニューを非表示にする
#menubar {display: none;}
*/



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



/*ヘッダー（一番上の、ロゴやスライドショーが入っているブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
#menubar #logo img {
	width: 60%;		/*画像の幅*/
	margin-top:10px;
}





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


}




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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;
	font-size: 2.93vw;
}


/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への指定*/
#menubar {
	font-size: 100%;
}
#menubar li a {
	padding: 0px 5px;	/*上下、左右へのメニューの内側にとる余白*/
}

/*listブロック
---------------------------------------------------------------------------*/
/*画像の設定（サムネイルタイプへの追加指定）*/
.list.thumb img {
	width: 90%;		/*画像の幅*/
}

/*box1指定（角丸のボックス）
---------------------------------------------------------------------------*/
.box1 {
	padding: 10px 20px;		/*上下、左右へのボックス内の余白*/
	border-radius: 20px;	/*角丸のサイズ*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

}



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

/*ヘッダー（一番上の、ロゴやスライドショーが入っているブロック）
---------------------------------------------------------------------------*/
/*トップページのロゴ画像への追加指定*/
.home header #logo img {
	width: 30%;	/*画像の幅*/
	left: 10%;	/*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
	top: 3px;	/*ロゴやメニューが入っているブロックに対して、上からの配置場所の指定。*/
}

/*コンテンツ（ヘッダーとフッター以外を囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	padding: 30px 3%;
}
/*コンテンツ内にあるh2(見出し)タグの指定*/
#contents h2 {
	font-size: 16px;		/*文字サイズ*/
}
/*コンテンツ内にあるh3(見出し)タグの指定*/
#contents h3 {
	font-size: 14px;		/*文字サイズ*/
}
/*コンテンツ内にあるp(段落)タグ設定*/
#contents p {
	padding: 0px 10px 30px;	/*上、左右、下への余白*/
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	width: 50px;		/*ボタンの幅*/
	line-height: 50px;	/*ボタンの高さ*/
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	padding: 0 10px 20px 25px;
}
ol {
	padding: 0 10px 20px 25px;
}

/*その他
---------------------------------------------------------------------------*/
.big1 {font-size: 20px;}
.mini1 {font-size: 9px;}
.sh {display:block;}
.pc {display:none;}
.ws,.wl {width: 94%;}
.fl {float: none;}
.fr {float: none;}

}
