﻿@charset "utf-8";

/* ------------------------------------------------------------------ */
/* 1.共通
/* ------------------------------------------------------------------ */

/* ボックスサイズの計算方法を指定 */

*{ box-sizing: border-box; }

/* ------------------------------------------------------------------ */
/* 2.レイアウト
/* ------------------------------------------------------------------ */

/* ボディ */
table      { height:100px;}
body {
  margin: 0;
  padding: 0;
  color: #333;
}
a { color: #b7a077;
}
a:visited { color: #a8a8a8;
}
a:hover {
  color: #988564;
  font-weight: bold;
  text-decoration: none;
}
a:hover img { opacity: 0.7;
}
h1, h2, h3, h4, h5, h6 { margin-top 0;
  line-height: 1.6;
}
p {
  margin-top: 0;
  line-height: 1.6;
}
img { vertical-align: bottom;
}
#main h1 {
  background-image: url(../images/header_bg.jpg);
  padding: 30px 30px 20px;
  font-size: 26px;
  border-bottom:solid 1px #8b7348;
}
#main h2 {
  font-size: 22px;
  border: 1px solid #b7a077;
　padding: 11px 22px;
  border-radius:solid 5px;
}
#main h3 {
  font-size: 18px;
  border-left: solid 3px #b7a077;
　padding: 4px 9px 4px 14px;
}
#score {
  margin-top: 10px;
  width: 980px;
  height: 1500px;  /* スクロール枠の高さ */
  overflow: scroll; /* スクロールバーを表示(※) */
  border: rgb(192,192,192) 2px solid;  /* 枠線 */
  border-radius: 10px 10px;  /* 枠の角丸 */
  padding: 14px;
}
#score2 {
  margin-top: 10px;
  width: 980px;
  height: 550px;  /* スクロール枠の高さ */
  overflow: scroll; /* スクロールバーを表示(※) */
  border: rgb(192,192,192) 2px solid;  /* 枠線 */
  border-radius: 10px 10px;  /* 枠の角丸 */
  background-color: rgb(225,230,240); /* 背景色 */
  padding: 14px;
}







/* ------------------------------------------------------------------ */
/* 3.ヘッダーエリア
/* ------------------------------------------------------------------ */

/* タイトルのスタイル */

header {
  width: 980px;
  margin: 0 auto;
}
header #header_title {
  float: left;
  margin-top: 5px;
  line-height: 0;
}



/* ナビゲーション */

#gNav {
  width: 980px;
  clear: both;
  overflow: hidden;
  margin: 16px auto;
  margin-bottom: 16px;
}
#gNav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#gNav ul li {
  width: 139px;
  float: left;
  margin-left: 1px;
  font-weight:bold;
  font-size: 16px;
  text-align: center;
}
#gNav ul li a {
  display: block;
  padding: 6px;
  background-color: rgb(104,182,13);
  color: #fff;
  text-decoration: none;
}
#gNav ul li.current1 a {
  background-color: rgb(91,156,13);
  color: #fff000
}
#gNav ul li.current2 a {
  background-color: rgb(169,104,13);
  color: #fff;
}
#gNav ul li a:hover {
  background-color: rgb(156,208,91);
}
/* ------------------------------------------------------------------ */
/* 4.コンテンツエリア
/* ------------------------------------------------------------------ */

/* メイン枠を２段組み */

#wrapper {
  width: 980px;
  margin: 0 auto;
  overflow: hidden;
}
#main1 {
  width: 780px;
  float: left;
}
#main {
  width: 780px;
  float: left;
}
#gNav ul {
  margin-top:5px;
}
#sidebar {
  margin-top: 8px;
  width: 190px;
  float: right;
}
#side_inquiry {
  margin-bottom: 30px;
}
#side_banner {
  margin-bottom: 30px;
}
#side_banner h2 {
  background-color: #716961;
  color: #fff;
  margin-right:18px;
  padding: 7px;
  font-size: 18px;
  text-align: center;
}
#main1 p {
  margin-top: 0;
  font-size: 14px;
  margin-bottom: 0;
  text-align: right;
}
#main1 h4 {
  margin-top: 8px;
  height: 36px;  /* メインの見出し枠 */
  border: rgb(40, 120, 5) 2px solid;  /* 枠線 */
  border-radius: 5px 5px;  /* 枠の角丸 */
  background-color: rgb(40, 120, 5); /* 背景色 */
  color: rgb(255,255,255);  /* 文字色 */
  padding: 4px;
  text-align: left;
  margin-bottom: 0;
}
#main1 dl {
  margin-top: 3;
  height:350px;  /* スクロール枠の高さ */
  overflow: scroll; /* スクロールバーを表示(※) */
  border: rgb(0,50,200) 2px solid;  /* 枠線 */
  border-radius: 5px 5px;  /* 枠の角丸 */
  background-color: rgb(255,255,241); /* 背景色 */
  padding: 5px;
}

