@charset "UTF-8";
/*
    !!!不要な場合は消してください!!!

    calc + vwの公式
    font-size: calc(A + B * (100vw - C)/D);

    A・・・最小文字サイズ
    B・・・最大文字サイズ – 最小文字サイズ
    C・・・最小画面幅
    D・・・最大画面幅 – 最小画面幅

    適用すれば画面幅によって文字が大小します
*/
body {
  font-family: "Noto Serif JP", serif;
}

.btn {
  display: block;
  display: -ms-block;
  display: -webkit-block;
  display: -moz-block;
  max-width: 500px;
  width: 100%;
  padding: 20px;
  margin: 0 auto 10rem;
  border: solid 1px #8fc31f;
  text-align: center;
}
.btn:after {
  content: "";
  background: url(../img/patients/download.png) no-repeat center;
  background-size: cover;
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-left: 15px;
  vertical-align: bottom;
}

#newspaper {
  width: 95%;
  margin: auto;
}
#newspaper h3 {
  font-size: 3rem;
  line-height: 1;
  font-weight: bold;
  padding: 0 0 0 15px;
  border-left: solid 3px #93C434;
  margin: 0 0 5rem;
}
@media screen and (max-width: 1024px) {
  #newspaper h3 {
    font-size: 2rem;
    margin: 0 0 3rem;
  }
}
#newspaper .latest {
  max-width: 1600px;
  width: 100%;
  margin: auto;
}
#newspaper .latest-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 8rem;
}
@media screen and (max-width: 1024px) {
  #newspaper .latest-info {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5rem;
  }
}
#newspaper .latest-info_img {
  width: 48%;
}
@media screen and (max-width: 767px) {
  #newspaper .latest-info_img {
    width: 70%;
  }
}
#newspaper .latest-info-box {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  #newspaper .latest-info-box {
    width: 100%;
  }
}
#newspaper .latest-info_table {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
#newspaper .latest-info_table dt {
  width: 100px;
  background: #93C434;
  border-right: solid 1px #93C434;
  border-bottom: solid 1px #fff;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  #newspaper .latest-info_table dt {
    width: 100%;
    border-left: solid 1px #93C434;
  }
}
#newspaper .latest-info_table dd {
  width: calc(100% - 100px);
  border-top: solid 1px #93C434;
  border-right: solid 1px #93C434;
  border-bottom: solid 1px #93C434;
  padding: 24px;
}
@media screen and (max-width: 767px) {
  #newspaper .latest-info_table dd {
    width: 100%;
    border-top: unset;
    border-left: solid 1px #93C434;
  }
}
#newspaper .latest-info_table dd:last-child {
  border-top: unset;
}
#newspaper .latest-info_table dd ul {
  display: grid;
  gap: 30px;
}
#newspaper .backnumber {
  max-width: 960px;
  width: 100%;
  margin: 0 auto 20rem;
}
#newspaper .backnumber-lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#newspaper .backnumber-lists-item {
  width: 23%;
}
@media screen and (max-width: 767px) {
  #newspaper .backnumber-lists-item {
    width: 48%;
  }
}
#newspaper .backnumber-lists-item h4 {
  color: #93C434;
  font-size: 1.8rem;
  font-weight: bold;
}/*# sourceMappingURL=newspaper.css.map */