/* Swiper */

.swiper {
  z-index: 0 !important;
}

.swiper-slide-sp {
  width: 100px !important;
}

.swiper-slide--w-auto {
  width: auto !important;
}

.img-top-slider {
  width: 100%;
}

@media screen and (min-width: 640px) {
  .swiper-slide--w-auto\@s {
    width: auto !important;
  }
}

@media screen and (min-width: 960px) {
  .swiper-slide--w-auto\@m {
    width: auto !important;
  }

}

@media screen and (min-width: 1200px) {
  .swiper-slide--w-auto\@l {
    width: auto !important;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  min-width: 1200px;
  width: 100%;
  height: auto;
  background-color: #FFF;
  -webkit-box-shadow: 0px 1px 7px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 7px 0 rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1200px) {
  .header {
    min-width: 320px;
  }
}

.header__fixed {
  z-index: 2;
  background-color: #FF5530;
  box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.1);
}

.header__item {
  height: 80px;
}

@media screen and (max-width: 959px) {
  .header__item {
    height: 52px;
  }
}

/* Header Stick */

.header-stick {
  height: 40px;
  display: flex;
  padding: 0 100px;
}

.header-stick > a {
  cursor: pointer;
  font-weight: 600;
  color: var(--color);
  font-size: 0.875rem;
  border-top: 6px solid;
}

.header-stick > a:hover, .header-stick > a.active {
  background: #EAE5E5;
}

@media screen and (max-width: 959px) {
  .header-stick {
    height: 30px;
    padding: 0 16px;
  }

  .header-stick > a {
    font-size: 0.625rem;
    border-top-width: 4px;
  }
}

/* Header Logo */

.header__logo {
  width: 70px;
}

@media screen and (min-width: 960px) {
  .header__logo {
    width: 84px;
  }
}

/* Login Link */

.login-link {
  color: #0AD6BB;
  background-color: #fff;
}

.login-link__icon {
  width: 12px;
}

.login-link:hover,
.login-link:focus,
.login-link:active,
.login-link.active {
  color: #ffffff;
  background-color: #0AD6BB;
}

.login-link--icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #0AD6BB;
}

.login-link--icon-labeled {
  padding: 0 10px;
  border-radius: 19px;
  border: 2px solid #0AD6BB;

  line-height: 30px;
  font-size: 10px;
  white-space: nowrap;
}

@media screen and (min-width: 960px) {
  .login-link {
    background-color: transparent;
  }

  .login-link__icon {
    width: 17px;
  }

  .login-link--icon {
    width: 39px;
    height: 39px;
  }

  .login-link--icon-labeled {
    padding: 0 18px;
    line-height: 35px;
    font-size: inherit;
  }
}

/* Favorite Link */

.favorite-link {
  color: #606060;
}

.favorite-link__icon {
  width: 25px;
}

.favorite-link:hover,
.favorite-link:focus,
.favorite-link:active,
.favorite-link.active {
  color: tomato;
}

@media screen and (min-width: 960px) {
  .favorite-link__icon {
    width: 28px;
  }
}

.news-link {
  width: 80px;
  color: #FFFFFF;
}

.news-link.on::after {
  position: absolute;
  top: 0;
  right: 22px;
  content: "";
  width: 13px;
  height: 13px;
  vertical-align: top;
  border-radius: 50%;
  background-color: #0AD6BB;
}

/* User Link */

.user-link {
  width: 80px;
  color: #ff5530;
}

.user-link__icon {
  width: 28px;
}

.user-link:hover,
.user-link:focus,
.user-link:active,
.user-link.active,
.news-link:hover,
.news-link:focus,
.news-link:active,
.news-link.active {
  color: #FFFFFF;
}

/* Confirm Link */
.confirm-link {
  width: 80px;
  height: 100%;
  color: transparent;
  position: relative;
  background-color: transparent;
}

.confirm-link__icon {
  width: 32px;
}

.confirm-link:hover,
.confirm-link:focus,
.confirm-link:active,
.confirm-link.active {
  color: #FFFFFF;
}

.sidebar__fixed .confirm-link:hover,
.sidebar__fixed .confirm-link:focus,
.sidebar__fixed .confirm-link:active,
.sidebar__fixed .confirm-link.active {
  color: #606060;
}

.confirm-link:after {
  position: absolute;
  top: 12px;
  right: 15px;
  width: 30px;
  height: 30px;
  color: #fff;
  display: flex;
  line-height: 1;
  font-weight: 500;
  overflow: hidden;
  border-radius: 50%;
  align-items: center;
  font-size: 1.125rem;
  justify-content: center;
  background-color: #0ad6bb;
  content: attr(data-cart);
}

@media screen and (max-width: 959px) {
  .confirm-link:after {
    top: 7px;
    right: 20px;
    width: 25px;
    height: 25px;
  }
}

/* Language Switcher */

.language-switcher {
  border-radius: 3px;

  background-color: #fff;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.3);

  color: #707070;
}

.language-switcher:before {
  content: '';

  position: absolute;
  top: -11px;
  right: 18px;

  display: block;
  width: 0;
  height: 0;

  border-style: solid;
  border-width: 0 8px 12px 8px;
  border-color: transparent transparent #fff transparent;
}

/* Searchbar */

.searchbar--secondary {
  border-radius: 9px;
  overflow: hidden;
}

/* Searchbar input */

.searchbar__input--secondary {
  border: none;
}

.searchbar__input--secondary {
  height: 30px;
  background-color: #fff;
}

/* Searchbar icon */
/*.searchbar__icon {}*/
.searchbar__icon--primary {
  color: #606060;
}

.searchbar__icon--secondary {
  width: 40px;
  height: 30px;

  background-color: #0AD6BB;

  color: #fff;
}

.searchbar__icon--third {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: #0AD6BB;
  color: #fff;
}

.searchbar__icon--four {
  width: 68px;
  height: 68px;
  border-radius: 0 5px 5px 0;
  background-color: #0AD6BB;
  color: #fff;
}

@media screen and (max-width: 750px) {
  .searchbar__icon--four {
    width: 12vw;
    height: 12vw;
    border-radius: 0 5px 5px 0;
    background-color: #0AD6BB;
    color: #fff;
  }
}

/* Category Bar */

.category-bar--grey {
  color: #fff;
  background-color: #606060;
}

.category-bar--grey li {
  width: 50%;
  padding: 10px;
}

.category-bar--grey-fixed {
  z-index: 1;
  width: 100vw;
  position: fixed !important;
}

.category-bar--white {
  color: #606060;
  background-color: #F4F4F4;
}

/* Category Link */

.category-bar__link {
  --underline-color: currentColor;
  color: inherit;
}

/* Main */

.main {
  width: 100%;
}

@media screen and (max-width: 959px) {
  .main-transparent {
    opacity: 0.5;
  }

  .swipper-banner-not-login {
    background-color: #fff;
    width: 100%;
    margin-left: 0px !important;
    height: 108px;
    padding-bottom: 0px !important;
    margin-top: 0px !important;
  }

  .swiper-sp {
    background-color: #fff;
    width: 100vw;
    margin-left: -15px;
  }

  .searchbar__icon--third {
    height: 30px;
    width: 30px;
    border-radius: 15px;
  }
}

