@charset "UTF-8";

/* =========================================================
   Overseas store page
   Shared tokens, reset, .l-container and .c-title come from style.css.
   ========================================================= */
.store-page {
  overflow: hidden;
  padding-bottom: 72px;
}

.store-breadcrumb {
  padding-top: 18px;
}

.store-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #777;
  font-size: 10px;
  letter-spacing: .08em;
}

.store-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
}

.store-breadcrumb a:hover {
  opacity: .55;
}

.store-heading {
  padding-top: 55px;
  padding-bottom: 35px;
  text-align: center;
}

.store-heading-sub {
  font-size: 14px;
  letter-spacing: .1em;
}

.store-heading h1 {
  margin: 7px 0 9px;
  font-size: clamp(28px, 4.2vw, 40px);
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.15;
}

.store-hero {
  width: 100%;
}

.store-slider {
  position: relative;
}

.store-slider .splide__slide {
  max-width: min(72vw, 880px);
}

.store-slider .splide__slide img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  filter: none;
}

.store-slider .splide__arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, .45);
  background: rgba(255, 255, 255, .92);
  opacity: 0;
  transition: opacity .25s ease;
}

.store-slider:hover .splide__arrow,
.store-slider:focus-within .splide__arrow {
  opacity: 1;
}

.store-slider .splide__pagination {
  bottom: -28px;
}

.store-slider .splide__pagination__page {
  width: 5px;
  height: 5px;
  margin: 4px;
  background: #bbb;
}

.store-slider .splide__pagination__page.is-active {
  background: #000;
  transform: scale(1);
}

.store-quick-info {
  background: #f7f7f7;
  width: 100%;
  padding: 20px 0;
}

.store-quick-info-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.store-quick-info-item {
  display: grid;
  align-content: center;
  justify-content: center;
  min-height: 112px;
  padding: 25px 24px;
}

.store-quick-info-item+.store-quick-info-item {
  border-left: 3px solid #fff;
}

.store-quick-info-item dt,
.store-quick-info-item dd {
  width: 100%;
  max-width: 220px;
}

.store-quick-info-item dt,
.store-details dt,
.store-online-label {
  margin-bottom: 9px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
}

.store-quick-info-item dd {
  font-size: 14px;
  line-height: 1.55;
}

.store-quick-info-link a,
.store-instagram a {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 0;
}

.store-quick-info-link a::before,
.store-instagram a::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: .5px;
  background: currentColor;
  transition: width .35s ease;
}

.store-quick-info-link a:hover::before,
.store-instagram a:hover::before {
  width: 0;
}

.store-instagram--multiple {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.store-about,
.store-access {
  padding-top: 105px;
}

.store-about-layout {
  margin-top: 42px;
}

.store-about-copy {
  display: grid;
  gap: 22px;
}

.store-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin: 10px 0 0;
  align-items: stretch;
  padding: 20px 0 100px;
  position: relative;
}

.store-features::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  z-index: -1;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  height: 150px;
  background: #f7f7f7;

  transform: scaleY(0);
  transform-origin: bottom;
  transition-property: transform;
  transition-duration: .9s;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
  transition-delay: 1s;
}

.store-features.is-background-visible::after {
  transform: scaleY(1);
}

.store-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.store-feature+.store-feature {
  border-left: 0;
}

.store-feature-image {
  overflow: hidden;
  z-index: 1;

  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .7s ease,
    transform .8s cubic-bezier(.22, 1, .36, 1);
}

.store-feature-image img {
  display: block;
  width: 60%;
  max-width: 320px;
  margin: 15px auto;
}

.store-feature-box {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  min-height: 165px;
  padding: 5px 36px;
  background: #fafafa;
  position: relative;
  z-index: 0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .05);

  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity .6s ease,
    transform .7s cubic-bezier(.22, 1, .36, 1),
    box-shadow .3s ease;
}

.store-feature-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: -50px;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #fafafa;
  border-radius: 12px;
}

.store-feature.is-visible .store-feature-image {
  opacity: 1;
  transform: translateY(0);
}

.store-feature.is-visible .store-feature-box {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .12s;
}

.store-feature:nth-child(1) .store-feature-image {
  transition-delay: .35s;
}

.store-feature:nth-child(2) .store-feature-image {
  transition-delay: .45s;
}

