@charset "UTF-8";
/* CSS Document */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, b, strong, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  overflow-y: scroll;
}

main, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

a:focus {
  outline: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #aaa;
}

input::placeholder, textarea::placeholder {
  color: #aaa;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

* {
  box-sizing: border-box;
}

/* clearfix */
.clearfix {
  display: block;
}

.clearfix::after, .clearfix::before {
  display: block;
  clear: both;
  content: "";
}

/* setting */
a, a:hover, button, button:hover {
  transition: 0.1s;
}

/*---- body, wrap, inner --------------------------------------------------------------------------------------------------------------------------------*/
body {
  width: 100%;
  color: #313131;
  font-size: 16px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif !important;
  line-height: 1.5;
  text-align: center;
  word-wrap: break-word;
  overflow: hidden;
}

.inner {
  position: relative;
  width: 1280px;
  margin: 0 auto;
}

.innerW {
  position: relative;
  width: 1920px;
  margin: 0 auto;
}

.pc {
  display: inline-block;
}

.mb {
  display: none;
}

@media screen and (max-width: 1920px) {
  .innerW {
    width: auto;
    padding: 0;
  }
}
@media screen and (max-width: 1320px) {
  .inner {
    width: auto;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    width: auto;
    padding: 0 20px;
  }
  .innerW {
    width: auto;
    padding: 0;
  }
  .pc {
    display: none;
  }
  .mb {
    display: inline-block;
  }
}
@media print {
  .inner {
    width: auto;
    padding: 0 10px;
  }
}
/*---- header ----*/
#headerWrap {
  width: 100%;
  background: #fff;
}
#headerWrap .logoWrap {
  width: 100%;
  padding: 10px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}
#headerWrap .logoWrap h1 {
  display: inline-block;
}
#headerWrap .logoWrap h1 a {
  display: inline-block;
  transition: opacity 0.2s;
  padding: 0;
  margin: 0;
}
#headerWrap .logoWrap h1 a img {
  height: 80px;
  vertical-align: bottom;
}
#headerWrap .logoWrap h1 a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  #headerWrap {
    position: fixed;
    z-index: 8000;
  }
  #headerWrap .logoWrap h1 a img {
    height: 40px;
  }
}
@media screen and (max-width: 480px) {
  /*
  #headerWrap {
      .logoWrap { padding: 5px 0;
          h1 {
              a{
                  img { height: auto; max-height: 30px;}
              }
          }
      }
  }
      */
}
/* gNavi */
#gNavi {
  width: 100%;
  padding-top: 10px;
  position: relative;
}
#gNavi .menu {
  display: none;
}
#gNavi ul.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  list-style: none;
  margin: 0 auto;
  height: auto;
  padding: 15px 0;
}
#gNavi ul.nav-list .nav-item {
  margin: 0 2rem;
  position: relative;
}
#gNavi ul.nav-list .nav-item a {
  display: block;
  position: relative;
  height: 30px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  transition: color 0.1s ease;
  line-height: 30px;
}
#gNavi ul.nav-list .nav-item a::before, #gNavi ul.nav-list .nav-item a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  height: 2px;
  width: 0;
  background: #333;
  transition: width 0.1s ease;
}
#gNavi ul.nav-list .nav-item a::before {
  left: 50%;
}
#gNavi ul.nav-list .nav-item a::after {
  right: 50%;
}
#gNavi ul.nav-list .nav-item a:hover::before, #gNavi ul.nav-list .nav-item a:hover::after {
  width: 50%;
}
#gNavi.fixed {
  z-index: 9000;
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  #gNavi .menu {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    position: fixed;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    z-index: 9900;
  }
  #gNavi .menu span {
    display: block;
    background-color: #333;
    width: 32px;
    height: 1px;
    transition: all 0.1s ease;
  }
  #gNavi .menu:hover {
    cursor: pointer;
  }
  #gNavi .menu.close span:nth-of-type(1) {
    transform: translateY(10px) rotate(45deg);
  }
  #gNavi .menu.close span:nth-of-type(2) {
    transform: scale(0);
  }
  #gNavi .menu.close span:nth-of-type(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
  #gNavi .navWrap {
    display: none;
    overflow: hidden;
    z-index: 9000;
    position: fixed;
    width: 98%;
    background: #fff;
    box-shadow: 4px 5px 8px rgba(0, 0, 0, 0.2);
  }
  #gNavi .navWrap ul.nav-list {
    width: 98%;
    margin: 0 auto;
    padding: 15px 10%;
  }
  #gNavi .navWrap ul.nav-list .nav-item {
    width: 50%;
    max-width: 50%;
    margin: 0;
  }
  #gNavi .navWrap ul.nav-list .nav-item a {
    height: 60px;
    line-height: 60px;
  }
  #gNavi .navWrap ul.nav-list .nav-item a::before, #gNavi .navWrap ul.nav-list .nav-item a::after {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  /*
  #gNavi {
      .menu { display: flex; flex-direction: column;
          justify-content: space-evenly;
          align-items: center; position: fixed; top: 5px; right: 10px; width: 30px; height: 30px;
          span {
              display: block;
              background-color: #333;
              width: 22px;
              height: 1px;
              transition: all 0.1s ease;
          }
      }
      .menu.close {
          span:nth-of-type(1) { transform: translateY(6px) rotate(45deg);}
          span:nth-of-type(3) { transform: translateY(-10px) rotate(-45deg);}
      }
  }
      */
}
/*---- main --------------------------------------------------------------------------------------------------------------------------------*/
#mainWrap {
  max-width: 1540px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