/* Sidebar Fixed */

.sidebar__fixed {
  position: fixed;
  top: 80px;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: #F4F4F4;
}


@media screen and (max-width: 959px) {
  .sidebar__fixed {
    left: 0;
    right: 0;
    bottom: 0;
    top: unset;
  }
}

/* Sidebar SP */

.sidebar__sp {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid #C4C4C4;
}

/* Sidebar Scrollable */

.sidebar__scrollable {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  padding-right: 17px;
  box-sizing: content-box;
}

.sidebar__scrollable::-webkit-scrollbar {
  display: none;
}

/* Sidebar Button */

.sidebar__button {
  position: absolute;
  left: 0;

  transform: translateX(-100%);

  color: #A5A5A5;
  background-color: #F4F4F4;

  width: 25px;
  height: 33px;

  transition-property: opacity;
}

.sidebar__button:hover,
.sidebar__button:active {
  opacity: .7;
}

.sidebar__button--open {
  top: 37px;

  border-top-left-radius: 9px;
}

.sidebar__button--close {
  top: 70px;

  border-bottom-left-radius: 9px;
}

.sidebar__button.active {
  color: #fff;
  background-color: #707070;

  pointer-events: none;
}

/* Sidebar Title */

.sidebar__title {
  background-color: #E5E5E5;
}

/* General Output List */

.general-output__list {
  border-right: rgba(0, 0, 0, .4) solid 1px;
}

/* General Output Price */

.general-output__price {
  overflow: hidden;
  white-space: nowrap;
}

/* Confirm button */

