.l-main {
  padding-top: 3rem;
}

/*
.section
---------------------------*/
.section__img {
  width: 90%;
  text-align: center;
  margin-inline: auto;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px) {
  .section__img {
    width: 70%;
  }
}

.block {
  padding-bottom: 2rem;
}
.block + .block {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .block + .block {
    margin-top: 2rem;
  }
}

.btn-pdf a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5em 0;
  background: #fff;
  border: 1px solid currentColor;
  color: #0075bd;
  border-radius: 100px;
  font-size: 120%;
  font-weight: 900;
  -webkit-transition: background ease 0.4s;
  transition: background ease 0.4s;
}
.btn-pdf a::after {
  content: "";
  width: 1.2em;
  margin-left: 0.3em;
  aspect-ratio: 1/1;
  background: url(../img/ad-library/ico_dl.svg) no-repeat center/contain;
}
@media (any-hover: hover) {
  .btn-pdf a:hover {
    background: #e1f5ff;
  }
}

.btn-home {
  width: 10em;
  margin-block: 5%;
}

@media screen and (min-width: 768px) {
  .btn-home {
    margin-block: 1.5em;
  }
}
.btn-home a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5em 0;
  background: #fff;
  border: 1px solid #003893;
  color: #003893;
  border-radius: 0.3em;
  font-size: 100%;
  -webkit-transition: color ease 0.4s, background ease 0.4s;
  transition: color ease 0.4s, background ease 0.4s;
}

.btn-home a::before {
  content: "";
  width: 1em;
  margin-right: 0.3em;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/ico_home.svg);
  mask-image: url(../img/ico_home.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #003893;
  -webkit-transition: background ease 0.4s;
  transition: background ease 0.4s;
}

@media (any-hover: hover) {
  .btn-home a:hover {
    background: #003893;
    color: #fff;
  }
  .btn-home a:hover::before {
    background-color: #fff;
  }
}