.SubHero.is-download {
  height: 190px;
}
.SubHero.is-download .SubHero__title {
  justify-content: center;
  font-size: 32px;
}
.SubHero.is-download .SubHero__title::before {
  display: none;
}
.SubHero.is-download .SubHero__inner p {
  max-width: inherit;
}
.SubHero.is-download .SubHero__inner-text {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .SubHero.is-download {
    height: 140px;
    padding: 0;
  }
  .SubHero.is-download .SubHero__title {
    font-size: 24px;
  }
}

.info__btn.is-download .info__btn-hukidashi {
  background: #fff;
  color: #007ac2;
  border: 1px solid #007ac2;
}
.info__btn.is-download .info__btn-hukidashi::after {
  background: #fff;
}
.info__btn.is-download .info__btn-main {
  background: #007ac2;
  color: #fff;
}
.info__btn.is-download .info__btn-main::after {
  border-top: 10px solid #fff;
}
@media screen and (max-width: 767px) {
  .info__btn.is-download .info__btn-hukidashi {
    line-height: 150%;
    font-size: 11px;
  }
  .info__btn.is-download .info__btn-main {
    text-align: center;
    line-height: 150%;
    font-size: 12px;
  }
}

.download__nav {
  width: 960px;
  margin: 80px auto 0;
  border-radius: 45px;
  background: #fff;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
  padding: 32px 0;
  box-sizing: border-box;
}
.download__nav ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  padding: 0 90px;
}
@media screen and (max-width: 767px) {
  .download__nav-wrap {
    display: block;
    position: relative;
  }
  .download__nav {
    min-width: inherit;
    width: 90%;
    border-radius: 16px;
  }
  .download__nav ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0;
  }
}
.download__nav ul li {
  width: calc(50% - 12px);
}
.download__nav ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row-reverse;
  gap: 16px;

  color: #007ac2;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}
.download__nav ul li a::after {
  content: "";
  position: relative;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 10px solid #007ac0;
  border-bottom: 0;
}
@media screen and (max-width: 767px) {
  .download__nav ul li {
    border-right: none;
    padding-right: 0;

    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 20px;

    width: 84%;
  }
  .download__nav ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .download__nav ul li a {
    font-size: 14px;

    flex-direction: row;
    justify-content: space-between;
  }
}

.info__list.is-download .info__list-cell__img {
  width: 100%;
  height: fit-content;
  aspect-ratio: 16/9;
}
.info__list.is-download .info__list-cell__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
