@charset "utf-8";

/* -----キービジュアル----- */
#keyvisual {
	background: url(../img/keyvisual.png) no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 460px;
	position: relative;
	z-index: 1;
}

#keyvisual h2 {
	color: #fff;
	position: absolute;
	top: 50%;
	left: 6%;
	transform: translateY(-50%);
	font-size: 44px;
	font-size: clamp(22px, 2.5vw, 40px);
}

#keyvisual span {
	font-size: 28px;
	font-size: clamp(14px, 1.5vw, 28px);
	display: block;
	margin-bottom: 12px;
}

/* -----お知らせ----- */
#top_news {
	padding: 48px 0;
	width: 832px;
	margin: 0 auto;
	text-align: center;
}

#top_news h3 {
	font-size: 24px;
	position: relative;
	margin-bottom: 56px;
	display: inline-block;
}

#top_news h3::after {
	content: "";
	width: 80%;
	height: 2px;
	background-color: #FF6F86;
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%)
}

.news_section dl {
	text-align: left;
}


#news_link {
	text-align: right;
	margin-top: 16px;
}

#news_link a {
	display: inline-block;
	color: #444;
	margin-right: 8px;
}

#news_link a:hover, #top_news dd a:hover {
	color: #FF6F86;
}

#news_link  a::before {
	content: "";
	display: inline-block;
    border: 6px solid transparent;
    border-left: 6px solid #FF6F86; 
}

/*
スマホサイズ
----------------------------------------------------------- */
@media screen and (max-width: 960px) {
	#keyvisual {
		background: url(../img/keyvisual_sp.png) no-repeat;
	}

	#top_news {
		width: 100%;
		padding: 48px 16px;
	}

	#top_news h3 {
		font-size: 20px;
	}
}

@media screen and (max-width: 520px) {
	#top_news h3 {
		font-size: 20px;
	}

	#keyvisual {
		background: url(../img/keyvisual_sp2.png) no-repeat;
	}

	#keyvisual h2 {
		left: 16px;
	}
}