@charset "utf-8";

/*====================== 　共通　　=========================*/
/*----------------- リンクの基本色を決める ---------------*/
a { color:black}                  /*文字の色          */
a:visited { color:black; }        /*訪問済みの色を指定。*/
a:hover {       /*マウスポイインタを乗せた時の色を決める   */
    color: #ff00ff;
    font-weight: bold;
    text-decoration: none;
}
a:hover img { opacity: 0.7;}     /*イメージを半透明にする*/

/*イメージのした余白を０にする*/
img {
    vertical-align: bottom;
}
/*
h2{
	color:#6fbb9a;
	border:#94c8b1 1px dotted;
	border-left:#d0e35b 10px solid;
	padding:1px 2px;
	margin-bottom:0;
}
*/

html * {
    box-sizing: :border-box;
}
/*
body{
    margin: 0;
    font-family: sans-serif;
    font-size: 16px;
}
*/
/*====================header======================*/
/*ヘッダーの幅・色・余白を決める*/
header{
    width: 1100px;
    margin: 0 auto; /*上下を０、左右をauto（中央揃え）*/
    background-color:white; /* ヘッダー部分のバック色*/
    /*border: 01px solid #c0c0c0;
    border-radius: 0px;
    box-shadow: 0px 3px 10px 2px rgba(0,0,0,3);*/
}
/* ロゴの状態・余白*/
header h1 {
    float: left;
    margin: 5px 20px 5px; /*TOP::5px　 LEFT::10px   BUTTOM::5px*/
}
/* 問い合わせボタン*/
header #header_contact {
    float: right;
    margin: 55px 50px 5px 20px; /*上右下左*/
}
/*==================== ナビゲーションボタン ==========================*/
#global_navi {
    width: 1100px;
    margin: 12px auto; /*上下のばらんすを調整          */
    clear: both;       /*フロートを解除し、ロゴの下に配置*/
    overflow: hidden;  /*高さがなくなる現象を防ぐ       */
    padding: 10px 10px 10px 10px;
}
#global_navi ul{
    list-style:none;
    margin: 0;
    padding: 0;
}
/*リストを横並びにする*/
#global_navi ul li {
    width: 150px;
    float: left;
    margin-right: 2px;
    text-align: center;
}
#global_navi ul li a{
     font-size:14px;
   display: block;
    padding: 8px;
    background-color:blue;
    color: #fff;
    text-decoration: none;
}
#global_navi ul li.current a{
    background-color: #b7a077;
}
#global_navi ul li a:hover {
    background-color:black;
}

/*==========================パンくずリスト===============================*/
#breadcrumb { 
    font-size: smaller; 　　/*文字を小さくする*/
}
#breadcrumb ol li { display: inline; }
#breadcrumb ol li::after {
    content: ">";
    padding-left: 7px;
}
#breadcrumb ol li:last-child::after { content: none; } /*最後の＞を消す*/
#breadcrumb ol {                   
    list-style: none;
}

/* =======================  メイン ==================================*/
/*
#overview{
    margin: 0 auto;
    width: 1100px;    
    background:#ffffff;    
    border: 0px solid #c0c0c0;
    border-radius: 0px;
    box-shadow: 0px 3px 10px 2px rgba(0,0,0,3);
    padding: 0 0 40px 0;
	overflow: hidden;
}*/
#wrapper{
    margin: 0 auto;
    width: 1100px;
    background:#ffffff;    
    /*
    border: 0px solid #c0c0c0;
    border-radius: 0px;
    box-shadow: 0px 3px 10px 2px rgba(0,0,0,3);*/
    padding: 0 0 40px 0;
	overflow: hidden;
}

/* メイン見出し*/
#main h1{
    border:3px #00ff00;
	background-color:#00ff00;
	border-radius: 5px;
    margin: 5px;
}

#mainimg
{
    padding-left: 10px;
}

/* システムの構成　*/
.ActualData{
	overflow: hidden;
}

h1{
	font-size: 20px;
}

.camera {
	float: left;
	margin-right: 10px;
	padding: 10px;
	width: 880px;
	background: #79c53e;
	border-radius: 10px;
}

#main{
    width: 1100px;
    float: left;
}

/*=======================サイドバー=========================*/
#sidebar {
	overflow: hidden;
    width: 150px;
    float: right;
    padding: 0 0 0 0;
}

#side_banner
{
	font-size: 15px;
}

#side_banner ul 
{
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #98adb7;
    border-radius: 2px;
    background: #e7e7e7;
}

#side_banner li
{
    border-bottom: 1px solid #98adb7;
}

#side_banner li:last-child
{
    border-bottom: none;
}

#side_banner li:hover
{
    background: #c4d2dd;
}

#side_banner a
{
    display: block;
    padding: 5px 3px;
    text-decoration: none;
    color: #406485;
}


#struct p
{
    font-size: 14px;
    padding-top:  1px;
    margin: 0;
}
#SysStruct{
    border:3px #00ff00;
	background-color:#00ff00;
	border-radius: 5px;
    margin: 5px;
}



/*================================フッター==================================*/
footer{
    background-color: #352b23;
    text-align: center;
}
footer small {
    display: black;
    padding: 8px 0;
    color: #fff;
}

.footer-nav  {
    background-color: #efefef;
    padding: 20px;
    border-radius: 0 0 0px 0px;
}

.footer-nav ul {
    outline-style: none;
    margin: 0;
    padding: 0;
}
.footer-nav li{
    display: inline; 
    border-left-style: solid 1px #aaa;
    margin-left: 8px;
    padding-left: 9px;
    font-size: smaller;
}
.footer-nav li:last-child {
    border-right: solid 1px #aaa;
    padding: 0,80h;
}