.store-feature:nth-child(3) .store-feature-image {
  transition-delay: .55s;
}

.store-feature:nth-child(1) .store-feature-box {
  transition-delay: .55s;
}

.store-feature:nth-child(2) .store-feature-box {
  transition-delay: .65s;
}

.store-feature:nth-child(3) .store-feature-box {
  transition-delay: .75s;
}

.store-feature h3 {
  margin-bottom: 20px;
  font-size: clamp(19px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .05em;
}

.store-feature p {
  display: flex;
  max-width: 200px;
  font-size: 14px;
  line-height: 1.7;
}

.store-access-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 70px;
  margin-top: 42px;
  align-items: start;
}

.store-access-info h3 {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .06em;
}

.store-details {
  display: grid;
  gap: 25px;
}

.store-details dd {
  font-size: 14px;
  line-height: 1.8;
}

.store-details a {
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  color: inherit;
  text-decoration: none;
}

.store-details a::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: .5px;
  background: currentColor;
  transition: width .35s ease;
}

.store-details a:hover::before {
  width: 0;
}

.store-map {
  display: flex;
  flex-direction: column;
  min-height: 450px;
}

.js-store-reveal.store-map {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity .8s ease,
    transform .9s cubic-bezier(.22, 1, .36, 1);
}

.js-store-reveal.store-map.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.store-map iframe {
  display: block;
  width: 100%;
  min-height: 450px;
  filter: grayscale(1);
}

.store-button {
  display: inline-flex;
  align-self: flex-end;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  min-width: 285px;
  margin: 30px 0;
  padding: 15px 18px;
  border: 1px solid #000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  transition:
    color .25s ease,
    background-color .25s ease;
}

.store-button:hover {
  color: #fff;
  background: #000;
}

.store-button:hover span {
  transform: translate(4px, -4px);
}

.store-quick-info-link a:hover span,
.store-instagram a:hover span {
  transform: translate(3px, -3px);
}

.external-link-icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-left: 5px;
  transition: transform .3s ease;
}

.store-button:hover .external-link-icon {
  transform: translate(3px, -3px);
}

.store-quick-info-link a:hover .external-link-icon,
.store-instagram a:hover .external-link-icon {
  transform: translate(3px, -3px);
}

.store-online {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: transparent;
}

.store-online::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #141414;
}

.js-store-reveal.store-online::before {
  transform: scaleY(0);
  transform-origin: bottom;
  transition:
    transform 1s cubic-bezier(.22, 1, .36, 1) .2s;
}

.js-store-reveal.store-online.is-visible::before {
  transform: scaleY(1);
}

.store-online-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  min-height: 290px;
  padding-top: 65px;
  padding-bottom: 65px;
  position: relative;
  z-index: 1;
}

.store-online h2 {
  max-width: 610px;
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.35;
}

.store-button-light {
  flex-shrink: 0;
  margin-top: 0;
  border-color: #fff;
}

.store-button-light:hover {
  color: #000;
  background: #fff;
}

.store-instagram {
  padding-top: 70px;
  text-align: center;
}

.store-instagram p {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
}

.js-store-reveal {
  opacity: 0;
  transform: translate3d(-24px, 0, 0);
  transition: opacity .9s ease, transform .9s ease;
}

