@charset "UTF-8";
/*============================================
ページ全体・タイトル
============================================*/
.title-wrap {
  margin: 2em 0 4em;
}
.title-wrap .title-style1 {
  font-size: 2.8rem;
}

#retailer-page {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto 2em;
}

/*============================================
サブタイトル
============================================*/
.retailer-subtitle {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 1.5em;
}

.retailer-description {
  text-align: center;
  line-height: 2;
  margin-bottom: 2em;
}

/*============================================
取り扱い店マップ
============================================*/
.retailer-map-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2.2em;
  background-color: #E7F6F1;
  border-radius: 1rem;
  margin-bottom: 5.5em;
}
.retailer-map-container .retailer-map {
  width: 50%;
  max-width: 452px;
}
.retailer-map-container .retailer-map img {
  max-width: 100%;
  height: auto;
}
.retailer-map-container .retailer-buttons {
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1em;
}
.retailer-map-container .retailer-button {
  display: block;
  text-decoration: none;
  max-width: 350px;
  padding: 1em;
  margin: 0 auto;
}

/*============================================
取り扱い店一覧
============================================*/
.retailer-store-list {
  width: 100%;
}
.retailer-store-list .retailer-region-title {
  font-size: 2.2rem;
  padding: 1.3rem 0;
  margin-bottom: 3rem;
  text-align: center;
  border-bottom: 1px solid #38B281;
}
.retailer-store-list .retailer-table-container {
  width: 100%;
  margin-bottom: 6em;
  overflow-x: auto;
}
.retailer-store-list .retailer-table {
  width: 100%;
  border-collapse: collapse;
}
.retailer-store-list .retailer-table .retailer-prefecture {
  font-size: 1.8rem;
  border-bottom: 1px solid #E2E2E2;
}
.retailer-store-list .retailer-table .retailer-prefecture td {
  padding: 1.6rem 0;
}
.retailer-store-list .retailer-table .retailer-store {
  border-bottom: 1px solid #F1F1F1;
}
.retailer-store-list .retailer-table .retailer-store td {
  padding: 1em 1.5em 1em 0;
  vertical-align: top;
}
.retailer-store-list .retailer-table .retailer-store .store-name {
  width: 35%;
}
.retailer-store-list .retailer-table .retailer-store .store-address {
  width: 49%;
}
.retailer-store-list .retailer-table .retailer-store .store-tel {
  width: 16%;
}

/*============================================
レスポンシブ
============================================*/
@media screen and (max-width: 768px) {
  .retailer-map-container {
    flex-direction: column;
    padding: 2.2em 1.8em;
    background-color: #E7F6F1;
  }
  .retailer-map-container .retailer-map {
    width: 100%;
    margin-bottom: 1.5em;
  }
  .retailer-map-container .retailer-buttons {
    width: 100%;
  }
  .retailer-store-list .retailer-table .retailer-prefecture {
    text-align: center;
  }
  .retailer-store-list .retailer-table .retailer-store {
    display: flex;
    flex-direction: column;
    padding: 0.8em;
  }
  .retailer-store-list .retailer-table .retailer-store td {
    padding: 0.3em;
    vertical-align: top;
    width: 100%;
  }
  .retailer-store-list .retailer-table .retailer-store .store-name {
    width: 100%;
  }
  .retailer-store-list .retailer-table .retailer-store .store-address {
    width: 100%;
  }
  .retailer-store-list .retailer-table .retailer-store .store-tel {
    width: 100%;
  }
}