@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  広報誌

---------------------------------*/
.latestBox {
  background: #f0f0eb;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
}
.latestBox a {
  display: flex;
  justify-content: space-between;
}
.latestBox .txt {
  flex-basis: 60%;
  padding: 7rem;
  padding-right: 0;
}
.latestBox .txt h2 {
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  margin: 0 0 3rem;
  padding: 1rem;
}
.latestBox .txt h2::before {
  content: none;
}
.latestBox .txt .btn {
  margin: 2rem 0 0;
  max-width: 27rem;
}
.latestBox .txt .btn span {
  background: url("../images/link_pdf.svg") no-repeat right 2rem center/2rem;
  border: 2px solid;
  display: block;
  font-weight: 500;
  padding: 1rem 2rem;
  transition: all .3s;
}
.latestBox a:hover .txt .btn span {
  background-image: url("../images/link_pdf_w.svg");
  background-color: var(--co-main);
  border-color: var(--co-main);
  color: #fff;
}
.latestBox .img.PCnone {
  display: none;
}
.latestBox .img {
  margin: auto;
  flex-basis: 20rem;
}
.latestBox .img img {
  border: 1px solid #eee;
  width: 100%;
  vertical-align: bottom;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  .latestBox .txt {
    padding: 5rem;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .latestBox a {
    display: block;
    padding: 3rem;
  }
  .latestBox .txt {
    padding: 0;
  }
  .latestBox .txt .btn {
    max-width: inherit;
  }
  .latestBox .img.PCnone {
    display: block;
    margin: 2rem auto;
    max-width: 17rem;
  }
  .latestBox .img.SPnone {
    display: none;
  }
}
/*---------------------------------
  バックナンバー
---------------------------------*/
.backnumber {
  margin-top: 7rem;
}
.backnumber ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.backnumber ul li {
  flex-basis: calc(100%/4);
  padding: 2%;
}
.backnumber ul li a {
  display: block;
  text-align: center;
  text-decoration: underline;
}
.backnumber ul li a figure {
  margin: auto;
  max-width: 12rem;
}
.backnumber ul li a figure img {
  border: 1px solid #eee;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.backnumber ul li a p {
  margin-top: 1rem;
}
.backnumber ul li a p::after {
  background: url("../images/link_pdf.svg") no-repeat center/contain;
  content: '';
  display: inline-block;
  margin-left: .5rem;
  width: 16px;
  height: 16px;
}
.backnumber ul li a:hover {
  text-decoration: none;
}
/* PDF */
.backnumber .pdfBox {
  background: #fff;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  margin-top: 5rem;
  padding: 2rem 2rem;
}
.backnumber .pdfBox img {
  flex: 0 0 auto;
}
.backnumber .pdfBox p {
  font-size: 90%;
  line-height: 1.3;
  margin-left: 3rem;
}
.backnumber .pdfBox p a {
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .backnumber {
    margin-top: 5rem;
  }
  .backnumber ul li {
    flex-basis: calc(100%/2);
    padding: 1.5rem 2%;
  }
  .backnumber .pdfBox {
    display: block;
    margin-top: 5rem;
    padding: 2rem 2rem 1rem;
  }
  .backnumber .pdfBox img {
    display: block;
    margin: auto;
  }
  .backnumber .pdfBox p {
    margin-left: 0;
  }
}