@charset "UTF-8";
header::before{
  content:"";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
 
  /*ここで三角形のサイズを決める。
  必ず幅100vwにして、ブラウザサイズいっぱいにしてください。*/

  border-width:  0 0 40px   100vw;
 
  border-color:  transparent  transparent #F6F4EE transparent   ;
  backface-visibility: hidden;
}
.news-box{
  background-color: #F6F4EE;
  padding: 3vh 10vw;
}
.news-box h1{
  font-size: 2.0em;
  text-align: center;
  font-weight: normal;
  padding: 5vh 0;
  color: #004496;
}
.news-box article div{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: #004496 solid 2px;
  padding-bottom: 2vh;
  margin: 5vh 5vw;
  text-align: right;
}
.news-box article div p{
  font-size: 1.0em;
  color: #313131;
  align-items: center;
  text-align: left;
}
.news-box article div p span{
  background-color: #48b6ff;
  margin-right: 2vw;
  padding: 0.2vh 0.3vw;
  color: #fafafa;
  margin-bottom: 0.2vh;
}
.news-box article div h2{
  color: #004496;
  font-weight: normal;
  font-size: 1.4em;
  text-align: left;
}
.icon{
  text-align: right;
  align-self: flex-end;
  display: block;
}
/* 共通の矢印 */
.news-icon{
  color: #004496;
}
.news-icon:hover{
  color: #d5aa1b;
}
/* .arrow{
  position: relative;
  display: inline;
  padding: 0 0 0 16px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 1em;
}
.arrow::before,
.arrow::after{
  position: absolute;
  bottom: 0;
  left: 0vw;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.arrow-position::before{
  box-sizing: border-box;
  width: 2em;
  height: 2em;
  border: 1px solid #f6f4ee;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #004496;
  margin-bottom: -1vh;

}
.arrow-position::after{
  width: 0.8em;
  height: 0.8em;
  left: 0.5vw;

  border-top: 2px solid #f6f4ee;
  border-right: 2px solid #f6f4ee;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.arrow-position:hover:before{
  background-color: #d5aa1b;
} */
@media screen and (max-width:820px) {
  .news-box article div{
    flex-direction: column;
  }
}