@charset "utf-8";


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

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

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #444;	/*リンクテキストの色*/
	transition: 0.3s;	/*マウスオン時の移り変わるまでの時間設定。0.3秒。*/
}
a:hover {
	color: #d08047;	/*マウスオン時の文字色*/
}

/*コンテナー（ホームページを囲む一番外側のブロック）
---------------------------------------------------------------------------*/
#container {
	margin: 40px auto 0px;	/*上、左右、下への余白。autoにすると中央に配置されます。*/
	max-width: 1100px;	/*ブロックの最大幅*/
	padding: 0 3%;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*headerブロック*/
header {
	text-align: left;	/*内容を左よせ*/
}


/*トップページのメイン画像
---------------------------------------------------------------------------*/
/*画像ブロック*/
#mainimg img {
	margin-bottom: 40px;	/*下に空けるスペース*/
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニュー全体を囲むブロック*/
#menubar {
	text-align: center;		/*文字をセンタリング*/
	font-size: 18px;		/*文字サイズ*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	border-bottom:2px solid #858585;	
}
/*メニュー１個あたりの設定*/
#menubar li {
	display: inline-block;	/*横並びにする設定*/
}
#menubar li a {
	text-decoration: none;
	padding: 3px 30px;	/*各メニュー内の余白。上下に15px、左右に30pxあけるという意味。*/

}
/*マウスオン時の設定*/
#menubar li a:hover {
	color: #d08047;	/*文字色*/
	border-bottom: 4px solid #d08047;	/*下線の幅、線種、色*/
}

/*コンテンツ（見出しバーや文字などが入っているブロック）
---------------------------------------------------------------------------*/
/*コンテンツのh2タグの設定*/
#contents h2 {
	clear: both;
	margin-top: 20px;
	margin-bottom: 20px;
    padding: 8px 20px;	/*上下、左右への余白*/
	color: #000000;		/*文字色*/
	background: #fff;	/*背景色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
/*コンテンツのh3タグの設定*/
#contents h3 {
	clear: both;
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 8px 20px;	/*上下、左右への余白*/
	background: #fff;	/*背景色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
/*コンテンツのp(段落)タグ設定*/
#contents p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#contents p + p {
	margin-top: -5px;
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -10px;
}
#contents section + section {
	margin-top: 30px;
}

/*Galleryページ
---------------------------------------------------------------------------*/
/*各ブロックごとの設定*/
.list {
	overflow: hidden;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 20px;	/*ボックス内の余白*/
}
/*h4見出しの設定*/
.list h3 {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	margin-top: 10px;
	margin-bottom: 20px;
	color: #444;	/*文字色*/
}
/*画像の設定*/
.list img {
	width: 40%;			/*画像幅*/
	float: left;		/*画像を左に回り込み*/
	margin-right: 3%	/*画像の右側に空けるスペース*/
}
/*段落タグ*/
.list p {
	padding: 0 !important;
}
/*画像、または、Moreボタンの上にカーソルがのった時の設定*/
.list a:hover img,
.list a.btn:hover {
	opacity: 0.7;	/*透明度を70%にする設定*/
}


/*box1（業務内容ボックス）
---------------------------------------------------------------------------*/
/*ボックス*/
.box1 {
	position: relative;
	overflow: hidden;
	float: left;	/*左に回り込み*/
	width: 23%;	/*ボックス幅*/
	margin: 5px;	/*上、右、下、左にとるボックスの外側へのスペース*/
	padding: 5px;	/*ボックス内の余白*/
	height: 280px;	/*ボックスの高さ*/
	border: 1px solid #ccc;	/*線の幅、線種、色*/
	font-size: 15px;	/*文字サイズ*/
	background: #fff;	/*背景色*/
}
/*画像の設定*/
.box1 img {
   object-fit:cover;
}

/*ボックス内のh3見出し*/
.box1 h3 {
	text-align: center;
	margin-top: 10px;
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
}
/*ボックス内のp段落タグ*/
.box1 p {
	padding: 0;
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}
/*ボックス内のボタン（詳細ボタン）*/
.box1 a.btn {
	text-decoration: none;
	padding: 5px 20px;	/*上下、左右へのボックス内の余白*/
	position: absolute;
	right: 10px;	/*ボックスの右から10pxの場所に配置*/
	bottom: 10px;	/*ボックスの下から10pxの場所に配置*/
	font-size: 11px;	/*文字サイズ*/
	background: #707070;	/*背景色*/
	color: #fff;			/*文字色*/
}
/*画像、または、Moreボタンの上にカーソルがのった時の設定*/
.box1 a:hover img,
.box1 a.btn:hover {
	opacity: 0.7;	/*透明度を70%にする設定*/
}
/*box2（幅いっぱいボックス）
---------------------------------------------------------------------------*/
/*ボックス*/
.box2 {
	position: relative;
	overflow: hidden;
	text-align: center;
	float: center;	
	width: auto;	/*ボックス幅*/
	margin: 5px;	/*上、右、下、左にとるボックスの外側へのスペース*/
	padding: 5px;	/*ボックス内の余白*/
	height: auto;	/*ボックスの高さ*/
	border: 1px solid #ccc;	/*線の幅、線種、色*/
	font-size: 15px;	/*文字サイズ*/
	background: #fff;	/*背景色*/
}
/*画像の設定*/
.box2 img {
   text-align: center;
   object-fit:cover;
}

