/***** デフォルトはスマートフォン *****/
/* ----- 各ページ共通 -----*/
.tou-inner{
	max-width: 98%;
	margin: auto;
}
.tou-inner h2{
	margin-left: 1rem;
}
.tou-item {
	margin: 15px;
	padding: 10px;
}
.tou-item-inner {
	display: block;
	background: #fff;
	text-decoration: none;
	color: #333;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}
.tou-content {
	padding: 15px;
}

.tou-category {
	display: inline-block;
	background: #4DB8FF;
	color: #fff;
	font-size: 11px;
	padding: 4px 10px;
	border-radius: 20px;
	margin: 10px;
}

.tou-h3 {
	font-size: 1.2rem;
	line-height: 1.4;
	margin-bottom: 15px;
	margin-left: 5px;
}

.tou-thumb {
	float: left;
	width: 110px;
/*	aspect-ratio: 1/1; */
	margin: 0 10px 10px 5px;
/*	overflow: hidden; */
	border-radius: 12px;
}

.tou-thumb img {
	width: 100%;
	height: 100%;
/*	object-fit: cover; */
/*	transition: .4s; */
}

.tou-text {
	font-size: 14px;
	line-height: 1.8;
	color: #666;
}

.tou-info {
	clear: both;
	margin-top: 15px;
	font-size: 13px;
	color: #999;
}
/**==================================================**/
/**=          画面サイズ768px以上の指定              **/
/**==================================================**/
@media screen and (min-width:768px) {
	.tou-item {
		max-width: 98%;
		margin: 10px auto;
	}
	.tou-body {
		display: flex;
		gap: 24px;
	}
	.tou-h3{
		margin-left: 10px;
	}
	.tou-thumb {
		flex: 0 0 220px;
		width: 220px;
		float: none;
		margin: 0 10px 10px 10px;
	}

	.tou-right {
		flex: 1;
		min-width: 0;
		display: flex;
		flex-direction: column;
	}

	.tou-text {
		line-height: 1.8;
	}

	/* これが重要 */
	.tou-info {
		gap: 30px;
		padding-top: 15px;
		clear: none;
		margin-top: auto;
	}

	.tou-info span {
		display: block;
	}
}
/**==================================================**/
/**=          画面サイズ960px以上の指定              **/
/**==================================================**/
@media screen and (min-width:960px) {
	.tou-inner{
		max-width: 1280px;
	}
	.tou-item {
		max-width: 1200px;
	}

	.tou-thumb {
		flex-basis: 260px;
		width: 260px;
	}

	.tou-h3 {
		font-size: 1.4rem;
	}
}