@charset "utf-8";

/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
モバイル向けレイアウト指定：～639px
タブレット向けレイアウト指定：～879px
PC向けレイアウト指定：880px〜
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

*,
*:before,
*:after {
  box-sizing: border-box;
 }

body, html {
  height: 100%;
}

body {
  color: #000;
  font: 1em/1.8em "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", Meiryo, "MS　Pゴシック", sans-serif;
  width: 100%;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}

a {
  color: #647eff;
  text-decoration: none;
}

a:hover,
a img:hover {
  opacity: 0.7;
}

/* 共通画像100% */
.image img {
  display: block;
  height: auto;
  width: 100%;
}

.image {
  display: block;
  height: auto;
  width: 100%;
}

/* 共通インナー */
.inner {
  margin: 0 auto;
  max-width: 1160px;
  padding: 0 40px;
}

@media only screen and (max-width: 880px) {
  .inner-main {
    max-width: 740px;
  }
}

@media only screen and (max-width: 640px) {
  .inner {
    max-width: 520px;
    padding: 0;
    width: 92%;
  }
}

@media only screen and (max-width: 880px) {
  .inner-title {
    margin: 0 auto;
    max-width: 1160px;
    padding: 0 40px;
  }
}

@media only screen and (max-width: 640px) {
  .inner-title {
    max-width: 520px;
    padding: 0;
    width: 92%;
  }
}

/* 幅100% */
@media only screen and (max-width: 880px) {
  .fluid-box {
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    width: 100vw;
  }
}

/*==========================================
 ヘッダー
===========================================*/
/* pcトップflexbox */
.flex-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* トップflexbox-item */
.item-top1 {
  margin-right: 110px;
  width: 140px;
}

@media only screen and (max-width: 880px) {
  .item-top1 {
    display: none;
  }
}

.item-top2 {
  max-width: 240px;
  padding: 10px 0;
}

.item-top3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;

  width: 250px;
}

@media only screen and (max-width: 640px) {
  .item-top1,
  .item-top2,
  .item-top3 {
    display: none;
  }
}

/* ログインと登録のflexbox-item */
.top3-box {
  max-width: 120px;
}

/* モバイルトップflexbox */
.m-item-top1,
.m-item-top2 {
  display: none;
}

@media only screen and (max-width: 640px) {
  header {
    background: #fff;
    border-bottom: 1px solid #c0c0c0;
    height: 42px;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
  }
  .m-item-top1,
  .m-item-top {
    display: block;
  }

  .m-item-top1 {
    -ms-flex-negative: 0;
    flex-shrink: 0;

    width: 110px;
    padding: 11px 0;
  }

.m-item-top2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: end;
    -ms-flex-pack: end;
     justify-content: flex-end;
  }

.m-top2-box1 {
    margin-left: 3%;
    flex-basis: 62px;
  }

.m-top2-box2 {
    margin-left: 3%;
    flex-basis: 36px;
  }
}

/*==========================================
 検索
===========================================*/
/* フォーム枠 */
.form-wrap {
  background: #647eff;
  padding: 10px 0;
}

/* フォーム全体 */
.michi_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  font-size: .85em;
}

@media only screen and (max-width: 640px) {
  .form-wrap {
    display: none;
  }

  .michi_form-m {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    font-size: .85em;
    margin: 16px 0 20px 0;
  }
}

/* カテゴリとエリア */
.select-wrap {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;

  -ms-flex-preferred-size: 200px;
  flex-basis: 200px;

  margin-right: 8px;
  position: relative;
}

@media only screen and (max-width: 880px) {
  .select-wrap {
    -ms-flex-preferred-size: 49%;
    flex-basis: 49%;

    margin: 0 0 12px;;
  }

  .mr-20p {
    margin-right: 1%;
  }

  .ml-20p {
    margin-left: 1%;
  }
}

@media only screen and (max-width: 640px) {
.inner-form {
    margin: 0 auto;
    width: 92%;
  }

  .select-wrap {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;

    margin: 0 0 12px;;
  }
}

.select-wrap:before {
  content: '\f107';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 43px;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 0;
  z-index: 1;
}

select {
  appearance: button;
  appearance: none;
  background: none transparent;
  border: none;
  border-radius: 3px;
  font-size: inherit;
  height: 38px;
  padding: 8px 12px;
  width: 100%;
  -moz-appearance: button;
  -moz-appearance: none;
  -webkit-appearance: button;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

.select-wrap.select-primary:before {
  color:#fff;
}

.select-wrap.select-primary > select {
  background: #a2b2ff;
  color: #fff;
}

.select-wrap.select-primary > select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #fff;
}

