@charset "utf-8";

/******************** movie ********************/
ul.movie {
	text-align: left;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: stretch;
}
ul.movie li {
	width: 158px;
	text-align: center;
	margin: 0 5px;
	margin-bottom: 10px;
	border: 1px solid #000;
	padding: 1px;
}
.relative {
    position: relative;
	width: 154px;
	height: 80px;
	overflow: hidden;
}
.relative img {
	width: 154px;
	height: 80px;
	object-fit: cover;
	object-position: 50% 10%;
}
.absolute {
    position: absolute;
	object-fit: none !important;
	top: 20px;
	left: 0px;
}
div.pf {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 5px 2px 2px;
}
.name {
	display: block;
	text-align: left;
	line-height: 16px;
	font-weight: bold;
}
.name a {
	color: #000;
	font-weight: normal;
	font-size: 12px;
}
.shame {
	margin-top: -1px;
}
.shame a {
	background: #ff65a6;
	border: 1px solid #ffbfda;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	display: block;
	line-height: 16px;
	width: 50px;
	text-align: center;
	color: #fff;
	font-size: 11px;
	letter-spacing: -0.1em;
}

.movie{
	width:100%;
}
.movie li{
	width:47%;
}

/******************** personal ********************/
div.personal {
	width: 95%;
	margin: 20px auto 0;
	text-align: center;
}
video {
	width: 100%;
	max-width: 620px;
	height: auto;
	object-fit: cover;
	object-position: 50% 10%;
}
div.personal div.pf {
	display: inherit;
	padding: 10px 0 0;
}
div.personal div.pf a {
	font-weight: bold;
	font-size: 18px;
	display: block;
	line-height: 180%;
}
.shame2 a {
	margin: 10px auto 0;
	background: #ff65a6;
	border: 2px solid #ffbfda;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	display: block;
	line-height: 22px !important;
	width: 100px;
	text-align: center;
	color: #fff;
	font-size: 15px !important;
	font-weight: normal !important;
	letter-spacing: 0.05em;
}


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