@charset "UTF-8"; /* PublishCharset into mt-config.cgi */

/*
 * File      : styles-site.css
 * Version   : 2.06
 * Update    :
 * 2.00 2005.09.01: Update for Movable Type 3.2.
 * 2.01 2005.09.03: add font-size to content-nav.
 * 2.02 2005.09.27: correct the capital letter to the small letter.
 * 2.03 2005.10.13: add ul and ol type selectors to .entry class selector.
 * 2.04 2005.11.26: fixed typo.
 * 2.05 2006.01.26: comment out the specification of the background image.
 * 2.06 2006.02.26: delete font-weight property from all name selector and add h type selectors
 *                            and brought property for the title together.
 *
 * Copyright (C) 2005-2006 www.koikikukan.com All rights reserved.
 */

/****** 独自追加 ******/
/* テーブル */
table { 
    font-size: 12px;
    color: #36414d;
/*  color: #666666;  文字の色  */
}

/* ナビゲーションバー全体のスタイル */
#navbar {
    text-align: center; /* 配置 */
    font-family: Verdana, Arial, sans-serif; /* フォントスタイル */
    font-weight: normal; /* フォントの太さ */
    font-size: 14px; /* フォントサイズ */
    width: auto; /* 全体の幅 */
    line-height: 200%; /* テキストの高さ */
    border-bottom: 1px solid #444444; /* 下線 */
    background-color: #ddeff5; /* 背景色 */
}

/* リンクのスタイル */
#navbar a{
    background-color: #ddeff5; /* 背景色 */
    color:#666666; /* 文字色 */
    padding: 2px 5px 2px 5px; /* リンク文字のパディング */
}

/* リンクをポイントした時のスタイル */
#navbar a:hover{
    background-color: #9999FF; /* 背景色 */
    color:#ffffff; /* 文字色 */
    text-decoration: none; /* テキストの装飾をなくす */
}
/* ナビゲーションバー終了 */

/* 新着記事にNew! */
span.new {
    color: red;
    font-weight: bold;
    font-size: 9px;
}

/* サイドメニューの折りたたみ */
.sidetitle2 {
    width: auto;
    margin:3px 0px 0px 0px;
    padding: 0px;
    text-align: center; /* テキスト配置 */
}
 
.sidetitle2 a {
    width: auto;
}
 
/* 通常 */
.sidetitle2 a:link,
.sidetitle2 a:visited {
    display: block;
    padding: 2px;
    border: 1px solid #666666; /* 枠線 */
    color:#444444; /* 文字色 */
    background-color:#f6f6f6; /* 背景色 */

   /* border: 1px solid  #666666;
    text-align: center;
    color: #444444;
    background: #f6f6f6; */

    font-family: Verdana, Arial, sans-serif;
    font-size:10px;
    text-decoration: none;
}
 
/* マウスポイント時 */
.sidetitle2 a:hover {
    padding: 2px;
    border: 1px solid #999999; /* 枠線 */
    color:#ffffff; /* 文字色 */
    background-color: #999999; /* 背景色 */
    font-family: Verdana, Arial, sans-serif;
    font-size:10px;
    text-decoration: none;
}

/* 同一行内に左寄せと右寄せを同時に */
div.left {
   text-align: left;
   float: left;
}
div.right {
   text-align: right;
}

/****** 独自追加おわり *****/

/* すべて */
* {
    margin: 0;
    padding: 0;
    font-family: Verdana, Arial, sans-serif;
}

/* 見出し */
h1, h2, h3, h6 {
    font-weight: normal;
}

h4 {
   	font-size: 110%;
   	font-weight: bold;
	margin: 1.5em 0 1em 0;
	padding: 0 0 0 0.5em;
	text-align: left;
	word-break: break-all;
	border-left: solid 5px #00ccff;
}

h5 {
   	font-size: 150%;
   	font-weight: bold;
	margin: 1.5em 0 1em 0;
	padding: 0 0 0 0.5em;
	text-align: left;
	word-break: break-all;
	border-left: solid 12px #0099ff;
}

