@charset "UTF-8";
/*==========================================
  Common
==========================================*/
/* ＝＝＝＝＝＝ フェードインアニメーション ＝＝＝＝＝＝ */
.load-fade, .scroll-up {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}

.load-fade.is-show, .scroll-up.is-show {
  opacity: 1;
  visibility: visible;
}

.scroll-up {
  transform: translateY(50px);
}

.scroll-up.is-show {
  transform: translateY(0px);
}

.courier-prime-regular {
  font-family: "Courier Prime", monospace;
  font-weight: 400;
  font-style: normal;
}

.courier-prime-bold {
  font-family: "Courier Prime", monospace;
  font-weight: 700;
  font-style: normal;
}

.anchor {
  display: block;
}

html {
  scroll-behavior: smooth;
}

/* ＝＝＝＝＝＝ スマホ専用非表示 ＝＝＝＝＝＝ */
.sp {
  display: none !important;
}

p {
  font-size: 15px;
}

/* ＝＝＝＝＝＝ ページネーション ＝＝＝＝＝＝ */
.wp-pagenavi {
  clear: both;
  text-align: center;
}

.wp-pagenavi a, .wp-pagenavi span {
  color: #999;
  background-color: #FFF;
  border: solid 1px #e0e0d2;
  padding: 8px 15px;
  margin: 0 2px;
  white-space: nowrap;
  border-radius: 3px;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
}

.wp-pagenavi a:hover {
  color: #FFF;
  background-color: #999;
  border-color: #999;
}

.wp-pagenavi span.current {
  color: #FFF;
  background-color: #9e67a9;
  border-color: #9e67a9;
  font-weight: bold;
}

/* ＝＝＝＝＝＝ フレックスレイアウト ＝＝＝＝＝＝ */
.row {
  display: flex;
  flex-wrap: wrap;
}

/* ＝＝＝＝＝＝ メインエリア ＝＝＝＝＝＝ */
main {
  display: block;
  overflow: hidden;
}

/* ＝＝＝＝＝＝ コンテナ ＝＝＝＝＝＝ */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 1100px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* ＝＝＝＝＝＝ ヘッダー関連 ＝＝＝＝＝＝ */
#blog .header_inner {
  display: block;
}

#blog header {
  height: auto !important;
}

#blog #nav_wrap {
  padding-bottom: 30px;
}

/* ＝＝＝＝＝＝ アンカーリンクの調整 ＝＝＝＝＝＝ */
.anc {
  display: block;
  margin-top: -102px;
  padding-top: 102px;
}

/* ＝＝＝＝＝＝ 電話リンクの無効化 ＝＝＝＝＝＝ */
a[href^="tel:"] {
  pointer-events: none;
}

