@charset "utf-8";

/*共通部分のスタイルシート

■目次：

・共通指定
・配置
・全体レイアウト
・ヘッダー
・グローバルナビゲーション
・フッター
・前のページへ戻る
・ページの先頭へ戻る
・パン屑リンク

*/

*{
	margin: 0;
	padding: 0;
}

body {
	font-size: 80%;
	color: #333333;
	/*font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", sans-serif;*/
	font-family: Osaka, 'メイリオ', Meiryo, "ヒラギノ角ゴ Pro W3", sans-serif;
	/*background-image: url(../image/bg_blue2.png), url(../image/bg_vio2.png), url(../image/bg_blue.png), url(../image/bg_vio.png);
	background-repeat: no-repeat, no-repeat, repeat-x, repeat-x;
	background-position:left top, right bottom, left top, right bottom;
	background-attachment:fixed;*/
	background:url(../images/bg.png) left top repeat;
}

/*---------------共通指定---------------*/

img {
	border: 0;
}

p {
	line-height: 1.4;
}
p::selection {
	background: #21659b; /* for WebKit & Opera */
	color:#FFFFFF;
}
p::-moz-selection {
	background: #21659b; /* for Firefox */
	color:#FFFFFF;
}


/*---------------全体レイアウト---------------*/
#content {
	width: 1000px;
	clear: both;
	margin: 20px auto;
	padding: 0px;
	background-color:#FFF;
	/*opacity:0.8;*/
	filter:alpha(opacity=90);
	-moz-opacity: 0.90;
	opacity: 0.90;
	border:1px #FFF solid;
	/*角丸*/
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-o-border-radius: 10px;
	-ms-border-radius: 10px;
	/*ドロップシャドウ*/
	-webkit-box-shadow: #6979a8 0px 0px 8px;
	-moz-box-shadow: #6979a8 0px 0px 8px;
	box-shadow: #6979a8 0px 0px 8px;
}

/*---------------ヘッダー---------------*/

#header {
	padding: 0px;
	margin: 0px;
	display: block;
	height:150px;
	position:relative;
}
#sitetitle {
	font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', HGS明朝E, 'ＭＳ Ｐ明朝', serif;
	font-size:7em; font-weight:bold;
/*
	color:#2b71ad;
	text-align: center;
	margin: 15px auto;
	padding: 30px 0px 5px;
	display:block;
	width:850px;
	*/
}
#subtitle {
	font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', HGS明朝E, 'ＭＳ Ｐ明朝', serif;
	font-size:4em; font-weight:bold;
	color:#44c0fe;
	text-shadow:2px -1px 0 rgba(255,255,255,0.6),0 2px 3px rgba(0,0,0,0.4);
	margin:40px 25px 0 0;
  color:#000;	border:solid 2px #666;
	border-left:none; border-right:none;
}
#sitetitle {
/*
	background-image: -webkit-gradient(linear,left top,left bottom,
		color-stop(0%,#bbb),
		color-stop(49%,#444),
		color-stop(50%,#333),
		color-stop(100%,#000)
	);
	-webkit-text-fill-color:transparent;
	-webkit-background-clip:text;
*/
	color:#44c0fe;
	text-shadow:2px -1px 0 rgba(255,255,255,0.6),0 2px 3px rgba(0,0,0,0.4);
}
#sitetitle, #sitetitle:before{
	padding: 30px 0px 0 20px;
  position:absolute;
  top:0;left:0;
  color:#000;
}
#subtitle,#subtitle:before {
	padding: 10px;
  position:absolute;
  top:0;right:0;
}

#sitetitle:before ,#subtitle:before{
	display:block;
	content:attr(title);
	background-image: -webkit-gradient(linear,left top,left bottom,
		color-stop(0%,#bbb),
		color-stop(49%,#444),
		color-stop(50%,#333),
		color-stop(100%,#000)
	);
	-webkit-text-fill-color:transparent;
	-webkit-background-clip:text; 
	-webkit-mask-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,1));
}
/*---------------グローバルナビゲーション---------------*/

nav#globalnavi {
	padding:0px 0;
	display:block;
	width: 850px;
	margin: 0px auto;
	/*border-top: 2px solid #2b71ad;
	border-bottom: 2px solid #2b71ad;*/
}
nav#globalnavi ul {
	margin: 0px;
	padding: 2px 0;
}
nav#globalnavi li{
	float:left;
	display: block;
	width:170px;
}
nav#globalnavi li a{
	display: block;
	margin:1px 8px;
	padding:5px;
	text-align:center;
	text-decoration:none;
	text-shadow:1px 1px 0px #fff;
	font-weight:bold;
	color:#1e598c;
	/*角丸*/
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-o-border-radius: 3px;
	-ms-border-radius: 3px;
	/*グラデ*/
	background-image: -moz-linear-gradient(top, #ffffff, #dee8f1); /* FF3.6 */
	background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #dee8f1),color-stop(1, #ffffff)); /* Saf4+, Chrome */
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dee8f1'); /* IE6,IE7 */
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dee8f1')"; /* IE8 */
}
nav#globalnavi li a:hover{
	color:#003c6f;
	/*グラデ*/
	background-image: -moz-linear-gradient(top, #dee8f1, #ffffff); /* FF3.6 */
	background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #dee8f1),color-stop(1, #ffffff)); /* Saf4+, Chrome */
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#dee8f1', endColorstr='#ffffff'); /* IE6,IE7 */
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#dee8f1', endColorstr='#ffffff')"; /* IE8 */
}