#mainWrap #articleWrap {
  flex: 3;
}
#mainWrap #asideWrap {
  flex: 1;
}

@media screen and (max-width: 1580px) {
  #mainWrap {
    display: block;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  #mainWrap {
    display: block;
    margin-top: 70px;
  }
}
.imgFit {
  width: 100%;
  padding-top: 61.25%;
  position: relative;
  overflow: hidden; /* 62.5% */
}
.imgFit img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}

/* topics - default */
.topicsWrap {
  padding: 60px 0;
}
.topicsWrap .h2wrap {
  width: 100%;
  margin-bottom: 30px;
  border-bottom: 2px #333 solid;
  text-align: left;
}
.topicsWrap .h2wrap h2 {
  font-size: 1.5rem;
  font-weight: bold;
}
.topicsWrap .h2wrap h2::before {
  content: "●";
  color: #DE0716;
}
.topicsWrap .deepGray {
  background: #3d3d3d;
  padding: 60px;
}
.topicsWrap .container {
  width: 100%;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 60px;
}
.topicsWrap .container .item {
  flex: 1;
  background: #fff;
  box-shadow: 4px 5px 8px rgba(0, 0, 0, 0.2);
  /* アーカイブ */
  /* カテゴリー */
}
.topicsWrap .container .item figure figcaption {
  width: 100%;
  padding: 30px;
  text-align: left;
}
.topicsWrap .container .item figure figcaption .meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  height: 2em;
  font-size: 0.75rem;
  margin-bottom: 0.5em;
}
.topicsWrap .container .item figure figcaption .meta .cate {
  flex: 2;
}
.topicsWrap .container .item figure figcaption .meta .cate a {
  text-decoration: none;
  color: #666;
}
.topicsWrap .container .item figure figcaption .meta .cate a span {
  padding: 0 0.5em;
}
.topicsWrap .container .item figure figcaption .meta .date {
  flex: 1;
  text-align: right;
}
.topicsWrap .container .item figure figcaption .title {
  display: block;
  margin-bottom: 0.5em;
}
.topicsWrap .container .item figure figcaption .title a {
  color: #333;
  text-decoration: none;
  display: block;
}
.topicsWrap .container .item figure figcaption .content {
  display: block;
  height: 6em;
  margin-bottom: 0.5em;
  color: #999;
  font-size: 0.875rem;
}
.topicsWrap .container .item figure figcaption .tags {
  display: block;
  height: 1em;
  font-size: 0.75rem;
}
.topicsWrap .container .item figure figcaption .tags a {
  color: #f33;
  text-decoration: none;
  margin-right: 0.5em;
}
.topicsWrap .container .item a:hover {
  opacity: 0.7;
}
.topicsWrap .container .item.archiveBox .item {
  max-width: calc(33% - 30px);
  min-width: calc(33% - 30px);
}
.topicsWrap .container .item.taxsonomyBox .item {
  max-width: calc(33% - 30px);
  min-width: calc(33% - 30px);
}
.topicsWrap .container .item.taxsonomyBox .first-column {
  display: block;
  width: 100%;
}
.topicsWrap .container .item.taxsonomyBox .first-column .item {
  display: block;
  width: 100%;
  max-width: 100%;
}
.topicsWrap .container .item.taxsonomyBox .first-column .item figure {
  display: flex;
  gap: 0px;
}
.topicsWrap .container .item.taxsonomyBox .first-column .item figure .imgWrap {
  flex: 1;
  max-width: 50%;
  width: 50%;
}
.topicsWrap .container .item.taxsonomyBox .first-column .item figure figcaption {
  flex: 1;
  max-width: 50%;
  width: 50%;
}
.topicsWrap .container .item.taxsonomyBox .first-column .item figure figcaption .title {
  height: 4em;
}
.topicsWrap .container .itemDummy {
  box-shadow: none !important;
}
.topicsWrap.backGray {
  background: #efefef;
  padding: 40px;
}
.topicsWrap.backGrayLine {
  background: linear-gradient(to bottom, #efefef 40%, #fff 40%, #fff 60%, #efefef 60%);
}

@media screen and (max-width: 1520px) {
  .topicsWrap {
    padding: 40px 0;
  }
  .topicsWrap .container.t1b2Box {
    display: block;
  }
  .topicsWrap .container.t1b2Box .bottom-column {
    gap: 20px;
  }
  .topicsWrap .container.t1b2Box .bottom-column .item figure figcaption .title {
    height: auto;
  }
  .topicsWrap .deepGray {
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  .topicsWrap {
    padding: 60px 0;
  }
  .topicsWrap .container {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    /* アーカイブ */
    /* カテゴリー */
  }
  .topicsWrap .container .item {
    max-width: 100% !important;
    margin-bottom: 10px;
  }
  .topicsWrap .container .item figure figcaption {
    padding: 20px;
  }
  .topicsWrap .container .item figure figcaption .meta {
    height: auto !important;
  }
  .topicsWrap .container .item figure figcaption .title {
    height: auto !important;
  }
  .topicsWrap .container .item figure figcaption .content {
    height: auto !important;
  }
  .topicsWrap .container .item figure figcaption .cate {
    height: auto !important;
  }
  .topicsWrap .container .item figure figcaption .tags {
    height: auto !important;
  }
  .topicsWrap .container.archiveBox .item {
    max-width: 100% !important;
  }
  .topicsWrap .container.taxsonomyBox .item {
    width: 100%;
    max-width: 100%;
  }
  .topicsWrap .container.taxsonomyBox .first-column {
    display: block;
    width: 100%;
  }
  .topicsWrap .container.taxsonomyBox .first-column .item {
    display: block;
    width: 100%;
    max-width: 100%;
  }
  .topicsWrap .container.taxsonomyBox .first-column .item figure {
    display: block;
  }
  .topicsWrap .container.taxsonomyBox .first-column .item figure .imgWrap {
    width: 100%;
    max-width: 100%;
  }
  .topicsWrap .container.taxsonomyBox .first-column .item figure figcaption {
    width: 100%;
    max-width: 100%;
  }
  .topicsWrap .container.taxsonomyBox .first-column .item figure figcaption .title {
    height: auto;
  }
  .topicsWrap .deepGray {
    padding: 10px;
  }
}
/* first3box */
#first3box {
  padding-bottom: 50px;
}
#first3box .container {
  width: 100%;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}
