@charset "UTF-8";
/* =====================
	サイト名
 ======================= */
/** -------------------- 変数定義 -------------------- **/
:root {
  /* カラー定義 */
  --c_text: #000000;
  --c_white: #fff;
  --c_navy_blue: #25488d;
  --c_orange: #f7a508;
  /* フォント定義 */
  --font_Noto_Sans_JP: "Noto Sans JP", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  /* transition定義 */
  --anime: all 0.4s ease-out;
}

/** ------------------------ COMMON STYLE ------------------------ **/
html {
  font-size: 100%;
}

body {
  font-family: var(--font_Noto_Sans_JP);
  font-optical-sizing: auto;
  font-size: clamp(14px, 0.9375vw, 0.9375vw);
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--c_text);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--c_text);
  text-decoration: none;
  transition: var(--anime);
}

a:hover {
  opacity: 0.7;
}

ul,
ol {
  list-style: none;
}

.sp-only {
  display: none;
}

.wrapper {
  width: 59.9%;
  margin: 0 auto;
}

.main-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5.21%;
}

.main {
  width: 73.91%;
}

body:not(.home) .main {
  margin-top: 6.09%;
}

.home,
.post-type-archive-gesshin,
.single-gesshin,
.post-type-archive-documents,
.single-documents {
  background-image: url(../img/common/bg-map.png);
  background-repeat: no-repeat;
  background-size: 117.5%;
  background-position: 61% calc(100% - 17.44em);
}

/** ------------------------ ヘッダー ------------------------ **/
.header {
  background: var(--c_white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 2em; /* レスポンシブ対応用CSS */
  padding: 1.61% 1.15% 1.15%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header .site-branding {
  flex: 1; /* レスポンシブ対応用CSS */
}

.header .site-branding a {
  display: flex;
  flex-wrap: wrap; /* レスポンシブ対応用CSS */
  align-items: center;
  column-gap: 0.78em;
  row-gap: 1em; /* レスポンシブ対応用CSS */
}

.header .header-logo {
  width: 12.03vw;
}

.header .header-logo img {
  width: 100%;
}

.header .site-name {
  font-size: 1.25vw;
  font-weight: bold;
  color: var(--c_navy_blue);
}

.header .site-navigation {
  display: flex;
  align-items: center;
  column-gap: 1.39em;
}

.header .header-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 0.89em;
}

.header .header-nav-list-top {
  display: flex;
  align-items: center;
  column-gap: 3.33em;
  font-weight: 500;
  transform: translateX(-1.67em);
}

.header .header-nav-item-top {
  position: relative;
}

.header .header-nav-item-top::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #707070;
  position: absolute;
  top: 50%;
  right: -1.67em;
  transform: translateY(-50%);
}

.header .header-nav-list-bottom {
  display: flex;
  align-items: center;
  column-gap: 1.11em;
  font-weight: bold;
}

.header .header-nav-item-bottom a {
  color: var(--c_navy_blue);
}

.header .menu-btn {
  display: none;
  width: 50px;
  height: 25px;
  position: relative;
  cursor: pointer;
}

.header .menu-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--c_navy_blue);
  transition: var(--anime);
}

.header .menu-btn span:first-child {
  top: 0;
}

.header .menu-btn span:nth-child(2),
.header .menu-btn span:nth-child(3) {
  top: 0;
  bottom: 0;
  margin: auto;
}

.header .menu-btn span:last-child {
  bottom: 0;
}

.header .menu-btn.is-open span:first-child,
.header .menu-btn.is-open span:last-child {
  opacity: 0;
}

.header .menu-btn.is-open span:nth-child(2) {
  transform: rotate(45deg);
}

.header .menu-btn.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

/** ------------------------ フッター ------------------------ **/
.footer {
  background-color: rgba(230, 230, 230, 0.44);
  padding: 1.35% 0 0.89%;
}

.footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 2em; /* レスポンシブ対応用CSS */
  padding: 0 6.61% 0 6.52%;
  margin-bottom: 1.65%;
}

.footer .company-info {
  display: flex;
  flex-direction: column;
  row-gap: 0.78em;
  flex: 1; /* レスポンシブ対応用CSS */
}

.footer .site-branding {
  display: flex;
  flex-direction: column;
  row-gap: 0.72em;
}

.footer .footer-logo {
  width: 12.83em;
}

.footer .footer-logo img {
  width: 100%;
}

.footer .site-name {
  font-size: 122.22%;
  font-weight: bold;
  color: var(--c_navy_blue);
}

