@charset "utf-8";


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
/*トップページの背景画像*/
body#top {
	background: #fff url(../images/Top-1.jpg) no-repeat right top/60%;	/*背景色、背景画像の読み込み、リピートしない、右上に配置、画面に対して60%のサイズで表示*/
}
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: #333;	/*リンクテキストの色*/
}
a:hover {
	color: #87ceeb;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。*/
}

/*ヘッダー（サイトロゴとメニューが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;
	background: #000080;
	position: fixed;		/*画面上部に固定表示させる設定。*/
	height: 50px;
	-webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.4);	/*影の設定。右・下・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定で最後の小数点が透明度。*/
	box-shadow: 0px 0px 6px rgba(0,0,0,0.4);			/*同上*/
    z-index: 100;
}
/*ロゴ画像の設定*/
header #logo {
	width: 130px;	/*ブロック幅*/
	float: left;	/*左に回りこみ*/
	padding: 10px;	/*ロゴブロック内の余白*/
	background: #87ceeb;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#87ceeb), to(#0066ff));	/*グラデーション*/
	background: -webkit-linear-gradient(#87ceeb, #0066ff);	/*同上*/
	background: linear-gradient(#87ceeb, #0066ff);			/*同上*/
	-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.2);	/*影の設定。右・下・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定で最後の小数点が透明度。*/
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);			/*同上*/
}

/*inner
---------------------------------------------------------------------------*/
.inner {
	max-width: 980px;	/*幅*/
	margin: 0 auto;
}

/*ドロップダウンメニュー用
---------------------------------------------------------------------------*/
/* -------------------- */
/* ▼メニューバーの装飾 */
/* -------------------- */
ul.ddmenu {
   margin: 0px;               /* メニューバー外側の余白(ゼロ) */
   padding: 0px 0px 0px 15px; /* メニューバー内側の余白(左に15px) */
   background-color: #000080; /* バーの背景色(濃い青色) */
}

/* -------------------------- */
/* ▼メインメニュー項目の装飾 */
/* -------------------------- */
ul.ddmenu li {
   width: 125px;          /* メニュー項目の横幅(125px) */
   display: inline-block; /* 横並びに配置する */
   list-style-type: none; /* リストの先頭記号を消す */
   position: relative;    /* サブメニュー表示の基準位置にする */
}
ul.ddmenu a {
   background-color: #000080; /* メニュー項目の背景色 */
   color: white;              /* メニュー項目の文字色 */
   line-height: 40px;         /* メニュー項目のリンクの高さ */
   text-align: center;        /* 中央寄せ */
   text-decoration: none;     /* 下線を消す */
   font-weight: bold;         /* 太字にする */
   display: block;            /* 項目内全域をリンク可能にする */
}
ul.ddmenu a:hover {
   background-color: #ccffff; /* メニュー項目にマウスが載ったときの背景色 */
   color: #00008b;            /* メニュー項目にマウスが載ったときの文字色 */
}

/* ---------------------------------- */
/* ▼サブメニューがある場合に開く処理 */   /* ※サブメニューが1階層しか存在しない場合の記述 */
/* ---------------------------------- */
ul.ddmenu li:hover ul {
   display: block;      /* マウスポインタが載っている項目の内部にあるリストを表示する */
}

/* -------------------- */
/* ▼サブメニューの装飾 */
/* -------------------- */
ul.ddmenu ul {
   margin: 0px;         /* サブメニュー外側の余白 */
   padding: 0px;        /* サブメニュー内側の余白 */
   display: none;       /* 標準では非表示にする */
   position: absolute;  /* 絶対配置にする */
}

/* ------------------------ */
/* ▼サブメニュー項目の装飾 */
/* ------------------------ */
ul.ddmenu ul li {
   width: 135px;               /* サブメニュー1項目の横幅 */
   border-top: 1px solid pink; /* 項目上側の枠線 */
}
ul.ddmenu ul li a {
   line-height: 35px;     /* サブメニュー1項目の高さ */
   text-align: left;      /* 左寄せ */
   padding-left: 5px;     /* 文字列前方の余白 */
   font-weight: normal;   /* 太字にはしない */
}
ul.ddmenu ul li a:hover {
   background-color: #ff9900; /* サブメニュー項目にマウスが載ったときの背景色 */
   color: #005500;            /* サブメニュー項目にマウスが載ったときの文字色 */
}


/*contents
---------------------------------------------------------------------------*/
.contents {
	clear: both;
	width: auto;
	padding: 50px 0px;
}

/*SERVICEページの各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.contents section.list {
	position: relative;
	overflow: hidden;
	background: #f6f4f0;	/*背景色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	margin-bottom: 15px;	/*ボックス同士にとるスペース*/
}
.contents section.list a {
	text-decoration: none;
	display: block;
	overflow: hidden;
	padding: 15px;	/*ボックス内の余白*/
}
/*マウスオン時のボックス*/
.contents section.list a:hover {
	background: #fff;	/*背景色*/
}
/*ボックス内の段落タグ設定*/
.contents section.list p {
	padding: 0px;
	margin-left: 24%;	/*左側の写真幅とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
.contents section.list figure img {
	float: left;	/*画像を左へ回り込み*/
	width: 20%;		/*写真の幅*/
	padding: 0.5%;			/*余白*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	background: #fff;	/*背景色。写真と写真の枠線との間に出る色。*/
	margin-right: 3%;
}
/*ボックス内のh4タグ設定*/
.contents section.list h4 {
	margin-left: 24%;	/*左側の写真幅とのバランスをとって設定*/
	font-size: 18px !important;
	margin-bottom: 10px;
	border-bottom: 1px solid #CCC;	/*下枠線の幅、線種、色*/
}
/*一覧ページの各製品ボックス内のテーブル（CMS用）
---------------------------------------------------------------------------*/
.contents section.list table {
	font-size: 12px;	/*文字サイズ*/
	background: #FFF;	/*背景色*/
	width: 75%;
	margin-bottom: 5px;
}
.contents section.list table,
.contents section.list table td,
.contents section.list table th{
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
}
.contents section.list table td,
.contents section.list table th{
	padding: 1%;	/*テーブル内の余白*/
}
/*見出しブロック*/
.contents section.list table th{
	width: 18%;		/*幅*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: normal;	/*デフォルトの太字を標準にする設定*/
	background: #dfe0c8;	/*背景色*/
}
/*説明ブロック*/
.contents section.list table td {
	width: 31%;	/*幅*/
}

/*main
---------------------------------------------------------------------------*/
.main {
	float: right;	/*右に回りこみ*/
	width: 700px;	/*メインコンテンツ幅*/
	width: 73%;	/*メインコンテンツ幅*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	background: #222;	/*背景色*/
	color: #fff;		/*文字色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none !important;
	color: #fff;
}


/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	max-width: 980px;
	margin: 0 auto;
	padding-top: 40px;
}
#pagetop a {
	color: #FFF;
	font-size: 20px;	/*文字サイズ*/
	padding: 0px 30px;
	background: #000;	/*背景色*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	border-radius: 4px 4px 0px 0px;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #666;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*トップページで使っている大きな文字
---------------------------------------------------------------------------*/
h1.type1 {
	font-size: 42px;
}
h1.type2 {
	font-size: 80px;
	line-height: 1.2;
	letter-spacing: 0.1em;
	margin-bottom: 30px;
	padding-left: 15px;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #000;border-radius: 4px;color: #fff;padding: 5px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {font-size: 42px;}
.color2 {color: #000080;padding-left: 60px;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.bg1 {background: #ebe7e0;overflow: hidden;}
.pt150 {padding-top: 150px !important;}

