@charset "utf-8";

#topics_area {
	background: url("../img/topics_bg.jpg") top center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 30px;
	margin-bottom: 40px;
}
/******************** topics ********************/
#topics {
	width: 505px;
}
#topics dl {
	text-align: left;
	height: 410px;
	overflow-x: hidden;
	overflow-y: scroll;
}
#topics dt {
	margin-right: 10px;
	float: left;
}
#topics .pic {
	margin: 0 3px 5px;
	text-align: center;
}
#topics .pic img {
	width: 190px;
	height: 190px;
	object-fit: cover;
	object-position: top;
}
#topics dd {
	margin: 0 10px 20px 0;
	padding-bottom: 20px;
	border-bottom: 1px dotted #444;
}
#topics .date {
	color: #367f97;
	font-weight: bold;
	font-size: 14px;
}
#topics .title {
	display: block;
	color: #ff496b;
	font-weight: bold;
	line-height: 120%;
	margin: 3px 0 8px;
}
#topics .comment {
	padding-right: 15px;
}
/******************** newface ********************/
#newface .inner {
	text-align: left;
	width: 505px;
	height: 410px;
	overflow-x: hidden;
	overflow-y: scroll;
}
#newface a {
	display: block;
	color: #000;
}
.wrap {
	display: flex;
	justify-content: flex-start;
	background: url("../../img/topics_bg.jpg") top center;
}
.wrap p.pic img {
	width: 190px;
	height: 190px;
	object-fit: cover;
	object-position: top;
}
li.type {
	background: #dfd187;
	padding: 0 10px;
	line-height: 30px;
	color: #fff;
	text-align: center;
	font-size: 12px;
	width: 310px;
}
.wrap {
	margin-bottom: 10px;
}
.wrap dl {
	text-align: left;
	line-height: 40px;
	padding: 10px 0 0 20px;
}
.wrap dt {
	color: #888;
	clear: left;
	float: left;
	width: 30%;
}
.wrap dd {
	width: 90%;
	font-size: 17px;
}
/********************/
#topics dl::-webkit-scrollbar, #newface .inner::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
#topics dl::-webkit-scrollbar-button, #newface .inner::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
#topics dl::-webkit-scrollbar-thumb, #newface .inner::-webkit-scrollbar-thumb {
  background: #ccc;
  border: 0px none #ffffff;
  border-radius: 50px;
}
#topics dl::-webkit-scrollbar-thumb:hover, #newface .inner::-webkit-scrollbar-thumb:hover {
  background: #999;
}
#topics dl::-webkit-scrollbar-thumb:active, #newface .inner::-webkit-scrollbar-thumb:active {
  background: #999;
}
#topics dl::-webkit-scrollbar-track, #newface .inner::-webkit-scrollbar-track {
  background: #f0f0f0;
  border: 0px none #fff;
  border-radius: 50px;
}
#topics dl::-webkit-scrollbar-track:hover, #newface .inner::-webkit-scrollbar-track:hover {
  background: #f0f0f0;
}
#topics dl::-webkit-scrollbar-track:active, #newface .inner::-webkit-scrollbar-track:active {
  background: #f0f0f0;
}
#topics dl::-webkit-scrollbar-corner, #newface .inner::-webkit-scrollbar-corner {
  background: transparent;
}

/******************** home ********************/
div#home_contents {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
#side {
	width: 220px;
}
#side iframe {
	margin-bottom: -40px;
}
#side p {
	margin-bottom: 12px;
}
#main {
	width: 850px;
}
/******************** main ********************/
ul.schedule {
	margin: 0 -23px 40px 0;
}
/******************** bottom banner ********************/
ul#bottom_banner {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
    margin-bottom: 30px;
}
ul#bottom_banner li {
	margin-bottom: 10px;
}
/******************** side ********************/
ul.shame {
	text-align: center;
	margin-bottom: 50px;
}
ul.shame a {
	display: block;
}
ul.shame .pic img {
	object-fit: cover;
	width: 220px;
	height: 150px;
	vertical-align: bottom;
}
ul.shame .title {
	text-align: left;
	display: block;
	background-color: rgba(0, 0, 0, 0.5);
	background: rgba(0, 0, 0, 0.5);
	color: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 11px;
	position: relative;
	top: -26px;
	width: 220px;
	height: 26px;
	padding: 2px 3px 4px 7px;
	position: relative;
	overflow: hidden;
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: break-all;
	margin-bottom: -23px;
}
ul.shame .name {
	color: #000;
	font-weight: bold;
	float: left;
}
ul.shame .date {
	color: #999;
	font-size: 12px;
	margin-bottom: 8px;
	float: right;
}

.bx_wrap {
	width: 1100px;
	margin: 0 auto;
	text-align: center;
}

/* よく使いそうな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用 */  
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#066));　/* Safari,Google Chrome用 */  
}

@media screen and (min-width: 320px) and (max-width: 650px){
}