#first3box .container .left-column {
  flex: auto;
  width: 740px;
}
#first3box .container .right-column {
  flex: auto;
  width: 340px;
}
#first3box .container .right-column .item {
  width: 100%;
  height: auto;
}
#first3box .container .right-column .item:first-child {
  margin-bottom: 37px;
}
#first3box .imgFit {
  box-shadow: 4px 5px 8px rgba(0, 0, 0, 0.2);
}
#first3box a {
  transition: opacity 0.2s;
}
#first3box a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1520px) {
  #first3box {
    padding-bottom: 40px;
  }
  #first3box .container {
    gap: 0;
  }
  #first3box .container .left-column {
    max-width: 66vw;
  }
  #first3box .container .right-column {
    max-width: 28vw;
  }
}
@media screen and (max-width: 768px) {
  #first3box {
    padding-bottom: 0;
  }
  #first3box .container {
    display: block;
  }
  #first3box .container .left-column {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  #first3box .container .right-column {
    display: flex;
    width: 100%;
    max-width: 100%;
    gap: 20px;
  }
  #first3box .container .right-column .item {
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 640px) {
  #first3box {
    padding-bottom: 20px;
  }
}
/* 2banner */
#second2banner {
  padding-bottom: 60px;
}
#second2banner .container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}
#second2banner .container .image {
  flex: 1;
  width: 530px;
  height: auto;
}
#second2banner .container .image .imgFit {
  box-shadow: 4px 5px 8px rgba(0, 0, 0, 0.2);
}
#second2banner .container .image .imgFit a {
  transition: opacity 0.2s;
}
#second2banner .container .image .imgFit a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1520px) {
  #second2banner .container {
    gap: 20px;
  }
  #second2banner .container .image {
    flex: 1;
    width: 100%;
    height: auto;
  }
  #second2banner .container .image .imgFit {
    box-shadow: 4px 5px 8px rgba(0, 0, 0, 0.2);
  }
  #second2banner .container .image .imgFit a {
    transition: opacity 0.2s;
  }
  #second2banner .container .image .imgFit a:hover {
    opacity: 0.7;
  }
}
/* sns4banner */
#sns4banner {
  padding: 60px 0;
}
#sns4banner .sns_container {
  display: block;
  height: 350px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
#sns4banner .sns_container .sns_item {
  display: block;
  box-shadow: 4px 5px 8px rgba(0, 0, 0, 0.2);
  margin: 0px;
  flex: 1;
  max-width: 25%;
  height: auto;
  box-shadow: 4px 5px 8px rgba(0, 0, 0, 0.2);
}
#sns4banner .sns_container .sns_item a.sns_a {
  display: block !important;
  transition: opacity 0.2s;
  color: #333;
}
#sns4banner .sns_container .sns_item a.sns_a figure.sns_fig {
  box-shadow: none;
}
#sns4banner .sns_container .sns_item a.sns_a figure.sns_fig .sns_image {
  box-shadow: none;
}
#sns4banner .sns_container .sns_item a.sns_a figure.sns_fig .sns_image .sns_imgFit {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: none;
}
#sns4banner .sns_container .sns_item a.sns_a figure.sns_fig .sns_image .sns_imgFit img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
#sns4banner .sns_container .sns_item a.sns_a figure.sns_fig figcaption.sns_cap {
  padding: 5px 10px;
}
#sns4banner .sns_container .sns_item a.sns_a figure.sns_fig figcaption.sns_cap .sns_meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  height: 2em;
  font-size: 0.75rem;
  margin: 0.5em 0 0;
}
#sns4banner .sns_container .sns_item a.sns_a figure.sns_fig figcaption.sns_cap .sns_meta .sns_cate {
  flex: 1;
  text-align: left;
}
#sns4banner .sns_container .sns_item a.sns_a figure.sns_fig figcaption.sns_cap .sns_meta .sns_cate span {
  padding: 0 0.5em;
}
#sns4banner .sns_container .sns_item a.sns_a figure.sns_fig figcaption.sns_cap .sns_meta .sns_date {
  flex: 1;
  text-align: right;
}
#sns4banner .sns_container .sns_item a.sns_a figure.sns_fig figcaption.sns_cap .sns_title {
  text-align: left;
}
#sns4banner .sns_container .sns_item a.sns_a figure.sns_fig figcaption.sns_cap .sns_title p {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#sns4banner .sns_container .sns_item a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1520px) {
  #sns4banner .sns_container {
    height: auto;
  }
  #sns4banner .sns_container .sns_item {
    max-width: 50%;
    min-width: calc(50% - 20px);
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 640px) {
  #sns4banner .sns_container {
    gap: 0;
  }
  #sns4banner .sns_container .sns_item {
    max-width: 100%;
    min-width: 100%;
  }
}
#sns4banner .slide-arrow {
  position: absolute;
  top: calc(50% - 12px);
  width: 24px;
  height: 24px;
  z-index: 8000;
}
#sns4banner .prev-arrow {
  left: -10px;
}
#sns4banner .next-arrow {
  right: -10px;
}
#sns4banner .slide-arrow:hover {
  opacity: 0.7;
  cursor: pointer;
}

