@charset "UTF-8";
/* CSS Document */
/* ----------------------------
  content
------------------------------*/
.pc_appear {
  display: none;
}

.sp_appear {
  display: block;
}

/* ヘッダーの固定を外す */
header .fix_area {
  position: relative;
}
header .fix_menu {
  position: absolute;
}

#headerSymbol {
  margin: 0;
  min-height: unset;
}

#wrapper.top #main {
  padding-top: 0;
}
.page_tml {
  width: 100%;
}

#language {
  position: absolute;
}

/* カテゴリ */
.search_by_category_area {
  width: 89.333333333%;
}
.category_nav {
  margin-top: 15px;
}
.category_list {
  flex-wrap: wrap;
}
.category_item {
  min-width: 48%;
  padding: 8px 17px;
  box-sizing: border-box;
  font-size: 0.8rem;
  margin-right: 2%;
  margin-bottom: 10px;
}

/* shoplist */
.shoplist_area {
  width: 89.333333333%;
  margin-top: 20px;
}
.shoplist_item {
  width: calc(100%/3 - 8.95522388%/3);
  margin-left: 4.47761194%;
  margin-top: 20px;
}

.shoplist_item:nth-child(7n - 6) {
  margin-left: 4.47761194%;
}

.shoplist_item:nth-child(3n - 2) {
  margin-left: 0;
}


/* shop item */
.shopitem_area {
  margin-top: 40px;
}
.shopitem_item {
  width: 100%;
}
.shopitem_shop_floor, .shopitem_shop_name {
  font-size: 0.75rem;
}
.shopitem_item.accordion .for_accordion::after {
  bottom: -1px;
}
.shop_link {
  font-size: 0.625rem;
}

/* menu */
.menu_area.open {
  width: 166px;
  max-height: 80%;
  overflow: auto;
}
.menu_area.open.many_text {
  width: 200px;
}

.munu_area_inner {
  display: flex;
  flex-direction: column;
}
.menu_function_group_outer {
  width: auto;
}
.menu_function_group {
  width: 100%;
  flex-direction: column;
}
.menu_function_group.sp_appear {
  display: flex;
}
.menu_category_list_outer {
  margin-bottom: 25px;
}
.menu_category_list {
  flex-direction: column;
  margin-top: 10px;
}
.menu_category_list:not(:first-child) {
  margin-top: 10px;
}

.menu_category_item {
  width: 100%;
  margin: 0 auto 15px;
}
.menu_category_item:last-child {
  margin-bottom: 0;
}
.menu_search_ttl {
  display: flex;
}
.menu_search_ttl_and_btn {
  flex-direction: column;
  align-items: flex-end;
}
.menu_clear_btn, .page_top {
  margin-bottom: 15px;
}
.menu_clear_btn {
  justify-content: end;
}
.menu_btn {
  padding-right: 5px;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next,
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  opacity: 1;
}


/* top banner */
.top_banner_area,
.bottom_banner_area {
  width: 100%;
}
.bottom_banner_area {
  margin-top: 10px;
}
.banner_title {
  font-size: 1.375rem;
  line-height: 24px;
}
.banner {
  padding: 0 20px;
}
.banner_under {
  margin-top: 20px;
  margin-bottom: 30px;
}


/* link text */
.special_link_text {
  margin: 0 20px;
  font-size: 1.1rem;
  line-height: 20px;
  padding: 15px 30px;
}


/* pc アコーディオンを初期化 */
.shopitem_item.accordion .item_basic_info {
  overflow: visible;
  display: block;
  max-height: fit-content;
}

.shopitem_item.accordion .for_accordion {
  background: none;
  margin-top: 0;
}
.shopitem_item.accordion .for_accordion::before {
  display: none;
}
.shopitem_item.accordion .for_accordion::after {
	display: none;
}
.shopitem_item.accordion.open_accordion .for_accordion::before {
  display: none;
}


/* sp アコーディオンクラス */
.shopitem_item.sp_accordion .item_basic_info {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 2.8em;
}
.shopitem_item.sp_accordion.open_accordion .item_basic_info {
  overflow: visible;
  display: block;
  max-height: fit-content;
}
/* アコーディオンが開く時の挙動 */
.shopitem_item.sp_accordion.open_accordion .item_price,
.shopitem_item.sp_accordion.open_accordion .item_description {
  animation: appear .8s;
}
@keyframes appear {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.shopitem_item.sp_accordion .for_accordion {
  position: relative;
  background: linear-gradient(rgba(255,255,255,0) 0%, #fff 40%);
  margin-top: -20px;
  cursor: pointer;
}
.shopitem_item.sp_accordion.open_accordion .for_accordion {
  background: none;
  margin-top: 0;
}
.shopitem_item.sp_accordion .for_accordion::before {
  content: '続きを読む';
  display: inline-block;
  width: 100%;
  color: var(--nav-text-color);
  font-size: 0.8125rem;
  font-weight: bold;
  text-align: center;
  margin: 40px auto 10px;
}
.shopitem_item.sp_accordion.open_accordion .for_accordion::before {
  content: '閉じる';
  display: inline-block;
  width: 100%;
  color: #707070;
  font-size: 0.8125rem;
  font-weight: bold;
  text-align: center;
  margin: 20px auto 0;
}
.shopitem_item.sp_accordion .for_accordion::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
	width: 5px;
	height: 5px;
  border-top: none;
  border-left: none;
	border-bottom: 2px solid var(--nav-text-color);
	border-right: 2px solid var(--nav-text-color);
	-webkit-transform: rotate(45deg);
	transform: translateX(-50%) rotate(45deg);
}

.shopitem_item.sp_accordion.open_accordion .for_accordion::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 10px;
	width: 5px;
	height: 5px;
  border-bottom: none;
  border-right: none;
	border-top: 2px solid #707070;
	border-left: 2px solid #707070;
	-webkit-transform: rotate(45deg);
	transform: translateX(-50%) rotate(45deg);
}

.no_info {
  font-size: 1rem;
  padding-top: 10%;
}