/* リンク */
a {color: #0000ff;}
a:visited {color:#0000ff;}
A:link {text-decoration:none;}
A:visited {text-decoration:none;}
A:active {text-decoration:none;}
A:hover {color:#ffffff; background:#9999FF;}

/* リンクつき画像 */
a img {
    border: 0;
}

/* 段落 */
p {
    margin-top: 15px;
    margin-bottom: 15px;
}

/* 順序なしリスト */
ul {
    padding-left: 16px;
}

ol {
    padding-left: 35px;
}

ul li {
    list-style-type: circle;
}

/* 定義リスト */
dl {}
dt {}
dd {
    padding-left: 8px;
}

/* フォーム */
form {
    margin: 0px;
}
input {
    padding: 1px;
    font-size: 12px;
}



/* 引用 */
blockquote {
    width: 600px; /* auto; */
    margin: 15px 20px 0 20px;
    padding: 10px;
    border: 1px solid #666666;
    background: #f6f6f6;
    font-size: 13px;
    line-height: 150%;
}
.quotetitle { /* 引用文タイトル */
    font-size: 10px;
    border-bottom: 1px solid #666666;
    padding: 3px;
}

/***************************** タイトルバナー *****/
#banner {
    font-size: 100%;
    color: #444444;
    padding: 15px 10px 5px; /* 文字の位置 */
    background: #FFFFFF url("http://easygoz.net/image/kabe.gif") repeat;
    text-align: left;
    border-bottom: 1px solid #444444;
}

#banner h1 {
    font-family: Verdana, Arial, sans-serif;
    font-size: 32px; /* サイトタイトルの大きさ  */
    font-weight: bold;
    color: #000000;
    padding-bottom: 15px; /* バナーの高さ */
}

#banner a, {
    color: #444444;
    text-decoration: none;
}
#banner a:link, {
    text-decoration: none;
}
#banner a:visited {
    color: #444444;
    font-size: 100%;
    text-decoration: none;
}
#banner a:hover {
    color: #505050;
    background:none;
    text-decoration:underline;
}

#banner a:active {
    text-decoration: none;
}

/* タイトルバナー下の説明 */
#banner h2 {
    color: #ffffff;
    font-size: 12px;
}

/****** エントリー全体 ******/
.blog {
    padding: 10px;
    font-size: 13px;　　/*  本文の文字の大きさ　 */
/*     font-size: small; */
    color: #36414d;　　/*  本文の文字の色　 */
    background: none;
}

/******* エントリー日付　→　カテゴリータイトル ******/
.date { 
    margin: 6px 5px 0;
    padding: 2px 0 2px 5px;
/*    background-position: left; 
    background-repeat: no-repeat;
    background-image: url(".gif");*/
    font-size: 20px;
    font-weight: bold;
}

/* エントリー日付・コメントタイトル・トラックバックタイトルの配色 */
.date,
.trackbacks-header,
.comments-header,
.comments-open-header {
    color: #ffffff;
    background: #8fabbe;
}

/*********************** エントリー ******/
.entry {
    width: auto;
    margin: 0 5px 15px;
    color: #36414d;　/*  本文の文字の色　 */
    background: #ffffff;
/*    background-position: right; 
    background-repeat: repeat-y; 
    background-image: url(".gif");*/
    font-size: 13px;
    line-height:150%;
    word-break: break-all;
}
.entry a:active {}
.entry img {
    margin-right: 8px;
    margin-bottom: 5px;
}

/* エントリーのテキストエリア可変長指定 */
.entry textarea {
    width: 97%;
}

/* 追記 */
.entry.extended {}

/**************** エントリータイトル (h3)  ******/
.entry-header {
    color: #444444;
    font-size: 20px;
    font-weight: bold;
    border-left: solid 12px #0099ff;
    margin: 1.5em 0 1em 0;
    padding: 0 0 0 0.5em;
    word-break: break-all;
}

/* 投稿者 */
.entry-footer {
    margin: 15px 0 0 0;
    border-top: 1px dotted #36414d;
    text-align: right;
    color: #36414d;
    font-size: 9px;
}

/* Typekeyコメンタ－画像 */
.commenter-profile img {
    vertical-align: middle;
    border-width: 0;
}

/* アーカイブページの前後リンク */
.content-nav {
    margin: 10px;
    text-align: center;
    font-size: 12px;
}

/***************** サイドメニュータイトル *****/
.sidetitle {
    margin-top: 10px;
    padding: 1px 0 1px;
    _padding: 1px 0 2px;
    border: 1px solid  #666666;
    text-align: center;
    color: #444444;
    background: #f6f6f6;
    font-size: 12px;
    line-height: 140%;
}

/* サイドメニュー */
.side {
    margin: 1px 0 20px;
    background: none;
    color: #444444;
    font-size: 11px;
    _font-size: 11px;
    line-height: 150%;
  /* border-bottom: 1px solid #444444;
  border-right: 1px solid #444444;
  border-left: 1px solid #444444; */
}

/* サイドメニュー(サブカテゴリー用) */
.side #categories ul {
    padding-left: 16px;
}
.side #categories ul ul {
    padding-left: 10px;
}
.side #categories li {
    list-style-type: circle;
}

/* カウンター */
.counter {
    margin: 8px 0 25px;
    padding: 2px;
    background: none;
    font-size: 9px;
}

/* RSSフィード */
.syndicate {
    margin-top: 15px;
    margin-bottom: 5px;
    text-align: center;
    color: #666666;
    font-size: 9px;
    line-height: 150%;
}

/* クレジットバナー */
.powered {
    margin-top: 30px;
    text-align: left;
    color: #666666;
    font-size: 9px;
    line-height: 150%;
}
.powered img {
    margin-top: 3px;
}

.clear {
    clear: both;
}


/*************************** カラム切り替え */