/* topics - v2box */
.topicsWrap .container.v2box .item {
  max-width: calc(50% - 30px);
  min-width: calc(50% - 30px);
}

/* topics - v3box */
.topicsWrap .container.v3box .item {
  max-width: calc(33.33% - 30px);
  min-width: calc(33.33% - 30px);
}

/* topics - v4box */
.topicsWrap .container.v4box .item {
  max-width: calc(25% - 30px);
  min-width: calc(25% - 30px);
}

/* topics - Left1,Right2 - グループ紹介 */
.topicsWrap .container.l1r2Box .left-column {
  flex: 1;
  max-width: 40%;
  min-width: 40%;
}
.topicsWrap .container.l1r2Box .left-column .item {
  display: block;
}
.topicsWrap .container.l1r2Box .left-column .item figure figcaption .title {
  height: 6em;
}
.topicsWrap .container.l1r2Box .right-column {
  flex: 2;
  max-width: calc(60% - 30px);
  min-width: calc(60% - 30px);
}
.topicsWrap .container.l1r2Box .right-column .item {
  display: block;
  height: 270px;
}
.topicsWrap .container.l1r2Box .right-column .item figure {
  display: flex;
  gap: 0px;
}
.topicsWrap .container.l1r2Box .right-column .item figure .imgWrap {
  flex: auto;
  max-width: 55%;
}
.topicsWrap .container.l1r2Box .right-column .item figure figcaption {
  flex: auto;
  max-width: 45%;
}
.topicsWrap .container.l1r2Box .right-column .item:first-child {
  margin-bottom: 30px;
}

