@charset "utf-8";
/* CSS Document */
.under_mv{
  background: url("/product/img/mv.png")no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
}
.rubber{
  padding: 60px 0 0;
}
.rub_row {
  padding: 40px 35px;
  background: #1F2D8E;
  display: flex;
  margin-top: 20px;
  justify-content: space-between;
  &:hover{
    opacity: 1;
  }
}
.rub_right {
  max-width: 605px;
  color: #fff;
  position: relative;
  width: 100%;
}
.rub_head {
  font-size: 2.8rem;
  line-height: 1.75;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  position: relative;
  &:hover span{
    opacity: 0.7;
  }
  &::after{
    content: '';
    display: block;
    background: url("../img/arrow.svg") no-repeat center;
    -webkit-background-size: contain;
    background-size: contain;
    width: 14px;
    height: 23px;
    position: absolute;
    right: 15px;
    bottom: 15px;
  }
}
.rub_body {
  line-height: 1.75;
  margin-top: 20px;
}
@media screen and ( max-width: 1023px ) {

}
@media screen and ( max-width: 767px ) {
.rub_row {
  padding: 30px 5%;
  flex-direction: column;
  gap: 20px;
}
.rub_head {
  font-size: min(2.8rem, 4.5vw);
}
.rub_head {
  &::after {
      width: 10px;
      bottom: 8px;
  }
}
.rub_body {
  line-height: 1.5;
  font-size: 1.4rem;
}
}