
body{
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1em;
	font-weight: 500;
	color: #000;
	width: 100%;
  	min-width: 100%;
  	margin: 0;
	padding: 0;
	background: #baf0ff;
}
.news-topics-cont{
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
}
.news-topics-cont h2{
	font-size: clamp(1.25rem, 0.795rem + 2.27vw, 2.5rem);
	font-weight: 700;
	left: 1.5;
	text-align: center;
	margin: 15% auto 8%;
}
.news-topics-cont h3 {
	font-weight: 800;
    font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
    margin-bottom: 2%;
	text-align: center;
}
.news-topics-list{
	display: flex;
	row-gap:2vh;
	column-gap: 2vw;
	flex-wrap: wrap;
	width: 80%;
	margin: 0 auto 8%;
}
.news-topics-list li{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.5em 1em;
	vertical-align: middle;
	border-radius: 9999px;
	line-height: 1!important;
	text-align: center;
	background: #00aae7;
	color: #fff;
	font-weight: 700;
    transition: 0.3s ease-in-out;
	text-decoration: none;
	font-size: clamp(0.75rem, 0.682rem + 0.34vw, 0.938rem);
	cursor: pointer;
}
.news-topics-list li.active {
    background: #000;
}

.news-topics-wrap{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	row-gap: 80px;
	width: 100%;
	margin-bottom: 12%;
}
.news-topics-wrap::after {
    content: "";
    display: block;
    width: 28%;
    height: 0;
}
.news-topics-box{
	display: flex;
	flex-direction: column;
	width: 28%;
	background: #fff;
	padding: 2%;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.35);
	border-radius: 10px;
}
.news-topics-box img {
	width: 100%;
	margin-bottom: 4%;
}
.news-topics-box h4 {
	display: flex;
	align-items: center;
    height:3em;
    flex:none;
	font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
	font-weight: 700;
	margin-bottom: 1%;
	line-height: 1.5;
}
.news-topics-box dl,
.news-topics-box dt,
.news-topics-box dd{
    font-weight:600;
}
.news-topics-box dl{
	margin-top: 2%;
}
.news-topics-box dt{
	font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
	line-height: 1;
	margin-top: 5%;
	margin-bottom: 1%;
}
.news-topics-box dd{
	font-size: clamp(0.85rem, 0.795rem + 0.27vw, 1rem);
	line-height: 1.6;
}

footer::before {
	content: none;
}

/* ここに全hoverを書く */
@media (hover: hover) {
.news-topics-list li:hover{
	transform: scale(1.05);
	background: #000;
}
}

@media screen and (max-width:1024px){
	.news-topics-list {
    display: flex;
    row-gap: 2vh;
    column-gap: 2vw;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto 8%;
}
	.news-topics-box {
    display: flex;
    flex-direction: column;
    width: 47%;
    background: #fff;
    padding: 3%;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.35);
    border-radius: 5px;
}
	.news-topics-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 20px;
    width: 100%;
    margin-bottom: 12%;
}
	.news-topics-box h4 {
    height: 4em;
    line-height: 1.3;
	margin-bottom: 0;
}
	.news-topics-box dt {
    margin-top: 7%;
}
	.news-topics-box dd {
    line-height: 1.3;
}
}

@media screen and (max-width:768px){
}