/*ボックス内のh3見出し*/
.box2 h3 {
	text-align: center;
	margin-top: 10px;
	margin-bottom: 30px;
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
}
/*ボックス内のp段落タグ*/
.box2 p {
	padding: 0;
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}
/*ボックス内のボタン（詳細ボタン）*/
.box2 a.btn {
	text-decoration: none;
	padding: 5px 20px;	/*上下、左右へのボックス内の余白*/
	position: absolute;
	right: 10px;	/*ボックスの右から10pxの場所に配置*/
	bottom: 10px;	/*ボックスの下から10pxの場所に配置*/
	font-size: 11px;	/*文字サイズ*/
	background: #707070;	/*背景色*/
	color: #fff;			/*文字色*/
}
/*ボックス内のボタン（詳細ボタン左）*/
.box2 a.btn-l {
	text-decoration: none;
	padding: 5px 20px;	/*上下、左右へのボックス内の余白*/
	position: absolute;
	left: 10px;	/*ボックスの右から10pxの場所に配置*/
	bottom: 10px;	/*ボックスの下から10pxの場所に配置*/
	font-size: 11px;	/*文字サイズ*/
	background: #707070;	/*背景色*/
	color: #fff;			/*文字色*/
}
/*ボックス内のボタン（詳細ボタン右）*/
.box2 a.btn-r {
	text-decoration: none;
	padding: 5px 20px;	/*上下、左右へのボックス内の余白*/
	position: absolute;
	right: 10px;	/*ボックスの右から10pxの場所に配置*/
	bottom: 10px;	/*ボックスの下から10pxの場所に配置*/
	font-size: 11px;	/*文字サイズ*/
	background: #707070;	/*背景色*/
	color: #fff;			/*文字色*/
}
/*ボックス内のボタン（詳細ボタン右）*/
.box2 a.btn-c {
    text-align: center;
	text-decoration: none;
	padding: 5px 20px;	/*上下、左右へのボックス内の余白*/
	position: absolute;
	bottom: 10px;	/*ボックスの下から10pxの場所に配置*/
	font-size: 11px;	/*文字サイズ*/
	background: #707070;	/*背景色*/
	color: #fff;			/*文字色*/
}
/*画像、または、Moreボタンの上にカーソルがのった時の設定*/
.box2 a:hover img,
.box2 a.btn:hover {
	opacity: 0.7;	/*透明度を70%にする設定*/
}
/*box3（一覧ボックス）
---------------------------------------------------------------------------*/
/*ボックス*/
.box3 {
	position: relative;
	overflow: hidden;
	float: left;	/*左に回り込み*/
	text-align: center;
	float: center;	
	width: 195px;	/*ボックス幅*/
	margin: 5px;	/*上、右、下、左にとるボックスの外側へのスペース*/
	padding: 5px;	/*ボックス内の余白*/
	height: auto;	/*ボックスの高さ*/
	border: 1px solid #ccc;	/*線の幅、線種、色*/
	font-size: 12px;	/*文字サイズ*/
	background: #fff;	/*背景色*/
}
/*画像の設定*/
.box3 img {
   text-align: center;
   object-fit:cover;
}

/*ボックス内のh3見出し*/
.box3 h3 {
	text-align: center;
	margin-top: 10px;
	margin-bottom: 30px;
}
/*ボックス内のp段落タグ*/
.box3 p {
	padding: 0;
	font-size: 12px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}
