@charset "UTF-8";
/*--------------------
ブレイクポイント
--------------------*/
/*--------------------
メディアクエリ
--------------------*/
/*--------------------
矢印アイコン
--------------------*/
/*--------------------------------------
list
----------------------------------------*/
.c_shop_list_menu {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .c_shop_list_menu {
    padding-top: 50px;
  }
}
.c_shop_list_menu_tabs {
  display: flex;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .c_shop_list_menu_tabs {
    margin-bottom: 32px;
    width: 100vw;
    margin-left: -20px;
  }
}
.c_shop_list_menu_tab {
  background-color: rgb(255, 255, 255);
  border: 1px solid var(--body_color);
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  flex: 1;
  font-size: 1.8rem;
  font-weight: var(--font_weight_bold);
  padding-block: 14px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c_shop_list_menu_tab {
    border-radius: 4px 4px 0 0;
    border-width: 1px;
    font-size: 1.4rem;
  }
}
.c_shop_list_menu_tab:not(:first-child) {
  margin-left: -2px;
}
@media screen and (max-width: 768px) {
  .c_shop_list_menu_tab:not(:first-child) {
    margin-left: -1px;
  }
}
.c_shop_list_menu_tab.is_active {
  background-color: var(--body_color);
  color: rgb(255, 255, 255);
}