/* 新着お知らせセクション（front-newsの代わり） */
.front-news {
	background: #fff;
	padding: 40px 0 50px;
}
.front-news .st-contentWrap {
	max-width: 1158px;
	margin: 0 auto;
	padding: 0 15px;
}

/* 横幅を倍に（元 ~500px → ~1000px） */
.front-news .front-update__wrap.is-news {
	border: 1px solid #eee;
	padding: 30px 30px;
	margin: 0 auto;
	max-width: 1000px;
	width: 100%;
}

.front-news .front-update__info {
	margin-bottom: 15px;
}

.front-news .front-heading {
	font-size: 28px;
	color: #333;
	font-weight: bold;
	text-align: center;
}
.front-news .front-heading span {
	display: block;
	font-size: 14px;
	color: #00a1e9;
	font-weight: normal;
	margin-top: 5px;
	font-family: 'Lato', sans-serif;
}

.front-news .front-update__list {
	position: relative;
	list-style: none;
	padding: 0;
	margin: 0;
	max-height: 235px;
	overflow: auto;

	-webkit-mask-image: linear-gradient(
			to bottom,
			transparent 0px,
			black 15px,
			black calc(100% - 15px),
			transparent 100%
	);
	mask-image: linear-gradient(
			to bottom,
			transparent 0px,
			black 15px,
			black calc(100% - 15px),
			transparent 100%
	);
}
.front-news .front-update__list li {
	border-bottom: 1px solid #eee;
	font-size: 15px;
	line-height: 1.8;
}
.front-news .front-update__list li a {
	display: block;
	padding: 12px 0;
	color: #333;
	text-decoration: none;
	transition: color 0.2s;
}
.front-news .front-update__list li a:hover {
	color: #00a1e9;
}
.front-news .front-update__list time {
	display: inline-block;
	color: #a4a4a4;
	font-size: 15px;
	margin-right: 35px;
	font-family: 'Lato', sans-serif;
}

.front-news .front-update__button {
	margin-top: 20px;
	text-align: center;
}

@media only screen and (max-width: 768px) {
	.front-news .front-update__wrap.is-news {
		padding: 30px 15px;
	}
}

/* sw-button 上書き修正（お知らせ一覧ボタン） */
.front-news .sw-button.is-small a {
	display: inline-block;
	min-width: 240px;
	padding: 16px 50px 16px 30px;
	border: 1px solid #00a1e9 !important;
	color: #fff !important;
	background: #00a1e9 !important;
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	position: relative;
	transition: all 0.3s;
	box-sizing: border-box;
}
.front-news .sw-button.is-small a:after {
	content: "" !important;
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 9px;
	height: 9px;
	border-top: 2px solid #fff !important;
	border-right: 2px solid #fff !important;
	transform: rotate(45deg);
	transition: border-color 0.3s;
	background: none !important;
	background-image: none !important;
}
.front-news .sw-button.is-small a:hover {
	background: #fff !important;
	color: #00a1e9 !important;
}
.front-news .sw-button.is-small a:hover:after {
	border-top-color: #00a1e9 !important;
	border-right-color: #00a1e9 !important;
	background: none !important;
	background-image: none !important;
}