﻿@charset "UTF-8";

/* 一括指定 */
* {
  padding: 0;
  margin: 0;
}

a:link {
  color: #2222ff;
  text-decoration: none;
}

a:visited {
  color: #000000;
  text-decoration: none;
}

a:hover {
  color: #ff0000;
  text-decoration: none;
}

/* ---------------------------------------- フォントスタイル フォントサイズ */
body {
  font-size: 0.85em;
  text-align: center;
  font-family: "メイリオ",ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding: 0;
  margin: 0;
}

/* ---------------------------------------- レイアウト */

#wrapper {
  text-align: left;
  margin: 1em auto 0;
  width: 90%;
  border: 1px solid #cccccc;
}

#header {
  padding: 20px 20px 10px;
  border-bottom: 1px solid #cccccc;
}

#container {
  float: right;
  width: 100%;
  margin-left: -200px;
}

#contents {

  margin-left: 200px;
  padding: 2em 30px 4em 29px;
  border-left: 1px solid #cccccc;

}

#sidebar {
  float: left;
  width: 180px;
  padding: 2em 10px;
}

#footer {
  clear: both;
  padding: 0.5em 0 1em;
  border-top: 1px solid #cccccc;
  text-align: center;
}

/* ---------------------------------------- #header */

/* -- 見出し -- */
h1 {
  text-align: right;
  font-size: 1em;
  font-weight: normal;
}

/* --  サイト名 -- */
.logo {
  text-decoration: none;
  font-size: 1.8em;
  margin-bottom: 0.5em;
  color: #0055ff;
}

/* -- 概要 -- */
.description { }

/* ---------------------------------------- #contents */

/* -- 見出し -- */
h2,h3,h4,h5,h6 {
  font-size: 1.2em;
  margin-bottom: 1.5em;
  padding: 5px 0 5px 5px;
  border-left: 10px solid #000000;
  border-bottom: 1px solid #000000;
}

h3,h4,h5,h6 { margin-top: 2.5em; }

/* -- 本文文字 -- */
#contents p {
  line-height: 1.6em;
  margin-bottom: 0.5em;
}

/* -- パン屑 -- */
#contents .topic-path {
  line-height: 1em;
  margin-bottom: 2em;
}

/* -- リスト関係 -- */
#contents dl { margin: 1em 0; }

#contents dt {
  margin-bottom: 0.5em;
  font-weight: bold;
  border-bottom: 1px dotted #666666;
}

#contents dd { margin-bottom: 2em; }

#contents ul { margin: 1em 0 1em 20px; }
#contents ol { margin: 1em 0 1em 30px; }
#contents li { margin-bottom: 0.5em; }

/* ---------------------------------------- #sidebar */

/* -- カテゴリタイトル -- */
.sidetitle {
  padding: 0.5em 5px;
  background-color: rgba(255, 255, 128, .5);
  border-bottom: 1px solid #777777;
}

/* -- リスト -- */

.localnavi {
  list-style-type: none;
  margin-bottom: 2em;
}



.localnavi li a {
  text-decoration: none;
  display: block;
  width: 170px;
  padding: 0.5em 5px;
  background-color: #eeeeee;
  color: #000000;
  border-bottom: 1px solid #cccccc;
}

.localnavi li a:hover {
  text-decoration: none;
  background-color: #999999;
  color: #000000;
  border-bottom: 1px solid #ff0000;
}

/* -- リスト小項目 -- */

.localnavi li span {
  position:relative;
}
.localnavi li span a {
  text-decoration: none;
  display: block;
  width: 140px;
  float: left;
  display: inline;
  padding: 0.3em 20px;
  background-color: #ffffff;
  color: #000000;
  margen-bottom: 1em;
}

.localnavi li span a:hover {
  text-decoration: none;
  color: #ff0000;
  background-color: #ffffff;

}

/* ---------------------------------------- #拡大 */
#image1 {
  transition: all 400ms 0s ease;
}
#image1.on {
  transform: scale(2.5, 2.5) translate(100px,10px);
}
#image1.off {
  transform: scale(1.0, 1.0) translate(0px, 0px);
}
#image2 {
  transition: all 400ms 0s ease;
}
#image2.on {
  transform: scale(2.5, 2.5) translate(100px,-100px);
}
#image2.off {
  transform: scale(1.0, 1.0) translate(0px, 0px);
}