@charset "utf-8";
/* CSS Document */
/************
　お知らせリスト
*************/
.news-list-wrapper {
	margin: 150px 0;
}
.news-list {
	width: calc( 327 / 375 * 100%);
	margin: 50px auto;
	padding-bottom: 25px;
	border-bottom: 1px solid #E0E0E0;
}
.news-list > a {
	transition: transform 0.3s ease;
}
.news-list > a:hover {
	transform: translateY(-5px);
}
.news-list > .d-flex {
	display: flex;
	justify-content: space-between;
}
@media screen and (min-width: 960px) {
	.news-list {
		width: calc( 854 / 1920 * 100%);
	}
}
.news-list-item > p:nth-child(1) {
	font-size: 12px;
	padding-bottom: 5px;
}
@media screen and (min-width: 960px) {
	.news-list-item > p:nth-child(1) {
		font-size: 14px;
		padding-bottom: 10px;
		color: #F2A65A;
        font-weight: 500;
	}
}
.news-list-item > p:nth-child(2) {
	font-size: 14px;
	padding-bottom: 25px;
}
@media screen and (min-width: 960px) {
	.news-list-item > p:nth-child(2) {
		font-size: 16px;
		padding-bottom: 20px;
	}
}
.arrow{
	position: relative;
	display: inline-block;
	padding: 0 0 0 16px;
	color: #000;
	vertical-align: middle;
	text-decoration: none;
	font-size: 15px;
}
@media screen and (min-width: 960px) {
	.arrow {
		padding: 0 0 0 30px;
	}
}

.arrow::before,
.arrow::after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.news-btn::before{
	width: 30px;
	height: 30px;
	-webkit-border-radius: 25%;
	border-radius: 50%;
	background: #F2A65A;
}
.news-btn::after{
	left: 8px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/************
　　お知らせ
*************/
#news {
	background-color: #EBFAFF;
	border-radius: 20px;
}
.news-content {
	width: calc( 327 / 375 * 100% );
	margin: 150px auto 50px;
	background-color: #fff;
	padding: 50px 20px;
	border-radius: 15px;
}
@media screen and (min-width: 960px) {
	.news-content {
		width: calc( 850 / 1920 * 100% );
		padding: 50px 30px;
	}
}
.news-ttl > p {
	display: inline-block;
	background: #AEE6F9;
	border-radius: 15px;
	padding: 5px 10px;
	margin-bottom: 20px;
	font-size: 12px;
}
@media screen and (min-width: 960px) {
	.news-ttl > p {
		margin-bottom: 30px;
		font-size: 14px;
	}
}
.news-ttl > h4 {
	font-size: 18px;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #C9C9C9;
}
@media screen and (min-width: 960px) {
	.news-ttl > h4 {
		font-size: 30px;
	}
	
}
.news-text {
	line-height: 2;
	font-size: 14px;
	padding-bottom: 20px;
}
@media screen and (min-width: 960px) {
	.news-text {
		font-size: 16px;
		padding-bottom: 30px;
	}
	.mb-5 {
		margin-bottom: 100px;
	}
}