/* キーワード */
.search_input {
   -webkit-box-flex: 4;
  -ms-flex-positive: 4;
  flex-grow: 4;

  -ms-flex-preferred-size: 200px;
  flex-basis: 200px;

  border: none;
  border-radius: 0;
  font-size: inherit;
  height: 38px;
  padding-left: 10px;
}

@media only screen and (max-width: 640px) {
  .search_input {
    background: #eee;
  }
}

.search_btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;

  background: #00cec0 url(./images/search.png) no-repeat scroll;
  background-size: 43px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  height: 38px;
  text-indent: -9999px;
  width: 43px;
  margin-left: 8px;
  -moz-appearance: button;
  -moz-appearance: none;
  -webkit-appearance: button;
  -webkit-appearance: none;
}

/*==========================================
 モバイルアコーディオン
===========================================*/
/* モバイル用メニューボタン */
.btn-a {
  background: url(./images/search-a.png) no-repeat;
  background-size: contain;
  padding-top: 86.1111111%;
}

.active .btn-a {
  background: url(./images/search-b.png) no-repeat;
  background-size: contain;
  padding-top: 86.1111111%;
}

/* アコーディオン */
.mnav-wrap {
  display: none;
}

.mnav-wrap {
  background: #fff;
  box-shadow: 0 3px 10px 2px #c4c4c4;
  left: 0;
  line-height: 1.6em;
  position: absolute;
  top: 42px;
  width: 100%;
  z-index: 999;
}

.m-nav > ul > li {
  border-bottom: 1px solid #353535;
  height: auto;
  min-height: 44px;
}

.m-nav > ul > li > a {
  background: #fff url(./images/icon-mnav.png) no-repeat 5% 50%;
  background-size: 10px 16px;
  display: block;
  height: 100%;
  padding: 10px 0 10px 12%;
}

@media only screen and (min-width: 740px) {
  .m-nav > ul > li > a {
    padding: 10px 0 10px 8%;
  }
}

/*==========================================
 パンくず
===========================================*/
/* パンくず */
.breadcrumbs {
  font-size: .75em;
  line-height: 1.5em;
  padding-top: 6px;
}

@media only screen and (max-width: 640px) {
  .breadcrumbs {
    margin-top: 40px;
  }
}

/*==========================================
 管理画面へ
===========================================*/
/* 管理画面へ */
.user-wrap {
  background: #647eff;
  margin: 40px 0;
  padding: 10px 0;
}

@media only screen and (max-width: 640px) {
  .user-wrap {
    padding: 10px 0 0;
  }
}

.user-manage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.user-manage a {
  color: #fff;
}

.manage-item {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;

  background: #00cbc0;
  border-radius: 6px;
  margin: 0 4px;
  padding: 5px;
  text-align: center;
  width: 240px;
}

@media only screen and (max-width: 640px) {
  .user-manage {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .manage-item {
    margin: 0 auto 10px;
  }
}

.manage-1:before {
  content: '\f013';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 3px;
}

.manage-2:before {
  content: '\f304';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 3px;
}

.manage-3:before {
  content: '\f007';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 3px;
}

/*==========================================
 記事全体
===========================================*/
/* 共通 */
.main {
  background: #fefedc;
  padding-bottom: 40px;
}

.blog-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  margin-top: 20px;
}

.blog-inner {
  -ms-flex-negative: 1;
  flex-shrink: 1;

  margin-right: 40px;
  width: 740px;
}

.side {
  -ms-flex-negative: 0;
  flex-shrink: 0;

  width: 300px;
}

@media only screen and (max-width: 880px) {
  .blog-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .blog-inner {
    margin-right: 0;
    width: 100%;
  }

  .side {
    margin-top: 20px;
    width: 100%;
  }
}

/*==========================================
 記事内
===========================================*/
/* タイトル */
.title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  margin-bottom: 10px;
}

