@charset "utf-8";
@import url(http://parts.blog.livedoor.jp/css/template_6thgen.css);

/**
@prefix : <http://purl.org/net/ns/doas#> .
<> a :CSSStylesheet;
 :title " ";
 :shortdesc "Design Template for livedoor Blog";
 :created "2014-02-14";
 :release [:revision "1.00"; :created "2014-03-27"];
 :page <>;
 :rights "LINE Corporation".
*/


/* 全体のレイアウト
----------------------------------------------- */
body {
}
#wrapper {
}
#container {
	border-radius:4px;
	margin: 0 auto;
	width: 960px;
	padding-top: 60px;
}
#content {
	position: relative;
}
#main {
	padding: 20px 6
}
#sidebar {}

/* 1カラムレイアウトのとき */
body.layout-1col #content {
	background-color: #fff;
}
body.layout-1col #main {}
body.layout-1col #main-inner {}
body.layout-1col #sidebar {
	background-color: #f8f8f8;
	border-radius: 0 0 4px 4px;
	padding: 20px 50px;
}
body.layout-1col #sidebar-inner {}
body.layout-1col #sidebar .sidewrapper {
	float: left;
	padding: 20px 0;
	margin: 0 10px;
	width: 260px;
}

/* 2カラムレイアウトのとき */
body.layout-2col #content {
}
body.layout-2col #main {
	width: 650px;
}
body.layout-2col #main-inner {}
body.layout-2col #sidebar {
	width: 280px;
}
body.layout-2col #sidebar-inner {}

/* 右サイドバー */
body.layout-2col.sidebar-right #content {
	background-position: 100% 0;
}
body.layout-2col.sidebar-right #main {
	float: left;
}
body.layout-2col.sidebar-right #sidebar {
	float: right;
}

/* 左サイドバー */
body.layout-2col.sidebar-left #content {
	background-position: 0 0;
}
body.layout-2col.sidebar-left #main {
	float: right;
}
body.layout-2col.sidebar-left #sidebar {
	float: left;
}

/* かんたん背景画像 */
body.show-bg-image {
	background-attachment: fixed;
	background-size: cover;
}


/* メニューバー
----------------------------------------------- */
.ldb_menu-wrapper {
	width: 100%;
	background: #333;
}
.ldb_menu-wrapper:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
}
.ldb_menu-inner{
	width: 960px;
	margin: 0 auto;
}
.ldb_menu {
	float: left;
}
.ldb_menu-list {
	margin:0 auto;
	overflow: hidden;
	list-style: none;
}
.ldb_menu-list li{
	float: left;
}
.ldb_menu-list li a{
	color: #fff;
	display: block;
	font-size: 16px;
	line-height: 1;
	padding: 22px 30px;
	text-decoration: none;
}
.ldb_menu-list .ldb_menu-item-current,
.ldb_menu-list li a:hover {
	background-color: #5e5e5e;
}

.social-links{
	float: right;
	padding-top: 22px;
}
.social-links-inner li{
	float: left;
	list-style: none;
	margin-right: 20px;
}

/* 全体の文字色、リンク色
----------------------------------------------- */
body {
	color: #080000;
	font: 14px/1.2 Helvetica,Verdana,sans-serif;
}
a,
body.page-article .article-title a:visited,
.calendarhead a:visited {
	color: #333;
	text-decoration:none;
}
a:link {}
a:visited {
	color: #a5a5a5;
}
a:hover {
	text-decoration:underline;
}
a:active {}


