


/*タブ切り替え全体のスタイル*/
.tabs {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 15px;
}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/5);
  height: 50px;
  /*border-bottom: 3px solid #fff;*/
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 14px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  margin-bottom: 5px;

}
.tab_item:hover {
  opacity: 0.75;
}


/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  /*padding: 40px 40px 0;*/
  clear: both;
  overflow: hidden;
}


/*選択されているタブのコンテンツのみを表示*/
#gurume:checked ~ #gurume_content,
#omiyage:checked ~ #omiyage_content,
#syukuhaku:checked ~ #syukuhaku_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #fff;
  border-radius: 10px 10px 0px 0px;
  color: #000;
}

.select-store .store-div{
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  width: 85%;
  max-width: 800px;
  margin: auto;
  padding: 10px;
  margin-bottom: 25px;
  display: flex;
}

.select-store .store-div .image{
  width: 30%;
}
.select-store .store-div .image img{
  width: 100%;
}
.select-store .store-div .contents{
  width: 70%;
  padding-left: 10px;
  font-size: 12px;
  position: relative;
}
.select-store .store-div .contents .pin{
  position: absolute;
  right: 0;
}
.select-store .store-div .contents .title{
    padding-right: 25px;
    margin-bottom: 3px;
}

.store-list li .title h3,
.select-store .store-div .contents .title h2{
  font-size: 14px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.store-list li .time img,
.select-store .store-div .contents .time img{
  margin-bottom: 3px;
}

.store-list li .time,
.select-store .store-div .contents .time{
  margin-bottom: 3px;
}

.select-store .store-div .contents .pref,
.store-list li .pref{
  color: #c3c4c4;
  margin-bottom: 3px;
}

.select-store .store-div .contents .text{
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.store-list li{
  font-size: 12px;
  padding: 20px;
  border-top: 1px solid #e6e6e6;
  border-bottom: 2px solid #e6e6e6;
  position: relative;
}

.store-list li .star{
  position: absolute;
  right: 20px;
  cursor: pointer;

}

.store-list li .image {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5px;
  padding: 5px 0px;
}

.store-list li .image img{
  max-width: 49%;
  max-height: 200px;
}

.store-list li .image .space{
  width: 2%;
}

.store-list li .text {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.tabs .select-store a ,
.tabs .store-list a {
  color: #000;
  text-decoration: none;
}

#map{
  margin-bottom: 25px;
}