.js-store-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 767px) {
  .store-page {
    padding-bottom: 45px;
  }

  .store-breadcrumb {
    padding-top: 12px;
  }

  .store-heading {
    padding-top: 38px;
    padding-bottom: 24px;
  }

  .store-heading h1 {
    margin-top: 5px;
  }

  .store-slider .splide__slide {
    max-width: 86vw;
  }

  .store-slider .splide__slide img {
    aspect-ratio: 4 / 3;
  }

  .store-slider .splide__arrow {
    display: none;
  }


  .store-quick-info {
    padding: 10px 0;
  }

  .store-quick-info-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .store-quick-info-item {
    min-height: 100px;
    padding: 5px 0;
    justify-content: stretch;
    text-align: left;
    position: relative;
  }

  .store-quick-info-item+.store-quick-info-item {
    border: none;
  }

  .store-quick-info-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #fff;
  }

  .store-quick-info-item:nth-child(1):before,
  .store-quick-info-item:nth-child(3):before {
    display: none;
  }

  .store-quick-info-item:nth-child(1),
  .store-quick-info-item:nth-child(3) {
    padding: 5px 16px 5px 8px;
  }

  .store-quick-info-item:nth-child(2),
  .store-quick-info-item:nth-child(4) {
    padding: 5px 0 5px 24px;
  }

  .store-quick-info-item:nth-child(n+3) {
    border-top: 2px solid #fff;
  }

  .store-quick-info-item dt,
  .store-quick-info-item dd {
    width: 100%;
    max-width: none;
    text-align: left;
  }

  .store-quick-info-item dt {
    letter-spacing: .05em;
    font-size: 13px;
  }

  .store-quick-info-item dd {
    font-size: 12px;
    line-height: 1.2;
  }


  .store-about {
    padding-top: 40px;
  }

  .store-about-layout {
    margin-top: 16px;
  }

  .store-features {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 0;
    padding: 20px 0 100px;
  }

  .store-features::after {
    bottom: 40px;
    height: 100px;
    background: #f7f7f7;
  }

  .store-feature {
    min-height: 0;
    padding: 0;
  }

  .store-feature-image img {
    width: 50%;
    max-width: 280px;
    margin: 15px auto;
  }

  .store-feature:last-child .store-feature-image {
    margin-top: -30px;
  }

  .store-feature-box {
    width: 95%;
    padding: 5px 28px 40px;
    flex: none;
    min-height: 0;
    height: auto;
    border-radius: 8px;
    box-shadow:
      0 8px 18px rgba(0, 0, 0, .035),
      0 2px 6px rgba(0, 0, 0, .025);
  }

  .store-feature .store-feature-image {
    transition-delay: 0s;
  }

  .store-feature.is-visible .store-feature-box {
    transition-delay: .12s;
  }

  .store-feature h3 {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.5;
  }

  .store-feature p {
    max-width: none;
  }
}

@media screen and (max-width: 900px) {
  .store-access {
    padding-top: 10px;
  }

  .store-access-layout {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 28px;
  }

  .store-access-info {
    margin: 0 0 16px;
  }

  .store-access-info h3 {
    margin-bottom: 15px;
    font-size: 15px;
  }

  .store-details {
    display: grid;
    gap: 25px;
  }

  .store-details dt {
    margin: 0;
    font-size: 14px;
  }

  .store-details dd {
    font-size: 14px;
    line-height: 1.8;
  }

  .store-map {
    width: 100%;
    max-width: 610px;
    min-height: 0;
    height: auto;
    margin: 0 auto 0 0;
    text-align: left;
  }

  .store-map iframe {
    width: 100%;
    height: 330px;
    min-height: 0;
  }

  .store-map .store-button {
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 30px 0 0;
  }

  .store-online-inner {
    display: grid;
    min-height: 0;
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .store-online h2 {
    font-size: 27px;
  }

  .store-button-light {
    width: 100%;
  }

  .store-instagram {
    padding-top: 55px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-store-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .store-slider .splide__slide,
  .store-button {
    transition: none;
  }
}

/* Kindal overseas store page: nearby / area store navigation */
.store-nearby-copy.js-store-reveal,
.store-nearby-map.js-store-reveal,
.store-nearby-card.js-store-reveal,
.store-area-directory-copy.js-store-reveal,
.store-area-list.js-store-reveal,
.store-area-all.js-store-reveal {
  transform: translate3d(0, 24px, 0);
}

.store-nearby-copy.js-store-reveal.is-visible,
.store-nearby-map.js-store-reveal.is-visible,
.store-nearby-card.js-store-reveal.is-visible,
.store-area-directory-copy.js-store-reveal.is-visible,
.store-area-list.js-store-reveal.is-visible,
.store-area-all.js-store-reveal.is-visible {
  transform: translate3d(0, 0, 0);
}


.store-nearby {
  padding-top: 110px;
}

.store-nearby-intro {
  display: block;
  margin-top: 42px;
}

.store-nearby-copy {
  max-width: 620px;
  font-size: 14px;
  line-height: 1.85;
}

.store-nearby-map {
  margin-top: 38px;
}

.store-nearby-map-frame {
  overflow: hidden;
  width: 100%;
  height: 450px;
  background: #f3f3f3;
}

.store-nearby-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(.92);
}

.store-nearby-map-note {
  margin-top: 10px;
  color: #777;
  font-size: 10px;
  letter-spacing: .06em;
  line-height: 1.6;
}

.store-nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.3vw, 48px);
  margin-top: 75px;
}

