@charset "UTF-8";
/*******************************************
    /css/shops.css
*******************************************/
/*------------------------------------------
  追従サブメニュー
------------------------------------------*/
aside {
  display: none;
}

@media screen and (min-width: 750px) {
  aside {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 900;
    height: 100%;
    width: 84px;
  }
  aside .links {
    padding-top: 120px;
  }
  aside a {
    display: block;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 15px;
    will-change: background-color;
    background: rgba(0, 0, 0, 0.8);
  }
  aside ul li {
    color: #FFF;
    margin-bottom: 2px;
  }
  aside a:hover,
  aside .current a,
  aside .current a:hover {
    border-left: solid 5px #DC4013;
    margin-left: -18px;
    background: black;
    opacity: 1;
  }
  aside .tit_cat {
    padding: 12px 15px;
    background-color: #313672;
    color: #fff;
    font-size: 1.3rem;
  }
}
/*------------------------------------------
    絞り込み検索
------------------------------------------*/
.narrow {
  padding-top: 120px;
  margin-top: -120px;
}
@media screen and (min-width: 751px) {
  .narrow {
    display: grid;
    grid-template-columns: 233px 1fr;
    border: 1px solid #cacaca;
    padding-top: 0px;
    margin-top: 0px;
  }
}
.narrow_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 30px;
  background-color: #f0f0f0;
  border-top: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
}
@media screen and (min-width: 751px) {
  .narrow_head {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
    border-right: 1px solid #cacaca;
    border-top: none;
    border-bottom: none;
  }
}
.narrow_tit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (min-width: 751px) {
  .narrow_tit {
    font-size: 2.3rem;
  }
}
.narrow_tit::before {
  content: "";
  width: 29px;
  height: 29px;
  background: url("../images/shops/icon/icon_search.svg") no-repeat border-box center/cover;
}
@media screen and (min-width: 751px) {
  .narrow_tit::before {
    margin-top: 3px;
  }
}
.narrow_clear {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 2px 15px 2px 10px;
  font-size: 1.2rem;
  color: #fff;
  background-color: #333;
  border-radius: 5px;
  cursor: pointer;
}
@media screen and (min-width: 751px) {
  .narrow_clear {
    padding: 2px 20px 2px 15px;
    font-size: 1.7rem;
  }
}
.narrow_clear::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url("../images/shops/icon/icon_clear.svg") no-repeat border-box center/cover;
}
@media screen and (min-width: 751px) {
  .narrow_clear::before {
    width: 20px;
    height: 20px;
  }
}
.narrow_body {
  padding: 15px 18px;
}
@media screen and (min-width: 751px) {
  .narrow_body {
    padding: 20px;
  }
}
.narrow_subtit {
  font-weight: bold;
  margin-bottom: 10px;
}
.narrow_list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
@media screen and (min-width: 751px) {
  .narrow_list {
    gap: 10px;
  }
}
@media screen and (min-width: 751px) {
  .narrow_list.is-last {
    margin-bottom: 10px;
  }
}
.narrow_item label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  font-size: 1.2rem;
  border: 1px solid #747972;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 751px) {
  .narrow_item label {
    font-size: 1.5rem;
  }
}
.narrow_item label::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url("../images/shops/icon/icon_uncheck.svg") no-repeat border-box center/cover;
}
.narrow_item input {
  display: none;
}
.narrow_item input:checked + label {
  color: #fff;
  background-color: #DC4013;
  border-color: #DC4013;
}
.narrow_item input:checked + label::before {
  background-image: url("../images/shops/icon/icon_check.svg");
}
.narrow_item.is-brand label {
  color: #DC4013;
  border: 1px solid #DC4013;
}
.narrow_item.is-brand label::before {
  background: url("../images/shops/icon/icon_uncheck_ora.svg") no-repeat border-box center/cover;
}
.narrow_item.is-brand input {
  display: none;
}
.narrow_item.is-brand input:checked + label::before {
  background-image: url("../images/shops/icon/icon_check.svg");
}
.narrow_description {
  font-size: 2.2rem;
  margin-top: 15px;
}