.footer address {
  font-style: normal;
  font-size: 88.89%;
  font-weight: 500;
  color: var(--c_navy_blue);
}

.footer address a {
  color: var(--c_navy_blue);
}

.footer .site-navigation {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 1.67em;
}

.footer .footer-nav {
  display: flex;
  align-items: flex-start;
  column-gap: 5.22em;
  white-space: nowrap; /* レスポンシブ対応用CSS */
}

.footer .footer-nav-list-left {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em 2em;
  font-size: 111%;
  font-weight: bold;
}

.footer .footer-nav-list-left a {
  color: var(--c_navy_blue);
}

.footer .footer-nav-list-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 1.3em;
  font-weight: 500;
}

.footer .footer-nav-item-right {
  text-align: right;
  margin-right: 1.33em;
  position: relative;
}

.footer .footer-nav-item-right::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #707070;
  position: absolute;
  top: 50%;
  right: -1.33em;
  transform: translateY(-50%);
}

.footer .copyright {
  font-size: 77.78%;
  text-align: center;
}

/** ------------------------ サイドバー ------------------------ **/
.sidebar {
  width: 22.61%;
}

body:not(.home) .sidebar {
  margin-top: 4.35%;
}

.sidebar .sidebar-ttl {
  width: fit-content;
  margin: 0 auto;
  padding: 0 0.5em;
  display: flex;
  align-items: center;
  column-gap: 0.2em;
  font-size: 138.89%;
  font-weight: 600;
  color: var(--c_navy_blue);
  border-bottom: 1px solid var(--c_navy_blue);
}

.sidebar .sidebar-nav {
  margin-bottom: 22.69%;
}

.sidebar .sidebar-nav-item {
  border-bottom: 1px solid #707070;
}

.sidebar .sidebar-nav-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 122.22%;
  font-weight: bold;
  padding: 1.18em 0.5em;
}

.sidebar .sidebar-nav-item a:hover {
  opacity: 1;
  color: var(--c_navy_blue);
}

