@charset "UTF-8";
.shop{
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0 0 120px;
}
.height300{
  height: 200px;
}
.shopTable{
  order: 3;
  padding: 0 10px;
}
.shopTableItem{
  display: none;
}
.streetMapBtn{
  display: flex;
  align-items: center;
  position: relative;
  padding: 5px 50px 5px 5px;
  border-image: url(/img/linebg1.png) 20 repeat;
  border-style: solid;
  border-width: 5px;
  width: calc(100% - 20px);
  font-size: 1.8rem;
}
.streetMapBtn__icon{
  display: inline-block;
  margin: 0 .5em 0 0;
  font-size: 1.7em;
}
.streetMapBtn::after{
  content: "";
  display: block;
  z-index: 10;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
  border-right: solid 3px;
  border-bottom: solid 3px;
  width: 10px;
  height: 10px;
  transform: rotate(-45deg);
  color: inherit;
  pointer-events: none;
}
.shopListBox{
  order: 2;
  margin: 0 0 20px;
  padding: 0 10px;
}
.shopListItem{
}
.shopListItem__header{
  display: flex;
  align-items: center;
  margin: 0 0 8px;
  padding: 5px;
  background: #eee;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}
.shopListItem__icon{
  display: inline-block;
  width: 1.2em;
  text-align: center;
  font-size: 1.6em;
}
.shopListItem__content{
  margin: 0 0 20px;
}
.shopListItemSub__header{
  padding: 3px 5px;
}
.shopListItemSub__header__btn{
  display: flex;
  align-items: center;
  padding: 3px 5px;
  font-size: 1.8rem;
  font-weight: bold;
  transition: color .2s;
}
.shopListItemSub__header__btn--disabled,
.shopListItemSub__header__btn--disabled > *{
  color: #ccc!important;
  pointer-events: none;
}
.shopListItemSub__icon{
  display: inline-block;
  margin: 0 5px 0 0;
  text-align: center;
  font-size: 1.6em;
}
.shopListItemSub__content{
  display: none;
}
.shopListItem--fashion .shopListItem__header{
  background: #96c2ce;
}
.shopListItem--fashion .shopListItemSub__icon{
  color: #96c2ce;
}
.shopListItem--fashion .shopListItemSub__header__btn:hover,
.shopListItem--fashion .shopListItemSub__header__btn:focus{
  color: #96c2ce;
}
.shopListItem--shopping .shopListItem__header{
  background: #99c8b1;
}
.shopListItem--shopping .shopListItemSub__icon{
  color: #99c8b1;
}
.shopListItem--shopping .shopListItemSub__header__btn:hover,
.shopListItem--shopping .shopListItemSub__header__btn:focus{
  color: #99c8b1;
}
.shopListItem--gourmet .shopListItem__header{
  background: #ec9776;
}
.shopListItem--gourmet .shopListItemSub__icon{
  color: #ec9776;
}
.shopListItem--gourmet .shopListItemSub__header__btn:hover,
.shopListItem--gourmet .shopListItemSub__header__btn:focus{
  color: #ec9776;
}
.shopListItem--service .shopListItem__header{
  background: #dabf88;
}
.shopListItem--service .shopListItemSub__icon{
  color: #dabf88;
}
.shopListItem--service .shopListItemSub__header__btn:hover,
.shopListItem--service .shopListItemSub__header__btn:focus{
  color: #dabf88;
}
.shopListItem--other .shopListItem__header{
  background: #aba1c4;
}
.shopListItem--other .shopListItemSub__icon{
  color: #aba1c4;
}
.shopListItem--other .shopListItemSub__header__btn:hover,
.shopListItem--other .shopListItemSub__header__btn:focus{
  color: #aba1c4;
}

.shopGuide{
  order: 1;
  margin: 0 0 30px;
  padding: 30px 20px;
  background: #eee;
}
.shopGuide__note{
  margin: 0 0 20px;
}
.shopGuide__title{
  margin: 0 0 4px;
  font-size: 1.6rem;
  font-weight: 700;
}
.shopGuide__link{
}
.shopGuide__image{
  text-align: center;
}
.shopGuide__image a{
  transition: opacity .2s;
}
.shopGuide__image a:hover{
  opacity: .8;
}
.shopGuide__image img{
  width: 483px;
  max-width: 100%;
  height: auto;
}
.shopGuide__notice{
  margin-bottom: 10px;
}

@media screen and (min-width:650px){
  .shopListBox{
    clear: both;
  }
}
@media screen and (min-width:980px){
  .shop{
    padding: 60px 0 120px;
  }
  .shopTable{
    order: 1;
    display: block;
    margin: 0 0 70px;
  }
  .shopTableList{
      display: flex;
      flex-wrap: wrap;
      position: relative;
      margin: 10px 10px 25px;
      padding: 25px 35px;
      background: #fff;
  }
  .shopTableList::after{
      content: "";
      display: block;
      z-index: -1;
      position: absolute;
      top: -10px;
      left: -10px;
      background: url(/img/linebg1.png) left/60px;
      width: calc(100% + 20px);
      height: calc(100% + 20px);
  }
  .streetMapBtn{
    float: right;
    position: relative;
    bottom: auto;
    left: auto;
    margin: 0;
    border: none;
    width: 270px;
  }
  .shopTableItem{
    display: block;
    margin: 0 0 20px;
  }
  .shopTableItem--1{ width: 20%; }
  .shopTableItem--2{ width: 40%; }
  .shopTableItem--3{ width: 60%; }
  .shopTableItem--4{ width: 80%; }
  .shopTableItem--5{ width: 100%; }
  .shopTableItem__header{
    display: flex;
    align-items: center;
    margin: 0 5px 10px;
    font-weight: bold;
    font-size: 1.8rem;
  }
  .shopTableItem__icon{
    display: inline-block;
    margin: 0 5px 0 0;
    color: #008ee5;
    font-size: 1.6em;
  }
  .shopTableItem__content{
    display: flex;
    justify-content: space-between;
  }
  .shopTableItem__btn{
    flex: 1 1 100%;
    display: block;
    margin: 0 5px;
    padding: 8px 5px;
    border: solid 2px #ccc;
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
  }
  .shopTableItem--fashion .shopTableItem__btn{
    border-color: #96c2ce;
    transition: background .2s, color .2s;
  }
  .shopTableItem--fashion .shopTableItem__btn:hover,
  .shopTableItem--fashion .shopTableItem__btn:focus{
    background: #96c2ce;
    color: #fff;
  }
  .shopTableItem--shopping .shopTableItem__btn{
    border-color: #99c8b1;
    transition: background .2s, color .2s;
  }
  .shopTableItem--shopping .shopTableItem__btn:hover,
  .shopTableItem--shopping .shopTableItem__btn:focus{
    background: #99c8b1;
    color: #fff;
  }
  .shopTableItem--gourmet .shopTableItem__btn{
    border-color: #ec9776;
    transition: background .2s, color .2s;
  }
  .shopTableItem--gourmet .shopTableItem__btn:hover,
  .shopTableItem--gourmet .shopTableItem__btn:focus{
    background: #ec9776;
    color: #fff;
  }
  .shopTableItem--service .shopTableItem__btn{
    border-color: #dabf88;
    transition: background .2s, color .2s;
  }
  .shopTableItem--service .shopTableItem__btn:hover,
  .shopTableItem--service .shopTableItem__btn:focus{
    background: #dabf88;
    color: #fff;
  }
  .shopTableItem--other .shopTableItem__btn{
    border-color: #aba1c4;
    transition: background .2s, color .2s;
  }
  .shopTableItem--other .shopTableItem__btn:hover,
  .shopTableItem--other .shopTableItem__btn:focus{
    background: #aba1c4;
    color: #fff;
  }
  .shopTableItem__btn--disabled{
    cursor: default!important;
    border-color: #eee!important;
    background: #fff!important;
    color: #ccc!important;
    pointer-events: none;
  }

  .shopListBox{
      order: 3;
  }
  .shopListBox__inner{
    display: flex;
    flex-wrap: wrap;
  }
  .shopListItem{
    display: block;
    margin: 0 0 30px;
    padding: 0;
  }
  .shopListItem--1{width: 33.333%;}
  .shopListItem--2{width: 66.666%;}
  .shopListItem--3{width: 100%;}
  .shopListItem__content{
    display: flex;
  }
  .shopListItem__header{
    margin: 0 0 20px;
  }
  .shopListItem__header--left{
    margin-right: 15px;
  }
  .shopListItemSub{
    flex: 1 1 100%;
  }
  .shopListItemSub__header{
    margin: 0 0 8px;
    padding: 0;
  }
  .shopListItemSub--2r{
    flex: 1 1 200%;
  }
  .shopListItem__content{
    display: flex;
  }
  .shopListItemSub__content{
    display: flex;
    flex-flow: column wrap;
    margin: 0 0 20px;
  }
  .shopListItemSub--2r .shopListItemSub__content{
    height: 230px;
  }
  .shopListItemSub__item{
    margin:  0 0 .5em 30px;
    line-height: 1.4em;
    font-size: 1.5rem;
  }

  .shopGuide{
    order: 2;
    margin: 0 0 100px;
    padding: 30px;
  }
  .shopGuide__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .shopGuide__image{
    flex: 0 0 auto;
  }
  .shopGuide__title{
    font-size: 2.8rem;
  }
}