/* ＝＝＝＝＝＝ フッター ＝＝＝＝＝＝ */
.copy {
  height: 38px;
  background-color: #f5f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* loader
==================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

/* Animation
==================================*/
.c-anim-up {
  transform: translate(0, 30px);
  opacity: 0;
  transition: 0.3s ease;
}

/* ＝＝＝＝＝＝ Component Styles ＝＝＝＝＝＝ */
html {
  font-size: 62.5%; /* 1rem = 10px */
}
html.no_move {
  overflow: hidden;
}
html * {
  margin: 0;
}

body {
  color: #545454;
  background-color: #fff;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  font-size: 14px;
  overflow: auto;
}

/* 画像のスタイル */
img {
  max-width: 100%;
  height: auto;
  display: block; /* 画像の下の余白をなくす */
}

/* 入力フォームのスタイル */
input,
textarea,
select {
  font-style: normal;
  font-family: "Noto Sans JP", "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
  font-weight: 400;
}

/* 見出しタグ */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

/* 太字・強調 */
b, strong {
  font-weight: bold;
}

/* クリア */
.clear {
  clear: both;
}

/* 小さい文字 */
small {
  font-size: 1.4rem; /* 14px */
}

/* リンクスタイル */
a {
  color: #000000; /* 変数未定義の場合エラーを防ぐ */
  text-decoration: none;
  transition: 0.3s;
}
a:visited {
  color: #000000;
}
a:hover {
  color: #000000;
  text-decoration: none;
  opacity: 0.7;
}
a:active {
  color: #000000;
}
a.tel, a.link {
  pointer-events: none;
  cursor: default;
}

/* フォーカス時のスタイル */
*:focus {
  outline: none;
}

/*＝＝＝＝＝＝top＝＝＝＝＝＝*/
#Top {
  position: relative;
}
#Top .bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  background: url(/images/top/main.jpg) no-repeat;
  background-size: cover;
}
#Top .side-menu {
  position: fixed;
  bottom: 20px;
  left: 40px;
  z-index: 10;
}
#Top .side-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#Top .side-menu ul li {
  margin-bottom: -10px;
}
#Top .side-menu ul li:nth-of-type(1) > a > img {
  width: 88px;
}
#Top .side-menu ul li:nth-of-type(2) > a > img {
  width: 100px;
}
#Top .side-menu ul li:nth-of-type(3) > a > img {
  width: 93px;
}
#Top .side-menu ul li:nth-of-type(4) > a > img {
  width: 100px;
}
#Top .side-menu ul li:nth-of-type(5) > a > img {
  width: 61px;
}
#Top .side-menu ul li:nth-of-type(6) > a > img {
  width: 160px;
}
#Top .side-menu ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
  font-size: 23px;
  font-family: "Courier Prime", monospace;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
}
#Top .text_s {
  font-size: 12px;
  padding-top: 10px;
  font-weight: 600;
}
#Top h2.tit-underline {
  color: #0d938e;
  max-width: 349px;
  margin: auto;
  position: relative;
  padding-top: 30px;
  margin-bottom: 30px;
}
#Top h2.tit-underline > img {
  margin: auto;
}
#Top h2.tit-underline::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #0d938e;
  width: 99px;
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
}
#Top .sub-header {
  margin-top: -1px;
  color: #0d938e;
  padding-bottom: 30px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}
#Top .sub-header > img {
  margin: auto;
}
#Top .buy-btn-area {
  position: fixed;
  bottom: 20px;
  right: 40px;
  z-index: 10;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
#Top .buy-btn-area .text01 {
  padding-bottom: 5px;
  font-weight: 600;
  font-size: 14px;
  color: white;
}
#Top .buy-btn-area .text_s {
  color: white;
  text-shadow: 0 3px 6px black;
}
#Top .buy-btn-area .buy-btn a {
  background: #ff5a5f;
  color: white;
  border: none;
  padding: 14px 18px;
  border-radius: 27px;
  font-size: 14px;
  cursor: pointer;
  width: 180px;
  text-align: center;
  margin: auto;
  box-shadow: 0px 5px 16px rgba(0, 0, 0, 0.35);
  font-weight: 600;
  display: flex;
  justify-content: center;
  letter-spacing: 0.1rem;
  padding-left: 33px;
}
#Top .buy-btn-area .buy-btn a > img {
  width: 30px;
  padding-left: 3px;
}
#Top .buy-btn-area-main {
  bottom: 20px;
  right: 40px;
  z-index: 10;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
