/* Breakpoint variables */
/* Color variables */
/* Font variables */
/* ==========================================
   INTERACTION ANIMATIONS
   ========================================== */
[data-interaction=fade-in] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease-in-out 0.3s, transform 0.8s ease-in-out 0.3s;
}
[data-interaction=fade-in][data-visibility=visible] {
  opacity: 1;
  transform: translateY(0);
}

@keyframes merchant-list-arrow-bounce {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes merchant-badge-pop-in {
  0% {
    opacity: 0;
    transform: scale(0.56);
  }
  62% {
    opacity: 1;
    transform: scale(1.1);
  }
  82% {
    opacity: 1;
    transform: scale(0.985);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes main-kv-pc-visual-bbq-intro {
  0% {
    transform: translate3d(31.393%, -26.329%, 0) scale(1.677, 1.686);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1, 1);
  }
}
@keyframes main-kv-pc-visual-food-intro {
  0% {
    transform: translate3d(84.503%, 0, 0) scale(1, 1);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1, 1);
  }
}
@keyframes main-kv-pc-visual-noodles-intro {
  0% {
    transform: translate3d(88.221%, -82.852%, 0) scale(1.753, 1.758);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1, 1);
  }
}
@keyframes main-kv-pc-visual-clarify-bottom-up {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes main-kv-pc-reveal-near-end {
  0% {
    opacity: 0;
    transform: translate3d(0, 20px, 0) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes main-kv-pc-fade-only {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes main-kv-pc-fade-right {
  0% {
    opacity: 0;
    transform: translate3d(-24px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes main-kv-pc-clip-reveal-left {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  12% {
    opacity: 1;
    -webkit-clip-path: inset(0 90% 0 0);
    clip-path: inset(0 90% 0 0);
  }
  34% {
    -webkit-clip-path: inset(0 64% 0 0);
    clip-path: inset(0 64% 0 0);
  }
  58% {
    -webkit-clip-path: inset(0 34% 0 0);
    clip-path: inset(0 34% 0 0);
  }
  80% {
    -webkit-clip-path: inset(0 12% 0 0);
    clip-path: inset(0 12% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
@keyframes main-kv-pc-fade-in-only {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }
  38% {
    opacity: 0.48;
    transform: scale(0.84);
  }
  72% {
    opacity: 0.84;
    transform: scale(0.94);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* ==========================================
   MEDIA QUERIES
   ========================================== */
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
.footer-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 1.5em 0;
  border-bottom: #c7c7c7 1px solid;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 2em;
}
@media screen and (max-width: 767px) {
  .footer-menu ul {
    flex-direction: column;
    padding: 2em 0 1.5rem;
  }
}
.footer-menu ul li {
  margin-bottom: 0;
}
.footer-menu ul li a {
  color: #008ef0;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .footer-menu ul li a {
    font-size: 13px;
    margin-bottom: 2px;
    padding-right: 14px;
  }
}
.footer-menu ul li a:hover {
  text-decoration: underline;
}

:root {
  color-scheme: light;
}

body.is-fixed {
  width: 100%;
  overflow-y: hidden;
  position: fixed;
}

.breadcrumb {
  background-color: #000;
  padding: 8px 14px 7px;
}
.breadcrumb__container {
  max-width: 1063px;
  margin: 0 auto;
}
.breadcrumb__link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 2px 3px;
  color: #ffffff;
  font-family: "Baskervville", serif;
  font-size: 20px;
  text-decoration: none;
}
.breadcrumb__link:hover, .breadcrumb__link:focus-visible {
  opacity: 0.8;
  text-decoration: none;
}
.breadcrumb__link:hover .breadcrumb__icon, .breadcrumb__link:focus-visible .breadcrumb__icon {
  animation: breadcrumb-arrow-bounce 0.6s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .breadcrumb__link {
    gap: 8px;
    font-size: 18px;
  }
}
.breadcrumb__icon {
  width: 15px;
  height: 17px;
  flex: 0 0 auto;
  background-color: #ac8c57;
  -webkit-mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/icon_arrow_left.svg");
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/icon_arrow_left.svg");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
}
@media screen and (max-width: 767px) {
  .breadcrumb__icon {
    width: 14px;
    height: 12px;
  }
}

@keyframes breadcrumb-arrow-bounce {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.main {
  position: relative;
  isolation: isolate;
  background-color: #fff;
  background-image: linear-gradient(180deg, #000 5.39%, #323232 32.13%, #696969 37.74%, #cbc1b4 43.12%, #f3e7d6 48.61%, #fff 61.25%);
  background-repeat: no-repeat;
  background-size: 100% 3477px;
  background-position: 0 0;
  padding-bottom: 95px;
}
@media screen and (min-width: 768px) {
  .main {
    padding-bottom: 115px;
  }
}
.main::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 1707px;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(18.560874deg, rgba(209, 180, 140, 0) 57.126%, rgba(209, 180, 140, 0.3) 97.532%);
  -webkit-mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/main_pattern_pc.svg");
  -webkit-mask-size: 1465px 1707px;
  -webkit-mask-position: -9px -36px;
  mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/main_pattern_pc.svg");
  mask-size: 1465px 1707px;
  mask-position: -9px -36px;
}
.main > * {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .main::before {
    content: "";
    height: 345.6vw;
    background-image: linear-gradient(18.560874deg, rgba(209, 180, 140, 0) 57.126%, rgba(209, 180, 140, 0.3) 97.532%);
    -webkit-mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/main_pattern_sp.svg");
    -webkit-mask-size: 294.933vw 345.6vw;
    -webkit-mask-position: -192.267vw 0;
    -webkit-mask-repeat: no-repeat;
    mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/main_pattern_sp.svg");
    mask-size: 294.933vw 345.6vw;
    mask-position: -192.267vw 0;
    mask-repeat: no-repeat;
  }
  .main {
    background-image: linear-gradient(180deg, #000 5.39%, #323232 32.96%, #696969 40.34%, #cbc1b4 48.25%, #f3e7d6 68.93%, #fff 77.78%);
    background-size: 100% 3254px;
    background-position: 0 0;
    background-repeat: no-repeat;
  }
}
.main-kv {
  position: relative;
  max-width: 1132px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .main-kv {
    padding: 0 49px 0 20px;
  }
}
.main-kv__stage {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66.98%;
}
.main-kv__visual {
  margin: 0;
  position: absolute;
  overflow: hidden;
}
.main-kv__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-kv__visual--bbq {
  left: 0.272%;
  top: 17.416%;
  width: 15.732%;
  height: 55.478%;
  z-index: 4;
}
.main-kv__visual--food {
  left: 46.107%;
  top: 2.809%;
  width: 26.385%;
  height: 93.539%;
  z-index: 1;
}
.main-kv__visual--noodles {
  left: 23.529%;
  top: 46.91%;
  width: 15.052%;
  height: 53.23%;
  z-index: 3;
}
.main-kv__visual--food-dish {
  left: 79.774%;
  top: 27.949%;
  width: 23.424%;
  height: 34.972%;
  z-index: 2;
}
.main-kv__headline {
  position: absolute;
  left: 2.963%;
  top: 8.006%;
  width: 60%;
  z-index: 4;
}
@media screen and (min-width: 768px) {
  .main-kv__headline {
    width: 48.729%;
  }
}
.main-kv__headline-main {
  display: block;
  width: 100%;
  height: auto;
}
.main-kv__headline-sub {
  position: absolute;
  left: 45.7%;
  top: 102.178%;
  width: 50.915%;
  z-index: 0;
}
.main-kv__headline-sub::after {
  content: "";
  position: absolute;
  left: 0;
  top: 63%;
  width: 100%;
  height: 0;
  padding-top: 10.56%;
  pointer-events: none;
  z-index: -1;
  background-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/img_emphasis.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media screen and (min-width: 768px) {
  .main-kv__headline-sub::after {
    top: 66.093%;
  }
}
.main-kv__headline-text {
  display: block;
  width: 93.192%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .main-kv__headline-text {
    width: 93.662%;
  }
}
.main-kv__description {
  position: absolute;
  left: calc((100% - 69px) * 0.56961 + 20px);
  top: 73.736%;
  width: calc((100% - 69px) * 0.43744);
  margin: 0;
  color: #fff;
  font-family: "Baskervville", serif;
  font-size: clamp(15px, 1.85vw, 20px);
  line-height: clamp(23px, 2.8vw, 30px);
  z-index: 5;
}
@media screen and (min-width: 768px) and (prefers-reduced-motion: no-preference) {
  .main-kv--pc-intro {
    --main-kv-fade-delay: 0.3s;
    --main-kv-fade-duration: 1.8s;
    --main-kv-fade-hold-duration: 200ms;
    --main-kv-motion-duration: 2300ms;
    --main-kv-motion-delay: calc(
      var(--main-kv-fade-delay) + var(--main-kv-fade-duration) + var(--main-kv-fade-hold-duration)
    );
    --main-kv-food-dish-delay: calc(var(--main-kv-motion-delay) + 500ms);
    --main-kv-headline-main-duration: 680ms;
    --main-kv-headline-main-delay: calc(var(--main-kv-food-dish-delay) + 100ms);
    --main-kv-headline-sub-duration: 620ms;
    --main-kv-headline-sub-after-duration: calc(var(--main-kv-headline-sub-duration) + 300ms);
    --main-kv-headline-sub-delay: calc(
      var(--main-kv-headline-main-delay) + var(--main-kv-headline-main-duration) - 500ms
    );
    --main-kv-description-delay: calc(
      var(--main-kv-headline-sub-delay) + var(--main-kv-headline-sub-after-duration)
    );
    --main-kv-intro-ease: cubic-bezier(0.22, 0.68, 0.2, 1);
  }
  .main-kv--pc-intro .main-kv__visual--bbq,
  .main-kv--pc-intro .main-kv__visual--food,
  .main-kv--pc-intro .main-kv__visual--noodles {
    transform-origin: top left;
    transition: transform var(--main-kv-motion-duration) var(--main-kv-intro-ease);
    will-change: transform;
  }
  .main-kv--pc-intro .main-kv__visual--bbq {
    transform: translate3d(31.393%, -26.329%, 0) scale(1.677, 1.686);
  }
  .main-kv--pc-intro .main-kv__visual--food {
    transform: translate3d(84.503%, 0, 0) scale(1, 1);
  }
  .main-kv--pc-intro .main-kv__visual--noodles {
    transform: translate3d(88.221%, -82.852%, 0) scale(1.753, 1.758);
  }
  .main-kv--pc-intro .main-kv__visual--bbq img,
  .main-kv--pc-intro .main-kv__visual--food img,
  .main-kv--pc-intro .main-kv__visual--noodles img {
    opacity: 0;
    animation: main-kv-pc-visual-clarify-bottom-up var(--main-kv-fade-duration) cubic-bezier(0.65, 0, 0.35, 1) var(--main-kv-fade-delay) both;
    animation-play-state: paused;
    will-change: opacity;
  }
  .main-kv--pc-intro .main-kv__headline-main {
    opacity: 0;
    transform: translate3d(-24px, 0, 0);
    animation: main-kv-pc-fade-right var(--main-kv-headline-main-duration) cubic-bezier(0.22, 1, 0.36, 1) var(--main-kv-headline-main-delay) both;
    will-change: opacity, transform;
  }
  .main-kv--pc-intro .main-kv__headline-text {
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    animation: main-kv-pc-clip-reveal-left var(--main-kv-headline-sub-duration) linear var(--main-kv-headline-sub-delay) both;
    will-change: opacity, clip-path;
  }
  .main-kv--pc-intro .main-kv__headline-sub::after {
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    animation: main-kv-pc-clip-reveal-left var(--main-kv-headline-sub-after-duration) linear var(--main-kv-headline-sub-delay) both;
    will-change: opacity, clip-path;
  }
  .main-kv--pc-intro .main-kv__description {
    opacity: 0;
    animation: main-kv-pc-fade-only 1.5s var(--main-kv-description-delay) both;
    will-change: opacity;
  }
  .main-kv--pc-intro .main-kv__visual--food-dish {
    opacity: 0;
    transform: scale(0.72);
    transform-origin: center;
    animation: main-kv-pc-fade-in-only 0.3s ease-out var(--main-kv-food-dish-delay) both;
    will-change: opacity, transform;
  }
  .main-kv--pc-intro .main-kv__headline-main,
  .main-kv--pc-intro .main-kv__headline-text,
  .main-kv--pc-intro .main-kv__headline-sub::after,
  .main-kv--pc-intro .main-kv__visual--food-dish,
  .main-kv--pc-intro .main-kv__description {
    animation-play-state: paused;
  }
  .main-kv--pc-intro.main-kv--pc-intro-ready .main-kv__visual--bbq img,
  .main-kv--pc-intro.main-kv--pc-intro-ready .main-kv__visual--food img,
  .main-kv--pc-intro.main-kv--pc-intro-ready .main-kv__visual--noodles img,
  .main-kv--pc-intro.main-kv--pc-intro-ready .main-kv__headline-main,
  .main-kv--pc-intro.main-kv--pc-intro-ready .main-kv__headline-text,
  .main-kv--pc-intro.main-kv--pc-intro-ready .main-kv__headline-sub::after,
  .main-kv--pc-intro.main-kv--pc-intro-ready .main-kv__visual--food-dish,
  .main-kv--pc-intro.main-kv--pc-intro-ready .main-kv__description {
    animation-play-state: running;
  }
  .main-kv--pc-intro.main-kv--pc-intro-motion .main-kv__visual--bbq,
  .main-kv--pc-intro.main-kv--pc-intro-motion .main-kv__visual--food,
  .main-kv--pc-intro.main-kv--pc-intro-motion .main-kv__visual--noodles {
    transform: translate3d(0, 0, 0) scale(1, 1);
  }
}
@media screen and (max-width: 767px) {
  .main-kv {
    max-width: none;
  }
  .main-kv__stage {
    padding-top: 181.333%;
  }
  .main-kv__visual--bbq {
    left: 9.333%;
    top: 12.5%;
    width: 26.305%;
    height: 34.265%;
  }
  .main-kv__visual--food {
    left: 53.277%;
    top: 5%;
    width: 38.407%;
    height: 50.294%;
  }
  .main-kv__visual--noodles {
    left: 24.8%;
    top: 48.971%;
    width: 20.433%;
    height: 26.691%;
  }
  .main-kv__visual--food-dish {
    left: 57.867%;
    top: 58.824%;
    width: 28.267%;
    height: 15.588%;
  }
  .main-kv__headline {
    left: 8%;
    top: 4.559%;
  }
  .main-kv__headline-sub {
    left: 45.93%;
    top: 103.061%;
    width: 51.509%;
  }
  .main-kv__description {
    position: static;
    left: auto;
    top: auto;
    width: auto;
    margin: -38.673vw 8.267% 0 7.733%;
    font-size: 18px;
    line-height: 1.22;
    letter-spacing: -0.18px;
  }
}
@media screen and (max-width: 767px) and (prefers-reduced-motion: no-preference) {
  .main-kv--pc-intro {
    --main-kv-fade-delay: 0.3s;
    --main-kv-fade-duration: 1.8s;
    --main-kv-fade-hold-duration: 200ms;
    --main-kv-motion-duration: 2300ms;
    --main-kv-motion-delay: calc(
      var(--main-kv-fade-delay) + var(--main-kv-fade-duration) + var(--main-kv-fade-hold-duration)
    );
    --main-kv-food-dish-delay: calc(var(--main-kv-motion-delay) + 500ms);
    --main-kv-headline-main-duration: 680ms;
    --main-kv-headline-main-delay: calc(var(--main-kv-food-dish-delay) + 100ms);
    --main-kv-headline-sub-duration: 620ms;
    --main-kv-headline-sub-after-duration: calc(var(--main-kv-headline-sub-duration) + 300ms);
    --main-kv-headline-sub-delay: calc(
      var(--main-kv-headline-main-delay) + var(--main-kv-headline-main-duration) - 500ms
    );
    --main-kv-description-delay: calc(
      var(--main-kv-headline-sub-delay) + var(--main-kv-headline-sub-after-duration)
    );
    --main-kv-intro-ease: cubic-bezier(0.22, 0.68, 0.2, 1);
  }
  .main-kv--pc-intro .main-kv__visual--bbq,
  .main-kv--pc-intro .main-kv__visual--food,
  .main-kv--pc-intro .main-kv__visual--noodles {
    transform-origin: top left;
    transition: transform var(--main-kv-motion-duration) var(--main-kv-intro-ease);
    will-change: transform;
  }
  .main-kv--pc-intro .main-kv__visual--bbq {
    transform: translateY(60px) translate3d(-15.441%, -21.888%, 0) scale(1, 1);
  }
  .main-kv--pc-intro .main-kv__visual--food {
    transform: translateY(60px) translate3d(39.437%, 0, 0) scale(0.685, 0.681);
  }
  .main-kv--pc-intro .main-kv__visual--noodles {
    transform: translateY(60px) translate3d(58.961%, -164.741%, 0) scale(1.287, 1.284);
  }
  .main-kv--pc-intro .main-kv__visual--bbq img,
  .main-kv--pc-intro .main-kv__visual--food img,
  .main-kv--pc-intro .main-kv__visual--noodles img {
    opacity: 0;
    animation: main-kv-pc-visual-clarify-bottom-up var(--main-kv-fade-duration) cubic-bezier(0.65, 0, 0.35, 1) var(--main-kv-fade-delay) both;
    animation-play-state: paused;
    will-change: opacity;
  }
  .main-kv--pc-intro .main-kv__headline-main {
    opacity: 0;
    transform: translate3d(-24px, 0, 0);
    animation: main-kv-pc-fade-right var(--main-kv-headline-main-duration) cubic-bezier(0.22, 1, 0.36, 1) var(--main-kv-headline-main-delay) both;
    will-change: opacity, transform;
  }
  .main-kv--pc-intro .main-kv__headline-text {
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    animation: main-kv-pc-clip-reveal-left var(--main-kv-headline-sub-duration) linear var(--main-kv-headline-sub-delay) both;
    will-change: opacity, clip-path;
  }
  .main-kv--pc-intro .main-kv__headline-sub::after {
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
    animation: main-kv-pc-clip-reveal-left var(--main-kv-headline-sub-after-duration) linear var(--main-kv-headline-sub-delay) both;
    will-change: opacity, clip-path;
  }
  .main-kv--pc-intro .main-kv__description {
    opacity: 0;
    animation: main-kv-pc-fade-only 1.5s var(--main-kv-description-delay) both;
    will-change: opacity;
  }
  .main-kv--pc-intro .main-kv__visual--food-dish {
    opacity: 0;
    transform: scale(0.72);
    transform-origin: center;
    animation: main-kv-pc-fade-in-only 0.3s ease-out var(--main-kv-food-dish-delay) both;
    will-change: opacity, transform;
  }
  .main-kv--pc-intro .main-kv__headline-main,
  .main-kv--pc-intro .main-kv__headline-text,
  .main-kv--pc-intro .main-kv__headline-sub::after,
  .main-kv--pc-intro .main-kv__visual--food-dish,
  .main-kv--pc-intro .main-kv__description {
    animation-play-state: paused;
  }
  .main-kv--pc-intro.main-kv--pc-intro-ready .main-kv__visual--bbq img,
  .main-kv--pc-intro.main-kv--pc-intro-ready .main-kv__visual--food img,
  .main-kv--pc-intro.main-kv--pc-intro-ready .main-kv__visual--noodles img,
  .main-kv--pc-intro.main-kv--pc-intro-ready .main-kv__headline-main,
  .main-kv--pc-intro.main-kv--pc-intro-ready .main-kv__headline-text,
  .main-kv--pc-intro.main-kv--pc-intro-ready .main-kv__headline-sub::after,
  .main-kv--pc-intro.main-kv--pc-intro-ready .main-kv__visual--food-dish,
  .main-kv--pc-intro.main-kv--pc-intro-ready .main-kv__description {
    animation-play-state: running;
  }
  .main-kv--pc-intro.main-kv--pc-intro-motion .main-kv__visual--bbq,
  .main-kv--pc-intro.main-kv--pc-intro-motion .main-kv__visual--food,
  .main-kv--pc-intro.main-kv--pc-intro-motion .main-kv__visual--noodles {
    transform: translate3d(0, 0, 0) scale(1, 1);
  }
}
.main-wrapper {
  max-width: 899px;
  margin: 0 auto;
  padding: 0 27px;
}
.main-title {
  font-size: 42px;
  font-family: "Helvetica", Arial, "Noto Sans", sans-serif;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin: 0 0 24px;
}
@media screen and (max-width: 767px) {
  .main-title {
    font-size: 8.533vw;
    margin: 0 0 6.4vw;
  }
}
.main-txt {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .main-txt {
    font-size: 4.8vw;
    margin-bottom: 4.267vw;
  }
}
.main-button {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .main-button {
    margin-top: 6.4vw;
  }
}
.main-note {
  list-style: none;
  margin: 48px 0 0;
  color: #000;
}
@media screen and (max-width: 767px) {
  .main-note {
    margin-top: 60px;
  }
}
.main-note li {
  font-family: "Baskervville", serif;
  font-size: 14px;
  line-height: 1.3;
  margin: 0;
}

.primary-button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 300px;
  height: 43px;
  margin: 0 auto;
  padding: 16px;
  border: none;
  border-radius: 4px;
  background-color: #ac8c57;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  font-family: "Baskervville", serif;
  line-height: 1;
  text-decoration: none;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .primary-button {
    width: 100%;
    max-width: 286px;
    height: 43px;
    padding: 16px;
    border-radius: 4px;
    font-size: 20px;
  }
}
.primary-button:hover {
  text-decoration: none;
  background-color: #7b0005;
  color: #fff;
  opacity: 1;
}

.highlighted-merchants {
  position: relative;
  z-index: 1;
  margin: 130px auto 0;
  max-width: 1063px;
}
@media screen and (max-width: 767px) {
  .highlighted-merchants {
    margin-top: 96px;
    padding: 0 37px;
  }
}
.highlighted-merchants__title {
  margin: 0 0 32px;
  font-family: "Baskervville", serif;
  font-size: 64px;
  line-height: 1.125;
  font-weight: 400;
  text-align: center;
  color: #d1b48c;
}
@media screen and (max-width: 767px) {
  .highlighted-merchants__title {
    margin-bottom: 23px;
    font-size: 34px;
    line-height: 1.15;
  }
}
.highlighted-merchants__ornament {
  margin: 0 0 64px;
}
.highlighted-merchants__ornament img {
  display: block;
  width: 86px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .highlighted-merchants__ornament img {
    width: 154.4px;
  }
}
.highlighted-merchants__cards {
  display: grid;
  padding: 0 10px;
  grid-template-columns: 1fr;
  gap: 33px;
  margin-top: 32px;
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .highlighted-merchants__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 66px;
  }
}
.highlighted-merchants > [data-interaction=fade-in], .highlighted-merchants__card[data-interaction=fade-in] {
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.highlighted-merchants__card {
  display: flex;
  height: 100%;
}
.highlighted-merchants__card:hover .highlighted-merchants__card-cta, .highlighted-merchants__card:focus-within .highlighted-merchants__card-cta {
  background-color: #7b0005;
}
.highlighted-merchants__card:hover .highlighted-merchants__card-image img, .highlighted-merchants__card:focus-within .highlighted-merchants__card-image img {
  transform: scale(1.05);
}
@media screen and (min-width: 768px) {
  .highlighted-merchants__card {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
  }
}
.highlighted-merchants__card-button {
  position: relative;
  width: 100%;
  border: none;
  border-radius: 30px 0 30px 0;
  padding: 220px 0 0;
  margin: 0;
  overflow: hidden;
  background: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .highlighted-merchants__card-button {
    padding-top: 51.8vw;
  }
}
.highlighted-merchants__card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 268px;
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .highlighted-merchants__card-image {
    height: 61.6vw;
  }
}
.highlighted-merchants__card-image img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.5s ease;
  object-fit: cover;
}
.highlighted-merchants__card-content {
  position: relative;
  width: 100%;
  z-index: 1;
  flex-grow: 1;
  padding: 20px 24px;
  background-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/highlight_merchant_bg.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 100%;
}
@media screen and (min-width: 768px) {
  .highlighted-merchants__card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.highlighted-merchants__card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.highlighted-merchants__card-discount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 8px 0;
  background: #fff;
  color: #a76f00;
  font-family: "Baskervville", serif;
  font-size: 16px;
  line-height: 24px;
  max-width: 146px;
}
.highlighted-merchants__card-region {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  color: #fff;
  font-family: "Baskervville", serif;
  font-size: 16px;
  line-height: 0.6875;
}
.highlighted-merchants__card-region::before {
  content: "";
  width: 10px;
  height: 15px;
  margin-right: 4px;
  background-color: #ac8c57;
  -webkit-mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/icon_map.svg");
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/icon_map.svg");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
}
.highlighted-merchants__card-name {
  margin: 16px 0 0;
  padding: 0 4px;
  color: #d1b48c;
  font-family: "Baskervville", serif;
  font-size: 26px;
  line-height: 32px;
}
.highlighted-merchants__card-tags {
  list-style: none;
  margin: 9px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.highlighted-merchants__card-tags li {
  margin: 0;
  border: 0.5px solid #dfdfdf;
  border-radius: 4px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: #fff;
  font-family: "Baskervville", serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.28px;
}
.highlighted-merchants__card-tags li:last-child {
  padding: 0 12px;
}
.highlighted-merchants__card-cta {
  width: 100%;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ac8c57;
  color: #fff;
  font-family: "Baskervville", serif;
  font-size: 20px;
  line-height: normal;
  transition: background-color 0.5s ease;
}
@media screen and (min-width: 768px) {
  .highlighted-merchants__card-cta {
    height: 78px;
  }
}
@media screen and (max-width: 767px) {
  .highlighted-merchants__card-discount, .highlighted-merchants__card-region {
    font-size: 16px;
  }
  .highlighted-merchants__card-discount {
    padding: 5px 8px;
    border-radius: 8px 0;
    font-size: 16px;
    line-height: 16px;
  }
  .highlighted-merchants__card-region {
    flex: 0 0 75px;
    justify-content: flex-end;
  }
  .highlighted-merchants__card-region::before {
    width: 10px;
    height: 15px;
    margin-right: 4px;
  }
  .highlighted-merchants__card-name {
    margin: 11px 0 0;
    font-size: 22px;
    line-height: 28px;
  }
  .highlighted-merchants__card-tags li {
    border-radius: 4px;
    padding: 8px 16px;
    line-height: 16px;
  }
}

.main-wrapper {
  margin-top: 144px;
  position: relative;
  z-index: 10;
}

.merchant-controls {
  position: relative;
  z-index: 30;
}
.merchant-controls[data-interaction=fade-in] {
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.merchant-controls__heading {
  margin: 0;
  color: #292929;
  text-align: center;
  font-family: "Baskervville", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.merchant-controls__filters {
  margin-top: 61px;
  position: relative;
  z-index: 31;
  display: flex;
  align-items: center;
  gap: 12px;
}
.merchant-controls__search {
  display: block;
  position: relative;
  width: 248px;
  flex: 0 0 auto;
  border-bottom: 1px solid #d3bd9a;
}
.merchant-controls__search input {
  height: 34px;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0 32px 6px 8px;
  color: #000;
  background: transparent;
  font-family: "Baskervville", serif;
  font-size: 20px;
  line-height: 24px;
  -webkit-appearance: none;
  appearance: none;
}
.merchant-controls__search input::placeholder {
  color: #5c5c5c;
  opacity: 1;
}
.merchant-controls__search input::-webkit-search-decoration, .merchant-controls__search input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.merchant-controls__search input:focus {
  outline: none;
}
.merchant-controls__search-icon {
  position: absolute;
  right: 8px;
  bottom: 11px;
  width: 15px;
  height: 15px;
  pointer-events: none;
  background-color: #5c5c5c;
  -webkit-mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/icon_search.svg");
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/icon_search.svg");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
}
.merchant-controls__select-group {
  position: relative;
  z-index: 32;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.merchant-controls__select {
  position: relative;
  display: block;
  z-index: 33;
  flex: 0 0 auto;
  border-bottom: 1px solid #d3bd9a;
}
.merchant-controls__select.merchant-controls__select--dropdown-open {
  z-index: 1200;
}
.merchant-controls__select--location {
  width: 126px;
}
.merchant-controls__select--genre {
  width: 110px;
}
.merchant-controls__select select:not(.select2-hidden-accessible) {
  width: 100%;
  height: 40px;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0 28px 6px 8px;
  color: #000;
  background: transparent;
  font-family: "Baskervville", serif;
  font-size: 20px;
  line-height: 24px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.merchant-controls__select select:not(.select2-hidden-accessible):focus {
  outline: none;
}
.merchant-controls__select select.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  display: none !important;
  pointer-events: none !important;
}
.merchant-controls__select select.select2-hidden-accessible {
  display: none !important;
}
.merchant-controls__select .merchant-controls__select2-container {
  width: 100% !important;
  position: relative;
  z-index: 1;
}
.merchant-controls__select .merchant-controls__select2-container .select2-selection--multiple {
  min-height: 40px;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0 28px 6px 8px;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: flex-end;
  position: relative;
  cursor: pointer;
}
.merchant-controls__select .merchant-controls__select2-container .select2-selection--multiple .select2-selection__rendered,
.merchant-controls__select .merchant-controls__select2-container .select2-selection--multiple .select2-search {
  display: none;
}
.merchant-controls__select .merchant-controls__select2-container .select2-selection--multiple::before {
  content: attr(data-label);
  position: absolute;
  left: 8px;
  bottom: 6px;
  color: #000;
  font-family: "Baskervville", serif;
  font-size: 20px;
  line-height: 24px;
  pointer-events: none;
  z-index: 1;
}
.merchant-controls__select::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 12px;
  width: 14px;
  height: 12px;
  background-color: #ac8c57;
  -webkit-mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/icon_carret_down.svg");
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/icon_carret_down.svg");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  pointer-events: none;
}
.merchant-controls__clear {
  margin-left: auto;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5c5c5c;
  font-family: "Baskervville", serif;
  font-size: 20px;
  line-height: 24px;
  cursor: pointer;
}
.merchant-controls__clear:hover {
  opacity: 0.8;
}
.merchant-controls__clear-icon {
  position: relative;
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  background-color: #5c5c5c;
  -webkit-mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/icon_clear.svg");
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/icon_clear.svg");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
}
.merchant-controls__meta {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.merchant-controls__count {
  flex: 1;
  margin: 0;
  color: #5c5c5c;
  font-family: "Baskervville", serif;
  font-size: 20px;
  line-height: 24px;
}
.merchant-controls__sort {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.merchant-controls__sort-label {
  color: #000;
  font-family: "Baskervville", serif;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 0;
}
.merchant-controls__sort-select {
  position: relative;
  min-width: 107px;
  background: #fff;
  border: 1px solid #d3bd9a;
  border-radius: 4px;
  overflow: hidden;
}
.merchant-controls__sort-select select:not(.select2-hidden-accessible) {
  width: 100%;
  height: 46px;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0 28px 0 8px;
  color: #000;
  background: #fff;
  font-family: "Baskervville", serif;
  font-size: 20px;
  line-height: 24px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.merchant-controls__sort-select select:not(.select2-hidden-accessible):focus {
  outline: none;
}
.merchant-controls__sort-select select.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  display: none !important;
  pointer-events: none !important;
}
.merchant-controls__sort-select .merchant-controls__sort-select2-container {
  width: 100%;
  position: relative;
  z-index: 0;
}
.merchant-controls__sort-select .merchant-controls__sort-select2-container .select2-selection--single {
  min-height: 46px;
  height: 46px;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  cursor: pointer;
}
.merchant-controls__sort-select .merchant-controls__sort-select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0 28px 0 8px;
  color: #000;
  font-family: "Baskervville", serif;
  font-size: 20px;
  line-height: 24px;
  white-space: nowrap;
}
.merchant-controls__sort-select .merchant-controls__sort-select2-container .select2-selection--single .select2-selection__arrow {
  display: none;
}
.merchant-controls__sort-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  z-index: 2;
  width: 14px;
  height: 12px;
  background-color: #ac8c57;
  -webkit-mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/icon_carret_down.svg");
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/icon_carret_down.svg");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  pointer-events: none;
}
.merchant-controls__sort-mobile {
  position: relative;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-family: "Baskervville", serif;
  font-size: 18px;
  line-height: 24px;
}
.merchant-controls__sort-mobile select:not(.select2-hidden-accessible) {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  opacity: 0;
  cursor: pointer;
}
.merchant-controls__sort-mobile select.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  display: none !important;
  pointer-events: none !important;
}
.merchant-controls__sort-mobile .merchant-controls__sort-mobile-select2-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
}
.merchant-controls__sort-mobile .merchant-controls__sort-mobile-select2-container .select2-selection--single {
  min-height: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent !important;
  box-shadow: none !important;
  cursor: pointer;
}
.merchant-controls__sort-mobile .merchant-controls__sort-mobile-select2-container .select2-selection--single .select2-selection__rendered,
.merchant-controls__sort-mobile .merchant-controls__sort-mobile-select2-container .select2-selection--single .select2-selection__arrow {
  display: none !important;
}
.merchant-controls__sort-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 18px;
  flex: 0 0 auto;
  background-color: #916b2c;
  -webkit-mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/icon_sort.svg");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/icon_sort.svg");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-position: center;
}
@media screen and (max-width: 767px) {
  .merchant-controls {
    margin-top: 0;
  }
  .merchant-controls__heading {
    font-size: 26px;
    line-height: 32px;
    letter-spacing: -0.02em;
  }
  .merchant-controls__filters {
    display: block;
    margin-top: 54px;
  }
  .merchant-controls__search {
    width: 100%;
    border-bottom-color: #916b2c;
  }
  .merchant-controls__search input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    height: 30px;
    padding: 1.5px 0 17px 8px;
    font-size: 18px;
    line-height: 30px;
  }
  .merchant-controls__search input::placeholder {
    color: #a3a3a3;
  }
  .merchant-controls__search-icon {
    right: 8px;
    top: 0;
    bottom: auto;
    transform: none;
    width: 16px;
    height: 16px;
  }
  .merchant-controls__select-group {
    margin-top: 15px;
    justify-content: space-between;
    gap: 0;
  }
  .merchant-controls__select {
    border-bottom-color: #916b2c;
  }
  .merchant-controls__select--location, .merchant-controls__select--genre {
    width: calc(50% - 20px);
  }
  .merchant-controls__select select:not(.select2-hidden-accessible) {
    height: 30px;
    padding: 0 16px 17px 8px;
    font-size: 18px;
    line-height: 30px;
  }
  .merchant-controls__select .merchant-controls__select2-container .select2-selection--multiple {
    min-height: 30px;
    padding: 0 16px 17px 8px;
  }
  .merchant-controls__select .merchant-controls__select2-container .select2-selection--multiple::before {
    left: 8px;
    top: 0;
    bottom: auto;
    font-size: 18px;
    line-height: 30px;
  }
  .merchant-controls__select::after {
    right: 8px;
    top: 7px;
    width: 14px;
    height: 14px;
  }
  .merchant-controls__clear {
    display: none;
  }
  .merchant-controls__meta {
    margin-top: 26px;
    gap: 4px;
  }
  .merchant-controls__count {
    font-size: 18px;
    line-height: 18px;
  }
  .merchant-controls__sort-mobile {
    gap: 2.133vw;
    font-size: 18px;
    line-height: 30px;
  }
  .merchant-controls__sort-icon {
    width: 16px;
    height: 18px;
  }
}

.merchant-controls__dropdown {
  z-index: 80;
  width: 220px !important;
  min-width: 220px !important;
  max-width: min(100vw - 16px, 320px);
  margin: 0;
  border: 0;
  border-radius: 4px;
  background: #fff;
  box-shadow: 2px 3px 8px 0 rgba(112, 81, 30, 0.2);
  overflow: hidden;
}
.merchant-controls__dropdown .merchant-controls__dropdown-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 12px 20px 10px;
  background: #fff;
}
.merchant-controls__dropdown .merchant-controls__dropdown-header::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  border-bottom: 1px solid #cdcdcd;
  pointer-events: none;
}
.merchant-controls__dropdown .merchant-controls__dropdown-title {
  flex: 1 1 auto;
  min-width: 0;
  color: #000;
  font-family: "Baskervville", serif;
  font-size: 20px;
  line-height: 1.2;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}
.merchant-controls__dropdown .merchant-controls__dropdown-clear {
  flex: 0 0 auto;
  border: 0;
  padding: 0;
  background: transparent;
  color: #6c8aec;
  font-family: "Baskervville", serif;
  font-size: 20px;
  line-height: 1.2;
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}
.merchant-controls__dropdown .merchant-controls__dropdown-clear:hover {
  opacity: 0.8;
}
.merchant-controls__dropdown .simplebar-track.simplebar-vertical {
  background: #f3f3f3;
}
.merchant-controls__dropdown .simplebar-scrollbar::before {
  background: #cdcdcd;
  opacity: 1;
}

.merchant-controls__select2-dropdown {
  z-index: 999 !important;
  width: 220px !important;
  min-width: 220px !important;
  max-width: min(100vw - 16px, 220px) !important;
  border: 0 !important;
  border-radius: 4px;
  background: #fff;
  box-shadow: 2px 3px 8px 0 rgba(112, 81, 30, 0.2);
  overflow: hidden;
  box-sizing: border-box;
  touch-action: manipulation;
}

@media screen and (max-width: 767px) {
  .merchant-controls__select2-dropdown--genre {
    left: auto !important;
    right: calc(47px - 50vw);
  }
}

.merchant-controls__select2-dropdown .select2-results__options {
  max-height: min(420px, 62vh);
  padding: 8px 0;
  background: #fff;
  touch-action: manipulation;
}

.merchant-controls__select2-dropdown .select2-results__option {
  margin: 0;
  padding: 8px 16px 8px 48px;
  background: #fff;
  color: #292929;
  font-family: "Baskervville", serif;
  font-size: 18px;
  line-height: 1.3;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  position: relative;
  touch-action: manipulation;
}
@media screen and (min-width: 768px) {
  .merchant-controls__select2-dropdown .select2-results__option {
    font-size: 20px;
  }
}

.merchant-controls__select2-dropdown .select2-results__option::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: #ece9e3;
}

.merchant-controls__select2-dropdown .select2-results__option[aria-selected=true]::before {
  background: #ac8c57;
}

.merchant-controls__select2-dropdown .select2-results__option[aria-selected=true] {
  background: #fff;
}

.merchant-controls__select2-dropdown .select2-results__option[aria-selected=true]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 25px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-58%) rotate(45deg);
}

.merchant-controls__select2-dropdown .select2-results__option--highlighted[aria-selected] {
  background: #fff;
  color: #292929;
}

.merchant-controls__sort-dropdown {
  z-index: 80;
  width: 136px !important;
  min-width: 136px !important;
  max-width: min(100vw - 16px, 136px);
  margin: 0;
  border: 0;
  border-radius: 4px;
  background: #fff;
  box-shadow: 2px 3px 8px 0 rgba(112, 81, 30, 0.2);
  overflow: hidden;
  padding: 16px 20px;
}
.merchant-controls__sort-dropdown .select2-results > .select2-results__options {
  max-height: none;
  padding: 0;
  background: transparent;
}
.merchant-controls__sort-dropdown .select2-results__option {
  margin: 0;
  padding: 0 0 0 28px;
  color: #292929;
  font-family: "Baskervville", serif;
  font-size: 18px;
  line-height: 1.2;
  white-space: nowrap;
  background: transparent;
  position: relative;
}
@media screen and (min-width: 768px) {
  .merchant-controls__sort-dropdown .select2-results__option {
    font-size: 20px;
  }
}
.merchant-controls__sort-dropdown .select2-results__option + .select2-results__option {
  margin-top: 12px;
}
.merchant-controls__sort-dropdown .select2-results__option::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  background: #ece9e3;
}
.merchant-controls__sort-dropdown .select2-results__option[aria-selected=true]::before {
  background: #ac8c57;
}
.merchant-controls__sort-dropdown .select2-results__option[aria-selected=true]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-58%) rotate(45deg);
}
.merchant-controls__sort-dropdown .select2-results__option--highlighted[aria-selected],
.merchant-controls__sort-dropdown .select2-results__option[aria-selected=true] {
  background: transparent;
  color: #292929;
}
.merchant-controls__sort-dropdown.select2-dropdown {
  left: auto;
  right: -80px;
}
.merchant-controls__sort-dropdown.select2-dropdown--above {
  top: -3px;
}
.merchant-controls__sort-dropdown.select2-dropdown--below {
  top: 3px;
}