/*ボックス内のボタン（詳細ボタン）*/
.box3 a.btn {
	text-decoration: none;
	padding: 5px 20px;	/*上下、左右へのボックス内の余白*/
	position: absolute;
	right: 10px;	/*ボックスの右から10pxの場所に配置*/
	bottom: 10px;	/*ボックスの下から10pxの場所に配置*/
	font-size: 11px;	/*文字サイズ*/
	background: #707070;	/*背景色*/
	color: #fff;			/*文字色*/
}
/*ボックス内のボタン（詳細ボタン左）*/
.box3 a.btn-l {
	text-decoration: none;
	padding: 5px 20px;	/*上下、左右へのボックス内の余白*/
	position: absolute;
	left: 10px;	/*ボックスの右から10pxの場所に配置*/
	bottom: 10px;	/*ボックスの下から10pxの場所に配置*/
	font-size: 11px;	/*文字サイズ*/
	background: #707070;	/*背景色*/
	color: #fff;			/*文字色*/
}
/*ボックス内のボタン（詳細ボタン右）*/
.box3 a.btn-r {
	text-decoration: none;
	padding: 5px 20px;	/*上下、左右へのボックス内の余白*/
	position: absolute;
	right: 10px;	/*ボックスの右から10pxの場所に配置*/
	bottom: 10px;	/*ボックスの下から10pxの場所に配置*/
	font-size: 11px;	/*文字サイズ*/
	background: #707070;	/*背景色*/
	color: #fff;			/*文字色*/
}
/*ボックス内のボタン（詳細ボタン右）*/
.box3 a.btn-c {
    text-align: center;
	text-decoration: none;
	padding: 5px 20px;	/*上下、左右へのボックス内の余白*/
	position: absolute;
	bottom: 10px;	/*ボックスの下から10pxの場所に配置*/
	font-size: 11px;	/*文字サイズ*/
	background: #707070;	/*背景色*/
	color: #fff;			/*文字色*/
}
/*画像、または、Moreボタンの上にカーソルがのった時の設定*/
.box3 a:hover img,
.box3 a.btn:hover {
	opacity: 0.7;	/*透明度を70%にする設定*/
}

/*メールフォーム
---------------------------------------------------------------------------*/
#formWrap {
	width:700px;
	margin:0 auto;
	color:#555;
	line-height:120%;
	font-size:90%;
}
table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}

/*フッター(ページ最下部のcopyrightのパーツ)設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;	/*文字をセンタリング*/
	padding: 30px 0px 10px;	/*上、左右、下へのボックス内の余白*/
}
footer a {
	text-decoration: none;
	border: none;
}
footer .pr {
	display: block;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0px 20px;	/*上下、左右へのブロック内の余白*/
	margin-bottom: 20px;	/*ブロックの下(外側)に空ける余白*/
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
}

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

/*トップページの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;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #e5e5e5;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.color1 {color: #d08047;}
.pr {font-size: 12px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}

/*メニュー後ろ
---------------------------------------------------------------------------*/
/*メニュー全体を囲むブロック*/
#menubar2 {
	text-align: center;		/*文字をセンタリング*/
	font-size: 12px;		/*文字サイズ*/
	margin-bottom: 5px;	/*下に空けるスペース*/
	border-top:1px solid #858585;
	border-bottom:1px solid #858585;	
}
/*メニュー１個あたりの設定*/
#menubar2 li {
	display: inline;	/*横並びにする設定*/
}
#menubar2 li a {
	text-decoration: none;
	padding: 3px 5px;	/*各メニュー内の余白。上下に15px、左右に30pxあけるという意味。*/

}
/*マウスオン時の設定*/
#menubar2 li a:hover {
	color: #d08047;	/*文字色*/
}

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

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

/*メニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li {
	display: block;	/*縦並びにする設定*/
	margin-bottom: 10px;
}
#menubar li a {
	text-decoration: none;
	padding: 8px 30px;	/*各メニュー内の余白。*/
}

/*Galleryページ
---------------------------------------------------------------------------*/
/*各ブロックごとの設定*/
.list {
	padding: 10px;	/*ボックス内の余白*/
}


/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
/*box1（業務内容ボックス）
---------------------------------------------------------------------------*/
/*ボックス*/
.box1 {
	float: none;	/*左に回り込みをリセット*/
	width: auto;	/*ボックス幅*/
	margin: 0 15px 20px;	/*上、左右、下へのボックスの外側にとるスペース*/
	height: auto;	/*ボックスの高さ*/
}
/*ボックス内のh4見出し*/
.box1 h3 {
	font-size: 12px;	/*文字サイズ*/
	margin-top: 0px;
	margin-bottom: 30px;
}

/*box3（一覧ボックス）
---------------------------------------------------------------------------*/
/*ボックス*/
.box3 {
	float: none;	/*左に回り込みをリセット*/
	width: auto;	/*ボックス幅*/
	margin: 0 15px 20px;	/*上、左右、下へのボックスの外側にとるスペース*/
	height: auto;	/*ボックスの高さ*/
}
/*ボックス内のh4見出し*/
.box3 h3 {
	font-size: 12px;	/*文字サイズ*/
	margin-top: 0px;
	margin-bottom: 30px;
}

/*メールフォーム
---------------------------------------------------------------------------*/
#formWrap {
	width:95%;
	margin:0 auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
input[type="text"], textarea {
	width:80%;
	padding:5px;
	font-size:110%;
	display:block;
}
input[type="submit"], input[type="reset"], input[type="button"] {
	display:block;
	width:100%;
	height:40px;
}

/*メニュー後ろ
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar2 li {
	display: block;	/*縦並びにする設定*/
	margin-bottom: 1px;
}
#menubar2 li a {
	text-decoration: none;
	padding: 8px 30px;	/*各メニュー内の余白。*/
}

}