@media screen and (max-width: 1520px) {
  .topicsWrap .container.l1r2Box .left-column {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .topicsWrap .container.l1r2Box .left-column .item {
    display: block;
  }
  .topicsWrap .container.l1r2Box .right-column {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .topicsWrap .container.l1r2Box .right-column .item {
    display: block;
    height: auto;
  }
  .topicsWrap .container.l1r2Box .right-column .item figure {
    display: block;
  }
  .topicsWrap .container.l1r2Box .right-column .item figure .imgWrap {
    max-width: 100%;
  }
  .topicsWrap .container.l1r2Box .right-column .item figure figcaption {
    max-width: 100%;
  }
}
/* topics - Top1,Bottom2 - 経営 */
.topicsWrap .container.t1b2Box {
  display: block;
}
.topicsWrap .container.t1b2Box .top-column {
  display: block;
}
.topicsWrap .container.t1b2Box .top-column .item {
  display: block;
  overflow: hidden;
}
.topicsWrap .container.t1b2Box .top-column .item figure {
  display: flex;
  gap: 0px;
}
.topicsWrap .container.t1b2Box .top-column .item figure .imgWrap {
  flex: 1;
  max-width: 50%;
  min-width: 50%;
}
.topicsWrap .container.t1b2Box .top-column .item figure figcaption {
  flex: 1;
  max-width: 50%;
  min-width: 50%;
}
.topicsWrap .container.t1b2Box .top-column .item figure figcaption .title {
  height: 4em;
}
.topicsWrap .container.t1b2Box .top-column .item:first-child {
  margin-bottom: 30px;
}
.topicsWrap .container.t1b2Box .bottom-column {
  display: flex;
  gap: 30px;
}
.topicsWrap .container.t1b2Box .bottom-column .item {
  flex: 1;
  max-width: calc(50% - 15px);
  min-width: calc(50% - 15px);
  width: calc(50% - 15px);
  overflow: hidden;
}
.topicsWrap .container.t1b2Box .bottom-column .item figure {
  display: flex;
  gap: 0px;
}
.topicsWrap .container.t1b2Box .bottom-column .item figure .imgWrap {
  flex: auto;
  max-width: 50%;
  min-width: 50%;
}
.topicsWrap .container.t1b2Box .bottom-column .item figure figcaption {
  flex: auto;
  max-width: 50%;
  min-width: 50%;
  padding: 15px;
}
.topicsWrap .container.t1b2Box .bottom-column .item figure figcaption .title {
  overflow: hidden;
}
.topicsWrap .container.t1b2Box .bottom-column .item figure figcaption .title a {
  height: 6rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.topicsWrap .container.t1b2Box .bottom-column .item figure figcaption .tags {
  display: none;
}

@media screen and (max-width: 768px) {
  .topicsWrap .container.t1b2Box {
    display: block;
  }
  .topicsWrap .container.t1b2Box .top-column, .topicsWrap .container.t1b2Box .bottom-column {
    display: block;
  }
  .topicsWrap .container.t1b2Box .top-column .item, .topicsWrap .container.t1b2Box .bottom-column .item {
    display: block;
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    margin-bottom: 20px;
  }
  .topicsWrap .container.t1b2Box .top-column .item figure, .topicsWrap .container.t1b2Box .bottom-column .item figure {
    display: block;
  }
  .topicsWrap .container.t1b2Box .top-column .item figure .imgWrap, .topicsWrap .container.t1b2Box .bottom-column .item figure .imgWrap {
    max-width: 100%;
    min-width: 100%;
    width: 100%;
  }
  .topicsWrap .container.t1b2Box .top-column .item figure figcaption, .topicsWrap .container.t1b2Box .bottom-column .item figure figcaption {
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    padding: 30px;
    text-align: left;
  }
  .topicsWrap .container.t1b2Box .top-column .item figure figcaption .meta, .topicsWrap .container.t1b2Box .bottom-column .item figure figcaption .meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    height: 2em;
    font-size: 0.75rem;
    margin-bottom: 0.5em;
  }
  .topicsWrap .container.t1b2Box .top-column .item figure figcaption .meta .cate, .topicsWrap .container.t1b2Box .bottom-column .item figure figcaption .meta .cate {
    flex: 1;
  }
  .topicsWrap .container.t1b2Box .top-column .item figure figcaption .meta .cate a, .topicsWrap .container.t1b2Box .bottom-column .item figure figcaption .meta .cate a {
    color: inherit;
    text-decoration: none;
    color: #666;
  }
  .topicsWrap .container.t1b2Box .top-column .item figure figcaption .meta .cate a span, .topicsWrap .container.t1b2Box .bottom-column .item figure figcaption .meta .cate a span {
    padding: 0 0.5em;
  }
  .topicsWrap .container.t1b2Box .top-column .item figure figcaption .meta .date, .topicsWrap .container.t1b2Box .bottom-column .item figure figcaption .meta .date {
    flex: 1;
    text-align: right;
  }
  .topicsWrap .container.t1b2Box .top-column .item figure figcaption .title, .topicsWrap .container.t1b2Box .bottom-column .item figure figcaption .title {
    display: block;
    margin-bottom: 0.5em;
  }
  .topicsWrap .container.t1b2Box .top-column .item figure figcaption .title a, .topicsWrap .container.t1b2Box .bottom-column .item figure figcaption .title a {
    color: #333;
    text-decoration: none;
    display: block;
    height: auto;
  }
  .topicsWrap .container.t1b2Box .top-column .item figure figcaption .content, .topicsWrap .container.t1b2Box .bottom-column .item figure figcaption .content {
    display: none;
  }
  .topicsWrap .container.t1b2Box .top-column .item figure figcaption .tags, .topicsWrap .container.t1b2Box .bottom-column .item figure figcaption .tags {
    display: block;
    height: 1em;
    font-size: 0.75rem;
  }
  .topicsWrap .container.t1b2Box .top-column .item figure figcaption .tags a, .topicsWrap .container.t1b2Box .bottom-column .item figure figcaption .tags a {
    color: #f33;
    text-decoration: none;
    margin-right: 0.5em;
  }
}
/* ボタン */
.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.custom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 3em;
  border: 1px solid black;
  color: black;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  transition: background 0.2s, color 0.2s;
  background: transparent;
}
.custom-button .button-text {
  margin-right: 1em;
}
.custom-button i {
  font-size: 0.9em;
}
.custom-button:hover {
  background: black;
  color: #fff;
}
.custom-button:hover .button-text, .custom-button:hover i {
  color: #fff;
}

.custom-button.blue {
  border: 1px solid #004FA2;
  color: #004FA2;
}
.custom-button.blue:hover {
  background: #004FA2;
  color: #fff;
}
.custom-button.blue:hover .button-text, .custom-button.blue:hover i {
  color: #fff;
}

.custom-button.white {
  border: 1px solid #fff;
  color: #fff;
}
.custom-button.white:hover {
  background: #fff;
  color: #333;
}
.custom-button.white:hover .button-text, .custom-button.white:hover i {
  color: #333;
}

/* single */
.singleWrap {
  padding: 60px 0;
}
.singleWrap .metaWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 60px;
  text-align: left;
  border-bottom: 1px #333 solid;
}
.singleWrap .metaWrap .left-column {
  flex: auto;
  width: 25%;
  max-width: 25%;
}
.singleWrap .metaWrap .left-column .tax {
  width: 100%;
  border-bottom: 2px #333 solid;
  margin-bottom: 16px;
}
.singleWrap .metaWrap .left-column .tax p {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 40px;
}
.singleWrap .metaWrap .left-column .tax p::before {
  content: "●";
  color: #DE0716;
}
.singleWrap .metaWrap .left-column .tags {
  display: block;
  font-size: 0.75rem;
}
.singleWrap .metaWrap .left-column .tags a {
  color: #f33;
  text-decoration: none;
  margin-right: 0.5em;
  line-height: 1em;
}
.singleWrap .metaWrap .right-column {
  flex: auto;
  width: 70%;
  max-width: 70%;
}
.singleWrap .metaWrap .right-column .cate {
  width: 100%;
  height: 40px;
}
.singleWrap .metaWrap .right-column .cate span {
  border: 1px #333 solid;
  padding: 0 0.5em;
}
.singleWrap .metaWrap .right-column .h1wrap {
  width: 100%;
  margin-bottom: 16px;
}
.singleWrap .metaWrap .right-column .h1wrap h1 {
  font-size: 2rem;
  font-weight: bold;
}
.singleWrap .metaWrap .right-column .date {
  width: 100%;
}
.singleWrap .container {
  padding-bottom: 60px;
  border-bottom: 1px #666 solid;
}
.singleWrap .container figure {
  text-align: center;
  padding: 0 15%;
  margin-bottom: 60px;
}
.singleWrap .pager {
  padding: 60px 0;
  border-bottom: 1px #666 solid;
  text-align: center;
}
.singleWrap .pager a {
  color: #333;
  text-decoration: none;
  margin: 0 2em;
}
.singleWrap .pager a:hover {
  color: #DE0716;
}

