/*
Theme Name: Exciteblog Style
Theme URI: https://example.com/
Author: Your Name
Description: エキサイトブログ「自己満足のブログ」風デザインを再現したWordPressテーマ。サイドメニュー＋本文2カラム構成。
Version: 1.0
Requires at least: 5.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: exciteblog-style
*/

/* ===== base ===== */
* { box-sizing: border-box; }

body {
	background: #C6C7BD;
	margin: 0;
	padding: 0;
}

body, td, div, li, p {
	font-size: 14px;
	font-family: "MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
	line-height: 150%;
	color: #000000;
}

a:link { color: #000080; text-decoration: none; }
a:visited { color: #800000; text-decoration: none; }
a:active { color: #800000; text-decoration: none; }
a:hover { color: #800000; text-decoration: underline; }

img { max-width: 100%; height: auto; }

/* ===== layout ===== */
.wrapper {
	width: 800px;
	margin: 0 auto;
	padding-top: 30px;
}

.site-header {
	font: bold 18px "Courier New", Tahoma, sans-serif;
	text-align: left;
	margin-top: 1px;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-header a:link,
.site-header a:visited,
.site-header a:hover {
	color: #000000;
	text-decoration: none;
}

.layout {
	display: flex;
	align-items: flex-start;
	width: 800px;
}

.sidebar {
	width: 150px;
	flex: 0 0 150px;
	text-align: left;
}

.gutter {
	width: 50px;
	flex: 0 0 50px;
}

.content {
	width: 600px;
	flex: 0 0 600px;
}

/* ===== sidebar widgets ===== */
.widget {
	font-size: 12px;
	text-align: left;
	margin-bottom: 25px;
}

.widget-title {
	width: 150px;
	font-size: 12px;
	font-weight: bold;
	color: #000000;
	border-bottom: 0px #000000 solid;
	padding: 2px 0 0;
	margin: 0 0 8px;
}

.widget-title .widget-setting {
	font-size: 11px;
	font-weight: normal;
	color: #666666;
	margin-left: 2px;
}

.widget-title .widget-setting:hover {
	color: #800000;
	text-decoration: underline;
}

.admin-quicklinks {
	font-size: 12px;
	text-align: center;
	margin-top: 10px;
}

.admin-quicklinks a {
	text-decoration: none;
}

.admin-quicklinks a:hover {
	text-decoration: underline;
}

.admin-quicklinks .sep {
	color: #000000;
	margin: 0 4px;
}

.widget-body {
	width: 150px;
	overflow: hidden;
	font-size: 12px;
}

.widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget li {
	margin-bottom: 4px;
}

.profile {
	width: 150px;
	padding: 0 0 10px;
	line-height: 130%;
	overflow: hidden;
	text-align: center;
	font-size: 12px;
}

/* ===== posts ===== */
.post {
	margin-bottom: 50px;
	text-align: left;
}

.post-head {
	color: #000000;
	font-weight: bold;
	border-bottom: 1px #000000 solid;
	margin-bottom: 15px;
	padding-bottom: 3px;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}

.post-title {
	font: bold 15pt/130% sans-serif;
	margin: 0;
}

.post-title a {
	color: #000000;
}

.post-admin {
	font-size: 11px;
	font-weight: normal;
	white-space: nowrap;
}

.post-body {
	line-height: 150%;
	width: 600px;
	margin-bottom: 30px;
	overflow: hidden;
}

.post-body img {
	margin-bottom: 15px;
}

.post-tail {
	font: 11px/150% Tahoma, sans-serif;
	margin-top: 10px;
	text-align: right;
}

.post-tail a {
	margin-left: 4px;
}

/* ===== pager ===== */
.pager {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}

.pager .prev { text-align: left; width: 48%; }
.pager .next { text-align: right; width: 48%; }

/* ===== calendar widget ===== */
#wp-calendar {
	width: 150px;
	font: 7pt/170% Verdana, sans-serif;
	text-align: center;
	border-collapse: collapse;
}

#wp-calendar caption {
	font: 8pt/150% Verdana, sans-serif;
	padding: 4px 0;
	margin-bottom: 10px;
}

#wp-calendar th { font: bold 7pt/170% Verdana, sans-serif; text-align: center; }
#wp-calendar td { text-align: center; }
#wp-calendar #today { background: #E3E3E3; color: #3D5586; font-weight: bold; }

/* ===== footer ===== */
.site-footer {
	height: 100px;
}

/* ===== small screens ===== */
@media (max-width: 820px) {
	.wrapper, .layout { width: 100%; padding: 0 10px; }
	.layout { flex-direction: column; }
	.sidebar, .content, .gutter { width: 100%; flex: none; }
	.post-body { width: 100%; }
}
