@charset "utf-8";
/*
=======================================
	Reset CSS
=======================================
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, main, menu, nav, section, summary,
time, mark, audio, video{
	margin:0;
	padding:0;
}

html{
	-webkit-text-size-adjust: 100%;
}

/*全体の書体指定 -----*/

body{
	color: #000;
	line-height: 1.5;
	font-size: 14px;
	font-family: 'Roboto', sans-serif;
}

/*背景写真の設定*/
img{
	border: 0;
	max-width: 100%;
	height: auto;
}

/*li要素の点を消去*/
ul,ol {
  list-style: none;
}

/* 画像とフォームパーツの上下位置をテキストの真ん中に */
img, input, select, textarea { 
	vertical-align: middle;
}

/* テーブルセルのボーダーの設定 */ 
table {
	border-collapse: collapse; 
	border-spacing: 0;
}

/*a要素の設定*/
a{
	text-decoration: none;
	color: #000;
}

/* a要素のマウスオーバー時の設定 */
a:hover{
	opacity:0.8; /*透明度*/
	filter: alpha(opacity=80);
	-webkit-transition: all 300ms;
    transition: all 300ms; /*スピード*/
    color: #6666;
	text-decoration: underline;
}

/* 画像リンクの設定（マウスオーバー時の透明度の設定） */

a img{
	opacity:1;
	filter: alpha(opacity=100);
}

a:hover img{
	opacity:0.8;
	filter: alpha(opacity=80);
	-webkit-transition: all 200ms;
    transition: all 200ms;
}

/*Fontの読み込み*/
@font-face {
  .wf-mplus1p { font-family: "Mplus 1p"; }
 }
@font-face {
  font-family: 'Roboto', sans-serif;
 }
 
 /*Icon Fonts*/
@font-face {
	font-family: 'icomoon';
	src:url('fonts/icomoon.eot?-2ppakl');
	src:url('fonts/icomoon.eot?#iefix-2ppakl') format('embedded-opentype'),
		url('fonts/icomoon.ttf?-2ppakl') format('truetype'),
		url('fonts/icomoon.woff?-2ppakl') format('woff'),
		url('fonts/icomoon.svg?-2ppakl#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}

/*
=========================================
	Base Layout
=========================================
*/
.container{
	width: 940px;
	margin: 0 auto;
	padding: 0 10px;
}

/*
=========================================
	Modules（Block）
=========================================
*/

/*本文タイトル ----------*/

h2{
	margin-top:60px;
	margin-bottom: 30px;	
	padding:0 12px;
	border-left:#003366 8px solid;
	font-size: 14px;
	font-weight:normal;
	line-height:180%;
	color:#003366;
}

h2 span{
	font-size:80%;
}

h3{
	margin-top: 10px;
	margin-bottom: 10px;	
	padding:0 0;
	font-size: 14px;
	font-weight:normal;
	line-height:180%;
	text-align: center;
	color:#003366;
}

h4{
	margin-top:60px;
	margin-bottom: 20px;	
	padding:0 12px;
	border-left:#003366 8px solid;
	font-size: 20px;
	font-weight:bold;
	line-height:180%;
	color:#003366;
}

/*ヘッダー ----------*/

/*ヘッダー内の位置設定*/
#header{
	padding: 20px 0px;
	height: 55px;
	border-bottom: #003366 1px solid;
}

/*ヘッダー内を仮想テーブル化*/
#header .inner{
	display: table;
}


#top-logo{
	display: table-cell;
	width: 114px;
	text-align: left;
	vertical-align: middle;
}

/*ヘッダー内p要素の書体設定*/
#header-text{
	display: table-cell;
	width: 140px;
	padding-left: 14px;
	font-size: 16px;
	font-weight:bold;
	color: #003366;
	text-align: left;
	vertical-align: middle;
}	

#header-text a:hover{
	opacity:0.8; /*透明度*/
	filter: alpha(opacity=80);
	-webkit-transition: all 300ms;
    transition: all 300ms; /*スピード*/
	text-decoration: none;
}