@media screen and (max-width: 640px) {
  .singleWrap {
    padding: 40px 0;
  }
  .singleWrap .metaWrap {
    display: block;
    padding-bottom: 16px;
    margin-bottom: 40px;
  }
  .singleWrap .metaWrap .left-column {
    width: 100%;
    max-width: 100%;
  }
  .singleWrap .metaWrap .left-column .tags {
    margin-bottom: 20px;
  }
  .singleWrap .metaWrap .right-column {
    width: 100%;
    max-width: 100%;
  }
  .singleWrap .metaWrap .right-column .cate span {
    font-size: 0.875rem;
  }
  .singleWrap .metaWrap .right-column .h1wrap h1 {
    font-size: 1.5rem;
  }
  .singleWrap .metaWrap .right-column .date {
    font-size: 0.875rem;
  }
  .singleWrap .container {
    padding-bottom: 40px;
  }
  .singleWrap .container figure {
    padding: 0 5%;
  }
  .singleWrap .pager {
    padding: 40px 0;
  }
  .singleWrap .pager a {
    margin: 0 1em;
  }
}
@media screen and (max-width: 480px) {
  .singleWrap .container {
    padding-bottom: 40px;
  }
  .singleWrap .container figure {
    padding: 0;
  }
  .singleWrap .pager {
    padding: 40px 0;
  }
  .singleWrap .pager a {
    margin: 0 0.5em;
  }
}
/* single Jirei */
.singleJireiWrap {
  padding: 60px 0;
}
.singleJireiWrap .metaWrap {
  padding-bottom: 16px;
  margin-bottom: 60px;
  text-align: left;
}
.singleJireiWrap .metaWrap .tax {
  width: 100%;
  margin-bottom: 16px;
  border: 0;
}
.singleJireiWrap .metaWrap .tax p {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 40px;
}
.singleJireiWrap .metaWrap .tax p::before {
  content: "●";
  color: #DE0716;
}
.singleJireiWrap .metaWrap .mainImgWrap figure {
  position: relative;
}
.singleJireiWrap .metaWrap .mainImgWrap figure .mainImgFit {
  width: 100%;
  padding-top: 48.25%;
  position: relative;
  overflow: hidden; /* 62.5% */
}
.singleJireiWrap .metaWrap .mainImgWrap figure .mainImgFit img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
.singleJireiWrap .metaWrap .mainImgWrap figure figcaption {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 9000;
}
.singleJireiWrap .metaWrap .mainImgWrap figure figcaption h1 {
  display: block;
}
.singleJireiWrap .metaWrap .mainImgWrap figure figcaption h1 p span {
  display: inline-block;
  background-color: #fff;
  margin-top: 10px;
  padding: 0 10px;
  font-size: 2rem;
  font-weight: bold;
}
.singleJireiWrap .container {
  padding-bottom: 60px;
  border-bottom: 1px #666 solid;
  line-height: 2;
}
.singleJireiWrap .container h2 {
  border-bottom: 4px #9092A1 solid !important;
  line-height: 1.25;
}
.singleJireiWrap .container h3 {
  background: #004da0;
  color: #fff;
  text-align: center;
}
.singleJireiWrap .container figure {
  text-align: center;
  padding: 0 15%;
  margin-bottom: 60px;
}
.singleJireiWrap .container .qaColor {
  margin-bottom: 2em;
}
.singleJireiWrap .container .qaColor .q {
  color: #004da0;
  font-weight: bold;
}
.singleJireiWrap .container .qaColor .a {
  color: #dd0716;
  font-weight: bold;
}
.singleJireiWrap .container dl.qaList {
  margin-bottom: 6em;
}
.singleJireiWrap .container dl.qaList dt {
  position: relative;
  padding-left: 80px;
  margin-bottom: 1em;
  color: #004DA0;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  display: flex;
  align-items: center;
  min-height: 60px;
}
.singleJireiWrap .container dl.qaList dt::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: white;
  font-weight: bold;
  font-family: sans-serif;
  background: linear-gradient(135deg, #03B8DF, #004DA0);
  border-radius: 50%;
  font-size: 24px;
}
.singleJireiWrap .container dl.qaList dd {
  position: relative;
  padding-left: 80px;
  margin-bottom: 4em;
}
.singleJireiWrap .container dl.qaList dd::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 0%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: white;
  font-weight: bold;
  font-family: sans-serif;
  background: linear-gradient(135deg, #FE5715, #E43B46);
  border-radius: 50%;
  font-size: 24px;
}
.singleJireiWrap .container .aboutWrap {
  border-top: 2px #004da0 solid;
  border-bottom: 2px #004da0 solid;
  padding: 1.5em 0;
  margin-bottom: 6em;
}
.singleJireiWrap .container .aboutWrap figure {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0;
}
.singleJireiWrap .container .aboutWrap figure .aboutImg {
  flex: auto;
  width: 31.25%;
}
.singleJireiWrap .container .aboutWrap figure .aboutImg img {
  margin: 0;
}
.singleJireiWrap .container .aboutWrap figure figcaption {
  flex: auto;
  width: 68.75%;
  padding-left: 2em;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.singleJireiWrap .container .aboutWrap figure figcaption p.name {
  font-size: 1.5rem;
  font-weight: bold;
}
.singleJireiWrap .container .aboutWrap figure figcaption p {
  line-height: 1;
}
.singleJireiWrap .container .grayWrap {
  background: #EFEFEF;
  padding: 2em;
}
.singleJireiWrap .container .grayWrap dl.maru dt {
  color: #004da0;
  font-size: 1.5rem;
  font-weight: bold;
}
.singleJireiWrap .container .grayWrap dl.maru dd {
  padding-left: 2em;
  margin-bottom: 2rem;
}
.singleJireiWrap .container .grayWrap dl.maru dd ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.singleJireiWrap .container .grayWrap dl.maru dd ul li {
  position: relative;
}
.singleJireiWrap .container .grayWrap dl.maru dd ul li::before {
  content: "●";
  display: inline-block;
  width: 1.5em;
}
.singleJireiWrap .container .grayWrap dl.maru dd.end {
  margin-bottom: 0;
}
.singleJireiWrap .pager {
  padding: 60px 0;
  border-bottom: 1px #666 solid;
  text-align: center;
}
.singleJireiWrap .pager a {
  color: #333;
  text-decoration: none;
  margin: 0 2em;
}
.singleJireiWrap .pager a:hover {
  color: #DE0716;
}

@media screen and (max-width: 768px) {
  .singleJireiWrap .metaWrap .mainImgWrap figure figcaption {
    left: 3vw;
    bottom: 3vw;
  }
  .singleJireiWrap .metaWrap .mainImgWrap figure figcaption h1 p span {
    margin-top: 5px;
    padding: 0 5px;
    font-size: 1.5rem;
  }
  .singleJireiWrap .container h3 {
    text-align: left;
    padding: 0 0.5rem;
  }
  .singleJireiWrap .container dl.qaList dt {
    padding-left: 60px;
    font-size: 1.25rem;
    line-height: 1.4;
    min-height: 40px;
  }
  .singleJireiWrap .container dl.qaList dt::before {
    content: "Q";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: white;
    font-weight: bold;
    font-family: sans-serif;
    background: linear-gradient(135deg, #03B8DF, #004DA0);
    border-radius: 50%;
    font-size: 1.25rem;
  }
  .singleJireiWrap .container dl.qaList dd {
    padding-left: 60px;
  }
  .singleJireiWrap .container dl.qaList dd::before {
    content: "A";
    position: absolute;
    left: 0;
    top: 0%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: white;
    font-weight: bold;
    font-family: sans-serif;
    background: linear-gradient(135deg, #FE5715, #E43B46);
    border-radius: 50%;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 640px) {
  .singleJireiWrap .metaWrap .mainImgWrap figure figcaption h1 p span {
    margin-top: 5px;
    padding: 0 5px;
    font-size: 1.25rem;
  }
  .singleJireiWrap .container .aboutWrap {
    border-top: 2px #004da0 solid;
    border-bottom: 2px #004da0 solid;
    padding: 1.5em 0;
    margin-bottom: 6em;
  }
  .singleJireiWrap .container .aboutWrap figure {
    display: block;
  }
  .singleJireiWrap .container .aboutWrap figure .aboutImg {
    width: 100%;
    margin-bottom: 1em;
  }
  .singleJireiWrap .container .aboutWrap figure figcaption {
    width: 100%;
    padding-left: 0em;
  }
  .singleJireiWrap .container .aboutWrap figure figcaption p.name {
    font-size: 1.25rem;
  }
  .singleJireiWrap .container .grayWrap {
    background: #EFEFEF;
    padding: 1em;
  }
}
@media screen and (max-width: 480px) {
  .singleJireiWrap .metaWrap .mainImgWrap figure figcaption h1 p span {
    margin-top: 5px;
    padding: 0 5px;
    font-size: 1.125rem;
  }
}
/*---- post --------------------------------------------------------------------------------------------------------------------------------*/
.postBox {
  text-align: left;
  line-height: 200%;
  /* h2 - h6 */
  /* inline */
  /* list */
  /* table */
  /* img */
  /* blockquote */
}
.postBox h2 {
  display: block;
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 2em 0;
}
.postBox h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #DE0716, #114FA2);
}
.postBox h3 {
  display: block;
  position: relative;
  font-size: 1.375rem;
  font-weight: bold;
  margin: 2em 0;
}
.postBox h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #DE0716, #114FA2);
}
.postBox h4 {
  display: block;
  position: relative;
  font-size: 1.25rem;
  font-weight: bold;
  margin: 2em 0;
}
.postBox h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #DE0716, #114FA2);
}
.postBox h5, .postBox h6 {
  display: block;
  position: relative;
  font-size: 1.125rem;
  font-weight: bold;
  margin: 2em 0;
}
.postBox h5::after, .postBox h6::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #DE0716, #114FA2);
}
.postBox a {
  text-decoration: underline;
}
.postBox a:hover {
  text-decoration: none;
}
.postBox strong, .postBox strong * {
  font-weight: bold;
}
.postBox em {
  font-style: italic;
}
.postBox del {
  text-decoration: line-through;
}
.postBox ins {
  text-decoration: underline;
}
.postBox hr {
  margin: 1em 0;
}
.postBox * + p {
  margin-top: 1em;
}
.postBox * + ul, .postBox * + ol {
  margin-top: 1em;
}
.postBox ul {
  margin-left: 1.5em;
  list-style-position: outside;
  list-style-type: disc;
}
.postBox ol {
  margin-left: 1.5em;
  list-style-position: outside;
  list-style-type: decimal;
}
@media screen and (max-width: 480px) {
  .postBox ul {
    margin-left: 1em;
  }
  .postBox ol {
    margin-left: 1em;
  }
}
.postBox table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}
.postBox table caption {
  padding: 5px 10px;
  background: #eee;
  font-size: 18px;
  font-weight: bold;
  line-height: 150%;
}
.postBox table tr th {
  padding: 0.5em 1em;
  background: #eee;
  border: 1px #999 solid;
  font-weight: bold;
}
.postBox table tr td {
  padding: 0.5em 1em;
  border: 1px #999 solid;
}
.postBox * + table {
  margin-top: 1em;
}
.postBox .wp-caption {
  max-width: 100%;
}
.postBox img {
  margin: 1em;
  max-width: 100%;
}
.postBox img.aligncenter {
  margin: 0 auto;
  text-align: center;
}
.postBox blockquote {
  padding: 1em;
  margin: 1em auto;
  background-color: #eee;
  border: 1px #666 solid;
}
.postBox blockquote > h2 {
  margin-block-end: 0 !important;
  margin-block-start: 0 !important;
}
.postBox .youtube {
  position: relative;
  margin: 0 auto;
  width: 75%;
  padding-top: 42.18%;
}
.postBox .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.postBox .marker {
  background: linear-gradient(transparent 85%, #73FF73 0%);
}
.postBox figure.lkc-thumbnail {
  padding: 0;
  /*img.lkc-thumbnail-img { all: unset; }*/
}
.postBox figure.lkc-thumbnail img.lkc-thumbnail-img {
  all: unset;
}

/*---- aside --------------------------------------------------------------------------------------------------------------------------------*/
#asideWrap {
  text-align: left;
  padding-top: 60px;
}
#asideWrap h2 {
  width: 100%;
  padding: 0 1em;
  background: #004EA1;
  color: #fff;
  font-weight: bold;
  line-height: 3;
}
#asideWrap ul {
  margin-bottom: 2em;
}
#asideWrap ul li {
  border-bottom: 1px #eee solid;
}
#asideWrap ul li a {
  display: block;
  padding: 1em 0 1em 2em;
  text-decoration: none;
  color: #333;
  position: relative;
}
#asideWrap ul li a::before {
  content: "\f138";
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* solid の場合 */
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #0073aa;
}
#asideWrap ul li a:hover {
  transform: translateX(2px);
}
#asideWrap ul li a:hover::before {
  transform: translateY(-50%) translateX(2px);
}