.confirm-button {
  width: 100%;
  max-width: 146px;
  padding: 0;
  border-radius: 30px;
  color: #fff;
  line-height: 50px;
  background-image: linear-gradient(45deg, #FF9F1D, #F86C06);
}

.confirm-button:hover,
.confirm-button:focus,
.confirm-button:active,
.confirm-button.active {
  background-image: linear-gradient(-45deg, #FF9F1D, #F86C06);
}

.confirm-button.is-disabled {
  pointer-events: none;
  box-shadow: 0px 3px 6px #00000026;
  background: transparent linear-gradient(45deg, #A5A5A5 0%, #C4C4C4 100%);
}

@media screen and (max-width: 959px) {
  .confirm-button {
    font-size: 1rem;
    max-width: 160px;
    margin-right: 4%;
    line-height: 40px;
  }
}

.sidebar-widget {
  border-radius: 10px;

  background-color: #fff;
}

.sidebar__register {
  color: #0AD6BB;
}

.sidebar__register:hover {
  text-decoration: underline;
}

/* Visually Banner */

.visually-banner {
  --swiper-theme-color: #FF5530;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-inactive-color: #FFF;
  box-sizing: border-box;
}

[data-visually-banner-slider] {
  visibility: hidden;
}

[data-visually-banner-slider].swiper-initialized {
  visibility: visible;
  padding-bottom: 30px;
}

.visually-banner-slide {
  width: calc(500 / 1210 * 100%) !important;
}

.visually-banner-slide__cover {
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  transform: scale(.9);
  transition: transform .2s;
  padding-top: calc(200 / 500 * 100%);
}

.swiper-slide-active .visually-banner-slide__cover {
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}

.visually-banner-slider__button-prev,
.visually-banner-slider__button-next {
  position: absolute;
  top: calc(50% - 15px);
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-sizing: border-box;
  background-color: #FF553099;
  --position-X: calc(355/ 1210 * 100%);
}

.visually-banner-slider__button-prev {
  left: var(--position-X);
  transform: translate(-50%, -50%);
}

.visually-banner-slider__button-next {
  right: var(--position-X);
  transform: translate(50%, -50%);
}

.visually-banner-slider__button-prev:after,
.visually-banner-slider__button-next:after {
  color: #FFF;
  line-height: 1;
  font-size: 10px;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  font-family: swiper-icons;
}

.visually-banner-slider__button-prev:after {
  content: 'prev'
}

.visually-banner-slider__button-next:after {
  content: 'next'
}

.visually-banner-slider-pagination {
  bottom: 0 !important;
}

@media screen and (max-width: 959px) {
  [data-visually-banner-slider].swiper-initialized {
    padding-bottom: 0;
  }

  .visually-banner-slide {
    width: calc(500 / 750 * 100%) !important;
  }
}

/* Visually Category */
.visually-category {
  max-width: 1032px;
  margin-bottom: -136px;
}

[data-visually-category-slider] {
  visibility: hidden;
  max-width: 910px;
}

[category-slider] {
  visibility: hidden;
  max-width: 1000px;
}

.visually-category-slide__img {
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #FFF;
  margin: 0 auto;
  overflow: hidden;
}

.visually-category-slide__txt {
  padding: 6px 6px 0;
  font-size: 20px;
  overflow: hidden;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.swiper-slide-active .visually-category-slide__img {
  border: 2px solid #FF5530;
}

[category-slider] .swiper-slide-active .visually-category-slide__img {
  border: none;
}

[category-slider][is-category-page=true] .swiper-slide:not(.active) {
  opacity: 0.5;
  padding-top: 6px;
}

[category-slider][is-category-page=false] .swiper-slide-active .visually-category-slide__txt {
  font-weight: unset;
}

[category-slider] .swiper-slide-active .visually-category-slide__txt {
  color: #707070;
}

.swiper-slide-active .visually-category-slide__txt {
  height: 84px;
  padding-top: 0;
  font-size: 28px;
  color: #FF5530;
  font-weight: 700;
}

[category-slider] .visually-category-slide__txt {
  font-size: 1rem;
  color: #707070;
}

.visually-category-slider__button-prev,
.visually-category-slider__button-next {
  position: absolute;
  top: 52px;
  z-index: 2;
  width: 30px;
  height: 30px;
  visibility: hidden;
  border-radius: 50%;
  box-sizing: border-box;
  background-color: #FF553099;
  transform: translateY(-50%);
  --position-X: 16px;
}

.visually-category-slider__button-prev {
  left: var(--position-X);
}

.visually-category-slider__button-next {
  right: var(--position-X);
}

.visually-category-slider__button-prev:after,
.visually-category-slider__button-next:after {
  color: #FFF;
  line-height: 1;
  font-size: 10px;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  font-family: swiper-icons;
}

.visually-category-slider__button-prev:after {
  content: 'prev'
}

.visually-category-slider__button-next:after {
  content: 'next'
}

[data-visually-category-slider].swiper-initialized,
[category-slider].swiper-initialized,
.visually-category-slider__button-prev[tabindex],
.visually-category-slider__button-next[tabindex]{
  visibility: visible;
}

@media screen and (max-width: 959px) {
  .visually-category {
    max-width: 100%;
    margin-bottom: -21.6vw;
  }
  
  [data-visually-category-slider],
  [category-slider] {
    max-width: 100%;
  }

  .visually-category-slide__img {
    width: 90%;
  }

  .visually-category-slide__txt,
  [category-slider] .swiper-slide-active .visually-category-slide__txt {
    font-size: 3vw;
    padding: 0.9vw 0.9vw 0;
  }

  .swiper-slide-active .visually-category-slide__txt {
    height: 12.6vw;
    font-size: 4.2vw;
  }

  [category-slider] .visually-category-slide__txt,
  [category-slider] .swiper-slide-active .visually-category-slide__txt {
    font-size: 3vw;
  }

  .swiper-slide-active .visually-category-slide__img {
    border-width: 0.53333vw;
  }
}

/* Product Slider */

.products-slider {
  visibility: hidden;
}

.products-slider.swiper-initialized {
  visibility: visible;
}

@media screen and (max-width: 959px) {
  .products-slider {
    background-color: #fff;
  }
}

.products-slider__slide {
  width: calc(100% * 1 / 6.001) !important;

  padding: 0 16px;
  box-sizing: border-box;
}

.coupon-slider__slide {
  box-sizing: border-box;
  height: 220px !important;
}

.products-slider--small .products-slider__slide {
  width: 25% !important;
}

@media screen and (min-width: 1600px) {
  .products-slider--simple .products-slider__slide {
    width: 155px !important;
  }
}

@media screen and (max-width: 1600px) {

  .products-slider__slide,
  .products-slider--small .products-slider__slide {
    width: 155px !important;
  }

  .coupon-slider__slide {
    width: 361px !important;
  }
}

@media screen and (max-width: 959px) {
  .products-slider__slide {
    padding-top: 8px;
    padding-bottom: 8px;

    background-color: #F4F4F4;
  }

  .coupon-slider__slide {
    padding-top: 8px;
    padding-bottom: 8px;

    background-color: unset;
  }

  .products-slider--simple .products-slider__slide,
  .products-slider--expanded .products-slider__slide {
    background-color: transparent;
  }

  .products-slider--grid .swiper-wrapper {
    flex-wrap: wrap;
  }

  .products-slider--grid .swiper-slide {
    width: calc(50% - 4px) !important;
  }

  .products-slider--grid .swiper-slide {
    margin-top: 8px;
  }

  .products-slider--grid .swiper-slide:nth-child(even) {
    margin-right: 0 !important;
  }
}

@media screen and (max-width: 639px) {
  .products-slider__slide {
    padding: 8px;
  }

  .products-slider__slide,
  .products-slider--small .products-slider__slide {
    width: 154px !important;
  }

  .products-slider--expanded .products-slider__slide {
    width: 105px !important;
  }

  .products-slider--grid .swiper-slide {
    width: calc(50% - 4px) !important;
  }

  .coupon-slider__slide {
    width: 75% !important;
    height: 170.5px !important;
  }
}

/* Aqua Slider Buttons */

.aqua__button-prev,
.aqua__button-next {
  z-index: 1;

  width: 30px;
  height: 30px;

  border-radius: 50%;
  box-sizing: border-box;

  background-color: rgba(10, 214, 187, .5);
}

.orange__button-bg-coupon {
  background-color: rgb(255 159 29 / 80%) !important;
  border-radius: 15px;
}

.aqua__button-prev:after,
.aqua__button-next:after {
  font-size: 10px;
  font-family: swiper-icons;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
  color: #fff;
}

.aqua__button-prev:after {
  content: 'prev';
}

.aqua__button-next:after {
  content: 'next';
}

.products-slider__picture {
  object-fit: cover;
}

.footer-txt {
    font-size: 0.8rem;
}

.products-slider__picture-ar {
  height: 0;
  padding-top: 100%;
}

.products-slider__volume {
  color: #7B817D;
  min-height: 50px;
}

.products-slider__price {
  max-width: 100%;
  overflow: hidden;

  font-size: 30px;
  line-height: 1;
}

.products-slider__tax {
  color: #7B817D;
}

.products-slider__to-card {
  border: 1px solid #0AD6BB;
  border-radius: 10px;

  color: #707070;
}

.products-slider__to-card:hover,
.products-slider__to-card:focus,
.products-slider__to-card:active,
.products-slider__to-card.active {
  background-color: #0AD6BB;
  color: #fff;
}

.products-slider__to-card:disabled {
  color: #C4C4C4;
  pointer-events: none;
  border-color: #C4C4C4;
}

@media screen and (max-width: 959px) {
  .products-slider__to-card {
    background-color: #fff;
  }
}

.products-slider__to-card-icon {
  color: #0AD6BB;
}

.products-slider__to-card:hover .products-slider__to-card-icon,
.products-slider__to-card:focus .products-slider__to-card-icon,
.products-slider__to-card:active .products-slider__to-card-icon,
.products-slider__to-card.active .products-slider__to-card-icon {
  color: #fff;
}

.products-slider__to-card:disabled .products-slider__to-card-icon {
  color: #C4C4C4;
}

.products-slider__controls {
  border-radius: 10px;
  overflow: hidden;
}

.products-slider__control-value {
  padding: 0 10px;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;

  line-height: 38px;
}

@media screen and (max-width: 959px) {
  .products-slider__control-value {
    background-color: #fff;
  }
}

.products-slider__control {
  width: 40px;
  height: 40px;

  background-color: #DDDDDD;

  font-size: 20px;
  color: #707070;
}

.products-slide__product-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media screen and (max-width: 959px) {
  .products-slide__product-data {
    display: flex;
    justify-content: space-between;
  }

  .products-slide__product-col {
    align-items: flex-start;
  }
}

/* Product Label New */

.product-label-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  pointer-events: none;
}

.product-label-new__quantity {
  width: 25px;
  height: 25px;

  border-radius: 50%;

  overflow: hidden;
  background-color: #E7380D;

  color: #fff;
}

.product-label-new__feature {
  right: -8px;
  bottom: 8px;

  padding: 2px 16px 2px 10px;
  border-top-left-radius: 8px;

  background-color: #F24D5A;

  color: #fff;
}

/* Products Slider To Hide */

@media screen and (max-width: 959px) {
  .products-slide-to-hide-trigger.active .products-slider__picture-ar {
    border: 2px solid #0AD6BB;
  }

  .swiper .products-slide-to-hide-target {
    display: none;
  }
}

/* Modal */

.modal {
  z-index: 10;
  background-color: #fff;
}

.modal__top {
  height: 60px;

  border-bottom: 8px solid #0AD6BB;
}

.modal__body {
  background-color: #F7F7F7;
}

.modal__title {
  font-size: 1.375rem;
}

#modal-banners-slider {
  --swiper-theme-color: #0AD6BB;

  padding-bottom: 24px;
  visibility: hidden;
}

#modal-banners-slider.swiper-initialized {
  visibility: visible;
}

.modal-banners-slider-pagination {
  bottom: 0 !important;
}

/* Banners Slider */

.banners-slide {
  height: 90px !important;
}

@media screen and (max-width: 959px) {
  .banners-slide {
    height: 65px !important;
  }
}

/* Section Border */

.section-border {
  border-top: 4px solid #F7F7F7;
}

.section-border-bottom {
  border-bottom: 4px solid #F7F7F7;
}

.section-border:not(.hidden) {
  border-top: none;
}

.section-border:not(.hidden)~.section-border:not(.hidden) {
  border-top: 4px solid #F7F7F7;
}

/* Pickup Banner */

.pickup-banner {
  width: 100%;
  max-width: 393px;
}

@media screen and (max-width: 959px) {
  .pickup-banner {
    padding-top: 50px;
    max-width: 100%;
  }
}

/* Pickup Banner Aspect Ration */

.pickup-banner__ar {
  height: 0;
  padding-top: calc(415 / 393 * 100%);
}

@media screen and (max-width: 959px) {
  .pickup-banner__ar {
    /* padding-top: calc(917 / 688 * 100%); */
    padding-top: calc(600 / 688 * 100%);
  }

  .pickup-banner__ar-wrap {
    max-width: 688px;
    position: relative;
    margin: 0 auto;
  }
}

.pickup-banner__sun {
  width: 100%;
  height: calc(277 / 415 * 100%);

  background-image: linear-gradient(#FF9F1D, #FFD090);
}

@media screen and (max-width: 959px) {
  .pickup-banner__sun {
    top: -50px;
    left: -15px;

    height: auto;

    background-image: none;
  }
}

@media screen and (max-width: 639px) {
  .pickup-banner__sun {
    width: 100vw;
    max-width: calc(100vw - 15px);
  }
}

.pickup-banner__sun-logo {
  margin-top: calc(21 / 415 * 100%);
  width: calc(128 / 393 * 100%);
}

.pickup-banner__sun-text {
  color: #fff;
  font-size: calc(14 / 425 * calc(425 / 1456 * 100vw));
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.32);
}

.pickup-banner__bbq {
  width: calc(227 / 393 * 100%);
  height: calc(276 / 415 * 100%);
}

@media screen and (max-width: 959px) {
  .pickup-banner__bbq {
    width: 100%;
    height: 100%;
  }
}

.pickup-banner__bbq-picture {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}

@media screen and (max-width: 959px) {
  .pickup-banner__bbq-picture {
    border-radius: 6px;
    width: 65%;
  }
}

.pickup-banner__bbq-text {
  font-size: 26px;
  color: #fff;
}

.pickup-banner__bbq-button {
  border-radius: 30px;

  background-color: rgba(255, 255, 255, .8);

  color: #000;
}

.pickup-banner__sun-name {
  font-size: 50px;
  color: #D5D5D5;
}

/* Eatime Banner */

.eatime-banner {
  width: 100%;
  max-width: 361px;
}

@media screen and (max-width: 959px) {
  .eatime-banner {
    max-width: 100%;
  }
}

.eatime-banner__ar {
  width: 100%;
  height: 0;

  padding-top: calc(205 / 361 * 100%);
}

@media screen and (max-width: 959px) {
  .eatime-banner__ar-wrap {
    max-width: 722px;
  }
}

/* Gift */

.gift-section:after {
  content: '';

  display: block;
  width: 100%;
  height: 150px;

  background-color: #D5D5D5;
}

@media screen and (max-width: 959px) {
  .gift-section:after {
    display: none;
  }
}

.gift-section__picture {
  width: 100%;
  max-width: 458px;

  margin-bottom: -130px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

@media screen and (max-width: 959px) {
  .gift-section__picture {
    margin-bottom: 0;
    box-shadow: none;
  }
}

.gift-section__picture-sizer {
  height: 0;
  padding-top: calc(258 / 458 * 100%);
}

@media screen and (max-width: 959px) {
  .gift-section__title {
    width: 100%;

    text-align: center;
    font-size: 1.125rem;
    color: #918D85;
  }
}

#product-filter-manager-slider {
  --swiper-theme-color: #0AD6BB;

  visibility: hidden;
}

#product-filter-manager-slider.swiper-initialized {
  visibility: visible;
}

