.post-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px 40px;
}
@media screen and (max-width: 1024px) {
  .post-list {
    gap: 40px 20px;
  }
}
@media screen and (max-width: 599px) {
  .post-list {
    gap: 30px 0;
  }
}

.post-item {
  width: calc(50% - 20px);
}
@media screen and (max-width: 1024px) {
  .post-item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 599px) {
  .post-item {
    width: 100%;
  }
}
.post-item__link {
  display: block;
}
.post-item__link:hover {
  opacity: 0.68;
}
.post-item__link:has(.post-item__title) {
  margin-top: 13px;
}
@media screen and (max-width: 599px) {
  .post-item__link:has(.post-item__title) {
    margin-top: 5px;
  }
}
.post-item__link:has(.post-item__title):hover {
  opacity: 1;
}
.post-item__link:has(.post-item__title):hover .post-item__title {
  color: #FE7542;
  text-decoration: underline;
}
.post-item__link:has(.post-item__more) {
  margin-top: 15px;
}
@media screen and (max-width: 599px) {
  .post-item__link:has(.post-item__more) {
    margin-top: 10px;
  }
}
.post-item__img {
  aspect-ratio: 16/10.4;
  background: #ccc;
  overflow: hidden;
}
.post-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-item__content {
  margin-top: 20px;
}
@media screen and (max-width: 599px) {
  .post-item__content {
    margin-top: 15px;
  }
}
.post-item__date {
  display: block;
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  color: #888;
}
@media screen and (max-width: 599px) {
  .post-item__date {
    font-size: 13px;
  }
}
.post-item__title {
  font-size: clamp(1rem, 0.5vw + 0.875rem, 1.25rem);
  line-height: 1.8;
  font-weight: 600;
  color: #101010;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .post-item__title {
    line-height: 1.5;
  }
}
.post-item__more {
  font-size: 14px;
  color: #0070c0;
  text-decoration: underline;
}

.pager {
  margin-top: 80px;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .pager {
    margin-top: 60px;
  }
}
.pager__list {
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  white-space: nowrap;
}
@media screen and (max-width: 599px) {
  .pager__list {
    gap: 8px;
  }
}
.pager__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #FE7542;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  background: #fff;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 599px) {
  .pager__link {
    min-width: 42px;
    height: 42px;
    padding: 0 4px;
    font-size: 13px;
  }
}
.pager__link:hover:not(.is-active) {
  background: #fff1ed;
  border-color: #FE7542;
  text-decoration: none;
}
.pager__link.is-active {
  background: #FE7542;
  color: #fff;
  border-color: #FE7542;
  pointer-events: none;
}
.pager__item:first-child .pager__link, .pager__item:last-child .pager__link {
  padding: 0 30px;
}
@media screen and (max-width: 1024px) {
  .pager__item:first-child .pager__link, .pager__item:last-child .pager__link {
    padding: 0 22px;
  }
}
@media screen and (max-width: 599px) {
  .pager__item:first-child .pager__link, .pager__item:last-child .pager__link {
    padding: 0 6px;
  }
}

.single__column > p,
.single__box > p {
  font-size: 18px;
  line-height: 2.2;
  margin-top: 40px;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .single__column > p,
  .single__box > p {
    font-size: 15px;
    line-height: 1.8;
    margin-top: 30px;
  }
}
.single__column > p > a,
.single__box > p > a {
  color: #0070c0;
  text-decoration: underline;
}
.single__column > p > a:hover:hover,
.single__box > p > a:hover:hover {
  opacity: 0.68;
}

