/*
Theme Name: studio9 personal
Theme URL: http://personal-studio9.com/
Description: studio9 personal theme
Version: 0.1
Author: kazuo
Author URI: http://photo-studio9.com
*/

@charset "utf-8";


/* -------------------------------
Reset STYLES
----------------------------------*/
/*
Copyright (c) 2009, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 3.0.0
build: 1549
*/
html{
    color:#000;background:#FFF;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{
    margin:0;padding:0;
}
table{
    border-collapse:collapse;border-spacing:0;
}
fieldset,img{ border:0; }
address,caption,cite,code,dfn,em,strong,th,var{
    font-style:normal;font-weight:normal;
}
li { list-style:none; } caption,th{ text-align:left; }
h1,h2,h3,h4,h5,h6{
    font-size:100%;font-weight:normal;
}
q:before,q:after{ content:''; }
abbr,acronym{ border:0;font-variant:normal; }
sup{ vertical-align:text-top; }
sub{ vertical-align:text-bottom; }
input,textarea,select{ font-family:inherit;font-size:inherit;font-weight:inherit; }
input,textarea,select{ *font-size:100%; }
legend{ color:#000; }

/* -------------------------------
BODY STYLES
----------------------------------*/

body {
	color: #3f3f3f;
	/*background:#f3f3f3 url(images/bg.png) center repeat-y;*/
	background:#f3f3f3;
	font: 100%/1.4 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
	font-size:15px;
}
/*----------------------------------------------------
BASIC HTML ELEMENTS STYLES
------------------------------------------------------*/

a img { /* このセレクターは、一部のブラウザーでイメージをリンクで囲んだ場合にイメージの周囲に表示される初期設定の青いボーダーを削除します。 */
	border: none;
}
/* ~~ サイトのリンクのスタイル付けは、ホバー効果を作成するセレクターグループも含め、この順序にする必要があります。~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
	text-decoration: none;
}
h1 {
	font-size:26px;
	letter-spacing:-1px;
	font-weight:normal;
	padding:10px 0 12px;
	line-height:100%;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	/*font-style:italic;*/
}
h1.home {
	color:#1FA2E1;
	font-size:30px;
}
h1 a {
	color:#333;
	text-decoration:none;
}
h1 a:hover {
	color:#1FA2E1;
	text-decoration:none;
}
h2 {
	font-size:24px;
	font-weight:nomal;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	background:url(images/midashi_h3.png) 0px 5px no-repeat;
	padding:8px 0;
	padding-left:16px;
} 
h3 {
	font-size:22px;
	font-weight:normal;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	/*font-style:italic;*/
	letter-spacing:-1px;
	padding:5px 0;
} 
ul {
	list-style:none;
}
p {
	margin:8px 0;
}
strong {
	font-weight:bold;
}

/* ~~ エレメント / タグセレクター ~~

h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* 上マージンを削除すると、マージンを含む div からマージンがはみ出す場合があるという問題を回避できます。残った下マージンにより、後続のエレメントからは離されます。 
	padding-right: 15px;
	padding-left: 15px; /* div 自体ではなく div 内でエレメントの両側に余白を追加すると、ボックスモデル計算が不要になります。代わりに、両側に余白を指定した div をネストして使用することもできます。
}
 */
/* -------------------------------
LAYOUT STRUCTURE
----------------------------------*/
/* ~~ この固定幅コンテナが他の div を囲みます。~~ */
#container {
	width: 988px;
	background: #fff;
	margin: 0 auto; /* 幅に加え、両側を自動値とすることで、レイアウトが中央に揃います。 */
}
/* ~~ ヘッダーには幅は指定されません。ヘッダーはレイアウトの幅全体まで広がります。 */
/*ナビを入れるときはHeight->215px*/
#header {
	background: #ffffff;
	position:relative;
	height:165px;
	margin-top:0;
}
#content {
	/*background: #ffffff;*/
	padding:0;
	float:left;
	width:688px;
	margin-top:0px;
	margin-right:0px;
}
#col_r {
	float:right;
	width:300px;
}
#footer {
	background:#ccc;
	padding-bottom:10px;
	padding-top:15px;
	min-width:988px;
	position: relative;/* IE6 に、適切にクリアするための hasLayout を指定します。 */
	clear: both; /* この clear プロパティにより .container は、カラムの範囲がどこまでかを認識してその範囲を含めるようになります。 */
}
/* -------------------------------
HEADER ELEMENTS
----------------------------------*/
/* Logo */
#logo_wrapper {
	position:relative;
	width:320px;
	height:85px;
	/*border:3px #000 dashed*/
}
#header_right_wrapper {
	position:absolute;
	left:320px;
	top:12px;
	width:640px;
	height:85px;
	/*border:1px #000000 dashed;*/
}
.header_right_wrapper_up {
	height:50px;
	overflow:hidden;
}
.header_right_wrapper_down {
	height:35px;
	overflow:hidden;
	/*border:1px #000000 dashed;*/
}
#logo {
	position:absolute;
	left:32px;
	top:12px;
}
/* Seaechform */
div#searchform {
	float:right;
	margin-top:8px;
}
form#searchform {
	width:255px;
	height:34px;
	border:1px dashed #CDCDCD;
}
input.textbox {
	border:none;
	background:#ffffff;
	width:217px;
	height:34px;
	padding:0;
	margin:0;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	font-size:14px;
	color:#666666;
	float:left;
	}
