@charset "EUC-JP";

/* -------------------------------------------------------------

[1] レイアウトに関する指定
[2] ヘッダーブロック内に関する指定
[3] コンテンツブロック内に関する指定
[4] サイドバーブロック内に関する指定
[5] フッターブロック内に関する指定
[6] CSSデザインサンプルリンク指定

----------------------------------------------------------------
CSSデザインサンプ [ URL ] http://www.css-designsample.com
------------------------------------------------------------- */


/* 一括で全ての要素の余白をゼロに指定 */
* {
  margin: 0px;
  padding: 0px;
}

/* 全体的なリンク */

a:link,
a:visited,
a:hover,
a:active { text-decoration: underline; }
a:link { color: #00f; }
a:visited { color: #90f; }
a:hover { color: #f00; }
a:active { color: #f00; }

/* hover */

.alpha a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

/* トップページ */

h2 a:link{background-color:#FFFFFF; color:#003198; text-decoration:none;}
h2 a:visited{background-color:#FFFFFF; color:#003198; text-decoration:none;}
h2 a:hover{background-color:#003198; color:#FFFFFF; text-decoration:none;}


/* -------------------------------------------------------------
   [1] レイアウトに関する指定 */

body {
  font-size: 80%;
  text-align: center;
  /*font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
  font-family:'Lucida Grande','Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3',Meiryo, メイリオ, sans-serif;
  padding:0;
  margin: 0;
  background: url(../img/bg-body.gif) repeat-x 0 40px;
  line-height:1.5;
}

/*-- 全体を囲んでいます --*/
#wrapper {
  text-align: left;
  margin: 0 auto 0;
  padding: 20px 10px 0;
  width: 736px;
}

#header {
  height: 170px;
  margin-bottom:20px;
}

#container {
  width: 100%;
  padding-top: 2em;
  position: relative;
}

#globalnavi {
  text-align: center;
  width: 700px;
  height: 2em;
  position: absolute;
  top: 0;
  left: 0;
}

#contents-top {
	overflow: hidden;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}

.contents-top-left,
.contents-top-center,
.contents-top-right {
  width: 230px;
  float: left;
  border: 1px solid #666;
  padding:5px;
  height:180px;

}

.contents-top-left,
.contents-top-center {
	margin-right: 5px;
	height: 180px;
}

#contents {
	width: 480px;
	float: right;
	margin-bottom: 60px;
}

#sidebar {
	width: 206px;
	float: left;
	margin-bottom: 30px;
}

#footer {
  clear: both;
  padding: 1em 0 2.5em;
  background-color: #cccccc;
}

/* -------------------------------------------------------------
   [2] ヘッダーブロック内に関する指定 */

/* 見出し */
h1 {
  font-size: 100%;
  font-weight: normal;
  text-align: left;
}

/* サイトタイトル */
#header .logo {
  font-size: 150%;
  font-weight: normal;
  line-height: 1em;
}

.logo a {
  text-decoration: none;
  color: #000;
}

.logo a:hover {
  text-decoration: none;
  color: #f00;
}

#header p {
  margin-bottom: 0.5em;
  line-height: 1.2em;
}

#globalnavi ul {
  list-style-type: none;
  width: 100%;
}

#globalnavi li {
  width: 140px;
  float: left;
  border-bottom: 1px solid #ccc;
}

#globalnavi li a {
  text-decoration: none;
  text-align: center;
  padding: 0.5em 0;
  width: 100%;
  display: block;
  background: url(../img/bg-globalnavi.jpg) no-repeat 0 50%;
  color: #000;
}

#globalnavi li a:hover {
  text-decoration: none;
  color: #f00;
  background: url(../img/bg-globalnavi.jpg) no-repeat -140px 50%;
}

/* -------------------------------------------------------------
   [3] コンテンツブロック内に関する指定 */

/*-- 見出し --*/
h2,h3,h4,h5,h6 {
  font-size: 100%;
  margin-bottom: 1em;
  padding: 0.5em 10px;
  border-top: 1px solid #cccccc;
  border-right: 1px solid #666666;
  border-bottom: 1px solid #666666;
  border-left: 1px solid #cccccc;
}

#contents-top h2,
#contents-top h3,
#contents-top h4,
#contents-top h5,
#contents-top h6 {
	color:#003198;
	border-bottom-width: 3px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color: #003198;
	text-align: center;
}

#contents-top h2.special{
	color:#ce5a5a;
	border-bottom-width: 3px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color: #ce5a5a;
	text-align: center;
}


/*-- 文字 ---*/
#contents p {
  margin-bottom: 1em;
}

/*-- 更新情報部分 ---*/
.information {
	height: 300px;
	margin-bottom: 30px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	overflow-x: hidden;
	overflow-y: scroll;
	padding-top: 10px;
	padding-right: 15px;
	padding-bottom: 10px;
	padding-left: 5px;
	width: 460px;
}

.information dt {
  margin-bottom: 5px;
  padding-left: 5px;
  border-left: 5px solid #666;
}

.information dd {
  line-height: 1.5em;
  margin-bottom: 15px;
  padding-bottom: 4px;
  border-bottom: 1px solid #cccccc;
}

/* -------------------------------------------------------------
   [4] サイドバーブロック内に関する指定 */

/*-- サイドバー内　文字指定 ---*/
#sidebar p {
  line-height: 1.5em;
  margin-bottom: 0.5em;
}