@media screen and (max-width: 768px) {
  #asideWrap {
    padding: 40px 1em 0 1em;
  }
}
/*---- footer --------------------------------------------------------------------------------------------------------------------------------*/
#footerWrap {
  width: 100%;
}
#footerWrap .linkWrap {
  text-align: center;
  background: #004FA2;
  padding-top: 40px;
}
#footerWrap .linkWrap ul.linkList {
  display: block;
  margin: 0 auto;
}
#footerWrap .linkWrap ul.linkList li {
  display: inline-block;
  padding: 0 1em;
}
#footerWrap .linkWrap ul.linkList a {
  display: inline-block;
  color: #fff;
}
#footerWrap .linkWrap ul.linkList a:hover {
  opacity: 0.6;
}
#footerWrap .copyright {
  width: 100%;
  height: 80px;
  background-color: #004FA2;
  color: #fff;
  line-height: 80px;
}

.pagetop {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 20px;
}
.pagetop a {
  display: block;
  width: 40px;
  height: 40px;
  background: #999;
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 40px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

@media screen and (max-width: 768px) {
  #footerWrap .linkWrap {
    padding: 20px;
  }
  #footerWrap .linkWrap .links {
    display: block;
  }
  #footerWrap .linkWrap .links .list {
    min-width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  #footerWrap .copyright {
    height: 60px;
    font-size: 0.75rem;
    line-height: 60px;
  }
}
/*---- wp template ----*/
.wpPrevNext {
  text-align: center;
}

.wpPrevNext a {
  display: inline-block;
  width: 30%;
  max-width: 150px;
  height: 40px;
  margin: 0 5px;
  color: #313131;
  border: 1px #313131 solid;
  line-height: 40px;
}

.wpPrevNext a[rel=prev] {
  float: left;
}

.wpPrevNext a[rel=next] {
  float: right;
}

.wp-pagenavi {
  text-align: center;
}

.wp-pagenavi span {
  display: inline-block;
  min-width: 28px;
  height: 28px;
  margin: 0 2px;
  padding: 0 2px;
  background: #999;
  color: #fff;
  text-align: center;
  line-height: 28px;
}

.wp-pagenavi a {
  display: inline-block;
  min-width: 28px;
  height: 28px;
  margin: 0 2px;
  padding: 0 2px;
  background: #ccc;
  color: #fff;
  text-align: center;
  line-height: 28px;
}/*# sourceMappingURL=style-single.css.map */