/* rem size  */
/* Media Quary */
/* ====================================================
config vw
// ----
// * ex) width: calcvw(200)
// ----
==================================================== */
/* ====================================================
@mixin output
// ----
// * ex) @include mixin_menu();
// ----
==================================================== */
/* ====================================================
Transiton
==================================================== */
/* ====================================================
opacity
==================================================== */
/* ====================================================
flexbox
==================================================== */
/* ====================================================
other
==================================================== */
/* ====================================================
extend
// ----
// * ex) @extend %extend;
// ----
==================================================== */
.l-column2 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-column2 {
    flex-direction: column;
  }
}

.l-column2_main {
  width: 75%;
}
@media screen and (max-width: 767px) {
  .l-column2_main {
    width: 100%;
  }
}

.sidebar {
  width: 17%;
}
@media screen and (max-width: 767px) {
  .sidebar {
    width: 100%;
  }
}

.sidebar_item {
  border-top: 1px solid rgba(147, 155, 167, 0.2);
  padding: 30px 0;
}
.sidebar_item .side_item_title {
  color: var(--main_color);
  font-size: 1.125rem;
  margin-bottom: 20px;
}

.sidebar_cat_list {
  color: #757b81;
}
.sidebar_cat_list li a::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #757b81;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  position: relative;
  top: -2px;
}
.sidebar_cat_list li a:hover {
  color: var(--main_color);
}
.sidebar_cat_list li a:hover::before {
  background: var(--main_color);
}

.sidebar_select_wrap {
  background: #f5f5f5;
  padding: 14px 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sidebar_select_wrap {
    padding: 12px;
  }
}
.sidebar_select_wrap::after {
  content: "";
  display: block;
  width: 12px;
  height: 6px;
  background-color: var(--main_color);
  clip-path: polygon(50% 6px, 0% 0%, 11.5px 0%);
  position: absolute;
  top: 46%;
  right: 20px;
}
@media screen and (max-width: 767px) {
  .sidebar_select_wrap::after {
    right: 5px;
  }
}
.sidebar_select_wrap select {
  border: none;
  background: none;
  color: #c2c7cb;
  width: 100%;
  appearance: none;
}

.c_post_date {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  width: 6.8em;
}

.c_post_cat_name {
  background: var(--main_color);
  border-radius: 5em;
  color: #fff;
  font-size: 0.6875rem;
  letter-spacing: 0;
  padding: 1px 10px 2px;
  white-space: nowrap;
}

.c_meta_wrap {
  display: flex;
  align-items: center;
}

.category_post_cont .news_list_item {
  color: currentColor;
  display: flex;
  padding: 30px 20px 30px 0;
  border-top: 1px solid rgba(147, 155, 167, 0.2);
  position: relative;
}
@media screen and (max-width: 767px) {
  .category_post_cont .news_list_item {
    flex-direction: column;
  }
}
.category_post_cont .news_list_item:last-of-type {
  border-bottom: 1px solid rgba(147, 155, 167, 0.2);
}
.category_post_cont .c_post_cat_name {
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .category_post_cont .c_post_cat_name {
    margin-left: 10px;
  }
}
@media screen and (min-width: 768px) {
  .category_post_cont .cont_ttl {
    margin-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .category_post_cont .cont_ttl {
    margin-top: 16px;
  }
}
.category_post_cont .arrow {
  position: absolute;
  right: 0;
  top: calc(50% - 4px);
}

.cat_page_nav {
  margin: 60px 0 30px;
}
.cat_page_nav .nav-links {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}
.cat_page_nav .page-numbers {
  font-family: "Outfit", sans-serif;
  font-size: 0.9375rem;
  letter-spacing: 0.15em;
  color: #bac2c9;
  padding: 15px;
  line-height: 1;
}
.cat_page_nav .page-numbers.current {
  color: currentColor;
}
.cat_page_nav .next.page-numbers {
  position: absolute;
  right: 0;
  color: currentColor;
}
.cat_page_nav .prev.page-numbers {
  position: absolute;
  left: 0;
  color: currentColor;
}

.single_post_cont .c_post_cat_name {
  margin-left: 30px;
}
.single_post_cont .cont_ttl {
  font-size: 1.5rem;
  font-weight: 500px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .single_post_cont .cont_ttl {
    font-size: 1.125rem;
  }
}

.single_post_main_cont {
  border-top: 1px solid rgba(147, 155, 167, 0.2);
  border-bottom: 1px solid rgba(147, 155, 167, 0.2);
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.single_post_main_cont p {
  margin-bottom: 1.8em;
}

.single_page_nav {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}
.single_page_nav .prev_next_text {
  font-family: "Outfit", sans-serif;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
}/*# sourceMappingURL=post.css.map */