/*
Template:graphy
Theme Name:graphy_child
*/

/* 全体 */
body {
	color: #333;
}
body #page {
	width: 90%;
	margin: 0 auto;
}

/* 2カラム時のメイン幅変更 */
@media screen and (min-width: 980px) {
	.content-area {
	    width: 65%;
		padding-right: 0;
		border-right: none;
	}
}

/* サイトサブタイトル */
.site-description {
	color: #777;
    font-style: normal;
    line-height: 1.4;
    font-size: 14px;
    letter-spacing: -1px;
}

/* 固定ページ 記事タイトル */
body.page .entry-header { text-align: center; }
body.page .entry-title {
	position: relative;
	display: inline-block;
	padding: 0 55px;
}
body.page .entry-title:before,
body.page .entry-title:after{
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 45px;
	height: 1px;
	background-color: black;
}
body.page .entry-title:before {left:0;}
body.page .entry-title:after {right: 0;}

/* 固定ページ 記事サブタイトル */
body.page .entry-subtitle {
	position: relative;
	font-size: 2rem;
	padding-bottom: 0.3em;
	letter-spacing: -2px;
}

body.page .entry-subtitle:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 7px;
	background: -webkit-repeating-linear-gradient(-45deg, #ccc, #ccc 2px, #fff 2px, #fff 4px);
	background: repeating-linear-gradient(-45deg, #ccc, #ccc 2px, #fff 2px, #fff 4px);
}

/* 固定ページ「はじめに」プロフィール定義リスト */
.profile_dl {
	border-bottom: 1px solid #ccc;
}
.profile_dl dt {
	clear: left;
	float: left;
	width: 25%;
	margin: 0;
	padding: 2% 2% 1.5% 2%;
	font-weight: bold;
	line-height: 1.4;
	border-top: 1px solid #ccc;
}
.profile_dl dd {
	margin: 0 0 0 29%;
	padding: 2% 2% 1.5% 2%;
	line-height: 1.4;
	border-top: 1px solid #ccc;
}

/* 投稿タイトル部下マージン調整 */
.entry-header {
    margin-bottom: 50px;
}

/* 投稿ページ投稿者名の非表示と
　　投稿タイトル直下のmargin調整、
　　リンク下線非表示 */
.entry-meta {
	margin-top: 5px;
}
.entry-meta a {
	border-bottom: none;
}
.entry-meta .byline,
.entry-meta .entry-meta-sep,
.entry-meta .comments-link {
	display: none;
}

/* 投稿ページの
　　コメントエリアと投稿者プロフエリア非表示 */
.author-profile, .comments-area {
	display: none;
}

/* サイドバーウィジェットタイトル */
.widget-title {
	position: relative;
	padding: 0.8em 1em;
	background: #333;
	color: #fff;
	font-weight: normal;
	border-radius: 4px;
}
.widget-title:after {
	position: absolute;
	content: '';
	top: 100%;
	left: 25px;
	border: 7px solid transparent;
	border-top: 15px solid #333;
	width: 0;
	height: 0;
}

/* フッター文字カラー変更 */
.site-bottom {
	color: #666;
}
