@charset "UTF-8";
#news .main_block {
  margin: 7rem auto;
  position: relative;
  padding-top: 2rem;
  padding-bottom: 6.5rem;
}
#news .main_block .bg_white {
  margin-top: 2rem;
  margin-bottom: 2rem;
  background: var(--wp--preset--color--theme-white);
  border-radius: 25px;
  padding: 5.5em 0;
}
@media screen and (max-width: 599px) {
  #news .main_block .bg_white {
    max-width: none;
  }
}
#news .main_block .breadcrumb {
  font-size: var(--wp--preset--font-size--x-small);
}
#news .main_block::before {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  display: block;
  position: absolute;
  content: "";
  background: var(--wp--preset--color--theme-aquablue);
  width: 100vw;
  height: 100%;
  z-index: -1;
  top: 0;
  left: -10%;
}
@media screen and (max-width: 599px) {
  #news .main_block::before {
    width: 100vh;
    left: -50vw;
  }
}
#news .main_block .content_head {
  margin-top: 6rem;
  font-size: var(--wp--preset--font-size--xxx-large);
  font-weight: 600;
}
#news .post_title {
  font-weight: 600;
  font-size: var(--wp--preset--font-size--xx-large);
  color: var(--wp--preset--color--theme-blue);
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
#news .post_title::before {
  font-size: 0.8em;
  content: "●";
  color: var(--wp--preset--color--theme-skyblue);
  margin-right: 0.5em;
}
#news .news_index ul {
  margin: 0;
  padding: 0;
  justify-content: flex-start;
  display: flex;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  row-gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  #news .news_index ul {
    flex-direction: column;
  }
}
#news .news_index ul li {
  width: calc((100% - 2.5rem) / 3);
}
@media screen and (max-width: 599px) {
  #news .news_index ul li {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: none;
  }
}
#news .news_index ul li figure {
  border-radius: 10px;
  height: auto;
  overflow: hidden;
  margin-bottom: 1rem;
}
#news .news_index ul li figure img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 599px) {
  #news .news_index ul li figure {
    flex: 1;
  }
}
@media screen and (max-width: 599px) {
  #news .news_index ul li .post_info {
    flex: 1;
  }
}
#news .news_index ul li .post_cat {
  font-size: var(--wp--preset--font-size--small);
  text-align: center;
  display: inline-block;
  background: #000;
  border-radius: 2rem;
  padding: 0.2em 2em;
  margin-bottom: 0.5rem;
  margin-right: 0.625rem;
}
@media screen and (max-width: 599px) {
  #news .news_index ul li .post_cat {
    padding: 0.5em;
  }
}
#news .news_index ul li .post_cat a {
  line-height: 1.2;
  color: #FFF;
  text-decoration: none;
}
@media screen and (max-width: 599px) {
  #news .news_index ul li .post_cat a {
    font-size: var(--wp--preset--font-size--smallest);
  }
}
#news .news_index ul li .post_date {
  display: inline-block;
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--theme-gray);
}
#news .news_index ul li .post_title {
  line-height: 1.2;
  margin: 0;
}
#news .news_index ul li .post_title::before {
  content: none;
}
#news .news_index ul li .post_title a {
  font-size: var(--wp--preset--font-size--medium);
  margin: 0;
  margin-bottom: 0.625rem;
  font-weight: 500;
  color: var(--wp--preset--color--theme-black);
  text-decoration: none;
}
#news .pager.pager_index .page-numbers li a,
#news .pager.pager_index .page-numbers li span {
  border-radius: 5px;
  border: 2px solid var(--wp--preset--color--theme-blue);
  color: var(--wp--preset--color--theme-blue);
  background: var(--wp--preset--color--theme-white);
}
#news .pager.pager_index .page-numbers li span.current {
  background: var(--wp--preset--color--theme-blue);
  color: var(--wp--preset--color--theme-white);
}
#news .pager.pager_index .page-numbers li .next {
  position: relative;
}
#news .pager.pager_index .page-numbers li .next::before, #news .pager.pager_index .page-numbers li .next::after {
  background: var(--wp--preset--color--theme-blue);
  display: block;
  width: 5px;
  height: 2px;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: right;
}
#news .pager.pager_index .page-numbers li .next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#news .pager.pager_index .page-numbers li .next::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#news .pager.pager_index .page-numbers li .prev {
  position: relative;
}
#news .pager.pager_index .page-numbers li .prev::before, #news .pager.pager_index .page-numbers li .prev::after {
  background: var(--wp--preset--color--theme-blue);
  display: block;
  width: 5px;
  height: 2px;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: left;
}
#news .pager.pager_index .page-numbers li .prev::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#news .pager.pager_index .page-numbers li .prev::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#news.single .pager_single .page_list {
  display: flex;
  gap: 1.5rem;
  flex-wrap: nowrap;
  padding: 0;
  justify-content: center;
}
#news.single .pager_single .page_list .next,
#news.single .pager_single .page_list .prev {
  margin: 0;
  padding: 1rem 0.5rem;
  background: var(--wp--preset--color--theme-blue);
  color: var(--wp--preset--color--theme-white);
  border-radius: 5px;
}
#news.single .pager_single .page_list .index {
  display: none;
}
#news .main_foot {
  margin-bottom: 6em;
}/*# sourceMappingURL=news.css.map */