@charset "UTF-8";
.page_visual {
  background: url("../img/page_visual.webp") no-repeat bottom center/cover;
}

.download{
  background: #F0F0F0;
  padding: 57px 0 83px 0;
}
.down_inner{
  background: #FFF;
  max-width: 1030px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 45px;
  padding: 65px 0 72px 0;
}
.di_box{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.di_box h2{
  font-size: 1.8rem;
  color: #004B9E;
  font-weight: bold;
}
.db_img{
  border: 1px solid #BBBBBB;
  opacity: 1;
}
.down_butt{
  background: transparent linear-gradient(270deg, #004B9E 0%, #00325E 100%) 0% 0% no-repeat padding-box;
  height: 50px;
  max-width: 266px;
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.down_butt span {
  position: relative;
}
.down_butt span::after{
  content: "";
  display: inline-block;
  background: url(../img/download.svg) no-repeat center;
  width: 17px;
  height: 14px;
  margin-left: 4px;
}

@media screen and (max-width: 767px) {
  .download{
    padding: 57px 5% 83px;
  }
  .down_inner{
    flex-direction: column;
    padding: 65px 5% 72px;
  }
}