@charset "utf-8";

/******************** newface ********************/
#newface {
	margin-bottom: 30px;
}
#newface .box {
	width: 100%;
	margin-bottom: 15px;
}
#newface .wrap {
	background: url("/wp-content/uploads/2025/04/topics_bg.jpg") top center;
	border: 1px solid #c6ad61;
	padding: 10px;
	margin: 0 10px;
}
#newface p.date {
	background: #74d0f4;
	color: #fff;
	width: 150px;
	margin: 0 auto;
	line-height: 15px;
	padding: 3px 5px 4px;
	text-align: center;
	border: 2px solid #c1eeff;
	border-bottom: none;
}
#newface p.pic img {
	width: 220px;
	height: auto;
	object-fit: cover;
	object-position: top;
	margin-bottom: 5px;
}
#newface ul {
}
#newface .name {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 3px;
}
#newface .size {
	font-size: 15px;
	color: #38b487;
	margin-bottom: 4px;
}
#newface .type {
	background: #4bdfc8;
	background: rgba(75,223,200,0.7);
	padding: 4px 0;
	color: #fff;
	line-height: 120%;
	margin: 0 -10px 10px;
}
#newface .comment {
	height: 200px;
	text-align: left;
	overflow-x: hidden;
	overflow-y: scroll;
}
/******************** topics ********************/
#topics dl {
	text-align: left;
	margin: 0 0 30px;
}
#topics dt {
	margin-bottom: 15px;
	padding: 0 10px;
}
#topics dt .date {
	color: #367f97;
	font-weight: bold;
	font-size: 13px;
}
#topics dt .title {
	display: block;
	color: #ff496b;
	font-weight: bold;
	margin-top: 3px;
}
#topics dd {
	padding: 0 10px 20px;
	margin: 8px 0 20px;
	border-bottom: 1px dotted #444;
}
#topics div.pic {
	margin: 0 3px 15px;
	text-align: center;
}
#topics div.pic img {
	width: 100px;
	height: auto;
}
#topics div.comment {
}
/********************/
/******************** archive ********************/
h3 {
	background: #82e8d8;
	color: #fff;
	text-align: center;
	margin-bottom: 20px;
	line-height: 26px;
}
#archive dl {
	margin: 0 10px;
	text-align: left;
}
#archive dt {
	margin-bottom: 3px;
}
#archive dd {
	margin: 0 0 8px 10px;
	font-weight: bold;
}
ul.page {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}
ul.page li {
	margin: 0 10px;
}
ul.page li a {
	width: 100px;
	padding: 0 10px;
	line-height: 20px;
	background: #333;
	color: #fff;
	border: 2px solid #888;
}
ul.page li a:hover {
	background: #888;
}


/* よく使いそうなCSS3
----------------------------------------------------*/
#selectors {
/* 角丸 */
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;

/* 角丸個別 */
	-webkit-border-top-right-radius: 15px;
	-moz-border-radius-topright: 15px;
	border-top-right-radius: 15px;

/* ボックスに影 */
	-webkit-box-shadow: 1px 1px 3px #999;
	-moz-box-shadow: 1px 1px 3px #999;
	box-shadow: 1px 1px 3px #999;

/* テキストに影 */
	text-shadow: 1px 1px 0px #999;

/* グラデーション */
    background: -moz-linear-gradient(top, #f5f5f5, #fff);　/* Firefox用 */  
  
