.main {
  padding-bottom: 0;
}

/* メインビジュアル */
.header_mv {
  height: 522px;
  @media screen and (max-width: 767px) {
    height: 300px;
  }
}

/*タブ切り替え全体のスタイル*/
.tabs {
  background-color: #fff;
  width: 100%;
  margin: 40px auto 0;
  @media screen and (max-width: 767px) {
    margin-top: 20px;
  }
}

/*タブのスタイル*/
.tab_news {
  width: 20%;
  height: 54px;
  margin-top: 10px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  border: none;
  border-left: 1px solid #fff;
}
.tab_news:hover {
  opacity: 0.75;
  cursor: pointer;
}
.tabs li {
  font-size: var(--font-15);
  line-height: 1.5;
	&:nth-child(1) .tab_news {
		background: #fff;
    color: var(--main-color);
	}
	&:nth-child(2) .tab_news {
		background: #0A5A30;
	}
	&:nth-child(3) .tab_news {
		background: #07764A;
	}
	&:nth-child(4) .tab_news {
		background: #039264;
	}
	&:nth-child(5) .tab_news {
		background: #00AE7D;
	}
  @media screen and (max-width: 767px) {
    font-size: 1rem;
  }
}
/*タブ切り替えの中身のスタイル*/
.news_content {
  display: none;
  padding: var(--space-65) 0;
  clear: both;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 3px 6px #00000029;
}

/*選択されているタブのコンテンツのみを表示*/
.news_content.-active {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs li .tab_news.-active {
  margin-top: 0;
  height: 64px;
}

/* リンク集 */
.top_link {
  width: 100%;
  background: url(../img/bg_img01.webp) no-repeat center / cover;
}
.top_link .top_heading {
  color: #fff;
  padding-bottom: 1em;
}
.top_links {
  max-width: 1024px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-inline: auto;
  @media screen and (max-width: 767px) {
    gap: 15px;
  }
}
.top_links--item {
  max-width: calc(25% - 15px);
  width: 100%;
  @media screen and (max-width: 767px) {
    max-width: calc(50% - 7.5px);
  }
}

@media screen and (max-width: 767px) {
}