@charset "utf-8";
/* CSS Document */

/******************** top ********************/
.slider {
	width: 100%;
	height: auto;
	text-align: center;
    margin-top: 40px;
}
/****************************************/
#topics {
	height: 400px;
    padding: 25px 25px 25px 35px;
	background: #333;
	text-align: left;
}
#topics ul {
	padding-top: 5px;
	height: 350px;
	overflow-y: scroll;
	overflow-x: hidden;
}
#topics li {
    margin-bottom: 40px;
}
#topics .topics_img {
	float: left;
	margin: 0 15px 20px 0;
	width: 300px;
}
#topics .topics_img img {
	width: 300px;
	height: 300px;
    object-fit: cover;
    object-position: 0% 0%;
	margin-bottom: 10px;
}
#topics dl {
	float: left;
	text-align: left;
	width: 750px;
	overflow: hidden;
}
#topics dt {
	color: #999;
	padding: 0 15px;
    margin-bottom: 10px;
}
#topics dd {
	margin: 0 2px 30px;
}
#topics dd .title {
	width: 750px;
    padding: 8px 15px;
	background: #000;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}
#topics dd .topics_body {
	margin: 15px 15px 0;
}
/****************************************/
ul.shame {
	text-align: center;
	margin: 50px 0;
    display: flex;
    justify-content: flex-start;
    width: 1170px;
    overflow-y: hidden;
    overflow-x: auto;
    padding: 0 0 20px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
ul.shame li {
    width: 200px;
    margin: 0 20px 0 0;
}
ul.shame a {
	display: block;
}
ul.shame .pic img {
	object-fit: cover;
	width: 200px;
	height: 200px;
	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: 13px;
	position: relative;
	top: -26px;
	width: 220px;
	height: 26px;
	padding: 2px 3px 4px 7px;
	overflow: hidden;
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: break-all;
	margin-bottom: -23px;
}
ul.shame .name {
	color: #fff;
	font-weight: bold;
	float: left;
}
ul.shame .date {
	color: #999;
	font-size: 12px;
	margin-bottom: 8px;
	float: right;
}
/********************/
ul.shame::-webkit-scrollbar, #topics ul::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
ul.shame::-webkit-scrollbar-button, #topics ul::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
ul.shame::-webkit-scrollbar-thumb, #topics ul::-webkit-scrollbar-thumb  {
  background: #ccc;
  border: 0px none #ffffff;
  border-radius: 8px;
}
ul.shame::-webkit-scrollbar-thumb:hover, #topics ul::-webkit-scrollbar-thumb:hover {
  background: #a3a3a3;
}
ul.shame::-webkit-scrollbar-thumb:active, #topics ul::-webkit-scrollbar-thumb:active {
  background: #858585;
}
ul.shame::-webkit-scrollbar-track, #topics ul::-webkit-scrollbar-track {
  background: #222;
  border: 0px none #ffffff;
  border-radius: 50px;
}
ul.shame::-webkit-scrollbar-track:hover, #topics ul::-webkit-scrollbar-track:hover {
  background: #222;
}
ul.shame::-webkit-scrollbar-track:active, #topics ul::-webkit-scrollbar-track:active {
  background: #222;
}
ul.shame::-webkit-scrollbar-corner, #topics ul::-webkit-scrollbar-corner {
  background: transparent;
}
/****************************************/
ul.movie {
	display: flex;
	justify-content: center;
	margin: 50px auto 30px;
}
ul.movie li {
	margin: 0 5px;
}
video {
	width: 100%;
	min-width: 200px;
	max-width: 1000px;
	height: auto;
	object-fit: cover;
	object-position: 50% 10%;
}
video.original {
	width: 100%;
	min-width: 200px;
	max-width: 700px;
	height: auto;
	object-fit: cover;
	object-position: 50% 10%;
}


/* よく使いそうな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用 */  
}


/********************
* html  IE6
*:first-child+html  IE7
head~/* */body  IE8/*
html>body  Firefox
body:last-child  Opera
html:not([lang*=""])  Firefox
html:not(:only-child:only-child)  Safari
********************/
  