#Top .buy-btn-area-main .text01 {
  padding-bottom: 5px;
  font-weight: 600;
  font-size: 14px;
}
#Top .buy-btn-area-main .buy-btn a {
  background: #ff5a5f;
  color: white;
  border: none;
  padding: 14px 18px;
  border-radius: 27px;
  font-size: 14px;
  cursor: pointer;
  width: 180px;
  text-align: center;
  margin: auto;
  box-shadow: 0px 5px 16px rgba(0, 0, 0, 0.35);
  font-weight: 600;
  display: flex;
  justify-content: center;
  letter-spacing: 0.1rem;
  padding-left: 33px;
}
#Top .buy-btn-area-main .buy-btn a > img {
  width: 30px;
  padding-left: 3px;
}
#Top .marker-yel {
  background: linear-gradient(to bottom, transparent 60%, rgba(255, 239, 0, 0.2) 60%);
}
#Top .main-content {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0 auto;
}
#Top .main-content .fv {
  width: 100%;
  height: 100vh;
  background: url(/images/top/fv.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
#Top .main-content .fv .h1_area {
  position: absolute;
  top: 8%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#Top .main-content .fv .h1_area h1 {
  font-size: 40px;
  margin-bottom: 10px;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.9);
  letter-spacing: -0.1rem;
  padding-left: 22px;
}
#Top .main-content .fv .h1_area p {
  color: #fff;
  font-weight: 600;
  text-shadow: 3px 2px 2px rgba(0, 0, 0, 0.9);
  font-size: 22px;
}
#Top .main-content .fv .caption {
  margin-top: 60px;
  text-align: center;
  color: white;
  position: absolute;
  bottom: 7%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#Top .main-content .fv .caption .price {
  font-size: 20px;
  font-weight: bold;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.7);
  position: relative;
  display: inline-block;
}
#Top .main-content .fv .caption h2 {
  font-size: 46px;
  margin-top: 10px;
  letter-spacing: -0.1em;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.7);
  font-weight: 700;
}
#Top .main-content .fv .caption .detail {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.9);
  letter-spacing: -0.05rem;
  font-weight: 600;
  padding-top: 30px;
}
#Top .sec_about {
  background-color: rgba(242, 244, 244, 0.87);
  text-align: center;
  padding-bottom: 30px;
}
#Top .sec_about h2 {
  color: #0d938e;
  max-width: 349px;
  margin: auto;
  position: relative;
  padding-top: 30px;
  margin-bottom: 30px;
}
#Top .sec_about h2::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #0d938e;
  width: 99px;
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
}
#Top .sec_about .sub-header {
  margin-top: -13px;
  color: #0d938e;
  padding-bottom: 30px;
  font-weight: 600;
  font-size: 14px;
}
#Top .sec_about .marker {
  color: #0d938e;
  font-weight: 600;
  background: linear-gradient(to bottom, transparent 60%, rgba(255, 239, 0, 0.2) 60%);
  font-size: 17px;
}
#Top .sec_about .caption h3 {
  margin-bottom: 23px;
}
#Top .sec_about .caption p {
  font-size: 13px;
  padding-bottom: 20px;
}
#Top .sec_about .detail h4 {
  font-size: 14px;
  color: #0d938e;
  padding-bottom: 5px;
}
#Top .sec_about .class_box {
  color: #0d938e;
  background-color: white;
  border-radius: 20px;
  padding: 10px;
}
#Top .sec_about .class_box .tit {
  font-size: 17px;
  font-weight: 600;
}
#Top .sec_about .class_box p {
  padding-bottom: 0;
  padding-top: 0;
}
#Top .sec_about .sold-out-box {
  padding-bottom: 20px;
  position: relative;
}
#Top .sec_about .sold-out-box::after {
  content: "";
  display: block;
  width: 100%;
  height: 237px;
  background: url(/images/top/soldout.png) no-repeat center;
  position: absolute;
  top: 0;
  background-size: 100%;
  z-index: 999;
}
#Top .sec_about .sold-out-box .price {
  color: #0d938e;
  padding-top: 5px;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 7px;
}
#Top .sec_about .sold-out-box p {
  font-size: 12px;
}
#Top .sec_about .text-red {
  color: #e38383;
  font-size: 21px;
  font-weight: 600;
}
#Top .sec_solution {
  background-color: rgba(255, 255, 255, 0.8509803922);
  padding-top: 10px;
  padding-bottom: 30px;
}
#Top .sec_solution .tit-underline > img {
  max-width: 200px;
}
#Top .sec_solution .solution_deco {
  max-width: 141px;
  margin: auto;
}
#Top .sec_solution ul {
  padding-top: 20px;
  padding-bottom: 34px;
}
#Top .sec_solution ul > li {
  text-align: center;
  line-height: 2.5;
}
#Top .sec_what {
  background-color: #0d938e;
  color: white;
  padding-bottom: 45px;
}
#Top .sec_what h2.tit-underline {
  max-width: 433px;
}
#Top .sec_what h2.tit-underline::after {
  background: white;
}
#Top .sec_what .sub-header {
  color: white !important;
}
#Top .sec_what .caption {
  font-size: 13px;
  text-align: center;
  padding-bottom: 30px;
  font-weight: 600;
}
#Top .sec_what .descri {
  background-color: white;
  border-radius: 30px;
  padding: 30px 30px 20px;
}
#Top .sec_what .descri dl {
  display: flex;
  padding-bottom: 10px;
}
#Top .sec_what .descri dl > dt {
  background-color: #0d938e;
  color: rgb(235, 255, 13);
  border-radius: 20px;
  padding: 1px 8px;
  font-size: 13px;
  height: 21px;
  width: 50px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}