input.submit {
	border:none;
	width:34px;
	height:34px;
	background:#fffdfa url(images/search.png) 0 0 no-repeat;
	padding:0;
	margin:0;
	clear:both;
}
/*social links*/
/*#sociallink_top {
	height:48px;
	width:480px;
	position:absolute;
	top:50px;
}*/
a.sociallink {
	margin-top:9px;
	margin-right:8px;
	display:block;
	float:right;
}
/* right section */
#header_nav {
	float:right;
}
.header_nav_inner {
	margin:0px 0px 0px 0px;
	overflow:hidden;
}
.header_nav_inner li{
	margin:0px 6px;
	color:#516000;
	font-size:20px;
	font-weight:bold;
	font-family:Calibri, Arial, Helvetica, sans-serif;
	text-align:center;
	float:right;
}
.header_nav_inner li a{
	color:#4c4c4c;
	padding:0px 3px;
	text-decoration:none;
	border-bottom:1px dashed;
	display:block;
}
.header_nav_inner li a:hover{
	color:#3e4a00;
	text-shadow:#DDD 1px 3px;
	border:1px dashed;
}

/* menuebar */
#tm_bg {
	position:relative;
	top:20px;
	left:-10px;
	width:1008px;
	height:50px;
	box-shadow: 0 3px 4px 1px rgba(0,0,0,0.3);
}
#main_nav {
	position:absolute;
	top:0px;
	left:0px;
	width:1008px;
	height:50px;
	/*background:url( images/tm_bg.png ) 0 0 no-repeat;*/
}

