@charset "utf-8";
/* CSS Document */
#tab-panel{
  width:100%;
  margin: 0 auto;
}
.tab-group{
    display: flex;
    justify-content: center;
    margin-top: 2%;
}
.tab{
  width:50%;
  text-align:center;
  align-items: center;
  background:#eee;
  display: inline-grid;
  flex-grow: 1;
  cursor:pointer;
  position: relative;
  padding:10px 5px !important;
  margin: 0px 1px;
}
.tab::after {
  content: '';
  width: 12px;
  height: 12px;
  position: absolute;
  left: 50%;
  bottom: -6px;
  display: block;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.panel_area{
  padding: 40px 20px;
  border: 2px solid #fdd000;
  margin-left: 1px;
}
.panel_area_catet{
  padding: 20px 0px 0px;
  border-top: 2px solid #7afbfe;
  margin-left: 1px;
}
.panel_area_cateb{
  padding: 20px 0px 0px;
  border-top: 2px solid #fdd000;
  margin-left: 1px;
}
.panel-group{
  height:auto;
}
.panel{
  display:none;
}
.tab.is-active{
  color:#333;
  background:#fdd000;
}
.tab_cate_t.is-active{
  color:#333;
  background:#7afbfe;
}
.tab_cate_t.is-active::after{
  background:#7afbfe;
}
.tab.is-active::after{
  background:#fdd000;
}
.tab_cate_t.is-active::after{
  background:#7afbfe;
}
.panel.is-show{
  display:block;
}
.panel img{
  width: 100%;
  border: #eee 1px solid;
  padding:0;
}
.panel a:hover{
  opacity:0.5;
}
.flexbox{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap:10px;
}
.recommend_box{
  width:48%;
  margin-bottom:20px;
}
.recommend_box img{
  width:100%;
}
.text_overflow {
  color:#666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
}
.btn_tab{
  position: relative;
  font-size: 16px;
  text-align: right;
  padding: 10px;
}
.btn_tab a{
  color:#333;
}
.btn_tab a::before {
	content: '';
	position: absolute;
	top: calc(90% - 4px);
	right: -10px;
	transform: rotate(30deg);
	width: 12px;
	height: 1px;
	background-color: #666;
}
.btn_tab a::after {
	content: '';
	position: absolute;
	top: 90%;
	right: -10px;
	transform: translateY(-50%);
	width: 100px;
	height: 1px;
	background-color: #333;
}
/***************************************************
      商品エリア カテゴリページ　上部
****************************************************/
.flexbox_tab{
  width:100%;
  display: flex;
  display: -webkit-flex;
  flex-wrap:wrap;
  text-align: center;
}
.flexbox_tab .item_box{
  width:40%;
}
.flexbox_tab .cate_link{
  width:60%;
} 
.flexbox_tab .cate_link{
 font-size: 0.9rem;
}
.item_box{
  display: flex;
  flex-direction: column;
  width:100%;
  margin:10px auto;
}
.item_box p{
  margin-bottom: 10px;
}
.item_img{
  position: relative;
}
.item_img img{
  width: 100%;
}
.item_txt{
  flex-grow: 1;
  font-size: 1.5rem;
  margin-top: 10px;
}
.store_txt{
  font-size: 0.9rem;
  font-weight: bold;
}
.price_txt,.price{
  font-weight: bold;
}
.price_txt{
  font-size: 1.3rem;
}
.price{
  font-size: 1.7rem;
  padding:0px 10px;
}
.tax_txt{
  font-size: 1.0rem;
}
.tax{
  font-size: 1.1rem;
  padding:0px 10px;
}
.flexbox_tab .item_txt{
  font-size: 1rem;
}
.flexbox_tab .price_txt{
  font-size: 1.0rem;
}
.flexbox_tab .price{
  font-size: 1.4rem;
}
.flexbox_tab .tax_txt{
  font-size: 1.0rem;
}
.flexbox_tab .tax{
  font-size: 1.1rem;
}
.page_link{
  font-size: 1rem;
  position: relative;
  margin:0px 0px 30px;
}
.page_link a{
  width:150px;
  display: block;
  color:#666 !important;
  text-decoration: none;
  background-color:#fff;
  transition: background 1s;
  box-shadow: 0 0 0 2px #767676;
  border-radius: 50vh;
  padding: 5px 5px 5px 0px;
  margin:20px auto;
}
.page_link a::after{
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 2px #767676;
  border-right: solid 2px #767676;
  position: absolute;
  margin-top: 5px;
  margin-left: 5px;
  transform: rotate(-45deg);
}
.page_link a:hover{
  color:#fff !important;
  text-decoration: none;
  background-color: #767676;
  box-shadow: 0 0 0 2px #767676;
}
.page_link a:hover::after{
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  margin-top: 5px;
  margin-left: 5px;
  transform: rotate(-45deg);
}


@media all and (-ms-high-contrast: none) {
  .tab{
    background:#eee;
  }
  .text_overflow {
    width:100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin:20px 0px;
  }
}