@charset "UTF-8";
@import url("root.css");
/*-----*ブレイクポイントルール*-----*/
/* スマートフォン：max-width:767px */
/* タブレット：min-width:768px */
/* PC：min-width:1025px */
/***************************************
-------------- PDF --------------
***************************************/
.pdf_block {
  padding: 4%;
  border: 2px solid #cfcfcf;
  background: #fff;
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: 767px) {
  .pdf_block {
    gap: 15px;
  }
}
.pdf_block .desc {
  margin: 0;
}

.pdf_post:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .pdf_post:not(:last-child) {
    margin-bottom: 15px;
  }
}
.pdf_post a {
  display: block;
  padding: 3%;
  color: #804921;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 13px rgba(66, 33, 11, 0.3);
  text-decoration: underline;
  font-weight: 500;
  font-size: clamp(2rem, 2vw, 2.4rem);
}