.main_nav_inner {
	margin:0px 0px 0px 32px;
	overflow:hidden;
}
.main_nav_inner li {
	margin:0px 20px;
	margin-top: 12px;
	padding:0px;
	/*letter-spacing: 2px;*/
	font-size:24px;
	font-weight:bold;
	font-style:normal;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	text-align:center;
	float:left;
	position::relative;
	overflow:hidden;
}
.main_nav_inner li a{
	color:#ffffff;
	text-decoration:none;
	margin: 0 0;
	display:block;
	/*text-shadow:#DDD 1px 1px;*/
}
.main_nav_inner li a:hover{
	color:#a4f288;
	text-shadow:1px 1px 3px #888;
}
.main_nav_inner li span {
	font-size:12px;
	font-weight:bold;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	margin: 0px 0px;
}
/* MainContens */
.postbox_ad h6{
	background:#fffbef;
	border:1px dashed #F3F;
	border-radius: 5px;
	padding:6px;	margin:8px 30px -15px 20px;
	font-size:15px;
	font-weight:normal;
	color:#333;
	text-indent:0;
}
.pbox{
	margin:0px 0 0px;
}
div.pbox_upper{
	position: relative;
	z-index: 0;
	/*background-color: #fbebee;
	background-color: none;*/
	width: 100%;
	height: 181px;
	/*box-shadow: -8px 0 0 0 #aaa inset;*/
}
.pbox_upper_bg{
	width:98.5%;	height: 100%;
	background-color: #ffb147;
}
.pbox_shadow{
	position: absolute;	z-index: -10;
	bottom: 14px;  right: 15px;
  width: 90%;  height: 20px;  max-width:500px;
  background: #eee;
  box-shadow: 0 15px 10px #999;
  transform: rotate(1deg);
  -webkit-transform: rotate(1deg);
  -moz-transform: rotate(1deg);
}
.pbox_mid{
	width:560px;
	margin:12px auto 5px;
}
div.pbox_bottom{
	width:688px;
	padding-bottom: 15px;
	overflow: hidden;
}
div.pbox_thumb{
	width:165px;	height:165px;
	margin:5px;	padding:0px;
	margin-left: 7px;
	border:#eee solid 2px;
	position:relative;
	float: left;
	overflow: hidden;
	box-shadow: 1px 1px 1px 0px;
}
div.pbox_thumb a:hover{
	-moz-opacity:0.85;
	opacity:0.85;
}
.pbox_upright{
	float: left;
	width:72%;
}
.pbox_top_date{
font-weight: normal;	font-family: 'Paytone One', sans-serif;
color: #3a3a3a;	letter-spacing:1px;
padding: 0; margin-left: 20px;	margin-top: -5px;
background: none;

}
.pbox_top_d{
	font-size: 40px;
	margin-left: 10px;
}
.pbox_top_m{
	font-size: 30px;
}
.pbox_top_y{
	font-size: 25px;
}
.pbox_top_title{
	font-size:26px;	font-weight: bold;
	letter-spacing: 1px;
	margin: 0px;	padding: 15px 20px 0 20px;
	line-height: 110%;
}
.pbox_top_title a{
	text-decoration:none;
	color:#3a3a3a;
}
.pbox_top_title a:hover{
	text-decoration:none;
	color:#fff;
}
.pbox_top_excerpt{
	font-size: 18px;
}
.pbox_socialbtn{
	float: left;
	/*overflow: hidden;*/
	width:440px;
	margin-left: 0px;
	margin-top: -8px;
	padding: 10px 0px;
}
.socialbtn_sl li{
	list-style:none;
	float:left;
	margin-left:10px;
}
.pbox_more{
	float:right;
	margin-right: 40px;
	margin-top: 10px;
	font-size: 20px;
	font-weight: bold;	
	background: url(images/more_h20.png) no-repeat;
}
.pbox_more a{
	text-decoration: none;
	color: #3a3a3a;
	/*background: #f3f3f3;*/
	position: relative;
	top: -3px;	padding-left: 30px;
	vertical-align: middle;
}
.pbox_more :hover{
	/*background:url(images/more_h20.png) no-repeat;*/
	color: #ee294a;
	border-bottom: 1px dashed #ee294a;
}
div.tothetopfixed {
  position: fixed;
  right: 15px;	bottom: 20px;
  z-index: 1500;
}    
div.tothetopfixed a {
    display: block;
    color: #333333;
    padding: 10px;  margin: 0;
    background-color: #89c997;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.8em;
}
div.tothetopfixed a:hover {
  background: #0044CC;
  color: #ffffff;
}

/***** single page *****/

.postbox_ad_single h6{
	background:#fffbef;
	border:1px dashed #F3F;
	border-radius: 5px;
	padding:3px 6px;
	margin:6px 30px 0px 20px;
	font-size:15px;
	font-weight:normal;
	color:#333;
	text-indent:0;
}

.postbox_single h6{
	background:#fffbef;
	border:1px dashed #F3F;
	border-radius: 5px;
	padding:6px;
	margin:0px 30px 5px 20px;
	font-size:15px;
	font-weight:normal;
	color:#333;
	text-indent:0;
}

.postbox_mid_single{
	margin:0px 0 10px;
	padding-top: 20px;
	font-size:16px;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	
}

.pbox_s_top{
	margin:10px 0px;
	overflow: hidden;
	position: relative;
	zoom:1; /*IE6でレイアウト崩れを防ぐためのものです。*/
	width:98.5%;
	
}

h1.pbox_s_title{
	position: relative;
	color:#3a3a3a;
	font-size:26px;
	letter-spacing:0px;
	font-weight:normal;
	padding:10px 15px 10px 58px;
	line-height:110%;
	box-shadow: 0 10px 6px -5px #aaa;
	background:#ffb147;
	height: 84px;
	display: table-cell;
	vertical-align:middle;
}
.pbox_s_title img{
	position: absolute;
	top:-7px;
	left:0px;
}
.pbox_s_top_meta {
	font-size:14px;
}
.pbox_s_top_meta li{
	margin:10px 5px 5px 20px;
	float:left;
}
.pbox_s_socialbtn{
	overflow: hidden;
	margin: 10px 10px 5px 0;
	float: right;
}
.pbox_s_socialbtn li{
	float:right;
	margin:0 5px;
}

