/******************************************************************************
  
  Sampler Ver.1 (c)Industrial Algebra Inc.
  $Lastupdate: 2012/11/07 17:32:27 $
  
  ****************************************************************************/
/*-----------------------------------------------------------------------------
  ボックス要素のサイズ指定に枠線を含める
  -------------------------------------------------------------------------- */
* {
  box-sizing:         border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing:    border-box;
  -ms-box-sizing:     border-box;
}
/*-----------------------------------------------------------------------------
  アンカーの色
  -------------------------------------------------------------------------- */
a {
  color: #191970;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
/*============================================================================
  サイト内共通のアウトライン
  ===========================================================================*/
/*-----------------------------------------------------------------------------
  BODY要素
  -------------------------------------------------------------------------- */
body {
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  font-size: 12px;
  line-height: 20px;
  color: #000;
}
/*-----------------------------------------------------------------------------
  ヘッダ (HEADER要素)
  -------------------------------------------------------------------------- */
#site_header {
  width: 100%;
  margin: 0;
  padding: 0;
  height: 64px;
  background-color: #343434;
  background-image: url(../img/gear.png);
  background-repeat: no-repeat;
  background-position: 40px 30px;
  border-bottom: 1px solid #a9a9a9;
}
/*-----------------------------------------------------------------------------
  フッタ (FOOTER要素)
  -------------------------------------------------------------------------- */
#site_footer {
  width: 100%;
  margin: 0;
  padding: 10px 0;
  text-align: center;
  border-top: 1px solid #696969;
  background-color: #343434;
  color: #fff;
}
/*-----------------------------------------------------------------------------
  コンテナ (DIV要素)
  -------------------------------------------------------------------------- */
#site_container {
  width: 900px;
  min-height: 1800px;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  -webkit-box-shadow: 0 0 20px #343434;
  -moz-box-shadow: 0 0 20px #343434;
}
/*============================================================================
  ヘッダ内部
  ===========================================================================*/
/*-----------------------------------------------------------------------------
  ヘッダ内左側のリンク
  -------------------------------------------------------------------------- */
#top_link {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Varela Round';
  width: 50%;
  float: left;
}
#top_link a {
  display: block;
  width: 410px;
  height: 38px;
  margin: 30px 0 0 40px;
  padding: 8px 0 0 80px;
  font-size: 24px;
  font-weight: normal;
  font-variant: small-caps;
  color: #fff;
  text-decoration: none;
}
/*-----------------------------------------------------------------------------
  ヘッダ内右側のリンク
  -------------------------------------------------------------------------- */
#top_tools {
  margin: 0;
  padding: 32px 20px 0 0;
  font-size: 10px;
  text-align: right;
  color: #fff;
  width: 50%;
  float: left;
}
#top_tools a {
  color: #fff;
  text-decoration: none;
}
#top_tools div {
  margin-right: 20px;
  display: inline-block;
}
#top_tools form {
  margin-right: 10px;
  display: inline-block;
}
/*-----------------------------------------------------------------------------
  FLOATの解除 ※fIEが対応したらFLEXBOXに移行予定
  -------------------------------------------------------------------------- */
#site_header_spacer {
  margin: 0;
  padding: 0;
  width: 0;
  height: 0;
  clear: both;
}
/*============================================================================
  フッタ内部
  ===========================================================================*/
#site_footer a {
  color: #fff;
  text-decoration: none;
  font-size: 10px;
}
#site_footer .logo {
}
#site_footer .logo img {
  padding: 0;
  margin: 2px;
  height: 30px;
}
/*============================================================================
  ページ内部
  ===========================================================================*/
/*-----------------------------------------------------------------------------
  内容 (DIV要素)
  -------------------------------------------------------------------------- */
