section.news-list {
  max-width: 800px;
  margin: 0 auto;
  width: 90%;
}
section.news-list > a {
  display: block;
  border-bottom: 1px solid #000;
  transition: opacity 0.3s;
  background-color: var(--white);
}
@media (hover) {
  section.news-list > a:hover {
    opacity: 0.6;
  }
}
section.news-list > a:first-child {
  border-top: 1px solid #000;
}
section.news-list > a dl {
  padding: 30px 0;
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  section.news-list > a dl {
    padding: 20px 0;
    display: block;
  }
}
section.news-list > a dl dt {
  width: 140px;
  font-family: var(--noto-serif);
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  section.news-list > a dl dt {
    width: 100%;
  }
}
section.news-list > a dl dd {
  font-weight: normal;
  width: calc(100% - 140px);
}
@media screen and (max-width: 767px) {
  section.news-list > a dl dd {
    width: 100%;
  }
}
section.news-list > a dl dd table th {
  font-weight: normal;
  padding-right: 20px;
}
section.news-list > a dl dd table td {
  font-weight: normal;
}
section.news-list .pagenation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  section.news-list .pagenation {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  section.news-list .pagenation .btn-prev {
    grid-area: 1/1/2/2;
  }
}
section.news-list .pagenation .btn-prev a {
  display: flex;
  width: 170px;
  height: 53px;
  justify-content: flex-end;
  align-items: center;
  font-size: 20px;
  line-height: 1;
  font-family: var(--playfair);
  position: relative;
  margin: 0 auto 0 5px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  section.news-list .pagenation .btn-prev a {
    width: 130px;
    font-size: 16px;
  }
}
@media (hover) {
  section.news-list .pagenation .btn-prev a:hover:before {
    scale: 1.15;
  }
  section.news-list .pagenation .btn-prev a:hover:after {
    left: -5px;
  }
}
section.news-list .pagenation .btn-prev a:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 50px;
  width: 50px;
  height: 50px;
  transition: scale 0.15s;
  border: 1px solid var(--black);
  border-radius: 100%;
}
@media screen and (max-width: 767px) {
  section.news-list .pagenation .btn-prev a:before {
    width: 40px;
    height: 40px;
    left: 40px;
    top: 5px;
  }
}
section.news-list .pagenation .btn-prev a:after {
  content: "";
  position: absolute;
  top: 12px;
  left: 5px;
  background: url(/common/img/icn_arw_link_b.svg) no-repeat center;
  translate: 0 50%;
  width: 70px;
  height: 17px;
  transition: left 0.15s;
  transform: scale(-1, 1);
}
@media screen and (max-width: 767px) {
  section.news-list .pagenation .btn-prev a:after {
    top: 11px;
    width: 55px;
    height: 15px;
    background-size: 100%;
  }
}
section.news-list .pagenation .pagenation-box {
  grid-area: 2/1/3/3;
}
section.news-list .pagenation .pagenation-box ul.pagenation-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  section.news-list .pagenation .pagenation-box ul.pagenation-list {
    margin-top: 15px;
  }
}
section.news-list .pagenation .pagenation-box ul.pagenation-list li.current a {
  color: var(--white);
  background-color: var(--black);
}
section.news-list .pagenation .pagenation-box ul.pagenation-list li a {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  transition: color 0.3s, background-color 0.3s;
  font-family: var(--noto-serif);
}
@media (hover) {
  section.news-list .pagenation .pagenation-box ul.pagenation-list li a:hover {
    color: var(--white);
    background-color: var(--black);
  }
}
@media screen and (max-width: 767px) {
  section.news-list .pagenation .btn-next {
    grid-area: 1/2/2/3;
  }
}
section.news-list .pagenation .btn-next a {
  display: flex;
  width: 170px;
  height: 53px;
  align-items: center;
  font-size: 20px;
  line-height: 1;
  font-family: var(--playfair);
  position: relative;
  margin: 0 5px 0 auto;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  section.news-list .pagenation .btn-next a {
    width: 130px;
    font-size: 16px;
  }
}
@media (hover) {
  section.news-list .pagenation .btn-next a:hover:before {
    scale: 1.15;
  }
  section.news-list .pagenation .btn-next a:hover:after {
    right: -5px;
  }
}
section.news-list .pagenation .btn-next a:before {
  content: "";
  position: absolute;
  top: 3px;
  right: 50px;
  width: 50px;
  height: 50px;
  transition: scale 0.15s;
  border: 1px solid var(--black);
  border-radius: 100%;
}
@media screen and (max-width: 767px) {
  section.news-list .pagenation .btn-next a:before {
    width: 40px;
    height: 40px;
    right: 40px;
    top: 5px;
  }
}
section.news-list .pagenation .btn-next a:after {
  content: "";
  position: absolute;
  top: 12px;
  right: 5px;
  background: url(/common/img/icn_arw_link_b.svg) no-repeat center;
  translate: 0 50%;
  width: 70px;
  height: 17px;
  transition: right 0.15s;
}
@media screen and (max-width: 767px) {
  section.news-list .pagenation .btn-next a:after {
    top: 11px;
    width: 55px;
    height: 15px;
    background-size: 100%;
  }
}