/*-- サイドバー内　カテゴリータイトル ---*/
#sidebar p.sidebar-title {
	width:206px;
  text-align: center;
  line-height: normal;
  padding: 0.5em 0;
  background-color: #003198;
  color: #FFFFFF;
}

div#sidebar>div{ margin-bottom:0.5em; }

/*-- サイドバー内　リスト（UL） ---*/
#sidebar ul {
	width:206px;
  list-style-position: inside;
  margin: 5px 0 20px;
}

#sidebar li { margin: 0 0 0.5em; }

/*-- ナビゲーション ---*/

#sidebar ul.navigation {
	list-style-type: none;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 5px;
	margin-left: 0;
}

#sidebar .navigation li {
	width: 204px;
	display: inline;
	margin: 0;
}

#sidebar .navigation a {
	display: block;
	border: 1px outset #fff;
	background-color: #eee;
	text-decoration: none;
	color: #003198;
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 10px;
}

#sidebar .navigation a:hover {
  border: 1px outset #fff;
  background-color: #003198;
  text-decoration: none;
  color: #FFFFFF;
}

#sidebar dl { margin: 0 0 20px; }

#sidebar dt {
  margin-bottom: 5px;
  color: #003198;
}

#sidebar dd {
  line-height: 2em;
  margin-bottom: 30px;
}

/* -------------------------------------------------------------
   [5] フッターブロック内に関する指定 */

#footer p { text-align: center; }

/* -------------------------------------------------------------
   [6] CSSデザインサンプルリンク指定 */
#cds {
  clear: both;
  font-size: 90%;
  font-family: Geneva, Arial, Helvetica, sans-serif;
  text-align: right;
  margin: 0;
}

#cds,
#cds a,
#cds a:hover {
  text-decoration: none;
  color: #ccc;
}


/*-----------------------------

 見出しデザイン

------------------------------*/
.selector07{   
    background:#eee;   
    border-bottom:7px solid #ccc;   
    padding:.8em .9em .3em  
}  

.selector10{
	border-bottom:2px solid #083388;
	background-image: url(../img/icon_midashi.gif);
	background-repeat: no-repeat;
	padding-top: 0.3em;
	padding-right: 0.8em;
	padding-bottom: 0.6em;
	padding-left: 1.8em;
}  
.midashi1 {
	font-weight: bold;
	color: #FFFFFF;
	background-color: #EF9500;
	padding: 3px;
}
.midashi2 {
	font-weight: bold;
	color: #FFFFFF;
	background-color: #2CA9E1;
	padding: 3px;
}
.midashi3 {
	font-weight: bold;
	color: #FFFFFF;
	background-color: #6CE26C;
	padding: 3px;
}

.midashi4 {
	font-weight: bold;
	color: #FFFFFF;
	background-color: #4569EB;
	padding: 3px;
	margin-left: 10px;
	margin-top: 20px;
}


.f_orange{
	font-weight:bold;
	color:#EF9500;
}

.f_pink{
	font-weight:bold;
	color:#FF33FF
}

.f_red{
	font-weight:bold;
	color:#FF0000;
}


.midashi_voice {
	background-image: url(../img/entry_head.gif);
	background-repeat: no-repeat;
	height: 30px;
	width: 435px;
	padding-left: 30px;
	padding-top: 10px;
	margin-top: 10px;
}

.selector01{   
    border-left:7px solid #e3297d;   
    padding:.6em .8em  
}  

.tensen{
	border: 1px dotted #E3297D;
	padding: 3px;
	margin-bottom: 30px;
}

.tensen02{
	border: 1px dotted #083388;
	padding: 3px;
	margin-bottom: 20px;
	margin-top: 20px;
}

.comment_box {
	border: 1px dotted #4569EB;
	padding: 10px;
}

/*-----------------------------

 AmazonBOXデザイン

------------------------------*/

.item-box {
  padding: 10px;
  border:  1px solid #ccc;
  border-radius: 5px;
  box-shadow: 1px 1px 5px #ccc;
}
.item-box:after {
    content: '';
    display: block;
    clear: both;
}

.item-box img {
  max-width: 100%;
}

.item-box > div {
  float:  left;
  width: 50%;
}

.item-box-left {
  padding-left: 0;
}

.item-box-right {
  position: relative;
}

.item-box-right h4 {
    margin: 0;
    padding: 10px;
    background: #eee;
    border-radius: 5px;
}

.item-box-right h4 a {
      letter-spacing: 1px;
  font-size:  20px;
  font-weight: bold;
  color:  #666;
  margin-top: 0;
  padding-top: 0;
}

.item-box-right p {
  font-size: 14px;
  margin:10px 0;
}

.item-box-right .item-btn {
    font-size:18px;
    text-decoration:none;
    letter-spacing: 1px;
    display:block;
    text-align:center;
    padding: 10px 20px;
    color:#fff;
    background-color:#4CAF50;
    border-radius:5px;
    box-shadow:2px 2px 0 #2E7D32, 0px 3px rgba(0,0,0,0.5);
}

.item-box-right .item-btn a {
  text-decoration: none;
  color:  #fff;
  display: block;
}

.item-box-right .item-label {
  background-color:  #FBC02D;
  display: inline-block;
  border-radius: 50%;
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  color: #fff;
  position: absolute;
  top: -50px;
  right: -50px;
  transform: rotate(10deg);
  box-shadow: 1px 1px 5px #ccc; 
  font-size:11px;
}
