@charset "UTF-8";
/* CSS Document */
.news {
  position: relative;
}
.news a {
  color: #32AC77;
}
.news .pdf-link {
  position: absolute;
  top: 20px;
  right: 20px;
}
/*.news-img {
  position: relative;
  width: 420px;
  height: 280px;
  margin: 20px auto 20px 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 5px 7px 7px rgba(76, 204, 150, 0.30);
}


.news-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: none;
  width: 104%;
  height: auto;
}*/

.news-img {
  position: relative;
  width: 420px;
  height: auto; /* ← 高さを画像に合わせて可変に */
  margin: 20px auto 20px 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 5px 7px 7px rgba(76, 204, 150, 0.30);
}

.news-img img {
  width: 100%;     /* 横幅を枠に合わせる */
  height: auto;    /* 高さは比率維持で自動 */
  display: block;  /* インライン隙間対策 */
  border-radius: 15px; /* imgにも角丸が必要なら */
}
.link-document {
  margin-top: 20px
}
.news-pdf {
  display: inline-flex;
  align-items: center;
}
.news-pdf:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #F19795;
  border-radius: 50%;
  margin-right: 2px; /* 丸とテキストの間の余白 */
}
.news-pdf span {
  color: #fff;
  background: #F19795;
  border-radius: 30px;
  height: auto;
  font-size: 0.8rem;
  padding: 3px 10px;
  font-weight: 300;
  text-align: center;
  text-decoration: none !important;
  margin: 5px 10px;
}
/*@media (min-width: 768px) and (max-width: 979px) {
  .news-pdf span {
    font-size: calc(15/1600 * 100vw);
    width: calc(200/1000 * 100vw);
    height: calc(20/1600 * 100vw);
    line-height: 1.2;
    padding: calc(10/1600 * 100vw) calc(20/1600 * 100vw);
    margin: 0.8vh 0 0.8vh 0;
  }
}*/