@charset "UTF-8";

/* =========================================================
   HORII CORE CSS
========================================================= */

/* =========================================================
   Store Detail
========================================================= */

/* ---------------------------------------------------------
   Store Products
--------------------------------------------------------- */
.store-products__label,
.store-products__content {
  margin: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* ---------------------------------------------------------
   Store Products - Mobile
--------------------------------------------------------- */
@media (max-width: 768px) {
  .store-detail__info .store-products {
    display: block;
  }

  .store-detail__info .store-products__label,
  .store-detail__info .store-products__content {
    width: 100%;
    max-width: 100%;
  }

  .sec-store-detail .store-detail__info .store-products__label {
    margin: 16px 0 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    border-left: 3px solid #c1a683;
    color: #333;
    font-weight: 600;
    line-height: 1.6;
  }

  .store-products__label br {
    display: none;
  }

  .store-products__content {
    margin: 0;
    padding-top: 0;
    padding-bottom: 16px;
  }
}

/* ---------------------------------------------------------
   Store Description
--------------------------------------------------------- */
.store-detail__description {
  background-color: #fff;
  border: 1px solid rgba(193, 166, 131, 0.25);
  border-left: 4px solid #c1a683;
}

.store-detail__description-title {
  color: #333;
}

.store-detail__description-content p {
  margin-bottom: 1.75rem;
  line-height: 2;
}

.store-detail__description-content p:last-child {
  margin-bottom: 0;
}

/* ---------------------------------------------------------
   Store Description - Mobile
--------------------------------------------------------- */
@media (max-width: 768px) {
  .store-detail__description {
    padding: 1.5rem;
  }

  .store-detail__description-content p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
  }
}

/* =========================================================
   Footer Navigation
========================================================= */

/* ---------------------------------------------------------
   Footer Navigation - Mobile
--------------------------------------------------------- */
@media (max-width: 768px) {
  .footer-nav-wrap .nav-bottom {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 360px;
    margin: 0 auto;
    padding: 0;
  }

  .footer-nav-wrap .nav-bottom li {
    width: auto;
    border-bottom: 1px solid rgba(193, 166, 131, 0.35);
  }

  .footer-nav-wrap .nav-bottom li:nth-child(odd) {
    border-right: 1px solid rgba(193, 166, 131, 0.35);
  }

  .footer-nav-wrap .nav-bottom li:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .footer-nav-wrap .nav-bottom li::after {
    display: none;
  }

  .footer-nav-wrap .nav-bottom .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 78px;
    padding: 12px 8px;
    color: #333;
  }

  .footer-nav-wrap .nav-bottom .ja {
    margin-bottom: 4px;
    font-size: 0.75rem;
  }

  .footer-nav-wrap .nav-bottom .en {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }
  
}

/* =========================================================
   Stockists
========================================================= */

/* ---------------------------------------------------------
   Stockists - Common
--------------------------------------------------------- */
.home .sec-store__list--current .sec-store__list__title {
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.6;
}

.sec-store__lead,
.sec-store-past__lead {
  margin-top: 24px;
  margin-bottom: 0;
}

.sec-store__list--current,
.sec-store__list--past {
  width: 100%;
  margin: 0;
  padding: 48px 0 0;
  list-style: none;
}

