@charset "utf-8";
/* CSS Document */

/* ===============================
	news_top
 =============================== */
#news_top {
  padding-top: 90px;
  margin-bottom: 100px;
}
#news_top .wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
#news_top #news_category_con {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}
#news_top #news_category_con .news_category_btn {
  font-size: 13px;
  letter-spacing: 0.05em;
  border: var(--C-black) 1px solid;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 24px;
}
#news_top #news_category_con .news_category_btn:hover,
#news_top #news_category_con .news_category_btn.active {
  opacity: 1;
  color: var(--C-white);
  background: var(--C-red);
  border: none;
}
@media screen and (max-width: 640px) {
  #news_top {
    padding-top: 14vw;
    margin-bottom: 8vw;
  }
  #news_top .wrap {
    flex-direction: column;
    gap: 8vw;
  }
  #news_top #news_category_con {
    gap: 3vw 4vw;
    margin-top: 0;
  }
  #news_top #news_category_con .news_category_btn {
    font-size: 2.8125vw;
    width: calc((100% - (4vw * 2)) / 3);
    height: 7vw;
  }
}

/* ===============================
	common_news
 =============================== */
#common_news ul {
  flex-wrap: wrap;
}
#common_news .news_list {
  display: none;
}
#common_news .news_list.show {
  display: flex;
}
#common_news li.category_01 .list_txt .category::after {
  content: '[お知らせ]';
}
#common_news li.category_02 .list_txt .category::after {
  content: '[⼊会案内]';
}
#common_news li.category_03 .list_txt .category::after {
  content: '[⼤会案内]';
}
#common_news li.category_04 .list_txt .category::after {
  content: '[⼤会結果]';
}
#common_news li.category_05 .list_txt .category::after {
  content: '[イベント]';
}
@media screen and (max-width: 640px) {
  #common_news ul {
    gap: 10vw;
  }
  #common_news li {
    width: 100%;
  }
}

/* ===============================
	news_pagenation
 =============================== */
#news_pagenation {
  margin-top: 100px;
  padding-bottom: 120px;
}
.wp-pagenavi {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 10px;
}
#news_pagenation .wp-pagenavi a,
#news_pagenation .wp-pagenavi span {
  font-size: 30px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .4s;
  border: none;
  padding: 0;
  margin: 0;
}
#news_pagenation .wp-pagenavi a {
  color: #9f9fa0;
}
#news_pagenation .wp-pagenavi a:hover {
  color: var(--C-black);
}
#news_pagenation .wp-pagenavi span.current {
  font-weight: 400;
}
#news_pagenation .wp-pagenavi a:hover,
#news_pagenation .wp-pagenavi span.current {
  border: none;
}

/* #news_pagenation .pagination-sp:not(.pagination-index):hover a {
  color: var(--C-black);
}
#news_pagenation .pagination-index a {
  color: var(--C-black);
}
#news_pagenation .pagination-index a {
  pointer-events: none;
} */
@media screen and (max-width: 640px) {
  #news_pagenation {
    margin-top: 14vw;
    padding-bottom: 22vw;
  }
  #news_pagenation ul {
    gap: 4vw 3vw;
    justify-content: center;
    width: calc((10vw * 5) + (3vw * 4));
    margin: auto;
  }
  .wp-pagenavi {
    gap: 4vw 3vw;
    justify-content: center;
    width: calc((10vw * 5) + (3vw * 4));
    margin: auto;
  }
  #news_pagenation .wp-pagenavi a,
  #news_pagenation .wp-pagenavi span {
    font-size: 8vw;
    width: 10vw;
    height: 10vw;
  }
}



/* ===============================
	news_detail
 =============================== */
/* news_detail_title */
#news_detail_title {
  margin-bottom: 16px;
  padding-top: 94px;
}
#news_detail_title time {
  font-size: 16px;
  display: block;
  margin-bottom: 6px;
}
#news_detail_title .category {
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}
#news_detail_title h2 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.333333333333333;
}
@media screen and (max-width: 640px) {
  #news_detail_title {
    margin-bottom: 6vw;
    padding-top: 14vw;
  }
  #news_detail_title time {
    font-size: 3vw;
    margin-bottom: 2vw;
  }
  #news_detail_title .category {
    font-size: 3vw;
    margin-bottom: 3vw;
  }
  #news_detail_title h2 {
    font-size: 6.25vw;
  }
}

/* news_detail */
#news_detail {
  margin-bottom: 110px;
}
@media screen and (max-width: 640px) {
  #news_detail {
    margin-bottom: 12vw;
  }
}

/* news_detail_btn */
#news_detail_btn {
  margin-bottom: 138px;
}
#news_detail_btn .wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
#news_detail_btn .btn {
  width: 172px;
  padding: 10px 38px;
}
#news_detail_btn .btn::after {
  right: 18px;
}
.no-page {
  pointer-events: none;
	cursor: default;
  opacity: 0.3;
}

@media screen and (max-width: 640px) {
  #news_detail_btn {
    margin-bottom: 22vw;
  }
  #news_detail_btn .wrap {
    flex-direction: column;
    justify-content: center;
    gap: 4vw;
  }
  #news_detail_btn .btn {
    width: 69.375vw;
    padding: 2.8vw 8.75vw;
  }
}

/* news_dtail post */
#post * {
  font-size: 16px;
}
#post strong {
  font-weight: bold;
}
#post em {
  font-style: italic;
}
#post ul,
#post ol {
  padding-left: 25px;
}
#post li {
  list-style: disc;
  margin-bottom: 0;
}

#post ol li {
  list-style: decimal;
}
#post a {
  text-decoration: underline;
}
#post p,
#post ul,
#post ol {
  margin-bottom: 1em;
}
img.alignright { display: block; margin: 0 0 0 auto!important;}
img.alignleft { display: block; margin: 0 auto 0 0!important;}
img.aligncenter { display: block; margin: 0 auto!important;}