/*ニュース（簡体字）*/
#main_area {
  background-image: url("../../img/news/bg01.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
h1 {
  font-family: kumlien-pro, serif;
  font-style: normal;
  font-weight: 100;
  font-size: 1.5vw;
  letter-spacing: 0.2em;
}
h1 img {
  width: 2vw;
  margin-right: 0.5em;
  display: inline-block;
}
strong{
	font-weight: bold;
}
/*



news_area



*/
#news_area {
  width: 70%;
  margin: 0 auto;
  display: flex;
  padding: 5% 0;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1vw;
}
#news_area h1 {
  margin-left: -1%;
  margin-bottom: 1%;
}
#main_area h1 {
  font-family: kumlien-pro, serif;
  font-style: normal;
  font-weight: 100;
  font-size: 1.5vw;
  letter-spacing: 0.2em;
  margin-left: -1%;
}
#news_area a {
  color: #231815;
}
#news_area ul {
  font-size: 0.9vw;
  letter-spacing: 0.4em;
  font-family: a-otf-ud-shin-go-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
  width: 100%;
  margin-top: 1%;
}
#news_area ul li {
  margin-bottom: 0.7%;
  padding: 0.5% 0 1.5%;
  border-bottom: 0.1em dotted #CCCCCC;
  padding-left: 4%;
  padding-right: 4%;
}
#news_area .date {
  position: relative;
  display: inline-block;
  font-family: a-otf-ryumin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
  margin-right: 3%;
}
.news_title {
  letter-spacing: 0.1em;
}
.news_item {
  display: inline;
  padding-bottom: 4px;
  position: relative;
}
.news_item::after {
  background-color: #231815;
  bottom: 0;
  content: '';
  display: inline-block;
  height: 1px;
  left: 0;
  position: absolute;
  transition: .5s all;
  width: 0;
}
.news_item:hover::after {
  width: 98%;
}
.news_item:hover {
  opacity: 0.3;
}
.star {
  width: 1em;
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: -19%;
  margin-bottom: 2%;
  transition: .3s all;
  opacity: 0;
}
.star img {
  width: 100%;
}
.news_item:hover .star {
  display: inline-block;
  opacity: 1;
}
.news_more_area {
  margin-top: 3%;
  font-family: a-otf-ryumin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.3em;
}
.newspager_area {
  margin-top: 5%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#news_area .wp-pagenavi a {
  font-family: a-otf-ryumin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
  color: rgba(0, 0, 0, 1.00);
  border: none;
  margin: 2px 10px;
  transition: 0.3s;
}
#news_area .wp-pagenavi a:hover {
  opacity: 0.5;
}
#news_area .wp-pagenavi span {
  border: none;
}
#news_area .wp-pagenavi span.current {
  font-family: a-otf-ryumin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
  color: #969696;
}
.black_belt {
  padding-left: 2%;
  padding-right: 40%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.black_belt::after {
  background: #231815;
  position: absolute;
  margin-top: 4%;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 80%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.black_belt:hover {
  cursor: pointer;
  transition: 0.5s;
  color: #fff;
}
.black_belt:hover::after {
  transform: scale(1, 1);
}
/*end news_area*/
@media screen and (max-width: 800px) {
  #main_area {
    padding: 5%;
    position: relative;
    background-image: url();
  }
  #main_area::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("../../img/news/bg01.jpg");
    background-size: cover;
  }
  .news_item {
    display: flex;
  }
  .news_item:hover .star {
    display: none;
  }
  #news_area {
    font-size: 1vw;
    font-size: max(2.5vw, 12px);
    width: 90%;
  }
  #main_area h1 {
    font-size: 4vw;
  }
  #main_area h1 img {
    width: 4vw;
  }
  #news_area ul {
    font-size: max(2.5vw, 12px);
    line-height: 1.3em;
    margin-top: 3%
  }
  #news_area ul li {
    padding: 1.5% 0 2.5%;
    padding: 3% 0 4%;
  }
}