@charset "UTF-8";
:root {
  --color-green: #07805d;
}

#contents {
  background-color: #ffffff;
}

.contents-list {
  padding: clamp(64px, 6.6666666667vw, 80px) 0 clamp(88px, 10vw, 120px);
}

.contents-list-inner-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1240px) {
  .contents-list-inner-wrap {
    padding: 0 20px 0;
  }
}

#contents .contents-header {
  position: relative;
  height: clamp(324px, 26.8333333333vw, 322px);
}

#contents .contents-header {
  position: relative;
  background: url(/cs/columns/common/images/bg-if10.png) no-repeat center top/auto 100%;
  height: clamp(180px, 16.1458333333vw, 310px);
  border-radius: 0 0 clamp(40px, 4.1666666667vw, 80px) clamp(40px, 4.1666666667vw, 80px);
}
@media screen and (min-width: 1920px) {
  #contents .contents-header {
    background-size: 100% auto;
  }
}
@media screen and (max-width: 390px) {
  #contents .contents-header {
    background-image: url(/cs/columns/common/images/bg-if10-sp@2x.png);
    background-size: auto 100%;
  }
}

#contents .contents-header .header-title {
  display: grid;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0 0 auto auto;
  place-items: center;
  font-weight: 600;
  font-size: clamp(27px, 3.125vw, 32px);
  color: #07865d;
}

.top-category-title {
  max-width: 1200px;
  margin: clamp(60px, 10vw, 120px) auto 0;
}
@media screen and (max-width: 1240px) {
  .top-category-title {
    padding: 0 20px 0;
  }
}

.top-category-area {
  padding: clamp(24px, 3.3333333333vw, 40px);
  background: #F3FAF7;
  border-radius: 30px;
  max-width: 1200px;
  margin: clamp(16px, 2vw, 24px) auto 0;
}
@media screen and (max-width: 1240px) {
  .top-category-area {
    margin: clamp(16px, 2vw, 24px) 20px 0;
  }
}

.top-category-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 12px;
}
@media screen and (max-width: 767px) {
  .top-category-list {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 8px;
         column-gap: 8px;
    row-gap: 8px;
  }
}
.top-category-list li {
  display: flex;
  background: #ffffff;
  box-shadow: 0 0 0 1px #06825D inset;
  border-radius: 12px;
  color: #06825D;
}
.top-category-list li a, .top-category-list li span {
  display: block;
  width: 100%;
  height: 100%;
  font-size: clamp(16px, 1.3333333333vw, 16px);
  color: #06825D;
  text-align: center;
  padding: 18px 8px;
}
.top-category-list li:hover {
  background: #C3EFDD;
  box-shadow: 0 0 0 1px transparent inset;
  transition: 0.5s;
}
.top-category-list li.current-btn {
  background: #06825D;
  box-shadow: 0 0 0 1px transparent inset;
  color: #ffffff;
  font-weight: 700;
}
.top-category-list li.current-btn a {
  color: #ffffff;
}
.top-category-list li.current-btn:hover {
  background: #06825D;
  cursor: pointer;
}

.article-list-wrap {
  margin-top: clamp(40px, 4.6666666667vw, 56px);
}

.article-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 48px;
       column-gap: 48px;
  row-gap: 72px;
}
@media screen and (max-width: 767px) {
  .article-overview {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 56px;
  }
}

.article-list figure {
  position: relative;
  width: 100%;
  background-color: #f7f7f7;
  border-radius: 30px;
  overflow: hidden;
}
.article-list figure::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
@media screen and (max-width: 767px) {
  .article-list figure {
    border-radius: 20px;
  }
}
.article-list figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.article-list a {
  display: block;
}
.article-list a:hover .list-title {
  color: #07825D;
}
.article-list .public-update {
  margin-top: clamp(20px, 1.3333333333vw, 16px);
}
.article-list .category-badge {
  margin-top: clamp(12px, 1.3333333333vw, 16px);
}

.list-title {
  font-size: clamp(16px, 1.5vw, 18px);
}

.list-title {
  color: #212121;
  line-height: 1.6 !important;
  font-weight: 700;
  margin-top: 4px;
}

.pager {
  display: flex;
  justify-content: center;
}

.pager-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .pager-list {
    gap: 8px;
  }
}

/* ==========================
   prev / next
========================== */
.pager-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #07825D inset;
  position: relative;
}
@media screen and (max-width: 767px) {
  .pager-btn {
    width: 48px;
    height: 48px;
  }
}
@media screen and (max-width: 350px) {
  .pager-btn {
    width: 40px;
    height: 40px;
  }
}
.pager-btn a {
  display: block;
  width: 100%;
  height: 100%;
}
.pager-btn::before {
  content: "";
  width: 24px;
  height: 22px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25 22"><path d="M12 1L1 11l11 10" fill="none" stroke="%2307825d" stroke-width="1"/><path d="M1 11h23" fill="none" stroke="%2307825d" stroke-width="1"/></svg>') no-repeat center/contain;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .pager-btn::before {
    width: 17px;
    height: 14px;
  }
}
.pager-btn.next::before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.pager-btn {
  /* hover時の矢印移動 したい場合*/
  /*&:hover::before {
    transform: translate(calc(-50% - 6px), -50%);
  }
  &.next:hover::before {
    transform: translate(calc(-50% + 6px), -50%) rotate(180deg);
  }*/
}
.pager-btn:hover {
  background: #EDFBF5;
  transition: background 0.3s;
}

/* ==========================
   number
========================== */
.pager-num a,
.pager-num span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 20px;
  font-weight: 700;
  color: #07825D;
  font-weight: 400;
  border-radius: 50%;
}
@media screen and (max-width: 350px) {
  .pager-num a,
  .pager-num span {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}
.pager-num a:hover {
  background: #EDFBF5;
  opacity: 1 !important;
  transition: 0.3s;
}
.pager-num.current span {
  background: #EDFBF5;
}

/* ==========================
   dot
========================== */
.pager-dot span {
  font-size: 20px;
  color: #07825D;
}

#footer {
  margin-top: 0 !important;
}

.font-size-32 {
  font-size: clamp(30px, 3.6vw, 36px);
}

.font-size-15 {
  font-size: clamp(13.95px, 1.155vw, 15px);
}

.color-deep-blue-gray {
  color: #597B88;
}

.color-green {
  color: var(--color-green);
}

.mt20 {
  margin-top: 20px;
}

.mt0 {
  margin-top: 0 !important;
}