#blog-header {
	min-height: 364px;
	min-width: 960px;
	background-color: #dfdfdf;
	background-image: -webkit-radial-gradient(left top, ellipse cover, #dfdfdf 0%, #dfdfdf 100%);
	background-image:    -moz-radial-gradient(left top, ellipse cover, #dfdfdf 0%, #dfdfdf 100%);
	background-image:     -ms-radial-gradient(left top, ellipse cover, #dfdfdf 0%, #dfdfdf 100%);
	background-image:         radial-gradient(left top, ellipse cover, #dfdfdf 0%, #dfdfdf 100%);
}
#blog-header.hide-text #blog-header-inner,
#blog-header.hide-text #blog-title,
#blog-header.hide-text #blog-title a {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
}
#blog-header.hide-text #blog-header-image {
    margin: 0;
}

#blog-header.hide-text #blog-title a {
    background-color:#fff;
    opacity: 0;
    z-index: 10;
    filter: alpha(opacity = 0);
    -webkit-transition: opacity 0.1s linear;
       -moz-transition: opacity 0.1s linear;
        -ms-transition: opacity 0.1s linear;
         -o-transition: opacity 0.1s linear;
            transition: opacity 0.1s linear;
}
#blog-header.hide-text #blog-title a:hover {
    opacity: 0.15;
}
#blog-header-inner {
	display: table;
	margin: 0 auto;
	height: 364px;
	width: 960px;
}
#blog-header-inner2 {
	display: table-cell;
	vertical-align: middle;
}
#blog-title {
	color: #000;
	font-size: 42px;
	line-height: 1.2;
}
#blog-title a {
	color: #000;
	font-size: 42px;
	font-weight: normal;
	text-decoration: none;
}
#blog-description {
	color: #333;
	font-size: 21px;
	line-height: 1.4;
}
#blog-description a {
	color: #333;
}

/* かんたんタイトル画像 */
#blog-header.show-image{
	background-position: center center; /* 省略するとbackgroundSize.jsが動かない */
	background-color: #dfdfdf;
	background-repeat: no-repeat;
}
#blog-header.show-image #blog-header-inner {
	position: static;
}
#blog-header.show-image.hide-text #blog-header-inner {
	position: absolute;
}
#blog-header.hide-text #blog-title a {
	background-color:#fff;
	opacity: 0;
		filter: alpha(opacity = 0);
		-webkit-transition: opacity 0.1s linear;
		-moz-transition: opacity 0.1s linear;
		-ms-transition: opacity 0.1s linear;
		transition: opacity 0.1s linear;
}
#blog-header.hide-text #blog-title a:hover {
	opacity: 0.15;
}


/* メインカラム
----------------------------------------------- */
/* 記事全体 */
.article {
	padding: 60px 0 0 0;
}
.first-article {
	padding-top :0px;
}

/* 記事ヘッダー、記事タイトル */
.article-header {
	margin-bottom: 45px;
	position: relative;
}
.article-title {
	margin-top: 15px;
}
.article-title a {
	font-size: 24px;
	letter-spacing: 1px;
	text-decoration: none;
}

/* 日付 */
.article-date {
	color: #888;
	font-size: 12px;
}

/* 記事フッター、カテゴリ、コメント、ソーシャルボタン */
.article-footer {
	width: 100%;
	float: left;
	margin-top: 20px;
	border-top: 1px solid #e8e8e8;
	clear: both;
}
.article-meta {
	padding: 16px 0;
	float: left;
}
.article-social-btn {
	margin-bottom: -1px;
	text-align: right;
	float: right;
}
#article-options{
	clear: both;
}

.article-category dt, .article-comment-count dt, .article-continue a{
	background: url("http://parts.blog.livedoor.jp/img/usr/ver06_talent_basis/icons.png") 0 0 no-repeat !important;
}

.article-category dt{
	background-position: 0 3px !important;
	height: 15px;
	width: 11px;
}

.article-comment-count dt{
	background-position: 0 -60px !important;
	height: 15px;
	width: 11px;
}

.article-category dd, .article-comment-count dd{
	padding: 0 5px;
}

/* 関連記事 */
.article-body .related-articles {
	margin:4em 0;
	line-height:1.3
}
.article-body .related-articles h3 {
	font-size: 14px;
	font-weight: bold;
}
.article-body .related-articles ul {
	list-style: none;
	margin:0;
	padding-left:0;
}
.article-body .related-articles ul li {
	margin:4px 0;
	padding-left: 16px;
}

/* 続きを読む */
.article-continue{
	border-top: 1px solid #E8E8E8;
	padding-top: 20px;
	margin: 30px 0 0;
}
.article-continue a {
	color:#666666;
	background-position: 8px -122px !important;
	padding-left: 24px;
	font-weight: normal;
}

/* 共通テーマ */
dl.common-theme{
	background: #fafafa;
	border: 1px solid #ddd;
	border-radius: 3px;
	padding: 8px 12px;
}

/* メッセージボード */
.message-board {
	background-color: #f7f7f7;
	border: 1px solid #e4e7e8;
	border-radius: 4px;
	color: #333;
	line-height: 1.6;
	margin-bottom: 26px;
	overflow: hidden;
	padding: 15px;
}