.postbox_mid_single p{
	margin:12px 28px 18px;
	text-indent:10px;
	line-height: 160%;
}

.postbox_mid_single p a{
	margin-left:2px;
}

.postbox_mid_single h2{
	margin:25px 30px 35px 0px;
	padding:12px 0;
	padding-left:20px;
	font-size:27px;
	font-weight:nomal;
	background:#f3f3f3 ;/*url(images/s_h2.png) 6px 7px no-repeat*/
	width:85%;
	box-shadow: 2px 4px 4px 1px #aaa;
	border-left:36px solid #ee294a;
	letter-spacing:1px;
	line-height:115%;
} 

.postbox_mid_single h3 {
	color:#555;
	font-size:22px;
	font-weight:bold;
	margin:17px 0 27px 22px;
	padding:1px;
	border-bottom: 2px dashed #333;
} 

.postbox_mid_single h4 {
	color:#555;
	font-size:17px;
	font-weight:bold;
	margin:13px 27px;
} 
.postbox_mid_single h5{
	color:#555;
	margin:25px 30px;
	padding:15px;
	background:#EEE;
	border:1px dashed #FC0;
	border-radius: 7px;
	font-weight:bold;
}
.postbox_mid_single h6{
	background:#fffcfc;
	border:1px dashed #de3030;
	border-radius: 5px;
	padding:10px;
	margin:20px 26px;
	font-size:16px;
	font-weight:normal;
	color:#333;
	text-indent:0;
}
.postbox_mid_single a img{
	margin:5px 0px 10px;
	padding:7px;
	background:#EEE;
	border-top:1px solid #CCC;
	border-left:1px solid #CCC;
	border-bottom:1px solid #AAA;
	border-right:1px solid #AAA;
	
}
.postbox_mid_single p.single_img{
	width: 100%;
	text-indent: 0;
	margin: 12px 0;
	text-align: center;
}

.postbox_mid_single standalone-tweet{
	margin-left: 20px;
}
.postbox_mid_single_flaotleft{
	float:left;
}
blockquote {
	/*border-left:1px solid #888;*/
	border-bottom:1px solid #eee;
	/*border-radius: 5px;*/
	box-shadow: 1px 2px 3px 0px #aaa inset;
	padding:10px;
	padding-left:40px;
	margin:25px 0px 20px 30px;
	background:#fffbef url(images/blockquote-s.png) 10px 5px no-repeat;
}
.postbox_mid_single blockquote p{
	color:#555;
	text-indent:0;
	margin:3px 15px 3px 15px;
}
.postbox_mid_single ul {
	color:#555;
	font-size:18px;
	font-weight:bold;
	margin:15px 65px;
	margin-right: 20px;
} 
.postbox_mid_single ul li {
	margin-top:5px;
	list-style:url(images/li_45d.png);
	list-style-position:inside;
} 
.postbox_mid_single table {
	width:620px;
	margin:25px 10px 10px 15px;padding:0px;
	border-collapse:separate;
	border-spacing:0px;
	border-top:1px solid #663300;
	border-left:1px solid #663300;
	font-size: 16px;
	empty-cells:show;
}
.postbox_mid_single th	{
	/*width:25%;*/padding:4px 10px;
	text-align:center;vertical-align:middle;color:#FFFFFF;
	background-color:#996633;
	border-top:1px solid #FFE7CE;border-left:1px solid #FFE7CE;
	border-right:1px solid #663300;border-bottom:1px solid #663300;
}
.postbox_mid_single td	{
	padding:2px 10px;
	background-color:#FFE7CE;
	border-right:1px solid #663300;
	border-bottom:1px solid #663300;
}

.postbox_mid_single img.no-border{
	padding:0;
	border:0;
}
/*** amazon widjet ***/
.amzn_wdgt{
	margin:0 auto !important;
}
/*** App Store Insert ***/
div.application_box {
	font-size: 16px;
	line-height: 24px;
  padding:15px 10px 5px;
  overflow: hidden;
}
div.application_box strong{
	font-size: 18px;
	line-height: 40px;
}
div.application_box a img {
	float: left;
	margin: 0;
	padding-right: 15px;
	border: none;
	background: none;
}

/*** bottom ads ***/
.single_bottom_ad{
	overflow: hidden;
}
.single_bottom_left{
	width:336px;
	height: 280px;
	float: left;
	margin: 30px 0 10px 8px;
}
.single_bottom_right{
	width:336px;
	height: 280px;
	margin: 30px 0 10px 5px;
	float: left;
}