#Top .sec_what .descri dl > dd {
  color: #0d938e;
  width: calc(100% - 60px);
  padding-left: 10px;
  font-weight: 600;
}
#Top .sec_what .descri dl.dl_last {
  display: block;
}
#Top .sec_what .descri dl.dl_last ul {
  padding-top: 10px;
  margin-left: -10px;
  margin-right: -50px;
}
#Top .sec_message {
  background-color: rgba(255, 255, 255, 0.8509803922);
  padding-bottom: 30px;
}
#Top .sec_message h2.tit-underline::after {
  background-color: #e38383;
}
#Top .sec_message .sub-header {
  color: #e38383;
}
#Top .sec_message .photo {
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
  max-width: 317px;
  margin: auto;
}
#Top .sec_message .text {
  text-align: center;
  margin: auto;
  font-size: 13px;
}
#Top .sec_message .text p {
  padding-bottom: 15px;
}
#Top .sec_message .name {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
}
#Top .sec_message .name::after {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  background-color: gray;
  position: absolute;
  right: 5px;
  bottom: -5px;
}
#Top .sec_message .name > img {
  width: 80px;
}
#Top .sec_qa {
  background-color: #f5f4f4;
  padding-bottom: 30px;
}
#Top .sec_qa h2.tit-underline {
  max-width: 105px;
}
#Top .sec_qa h2.tit-underline:after {
  background-color: #6f6f6f;
}
#Top .sec_qa .sub-header {
  color: #6f6f6f;
}
#Top .sec_qa dl {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 30px;
}
#Top .sec_qa dl dd {
  color: #e38383;
}
#Top .sec_details {
  background-color: rgba(255, 255, 255, 0.9019607843);
  padding-bottom: 30px;
}
#Top .sec_details h2.tit-underline {
  max-width: 300px;
}
#Top .sec_details h2.tit-underline:after {
  background-color: #6f6f6f;
}
#Top .sec_details .sub-header {
  color: #6f6f6f;
}
#Top .sec_details .book_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#Top .sec_details .book_box h3 {
  color: #6f6f6f;
  font-size: 25px;
}
#Top .sec_details .book_box h3 span {
  font-size: 17px;
}
#Top .sec_details .book_box img {
  max-width: 175px;
}
#Top .sec_details .price {
  color: #e38383;
  font-size: 25px;
  text-align: center;
  font-weight: 600;
}
#Top .sec_details .support {
  font-size: 18px;
  font-weight: 600;
  color: #6f6f6f;
  text-align: center;
  padding-top: 30px;
}
#Top .sec_details .list {
  text-align: center;
  font-size: 14px;
}
#Top .sec_details .small {
  font-size: 12px;
  text-align: center;
  padding-top: 7px;
}
#Top .sec_details .small2 {
  padding-bottom: 30px;
}
#Top .sec_details .text_red_s {
  font-size: 16px;
  color: #e38383;
  text-align: center;
  font-weight: 600;
  padding-bottom: 20px;
}
#Top .sec_details .caption {
  font-size: 20px;
  color: #e38383;
  text-align: center;
  font-weight: 600;
  padding-bottom: 30px;
}
#Top footer {
  background-color: #f5f4f4;
  padding: 45px 30px 50px;
}
#Top footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}
#Top footer ul li {
  padding-bottom: 15px;
}
#Top footer ul li:nth-of-type(1) > a > img {
  width: 88px;
}
#Top footer ul li:nth-of-type(2) > a > img {
  width: 100px;
}
#Top footer ul li:nth-of-type(3) > a > img {
  width: 93px;
}
#Top footer ul li:nth-of-type(4) > a > img {
  width: 113px;
}
#Top footer ul li:nth-of-type(5) > a > img {
  width: 60px;
}
#Top footer ul li:nth-of-type(6) > a > img {
  width: 200px;
}
#Top footer ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
  font-size: 23px;
  font-family: "Courier Prime", monospace;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
}

/* ＝＝＝＝＝＝Blog＝＝＝＝＝＝　*/
.wp-block-image img {
  padding-bottom: 20px;
}

.wp-block-image .alignright::after,
.wp-block-image .alignleft::after {
  content: "";
  display: block;
  clear: both;
}

.wp-block-image {
  overflow: hidden;
  zoom: 1;
}

