@charset "UTF-8";
.post_container {
  padding: 100px 0 240px;
  background-color: #e1f1f4;
}
@media only screen and (max-width: 1100px) {
  .post_container {
    padding: 80px 0 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .post_container {
    padding: 30px 0 0 0;
  }
}

.post_flex_box {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1100px) {
  .post_flex_box {
    flex-direction: column;
    justify-content: center;
    gap: 100px;
  }
}
@media (max-width: 768px) {
  .post_flex_box {
    gap: 50px;
  }
}

.post_left_box {
  width: 735px;
}
@media only screen and (max-width: 1100px) {
  .post_left_box {
    width: auto;
  }
}

.post_item {
  background-color: #fff;
  padding: 50px 60px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .post_item {
    padding: 10px 20px;
    margin-bottom: 50px;
  }
}
.post_item .post_title {
  padding-bottom: 15px;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #077f7c;
}
@media only screen and (max-width: 1100px) {
  .post_item .post_title {
    font-size: 26px;
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .post_item .post_title {
    font-size: 20px;
  }
}
.post_item .post_date {
  font-size: 14px;
  padding-bottom: 30px;
}
.post_item .post_text {
  line-height: 1.8;
  padding-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .post_item .post_text {
    padding-bottom: 30px;
  }
}
.post_item .post_text__single {
  max-width: 635px;
  word-break: break-all;
}
.post_item .post_text .post_text--excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3.6em;
}
.post_item .post_img {
  max-width: 100%;
  width: 580px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.post_item .post_img__single {
  padding: 30px 0 50px;
}
@media only screen and (max-width: 768px) {
  .post_item .post_img__single {
    padding: 20px 0 30px;
  }
}

.page-nav_container {
  padding-top: 85px;
}
@media only screen and (max-width: 1100px) {
  .page-nav_container {
    padding: 0;
  }
}

.page-nav_container ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.page-nav_container ul li,
.page-nav_container ul .page-numbers {
  font-size: 18px;
  width: 37px;
  height: 37px;
  border: 1px solid #595757;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-nav_container ul li.active, .page-nav_container ul li.current,
.page-nav_container ul .page-numbers.active,
.page-nav_container ul .page-numbers.current {
  color: #fff;
  background-color: #83cbc9;
  border-color: #83cbc9;
}

@media only screen and (max-width: 768px) {
  .side_bar {
    padding: 0 20px 30px 20px;
  }
}

.item_box {
  margin-bottom: 65px;
}
@media only screen and (max-width: 768px) {
  .item_box {
    margin-bottom: 30px;
  }
}
.item_box .item_title {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.075em;
  color: #077f7c;
  padding-bottom: 10px;
}
@media only screen and (max-width: 1100px) {
  .item_box .item_title {
    font-size: 26px;
    padding-bottom: 6px;
  }
}
@media only screen and (max-width: 768px) {
  .item_box .item_title {
    font-size: 20px;
    padding-bottom: 4px;
  }
}
.item_box .item_subtitle {
  font-size: 16px;
  color: #077f7c;
}
@media only screen and (max-width: 1100px) {
  .item_box .item_subtitle {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .item_box .item_subtitle {
    font-size: 12px;
  }
}
.item_box .item_link_box {
  padding-top: 25px;
  font-size: 15px;
  line-height: 1.5;
}
@media only screen and (max-width: 1100px) {
  .item_box .item_link_box {
    font-size: 14px;
    padding-top: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .item_box .item_link_box {
    font-size: 12px;
    padding-top: 15px;
  }
}
.item_box .item_link_box li {
  padding-bottom: 15px;
}
@media only screen and (max-width: 1100px) {
  .item_box .item_link_box li {
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .item_box .item_link_box li {
    padding-bottom: 5px;
  }
}

.post_pager {
  padding-top: 86px;
}
@media (max-width: 1100px) {
  .post_pager {
    padding-top: 50px;
  }
}
@media (max-width: 768px) {
  .post_pager {
    padding-top: 0;
  }
}
.post_pager__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 768px) {
  .post_pager__inner {
    max-width: 355px;
    padding: 30px 0;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
.post_pager__link {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  color: #595757;
  text-decoration: none;
}
@media (max-width: 768px) {
  .post_pager__link {
    font-size: 16px;
  }
}
.post_pager__link--prev {
  justify-content: flex-start;
}
.post_pager__link--next {
  justify-content: flex-end;
}
.post_pager__text {
  letter-spacing: 0.05em;
}
.post_pager__arrow {
  width: 32px;
  height: 32px;
  position: relative;
  display: inline-block;
}
@media (max-width: 768px) {
  .post_pager__arrow {
    width: 22px;
    height: 22px;
  }
}
.post_pager__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 32px;
  height: 32px;
  border: 2px solid #595757;
  border-top: none;
  border-right: none;
}
@media (max-width: 768px) {
  .post_pager__arrow::before {
    width: 22px;
    height: 22px;
  }
}
.post_pager__arrow--prev {
  margin-right: 85px;
}
@media (max-width: 1100px) {
  .post_pager__arrow--prev {
    margin-right: 65px;
  }
}
@media (max-width: 768px) {
  .post_pager__arrow--prev {
    margin-right: 12px;
  }
}
.post_pager__arrow--prev::before {
  transform: rotate(45deg);
}
.post_pager__arrow--next {
  margin-left: 85px;
}
@media (max-width: 1100px) {
  .post_pager__arrow--next {
    margin-left: 65px;
  }
}
@media (max-width: 768px) {
  .post_pager__arrow--next {
    margin-left: 12px;
  }
}
.post_pager__arrow--next::before {
  transform: rotate(-135deg);
}
.post_pager__divider {
  flex: 0 0 122px;
  height: 2px;
  background-color: #595757;
}
@media (max-width: 768px) {
  .post_pager__divider {
    flex-basis: 60px;
  }
}

/* 二重線 下黒 */
.is-style-double-line {
  border-bottom: 3px double #595757;
  padding-bottom: 0.3em;
  margin-bottom: 30px;
  color: #83cbc9;
  font-weight: 600;
}

/* 青字 */
.is-style-blue {
  color: #085D80;
  font-weight: 600;
}/*# sourceMappingURL=index.css.map */