.title-avatar {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.title-avatar img {
  border: 3px solid #fff;
  border-radius: 50%;
  width: 70px;
}

.blog-title {
  -ms-flex-negative: 1;
  flex-shrink: 1;

  font-size: 1.5em;
  line-height: 1.5em;
  margin: -6px 0 0 10px;
}

@media only screen and (max-width: 640px) {
  .blog-title {
    font-size: 1.3em;
    line-height: 1.3em;
  }
}

/* アイキャッチ大サイズ */
.large-image img {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

  left: 50%;
  position: absolute;
  top: 50%;
}

.large-image {
  margin: 0 auto;
  overflow: hidden;
  padding-top: 60.8108108%;
  position: relative;
  width: 100%;
}

/* 定価 */
.blog-price {
  background: #647eff;
  color: #fff;
  font-size: 1.4em;
  padding: 12px;
  text-align: center;
}

.blog-price span {
  vertical-align: top;
}

.price-s {
  font-size: .7em;
}

/*==========================================
 記事内 情報
===========================================*/
/* 白バック */
.blog-back {
  background: #fff;
  padding: 0 25px;
}

@media only screen and (max-width: 640px) {
  .blog-back {
    padding: 0 16px;
  }
}

/* ニックネーム */
.info-name {
  border-bottom: 1px solid #eae7df;
  padding: 8px 0;
}

.info-name:before {
  color: #858680;
  content: '\f007';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 3px;
}

/* 更新時間 */
.time {
  border-bottom: 1px solid #eae7df;
  padding: 8px 0;
}

.time:before {
  color: #858680;
  content: '\f017';
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  padding-right: 3px;
}

/* 地域 */
.area {
  border-bottom: 1px solid #eae7df;
  padding: 8px 0;
}

.area:before {
  color: #858680;
  content: '\f3c5';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 3px;
}

.area2 {
  border-bottom: 1px solid #eae7df;
  padding: 8px 0;
}

.area2:before {
  color: #858680;
  content: '\f015';
  font-family: "Font Awesome 5 Free";
  font-size: .85em;
  font-weight: 900;
}

/* 本文 */
.blog-article {
  font-size: .96em;
  line-height: 1.8em;
  padding: 20px 0;
}

@media only screen and (max-width: 640px) {
  .blog-article {
    font-size: .9em;
  }
}

/* 本文内見出し */
.blog-article h3 {
  font-size: 1.3em;
  margin: 32px 0 8px;
}

@media only screen and (max-width: 640px) {
  .blog-article  h3 {
    font-size: 1.2em;
  }
}

h3.article-title {
  margin-top: 6px;
}

/* embedレスポンシブ対応 */
.wp-embedded-content {
  max-width: 100%;
}

/* ユーチューブ埋め込み */
.youtube {
  height: 0;
  margin: 14px 0;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

.youtube iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/*==========================================
 フォトギャラリー
===========================================*/
.photo-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  margin-top: 20px;
}

.gallery-item {
  margin: 6px 1.5%;
  width: 30.3333333%;
}

.middle-image img {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

  left: 50%;
  position: absolute;
  top: 50%;
}

.middle-image {
  margin: 0 auto;
  overflow: hidden;
  padding-top: 30.3333333%;
  position: relative;
  width: 100%;
}

.gallery-p {
  color: #ff0000;
  font-size: .8em;
}

/*==========================================
 サイド寄付
===========================================*/
.donation-container {
  background: #647eff;
  border-radius: 6px;
  padding: 10px 26px;
}

.donation-txt {
  color: #fff;
}

.donation-btn img {
  margin: 8px auto 6px;
  width: 180px;
}

@media only screen and (max-width: 880px) {
  .donation-container {
    padding: 10px 20px;
  }
}

@media only screen and (max-width: 640px) {
  .donation-container {
    padding: 10px 30px;
  }

  .donation-txt {
    text-align: left;
  }
}

/*==========================================
 サイド プロフ
===========================================*/
.side-wrap {
  background: #fff;
  margin-top: 20px;
  padding: 10px 20px;
}

@media only screen and (max-width: 640px) {
  .side-wrap {
    padding: 10px 16px;
  }
}

/* タイトル */
.side-wrap h3 {
  color: #555;
  font-size: 1.1em;
  text-align: center;
}

/* アバター */
.side-avatar img {
  border-radius: 50%;
  margin: 10px auto 5px;
  width: 95px;
}

/* 名前 */
.side-name {
  font-size: 1.1em;
  text-align: center;
}

/* サイド問い合わせ */
.side-contact {
  display: block;
  text-align: center;
}

.side-contact:before {
  content: '\f0e0';
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  padding-right: 5px;
}

/* サイドプロフ */
.side-prof {
  font-size: .85em;
  line-height: 1.6em;
  margin-top: 10px;
}

/*==========================================
 もっと見る
===========================================*/
.cp_box *, .cp_box *:before, .cp_box *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cp_box {
  margin-bottom: 20px;
  position: relative;
}

.cp_box label {
  background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
  bottom: 0;
  cursor: pointer;
  font-size: .8em;
  height: 120px;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 1;
}

.cp_box input:checked + label {
  background: inherit; /* 開いた時にグラデーションを消す */
}

.cp_box label:after {
  background: #ddd;
  border-radius: 20px;
  bottom: 10px;
  color: #000;
  content: '\f107'' もっと見る';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  left: 50%;
  letter-spacing: 0.05em;
  line-height: 2.5em;
  position: absolute;
  transform: translate(-50%, 0);
  width: 220px;
  z-index: 2;
}

.cp_box input {
  display: none;
}

.cp_box .cp_container {
  height: 150px; /* 開く前に見えている部分の高さ */
  overflow: hidden;
  transition: all 0.5s;
}


.cp_box input:checked + label {
  /* display: none ; 閉じるボタンを消す場合解放 */
}

.cp_box input:checked + label:after {
  content: '\f106'' 閉じる';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.cp_box input:checked ~ .cp_container {
  height: auto;
  padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
  transition: all 0.5s;
}

/*==========================================
 出品サービス一覧
===========================================*/
.side-list-wrap {
  margin-top: 16px;
}

.side-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  margin-bottom: 7px;
}

.list-img {
  -ms-flex-negative: 0;
  flex-shrink: 0;

  margin-top: 3px;
  width: 65px;
}

.list-title {
  -ms-flex-negative: 1;
  flex-shrink: 1;

  font-size: .9em;
  line-height: 1.5em;
  padding-left: 10px;
}

/*==========================================
 レビュー
===========================================*/
.mt-20 {
  margin-top: 20px;
}

/* レビューを書くタイトル */
.wpcr3_leave_text {
  margin-bottom: 10px;
}

.wpcr3_leave_text:before {
  content: '\f304';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 3px;
}

/* フォームレスポンシブ */
.wpcr3_div_2 {
  max-width: 100%;
}

.wpcr3_respond_2 textarea {
  margin-top: -10px;
  max-width: 100%;
  min-width: 300px !important;
  width: 100%;
}

@media (max-width: 640px){
  .wpcr3_table_2 td {
    display: block;
    text-align: left;
  }

  .wpcr3_respond_2 textarea {
    margin-top: 0;
  }
}

/* レビュー行間 */
.comment-field {
  padding-bottom: 16px;
}

@media (max-width: 640px){
  .comment-field {
    padding: 10px 0 5px 0;
  }
}

/* テキスト */
.wpcr3_respond_2 input[type="text"] {
  padding: 6px 0;
}

/* 送信ボタン */
.wpcr3_submit_btn{
  margin-top: 10px;
  padding: 4px 30px !important;
}

/* キャンセルボタン */
.wpcr3_cancel_btn {
  display: none !important;
}

/* ページ送りナビ */
.wpcr3_pagination_page {
  display: none !important;
}

/* ミチコネ MichiConneを削除 */
.wpcr3_item_name {
  display: none !important;
}

/* レビューの平均 */
.wpcr3_aggregateRating {
  font-weight: bold!important;
  margin-bottom: 10px !important;
}

/* レビュータイトル */
.wpcr3_review_title {
  font-size: 1em !important;
  font-weight: bold;
  margin: 4px 0 !important;
}

/*==========================================
 フッター
===========================================*/
.footer-back {
  background: #4c4c4c;
  padding: 20px 0;
}

/* PC */
.footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-container h2 {
  color: #fff;
  font-size: .8em;
}

.foot-item li {
  font-size: .75em;
  padding-left: 10px;
  position: relative;
}

.foot-item li:before {
  color: #999;
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  left: 0;
  position: absolute;
  top: 0;
}

.foot-item li a {
  color: #fff;
}

.mt-28 {
  margin-top: 28px;
}

@media only screen and (max-width: 880px) {
  .footer-container {
    display: none;
  }
}

/* モバイル */
.m-foot-container {
  display: none;
}

@media only screen and (max-width: 880px) {
  .m-foot-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .m-foot-item li {
    font-size: .75em;
    padding-left: 10px;
    position: relative;
    margin: 0 10px;
  }

  .m-foot-item li:before {
    color: #999;
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    left: 0;
    position: absolute;
    top: 0;
  }

  .m-foot-item li a {
    color: #fff;
  }
}

/* コピーライト */
.copy {
  font-size: .75em;
  padding: 10px 0 56px;
  text-align: center;
}

.copy a {
  color: #000;
}

/*==========================================
 フッター問合せ
===========================================*/
.fm-contact-wrap {
  background-color: #fff;
  border-top: 1px solid #c0c0c0;
  position: fixed;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
}

.fm-contact {
  background: #647eff;
  display: block;
  margin: 6px auto;
  padding: 5px;
  text-align: center;
  width: 240px;
}

a.fm-contact {
  color: #fff;
}

.fm-contact:before {
  content: '\f0e0';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 5px;
}

.fm-contact-log {
  display: none;
  font-size: .9em;
  padding: 8px 0;
}

/*==========================================
 人気、新着ページ
===========================================*/
/* ボックス */
.box-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  margin-top: 20px;
}

