@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  list-style: none;
}
body {
  background: rgb(100%, 100%, 100%);
  line-height: 1.5em;
  color: rgb(25%, 25%, 25%);
}
img {
  display: block;
}
p {
  line-height: 1.5em;
  margin: 0 0 10px 0;
}
h1 {
  padding: 20px 0;
  color: "#ff0";
}

h2 {
  /*アンダーライン（3px）*/
  border-bottom: 3px solid rgb(20%, 60%, 80%);
  color: rgb(20%, 60%, 80%);
  padding: 0 0 2px 0;
  margin: 0 0 10px 0;
  font-size: 18px;
}

h3/*アンダーライン（2px）*/
 {
  clear: both;
  padding-right: 1em;
  padding-left: 1em;
  font-size: 100%;
  padding-bottom: 0px;
  padding-top: 0px;
  border-bottom: #5f6aff 2px solid;
}

h6/*アンダーライン（3px）*/
 {
  clear: both;
  padding-right: 1em;
  padding-left: 1em;
  font-size: 100%;
  padding-bottom: 0px;
  padding-top: 5px;
  border-bottom: #5f6aff 3px solid;
}

h4/*左右二重線で囲む*/
 {
  position: relative;
  display: inline-block;
  padding: 0 25px;
  margin: 1em;
}

h4:before,
h4:after {
  content: "";
  position: absolute;
  top: 40%;
  display: inline-block;
  width: 15px;
  height: 2px;
  border-top: solid 2px #5f6aff;
  border-bottom: solid 2px #5f6aff;
}

h4:before {
  left: 0;
}
h4:after {
  right: 0;
}

h5/*左に縦棒*/
 {
  padding: 0.1em 0.5em; /*上下 左右の余白*/
  color: #494949; /*文字色*/
  font-size: 100%;
  background: transparent; /*背景透明に*/
  border-left: solid 3px #7db4e6; /*左線*/
}

table {
  border-collapse: collapse; /*一重線にする*/
}

table th {
  /*table内のthに対して*/
  padding: 0px 2px 0px 0px; /*上 0px 右 2px 下 0px 左 0pxずつ*/
}

table td {
  /*table内のtdに対して*/
  padding: 1.5px 1.5px; /*上下1.5pxで左右1.5px*/
}

ol {
  /*●の中に数字*/
  counter-reset: number; /*数字をリセット*/
  list-style-type: none !important; /*数字を一旦消す*/
  padding: 0.5em;
  background: #ffffff;
}
ol li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
}

ol li:before {
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display: inline-block;
  background: #5f6aff;
  color: white;
  font-family: "Avenir", "Arial Black", "Arial", sans-serif;
  font-weight: bold;
  font-size: 12px;
  border-radius: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.table-menu {
  border-collapse: collapse; /*一重線にする*/
}

.table-menu th {
  /*table内のthに対して*/
  padding: 0px 2px 0px 0px; /*上 0px 右 2px 下 0px 左 0pxずつ*/
}

.table-menu td {
  /*table内のtdに対して*/
  padding: 2px 0px; /*上下1.5pxで左右1.5px*/
}
/*
#header{
	background:url(img/bg.png);
}
*/
.box-in {
  /* ヘッダーのサイズ */
  width: 980px;
  margin: 0 auto;
  background: #ffc;
}
/*
#nav{
	width:1200px;
	background:rgb(255, 255, 255);
	padding:3px 0 3px 0;
	margin-left:auto;
	margin-right:auto;
}
#nav ul{
	width:1200px;
	margin:0 auto 0 auto;
}
#nav-sub ul{
	width:1200px;
	margin:0 auto 0 auto;
}
#nav li{
	margin:0 1px 0 0;
	float:left;
	position: relative;
}
#nav li a{
	width:239px;
	background:rgb(0,151,64);
	display:block;
	padding:10px 0 10px 0;
	font-size:16px;
	color:rgb(100%,100%,100%);
	text-align:center;
	text-decoration:none;
}
#nav li a:hover{
	background:rgb(105,49,142);
}
*/
.clear {
  clear: both;
}

#container {
  /* 全体のサイズ */
  width: 980px;
  margin: 20px auto 20px auto;
  height: 700px;
  overflow: auto;
}
#left {
  /* サイドメニューのサイズ */
  width: 220px;
  float: left;
  position: fixed;
}
#right {
  /* バナーのサイズ */
  width: 180px;
  float: right;
}
#main {
  /* 本体がスクロールしない（短い）場合に使用 */
  width: 980px;
  float: center;
  overflow: auto;
}