/* プライベートモード、コメントにログインが必要な場合のメッセージ */
div.private-mode-announcement,
div.comment-auth-announcement {
	background-color: #fafafa;
	border: 1px solid #ddd;
}


/* 記事本文
----------------------------------------------- */
.article-body {
	color: #333;
	font-size: 14px;
}
.article-body-inner h1,
.article-body-inner h2,
.article-body-inner h3 {
	border-bottom:3px solid #7f7f7f;
	clear: both;
}
.article-body-inner h4 {
	border-bottom:1px solid #ccc;
	clear: both;
}
.article-body-inner blockquote {
	background-color:#fafafa;
	border: 1px solid #fff;
}
.article-body-inner blockquote:before {
	color: #ddd;
}
.article-body-inner img.pict{
	border: 5px solid #fff;
	height: auto;
	margin: 15px 0;
	max-width: 98.4%;
}


/* コメント・トラックバック一覧
----------------------------------------------- */
.comment-date,
.ping-blog-name,
.ping-date {
	border-left: 1px solid #aaa;
	color: #aaa;
}
.comment-body {
	margin-left: 16px;
	color: #666;
}
.ping-excerpt {
	color: #666;
	margin-left: 16px;
}
.comment-info, .trackback-set{
	border-bottom: 1px dashed #dbdbdb;
}

/* ページ送り
----------------------------------------------- */
/* トップページ */
ul.index-navigator{
	height: 28px;
	margin-top: 70px;
	color: #b0b0b0;
}

ul.index-navigator li a,
ul.index-navigator li.current span {
	background-color: #fff;
	color: #b0b0b0;
	font-weight: normal;
	line-height: 20px;
	padding: 3px 12px;
	margin: 2px;
}
ul.index-navigator li.current span {
	background-color: #333;
	color: #fff;
}
ul.index-navigator a:hover {
	background-color: #333;
	color: #fff !important;
	text-decoration: none;
}
ul.index-navigator a:visited {
	color: #b0b0b0;
}

ul.index-navigator .paging-last a,
ul.index-navigator .paging-next a,
ul.index-navigator .paging-prev a{
	text-indent: -9999px;
	background: url("http://parts.blog.livedoor.jp/img/usr/ver06_talent_basis/icons.png") no-repeat 0 0;
	height: 11px;
}

ul.index-navigator .paging-last a{
	background-position: 5px -182px;
	width: 9px;
}

ul.index-navigator .paging-next a{
	background-position: 5px -296px;
	width: 5px;
}

ul.index-navigator .paging-prev a{
	background-position: 0 -355px;
	width: 5px;
}


/* 記事ページ、月別アーカイブページ */

.pager{
	clear: both;	
}
ul.article-pager, ul.archives-pager {
	margin: 0;
	overflow: hidden;
	padding: 30px 0 60px;
	border-top: 1px solid #E8E8E8;
}
ul.article-pager li a,
ul.archives-pager li a {
	color: #333;
	padding: 0 !important;
}
ul.article-pager li a:hover,
ul.archives-pager li a:hover {
	background-color: #fff;
	text-decoration: underline;
}

ul.article-pager li.prev,ul.archives-pager li.prev{
	float: left !important;
	margin: 0;
}
ul.article-pager li.next,ul.archives-pager li.next{
	float: right;
	margin: 0;
}

/* ブログのフッター
----------------------------------------------- */
#blog-footer {
	color:#999999;
	padding: 30px;
	background: #f0f0f0;
	margin-top: 120px;
}
#blog-footer a {
	color:#999999;
}

/* ブログパーツ
----------------------------------------------- */
/* 共通 */
.sidewrapper:first-child {
	padding-top: 0;
}
.sidewrapper {
	border-bottom: 1px solid #fcfcfc;
	font-size: 12px;
	overflow: hidden;
	padding: 20px 0;
	position: relative;
}
.sidewrapper:after{
	bottom: 0;
	content: '';
	left: 0;
	position: absolute;
	width: 100%;
}

.sidetitle{
	background: url("http://parts.blog.livedoor.jp/img/usr/ver06_talent_basis/sidebar.png") repeat 0 0 #666;
}

.sidewrapper .sidetitle {
	color: #333;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 20px;
	padding: 10px 4px;
	
}
.sidewrapper .sidetitle a {
	color: #333;
}
.sidewrapper .side .sidebody {
	line-height: 1.5;
	margin: 0 0 7px 0;
}
.sidewrapper .side .sidebody.category-child {
	margin-left: 1em;
}