li {
  background-image: none;
  list-style-type: none;
}

.box-item {
  background: #fff;
  box-shadow: 2px 2px 8px gray;
  line-height: 1.5em;
  padding: 11px;
  margin: 0 0.92592593% 20px;
  width: 23.14811481%;
}

@media only screen and (max-width: 880px) {
  .box-container {

    margin: 20px auto 10px;
    max-width: 532px;
}

  .box-item {
    margin: 0 1.5037594% 20px;
    width: 46.9924812%;
  }
}

@media only screen and (max-width: 319px) {
  .box-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .box-item {
    margin: 0 auto 14px;
    max-width: 250px;
    width: 100%;
  }
}

/* ボックス内 */
.middle-image img {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

  left: 50%;
  position: absolute;
  top: 50%;
}

.middle-image {
  margin: 0 auto;
  overflow: hidden;
  padding-top: 59.2105263%;
  position: relative;
  width: 100%;
}

.cat-name {
    font-size: .8em;
    position: relative;
    padding-left: 10px;
    margin-top: 4px;
}

.cat-name:before {
  color: #999;
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  left: 0;
  position: absolute;
  top: 0;
}

.cat-name:empty {
  display: none;
}

.cat-name a {
  color: #000;
}

.cat-p {
  color: #647eff;
  font-size: .9em;
}