#main-scroll {
  /* 本体が縦に長くスクロールしてしまう場合に使用 */
  width: 961px;
  float: center;
  overflow: auto;
}

#left ul {
  /* サイドメニュー */
  margin: 0 0 20px 0;
}
#left li a {
  border-bottom: 1px dashed rgb(25%, 25%, 25%);
  color: rgb(25%, 25%, 25%);
  padding: 2px 10px;
  text-decoration: none;
  display: block;
}
#left li a:hover {
  background: rgb(90%, 90%, 90%);
}
#right img {
  /* バナー */
  margin-bottom: 10px;
}

#footer {
  /* フッターの指定 */
  width: 979px;
  background: rgb(105, 49, 142);
  color: #fff;
  padding: 4px 0 0px 0;
  text-align: center;
  font-size: 14px;
  margin-left: auto;
  margin-right: auto;
}

/**
 * menu グローバルメニュー
 */
.menu {
  position: relative;
  height: 30px;
  max-width: 980px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 1px 0;
}

.menu > li {
  margin: 0 1px 0 0;
  float: left;
  width: 244px;
  height: 30px;
  line-height: 30px;
  background: rgb(255, 255, 255);
}

.menu > li a {
  display: block;
  font-size: 16px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: rgb(0, 151, 64);
}

.menu > li a:hover {
  color: #ffffff;
  background: rgb(105, 49, 142);
}

.menu__none:hover,
.menu__multi:hover,
.menu__mega:hover,
.menu__single:hover {
  background: rgb(105, 49, 142);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.menu__second-level li {
  border-top: 1px solid #fff;
}

.menu__third-level li {
  border-top: 1px solid #fff;
}

.menu__second-level li a:hover {
  background: rgb(105, 49, 142);
}

.menu__third-level li a:hover {
  background: rgb(105, 49, 142);
}

.menu__fourth-level li a:hover {
  background: rgb(105, 49, 142);
}

.init-bottom:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0 0 15px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu:before,
.menu:after {
  content: "";
  display: table;
}

.menu:after {
  clear: both;
}

.menu {
  *zoom: 1;
}

/**
 * single menu
 */
.menu > .menu__single {
  position: relative;
}

.menu__single .menu__second-level {
  position: absolute;
  top: 0px;
  width: 100%;
  background: rgb(105, 49, 142);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  visibility: hidden;
  opacity: 0;
}

.menu__single:hover > .menu__second-level {
  top: 30px;
  visibility: visible;
  opacity: 1;
}

a {
  text-decoration: none;
}

a {
  color: #0000ff;
}

.square_btn {
  text-decoration: none;
  font-weight: bold;
  font-size: 37px;
  color: #799dec;
  text-shadow: 0px 4px 2px rgba(0, 0, 0, 0.32), 0px 1px 0px #6182ca,
    0px 2px 0px #4f6aa7, 0px 3px 0px #5470ad;
}
.square_btn:active {
  top: 4px;
  text-shadow: none;
}

td.top {
  vertical-align: top;
} /* テーブル　セル内の上揃え */
td.middle {
  vertical-align: middle;
} /* テーブル　セル内の中央揃え */
td.bottom {
  vertical-align: bottom;
} /* テーブル　セル内の下揃え */

img.top {
  vertical-align: top;
}

.center {
  text-align: center;
}