.merchant-list {
  position: relative;
  z-index: 1;
  margin-top: 56px;
}
@media screen and (min-width: 768px) {
  .merchant-list {
    margin-top: 27px;
  }
}
.merchant-list--disabled {
  pointer-events: none;
}
.merchant-list__items {
  display: flex;
  flex-direction: column;
  gap: 56px;
  min-height: 200px;
}
.merchant-list__item {
  position: relative;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  cursor: pointer;
}
.merchant-list__item:hover .merchant-list__media img, .merchant-list__item:focus-within .merchant-list__media img {
  transform: scale(1.05);
}
.merchant-list__item:hover .merchant-list__deal::after, .merchant-list__item:focus-within .merchant-list__deal::after {
  animation: merchant-list-arrow-bounce 0.8s ease-out infinite;
}
.merchant-list__item[data-interaction=fade-in] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.merchant-list__item[data-interaction=fade-in][data-visibility=visible] {
  opacity: 1;
  transform: translateY(0);
}
.merchant-list__media {
  width: 260px;
  height: 200px;
  border: 1px solid #cdcdcd;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.merchant-list__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.5s ease;
}
.merchant-list__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.merchant-list__top {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.merchant-list__discount {
  align-self: flex-start;
  min-height: 27px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 0;
  background: #f7ecd6;
  color: #916b2c;
  font-family: "Baskervville", serif;
  font-size: 16px;
  line-height: 24px;
}
.merchant-list__name {
  margin: 0;
  padding: 0 4px;
  color: #292929;
  font-family: "Baskervville", serif;
  font-size: 22px;
  line-height: 28px;
}
.merchant-list__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.merchant-list__tags li {
  height: 24px;
  padding: 0 12px;
  border: 1px solid #cdcdcd;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5c5c5c;
  font-family: "Baskervville", serif;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}
.merchant-list__description {
  margin: 0;
  padding: 0 4px;
  color: #292929;
  font-family: "Baskervville", serif;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.18px;
}
.merchant-list__bottom {
  position: relative;
  top: 2px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.merchant-list__location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5c5c5c;
  font-family: "Baskervville", serif;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.18px;
}
.merchant-list__location::before {
  content: "";
  width: 12px;
  height: 18px;
  flex: 0 0 auto;
  background-color: #7b0005;
  -webkit-mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/icon_map.svg");
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/icon_map.svg");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
}
.merchant-list__deal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #7b0005;
  font-family: "Baskervville", serif;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}
