@charset "utf-8";

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url(http://fonts.googleapis.com/css?family=Aldrich);


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #666666;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ、フォントファミリー*/
}

h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}




/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #000080;	/*リンクテキストの色*/
}

a:hover {
	color: #000;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}




/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 960px;	/*コンテナー幅*/
	margin-right: auto;
	margin-left: auto;
}




/*ヘッダーh1タグ（サイト名ロゴ）
---------------------------------------------------------------------------*/


.h_tex {
	font: 30px 'Aldrich', sans-serif;
	padding: 10px 0px 10px 20px;
}
.h_tex a {
	color: #000;
	text-decoration: none;
}




/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
header nav ul {
	background-color: #0c97ac;	/*背景色*/
	height: 40px;		/*メニューの高さ*/
	border-radius: 6px;	/*角丸のサイズ*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#24bccb), to(#0c97ac));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#24bccb, #0c97ac);	/*同上*/
	background-image: linear-gradient(#24bccb, #0c97ac);			/*同上*/
	padding-left: 20px;
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
}


/*メニュー１個ごとの設定*/
header nav ul li {
	float: left;
	border-right: 1px solid rgba(255,255,255,0.3);	/*右側の線の幅、線種、色(RGBカラーで255,255,255を30%の透明度で)の設定*/
}


header nav ul li a {
	line-height: 40px;	/*行間*/
	color: #FFF;		/*文字色*/
	text-decoration: none;
	display: block;
	text-align: center;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	padding-right: 20px;
	padding-left: 20px;
}


/*マウスオン時の設定*/
header nav ul li a:hover {
	background-color: #29d4e5;
	color: #FFF;
}


/*１個目のメニューの線の設定*/
header nav ul li:first-child {
	border-left: 1px solid rgba(255,255,255,0.3);
}


/*コンテンツ（main,sub,footerを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	padding-top: 20px;
}


/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: left;	/*左側に回り込み*/
	width: 700px;	/*メインコンテンツ幅*/
}


/*mainコンテンツのsectionの１階層下のh1タグと、company,service2,contact,recruitのarticleのh1タグの設定*/
#main section > h1,
#main article >h1 {
	color: #364e96;/*文字色*//*上下の余白*/
	border-top: solid 3px #364e96;/*上線*/
	border-bottom: solid 3px #364e96;/*下線*/
	font-size: 18px;
	padding: 0.5em 0 0.5em 0;
}


/*mainコンテンツのsectionの１階層下のarticle中のh2タグの設定*/
#main section > h2,
#main article >h2  {
	background-color: #0c97ac;	/*背景色*/
	border-radius: 6px;	/*角丸のサイズ*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#24bccb), to(#0c97ac));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#24bccb, #0c97ac);	/*同上*/
	background-image: linear-gradient(#24bccb, #0c97ac);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
	font-size: 100%;
	color: #FFF;
	clear: both;
	padding: 3px 0px 3px 15px;
	margin-bottom: 5px;
}


/*mainコンテンツのsectionの１階層下のarticle中のh3タグの設定*/
#main article >h3 {
	font-size: 110%;
	color: #000000;
	font-weight: normal;
}


/*mainコンテンツのsectionの１階層下のarticleの設定*/
.contents {
	border-radius: 6px;	/*角丸のサイズ*/	/*グラデーション*/	/*同上*/			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
	clear: both;
	background-color: #fbfbfb;	/*背景色*/
	padding: 3px 0px 3px 15px;
	margin-left: 20px;
	margin-top: 10px;
	margin-bottom: 5px;
}


/*mainコンテンツのバナー写真*/
.banner {
	margin-left: 20px;
	margin-bottom: 5px;
}



/*mainコンテンツのsectionの１階層下のarticle中のdiv_texの設定*/
.tex {
	font-size: 90%;
	padding-left: 15px;
	margin-top: 3px;

}



/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 10px 1em;
}





/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*右側に回り込み*/
	width: 240px;	/*サブコンテンツ幅*/
}
/*subコンテンツ内のh1タグ設定*/
#sub h2 {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px 6px 0 0;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	font-size: 100%;
	text-align: center;
	padding: 5px 0px;
	background-color: #e3e3e3;	/*背景色*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);	/*同上*/
	background-image: linear-gradient(#FFF, #e3e3e3);			/*同上*/
}
/*subコンテンツの段落タグ設定*/
#sub p {
	padding-right: 10px;
	padding-left: 10px;
}