@media screen and (max-width: 959px) {
  #product-filter-manager-slider {
    padding-bottom: 24px !important;
  }
}

#product-filter-manager-slider [data-filter-tag] {
  cursor: pointer;
}

.product-filter-manager-slide__picture {
  max-width: 370px;
}

@media screen and (max-width: 959px) {
  .product-filter-manager-slide__picture {
    max-width: 75%;
  }
}

.product-filter-manager-slide__sizer {
  height: 0;
  padding-top: calc(204 / 370 * 100%);
}

@media screen and (max-width: 959px) {
  .product-filter-manager-slider__pagination {
    bottom: 0 !important;
  }
}

/* Banner Single */

.banner-single {
  background-color: #F7F7F7;
}

/* Anchor */

[data-anchor] {
  cursor: pointer !important;
}

/* Footer */

.footer-red {
  color: #fff;
  background-color: #E7380D;
}

.footer-red .link {
  --underline-color: currentColor;
}

.footer-white {
  color: #E7380D;
  background-color: #fff;
}

.footer-white .link {
  --underline-color: currentColor;
}

.footer-white__wrap {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 959px) {
  .footer-link {
    font-size: 0.7rem;
  }

  .footer-white__wrap {
    justify-content: center;
  }
}

@media screen and (max-width: 959px) {
  .products-slide-to-hide-trigger::after {
    content: attr(data-num);
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #E7380D;
    color: #fff;
    line-height: 1;
    font-size: 1.125rem;
    font-weight: 500;
  }
}

.after-hide::after {
  content: none !important;
}

.before-hide::before {
  content: none !important;
}

@media screen and (min-width: 960px) {
  .after-pc-hide::after {
    content: none !important;
  }

  .before-pc-hide::before {
    content: none !important;
  }
}

/* Location delivery button */