.merchant-list__deal::after {
  content: "";
  width: 14px;
  height: 12px;
  -webkit-mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/icon_arrow_right.svg");
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/icon_arrow_right.svg");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  background: currentColor;
  transform: translateX(0);
}
.merchant-list__deal:hover {
  opacity: 0.8;
}
.merchant-list__badge-new {
  position: absolute;
  top: -19px;
  left: -20px;
  width: 59px;
  height: 59px;
  border-radius: 50%;
  background: #7b0005;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Baskervville", serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.84px;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  will-change: transform, opacity;
  pointer-events: none;
}
.merchant-list__item[data-badge-ready=true] .merchant-list__badge-new {
  animation: merchant-badge-pop-in 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
@media screen and (max-width: 767px) {
  .merchant-list {
    margin-top: 26px;
  }
  .merchant-list__items {
    gap: 0;
    min-height: 217px;
  }
  .merchant-list__item {
    grid-template-columns: 34.667vw minmax(0, 1fr);
    column-gap: 8px;
    row-gap: 12px;
    border-bottom: 0;
    background-image: repeating-linear-gradient(to right, #cdcdcd 0, #cdcdcd 1px, transparent 1px, transparent 5px);
    background-position: left bottom;
    background-size: 100% 1px;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .merchant-list__item {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .merchant-list__item:not(:first-child) {
    margin-top: 40px;
  }
  .merchant-list__item:last-child {
    background-image: none;
    padding-bottom: 0;
  }
  .merchant-list__media {
    grid-column: 1;
    grid-row: 1;
    width: 34.667vw;
    height: 26.667vw;
    border-radius: 2.133vw;
  }
  .merchant-list__content {
    display: contents;
  }
  .merchant-list__top {
    grid-column: 2;
    grid-row: 1;
    min-height: 26.667vw;
    gap: 2px;
    justify-content: flex-start;
  }
  .merchant-list__discount {
    min-height: 27px;
    padding: 0 8px;
    border-radius: 8px 0;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.2px;
  }
  .merchant-list__name {
    padding: 0;
    font-size: 20px;
    line-height: 24px;
  }
  .merchant-list__tags {
    grid-column: 1/-1;
    grid-row: 2;
    margin: 0;
    gap: 1.067vw;
  }
  .merchant-list__tags li {
    height: 24px;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 14px;
  }
  .merchant-list__description {
    text-box: trim-both cap alphabetic;
    grid-column: 1/-1;
    grid-row: 3;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.01px;
  }
  .merchant-list__bottom {
    grid-column: 1/-1;
    grid-row: 4;
    margin-top: 6px;
    gap: 12px;
  }
  .merchant-list__location, .merchant-list__deal {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -0.02em;
  }
  .merchant-list__location::before {
    width: 11px;
    height: 16px;
  }
  .merchant-list__deal::after {
    width: 12px;
    height: 10px;
  }
  .merchant-list__badge-new {
    top: -19px;
    left: -8px;
    width: 45px;
    height: 45px;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .breadcrumb__link:hover .breadcrumb__icon,
  .breadcrumb__link:focus-visible .breadcrumb__icon {
    animation: none;
    transform: none;
  }
  .merchant-list__item[data-badge-ready=true] .merchant-list__badge-new {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .merchant-list__item:hover .merchant-list__media img,
  .merchant-list__item:focus-within .merchant-list__media img {
    transform: none;
  }
  .merchant-list__item:hover .merchant-list__deal::after,
  .merchant-list__item:focus-within .merchant-list__deal::after {
    animation: none;
    transform: none;
  }
}
.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.list li {
  width: 25%;
  margin: 0;
  border-right: solid 1px #666666;
  border-bottom: solid 1px #666666;
  border-collapse: collapse;
  display: flex;
}
@media screen and (max-width: 767px) {
  .list li {
    width: 50%;
    border-right: solid 0.267vw #666666;
    border-bottom: solid 0.267vw #666666;
  }
}
@media screen and (max-width: 767px) {
  .list li:nth-of-type(2n) {
    border-right: none;
  }
}
.list li:nth-of-type(4n) {
  border-right: none;
}
.list li a {
  display: block;
  width: 100%;
  height: 100%;
}
.list li button {
  position: relative;
  width: 100%;
  padding: 0 0 20px;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .list li button {
    padding: 0 0 3.2vw;
  }
}
.list li button::before {
  content: "";
  position: absolute;
  background-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/icon_blank.svg");
  background-size: cover;
  width: 20px;
  height: 18px;
  bottom: 20px;
  right: 20px;
}
@media screen and (max-width: 767px) {
  .list li button::before {
    width: 5.33333333vw;
    height: 4.8vw;
    bottom: 3.2vw;
    right: 3.2vw;
  }
}
.list li button:hover {
  opacity: 0.8;
}
.list li .list-item {
  position: relative;
  width: 100%;
  padding: 0 0 20px;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .list li .list-item {
    padding: 0 0 3.2vw;
  }
}
.list--flex-col li {
  flex: 1;
}
.list--flex-col li:last-of-type {
  border-right: none;
}
.list--flex-col li:nth-of-type(4n) {
  border-right: solid 1px #666666;
}
@media screen and (max-width: 767px) {
  .list--flex-col li {
    border-right: none;
    flex: 100%;
  }
}
.list--flex-col .list-logo {
  background-color: #292929;
}
@media screen and (max-width: 767px) {
  .list--flex-col .list-logo {
    height: auto;
  }
}
.list--flex-col .list-logo img {
  max-height: initial;
}
@media screen and (max-width: 767px) {
  .list--flex-col .list-logo img {
    max-height: initial;
  }
}
.list-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 112px;
  width: 100%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .list-logo {
    height: 25.6vw;
  }
}
.list-logo img {
  max-height: 64px;
}
@media screen and (max-width: 767px) {
  .list-logo img {
    max-height: 16vw;
  }
}
.list-tag {
  display: flex;
  text-align: left;
  margin-top: 8px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .list-tag {
    margin-top: 2.133vw;
    padding: 0 3.2vw;
  }
}
.list-tag span {
  display: inline-block;
  line-height: 1;
  font-size: 10px;
  font-weight: 600;
  font-family: "Helvetica", Arial, "Noto Sans", sans-serif;
  padding: 2px 6px;
  background-color: #f8ac36;
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .list-tag span {
    font-size: 2.667vw;
    padding: 0.533vw 1.6vw;
    border-radius: 1.6vw;
  }
}
.list-name {
  text-align: left;
  font-size: 26px;
  line-height: 1.23;
  color: #fff;
  margin-top: 8px;
  padding: 0 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .list-name {
    font-size: 22px;
    line-height: 1.27;
    padding: 0 3.2vw;
  }
}
.list-info {
  font-size: 14px;
  line-height: 1.2;
  text-align: left;
  color: #fff;
  width: 100%;
  margin-top: 8px;
  padding: 0 20px;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .list-info {
    font-size: 3.733vw;
    margin-top: 2.133vw;
    padding: 0 3.2vw;
  }
}
.list-region {
  font-size: 10px;
  color: #999;
  margin-top: 8px;
  padding: 0 20px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .list-region {
    font-size: 2.667vw;
    margin-top: 2.133vw;
    padding: 0 3.2vw;
  }
}
.list-map-img {
  border-bottom: solid 1px #666666;
}
@media screen and (max-width: 767px) {
  .list-map-img {
    border-bottom: solid 0.2666666667vw #666666;
  }
}

.more-btn {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border: none;
  background: none;
  min-width: auto;
  margin: 0 16px 0 auto;
  padding: 16px 0;
  border-radius: initial;
}
@media screen and (max-width: 767px) {
  .more-btn {
    font-size: 4.267vw;
    padding: 4.267vw 0;
  }
}
.more-btn::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin: 0 0 0 0.5em;
  border: 8px solid transparent;
  border-right: 0 solid transparent;
  border-left: 14px solid #fff;
}
@media screen and (max-width: 767px) {
  .more-btn::after {
    border: 2.133vw solid transparent;
    border-left: 3.733vw solid #fff;
  }
}
.more-btn:hover {
  background: none;
  color: #fff;
  opacity: 0.8;
}
.more-btn + .list {
  display: none;
}

.modal-container {
  position: relative;
  z-index: 5;
}
.modal-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.68);
  display: none;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
}
.modal-body {
  width: 718px;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 40px);
  border-radius: 8px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(0deg, #fff 0%, #fff 100%), #fbf7ef;
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 41;
}
@media screen and (max-width: 767px) {
  .modal-body {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: none;
    padding-bottom: 0;
    overflow: hidden;
    flex-direction: column;
  }
}
.modal-head {
  position: relative;
  min-height: 64px;
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .modal-head {
    min-height: 17.067vw;
  }
}
.modal-inner {
  max-height: calc(100vh - 104px);
  padding: 0 65px 70px;
}
.modal-inner[data-simplebar] .simplebar-content-wrapper {
  height: 100%;
}
.modal-inner[data-simplebar] .simplebar-content {
  min-height: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .modal-inner {
    max-height: none;
    flex: 1 1 auto;
    min-height: 0;
    padding: 0 48px 60px;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .modal-inner .simplebar-content-wrapper {
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .modal-inner .simplebar-content-wrapper::-webkit-scrollbar {
    display: none;
  }
}
.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  box-sizing: border-box;
}
.modal-close:hover {
  opacity: 0.8;
}
.modal-close::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-color: #000;
  -webkit-mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/icon_close.svg");
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/icon_close.svg");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
}
.modal-logo {
  width: 105px;
  height: 105px;
  margin: 0 auto;
  border-radius: 4px;
  border: 1px solid #cdcdcd;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .modal-logo {
    width: 78px;
    height: 78px;
  }
}
.modal-name {
  margin: 20px 0 0;
  color: #111;
  text-align: center;
  font-family: "Baskervville", serif;
  font-size: 22px;
  line-height: 1.27;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .modal-name {
    font-size: 26px;
    line-height: 1.23;
  }
}
.modal-location {
  margin-top: 8px;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 8px;
  color: #7f6f6f;
  text-align: center;
  font-family: "Baskervville", serif;
  font-size: 16px;
  line-height: 1.5;
}
.modal-location .modal-location__link,
.modal-location .modal-location__text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 2px 8px;
  border-radius: 4px;
  color: inherit;
  font: inherit;
  line-height: inherit;
}
.modal-location .modal-location__link {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.modal-location .modal-location__text {
  text-decoration: none;
}
.modal-location .modal-location__link::before,
.modal-location .modal-location__text::before {
  content: "";
  width: 10px;
  height: 15px;
  background-color: #8b0011;
  -webkit-mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/icon_map.svg");
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("/id/promotion/japan_contents_of_ASEAN/japan_dining/assets/images/icon_map.svg");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
}
.modal-genres {
  list-style: none;
  margin: 18px auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}
.modal-genres li {
  min-height: 24px;
  padding: 0 12px;
  border: 1px solid #cdcdcd;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #525252;
  font-family: "Baskervville", serif;
  font-size: 16px;
  line-height: 1;
  margin: 0;
}
.modal-gallery {
  margin-top: 36px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .modal-gallery {
    grid-template-columns: 521px 52px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .modal-gallery {
    column-gap: 2.133vw;
    display: block;
  }
}
.modal-gallery__main {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .modal-gallery__main {
    width: 521px;
    max-width: 521px;
    height: 313px;
  }
}
@media screen and (max-width: 767px) {
  .modal-gallery__main {
    height: calc((100vw - 96px) * 313 / 521);
  }
}
.modal-gallery__main .swiper-wrapper,
.modal-gallery__main .swiper-slide {
  width: 100%;
  height: 100%;
}
.modal-gallery__main-slide {
  width: 100% !important;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-gallery__main-slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .modal-gallery__main-slide {
    border-radius: 1.067vw;
  }
  .modal-gallery__main-slide img {
    border-radius: 1.067vw;
  }
}
.modal-gallery__thumbs {
  width: 52px;
}
@media screen and (max-width: 767px) {
  .modal-gallery__thumbs {
    width: 100%;
    margin-top: 2.667vw;
  }
}
@media screen and (max-width: 767px) {
  .modal-gallery__thumbs .swiper-wrapper {
    justify-content: center;
  }
}
.modal-gallery__thumb-slide {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.25s ease;
}
.modal-gallery__thumb-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .modal-gallery__thumb-slide {
    flex: 0 0 12vw;
    width: 12vw;
    height: 12vw;
    border-radius: 1.067vw;
  }
}
.modal-gallery__thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.modal-promotion {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .modal-promotion {
    margin-top: 40px;
  }
}
.modal-promotion__title {
  display: inline-block;
  margin: 0;
  color: #916b2c;
  font-family: "Baskervville", serif;
  font-size: 22px;
  line-height: 1.27;
}
.modal-promotion__title::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 4px;
  background: #b79f76;
}
@media screen and (max-width: 767px) {
  .modal-promotion__title {
    font-size: 20px;
    line-height: normal;
  }
  .modal-promotion__title::after {
    margin-top: 6px;
  }
}
.modal-text {
  margin: 22px 0 0;
  color: #111;
  font-family: "Baskervville", serif;
  font-size: 16px;
  line-height: 1.5;
}
.modal-list {
  margin: 8px 0 0;
  padding-left: 22px;
}
.modal-list li {
  margin: 0;
  color: #000;
  font-family: "Baskervville", serif;
  font-size: 16px;
  line-height: 1.5;
}
.modal-list li::marker {
  color: #000;
}
.modal-link {
  margin-top: 40px;
  text-align: center;
}

.simplebar-track {
  background: #e5e5e5;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .simplebar-track {
    border-radius: 0;
  }
}