.postbox_tags_single{
	width:700px;
	margin:40px 0 25px 0px;
}

h4.postbox_tags_inner_single {
	font-size:14px;
	font-weight:normal;
	width:auto;
	border:none;
	padding:0px 10px;
	margin:0 0 5px 0;
}


.postbox_tags_inner_single span{
	border-bottom:1px dashed;
	padding: 0 5px;
}

.postbox_tags_inner_single a{
	text-decoration:none;
}

.postbox_tags_inner_single a:hover{
	text-decoration:none;
	color:#999;
}

.nav-below{
	overflow:hidden;
	margin:35px 10px;
	text-align:center;
}
.nav-below .nav-previous{
	float:left;
}
.nav-below .nav-next{
	float:right;
}
.postbox_bottom_single{
	margin:0px 0px 10px;
	font-size:16px;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
}
.postbox_bottom_inner_single{
	margin:20px 10px;
}
.postbox_bottom_inner_single h3, .comments_single h3{
	border-bottom:dotted 4px;
}
.postbox_bottom_inner_single .single_socialbutton {
	margin:40px 10px 10px;
}
.postbox_bottom_inner_single .single_socialbutton ul{
	margin:0;
}
.postbox_top .single_socialbutton {
	margin:5px 10px 0px;
}
.postbox_top .single_socialbutton ul{
	margin:0;
}
.single_socialbutton .likeButton, .single_socialbutton .tweetButton, .single_socialbutton .gplusButton, .single_socialbutton .hatebuButton, .single_socialbutton .evernoteButton, .single_socialbutton .feedlyButton{
	list-style:none;
	float:right;
	margin-left:10px;
}
.postbox_bottom_inner_single ul{
	margin:30px 15px;
}
.likebox_660{
	margin:20px 5px 0px;
}

.postbox_bottom_inner_single li{
	margin-top:5px;
	list-style:url(images/midashi_sq_12px.png) inside;
}
.comments_single{
	margin:40px 20px;
	width:660px;
}

.cc_single{
	font-size:11px;
	margin: 5px 0;
	margin-left:15px;
}
.cc_single img{
	margin:0 5px;
	margin-bottom:-3px;
	margin-left:0;
	padding:0;
}
/* YARPP template
-----------------------------------*/
.yarpp-studio9-horizontal{
	/*height:200px;*/
	width:120px;
	margin:10px;
	float:left;
	font-size:14px;
	/*overflow:hidden;*/
}
.yarpp-studio9-horizontal img{
	margin-left:0px;
	margin-top:0px;
	padding:2px;
	border-top:#999 solid 1px;
	border-left:#999 solid 1px;
	border-right:#E0E0E0 solid 1px;
	border-bottom:#E0E0E0 solid 1px;
	position:relative;
}
.yarpp-studio9-horizontal a:hover{
	-moz-opacity:0.60;
	opacity:0.60;
}

/**** contactform7 ****/

.cf7_h3{
	color:#555;
	font-size:17px;
	font-weight:nomal;
	margin-bottom:10px;
}

.cf7_name, .cf7_e-mail, .cf7_url, .cf7_sub, .cf7_messaage, cf7_vshort, .cf7_short, .cf7_middle, .cf7_select, .cf7_selectdate{
	background:#fff;
	border:1px dashed #ccc;
	border-radius:3px;
	margin-bottom:-5px;
}

.cf7_select{
	color:#555;
	font-size:14px;
}
.cf7_selectdate{
	color:#555;
	font-size:14px;
	margin-bottom:10px;
}
.cf7_radio{
	color:#555;
	font-size:16px;
}


.cf7_name, .cf7_e-mail, .cf7_url, .cf7_middle{
	width:300px;
}

.cf7_messaage{
	height:4em;
}

.cf7_vshort{
	width:60px;
}

.cf7_short{
	width:150px;
}

.cf7_submit{
}

/**** serch.php ****/

.notfound_h2 {
	margin:40px 35px 0px;
}

.notfound_h3 {
	margin:0px 35px 40px;
}

/**** 404.php ****/

.div_404_img {
	margin:25px 30px 50px;
	width:600;
}

.div_404_img img{
	margin:20px 10px 20px;
	padding:7px;
	background:#EEE;
	border-top:1px solid #CCC;
	border-left:1px solid #CCC;
	border-bottom:1px solid #AAA;
	border-right:1px solid #AAA;
}