#main1 dt {
  margin-top: 12px;
  font-size: 16px;
  width: 780px;
  float: left;
  margin-left: 25px;
  color: blue;  /* 文字色 */
  clear: both;
}
#main1 dd {
  margin-top: 8px;
  font-size: 16px;
  margin-left: 60px;
  color:black;  /* 文字色 */
}

#main p {
  margin-top: 0;
  font-size: 14px;
  margin-bottom: 0;
  text-align: right;
}
#main h4 {
  margin-top: 8px;
  height: 36px;  /* メインの見出し枠 */
  border: rgb(0,50,200) 2px solid;  /* 枠線 */
  border-radius: 5px 5px;  /* 枠の角丸 */
  background-color: rgb(0,50,200); /* 背景色 */
  color: rgb(255,255,255);  /* 文字色 */
  padding: 4px;
  text-align: left;
  margin-bottom: 0;
}
#main dl {
  margin-top: 3;
  height:700px;  /* スクロール枠の高さ */
  overflow: scroll; /* スクロールバーを表示(※) */
  border: rgb(0,50,200) 2px solid;  /* 枠線 */
  border-radius: 5px 5px;  /* 枠の角丸 */
  background-color: rgb(255,255,241); /* 背景色 */
  padding: 5px;
}

#main dt {
  margin-top: 12px;
  font-size: 16px;
  width: 780px;
  float: left;
  margin-left: 25px;
  color: blue;  /* 文字色 */
  clear: both;
}
#main dd {
  margin-top: 8px;
  font-size: 16px;
  margin-left: 60px;
  color:black;  /* 文字色 */
}

#kyoten table {
  width: 100%;
  border-collapse: collapser;
  margin-top: 16px;
  margin-bottom: 12px;
  padding: 8px;
}
#kyoten th,
#kyoten td {
  border: 2px solid #c7c7c7;
  padding: 8px;
}
#kyoten thead {
  background-color: #4175f7;
  color: rgb(255,255,255);  
}
#kyoten .chiiki {
  background-color: rgb(204,255,255);
}
#kyoten .city {
  background-color: rgb(255,255,204);
}
#kyoten p {
  text-align: left;
  font-size: 16px;
  padding-left: 80px;
}
#score1 table {
  width: 980px;
  border-collapse: collapser;
  margin-top: 12px;
  margin-bottom: 12px;
  padding: 8px;
}
#score1 th,
#score1 td {
  border: 2px solid #c7c7c7;
  padding: 8px;
}
#score1 thead {
  background-color: #4175f7;
  color: rgb(255,255,255);  
}
#score1 .taikai {
  background-color: rgb(204,255,255);
}
#score1 .taikai1 {
  background-color: rgb(255,255,204);
}
#score1 p {
  text-align: left;
  font-size:12px;
  padding-left: 80px;
}


#sidebar {
  height:540px;  /* サイド枠の高さ */
  border: rgb(0,50,200) 1px solid;  /* 枠線 */
  border-radius: 10px 10px;  /* 枠の角丸 */
  background-color: rgb(238,255,238); /* 背景色 */
  color: rgb(0,50,200);  /* 文字色 */
}
#chara {
  margin-left: 0;
  margin-bottom: 0;
}
#hp {
  margin-top: 5px;
  line-height: 15px;
}
#side_banner {
  margin-top: 30px;
  margin-left: 14px;
  line-height: 5px;
}







/* ------------------------------------------------------------------ */
/* 5.フッターエリア
/* ------------------------------------------------------------------ */

footer {
  width: 980px;
  margin: 0 auto;
  overflow: hidden;
}
footer {
  background-color: #603030;
  text-align: center;
}
footer #fNav {
  background-color: #efefef;
  padding: 8px 0;
}
footer #fnav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer #fNav ul li {
  display: inline;
  border-left: solid 1px #aaa;
  margin-left: 8px;
  padding-left: 8px;
  font-size: smaller;
}
footer #fNav ul li:last-child {
  border-right: solid 1px #aaa;
  padding: 0 8px;
}
footer small {
  display: block;
  padding:8px 0;
  color: #fff;
}

/* パン屑リスト */

#breadcrump ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
#breadcrump ol li {
  display: inline;
}
#breadcrump ol li::after {
  content: ">";
  padding-left: 7px;
}
#breadcrump ol li:last-child::after {
  content: none;
}