/*サブコンテンツ内のul(関連情報メニュー)タグ
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul {
	margin-bottom: 1em;
}
/*メニュー１個ごとの設定*/
#sub ul li a {
	text-decoration: none;
	display: block;
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	padding-left: 10px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
/*マウスオン時の設定*/
#sub ul li a:hover {
	background-color: #f0f0f0;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 30px;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;
	padding-left: 10px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #d2d2d2;	/*下線の幅、線種、色*/
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}


/*トップページのメイン画像
---------------------------------------------------------------------------*/
figure#mainimg img {
	border-radius: 6px;	/*画像の角を丸くする設定*/
	-webkit-box-shadow: 0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
	margin-bottom: 10px;
}


/*service.html内の製品紹介の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#service #main article {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
	margin-bottom: 1em;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);	/*グラデーション*/
	background-image: linear-gradient(#FFF, #e3e3e3);			/*グラデーション*/
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 1px 1px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 1px 1px #FFF inset;	/*同上*/
}


/*ボックス内の段落タグ設定*/
#service #main article p {
	padding: 0px;
	margin-left: 220px;	/*左の写真とのバランスをとって設定*/
}


/*ボックス内の写真設定*/
#service #main article figure img {
	float: left;	/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;	/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	vertical-align: bottom;
}


/*ボックス内のh1タグ設定*/
#service #main article h1 {
	font-size: 100%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #000;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #000;
	padding: 0px 0px 0px 5px;
}


/*リンク設定*/
#service #main article a {
	padding: 10px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
#service #main article a:hover {
	background-color: #ebdeab;	/*マウスオン時のボックス色*/
}


/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}

/*テーブル内の右側*/
.ta1 td {
	width: 407px;
	padding: 10px;
	font-size: 80%;
}


/*テーブル内の左側のリンク設定*/
.ta1 a {
	text-decoration: none;
}


/*テーブル内の左側の見出し部分*/
.ta1 th {
	width: 250px;
	padding: 10px;
	text-align: left;
	background-color: #f3f3f3;	/*背景色*/
	font-size: 90%;
}

/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #e2e2e2;	/*背景色*/
}

/*テーブルのキャプション設定*/
.ta1 caption{
	padding: 10px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	text-align: left;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);	/*同上*/
	background-image: linear-gradient(#FFF, #e3e3e3);			/*同上*/
	font-weight: bold;
}
/*submitボタンの設定*/
input[type="submit"] {
	width: 200px;	/*ボタン幅*/
	padding: 5px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #e9f7f6;	/*背景色*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);	/*同上*/
	background-image: linear-gradient(#FFF, #e3e3e3);			/*同上*/
	-webkit-box-shadow:  0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
}
/*submitボタンのマウスオン時の設定*/
input[type="submit"]:hover {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#e3e3e3), to(#FFF));
	background-image: -webkit-linear-gradient(#e3e3e3, #FFF);
	background-image: linear-gradient(#e3e3e3, #FFF);
}


/*テーブル2
---------------------------------------------------------------------------*/
.ta2 {
	width: 100%;
}
.ta2, .ta2 td, .ta2 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}

/*テーブル内の右側*/
.ta2 td{
	width: 457px;
	padding: 10px;
}

/*テーブル内の左側の見出し部分*/
.ta2 th{
	width: 200px;
	padding: 10px;
	text-align: center;
	background-color: #f3f3f3;	/*背景色*/
}

/*テーブル１行目に入った見出し部分*/
.ta2 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #e2e2e2;	/*背景色*/
}

/*テーブルのキャプション設定*/
.ta2 caption{
	padding: 10px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	text-align: left;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);	/*同上*/
	background-image: linear-gradient(#FFF, #e3e3e3);			/*同上*/
	font-weight: bold;
}



/*その他
---------------------------------------------------------------------------*/
.look {
	background-color: #dcdcdc;
}

.mb1em {
	margin-bottom: 1em;
}

.clear {
	clear: both;
}

ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}

.color1 {
	color: #000;
}