/*---------------本文---------------*/

#pagetitle{
}

#main {
	width: 975px;
	margin: 10px auto;
	padding:10px 0 15px;
	/*-webkit-column-count: 2;
	-webkit-column-gap: 20px;
	-webkit-column-rule: 1px solid #d6d6d6;
	-moz-column-count: 2;
	-moz-column-gap: 20px;
	-moz-column-rule: 1px solid #d6d6d6;
	column-count: 2;
	column-gap: 20px;
	column-rule: 1px solid #d6d6d6;*/
	clear:both;
}
#main-2nd {
	padding: 0px 23px;
}

/*---------------記事ブロック---------------*/

#output{
	width:100%;
}
#output .postBlock,
#output .postBlockAd{
	width:287px;height:250px; float:left;
	position:relative;
	padding:25px 10px 10px 10px; margin:0 8px 20px 7px;_margin:0 4px 10px 4px;border:solid 1px #CCC;
	/*overflow:hidden;*/
	
	/*角丸*/
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	/*シャドウ*/
	-webkit-box-shadow: #C6D4E9 0px 0px 5px;
	-moz-box-shadow: #C6D4E9 0px 0px 5px;
	box-shadow: #C6D4E9 0px 0px 5px;
}
#output .postBlockAd{
	width:300px !important;
	padding:25px 3px 10px 4px !important;
}

#output .postBlock a.title{
	font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', HGS明朝E, 'ＭＳ Ｐ明朝', serif;
	line-height:1.4em !important;
	font-size:170%; font-weight:bold;
	display:block; margin-bottom:5px;
	width:250px; 
	text-shadow:2px -1px 0 rgba(255,255,255,0.6),0 2px 3px rgba(0,0,0,0.4);
}
#output .postBlock a.douga{
	color:#99556E;
}
#output .postBlock a.douga:hover{
	color:#CC556E;
}
#output .postBlock .date,
#output .postBlockAd .date{
	width:60px;  height:40px;
	text-align:center;
	font-size:70%; position:absolute;
	background:#5688CA;
	color:#FFF; padding:17px 0 3px 0;
	position:absolute;
	top:-15px; right:-10px;

	/*-webkit-transform: translate(50px,-25px) rotate(30deg);
	-moz-transform: translate(50px,-25px) rotate(30deg);	
	-webkit-transform-origin: left bottom;
	-moz-transform-origin: left bottom;*/
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
	-khtml-border-radius: 40px; 
	border-radius: 40px;
	
	filter:alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;

}
#output .postBlockAd .date{
	width:60px;  height:10px;
	padding:3px 0 9px 0;
	top:-10px; right:-10px;
	background:#900 !important;
}
#output .postBlock .txt{
	font-size:90%;
	word-break:break-all;
}
#output .postBlock .txt b{
	font-weight:normal;
}
#output .postBlock .txt a{
	font-size:90%;
	color:#999999 !important;
}


/*---------------フッター---------------*/

footer {
	display:block;
	width:100%;
	clear: both;
	margin: 20px 0 0 0;
	padding: 0px;
	background-color:#000;
	/*opacity:0.8;*/
	border:1px #ccc solid;
	/*ドロップシャドウ*/
	-webkit-box-shadow: #6979a8 0px 0px 8px;
	-moz-box-shadow: #6979a8 0px 0px 8px;
	box-shadow: #6979a8 0px 0px 8px;
}
footer p {
	padding:20px;
	font-size:85%;
	color:#999;
}
footer section {
	width:500px;
	padding:20px 0;
	float:left;
}
footer section h2{
	margin: 0 0 0 25px;
	padding: 0px 0px 0px 6px;
	border-left: 4px solid #2b71ad;
	font-size: 1.2em;
}

footer section ul{
	margin: 10px 0 0 25px;
	list-style-type: none;
}
footer section ul li{
	padding: 0px 0px 5px 12px;
	margin:2px 0 0 0;
}
footer section ul li a{
}
footer section p {
	margin: 10px 0 0 25px;
	padding: 2px 0px 5px 12px;
}
footer .powerd{
	width:250px;
	float:right;
	font-family: 'Gentium Book Basic', serif;
	color:#666;
}
footer .powerd strong{
	font-size:2em;
	display:block;
	background-image: -webkit-gradient(linear,left top,left bottom,
		color-stop(30%,#fff),
		color-stop(60%,#666),
		color-stop(75%,#333),
		color-stop(100%,#000)
	);
	-webkit-text-fill-color:transparent;
	-webkit-background-clip:text;
}
address {
	clear: both;
	text-align: center;
	padding: 15px 10px;
	margin:0 15px;
	border-top:1px dotted #333;
	display:block;
	font-style: normal;

}

/*---------------ページの先頭へ戻る---------------*/

#pagetop {
	clear: both;
	text-align: right;
	padding: 13px 10px 0;
	margin:10px 18px 0;
	border-top: 1px dotted #999999;
}

/*---------------パン屑リンク---------------*/

#topicpath {
}

/* clearfix */
.clearfix{
	min-height:1%;
}
.clearfix:after{
	content:".";
	height:0px;
	clear:both;
	display: block;
	visibility:hidden;
}
* html .clearfix{
	/*\*/height:1%;/*display WinIE*/
	display:inline-table;/*display MacIE*/
}



#socialplugin{ padding: 10px 0px; }
#socialplugin ul{
/zoom:1;
}
#socialplugin ul:after{content:''; display:block; clear:both; height:0;}

#socialplugin ul li{ float: left; }
