@charset "utf-8";
/* CSS Document */

/* --------------------------------------------- */
/* タイムラインのコンテンツ */
/* --------------------------------------------- */
.timeline_contents {
	padding: 40px 0 120px 0;
	background-color: #fff4c9;
}
.timeline_contents 	.timeline_list {
	/* background-color: #FFCD00; */
	padding: 0px;
	margin-bottom: 40px;
	width: 774px;
	overflow: hidden;
}
.timeline_list ul {
	width:100%;
	min-width:100%;
	/*
	-webkit-column-gap: 12px;
	-moz-column-gap: 12px;
	column-gap: 12px;
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	*/
}
.timeline_list ul li.timeline_item{
	display: inline-block;
	margin: 0 10px 12px 0;
	padding: 0;
	/*
	break-inside: avoid;
	*/
	width: 32%
}
.timeline_list ul li:nth-child(3n){
	margin-right: 0;
}

.timeline_list ul li .body p img{
	height: 16px;
	width: auto;
}

.timeline_item .head{
	background-color: #766060;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #FFFFFF;
}

.timeline_item .head .time {
	font-size: 11px;
}
.timeline_item .head figure.img_icon {
	width: 50px;
	min-width: 50px;
	height: 50px;
	overflow: hidden;
	border-radius: 50%;
	margin-right: 10px;
}
.timeline_item .head figure.img_icon img {
	width: 100%;
	display: block;
}
.timeline_item .head .contributor {
    font-size: 12px;
}
.timeline_item .head .contributor a {
	color: #FFFFFF;
}

.timeline_item .head .contributor > span {
	color: #FFFFFF;
	display: block;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
.timeline_item .head .contributor > span.area {
	font-size: 12px;
	line-height: 1;
	margin-bottom: 2px;
}
.timeline_item .head .contributor > span.shop_name {
	font-size: 14px;
	line-height: 1;
	margin-bottom: 4px;
} 
.timeline_item .head .contributor > span.cast_name {
	font-size: 14px;
	line-height: 1;
	font-weight: bold;
}
.timeline_item .body {
	background-color: #FFFFFF;
	padding: 10px 10px 20px 10px;
	color: #766060;
	border: solid 1px #766060;
}
.timeline_item .body video, 
.timeline_item .body img {
	max-width: 100%;
	height: auto;
}
.timeline_item .body p {
	display: block;
	margin-bottom: 10px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
}
.timeline_item .tweet_img {
	display: block;
	overflow: hidden;
	border-radius: 4px;
}
.timeline_item .tweet_img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.timeline_item .time {
	display: block;
	font-size: 14px;
}

.timeline_item .foot {
	padding: 0px 30px 20px 30px;
	background-color: #FFFFFF;
}
.timeline_item a.btn {
	position: relative;
	display: block;
	background-color: #ffe061;
	padding: 13px 26px;
	border-radius: 5px;
	font-size: 16px;
	line-height: 1;
	color: #333333;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 3px 3px 0 rgb(0 0 0 / 24%);
}
.timeline_item a.btn:hover {
	top: 3px;
	 box-shadow: 0 0px 2px 0 rgb(0 0 0 / 35%);
}
.timeline_item a.btn::after {
	content: '\f105';
	font-family: FontAwesome;
	font-size: 120%;
	margin-left: 10px;
}


@media screen and (max-width: 760px) {
	.timeline_contents .timeline_list {
		margin-bottom: 3vw;
	}
	.timeline_contents {
		padding: 10vw 4vw 20vw 4vw;
	}
	.timeline_item .head {
		padding: 3vw;
	}
	.timeline_item .head .contributor > span.area {
		font-size: 3vw;
		line-height: 1;
		margin-bottom: 0.7vw;
	}
	.timeline_item .head .contributor > span.shop_name {
		font-size: 3.4vw;
		line-height: 1;
		margin-bottom: 1vw;
	}
	.timeline_item .head figure.img_icon {
		width: 9vw;
		min-width: 9vw;
		height: 9vw;
		margin-right: 2vw;
	}
	.timeline_list ul {
		width: 100% !important;
		padding: 0;
		height: auto !important;
	}
	.timeline_list ul li.timeline_item {
		width: 100%;
		margin: 0px 0px 6vw 0;
		position: relative !important;
		top: auto !important;
		left: auto !important;
	}
	.timeline_item .body p {
		margin-bottom: 2vw;
	}
	.timeline_item .time {
		font-size: 3vw;
	}
	.timeline_item .head .contributor > span.cast_name {
		font-size: 3.4vw;
	}
	.timeline_item .body {
		padding: 2vw 2vw 4vw 2vw;
	}
	.timeline_item a.btn {
		padding: 3vw 4vw;
		font-size: 4vw;
	}
}

