@charset "UTF-8";

.news_text a {
  text-decoration: underline;
  &:hover {text-decoration: none;}
}
/*RV*/
.rv a{
  max-width: 590px;
  width: 90%;
  margin:auto;
  padding: 20px;
  display: flex;
  justify-content: flex-end;
  background: url("../../../../img/bnr_rv.png") top left no-repeat;
  -webkit-background-size: auto;
  background-size: auto;
  margin-top: 0px;
  margin-left: 0;
}
.rv_inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:15px;
  padding: 20px;
  background: #333;
}
.rv_text{
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
}
.rv_btn{
  font-size: 1.4rem;
  width: 175px;
  height: 40px;
  background: #0070C0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap:5px;
  color: #fff;
  &::after{
    content: '';
    display: block;
    background: url("../../../../img/arrow_bnr.svg") no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;
    width: 8px;
    height: 12px;
  }
} 


@media screen and (max-width: 767px) {
.rv {
  width: 100%;
  margin: 0;
  padding: 0;
  padding-bottom: 135px;
}
.rv a {
  width: 100%;
  margin: 0;
  padding: 20px;
  padding-bottom: 0;
}
.rv_inner{
  position: relative;
  max-width: none;
  width: 90%;
  margin: auto;
  bottom: -115px;
  }
}