.location-deliver-button {
  width: 100%;
  max-width: 179px;
  padding: 0;
  border-radius: 30px;
  color: #fff;
  line-height: 40px;
  background-image: linear-gradient(45deg, #FF9F1D, #F86C06);
}

.location-deliver-button:hover,
.location-deliver-button:focus,
.location-deliver-button:active,
.location-deliver-button.active {
  background-image: linear-gradient(-45deg, #FF9F1D, #F86C06);
}

@media screen and (max-width: 1599px) {
  .location-deliver-button {
    line-height: 40px;
  }
}

@media screen and (max-width: 1199px) {
  .location-deliver-button {
    line-height: 35px;
  }
}

.pagetop {
  display: flex;
  position: fixed;
  right: 265px;
  bottom: 22px;
  z-index: 10;
  max-width: 50px;
}

/* coupon */
@media screen and (max-width: 750px) {
  .check-coupon {
    position: relative;
  }

  .c-box-coupon-discount-point {
    margin-top: -30px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.c-box-coupon-discount-sidebar {
  background-color: #f24d5a;
  color: #fff !important;
  border-radius: 30px;
  padding: 7px;
  display: flex;
  justify-content: center !important;
  font-size: 0.725rem !important;
  margin-bottom: 10px;
}

.c-coupon-txt1 {
  font-size: 10px !important;
}

.front_sidebar_delivery-date-time-area {
  border-top: 4px solid #00BFBC;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  cursor: pointer;
}

@media screen and (min-width: 1024px) and (max-width:1366px) {
  .sidebar-thankyou {
    display: block;
  }
}

.c-box-coupon-discount {
  font-size: 10.549999px;
  color: #f79a1d;
  margin-top: 6px;
  display: flex;
  justify-content: flex-end;
}

.c-box-coupon-discount-item {
  background-color: #f24d5a;
  color: #fff !important;
  border-radius: 30px;
  padding: 15px;
  width: 320px;
  display: flex;
  justify-content: center;
  font-size: 1rem !important;
  margin-bottom: 10px;
}

@media screen and (min-width: 1600px) {
  .c-box-coupon-discount {
    font-size: 11.529999px;
  }
}

@media screen and (max-width: 750px) {
  .c-box-coupon-discount-item {
    width: 75vw;
    margin-left: 25px;
  }

  .c-box-coupon-discount {
    font-size: 0.8rem;
  }

  .check-coupon .c-box-coupon-discount {
    font-size: 0.7rem;
  }
}

/* Css Dropdown menu*/
.searchbar-category-menu {
  display: inline-block;
  background: #FFF;
  border-right: none;
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 5px 0 0 5px;
  border: 1px solid #e5e5e5;
}

.searchbar-category-header {
  color: #A5A5A5;
  cursor: pointer;
  width: 71px;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.searchbar-category-header-item {
  position: absolute;
  top: -20px;
  z-index: 1;
  padding: 20px;
  background: white;
  left: calc(20% - 61px);
  right: calc(20% - 61px);
}

.searchbar__br-right {
  border-radius: 0 9px 9px 0;
  overflow: hidden;
}

.searchbar__br-left {
  border-radius: 9px 0 0 9px;
  overflow: hidden;
}

.searchbar--wrap {
  position: relative;
  width: 100%;
}

a.tag-a-item {
  white-space: normal;
  letter-spacing: .02em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: black;
}

.category-item {
  width: 50%;
  position: relative;
}

.category-div-item {
  padding-left: 12px;
  display: flex;
  flex-wrap: wrap;
  overflow: auto;
  max-height: 87vh;
}

.rotate-180 {
  transform: rotate(180deg);
}

a.tag-a-item.is-selected:before {
  content: "";
  display: block;
  position: absolute;
  background: url(/img/common/icon_check_black-75364873b318be054119f96b04c5c432.svg) 0 0 no-repeat;
  background-size: 100% auto;
  width: 10px;
  height: 10px;
  left: -12px;
  top: 6px;
}

.background-searchbar-hidden {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.6);
}

.svg-symbol-x {
  position: absolute;
  top: 25px;
  right: 2vw;
  cursor: pointer;
}

/* Css Dropdown category menu*/
.categorybar-category-menu {
  display: inline-block;
}

.categorybar-category-header {
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  align-items: center;
}

.categorybar-category-header-item {
  position: absolute;
  background: white;
  padding: 8px 2vw;
  z-index: 11;
  width: 100%;
  left: 0;
  overflow: auto;
  max-height: 87vh;
}

.category-item-scroll {
  overflow: scroll;
  height: calc(100vh - 100px);
}


@media screen and (min-width: 1550px) {
  .categorybar-category-header-item {
    max-width: 1280px;
    left: 50%;
    transform: translate(-50%);
  }
}

a.tag-a-item--categorybar {
  white-space: normal;
  letter-spacing: .02em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: black;
}

.category-item--categorybar {
  width: 33.33%;
  position: relative;
}

.category-div-item--categorybar {
  display: flex;
  flex-wrap: wrap;
}

.background-categorybar-hidden {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 37px;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.6);
}

.svg-symbol-x-category {
  position: absolute;
  top: 10px;
  right: 0;
  cursor: pointer;
}

.rotate-180-category {
  transform: rotate(180deg);
}

@media screen and (max-width: 959px) {
  .category-item--categorybar {
    width: 100%;
    padding-left: 15px;
    padding-top: 5px;
  }

  .categorybar-category-header-item {
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    z-index: 1;
    height: calc(100vh - 100px);
    overflow: scroll;
    width: 100vw;
    max-height: unset;
  }

  .searchbar__input--secondary {
    border-left: 1px solid;
  }

  .background-categorybar-hidden {
    top: 40px;
  }

  .searchbar-category-header {
    background: white;
    padding-left: 5px;
    width: 80px;
    padding-right: 2px;
  }

  .searchbar-category-menu {
    border: none;
    padding-left: 0;
    padding-right: 0;
  }

  .category-item {
    width: 100%;
  }

  .svg-symbol-x {
    top: 105px;
    right: 5.5vw;
  }

  .searchbar-category-header-item {
    top: -60px;
    left: 0;
    width: 100vw;
    z-index: 100;
    overflow: scroll;
    padding: 0;
  }

  .background-searchbar-hidden {
    top: -60px;
    z-index: 100;
  }

  .background-search-header {
    top: 0;
    left: 0;
    position: absolute;
    width: 100vw;
    height: 100px;
    z-index: -1;
    background-color: #606060;
  }

  .svg-symbol-x-category {
    right: calc(15px - 2vw);
  }

  .category-div-item {
    overflow: unset;
    max-height: unset;
  }

  input.searchbar__input--secondary.input {
    font-size: 0.75rem !important;
  }

  .hide-header-sp {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .swiper-border {
    width: 100% !important;
    height: 70px !important;
    margin-top: 15px !important;
    margin-left: 3px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .svg-symbol-x {
    right: 2.6vw;
  }

  .swiper-border {
    width: 100% !important;
    height: 70px !important;
    margin-top: 15px !important;
    margin-left: 7px;
  }


  .categorybar-category-header-item {
    top: 32px;
  }

  .svg-symbol-x-category {
    right: calc(30px - 2vw);
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .swiper-sp {
    background-color: #FFF;
    width: 100vw;
    max-height: 115px;
    margin-left: -30px;
  }
}

.prevent-scroll {
  overflow: hidden;
  height: 100vh;
}

/* coupon */
.c-container-coupon-list-top {
  display: flex;
  flex-direction: row;
  box-shadow: 0 0 12px #00000040;
  border-radius: 18px;
  background: #FFF;
  overflow: hidden;
  min-height: 120px;
}

@media screen and (max-width: 750px) {
  .c-container-coupon-list-top {
    min-height: 100px;
    height: 100px;
  }
}

.c-coupon-list-top {
  min-width: 170px;
}

@media screen and (max-width: 750px) {
  .c-coupon-list-top {
    min-width: 144px;
  }
}

.order-eat-txt {
  font-size: 12px;
  color: #707070;
}

.c-coupon-list-top-txt {
  color: #FFF;
  line-height: 1;
  font-size: 0.7rem;
  text-align: center;
}

.c-coupon-list-top-img {
  opacity: 0.6;
  width: 100px !important;
}

.c-coupon-list-top-container-description {
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

@media screen and (max-width: 750px) {
  .c-coupon-list-top-description-txt {
    font-size: 0.8rem;
  }
}

.c-coupon-desctiption-txt-top {
  font-size: 14px !important;
}

.c-coupon-list-top-title-txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  overflow-wrap: break-word;
}

.c-coupon-list-top-title-txt--unset {
  -webkit-line-clamp: unset;
  overflow: unset;
}

.c-coupon-title-txt-top {
  font-size: 12px !important;
  color: #707070;
}

@media screen and (max-width: 750px) {
  .c-coupon-title-txt-top {
    font-size: 10px !important;
  }
}

.coupon-slider-list-top {
  height: 120px !important;
  cursor: pointer;
}

@media screen and (max-width: 959px) {
  .coupon-slider-list-top {
    padding: 0 10px;
  }
}

@media screen and (max-width: 750px) {
  .coupon-slider-list-top {
    width: 95% !important;
    height: 100px !important;
    padding: 0 10px;
  }
}

.c-box-coupon-list-top-top {
  top: 30%;
  max-height: 140px;
}

.product-slider-list-coupon-top {
  height: 180px;
  visibility: hidden;
}

.product-slider-list-coupon-top.swiper-initialized {
  visibility: visible;
}

.visually-list-coupon-top-slider-pagination {
  top: 78%;
}

@media screen and (max-width: 750px) {
  .visually-list-coupon-top-slider-pagination {
    top: 65%;
  }
}

.visually-list-coupon-top-slider-pagination .swiper-pagination-bullet-active {
  background-color: #ff5530;
}

.absolute-top-83 {
  top: 83%;
}

.c-coupon-list-top-calendar {
  font-size: 12px;
  color: #707070;
  font-weight: 700;
}

@media screen and (max-width: 750px) {
  .c-coupon-list-top-calendar {
    font-size: 10px;
  }
}

@media screen and (max-width: 280px) {
  .c-coupon-list-top {
    min-width: 70px;
  }

  .order-eat-txt {
    font-size: 0.7rem;
  }

  .c-coupon-list-top-description-txt {
    font-size: 0.7rem;
  }

  .c-coupon-list-top-title-txt {
    font-size: 0.7rem;
  }
}

.coupon-slider-items {
  position: absolute;
  top: 76%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.center-items {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 750px) {
  .coupon-slider-items {
    top: 65%;
  }
}

.c-online-slider__item-qrcode {
  font-size: 4.333333vw;
  border: 1px solid #ddd;
  border-radius: 25px;
  background: #fff;
  padding: 15px;
}

@media screen and (min-width: 960px) {

  .swiper-pc {
    height: 210px !important;
  }

  .swiper-border {
    width: 126px !important;
    height: 70px !important;
    margin-top: 15px !important;
  }

  .swipper-banner {
    height: 108px !important;
    background-color: #fff;
    width: 90%;
  }
}

@media screen and (max-width: 959px) {
  .swipper-banner {
    background-color: #fff;
    width: 100vw;
    margin-left: 0px !important;
    height: 108px;
    padding-bottom: 0px !important;
    margin-top: 0px !important;
  }
}

.c-point-history-link__text {
  color: #2b377d;
  font-weight: 700;
}

.c-point-history-point__text-point {
  font-size: 1.3rem;
  font-weight: 600;
}

.c-point-history-point__text-unit {
  font-size: 1.3rem;
  color: #2b377d;
  font-weight: 600;
}

.c-point-history__text-date {
  font-size: 0.875rem;
  font-weight: 700;
}

.c-point-history__text-large {
  font-size: 1.125rem;
}

.c-point-history__text-small {
  font-size: 0.875rem;
}

.c-point-history__text-xsmall {
  font-size: 0.75rem;
}

.c-point-history__text-total {
  margin-left: 4vw;
}

.c-point-history-select {
  border: solid 1px #a5a5a5;
  padding: 5px 50px 5px 10px;
  background: url(/img/common/arrow_gray_bottom2-30311fe7723c255447ce0f1106d26635.svg) 90% 50% no-repeat;
  font-weight: 600;
}

.c-point-history-acquisition-date {
  border: solid 1px #a5a5a5;
  padding: 2px 20px;
  font-weight: 600;
}

.c-point-history--text-color-gray,
.point-history-arrow {
  color: #707070;
}

.c-point-history--text-color-red {
  color: red;
}

.c-point-history--text-color-blue {
  color: #2b377d;
}

.c-point-history-header__background-gray {
  background-color: #EDEDED;
}

.c-point-history-box-item__background {
  background: #effbfb;
  padding: 5px 15px 25px;
}

.c-point-history-box-coupon__background {
  background: #FFFFFF;
  padding: 10px;
}

.c-point-history-img {
  width: 90px;
}

.c-money-history-img {
  width: 110px;
}

.c-point-history-img__width {
  width: 60px;
}

.c-money-history-img__width {
  width: 70px;
}

.c-point-history-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-direction: row;

  margin-top: 40px;
  margin-bottom: 60px;
}

.c-point-history-box:after {
  display: block;
  width: 32%;
  content: "";
}

.c-point-history-box-content {
  margin-top: 50px;
  width: 70%;
}

.point-history-arrow {
  width: 20px;
  height: 20px;
}

.c-point-history__text-store {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.c-point-history-button-search {
  border-radius: 25px;
  border: #a5a5a5 solid 1px;
  padding: 3px 20px;
  font-weight: 600;
  cursor: pointer;
}

.c-point-history-item {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;

  align-items: center;

  width: 100%;
}

@media screen and (min-width: 640px) {
  .c-point-history-item {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 959px) {
  .c-point-history-box-content {
    margin-top: 20px;
    width: 100%;
  }

  .c-point-history-header__display {
    display: flex;
    justify-content: space-between;
  }

  .c-point-history__text-total {
    margin-left: 8vw;
  }

  .c-point-history__text-large {
    font-size: 3.6vw
  }

  .c-point-history__text-small {
    font-size: 3.2vw;
  }

  .c-point-history__text-xsmall {
    font-size: 2.8vw;
  }

  .c-point-history-point__text-point {
    font-size: 4vw;
  }

  .c-point-history-select {
    padding: 1vw 6vw 1vw 2vw;
  }

  .c-point-history-acquisition-date {
    padding: 1vw 4vw;
  }

  .c-point-history-button-search {
    padding: 1vw 4vw;
  }

  .point-history-arrow {
    width: 4vw;
    height: 4vw;
  }

  .c-point-history__text-date {
    font-size: 3.2vw;
  }
}

@media screen and (max-width: 750px) {
  .c-point-history__text-total {
    margin-left: 4vw;
  }

  .c-point-history-box {
    margin-top: 5.33333vw;
    margin-bottom: 7.33333vw;
    padding: 0 4%;
  }

  .c-point-history-point__text-point {
    font-size: 5.5vw;
  }

  .c-point-history-select {
    padding: 2vw 8vw 2vw 3vw;
  }

  .c-point-history-acquisition-date {
    padding: 1vw 5vw;
  }

  .c-point-history-button-search {
    padding: 2vw 5vw;
  }
}


@media screen and (min-width: 960px) {
  .c-box-modal__content.front__point-history-wrap {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    right: unset;
    padding: 0;
  }

  .c-point-history-header__border {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
}

.c-btn-back__white {
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.c-btn-edit--cart {
  width: 100px;
  height: 35px;
  border: 1px solid #0AD6BB;
  border-radius: 22px;
  background: #FFFFFF;
}

.c-btn-edit--cart:hover {
  color: white;
  background-color: #0AD6BB;
}

/* ---------------------------------------------
*   c-box-container
--------------------------------------------- */
.c-index-container {
  margin-right: auto;
  margin-left: auto;
  max-width: 1260px;
  width: 96.01648%;
}

@media screen and (min-width: 1600px) {
  .c-index-container {
    width: 100%;
  }
}

@media screen and (max-width: 959px) {
  .c-index-container {
    padding-right: 4%;
    padding-left: 4%;
    width: 100%;
  }
}

.c-index-map {
  background: #C4C4C4;
  border-radius: 42px;
}

.item-restaurant__icon {
  width: 20px;
  margin-right: 10px;
}

.item-restaurant__button {
  padding: 0;
  width: 120px;
  height: 32px;
  color: #fff;
  display: flex;
  line-height: 32px;
  align-items: center;
  border-radius: 16px;
  justify-content: center;
  background-image: linear-gradient(45deg, #00BFBC, #09D3B7);
}

.item-restaurant__button.bg-orange {
  background-image: linear-gradient(45deg, #FF9F1D, #F86C06); 
}

.item-restaurant__button:hover {
  background-image: linear-gradient(-45deg, #00BFBC, #09D3B7);
}

.item-restaurant__button.bg-orange:hover {
  background-image: linear-gradient(-45deg, #FF9F1D, #F86C06); 
}

.item-restaurant {
  width: 49%;
  max-height: 185px;
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 0 12px #00000040;
}

.cart-item-order__title {
  white-space: normal;
  letter-spacing: .02em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.item-restaurant.js-modal-trigger:hover {
  opacity: 0.9;
}

.item-restaurant__img {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 100%;
}

.item-restaurant__img img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.container-restaurant{
  justify-content: space-around;
}

.item-method-delivery {
  justify-content: flex-end;
}

.container-restaurant:after {
  display: block;
  width: 49%;
  content: "";
}

.map-restaurant {
  width: 100%;
  position: relative;
  background: #C4C4C4;
}

#mapIndex1 .map-restaurant {
  padding-top: 20px;
  border-radius: 25px;
  z-index: 999;
  margin-top: -300px;
  padding-bottom: 30px;
}

.map-index-container {
  z-index: 1;
  height: 100vh;
}

.map-index-content {
  position: relative;
}

.item-map__icon-order {
  border-radius: 50%;
  background: #FFFFFF;
  padding: 8px;
  width: 50px;
}

.item-map__icon-order-2 {
  border-radius: 50%;
  background: #FFFFFF;
  padding: 10px;
  width: 70px;
  height: 70px;
}

.div-map__icon {
  width: 240px;
  height: 74px;
  border-radius: 36px;
  border: 2px solid #FF5530;
  background-color: #FF5530;
  background-image: url(/img/common/arrow_gray_right2-f9d237b7b86e3bab94a1df23f1fd0c1a.svg);
  background-repeat: no-repeat;
  background-size: 160% 30%;
  background-position: 20px;
}

.item-map__icon-text {
  margin-left: 10px;
  margin-right: 40px;
  color: #fff;
  font-size: 16px;
  white-space: normal;
  letter-spacing: .02em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.item-restaurant__text-filter {
  color: #707070;
  width: 130px;
  height: 100%;
  border-radius: 6vw;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.item-restaurant__text-filter:hover {
  opacity: 0.6;
}

.item-restaurant__button-radio:checked+.item-restaurant__text-filter {
  color: #FF5530;
  background-color: #efdeda;
  border: 2px solid #FF5530;
}

.item-restaurant__box-button {
  background-color: #EDEDED;
  border-radius: 6vw;
  height: 100%;
}

.coupon-index-content {
  background: transparent linear-gradient(180deg, #FF5530 0%, #FF9F1D 50%, #FFFFFF00 100%) 0% 0% no-repeat padding-box;
}

.coupon-index-content .coupon-item:after {
  width: 30%;
  display: block;
  content: '';
}

.coupon-logo-title {
  display: flex;
  align-items: center;
}

.c-coupon-top-img {
  height: 65px;
}

.item-restaurant__header-icon {
  height: 30px;
}

.item-restaurant__header-icon img {
  max-width: 30px;
}

.item-restaurant__header-name {
  white-space: normal;
  letter-spacing: .02em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.item-restaurant__header-description {
  white-space: normal;
  letter-spacing: .02em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.item-restaurant__button-check-menu {
  background-image: linear-gradient(-45deg, #FF9F1D, #F86C06);
  border-radius: 30px;
  line-height: 50px;
  width: 40%;
  color: #FFFFFF;
}

.item-restaurant__button-check-menu {
  border-radius: 35px;
  width: 190px;
  line-height: 55px;
}

.order-text__xlarge {
  font-size: 2rem;
}

.order-text__large {
  font-size: 1.5rem;
}

.order-text__medium {
  font-size: 1.375rem;
}

.order-text__default {
  font-size: 1rem;
}

@media screen and (max-width: 959px) {
  .item-restaurant__button-check-menu {
    width: 49.7vw;
    line-height: 13vw;
    border-radius: 6.5vw;
    font-size: 4.3vw;
  }

  #mapIndex1 .map-restaurant {
    border-radius: 25px 25px 0 0;
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 750px) {
  .map-index-container {
    padding: 0 !important;
  }

  .item-restaurant p,
  button {
    font-size: 2.66667vw;
  }

  .item-restaurant__header-icon {
    height: 15px;
  }

  .item-restaurant__header-icon img {
    max-width: 15px;
  }

  .item-restaurant h2 {
    font-size: 3.5vw;
  }

  .item-restaurant .text-small {
    font-size: 2.2vw;
  }

  .coupon-index-content {
      padding-left: 4%;
  }
  .container-restaurant,
  .item-method-delivery .item-restaurant__box-button-container {
    padding-right: 4%;
    padding-left: 4%;
  }
  .item-restaurant__button {
    width: 29vw;
    height: 8vw;
    border-radius: 4vw;
  }

  .item-restaurant .order-text__xlarge {
    font-size: 5.33333vw;
  }

  .item-restaurant .order-text__large {
    font-size: 3.46667vw;
  }

  .item-restaurant .order-text__medium {
    font-size: 3.6vw;
  }

  .item-restaurant .order-text__default {
    font-size: 2.93333vw;
  }
}

@media screen and (max-width: 959px) {
  .c-index-map {
    border-radius: 25px;
  }

  .item-restaurant {
    width: 100%;
  }

  .item-restaurant__box-button {
    width: 100%;
    height: 10vw;
  }

  .item-restaurant__box-button label {
    width: 25%;
  }

  .item-restaurant__box-button .item-restaurant__text-filter {
    width: 100%;
    font-size: 2.6vw;
  }
}

.menu-list-top {
  padding-top: 165px;
  padding-bottom: 35px;
  background: linear-gradient(to bottom, #C4C4C4 0, #FFF 250px) 0% 0% no-repeat padding-box;
}

@media screen and (max-width: 959px) {
  .menu-list-top {
    padding: 25.5vw 2vw 8vw;
    background: linear-gradient(to bottom, #C4C4C4 0, #FFF 35.6vw) 0% 0% no-repeat padding-box;
  }
}

.menu-list__section {
  display: none;
  margin: 0 auto;
  max-width: 1260px;
}

/* ---------------------------------------------
*   Food category
--------------------------------------------- */

.food-category__sub {
  display: flex;
  row-gap: 10px;
  font-size: 12px;
  flex-wrap: wrap;
  margin: 0 15px 35px;
}

.food-category__sub-item {
  cursor: pointer;
  color: #A5A5A5;
  font-size: 18px;
  font-weight: bold;
  margin-right: 12px;
  border-radius: 34px;
  background-color: #FFF;
  border: 2px solid #A5A5A5;
  padding: 10px 25px 9px 25px;
  transition: .3s ease-in-out;
}

.food-category__sub-item:hover,
.food-category__sub-item.is-current {
  color: #FF5530;
  border-color: #FF5530;
}

.food-menu__slider.swiper-wrapper {
  display: flex;
}

.food-menu__item.swiper-slide,
.food-menu__item.item {
  margin: 16px;
  height: auto;
  cursor: pointer;
  overflow: hidden;
  max-width: 220px;
  position: relative;
  border-radius: 20px;
  background-color: #FFF;
  box-shadow: 0 4px 12px #C4C4C4;
}

.food-menu__item-img {
  height: 125px;
  width: 100%;
  object-fit: cover;
}

.food-menu__black-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  background-color: rgba(0, 0, 0, .6);
  pointer-events: none;
}

.food-menu__black-bg p {
  position: relative;
  top: 56px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

.food-menu__item-content {
  padding: 12px;
}

.food-menu__item-method {
  height: 20px;
  margin-left: 1px;
  object-fit: cover;
}

.food-menu__item-price {
  display: flex;
  font-size: 30px;
  margin-top: 12px;
  font-weight: bold;
  text-align: right;
  flex-direction: column;
}

.food-menu__item-price > span {
  font-size: 14px;
  color: #606060;
  font-weight: 500;
  padding-top: 2px;
}

.food-menu__item-coupon {
  background-color: #2A367D;
  color: white;
  width: max-content;
  height: 18px;
  font-size: 10px;
  font-weight: bold;
  padding: 0 12px;
  border-radius: 12px;
  display: flex;
  margin: 2px 0 2px 0;
}

.food-menu__item-coupon:first-child {
  padding-top: 1px;
}

.food-menu__item-name {
  font-size: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.food-menu__item-coupon:last-child {
  padding-top: 1px;
}

.food-menu__item-group-coupon {
  display: flex;
  column-gap: 4px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.food-menu__item-point {
  width: 65%;
  height: auto;
}

.red__button-prev,
.red__button-next {
  position: absolute;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  box-sizing: border-box;
  background-color: #FF553099;
}

.red__button-prev:after,
.red__button-next:after {
  color: #FFF;
  line-height: 1;
  font-size: 10px;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  font-family: swiper-icons;
}

.red__button-prev:after {
  content: 'prev';
}

.red__button-next:after {
  content: 'next';
}

@media screen and (max-width: 959px) {
  .food-category__sub {
    margin: 0 2vw 8vw;
  }
  
  .food-category__sub-item {
    font-size: 2.4vw;
    margin-right: 2vw;
    border-width: 0.53333vw;
  }

  .food-menu__slider.swiper-wrapper {
    width: auto;
    flex-wrap: wrap;
  }

  [data-menu-search-slider]{
    width: unset;
  }

  div[data-menu-search-slider] .food-menu__slider.swiper-wrapper {
    flex-wrap: unset;
  }
  
  .food-menu__item.swiper-slide,
  .food-menu__item.item {
    margin: 2vw;
    max-width: unset;
    width: calc(50% - 4vw);
  }
  
  .food-menu__item-img {
    height: 26vw;
  }

  .food-menu__item-method {
    height: 5vw;
  }

  .food-menu__item-price {
    font-size: 6vw;
    margin-top: 2vw;
  }
  
  .food-menu__item-price > span {
    font-size: 2.5vw;
    padding-top: 0.5vw;
  }

  .food-menu__item-content {
    padding: 2.4vw;
  }
  
  .food-menu__item-name {
    font-size: 3vw;
  }
}

.searchbar--bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.searchbar--wrap {
  width: 100%;
  height: 40px;
  display: flex;
  overflow: hidden;
  background: #FFF;
  align-items: center;
  border-radius: 20px;
}

.searchbar--wrap.view-suggest {
  border-radius: 20px 20px 0 0;
}

.searchbar--view {
  width: 100%;
  padding: 20px;
  display: none;
  background: #FFF;
  box-sizing: border-box;
  border-radius: 0 0 20px 20px;
}

.searchbar--wrap.view-suggest + .searchbar--view {
  padding: 0;
  overflow: hidden;
  min-height: 40px;
}

.searchbar__suggest-list {
  height: 200px;
  overflow-y: auto;
}

.searchbar__suggest-list::-webkit-scrollbar {
  width: 8px;
}

.searchbar__suggest-list::-webkit-scrollbar-thumb {
  background-color: #0AD6BB;
  border-radius: 4px;
}

.searchbar--wrap.view-suggest + .searchbar--view,
.searchbar--wrap.view-suggest + .searchbar--view .searchbar__suggest-list {
  display: block;
}

.searchbar__suggest-item {
  cursor: pointer;
  padding: 10px;
  color: #2E2E2E;
}

li.searchbar__suggest-item:hover {
  background: #EDEDED;
}

.map-button-close {
  z-index: 999;
  top: 20px;
  right: 30px;

  position: fixed;
}

.map-button-close:hover {
  opacity: 0.8;
}

.map-button-close img {
  width: 40px;
  height: 40px;
}

@media screen and (max-width: 959px) {
  .searchbar--wrap.view-suggest, .searchbar--wrap.view-category {
    border-radius: 20px 15px 0 0;
  }
  .searchbar--wrap {
    height: 30px;
  }
  .item-restaurant__box-button-container {
    width: 100%;
  }
  .map-button-close {
    top: 10px;
    right: 10px;
  }
}

.map-button-open {
  background-image: linear-gradient(45deg, #FF9F1D, #F86C06);
  border-radius: 50%;
  padding: 10px 12px;

  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.item-method-delivery {
  height: 45px;
}
