.framevideos {
	width: 100%;
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	gap: 24px 48px;
}

#contentBody > h2 {
	margin-bottom: 28px;
}

.framevideos a {
	width: calc(50% - 24px);
	display: flex;
	justify-content: space-between;
	gap: 24px;
}

.framevideos a {
	text-decoration: none;
	color: #1B1B1B;
}

.framevideos a .images {
	width: 276px;
	height: 180px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.framevideos a .images img {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	max-width: inherit;
	object-fit: cover;
}

.framevideos a .text {
	width: 276px;
}

time {
	width: 100%;
	flex: 1;
	display: flex;
	padding: 0 32px 16px 0;
	background: url(/shared/images/ico_1.svg) no-repeat 100%
	calc(100% - 16px - 0.25em) / 16px;
	color: var(--textGray);
	font-size: 1.3rem;
}

@media screen and (max-width: 769px) {
	.framevideos {
		gap: 24px;
	}

	.framevideos a {
		width: 100%;
	}

	.framevideos a .images {
		width: 46.5%;
		height: auto;
	}

	.framevideos a .images img {
		width: 100%;
		height: auto;
	}

	.framevideos a .text {
		width: 53.5%;
		height: auto;
	}
}