@charset "UTF-8";
@import "/include/css/common.pc.css";

/* ---------------------------------------------------------
	CSS Document layout
--------------------------------------------------------- */

#blog {
	display: flex;
	justify-content: space-between;
	width: 1000px;
}

#contents {
	width: 700px;
	overflow: hidden;
	text-align: left;
}

#sidebar {
	width: 240px;
	margin-bottom: 70px;
	overflow: hidden;
	text-align: left;
}

#bread li:last-of-type {
	background: none;
}

/* ---------------------------------------------------------
	CSS Document sidebar
--------------------------------------------------------- */

#sidebar h3 {
	margin: 0 0 10px;
	padding-left: 25px;
	background: url(/include/images/f_arrow.png) no-repeat left / 16px auto;
	font-weight: 600;
	font-size: 19px;
}

#sidebar ul {
	margin: 0 0 40px;
}

#sidebar form p {
	margin: 0 0 25px;
}

#sidebar li {
	margin: 0 0 2px;
	padding-left: 20px;
	text-align: left;
	list-style: none;
	position: relative;
}

#sidebar li:before {
	content: '';
	width: 0;
	height: 0;
	border: solid 3px transparent;
	border-left: solid 5px rgba(68, 68, 68, 1);
	position: absolute;
	top: 0.9em;
	left: 7px;
}

#sidebar li a {
	display: block;
	text-decoration: none;
	color: rgba(68, 68, 68, 1);
}

#sidebar li a:hover {
	text-decoration: underline;
}

#sidebar form {
	display: flex;
}

#sidebar input {
	outline: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-collapse: collapse;
	border: 0;
}

#sidebar input[type="search"] {
	width: calc(100% - 60px);
	height: 34px;
	padding: 0 0.5em;
	border: solid 1px #e0e0e0;
	border-right: 0;
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 14px;
}

#sidebar input[type="submit"] {
	width: 60px;
	height: 34px;
	background: #5cadb9;
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 14px;
	color: #fff;
	cursor: pointer;
	transition: opacity .4s;
}

#sidebar input[type="submit"]:hover {
	opacity: 0.6;
}

/* ---------------------------------------------------------
	CSS Document entries
--------------------------------------------------------- */

#entries .entry_list_title {
	padding-bottom: 30px;
	border-bottom: solid 2px #04a6c3;
	font-weight: 700;
	font-size: 30px;
	line-height: 1;
	color: #04a6c3;
}

#entries .entry {
	padding: 30px 0;
	border-bottom: solid 1px #e0e0e0;
	position: relative;
}

#entries .entry a {
	display: block;
	text-decoration: none;
	transition: opacity .4s;
}

#entries .entry a:hover {
	text-decoration: none;
}

#entries .entry .entry_meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

#entries .entry time {
	margin-right: 5px;
	font-size: 17px;
	color: rgba(68, 68, 68, 0.5);
}

#entries .entry .entry_category {
	display: inline-block;
	vertical-align: top;
	height: 25px;
	padding: 0 0.6em;
	background: #04a6c3;
	font-size: 15px;
	line-height: 24px;
	color: #fff;
}

#entries .entry .entry_title {
	font-weight: 600;
	font-size: 18px;
	line-height: 1.5;
	color: rgba(68, 68, 68, 1);
}

#entries .entry_nosearch:before {
	display: block;
	content: '';
	height: 1px;
	margin-bottom: 30px;
	background-image: linear-gradient(to right, #c8c4c1 1px, transparent 1px);
	background-size: 3px 100%;
	background-repeat: repeat-x;
}

/* ---------------------------------------------------------
	CSS Document entry
--------------------------------------------------------- */

#entry .entry_header {
	margin-bottom: 20px;
}

#entry .entry_meta {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
	font-size: 17px;
	line-height: 22px;
	color: rgba(68, 68, 68, 0.5);
}

#entry .entry_category a {
	display: inline-block;
	vertical-align: top;
	height: 19px;
	overflow: hidden;
	padding: 0 1em;
	height: 25px;
	padding: 0 1em;
	background: #04a6c3;
	text-decoration: none;
	font-size: 15px;
	line-height: 24px;
	color: #fff;
}

#entry .entry_title {
	margin-bottom: 40px;
	padding-bottom: 15px;
	border-bottom: solid 2px #04a6c3;
	font-weight: 700;
	font-size: 28px;
	line-height: 1.5;
	color: #04a6c3;
	position: relative;
}

#entry .entry_body {
	padding-bottom: 40px;
	border-bottom: solid 1px #c0c0c0;
	font-size: 16px;
	line-height: 2;
}

#entry .entry_body p {
	margin-bottom: 20px;
}

#entry .entry_body ul {
	margin-bottom: 20px;
	margin-left: 18px;
}

#entry .entry_body ol {
	margin-bottom: 20px;
	margin-left: 24px;
}

#entry .entry_body span {
	font-size: inherit !important;
}

/* ---------------------------------------------------------
	CSS Document pagination
--------------------------------------------------------- */

#pagination {
	margin-top: 30px;
	text-align: center;
}

#pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	list-style: none;
	line-height: 26px;
	position: relative;
}

#pagination li a {
	text-decoration: none;
}

#pagination li.link_page a,
#pagination li.current span {
	display: block;
	width: 28px;
	height: 28px;
	border-radius: 100%;
	background: #e0e0e0;
	color: rgba(68, 68, 68, 1);
	transition: opacity 0.3s;
}

#pagination li a:hover {
	opacity: 0.6;
}

#pagination li.current span {
	background: #ff6594;
	color: #fff;
}

#pagination li.prev,
#pagination li.next {
	position: absolute;
	top: 0;
}

#pagination li.prev {
	left: 0;
}

#pagination li.next {
	right: 0;
}

#pagination li.back a:hover,
#pagination li.prev a:hover,
#pagination li.next a:hover {
	text-decoration: underline;
}