/*左右方向の中央＝text-align center／天地方向の中央＝vertical-align middle*/
/*要素の横並び 天地センターゾロエはdisplay: table;（仮想テーブル*/）

/*グローバルナビゲーション ----------*/

#gnav{
	margin-bottom:60px;
}

.gnav-inner {
	overflow: hidden;
	margin: 0 auto;
	padding: 0;
	display: flex;
}

.gnav-inner li {
	list-style: none;
	float: left;
	width: 188px;
	border-right: #003366 1px solid;
	border-bottom: #003366 1px solid;
}

.gnav-inner li:first-child{
	width: 187px;
	border-left: #003366 1px solid;
}

.gnav-inner li a {
	display: block;
	height: 30px;
	color: #003366;
	font-size: 12px;
	background: #fff;
	text-align: center;
	line-height:2.8;
	text-decoration: none;
	box-sizing: border-box;
}

.gnav-inner > li:hover > a { /*layer-1*/
	color: #003366;
	background: #fff;
	border-top: #003366 3px solid;
	font-weight: bold;
}

.gnav-inner li ul {
  width: 188px;
  display: none;
  margin-left: 0;
  position: absolute;
  z-index: 1000;　/*これで一番上に表示される*/
}

.gnav-inner > li li:hover > a { /*layer-2*/
	color: #003366;
	background: #efefef;
}

.gnav-inner li ul li{
	border-bottom: 1px solid #003366;
	border-left: 1px solid #003366;
	border-right: #003366 1px solid;
}

.gnav-inner li ul li:first-child{
	width: 188px;
	border-top: 1px solid #003366;
}

.gnav-inner li a.selected {
	background: #003366;
	color: #fff;
	font-weight: bold;
}

/*実績ページヘッダー ----------------*/

#private-header{
	width: 940px;
	height: 90px;
	margin-top: 16px;
}

#private-top-image{
	width: 100%;
	margin-top: 20px;
	margin-bottom: 40px;
}

/*実績コンテンツ ----------*/

#private-contents{
	margin-bottom: 30px;
}

#private-text{
	font-weight: nomal;
}

.contents-inner{
	margin: auto;  /*センターぞろえ */
	margin-top: 30px;
}

.contents-inner td{
	width: 190px;
	height: 190px;
	padding: 20px 1;
	margin: 20px;
	text-align: center;
	vertical-align:middle;
}

.contents-inner p{
	padding: 5px;
}

/* 下部ナビゲーション -----------------*/

.under-nav{
	margin: auto;  /*センターぞろえ */
	margin-top: 30px;
	margin-bottom: 40px;
}

.under-nav td{
	height: 30px;
	margin: 20px;
	text-align: center;
	vertical-align:middle;
	position: relative; /* 相対位置指定 */
}

.under-nav p{ /*矢印アイコンの上に文字を乗せる*/
	width: 100%;
	font-size: 13px;
	font-weight: bold;
	text-align:	center;
	bottom: 5px;
	margin: 0;
	padding: 0;
	position: absolute; /* 絶対位置指定 */
	color: #003366;
}

/*フッター ----------*/
#footer{
	clear:both;
	padding:10px 0;
	border-top: #003366 1px solid;
}

#pankuzu{
	float: left;
	padding-bottom: 20px;
	border-bottom: #000 1px;
}

#flink li{
	display: inline;
}

#flink a{
	font-size: 90%;
	padding-left: 10px;
	background: url(../img/ico_arw01.png) left center no-repeat;
	color: #000;
	text-decoration: none;
}

#flink a:hover{
	color: #6666;
	text-decoration: underline;
}

.copyright{
	float: right;
}

/*ページトップアイコンの設定*/
.pagetop{
	clear: both;
    width: 30px;
    height: 30px;
    bottom: 40px;
    position: fixed;
    right: 40px;
}