/*********************************
検索結果（container-cast-box）
*********************************/
.container-cast-box
{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.cast-box:first-child,
.cast-box:nth-child(2) {
	border-top: #f1f1f1 solid thin;
}
.cast-box
{
	display: flex;
	border-bottom: #f1f1f1 solid thin;
	border-collapse: collapse;
    position: relative;
    padding: 10px;
	width : -webkit-calc(100% / 2);
    width : calc(100% / 2);
    height: 240px;
	font-size: 14px;
}
/* 画像枠 */
.cast-box-wrap-img
{
	width: 25%;
}
.cast-box-wrap-img:hover
{
	opacity: 0.5;
}
.cast-box-wrap-img img
{
	object-fit: cover;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: block;
	margin-bottom: 1px;
}
/* テキスト枠 */
.cast-box-wrap-text
{
	width: 75%;
	text-align: left;
    padding-left: 20px;
	line-height: 1.6;
}
.cast-box-wrap-text-name
{
    line-height: 1.4;
}
/* タイトル */
.drama-name
{
	/* font-size: 20px; */
    font-size: 18px;
    margin-bottom: 6px;
	display: -webkit-box;
	/* 1行まで表示 */
    -webkit-line-clamp: 1; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.drama-name a
{
    font-weight: bold;
}

.drama-name:hover
{
	opacity: 0.5;
}
.genre-div
{
	display: flex;
	margin-top: 5px;
	margin-bottom: 6px;
    border-radius: 3px;
	white-space: nowrap; /* テキストを折り返し禁止 */
    overflow: hidden; /* 要素からはみ出た部分を非表示にする */
    flex-wrap: nowrap;
    overflow-x: scroll;
}
.genre-div p
{
	background-color: #eee;
    border-radius: 10px;
    padding: 4px 8px;
	margin-right: 2px;
	display: inline;
	line-height: 1;
	font-size: 12px;
	letter-spacing: 0;
}
.genre-div p:hover
{
	opacity: 0.5;
}
.genre-div a
{
	color: #696969;
	font-weight: normal;
	font-size: 12px;
}
/* イントロ紹介文 */
.intro {
	font-size: 14px;
	line-height: 1.4;
	margin-bottom: 14px;
	/* 2行まで表示 */
	display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.intro p a
{
	font-weight: normal;
}
/* 話数 */
.drama-small
{
    margin-bottom: 14px;
	font-size: 12px;
}
/* vodボタンエリア */
.vod-btn-area-flex
{
    display: flex;
    width: 100%;
    text-align: center;
}
/* vodボタン */
.vod-btn-area-div
{
    /* width: 9%; */
	width: 38px;

}
.vod-btn-area-div:hover
{
    opacity: 0.5;
}
/* vodボタン内の余白 */
.vod-btn-area-div-in
{
	display: flex;
    justify-content: center;
	margin: 0 3px;
}
/* vod画像 */
.vod-btn-area-div-in img
{
	display: block;
	width: 100%;
	background-color: #fff;
	border-radius: 3px;
	opacity: 0.8;
	width: 32px;
	height: 32px;
}
/*********************************
snsアイコングループ
*********************************/
.sns-div
{
    text-align: center;
    line-height: 1;
    margin-top: 12px;
	margin-bottom: 0;
}
.sns-icons
{
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.sns-icons li
{
	margin-right: 12px;
	align-items: center;
}
.sns-icon
{
	max-width: 20px;
    object-fit: contain;
    object-position: center;
}
.sns-icon:hover
{
	opacity: 0.5;
}
/* --------------------------------------------------------
レスポンシブ
最大幅820px以下の画面に対して適用
---------------------------------------------------------*/
@media (max-width: 820px) {

	/*********************************
	検索結果（container-cast-box）
	*********************************/
	.cast-box:nth-child(2)
	{
		border-top: none;
	}
	.container-cast-box
	{
		display: block;
	}
	.cast-box
	{
		width: 100%;
	}
	/* 画像枠 */
	.cast-box-wrap-img
	{
		width: 35%;
	}
	.cast-box-wrap-img:hover
	{
		opacity: 1;
	}
	/* テキスト枠 */
	.cast-box-wrap-text
	{
		width: 65%;
		padding-left: 10px;
	}
	.genre-div a
	{
		color: #333;
		font-size: 12px;
	}
	.drama-name
	{
		/* font-size: 4.73vmin; */
		font-size: 18px;
	}

	.drama-name a
	{
		color: #333;
	}

	.drama-small {
		font-size: 14px;
		margin-bottom: 10px;
	}
	/* イントロ紹介文 */
	.intro
	{
		-webkit-line-clamp: 3;
		letter-spacing: 0;
		margin-bottom: 10px;
	}
	/* vodボタンエリア */
	.vod-btn-area-flex
	{
		justify-content: flex-end;
	}
	/* vodボタン */
	/* .vod-btn-area-div
	{
		width: 18%;
	} */
	.role-name
	{
		font-size: 12px;
	}
	.role-content
	{
		font-size: 12px;
	}
	/*********************************
    snsアイコングループ
    *********************************/
    .sns-icons
    {
        justify-content: flex-end;
    }
}