.sidebar .sidebar-nav-item a::after {
  content: "";
  width: 1em;
  height: 1em;
  background-image: url(../img/common/icon-arrow-blue-v2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: var(--anime);
}

.sidebar .sidebar-nav-item a:hover::after {
  background-image: url(../img/common/icon-arrow-blue-v3.svg);
}

.sidebar .sidebar-documents {
  margin-bottom: 22.69%;
}

.sidebar .sidebar-ttl.documents-ttl {
  margin-bottom: 8.85%;
}

.sidebar .sidebar-ttl.documents-ttl::before {
  content: "";
  width: 0.88em;
  height: 0.8em;
  background-image: url(../img/common/icon-documents.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.sidebar .documents-btn-list {
  display: flex;
  flex-direction: column;
  row-gap: 0.5em;
}

.sidebar .btn-documents {
  font-size: 122.22%;
  width: 100%;
  border-radius: 13px;
  padding: 0.86em 1.09em 1.05em 0.86em;
}

.sidebar .btn-blue.btn-documents:hover {
  opacity: 0.7;
  background-color: var(--c_navy_blue);
}

.sidebar .btn-documents .btn-documents-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 0.18em;
}

.sidebar .btn-documents small {
  font-size: 63.64%;
  transition: var(--anime);
}

.sidebar .btn-documents::after {
  width: 1em;
  height: 1em;
}

.sidebar .btn-blue.btn-documents:hover::after {
  background-image: url(../img/common/icon-arrow-blue.svg);
}

.sidebar .btn-documents:hover small {
  transform: scale(1.05);
}

.sidebar .sidebar-ttl.link-ttl {
  margin-bottom: 8.08%;
}

.sidebar .sidebar-ttl.link-ttl::before {
  content: "";
  width: 0.92em;
  height: 1em;
  background-image: url(../img/common/icon-link.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.sidebar .banner-list {
  display: flex;
  flex-direction: column;
  row-gap: 0.5em;
}

/** ------------------------ ページタイトル、セクションタイトル ------------------------ **/
.page-header {
  position: relative;
  margin-bottom: 8.24%;
}

.page-header::before {
  content: "";
  width: 100%;
  height: 0.17em;
  background-color: var(--c_navy_blue);
  position: absolute;
  bottom: 0;
  left: 0;
}

.page-ttl {
  width: fit-content;
  font-size: 166.67%;
  font-weight: bold;
  color: var(--c_navy_blue);
  position: relative;
  padding-bottom: 2.35%;
}

.page-ttl::after {
  content: "";
  width: calc(100% + 1em);
  height: 0.27em;
  background-color: var(--c_navy_blue);
  position: absolute;
  bottom: 0;
  left: 0;
}

/** ------------------------ NEWS共通（記事一覧） ------------------------ **/
.news-article-cate {
  width: 8.79em;
  font-size: 77.78%;
  font-weight: 600;
  text-align: center;
  color: var(--c_white);
  padding: 0.1em 0.5em;
  border-radius: 999px;
}

.news-cate-notice {
  background-color: #54a7ef;
}

.news-cate-district-conference {
  background-color: #2a75cc;
}

.news-cate-meeting-change {
  background-color: #28c36f;
}

.news-cate-official-visit {
  background-color: #3d9163;
}

.news-cate-all {
  background-color: var(--c_orange);
}

.news .news-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 4.24%;
}

.news .news-item {
  border-top: 1px dashed #707070;
}

.news .news-item:last-child {
  border-bottom: 1px dashed #707070;
}

.news .news-item a {
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  column-gap: 0.5em;
  padding: 1.44em 2.94em 1.5em 1.33em;
}

.news .news-item a:hover {
  opacity: 1;
}

.news .news-item a::after {
  content: "";
  width: 1.22em;
  height: 1.22em;
  background-image: url(../img/common/icon-arrow-gray.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: var(--anime);
  align-self: center;
}

.news .news-item a:has(.news-cate-notice):hover::after {
  background-image: url(../img/common/icon-arrow-54a7ef.svg);
}

.news .news-item a:has(.news-cate-district-conference):hover::after {
  background-image: url(../img/common/icon-arrow-2a75cc.svg);
}

.news .news-item a:has(.news-cate-meeting-change):hover::after {
  background-image: url(../img/common/icon-arrow-28c36f.svg);
}

.news .news-item a:has(.news-cate-official-visit):hover::after {
  background-image: url(../img/common/icon-arrow-3d9163.svg);
}

.news .news-article-inner {
  flex: 1;
  display: flex;
  align-items: baseline;
  column-gap: 0.61em;
}

.news .news-article-meta {
  width: 14em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news .news-article-date {
  font-size: 88.89%;
}

.news .news-article-ttl {
  font-size: 100%;
  font-weight: 500;
  flex: 1;
  transition: var(--anime);
}

.news .news-item a:has(.news-cate-notice):hover .news-article-ttl {
  color: #54a7ef;
}

.news .news-item a:has(.news-cate-district-conference):hover .news-article-ttl {
  color: #2a75cc;
}

.news .news-item a:has(.news-cate-meeting-change):hover .news-article-ttl {
  color: #28c36f;
}

.news .news-item a:has(.news-cate-official-visit):hover .news-article-ttl {
  color: #3d9163;
}

/** ------------------------ ボタン ------------------------ **/
.btn-wrapper {
  text-align: center;
}

.btn {
  display: inline-block;
  position: relative;
  transition: var(--anime);
}

.btn-blue {
  width: 11.33em;
  font-weight: bold;
  color: var(--c_white);
  background-color: var(--c_navy_blue);
  padding: 1.44em 1.56em 1.5em 1.78em;
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-blue:hover {
  opacity: 1;
  background-color: var(--c_orange);
}

.btn-blue::after {
  content: "";
  width: 1.22em;
  height: 1.22em;
  background-image: url(../img/common/icon-arrow-blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: var(--anime);
}

.btn-blue:hover:after {
  background-image: url(../img/common/icon-arrow-orange.svg);
}

.btn-orange {
  width: 11.33em;
  font-weight: bold;
  color: var(--c_white);
  background-color: var(--c_orange);
  padding: 1.44em 1.56em 1.5em 1.78em;
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-orange::after {
  content: "";
  width: 1.22em;
  height: 1.22em;
  background-image: url(../img/common/icon-arrow-orange.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: var(--anime);
}

.btn-blue-v2 {
  width: 11.33em;
  font-weight: bold;
  color: var(--c_white);
  background-color: var(--c_navy_blue);
  padding: 1.44em 1.72em 1.5em 1.78em;
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-blue-v2:hover {
  opacity: 1;
  background-color: var(--c_orange);
}

.btn-blue-v2::after {
  content: "";
  width: 1.33em;
  height: 1.33em;
  background-image: url(../img/common/icon-arrow-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: var(--anime);
}

.btn-download {
  font-weight: bold;
  color: var(--c_white) !important;
  text-decoration: none !important;
  background-color: #54a7ef;
  padding: 0.72em 2.44em 0.94em 2.56em;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.5em;
}

.btn-download:hover {
  opacity: 1;
  background-color: #4896d9;
}

.btn-download::before {
  content: "";
  width: 0.94em;
  height: 0.94em;
  background-image: url(../img/common/icon-download.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

/** ------------------------ WP-PageNavi ------------------------ **/
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1em;
  font-size: 83.33%;
  font-weight: bold;
}

.wp-pagenavi a {
  color: var(--c_navy_blue);
  text-decoration: underline;
}

.wp-pagenavi a:hover {
  opacity: 1;
  color: var(--c_orange);
}

.wp-pagenavi .current {
  color: var(--c_orange);
}

.wp-pagenavi .first,
.wp-pagenavi .last {
  width: 0.93em;
  height: 0.93em;
  background-image: url(../img/common/icon-bent-arrow-blue-v2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  color: transparent; /* 文字を透明にする */
}

.wp-pagenavi .first {
  margin-right: 0.33em;
}

.wp-pagenavi .last {
  transform: rotate(180deg);
  margin-left: 0.33em;
}

.wp-pagenavi .first:hover,
.wp-pagenavi .last:hover {
  color: transparent;
  background-image: url(../img/common/icon-bent-arrow-orange-v2.svg);
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  width: 0.6em;
  height: 1.07em;
  background-image: url(../img/common/icon-bent-arrow-blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  color: transparent; /* 文字を透明にする */
}

.wp-pagenavi .nextpostslink {
  transform: rotate(180deg);
}

.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  color: transparent;
  background-image: url(../img/common/icon-bent-arrow-orange.svg);
}

/** ------------------------ single-pagination ------------------------ **/
.single-pagination {
  font-size: 83.33%;
  font-weight: bold;
  color: var(--c_navy_blue);
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5.8em;
}

.single-pagination a {
  color: var(--c_navy_blue);
}

.single-pagination a:hover {
  opacity: 1;
  color: var(--c_orange);
}

.single-pagination .btn-article-list {
  display: flex;
  align-items: center;
  column-gap: 0.87em;
  position: relative;
}

.single-pagination .btn-article-list::before {
  content: "";
  width: 0.93em;
  height: 0.93em;
  background-image: url(../img/common/icon-bent-arrow-blue-v2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: var(--anime);
}

.single-pagination .btn-article-list:hover::before {
  background-image: url(../img/common/icon-bent-arrow-orange-v2.svg);
}

.single-pagination .btn-single-pagination-inner {
  display: flex;
  align-items: center;
  column-gap: 3.07em;
}

.single-pagination .btn-single-pagination {
  display: flex;
  align-items: center;
  column-gap: 0.6em;
  position: relative;
}

.single-pagination .btn-single-pagination.next {
  flex-direction: row-reverse;
}

.single-pagination .btn-single-pagination::before {
  content: "";
  width: 0.6em;
  height: 1.07em;
  background-image: url(../img/common/icon-bent-arrow-blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: var(--anime);
}

.single-pagination .btn-single-pagination.next::before {
  transform: rotate(180deg);
}

.single-pagination .btn-single-pagination:hover::before {
  background-image: url(../img/common/icon-bent-arrow-orange.svg);
}

.single-pagination .btn-single-pagination.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

/** -------------------- タブレット -------------------- **/
@media (max-width: 1280px) {
  /** ------------------------ COMMON STYLE ------------------------ **/
  .wrapper {
    width: 90%;
  }

  /** ------------------------ ヘッダー ------------------------ **/
  .header .header-logo {
    width: 12.83em;
  }

  .header .site-name {
    font-size: 133.33%;
  }

  .header .site-navigation {
    position: fixed;
    right: 0;
    z-index: 100;
    width: 400px;
    max-width: 100%;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 50px 2em;
    transform: translateX(100%);
    transition: var(--anime);
    overflow-y: auto;
  }

  .header .site-navigation.is-open {
    transform: translateX(0);
  }

  .header .header-nav {
    flex-direction: column;
    align-items: center;
    row-gap: 50px;
    width: 100%;
  }

  .header .nav-item {
    width: 100%;
    text-align: center;
  }

  .header .header-nav-list-top {
    flex-direction: column;
    align-items: flex-end;
    row-gap: 1em;
    transform: none;
  }

  .header .header-nav-list-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
  }

  .header .menu-btn {
    display: block;
  }

  /** ------------------------ フッター ------------------------ **/
  .footer .footer-inner {
    padding: 0;
  }

  .footer .footer-nav {
    column-gap: 3em;
  }

  /** ------------------------ サイドバー ------------------------ **/
  .sidebar .documents-btn-list {
    align-items: center;
  }

  .sidebar .btn-documents {
    width: 11.82em;
  }
}

/** -------------------- サイドバー用ブレイクポイント -------------------- **/
@media (max-width: 1000px) {
  /** ------------------------ COMMON STYLE ------------------------ **/
  .main-container {
    flex-direction: column-reverse;
    align-items: center;
    row-gap: 100px;
  }

  .main {
    width: 100%;
  }

  /** ------------------------ サイドバー ------------------------ **/
  .sidebar {
    width: 100%;
    display: flex;
    justify-content: center;
    column-gap: 25px;
  }

  body:not(.home) .sidebar {
    margin-top: 0;
  }

  .sidebar .sidebar-nav {
    display: none;
  }

  .sidebar .sidebar-link {
    width: 260px;
  }
}

/** -------------------- スマホ -------------------- **/
@media (max-width: 699px) {
  /** ------------------------ COMMON STYLE ------------------------ **/
  body {
    font-size: 14px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .wrapper {
    width: 90%;
  }

  .main-container {
    margin-bottom: 50px;
  }

  body:not(.home) .main {
    margin-top: 25px;
  }

  .home,
  .post-type-archive-gesshin,
  .single-gesshin,
  .post-type-archive-documents,
  .single-documents {
    background-position: 61% calc(100% - 47em);
  }

  /** ------------------------ ヘッダー ------------------------ **/
  .header {
    padding: 10px;
  }
  .header .header-logo {
    width: 80px;
  }

  .header .site-name {
    font-size: 12px;
  }

  .header .menu-btn {
    width: 40px;
    height: 20px;
  }

  /** ------------------------ フッター ------------------------ **/
  .footer {
    padding: 50px 0 10px;
  }

  .footer .footer-inner {
    flex-direction: column-reverse;
    row-gap: 50px;
    margin-bottom: 50px;
  }

  .footer .company-info {
    row-gap: 25px;
  }

  .footer .site-branding {
    row-gap: 10px;
  }

  .footer .footer-logo {
    width: 200px;
  }

  .footer .site-name {
    font-size: 18px;
  }

  .footer address {
    font-size: 14px;
  }

  .footer .site-navigation {
    flex-direction: column-reverse;
    align-items: center;
    row-gap: 50px;
  }

  .footer .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 25px;
  }

  .footer .footer-nav-list-left {
    font-size: 14px;
    gap: 1em 3em;
  }

  .footer .footer-nav-list-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em 3em;
  }

  .footer .footer-nav-item-right {
    text-align: left;
    margin: 0;
  }

  .footer .copyright {
    font-size: 12px;
  }

  /** ------------------------ サイドバー ------------------------ **/
  .sidebar {
    flex-direction: column;
    align-items: center;
  }

  .sidebar .sidebar-ttl {
    font-size: 20px;
  }

  .sidebar .sidebar-documents {
    margin-bottom: 50px;
  }

  .sidebar .sidebar-ttl.documents-ttl {
    margin-bottom: 25px;
  }

  .sidebar .sidebar-ttl.link-ttl {
    margin-bottom: 25px;
  }

  /** ------------------------ ページタイトル、セクションタイトル ------------------------ **/
  .page-header {
    margin-bottom: 50px;
  }

  .page-ttl {
    font-size: 20px;
    padding-bottom: 10px;
  }

  /** ------------------------ NEWS共通（記事一覧） ------------------------ **/
  .news .news-list {
    margin-bottom: 25px;
  }

  .news .news-item a {
    padding: 20px;
  }

  .news .news-article-inner {
    flex-direction: column;
    row-gap: 10px;
  }

  .news .news-article-meta {
    width: 15em;
  }

  .news .news-article-date {
    font-size: 12px;
  }

  .news .news-article-cate {
    font-size: 12px;
  }

  /** ------------------------ ボタン ------------------------ **/

  /** ------------------------ WP-PageNavi ------------------------ **/
  .wp-pagenavi {
    font-size: 14px;
  }

  /** ------------------------ single-pagination ------------------------ **/
  .single-pagination {
    font-size: 12px;
  }
}
