/* LESS Document */
.newsList {
  margin: 80px 0 50px;
}
@media screen and (max-width: 767px) {
  .newsList {
    margin: 30px 0;
  }
}
.newsList .newsItem {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
  text-decoration: none;
  border-bottom: #CCC 1px solid;
}
@media screen and (max-width: 767px) {
  .newsList .newsItem {
    gap: 10px;
  }
}
.newsList .newsItem:hover .text p {
  color: #1A7108;
}
.newsList .newsItem figure {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  align-items: center;
  justify-content: center;
  max-width: 320px;
  width: 180px;
  height: 116px;
  background: #FFF;
  border: #CCC 1px solid;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .newsList .newsItem figure {
    max-width: none;
    width: 32%;
    height: 20vw;
    flex-shrink: 0;
  }
}
.newsList .newsItem figure img {
  object-fit: cover;
  object-position: center center;
}
.newsList .newsItem .text {
  flex: 1;
}
.newsList .newsItem .text time {
  font-weight: bold;
}
.newsList .newsItem .text p {
  color: #000;
  transition: 0.2s;
}
.tag {
  display: inline-block;
  min-width: 98px;
  padding: 3px 10px;
  text-align: center;
  border-radius: 24px;
  color: #FFF;
  background: #4C9C19;
  line-height: 1;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .tag {
    min-width: 0;
  }
}
.cmsArea {
  padding: 30px 0;
}
.cmsArea h2 {
  margin: 10px 0 50px;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .cmsArea h2 {
    font-size: 6.4vw;
  }
}
.cmsArea h2::after {
  content: '';
  display: block;
  background: #CDD639;
  width: 95px;
  height: 6px;
  margin: 12px 0 0;
}
.cmsArea h3 {
  margin: 0 0 10px;
  font-size: 2.4rem;
  color: #1A7108;
}
@media screen and (max-width: 767px) {
  .cmsArea h3 {
    font-size: 4.8vw;
  }
}
.cmsArea h4 {
  margin: 0 0 10px;
  font-size: 1.8rem;
  color: #1A7108;
  border-bottom: #1A7108 1px solid;
}
@media screen and (max-width: 767px) {
  .cmsArea h4 {
    font-size: 3.6vw;
  }
}
.cmsArea table {
  width: 100%;
}
.cmsArea table th,
.cmsArea table td {
  padding: 10px;
}
.cmsArea time {
  display: inline-block;
  font-size: 1.8rem;
  margin: 0 8px 0 0;
  color: #4C9C19;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .cmsArea time {
    font-size: 3.6vw;
  }
}
.cmsArea img {
  max-width: 100%!important;
  height: auto!important;
}
.cmsArea img[style*="right"] {
  margin: 0 0 1em 1em;
}
.cmsArea img[style*="left"] {
  margin: 0 1em 1em 0;
}
.cmsArea ul {
  margin-bottom: 1em;
  padding: 0 0 0 30px;
}
.cmsArea ul li::before {
  content: '\f0da';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 7px 0 -15px;
  border-radius: 8px;
  background: #1A7108;
  vertical-align: middle;
}
.cmsArea ol {
  list-style: decimal;
  margin-bottom: 1em;
  padding: 0 0 0 30px;
}
.cmsArea blockquote {
  background: #EEE;
  position: relative;
  margin: 0 !important;
  padding: 32px;
}
.cmsArea blockquote::before,
.cmsArea blockquote::after {
  content: "“";
  font-family: 'Oswald', sans-serif;
  font-size: 60px;
  color: #787878;
  line-height: 1;
  position: absolute;
  top: 5px;
  left: 5px;
}
.cmsArea blockquote::after {
  content: "”";
  top: auto;
  left: auto;
  bottom: -30px;
  right: 5px;
}
.cmsArea .returnBtn {
  margin: 40px 0 20px;
  text-align: center;
}
.cmsArea .returnBtn .btn {
  max-width: 300px;
  min-height: 50px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .cmsArea .returnBtn .btn {
    font-size: 3.2vw;
  }
}
/* -------------------------------- pagenation */
.pagenation {
  margin: 40px 0 0;
  text-align: center;
}
.pagenation a,
.pagenation span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px 6px;
  line-height: 1;
  margin: 5px;
  text-decoration: none;
  font-weight: bold;
  color: #000;
}
.pagenation a:hover,
.pagenation span:hover {
  color: #1A7108;
}
.pagenation a.current,
.pagenation span.current {
  background: #4C9C19;
  color: #FFF;
}
.pagenation a.disabled,
.pagenation span.disabled {
  pointer-events: none;
  color: #CFCFCF;
}
.pagenation span {
  background: #EEE;
  border-color: #EEE;
  color: #ADADAD;
  pointer-events: none;
}