a.wpp-post-title {
  color: #647eff !important;
}

.byname {
  font-size: .9em;
}

.new-avatar img {
  border: 3px solid #fff;
  border-radius: 50%;
  display: block;
  height: 70px;
  margin: -44px auto 0;
  position: relative;
  width: 70px;
}

@media only screen and (max-width: 415px) {
  .box-item {
    margin-bottom: 10px;
    padding: 6px;
  }

  .cat-name {
    font-size: .75em;
    line-height: 15px;
    margin: 0 0 2px;
    padding-left: 8px;
}

  .cat-p {
    font-size: .9em;
    line-height: 18px;
  }

  .byname {
    display: none;
  }

  .new-avatar img {
    height: 50px;
    margin-top: -30px;
    width: 50px;
  }
}

/* 人気タイトル */
.pop-title {
  font-size: 1.6em;
  margin-top: 20px;
}

.pop-title:before {
  content: '\f521';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 5px;
}

@media only screen and (max-width: 880px) {
  .pop-title {
    font-size: 1.3em;
  }
}

/* 新着タイトル */
.new-title {
  font-size: 1.6em;
  margin-top: 20px;
  padding-left: 34px;
  position: relative;
}

.new-title:before {
  background: url(./images/new.png) no-repeat;
  background-size: contain;
  content: '';
  height: 17px;
  left: 0;
  position: absolute;
  top: 5px;
  width: 30px;
}

@media only screen and (max-width: 880px) {
  .new-title {
    font-size: 1.3em;
    padding-left: 30px;
  }

  .new-title:before {
    height: 14x;
    top: 6px;
    width: 26px;
  }
}

/* カテゴリタイトル */
.cat-title {
  font-size: 1.3em;
  margin-top: 20px;
}

.cat-title:before {
  content: '\f0ca';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 5px;
}

@media only screen and (max-width: 880px) {
  .cat-title {
    font-size: 1.3em;
  }
}

/* 検索タイトル */
.search-title {
  font-size: 1.6em;
  margin-top: 20px;
}

.search-title:before {
  content: '\f002';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 5px;
}

@media only screen and (max-width: 880px) {
  .search-title {
    font-size: 1.3em;
  }
}

/*==========================================
 ページナビ
===========================================*/
.pagenation {
  margin-top: 16px;
  text-align: center;
}

.pagenation:after, .pagenation ul:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

.pagenation ul {
  display:inline-block;
  margin: 0;
}

.pagenation li {
  float: left;
  list-style: none outside none;
  margin-left: 3px;
}

.pagenation li:first-child {
  margin-left: 0;
}

.pagenation li.active {
  background-color: #999999;
  border-radius: 3px;
  color: #FFFFFF;
  cursor: not-allowed;
  padding: 4px 14px;
}

.pagenation li a {
  background: none repeat scroll 0 0 #CCCCCC;
  border-radius: 3px;
  color: #FFFFFF;
  display: block;
  padding: 4px 14px;
  text-decoration: none;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.pagenation li a:hover {
  background-color: #444444;
  color: #FFFFFF;
  opacity: 0.8;
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: ease;
}