/* 3カラム用 */
body.layout-three-column,
body.layout-two-column-left,
body.layout-two-column-right,
body.layout-one-column {
    margin-bottom: 20px;
    text-align: center;
    background: #f5f7fb; /* 背景の色 */
}
.layout-three-column #container,
.layout-two-column-left #container,
.layout-two-column-right #container {
    margin-bottom: 10px;
}

/* 3カラム中央部分 */
.layout-three-column #box {
    width: 870px;
    _width: 872px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #666699;
    border-left: 1px solid #666699;
    border-right: 1px solid #666699;
    text-align: left;
    background-color: #ffffff;
}

/******************************* 2カラム用 */
.layout-two-column-left #box,
.layout-two-column-right #box {
    width: 850px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #666699;
    border-left: 1px solid #666699;
    border-right: 1px solid #666699;
    text-align: left;
    background-color: #ffffff;
}

/* 2カラム用 */
.layout-one-column #container {
    margin-bottom: 0;
}

/************************ 1カラム用（検索結果画面） */
.layout-one-column #box {
    width: 850px; /* 478px */
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    padding: 0;
    border-bottom: 1px solid #666699;
    border-left: 1px solid #666699;
    border-right: 1px solid #666699;
    text-align: left;
    background-color: #ffffff;
}

/* 1カラム・リキッドレイアウト用 */
/* タイトルバナー */
.layout-one-column-liquid #banner {
    margin-right: 100px;
    margin-left : 100px;
    border-left: 1px solid #666699;
    border-right: 1px solid #666699;
}
body.layout-one-column-liquid {
    background: #36414d;
}

/* フッタ */
.layout-one-column #footer {
    text-align: center;
}
.layout-one-column-liquid #footer {
    padding-bottom: 15px;
    text-align: center;
}

/* 3カラム(リキッドレイアウト) */
.layout-three-column-liquid #content {
    margin: 0 185px 10px;
    border-bottom: 1px solid #666699;
    border-left: 1px solid #666699;
    border-right: 1px solid #666699;
}
.layout-three-column-liquid #links-left{
    position: absolute;
    width: 155px;
    top: 95px;
    left: 15px;
    color: #ffffff;
}
.layout-three-column-liquid #links-right{
    position: absolute;
    width: 155px;
    top: 95px;
    right: 15px;
    color: #ffffff;
}

/* 2カラム(リキッドレイアウト：右サイドバー) */
.layout-two-column-liquid-right #content {
    margin: 0 185px 10px 0;
    border-bottom: 1px solid #666699;
    border-right: 1px solid #666699;
}
.layout-two-column-liquid-right #links-right {
    position: absolute;
    width: 155px;
    top: 95px;
    right: 15px;
    color: #ffffff;
}

/* 2カラム(リキッドレイアウト：左サイドバー) */
.layout-two-column-liquid-left #content {
    margin: 0 0 10px 185px;
    border-bottom: 1px solid #666699;
    border-left: 1px solid #666699;
}
.layout-two-column-liquid-left #links-left {
    position: absolute;
    width: 155px;
    top: 95px;
    left: 15px;
    color: #ffffff;
}

/* 1カラム(リキッドレイアウト) */
.layout-one-column-liquid #content {
    margin: 0 100px 10px;
    border-bottom: 1px solid #666699;
    border-left: 1px solid #666699;
    border-right: 1px solid #666699;
    background: #ffffff;
}

/* 3カラム */
.layout-three-column #content {
    float: left;
    width: 498px;
    _width: 500px;
    margin: 0 0 10px 0;
    border-bottom: 1px solid #666699;
    border-left: 1px solid #666699;
    border-right: 1px solid #666699;
}
.layout-three-column #links-left-box,
.layout-three-column #links-right-box {
    float: left;
    width: 185px;
}
.layout-three-column #links-left,
.layout-three-column #links-right {
    padding: 15px 15px 0 15px;
    color: #ffffff;
}

/* 2カラム(右サイドバー) */
.layout-two-column-right #content {
    float: left;
    width: 478px;
    margin: 0 0 10px 0;
    border-bottom: 1px solid #666699;
    border-right: 1px solid #666699;
}
.layout-two-column-right #links-right-box {
    float: left;
    width: 185px;
}
.layout-two-column-right #links-right {
    padding: 15px 15px 0;
    color: #ffffff;
}

/******************************** 2カラム(左サイドバー) */
.layout-two-column-left #content {
    float: left;
    width: 650px;
    margin: 0 0 10px 0;
    border-bottom: 1px solid #666699;
    border-left: 1px solid #666699;
}
.layout-two-column-left #links-left-box {
    float: left;
    width: 185px;
}
.layout-two-column-left #links-left {
    padding: 15px 15px 0;
    color: #ffffff;
}

/* 1カラム */
.layout-one-column #content {}

input,textarea {
    font-family: "Osaka", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", arial, sans-serif;
}

/* 終わり */