@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: 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%;
  }
}

/*==========================================
 ユーザーページ共通
===========================================*/
/* 共通 */
.main {
  margin-top: 30px;
}

/* 共通見出し */
.user-title {
  font-size: 1.5em;
}

/* パンくず */
.breadcrumbs {
  font-size: .75em;
  line-height: 1.5em;
  padding-top: 6px;
}

@media only screen and (max-width: 640px) {
  .breadcrumbs {
    margin-top: 40px;
  }
}

/*==========================================
 管理画面へ
===========================================*/
/* 管理画面へ */
.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;
}

/*==========================================
 新規登録
===========================================*/
/* 新規登録インナー */
.inner-register {
  margin: 0 auto;
  max-width: 450px;
}

@media only screen and (max-width: 640px) {
  .inner-register {
    max-width: 450px;
    padding: 0;
    width: 92%;
  }
}

/* テキスト */
.register-p {
  font-size: .9em;
  line-height: 1.6em;
  margin: 10px 0;
}

/* 新規登録ボタン */
#um-submit-btn {
  background: #647eff !important;
}

#um-submit-btn:hover {
  opacity: 0.7 !important;
}

/*==========================================
 プロフィール
===========================================*/
/* 枠 */
.um-profile-body {
  margin-bottom: 0 !important;
}

/* ダイレクトメッセージアイコン */
.um-icon-email {
  font-size: 22px !important;
  top: 9px !important;
}

/* メニューカラー */
.um .um-profile-nav-item.active a,
.um .um-profile-nav-item.active a:hover {
  background: #647eff !important;
}

/* カバー写真を適用 */
.um-modal-right .image {
  width: auto !important;
}

/* 説明文 */
.um-field-value p {
  padding-bottom: 20px !important;
}

/*==========================================
 出品中の得意
===========================================*/
/* 人気タイトル */
.sale-title {
  background: #eee;
  margin: 30px auto 42px;
  padding: 8px;
  position: relative;
  text-align: center;
  width: 100%;
}

.sale-title:after {
  border: solid transparent;
  border-top-color: #eee;
  border-width: 15px;
  content: " ";
  left: 50%;
  margin-left: -15px;
  position: absolute;
  top: 100%;
}

/* ボックス */
.box-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  margin-top: 20px;
}

.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: 8px;
}

.cat-name:before {
  color: #999;
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  left: 0;
  position: absolute;
  top: 0;
}

.cat-name a {
  color: #000;
}

.cat-p {
  color: #647eff;
  font-size: .9em;
}

@media only screen and (max-width: 415px) {
  .box-item {
    margin-bottom: 10px;
    padding: 6px;
  }

  .cat-name {
    font-size: .75em;
    line-height: 15px;
    margin: 8px 0 2px;
    padding-left: 6px;
}

  .cat-p {
    font-size: .9em;
    line-height: 18px;
  }
}

/*==========================================
 ダイレクトメッセージ
===========================================*/
#fep-content *,
#fep-content *:before,
#fep-content *:after {
  box-sizing: border-box !important;
}

/* メッセージトップ */
#fep-header {
  display: none !important;
}

/* 検索 */
.fep-messagebox-search-form-field {
  display: none !important;
}

/* メニュー削除 */
#fep-menu-newmessage,
#fep-menu-message_box,
#fep-menu-toggle-button,
#fep-menu-settings,
#fep-menu-announcements {
  display: none !important;
}

/* 枠 */
#fep-content {
  margin-left: -5px !important;
  padding-top: 0 !important;
}

/* セレクトボックス枠 */
.fep-action-table {
  margin-bottom: 20px !important
}

.fep-action-table select {
  background: #eee;
  cursor: pointer;
  margin: 0 !important;
}

.fep-bulk-action {
  position: relative;
}

.fep-bulk-action:before {
  content: '\f107';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 43px;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 8px;
  z-index: 1;
}

@media only screen and (max-width: 480px) {
  .fep-bulk-action:before {
    top: 0;
  }
}

.fep-filter-heads-div,
.fep-filter {
  display: none !important;
}

/* 適用 */
.fep-button {
  padding: 8px 20px !important;
  margin-left: 10px;
}

@media only screen and (max-width: 480px) {
  .fep-button {
    margin-bottom: 10px;
    margin-left: 0;
  }
}

/* メッセージ枠 */
.fep-column {
  line-height: 1.4em !important;
  padding: 8px 4px 8px 0 !important;
}

/* チェック */
.fep-cb-check-uncheck-all {
  margin-left: 4px !important;
}

.fep-cb {
  margin-left: 4px !important;
}

/* メッセージが見つかりませんでした */
.fep-error,
.fep-wp-error {
  border: none !important;
  padding: 0px !important;
  text-align: center !important;
}

/* 参加者 */
.participants {
  background: none !important;
  border: none !important;
  font-size: .85em !important;
  margin-top: -10px !important;
}

/* 各メッセージ */
.fep-per-message .fep-message-title {
  background-color: #fefedc !important;
  font-size: .9em !important;
}

.fep-message-content p {
  margin-bottom: 20px !important;
}

.fep-form-field-message_content {
  margin-top: 14px !important;
}

/* 名前と時間の行間 */
.fep-per-message .fep-message-title {
  line-height: 1.4em;
}

/* メッセージフッター */
#fep-footer {
  display: none !important;
}

/* 顔枠 */
#fep-content-single-heads {
  margin-top: 6px !important;
}

/* メッセージを送るボタン */
.front-end-pm-form .fep-button {
  display: block;
  margin: 20px auto !important;
  width: 200px !important;
}

/* 画像添付 */
.fep-attachment-field-input {
  margin-top: 20px;
}

input:matches([type="button"], [type="submit"], [type="reset"]), input[type="file"]::-webkit-file-upload-button {
    background: #eee;
    border: 0;
    line-height: 2.5;
    padding: 0 20px;
    font-size: .9rem;
    text-align: center;
    border-radius: 10px;
}

.fep-attachment-field-input:hover {
  opacity: 0.7;
}

.fep-attachment-field-input:active {
   opacity: 0.7;
}

a.fep-attachment-field-a {
  display: block;
  margin-top: 10px;
}

/*==========================================
 アカウント
===========================================*/
/* アカウントメニュー */
.um-account-title {
  padding-left: 10px !important;
}

.um-account-side li:nth-child(3) {
  display: none !important;
}

.um-account-main .uimob340-show:nth-child(5) {
  display: none !important;
}

/* アカウント右 */
.um-account-main {
  float: right !important;
}

/*==========================================
 フッター
===========================================*/
footer {
  margin: 40px 0 0;
}

.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;
}