#page_content {
  width: 680px;
  padding: 10px;
  float: left;
}
#page_content h1 {
  margin: 0 0 0 10px;
  padding: 20px 0 15px 15px;
  font-size: 18px;
  font-weight: bold;
  color: #444;
  width: 100%;
  text-shadow: 1px 1px 2px #ddd;
}
#page_content h2 {
  margin: 15px 0 15px 8px;
  padding: 2px 0 0 8px;
  border-left: 12px solid #696969;
  border-bottom: 1px solid #696969;
  font-size: 14px;
  font-wight: bold;
  color: #343434;
}
#page_content h3 {
  margin: 10px 0 8px 12px;
  padding: 2px 0 0 8px;
  border-left: 10px solid #888;
  font-size: 12px;
  line-height: 14px;
  font-wight: bold;
  color: #343434;
}
#page_content h4 {
  margin: 4px 0 4px 12px;
  padding: 0;
  border: none;
  font-size: 12px;
  font-wight: bold;
  color: #343434;
}
#page_content p {
  margin: 5px 0 5px 10px;
  padding: 5px;
}
#page_content ul {
  margin: 5px 0 5px 10px;
  padding: 0 0 0 30px;
  list-style-type: square;
}
#page_content ol {
  margin: 5px 0 5px 10px;
  padding: 0 0 0 30px;
}
#page_content dl {
  margin: 5px 0 5px 10px;
  padding: 0 0 0 10px;
}
#page_content dt {
  margin: 0;
  padding: 0;
  font-weight: bold;
}
#page_content dd {
  margin: 0 0 0 24px;
  padding: 0 0 6px 0;
}
#page_content .signature {
  margin-top: 20px;
  width: 100%;
  text-align: right;
}
#page_content .eof {
  width: 680px;
  height: 10px;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #aaa;
}
/*-----------------------------------------------------------------------------
  サイドバー (DIV要素)
  -------------------------------------------------------------------------- */
#page_sidebar {
  width: 220px;
  margin: 0;
  padding: 0;
  float: left;
}
/*-----------------------------------------------------------------------------
  FLOATの解除 ※IEが対応したらFLEXBOXに移行予定
  -------------------------------------------------------------------------- */
#page_spacer {
  margin: 0;
  padding: 0;
  width: 0;
  height: 0;
  clear: both;
}
/*-----------------------------------------------------------------------------
  フォーム
  -------------------------------------------------------------------------- */
#page_content form {
}
#page_content form ul {
}
#page_content form ul label {
  display: block;
}
/*=============================================================================
  アコーディオン効果のタブ型ナビゲーション
  ===========================================================================*/
nav a {
  color: #000;
  text-decoration: none;
  font-size: 12px;
  padding-left: 10px;
}
nav a:hover {
  text-decoration: none;
}
.accordion {
  width: 100%;
  margin: 0;
  padding: 40px 20px 10px 20px;
}
.accordion h2 {
  margin: 0;
  padding: 2px 0 0 20px;
  font-size: 12px;
  font-weight: normal;
  cursor: pointer;
  margin-top: -1px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background-image: url(../img/collapsed.png);
  background-repeat: no-repeat;
  background-position: 5px 6px;
  background-color: #c5c5c5;
  border: 1px solid #a9a9a9;
}
.accordion h2.current {
  cursor: default;
  color: #fff;
  border: 1px solid #343434;
  background-color: #343434;
  background-image: url(../img/expanded.png);
}
.accordion .pane {
  display:none;
  height:180px;
  margin: 0;
  margin-top: -1px;
  padding: 6px;
  font-size:12px;
  background-color: #e8e8e8;
  border: 1px solid #c5c5c5;
  border-radius:3px;
  -moz-border-radius:3px;
  -webkit-border-radius:3px;
}
.accordion .pane h3 {
  margin: 5px 0 0 0;
  padding: 0;
  font-weight: bold;
  font-size: 12px;
}
.accordion ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.accordion ul li {
  margin: 0;
  padding: 2px 0 0 0;
  border-bottom: 1px solid #a7a7a7;
}
/*=============================================================================
  各種情報枠
  ===========================================================================*/
.information {
  width: 180px;
  margin: 10px 20px;
  padding: 0 0 5px 0;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background-color: #f0f0f0;
  border: 1px solid #c5c5c5;
}
.information h3 {
  margin: 0;
  padding: 0 10px;
  font-size: 12px;
  font-wight: bold;
  border-bottom: 1px solid #b4b4b4;
}
.information h4 {
  margin: 0;
  padding: 4px 0 0 5px;
  font-size: 10px;
  font-wight: bold;
}
.information dl {
  margin: 0;
  padding: 4px 0 0 0;
  font-size: 10px;
  line-height: 12px;
}
.information dl dt {
  margin: 0 0 0 5px;
  padding: 0;
  width: 80px;
  display: inline-block;
  vertical-align: top;
}
.information dl dd {
  margin: 0;
  padding: 0 0 0 5px;
  width: 85px;
  display: inline-block;
  vertical-align: top;
}
.terris_note {
  width: 180px;
  margin: 10px 20px;
  padding: 5px;
  text-align: right;
  font-size: 10px;
  line-height: 12px;
}
/*****************************************************************************/