/*前頁カテゴリー*/
#news1 {
  border: 2px solid rgb(195, 195, 195);
  border: white;
  border-radius: 13px;
  padding: 3px 8px;
  width: 70px;
  background: #6fb36f;
  color: white;
}

.date {
  font-size: 12px;
  padding-bottom: 5px;
}

.cate {
  margin-bottom: 5px;
  font-size: 13px;
}

.cate a {
  border: 2px solid rgb(195, 195, 195);
  border: white;
  border-radius: 13px;
  padding: 3px 8px;
  width: 70px;
  background: #6fb36f;
  color: white;
}

.excerpt {
  padding-top: 10px;
}
.excerpt a {
  color: rgb(121, 121, 121);
  font-size: 11px;
  padding: 5px 21px 5px 12px;
  border-radius: 3px;
  position: relative;
}
.excerpt a > img {
  width: 40px;
  position: absolute;
  right: -30px;
  top: 7px;
  height: 10px;
}

#blog main {
  /*シングルページ*/
}
#blog main .sub-header h1 {
  font-size: 35px;
}
#blog main .wrapper {
  position: relative;
  background-color: #eee;
  padding-bottom: 50px;
  /*フォント　デザイン*/
  /*margin: 0 0 130px;*/
  /*pager*/
}
#blog main .wrapper .breadcrumbs {
  width: 100%;
  margin: auto;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
  padding-bottom: 45px;
  font-size: 12px;
  color: #949494;
}
@media (max-width: 1080px) {
  #blog main .wrapper .breadcrumbs {
    box-sizing: border-box;
  }
}
#blog main .wrapper .breadcrumbs span {
  font-size: 12px;
  line-height: 1.3;
}
#blog main .wrapper .fontBig01 {
  font-size: 25px;
}
#blog main .wrapper .fontBig02 {
  font-size: 20px;
}
#blog main .wrapper .fontBold {
  font-weight: 600;
}
#blog main .wrapper .underL {
  border-bottom: 2px solid #7f7f7f;
  padding-top: 20px;
}
#blog main .wrapper .padBottom {
  padding-bottom: 15px;
}
#blog main .wrapper .padtop10 {
  padding-top: 10px;
}
#blog main .wrapper .padtop20 {
  padding-top: 20px;
}
#blog main .wrapper .squareLine {
  border: 1px solid #7f7f7f;
  padding: 20px;
}
#blog main .wrapper .list01 {
  padding-bottom: 10px;
}
#blog main .wrapper .list01 > li {
  position: relative;
  padding-left: 20px;
}
#blog main .wrapper .list01 > li::after {
  content: "■";
  color: #7f7f7f;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 0px;
  border-radius: 50%;
}
#blog main .wrapper .marB20 {
  margin-bottom: 20px;
}
#blog main .wrapper .test {
  font-size: large;
}
#blog main .wrapper .container02 {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}
#blog main .wrapper .container {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}
#blog main .wrapper ul.blog_con {
  margin: 0 -20px auto;
  padding-left: 0;
  justify-content: flex-start;
  display: flex;
  flex-wrap: wrap;
}
#blog main .wrapper ul.blog_con > li {
  width: 33.333%;
  list-style: none;
  box-sizing: border-box;
  margin-bottom: 40px;
  border-bottom: 1px solid rgb(223, 223, 223);
  padding: 0 22px 65px;
}
#blog main .wrapper ul.blog_con > li .card_wrapper {
  background-color: white;
  height: 100%;
  transition: 0.3s;
  padding-bottom: 25px;
  position: relative;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .blog_thumb:hover {
  opacity: 0.7;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper {
  padding: 20px 20px;
  color: #5e5e5e;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper > .category > .post-categories > li > a {
  color: #5e5e5e;
  font-size: 12px;
  text-align: center;
  display: inline-block;
  width: 100%;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 13px;
  display: inline-block;
  width: 70px;
  margin-top: 15px;
  position: relative;
  border: 2px solid #484848;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper > a > h4.title_blog {
  padding-top: 13px;
  padding-bottom: 5px;
  font-size: 18px;
  line-height: 1.7;
  color: #7f7f7f;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper .more > a {
  background-color: #4eb735;
  border-radius: 5px;
  color: white;
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  margin-bottom: 25px;
  width: 125px;
  height: 30px;
  display: inline-block;
  padding-right: 10px;
  position: absolute;
  bottom: 0;
  line-height: 30px;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper .more > a:hover {
  opacity: 0.7;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper .more > a > .arrow {
  width: 7px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
#blog main .wrapper ul.blog_con > li .blog_thumb {
  display: block;
  position: relative;
  padding-top: 53.25%;
  overflow: hidden;
}
#blog main .wrapper ul.blog_con > li .blog_thumb > img {
  /*max-width: 306px;*/
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#blog main .wrapper .page-numbers.current, #blog main .wrapper .page-numbers, #blog main .wrapper .pagination .prev, #blog main .wrapper .next.page-numbers {
  box-sizing: border-box;
  display: block;
  color: #A4A4A4;
  text-decoration: none;
  text-align: center;
  background: #FFF;
  border: 1px solid #A4A4A4;
  border-radius: 50%;
  min-width: 40px;
  transition: all 0.2s;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  line-height: 38px;
}
#blog main .wrapper .page-numbers {
  margin: 0 6px;
}
#blog main .wrapper .prev.page-numbers, #blog main .wrapper .next.page-numbers {
  margin: 0 13px;
}
#blog main .wrapper .page-numbers:hover, #blog main .wrapper .pagination .prev:hover, #blog main .wrapper .next.page-numbers:hover {
  color: #FFF;
  background: #6E6E6E;
  /*border: 1px solid #6E6E6E;*/
}
#blog main .wrapper .page-numbers.current {
  margin: 0 0.28em;
}
#blog main .wrapper .pnavi {
  display: flex;
  justify-content: center;
  color: #A4A4A4;
  line-height: 1;
  margin: 0;
  padding: 2em 0;
}
#blog main .wrapper .page-numbers.current {
  background: #6E6E6E;
  color: #fff;
  font-weight: bold;
  border: none;
  margin: 0 0.28em;
}
#blog main .wrapper .cate_wrap .list_ttl {
  font-weight: 600;
  border-left: 2px solid #7f7f7f;
  padding-left: 20px;
  margin-bottom: 7px;
  margin-top: 30px;
  color: #7f7f7f;
}
#blog main .wrapper .cate_wrap > ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}
#blog main .wrapper .cate_wrap > ul > li:first-child {
  padding-left: 20px;
}
#blog main .wrapper .cate_wrap > ul > li > a {
  padding: 5px 10px;
  border: 1px solid #7f7f7f;
  border-radius: 7px;
  margin: 5px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  color: #7f7f7f;
}
#blog main .wrapper .cate_wrap > ul > li > a:hover {
  background-color: #ffb9ff;
  color: white;
  border: 1px solid #ffb9ff;
}
#blog main.single-page .wrapper {
  min-height: 300px;
  padding-bottom: 100px;
  /* スクリーンリーダー限定テキスト： the_post_navigation() 用 */
}
#blog main.single-page .wrapper .cont .entryinfo {
  padding-bottom: 33px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
