@charset "UTF-8";
.story04 .mainvisual .mainvisual-img-wrap {
	background: url(../images/story/story04-mainvisual.webp) no-repeat center/cover
}
.story-section .interview-box .column p.title {
	color: #f50000;
	font-weight: 700;
	margin-bottom: 20px;
}
p.point_title {
	padding: 7px 15px;
	background-color: #f8b500;
	color: #ffffff;
	font-weight: bold;
	margin-bottom: 10px;
}
ul.point {}
ul.point li {
	background-color: #FFF;
	padding: 10px 20px;
	margin-bottom: 10px;
	font-size: 90%;
}
ul.univ_list {
	display: flex;
	justify-content: space-between; /* 両端揃え */
	gap: 10px; /* 子要素同士の隙間 */
}
ul.univ_list li {
	flex-basis: 23%;
}
ul.univ_list li img {
	width: 100%;
}
ul.univ_list li p {
	font-size: 80%;
	line-height: 1.5;
	margin-top: 10px;
}
.interview-box .point-img.two {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 0;
	margin-top: 20px;
}
.interview-box .point-img.two img {
	/*width: 100%;*/
	display: block;
	width: 48%;
}
.none_pc {
	display: none !important;
}
.none_sp {
	display: block !important;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
	ul.univ_list {
		flex-wrap: wrap; /* 要素の折り返しを許可 */
	}
	ul.univ_list li {
		flex-basis: 48%;
	}
	ul.univ_list li p {
		font-size: 80%;
		line-height: 1.5;
		margin-top: 10px
	}
	.none_pc {
		display: block !important;
	}
	.none_sp {
		display: none !important;
	}
}