@charset "UTF-8";
:root {
  --color-main: #e72410;
  --color-black: #000;
  --color-black-light: #292929;
  --color-white: #fff;
  --color-border: #bababa;
  --color-border-input: #d4d4d4;
  --color-border-checkbox: #767676;
  --color-text-gray: #757575;
  --color-bg-gray: #eee;
  --color-bg-gray-dark: #cbcbcb;
  --color-bg-heading: #f2f2f2;
  --color-bg-gray-light: #f8f8f8;
  --color-border: #707070;
  --color-border-light: #ebebeb;
  --font-en: "Montserrat", sans-serif;
}
.p-topStores__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.p-topStores__tags li {
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border: 1px solid var(--color-border);
  line-height: 1;
  border-radius: 13px;
}
.p-topStores__tags li.-red {
  color: var(--color-main);
  font-family: var(--font-en);
  font-weight: 700;
  border-color: var(--color-main);
}
.c-storeTitle {
  font-size: 2.0rem;
  letter-spacing: 0.08em;
  margin-top: 12px;
  line-height: 1.4em;
  letter-spacing: 0.7px;
  font-weight: bold;
  width: 100%;
}

.c-storeShopInfo {
  margin-top: 20px;
}
.c-storeShopInfo tr:nth-child(2) th,
.c-storeShopInfo tr:nth-child(2) td {
  padding: 5px 0;
}
.c-storeShopInfo th {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: left;
  letter-spacing: 0.06em;
  width: 147px;
  vertical-align: top;
}
.c-storeShopInfo td {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.5;
  width: calc(100% - 147px);
}
.c-storeShopInfo td .map_link a {
  font-size: 1.4rem;
  border-bottom: 1px solid #707070;
}
.c-storeShopInfo td .map_link a:hover {
  border-bottom: 1px solid #E72410;
}
.c-title_page {
  padding-bottom: 50px;
}
.c-title_page__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.c-title_page__desc {
  margin-top: 14px;
  font-size: 1.2rem;
  line-height: 18px;
  letter-spacing: 0.5px;
  text-align: center;
}

.p-storeList {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  border-top: 1px solid var(--color-border-light);
}

.p-storeListItem {
  border-bottom: 1px solid var(--color-border-light);
}
.p-storeListItem__inner {
  padding: 30px 0;
  display: block;
}
.p-storeListItem__img {
  width: 100%;
}
.p-storeListItem__title {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.p-storeListItem__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 15px;
}

.js-accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out;
}
.js-accordion-content.-open {
  grid-template-rows: 1fr;
}
@media print, screen and (min-width: 751px){
  .p-storeList {
    margin-top: 43px;
  }
  .p-storeListItem__inner {
    display: flex;
    align-items: flex-start;
    gap: 0 33px;
    padding: 65px 0;
    position: relative;
  }
  .p-storeListItem__img {
    width: 38.9%;
    max-width: 372.4px;
  }
  .p-storeListItem__title {
    max-width: 240px;
    width: 100%;
  }
  .p-storeListItem__info {
    width: 63.5%;
  }
}
@media screen and (max-width: 750px){
  .p-storeListItem {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .p-storeListItem__title {
    justify-content: space-between;
  }
  .p-storeListItem__info {
    margin-top: 16px;
  }
  .c-storeShopInfo th,
  .c-storeShopInfo td {
    display: block;
    width: 100%;
  }
  .c-storeShopInfo tr:nth-child(2) td {
    padding: 0;
  }
  .c-storeShopInfo tr:nth-child(2) th,
  .c-storeShopInfo tr + tr th {
    padding-top: 5.867vw;
  }
  .c-storeShopInfo td .map_link a {
    margin-top: 1.867vw;
  }
}