.notfound_p {
	margin:10px 0 0 20px;
}

.searchform_notfound {
	margin:25px 10px 35px;
}

form.searchform_notfound {
	width:255px;
	height:38px;
	border:1px dashed #CDCDCD;
}

#archive-title{
	font-size: 22px;
	margin:20px 20px;
}

/****Google AdSense****/
,gad_top728{
	width:728px;
	height:90px;
	padding:0;
	margin:0;
}
.gad_side_sq250{
	width:250px;
	height:250px;
	padding:0;
	margin:3px 5px 3px 5px;
	}
.gad_side_vlong{
	margin:10px 5px 15px 40px;
}
.gad_single_bottom{
	margin:15px 124px 15px 124px;
	padding:5px;
	border:1px dashed #999999;
}
/****Amazon widgrt****/
.amz_side_vlong{
	margin:10px 5px 15px 40px;
}

/************************************
** 自前のバルーンシェアボタン
************************************/
/*bottom*/
#sns-btn-bottom{
	/*overflow: hidden;*/
	margin:5px 15px;
	padding: 10px 0px;
}
.balloon-btn-set{
  width:70px;
  height:63px;
}
.balloon-btn-set-top{
  width:70px;
  height:63px;
}

.balloon-btn-set a{
  display:block;
  color:#777;
  font-size:15px;
  text-decoration:none;
}
.balloon-btn-horizontal{
	float:right;
	margin: 0 2px;
	text-align:center;
}

a.arrow-box-horizontal-link{
  font-weight:bold;
  text-align:center;
}

a.arrow-box-horizontal-link:hover{color:#777;}

a.balloon-btn-horizontal-link{
  border:1px solid #ddd;
  width:68px;
  height:25px;
  line-height:25px !important;
  position:relative;
  top:7px;
  color:white;
  border-radius:3px;
}
a.balloon-btn-horizontal-link-top{
  border:1px solid #ddd;
  width:63px;
  height:25px;
  line-height:25px !important;
  position:relative;
  top:7px;
  color:white;
  border-radius:3px;
	}

a.balloon-btn-horizontal-link:hover{
  color:white;
  opacity:0.6;
}

/*a.twitter-balloon-btn-horizontal-link{background-color:#55acee;}
a.facebook-balloon-btn-horizontal-link{background-color:#3c5a99;}
a.googleplus-balloon-btn-horizontal-link{background-color:#dd4b39;}
a.hatena-balloon-btn-horizontal-link{background-color:#3c7dd1;}
a.pocket-balloon-btn-horizontal-link{background-color:#ee4257;}
a.line-balloon-btn-horizontal-link{background-color:#00c300;}
a.feedly-balloon-btn-horizontal-link{background-color:#87bd33;}*/

a.twitter-balloon-btn-horizontal-link{background-color:#6bace2;}
a.facebook-balloon-btn-horizontal-link{background-color:#445d93;}
a.googleplus-balloon-btn-horizontal-link{background-color:#d36054;}
a.hatena-balloon-btn-horizontal-link{background-color:#4c7ec6;}
a.pocket-balloon-btn-horizontal-link{background-color:#e15c69;}
a.line-balloon-btn-horizontal-link{background-color:#50c150;}
a.feedly-balloon-btn-horizontal-link{background-color:#94be61;}

.arrow-box-horizontal {
  position: relative;
  background: #fff;
  border: 1px solid #bbb;
  text-align:center;
  width:68px;
  height:33px;
  border-radius:3px;
  top:-7px;
  line-height:33px;
  display:inline-block;
}

.arrow-box-horizontal:after,
.arrow-box-horizontal:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.arrow-box-horizontal:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #fff;
  border-width: 3px;
  margin-left: -3px;
}
.arrow-box-horizontal:before {
  border-color: rgba(187, 187, 187, 0);
  border-top-color: #BBBBBB;
  border-width: 5px;
  margin-left: -5px;
}
/*  head  */
.share-num{
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
}

/* ~~ その他の float/clear クラス ~~ */
.fltrt {  /* このクラスを使用すると、ページ内でエレメントを右にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
	float: right;
	margin-left: 8px;
}
.fltlft { /* このクラスを使用すると、ページ内でエレメントを左にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* このクラスは、#footer が #container から削除されているか取り出されている場合に、<br /> または空の div で、フローティングさせる最後の div に続く最後のエレメントとして (#container 内に) 配置できます。 */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