.sec-store__list--current > li,
.sec-store__list--past > li {
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sec-store__list--current .img-4-3,
.sec-store__list--past .img-4-3 {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.sec-store__list--current .img-4-3 img,
.sec-store__list--past .img-4-3 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-store__list--current .sec-store__list__title,
.sec-store__list--past .sec-store__list__title {
  margin-top: 16px;
}

.sec-store-past__status {
  display: block;
  margin: 12px 0 0;
  color: #777;
  font-size: 0.85rem;
}

/* ---------------------------------------------------------
   Past Stockists
--------------------------------------------------------- */
.sec-store-past {
  margin-top: 96px;
  padding: 80px 32px;
  background-color: rgba(193, 166, 131, 0.08);
}

/* ---------------------------------------------------------
   Slider Progress
--------------------------------------------------------- */
.stockists-progress,
.gallery-progress {
  display: flex;
  align-items: center;
  gap: 20px;
  width: calc(100% - 40px);
  margin: 32px auto 0;
}

.stockists-progress__count,
.gallery-progress__count {
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.stockists-progress__separator,
.gallery-progress__separator {
  margin: 0 4px;
}

.stockists-progress__track,
.gallery-progress__track {
  position: relative;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background-color: rgba(193, 166, 131, 0.3);
}

.stockists-progress__bar,
.gallery-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #c1a683;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}

/* ---------------------------------------------------------
   Stockists - Desktop
--------------------------------------------------------- */
@media (min-width: 769px) {
  .sec-store__list--current,
  .sec-store__list--past {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 64px 40px;
  }

  .stockists-progress {
    display: none !important;
  }
}

/* ---------------------------------------------------------
   Stockists - Mobile
--------------------------------------------------------- */
@media (max-width: 768px) {
  .sec-store-past {
    margin-top: 72px;
    padding: 64px 0;
  }

  .sec-store__list--current,
  .sec-store__list--past {
    padding-top: 32px;
  }

  .sec-store__list--current .slick-slide,
  .sec-store__list--past .slick-slide {
    padding: 0 6px;
  }
}

/* =========================================================
   Stores Archive
========================================================= */

/* ---------------------------------------------------------
   Lead
--------------------------------------------------------- */
.sec-store-archive__lead {
  max-width: 720px;
  margin: 24px auto 0;
  line-height: 1.9;
}

/* ---------------------------------------------------------
   Area Filter
--------------------------------------------------------- */
.store-filter {
  max-width: 1200px;
  margin: 0 auto 48px;
}

.store-filter__all {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.store-filter__group + .store-filter__group {
  margin-top: 32px;
}

.store-filter__group-title {
  margin: 0 0 16px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
}

.store-filter__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.store-filter__button {
  appearance: none;
  padding: 9px 18px;
  border: 1px solid #c1a683;
  border-radius: 999px;
  background: transparent;
  color: #333;
  font: inherit;
  line-height: 1.4;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.store-filter__button:hover,
.store-filter__button.is-active {
  background-color: #c1a683;
  color: #fff;
}

.store-filter__count {
  margin-left: 8px;
  font-size: 0.8em;
  opacity: 0.8;
}

/* ---------------------------------------------------------
   Store Cards
--------------------------------------------------------- */
.sec-store-archive .store-card {
  display: flex;
  flex-direction: column;
}

.sec-store-archive .img-4-3 {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.sec-store-archive .img-4-3 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-store-archive .store-card__more {
  margin-top: auto !important;
  padding-top: 16px;
}

.sec-store__list--archive > li.is-hidden {
  display: none !important;
}

/* ---------------------------------------------------------
   Past Stockists
--------------------------------------------------------- */
.sec-store-archive__past {
  margin-top: 96px;
  padding: 72px 32px;
  background-color: rgba(193, 166, 131, 0.08);
  border-radius: 4px;
}

.sec-store-archive__past .sec-store-past__status {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

/* ---------------------------------------------------------
   Mobile
--------------------------------------------------------- */
@media (max-width: 768px) {
  .store-filter {
    margin-bottom: 36px;
  }

  .store-filter__all {
    margin-bottom: 28px;
  }

  .store-filter__group + .store-filter__group {
    margin-top: 28px;
  }

  .store-filter__group-title {
    text-align: left;
  }

  .store-filter__buttons {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    margin-right: -1rem;
    padding-right: 1rem;
    padding-bottom: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .store-filter__buttons::-webkit-scrollbar {
    display: none;
  }

  .store-filter__button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .sec-store-archive__past {
    margin-top: 72px;
    padding: 56px 16px;
  }
}

#sec-store-archive {
  padding-top: 40px !important;
}
#sec-store-archive {
  margin-top: 40px;
}
.sec-store-archive .sec-store__list__title,
.sec-store-past-section .sec-store__list__title {
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.6;
}
.sec-store-past-section {
  padding-top: 120px;
  padding-bottom: 100px;
  background-color: #fff;
}


@media (max-width: 768px) {
  #sec-store-archive {
    margin-top: 24px;
  }

  .sec-store-past-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .sec-store-archive .sec-store__list__title,
  .sec-store-past-section .sec-store__list__title {
    margin-top: 12px;
    margin-bottom: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.6;
  }
}

/* ---------------------------------------------------------
   Current Stockists - Mobile Card
--------------------------------------------------------- */
@media (max-width: 768px) {
  .home .sec-store__list--current .slick-slide {
    padding: 0 8px;
    background-color: transparent;
    box-sizing: border-box;
  }

  .home .sec-store__list--current .sec-store__card {
    height: 100%;
    padding: 16px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  }

  .home .sec-store__list--current .img-4-3 {
    margin-bottom: 16px;
  }

  .home .sec-store__list--current .sec-store__list__title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.65;
  }

  .home .sec-store__list--current .sec-store__list__address {
    margin-top: 16px;
    margin-bottom: 12px;
    line-height: 1.8;
  }
}

/* ---------------------------------------------------------
   Gallery - Desktop Arrows
--------------------------------------------------------- */
@media (min-width: 769px) {
  .sec-gallery .js-slick {
    position: relative;
  }

  .sec-gallery .gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(193, 166, 131, 0.6);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.92);
    color: #333;
    font-size: 1.1rem;
    transform: translateY(-50%);
    cursor: pointer;
    transition:
      background-color 0.2s ease,
      color 0.2s ease,
      opacity 0.2s ease;
  }

  .sec-gallery .gallery-arrow--prev {
    left: -64px;
  }

  .sec-gallery .gallery-arrow--next {
    right: -64px;
  }

  .sec-gallery .gallery-arrow:hover {
    background-color: #c1a683;
    color: #fff;
  }

  .sec-gallery .gallery-arrow.slick-disabled {
    opacity: 0.25;
    cursor: default;
    pointer-events: none;
  }
}

/* ---------------------------------------------------------
   Page Top
--------------------------------------------------------- */
#pageTopBtn {
  width: 40px;
  height: 80px;
}

@media (max-width: 768px) {
  #pageTopBtn {
    width: 32px;
    height: 64px;
  }
}