/*------------------------------------------
    ショップ住所一覧
------------------------------------------*/
.shops {
  margin: -82px 0 35px;
  padding-top: 102px;
}
@media screen and (min-width: 751px) {
  .shops {
    margin: 60px 0 180px;
    padding: 0;
  }
}
.shops_area {
  display: none;
  margin-bottom: 90px;
}
.shops_area.is-active {
  display: block;
}
@media screen and (min-width: 751px) {
  .shops_area {
    margin-bottom: 160px;
  }
}
.shops_tit {
  padding-bottom: 7px;
  font-family: "Noto Serif JP", sefif;
  font-size: 4rem;
  font-weight: bold;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 751px) {
  .shops_tit {
    margin-bottom: 45px;
    font-size: 4.5rem;
    line-height: 5rem;
  }
}
.shops_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-top: 25px;
}
@media screen and (min-width: 751px) {
  .shops_grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 60px 30px;
    margin-top: 45px;
  }
}
@media screen and (min-width: 1000px) {
  .shops_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.shops_part {
  display: none;
  border: 1px solid #ccc;
  background-color: #f0f0f0;
}
.shops_part.is-active {
  display: block;
}
.shops_part_tit {
  padding: 10px 15px;
  border-bottom: 1px solid #DC4013;
  font-size: 2.2rem;
  font-weight: bold;
  background-color: #fff;
}
@media screen and (min-width: 751px) {
  .shops_part_tit {
    font-size: 2.2rem;
  }
}
.shops_part_tit strong {
  color: #DC4013;
  padding-right: 5px;
}
.shops_list {
  padding-bottom: 15px;
}
.shops_item {
  display: none;
  border-bottom: 1px solid #000;
  margin: 0 15px;
}
.shops_item.is-active {
  display: block;
}
.shops_item a {
  display: block;
  position: relative;
  padding: 10px 0px;
}
.shops_name {
  display: inline-block;
  margin-right: 5px;
  font-size: 1.7rem;
}
.shops_status {
  display: inline-block;
  margin-right: 5px;
}
.shops_status.is-open {
  font-size: 1.7rem;
  color: #eb1c24;
}
.shops_status.is-closed {
  font-size: 1.7rem;
  color: #005c9b;
}
.shops_status.is-others {
  font-size: 1.2rem;
  padding: 2px 10px;
  color: #fff;
  background-color: #0a8200;
}
.shops_status.is-hide {
  display: none;
}
.shops_status-alert {
  display: inline-block;
  font-size: 1.7rem;
  color: #eb1c24;
}
.shops_time-wrap {
  margin-top: 10px;
}
.shops_time {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 24px;
  border-radius: 100vmax;
  padding: 1px 14px;
  background-color: #DC4013;
  color: #fff;
  font-size: 1.3rem;
}
.shops_time.is-24::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("../images/shops/icon/icon_24.svg") no-repeat border-box center/cover;
}
.shops_time.is-temporary {
  color: #333;
  background-color: rgb(200, 200, 200);
}

.icons {
  position: absolute;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: end;
  gap: 5px;
}
.icons_item img {
  width: auto;
  height: 26px;
}

/*------------------------------------------
    検索結果がない時の表示
------------------------------------------*/
.not_found {
  display: none;
  max-width: 500px;
  padding: 25px;
  margin: 0 auto;
  background-color: #ffe6e6;
}
.not_found.is-active {
  display: block;
}
.not_found p {
  font-size: 1.5rem;
  line-height: 1.8666666667;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .not_found p {
    font-size: 1.8rem;
  }
}

/*------------------------------------------
    絞り込み検索の追従ボタン
------------------------------------------*/
.bt_top_search {
  display: none;
  position: fixed;
  top: 114px;
  right: 10px;
  opacity: 0;
  transition: opacity 0.5s ease;
  position: fixed;
  z-index: 100;
  width: 55px;
}
@media screen and (min-width: 751px) {
  .bt_top_search {
    display: none !important;
  }
}/*# sourceMappingURL=shops.css.map */