@charset "UTF-8";
/* ============================================================ //
// @ 店舗一覧
// ============================================================ */
#shopList {
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  #shopList {
    margin-top: 25px;
  }
}

/* @ Google Map
// ------------------------------ */
#shopList #gmap {
  width: 100%;
  height: 450px;
  overflow: hidden;
  margin: 0 auto 50px;
  display: table;
}
@media screen and (max-width: 767px) {
  #shopList #gmap {
    width: 100%;
    max-width: 100%;
  }
}

/* @
// ------------------------------ */
#shopLinks {
  display: -webkit-box;
  display: flex;
  -js-display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}

#shopLinks .link {
  width: 32%;
  margin: 0 2% 20px 0;
  padding-bottom: 10px;
  border-bottom: solid 1px #eaeaea;
}

#shopLinks .link:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  #shopLinks .link {
    width: 100%;
  }
}

/*doc
---
title: ショップ一覧アイテム
name: ショップ一覧アイテム
category: shop-archives
---

```html_example

<li class="link">
  <dl class="shop-item">
    <dt class="shop-item-thumb">
      <a href="kokura.html"><img class="png" src="images/thum_kokura.jpg" width="90" height="90" alt="アパマンショップ 小倉店"/><span class="fBold">アパマンショップ<br/>小倉店</span></a>
    </dt>
    <dd class="shop-item-content">
      <ul class="shop-item-content-body">
        <li>〒802-0005<br/>
          北九州市小倉北区堺町1丁目2番16号 1F
        </li>
        <li class="mark_dial">0120-66-0834</li>
        <li>TEL 093-533-1111</li>
        <li>FAX 093-533-1010</li>
        <li>営業時間 9:30～18:00</li>
        <li>店休日 水曜日（1～3月は無休）</li>
      </ul>
    </dd>
  </dl>
</li>

```

*/
.shop-item {
  display: -webkit-box;
  display: flex;
  -js-display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.shop-item-thumb {
  width: 30%;
  font-size: 77%;
}

.shop-item-content {
  width: 65%;
  margin: 0;
  padding: 0;
  font-size: 85%;
}

.shop-item-content-body {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*# sourceMappingURL=shop_archives.css.map */
