.other{
  padding: 80px 20px 100px;
  background-color: #fff;
}
.other__wrap{
  width: 1200px;
  margin: 0 auto;
}
.other__box{
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
  gap: 40px 0;
}
.other__title{
  font-size: 4.0rem;
  font-family: "Yu Mincho", "YuMincho", "游明朝体", "游明朝", serif;
  color: #0050A5;
  font-weight: 500;
  margin-bottom: 8px;
}
.other__title__sub{
  font-size: 1.8rem;
  font-weight: 500;
}
.other__item{
  width: 50%;
}
.other__item__link{
  display: flex;
}
.other__item__img{
  width: 270px;
  overflow: hidden;
  isolation: isolate;
  flex-shrink: 0;
}
.other__item__img img{
  transform: scale(1, 1);
  transition: transform 0.2s ease-out;
}
.other__item__text{
  color: #000;
  font-size: 2rem;
  padding-left: 24px;
  margin: auto 0;
}
.other__item__link.-blank .other__item__text{
  padding-left: 40px;
  background: url(/assets/images/icn_blank_black.svg) no-repeat;
  background-position: 20px center;
}

@media screen and (max-width: 767px){
  .other__title{
    text-align: center;
  }
  .other__title__sub{
    text-align: center;
  }
  .other__wrap{
    width: 100%;
  }
  .other__box{
    flex-direction: column;
  }
  .other__item{
    width: 100%;
  }
  .other__item__link{
    flex-direction: column;
    gap: 16px;
  }
  .other__item__img{
    width: 100%;
  }
  .other__item__text{
    font-size: 1.6rem;
    padding-left: 0;
  }
  .other__item__link.-blank .other__item__text{
    padding-left: 20px;
    background-position: left center;
  }
  .other__item__img img{
    width: 100%;
  }
}
.other__item__link:hover{
  text-decoration: none;
}

@media screen and (min-width: 768px){
  .other__item__link:hover img{
    transform: scale(1.1, 1.1);
    transition-duration: 0.2s;
  }
  .other__item__link:hover .other__item__text{
    color: #0050a5;
  }
  .other__item__link.-blank:hover .other__item__text{
    background: url(/assets/images/icn_blank_blue.svg) no-repeat;
    background-position: 20px center;
  }
}