@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700&display=swap");
/* ==============================================================
# 2カラム共通
============================================================== */
:root {
  --side-width: 22rem;
  --gap-width: 4rem;
}

.sec_two_col {
  margin-bottom: 4rem;
}
.sec_two_col .two_col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--gap-width);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 991px) {
  .sec_two_col .two_col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sec_two_col .col_main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  min-width: 0;
}
@media print, screen and (min-width: 992px) {
  .sec_two_col .col_side {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 var(--side-width);
            flex: 0 0 var(--side-width);
  }
}
@media screen and (max-width: 991px) {
  .sec_two_col .col_side {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 100%;
  }
}

/* ==============================================================
# Category Badge（共通）— 一覧/詳細の統一見た目
============================================================== */
/* ベース形状 */
.news_single .news_single_head .news_single_meta .cats .cat {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  font-size: 1.1rem;
  line-height: 1;
  /* 高さのブレを防止 */
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* スラッグ別の色分け */
.cat-info {
  background: #E64D4D;
  color: #FFFFFF;
  border-color: #E64D4D;
}

.cat-gyuhan {
  background: #212121;
  color: #FFFFFF;
  border-color: #212121;
}

.cat-gyoza {
  background: #5D4037;
  color: #FFFFFF;
  border-color: #5D4037;
}

.cat-ichiya {
  background: #1976D2;
  color: #FFFFFF;
  border-color: #1976D2;
}

.cat-ir {
  background: #AD1457;
  color: #FFFFFF;
  border-color: #AD1457;
}

.cat-sumitas {
  background: #388E3C;
  color: #FFFFFF;
  border-color: #388E3C;
}

.cat-default {
  background: #DB0000;
  color: #FFFFFF;
  border-color: #DB0000;
}

/* ==============================================================
# サイドバー（共通）
============================================================== */
.col_side .widget {
  margin-bottom: 2rem;
}
.col_side .widget_title {
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 2px solid #333;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
}
.col_side ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.col_side ul li {
  margin: 1rem 0;
}
.col_side .w_title {
  font-size: 1.4rem;
}
.col_side .w_date {
  display: block;
  font-size: 1.2rem;
}

/* ==============================================================
# 投稿詳細（single.php） .news_single
============================================================== */
.news_single {
  color: #464646;
}
.news_single .news_single_head {
  margin-bottom: 2.4rem;
}
.news_single .news_single_head .news_single_title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 991px) {
  .news_single .news_single_head .news_single_title {
    font-size: 2.4rem;
  }
}
@media print, screen and (min-width: 992px) {
  .news_single .news_single_head .news_single_title {
    font-size: 2.8rem;
  }
}
.news_single .news_single_head .news_single_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 1.2rem;
  color: #777;
  /* a.cat / span.cat 共通 */
}
.news_single .news_single_head .news_single_meta .date {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.news_single .news_single_head .news_single_meta .cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news_single .news_single_body {
  font-size: 1.6rem;
  line-height: 2;
}
.news_single .news_single_body > * + * {
  margin-top: 1.2em;
}
.news_single .news_single_body h2,
.news_single .news_single_body h3,
.news_single .news_single_body h4,
.news_single .news_single_body h5,
.news_single .news_single_body h6 {
  line-height: 1.5;
}
.news_single .news_single_body h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  margin-top: 2.2em;
  padding-left: 0.8em;
  position: relative;
}
.news_single .news_single_body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 3px;
  height: 1.2em;
  background: #E64D4D;
}
.news_single .news_single_body h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.8rem;
  margin-top: 2em;
  border-left: 2px solid #BEBEBE;
  padding-left: 0.8em;
}
.news_single .news_single_body h4 {
  font-size: 1.6rem;
}
.news_single .news_single_body p {
  margin: 1.2em 0 0;
}
.news_single .news_single_body ul,
.news_single .news_single_body ol {
  padding-left: 1.6em;
}
.news_single .news_single_body ul li,
.news_single .news_single_body ol li {
  margin: 0.4em 0;
}
.news_single .news_single_body blockquote {
  margin: 1.6em 0;
  padding: 1.2em 1.4em;
  border-left: 4px solid #BEBEBE;
  background: #fafafa;
  color: #555;
}
.news_single .news_single_body img,
.news_single .news_single_body video {
  max-width: 100%;
  height: auto;
  border-radius: 0.6rem;
}
.news_single .news_single_body figure {
  margin: 1.6em 0;
  text-align: center;
}
.news_single .news_single_body figure figcaption {
  font-size: 1.2rem;
  color: #777;
  margin-top: 0.6rem;
}
.news_single .news_single_body .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.news_single .news_single_body .alignleft {
  float: left;
  margin: 0.4rem 1.2rem 0.8rem 0;
}
.news_single .news_single_body .alignright {
  float: right;
  margin: 0.4rem 0 0.8rem 1.2rem;
}
@media (max-width: 768px) {
  .news_single .news_single_body .alignleft,
  .news_single .news_single_body .alignright {
    float: none;
    margin: 1rem auto;
    display: block;
  }
}
.news_single .news_single_body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
}
.news_single .news_single_body table th,
.news_single .news_single_body table td {
  border: 1px solid #e6e6e6;
  padding: 0.8rem 1.2rem;
}
.news_single .news_single_body table th {
  background: #fafafa;
  text-align: left;
}
.news_single .news_single_body table caption {
  text-align: left;
  color: #777;
  margin-bottom: 0.4rem;
}
.news_single .news_single_body pre,
.news_single .news_single_body code,
.news_single .news_single_body kbd,
.news_single .news_single_body samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 1.3rem;
}
.news_single .news_single_body pre {
  background: #1f1f1f;
  color: #f2f2f2;
  padding: 1.2rem 1.4rem;
  border-radius: 0.6rem;
  overflow: auto;
}
.news_single .news_single_body code {
  background: #f5f5f5;
  padding: 0.2rem 0.4rem;
  border-radius: 0.3rem;
}
.news_single .news_single_footer {
  margin-top: 3.2rem;
}
.news_single .news_single_footer .post_nav {
  border-top: 1px solid #ddd;
  padding-top: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}
.news_single .news_single_footer .post_nav a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 0.6rem;
  text-decoration: none;
  -webkit-transition: background 0.2s, border-color 0.2s, -webkit-transform 0.1s;
  transition: background 0.2s, border-color 0.2s, -webkit-transform 0.1s;
  transition: background 0.2s, border-color 0.2s, transform 0.1s;
  transition: background 0.2s, border-color 0.2s, transform 0.1s, -webkit-transform 0.1s;
}
.news_single .news_single_footer .post_nav a:hover {
  background: #f8f8f8;
  border-color: #bbb;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.news_single .news_single_footer .link_box {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ==============================================================
# ページネーション
============================================================== */
.pagination {
  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: 0.8rem;
  margin-top: 3rem;
  font-size: 1.4rem;
}
.pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 3.2rem;
  height: 3.2rem;
  padding: 0 0.8rem;
  border: 1px solid #ddd;
  border-radius: 0.4rem;
  text-decoration: none;
  color: #333;
  background: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.pagination .page-numbers:hover {
  background: #f5f5f5;
  border-color: #aaa;
}
.pagination .page-numbers.current {
  background: #333;
  color: #fff;
  border-color: #333;
  font-weight: bold;
  cursor: default;
}
.pagination .page-numbers.dots {
  border: 0;
  background: transparent;
  cursor: default;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  min-width: auto;
  padding: 0 1rem;
  font-size: 1.3rem;
}