section.news-contents {
  max-width: 800px;
  margin: 0 auto;
  width: 90%;
}
section.news-contents .date {
  font-size: 16px;
  font-family: var(--noto-serif);
  margin-bottom: 5px;
  letter-spacing: 0;
}
section.news-contents h1 {
  font-size: 32px;
  font-family: var(--noto-serif);
  font-weight: 600;
  line-height: 1.7;
  padding-bottom: 40px;
  border-bottom: 1px solid #000;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  section.news-contents h1 {
    font-size: 24px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
section.news-contents .contents-box > *:first-child {
  margin-top: 0 !important;
}
section.news-contents .contents-box h2 {
  font-size: 24px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  section.news-contents .contents-box h2 {
    margin-top: 40px;
    font-size: 18px;
  }
}
section.news-contents .contents-box h3 {
  font-size: 20px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  section.news-contents .contents-box h3 {
    font-size: 18px;
    margin-top: 40px;
  }
}
section.news-contents .contents-box .img {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  section.news-contents .contents-box .img {
    margin-top: 40px;
  }
}
section.news-contents .contents-box .img.half {
  width: 50%;
}
@media screen and (max-width: 767px) {
  section.news-contents .contents-box .img.half {
    width: 100%;
  }
}
section.news-contents .contents-box ul.img-list {
  margin-top: 40px;
}
section.news-contents .contents-box ul.img-list.col2 {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  section.news-contents .contents-box ul.img-list.col2 {
    flex-direction: column;
  }
}
section.news-contents .contents-box ul.img-list.col2 li {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 767px) {
  section.news-contents .contents-box ul.img-list.col2 li {
    width: 100%;
  }
}
section.news-contents .contents-box > p {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  section.news-contents .contents-box > p {
    margin-top: 20px;
  }
}
section.news-contents .btn-back {
  margin: 60px auto 0;
  border-top: 1px solid #000;
  padding-top: 80px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  section.news-contents .btn-back {
    margin-top: 40px;
    padding-top: 40px;
  }
}
section.news-contents .btn-back > div {
  padding: 0 15px;
}
section.news-contents .btn-back a {
  display: flex;
  width: 260px;
  height: 53px;
  justify-content: flex-end;
  align-items: center;
  font-size: 20px;
  line-height: 1;
  font-family: var(--playfair);
  position: relative;
  margin: 3px 5px 4px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  section.news-contents .btn-back a {
    width: 210px;
    font-size: 16px;
  }
}
@media (hover) {
  section.news-contents .btn-back a:hover:before {
    scale: 1.15;
  }
  section.news-contents .btn-back a:hover:after {
    left: -5px;
  }
}
section.news-contents .btn-back a:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 50px;
  width: 50px;
  height: 50px;
  transition: scale 0.15s;
  border: 1px solid var(--black);
  border-radius: 100%;
}
@media screen and (max-width: 767px) {
  section.news-contents .btn-back a:before {
    width: 40px;
    height: 40px;
    left: 40px;
    top: 5px;
  }
}
section.news-contents .btn-back a:after {
  content: "";
  position: absolute;
  top: 12px;
  left: 5px;
  background: url(/common/img/icn_arw_link_b.svg) no-repeat center;
  translate: 0 50%;
  width: 70px;
  height: 17px;
  transition: left 0.15s;
  transform: scale(-1, 1);
}
@media screen and (max-width: 767px) {
  section.news-contents .btn-back a:after {
    top: 11px;
    width: 55px;
    height: 15px;
    background-size: 100%;
  }
}

dl.compInfo{

}

dl.compInfo dt{
  float: left;
}

dl.compInfo dd{
  margin-left: 120px;
  margin-bottom: 5px;
}

@media screen and (max-width: 767px) {

}