.single__column .eyecatch img {
  margin-top: 0 !important;
}
.single__column img {
  display: block;
  max-width: 690px;
  margin: 40px auto 0;
  width: auto;
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .single__column img {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  .single__column img {
    width: 100%;
    margin: 30px auto 0;
  }
}
.single__column h2 {
  font-size: clamp(1.062rem, 1.375vw + 0.719rem, 1.75rem);
  font-weight: 600;
  line-height: 1.6;
  padding: 20px 25px 18px;
  background-color: #FFF7C4;
  background: #FFF7C4;
  color: #101010;
  font-style: normal;
  margin-top: 50px;
  text-align: left;
  border-left: 10px solid #FE7542;
  border-radius: 4px;
}
@media screen and (max-width: 599px) {
  .single__column h2 {
    margin-top: 40px;
    padding: 13px 13px 11px;
    line-height: 1.7;
    border-left: 6px solid #FE7542;
  }
}
.single__column h3 {
  font-size: clamp(1rem, 1.125vw + 0.719rem, 1.562rem);
  font-weight: 600;
  line-height: 1.6;
  text-align: left;
  padding: 0;
  padding-bottom: 20px;
  margin-top: 50px;
  color: #101010;
  border: none;
  border-bottom: 1px solid #ccc;
  position: relative;
}
@media screen and (max-width: 599px) {
  .single__column h3 {
    margin-top: 40px;
    padding-bottom: 12px;
  }
}
.single__column h3::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100px;
  height: 3px;
  background: #FE7542;
}
@media screen and (max-width: 599px) {
  .single__column h3::after {
    width: 80px;
    height: 2px;
  }
}
.single__column h4 {
  font-size: clamp(0.938rem, 0.875vw + 0.719rem, 1.375rem);
  line-height: 1.7;
  font-weight: 600;
  padding: 0;
  padding-left: 25px;
  margin-top: 50px;
  border-bottom: none;
  position: relative;
}
@media screen and (max-width: 599px) {
  .single__column h4 {
    margin-top: 40px;
    padding-left: 17px;
    line-height: 1.6;
  }
}
.single__column h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: calc(100% + 4px);
  background: #ffcc00;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 599px) {
  .single__column h4::before {
    width: 3px;
  }
}
.single__column table {
  margin: 0;
  margin-top: 40px;
  width: 100%;
  border-collapse: collapse;
  word-break: break-all;
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  .single__column table {
    margin-top: 30px;
  }
}
.single__column table th, .single__column table td {
  border: 1px solid #ccc;
  padding: 15px 20px 12px;
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  .single__column table th, .single__column table td {
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.5;
  }
}
.single__column table th {
  background: #f8f8f8;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 599px) {
  .single__column table th {
    white-space: normal;
  }
}
.single__column table td {
  text-align: left;
}
.single__column .single__box {
  margin-top: 40px;
  padding: 40px;
  border: solid 2px #ccc;
  border-radius: 6px;
}
@media screen and (max-width: 599px) {
  .single__column .single__box {
    margin-top: 30px;
    padding: 20px;
    border: solid 1px #ccc;
  }
}
.single__column .single__box > *:first-child {
  margin-top: 0 !important;
}
.single__column .single__box > *:last-child {
  margin-bottom: 0 !important;
}
.single__column .single__box > ul, .single__column .single__box ol {
  background-color: #fff;
  padding: 0;
  margin-top: 20px;
}
@media screen and (max-width: 599px) {
  .single__column .single__box > ul, .single__column .single__box ol {
    margin-top: 15px;
  }
}
.single__column .single__box > ul > li, .single__column .single__box ol > li {
  font-size: 18px;
  line-height: 1.8;
  padding-left: 0;
}
@media screen and (max-width: 599px) {
  .single__column .single__box > ul > li, .single__column .single__box ol > li {
    font-size: 15px;
    line-height: 1.65;
  }
}
.single__column .single__box > ul > li::before, .single__column .single__box ol > li::before {
  content: none !important;
}
.single__column .single__box > ul > li + li, .single__column .single__box ol > li + li {
  margin-top: 15px;
}
@media screen and (max-width: 599px) {
  .single__column .single__box > ul > li + li, .single__column .single__box ol > li + li {
    margin-top: 10px;
  }
}
.single__column .post-nav {
  margin-top: 70px;
}
@media screen and (max-width: 599px) {
  .single__column .post-nav {
    margin-top: 50px;
  }
}
.single__column .post-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  background: none;
  border-radius: 0;
}
.single__column .post-nav__item {
  margin: 0 !important;
  padding: 0 !important;
  width: 30%;
}
.single__column .post-nav__item::before {
  content: none !important;
}
.single__column .post-nav__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #101010;
}
.single__column .post-nav__item a:hover {
  opacity: 0.68;
}
@media screen and (max-width: 599px) {
  .single__column .post-nav__item a {
    font-size: 13px;
  }
}
.single__column .post-nav__item:first-child a, .single__column .post-nav__item:last-child a {
  border: 1px solid #838383;
  border-radius: 50px;
  padding: 15px 75px 12px;
  min-width: 180px;
}
@media screen and (max-width: 1024px) {
  .single__column .post-nav__item:first-child a, .single__column .post-nav__item:last-child a {
    padding: 15px 30px 12px;
    min-width: 160px;
  }
}
@media screen and (max-width: 599px) {
  .single__column .post-nav__item:first-child a, .single__column .post-nav__item:last-child a {
    padding: 12px 20px 10px;
    min-width: 100px;
  }
}
.single__column .post-nav__item:nth-child(2) a {
  text-decoration: underline;
  white-space: nowrap;
}
.single__column .post-nav__item.is-hidden {
  visibility: hidden;
}/*# sourceMappingURL=column.css.map */