

/* 20210330CMS用に編集 */

.news-btn{
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 30px;
  padding-left: 18px;
}

.news-btn-list{
  list-style-type: none;
  display: inline-flex;
  align-items: center;
  width: 100%;
  padding: 0;
}

.n-item {
  margin-right: 10px;
  width: calc((100% - 50px)/6);
}

.n-tag {
  box-sizing: border-box;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 4rem;
  background: #235497;
  font-size: 1.6rem;
  letter-spacing: .1rem;
  text-decoration: none;
  border-radius: 3px;
  color: #fff !important;
}

.n-tag:hover{
  cursor: pointer;
}

.n-tag:before {
  content: " ";
  display: inline-block;
  width: .6rem;
  height: .6rem;
  border: 2px solid #fff;
  border-width: 1px 1px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-right: .6rem;
  margin-left: -.6rem;
}

.n-tag.active {
  background: #fff;
  border: 2px solid #235497;
  color: #235497 !important;
}

.n-tag.active:before {
  border: 2px solid #235497;
  border-width: 1px 1px 0 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 767px), print {

.n-item {
  width: 30%;
}

.news-btn{
  display: flex;
  align-items: center;
	justify-content: space-between;
  padding-left: 0;
	width: 90%;
}

.news-btn-list{
  list-style-type: none;
  display: inline-flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

}