.pr {
	font-size: 10px;
}

.btn {
	font-size: 13px;
}

.wl {
	width: 96%;
}

.ws {
	width: 50%;
}

.c {
	text-align: center;
}

figcaption {
	font-size: 11px;
}


.color_red {
	color: #FF0000;
}


.color_blue {
	color: #0000FF;
}




/*スケジュール用
---------------------------------------------------------------------------*/

/* -------------------- */
/* ▼各パーツ共通の装飾 */
/* -------------------- */
.schedule {
	margin: 1em 3%;
}
.schedule table {
	margin: 1.5em auto;
	border-collapse: collapse;
	border: 1px solid black;
	max-width: 100%;
}
.schedule table th {
	border: 1px solid black;
	background-color: #ffffcc;
	padding: 0.35em 0.5em;
	line-height: 1.2;
}
.schedule table td {
	border: 1px solid black;
	background-color: white;
	padding: 0.35em 0.5em;
	line-height: 1.2;
}
.schedule caption {
	font-size: 1.2em;
	font-weight: bold;
}

/* --------------------------------------------- */
/* ▼パーツ『1週間の汎用スケジュール』向けの装飾 */
/* --------------------------------------------- */
table.weekly {
	border: 2px solid black;	/* 外枠を太く */
}
table.weekly thead th {
	border-bottom: 3px double black;	/* 下線を二重線に */
	background-color: #ffffaa;			/* 背景を濃く */
}
table.weekly tbody th,
table.weekly tbody td {
	border: 1px solid gray;		/* 枠線を灰色に */
	font-size: 0.95em;			/* 文字を少し小さく */
}

/* --------------------------------------------------- */
/* ▼パーツ『1月間スケジュール(カレンダー)』向けの装飾 */
/* --------------------------------------------------- */
table.monthly {
	margin: 1em auto 2em auto;
}

/* ▼カレンダーのヘッダ部分 */
table.monthly th {
	width: 90px;
	font-size: 0.9em;
	background-color: #ffffcc;
}
table.monthly th.weekdays { color: black; }		/* 月～金の文字色 */
table.monthly th.sunday   { color: red; }		/* 日曜日の文字色 */
table.monthly th.saturday { color: darkblue; }	/* 土曜日の文字色 */

/* ▼カレンダーの本体部分 */
table.monthly td {
	font-size: 0.75em;
	height: 3em;
}
table.monthly td.weekdays { color: black;    background-color: white;   }	/* 平日の装飾 */
table.monthly td.saturday { color: darkblue; background-color: #f0f0ff; }	/* 土曜日の装飾 */
table.monthly td.sunday   { color: red;      background-color: #fff0f0; }	/* 日曜日の装飾 */
table.monthly td.holiday  { color: red;      background-color: #fff0f0; }	/* 祝日の装飾 */
span.holname {
	font-size: xx-small;	/* 祝日の名称 */
	padding-left: 3px;
}

/* ▼モバイル向け装飾 */
@media all and (max-width: 479px) {
	table.monthly th,
	table.monthly td {
		font-size: 0.75em;		/* 文字サイズを小さくする */
		padding: 0.35em 1px;	/* 左右の余白を最小限にする */
	}
}

/* ▼次のカレンダーに進むリンク区画 */
.nextcalendar {
	text-align: right;
	margin: 1em;
	font-size: 0.9em;
}

/* ▼凡例 */
.notice {
	font-size: 0.9em;
	margin: 1em;
	padding: 1em;
	border: 1px solid gray;
	border-radius: 1em;
	background-color: white;
}

/* -------------------------------- */
/* ▼パーツ『長期予定表』向けの装飾 */
/* -------------------------------- */
table.longrange {
	border: 2px solid black;	/* 外枠を太く */
}
table.longrange th {
	color: black;
	background-color: #ffffcc;
	border-bottom: 3px double black;	/* 下線を二重線に */
}
table.longrange td {
	font-size: 0.95em;
	color: black;
	background-color: white;
}
table.longrange th.date {
}
table.longrange th.contents {
	width: 30em;
}

/* ------------------ */
/* ▼フッタ部分の装飾 */
/* ------------------ */

.copyright {
	font-size: 0.8em;
	padding: 0em;
	margin: 0px;

}
