.pdf-banner {
  margin-top: 40px;
  padding: 32px;
  background-image: url('/csr/img/pdf_banner_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  gap: 34px;
}


.pdf-banner__img img {
  width: 160px;
  height: 100px;
}

.pdf-banner__title {
  font-family: 'Noto Sans CJK JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 30px;
  text-align: justify;
  text-indent: 0;
}

.pdf-banner__download {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans CJK JP', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 30px;
  text-align: left;
  text-indent: 0;
}

.pdf-arrow {
  width: 13px;
  height: 13px;
}

.pdf-icon {
  width: 18px;
  height: 18px;
}

@media screen and (max-width: 768px) {
  .pdf-banner {
    margin-top: 7.81vw;
    /* 60px → 7.81vw */
    padding: 6.25vw;
    /* 48px → 6.25vw */
    flex-direction: column;
    align-items: flex-start;
    gap: 4.69vw;
    /* 36px → 4.69vw */
  }

  .pdf-banner__title {
    font-size: 4.17vw;
    /* 32px → 4.17vw */
  }

  .pdf-banner__download {
    margin-top: 4.3vw;
    font-size:100%;
    gap: 1.95vw;
  }

  .pdf-banner__img {
    order: 2;
  }

  .pdf-banner__img img {
    width: 77.34vw;
    /* 594px → 77.34vw */
    height: 48.31vw;
    /* 371px → 48.31vw */
  }

  .pdf-arrow {
    width: clamp(13px, 3.4vw, 26px) !important;
    height: clamp(13px, 3.4vw, 26px) !important;
  }

  .pdf-icon {
    width: clamp(18px, 4.7vw, 36px) !important;
    height: clamp(18px, 4.7vw, 36px) !important;
  }
}