.store-nearby-card {
  min-width: 0;
}

.store-nearby-image-link {
  display: block;
  overflow: hidden;
}

.store-nearby-image-link img {
  display: block;
  width: 100%;
  height: clamp(170px, 16vw, 210px);
  object-fit: cover;
  filter: grayscale(.08);
  transition: transform .8s cubic-bezier(.22, 1, .36, 1), filter .35s ease;
}

.store-nearby-image-link:hover img,
.store-nearby-image-link:focus-visible img {
  transform: scale(1.025);
  filter: grayscale(0);
}

.store-nearby-card-meta {
  display: grid;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #d8d8d8;
}

.store-nearby-name {
  margin: 0;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.35;
}

.store-nearby-location {
  margin-top: 5px;
  color: #777;
  font-size: 10px;
  letter-spacing: .12em;
}

.store-nearby-link,
.store-area-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: inherit;
  text-decoration: none;
}

.store-nearby-link {
  width: fit-content;
  margin-top: 20px;
  padding-bottom: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
}

.store-nearby-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: .5px;
  background: currentColor;
  transition: width .35s ease;
}

.store-nearby-link:hover::after,
.store-nearby-link:focus-visible::after {
  width: 0;
}

.shop-link-arrow {
  display: block;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  transition: transform .3s ease;
}

.store-nearby-link:hover .shop-link-arrow,
.store-nearby-link:focus-visible .shop-link-arrow,
.store-area-link:hover .shop-link-arrow,
.store-area-link:focus-visible .shop-link-arrow,
.store-button:hover .shop-link-arrow,
.store-button:focus-visible .shop-link-arrow {
  transform: translateX(4px);
}

.store-nearby-card.js-store-reveal:nth-child(2) {
  transition-delay: .1s;
}

.store-nearby-card.js-store-reveal:nth-child(3) {
  transition-delay: .2s;
}

.store-area-directory {
  margin-top: 110px;
  background: #f7f7f7;
}

.store-area-directory-inner {
  padding-top: 88px;
  padding-bottom: 88px;
}

.store-area-directory-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.store-area-directory-copy {
  max-width: 420px;
  font-size: 13px;
  line-height: 1.8;
}

.store-area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(45px, 7vw, 100px);
  margin-top: 45px;
  border-top: 1px solid #cfcfcf;
}

.store-area-list li {
  border-bottom: 1px solid #cfcfcf;
}

.store-area-link {
  width: 100%;
  min-height: 68px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  transition: opacity .3s ease;
}

.store-area-link:hover,
.store-area-link:focus-visible {
  opacity: .5;
}

.store-area-all {
  display: flex;
  justify-content: flex-end;
  margin-top: 38px;
}

.store-area-all .store-button {
  margin: 0;
}

@media screen and (max-width:767px) {
  .store-nearby {
    padding-top: 70px;
  }

  .store-nearby-intro {
    margin-top: 20px;
  }

  .store-nearby-map {
    margin-top: 25px;
  }

  .store-nearby-map-frame {
    height: 280px;
  }

  .store-nearby-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 55px;
  }

  .store-nearby-image-link img {
    height: clamp(180px, 57vw, 230px);
  }

  .store-nearby-card.js-store-reveal:nth-child(n) {
    transition-delay: 0s;
  }

  .store-nearby-card-meta {
    margin-top: 16px;
  }

  .store-area-directory {
    margin-top: 75px;
  }

  .store-area-directory-inner {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .store-area-directory-head {
    display: grid;
    gap: 18px;
  }

  .store-area-list {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .store-area-link {
    min-height: 62px;
  }

  .store-area-all {
    margin-top: 30px;
  }

  .store-area-all .store-button {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion:reduce) {

  .store-nearby-image-link img,
  .shop-link-arrow {
    transition: none;
  }
}

.store-page--no-nearby .store-online {
  margin-top: 110px;
}

@media screen and (max-width: 767px) {
  .store-page--no-nearby .store-online {
    margin-top: 75px;
  }
}