#blog main.single-page .wrapper .cont .entryinfo .categories {
  width: 100px;
}
#blog main.single-page .wrapper .cont .entryinfo .categories .cate {
  padding-bottom: 0px;
  line-height: 1.5;
}
#blog main.single-page .wrapper .cont .entryinfo .categories .post-categories > li > a {
  color: #7f7f7f;
  font-size: 12px;
  text-align: center;
  display: inline-block;
  width: 100%;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 13px;
  display: inline-block;
  width: 70px;
  position: relative;
  border: 2px solid #7f7f7f;
}
#blog main.single-page .wrapper .cont .entryinfo time {
  font-weight: bold;
}
#blog main.single-page .wrapper p {
  line-height: 1.7;
  padding-bottom: 15px;
}
#blog main.single-page .wrapper .nav-links {
  clear: both;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}
#blog main.single-page .wrapper .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#blog main.single-page .wrapper .nav-previous {
  float: left;
}
#blog main.single-page .wrapper .nav-next {
  float: right;
}
#blog main.single-page .wrapper .nav-previous, #blog main.single-page .wrapper .nav-next {
  max-width: 45%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 20px;
}
#blog main.single-page .wrapper .nav-previous > a, #blog main.single-page .wrapper .nav-next > a {
  font-size: 14px;
  color: #303030;
  letter-spacing: 0.01em;
}