/* カレンダー */
.calendarhead {
	font-weight: bold;
	text-align: center;
}
table.caltblwk .weekday {
	color: #666;
}
table.caltblwk .sun {
	color: #ff5d5d;
}
table.caltblwk .sat {
	color: #578efa;
}
table.caltblday {
	color: #8d8d8d;
	border-collapse: separate;
	border-spacing: 1px;
}
table.caltblday .caloff {
	background-color: #fff;
	border: 1px solid #e4e7e8;
}
table.caltblday .calon {
	background-color: #333;
	border: none;
}
table.caltblday td a {
	color:#fff;
	height: 23px;
	line-height: 23px;
	text-shadow: 0 1px 0 rgba(0,0,0,0.7);
}
table.caltblday td a:hover {
	background-color: #333;
}


/* その他のパーツ
----------------------------------------------- */
/* アーカイブヘッダ */
.archives-header {
	color: #333;
	font-size: 15px;
	margin-bottom: 20px;
	padding: 1.8em;
	text-align: center;
	border: solid #e1e1e1;
	border-width: 1px 0 1px 0;
}

#category-header h1{
	display: inline;
	font-size: 18px;
}

.header-label{
	display: inline;
	color: #bbbbbb;
	font-size: 12px;
	padding-right: 16px;
}

/* 記事下広告 */
#ad2 {}
#ad2 a.addescription {
	color:#666;
}


/* 特殊機能・カスタマイズ
----------------------------------------------- */
/* ページトップへ */
.to-pagetop a {
	background:url(http://parts.blog.livedoor.jp/img/usr/default_2012/common/to_pagetop.png) 0 0 no-repeat;
	display: block;
	width: 70px;
	height: 70px;
	text-indent:-9999px;
}
.to-pagetop a {
	opacity: 0.6;
		-webkit-transition: opacity linear 0.1s;
		-moz-transition: opacity linear 0.1s;
		-ms-transition: opacity linear 0.1s;
		-o-transition: opacity linear 0.1s;
		transition: opacity linear 0.1s;
}
.to-pagetop a:hover {
	opacity: 0.9;
}

/* フリーエリアのプロフィール */
.name {
	color: #333333;
	font-size: 16px;
	font-weight: bold;
	margin: 30px 0 0 !important;
}
.profile-text dt.name {
	text-align:center;
}
.profile-text dd.name-ruby {
	font-size: 13px;
	color: #b8b8b8;
	margin: 0;
	text-align:center;
}
.profile-text{
	font-size: 13px;
	color: #666;
}
.profile-text dl{
	margin-bottom: 30px; 
	line-height: 21px;
}
.profile-text dt{
	font-weight: bold;
	color: #333;
	padding-bottom: 10px;
	text-align:left;
}
.profile-text dd{
	text-align:left;
}

/* 検索ブログパーツ */
.sidewrapper input.sf, .sidewrapper input.sfbtn{
	height: 35px;
}
.sidewrapper input.sf{
	background: none;
	border: 1px solid #e4e4e4;
	border-radius: 0;
	box-shadow: none;
	width: 78%;
	padding: 10px;
}
.sidewrapper input.sfbtn{
	background: #bbbbbb;
	color: #fff;
	text-shadow: none;
	border: none;
	border-radius: 0;
	width: 20%;
}
.sidewrapper input.sfbtn:hover{
	color: #fff;
}

/* 最新記事 */
.side ul.recent-article-image li img{
	margin: 0 15px 0 0;
}

.side ul.recent-article-image li a{
	display: table-cell;
	vertical-align: middle;
	font-size: 14px;
	line-height: 21px;
}

/* 月別アーカイブパーツ */

.sidebody .year{
	font-size: 13px;
	padding-left: 12px;
	background: url("http://parts.blog.livedoor.jp/img/usr/ver06_talent_basis/icons.png") no-repeat 0 -245px;
}
.sidebody .month a{
	font-size: 13px;
	padding-left: 21px;
	color: #ff85a4;
	background: url("http://parts.blog.livedoor.jp/img/usr/ver06_talent_basis/icons.png") no-repeat 10px -245px;
}
.sidebody .month a:visited{
	color: #bfbfbf;
}
.sidebody .month div{
	padding-top: 4px; 
}
