:root {
  --text: #111;
  --sub: #666;
  --line: #d9d9d9;
  --soft: #f7f7f7;
  --content: 1180px;
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Futura", "Avenir Next", "Century Gothic", Arial, sans-serif;
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none
}

.shop-list-page {
  overflow: hidden
}

.shop-list-inner {
  width: min(calc(100% - 80px), var(--content));
  margin-inline: auto;
}

/* INTRO / JAPAN MAP */
.shop-list-intro {
  position: relative;
  z-index: 0;
  margin: 0 0 50px;
  padding: 80px 0 60px;
  background: #fafafa;
}

.shop-list-intro-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.shop-list-title {
  margin: 0;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: bold;
  line-height: 1.15;
  letter-spacing: 0.06em;
}

.shop-list-lead {
  max-width: 650px;
  margin: 30px 0 0;
  font-size: 17px;
  line-height: 2;
}

.shop-japan-map {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  margin: clamp(-100px, -10vw, -50px) auto 50px;
}

.map-pop-animation {
  animation: map-pop 1.2s cubic-bezier(.22, 1, .36, 1) .5s both;
}

@keyframes map-pop {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(1.03);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.shop-map-object {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1000 / 900;
  border: 0;
}

.shop-map-object--sp {
  display: none
}

@media screen and (max-width:1079px) {
  .shop-map-object--pc {
    display: none
  }

  .shop-map-object--sp {
    display: block
  }
}

/* LIST */
.shop-list-content {
  padding: 40px 0 80px
}

.shop-area+.shop-area {
  margin-top: 100px
}

.shop-area-heading {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: .06em;
}

.shop-items {
  margin-top: 25px;
  border-bottom: 1px solid var(--line);
}

.shop-item {
  position: relative;
  cursor: pointer;
  display: grid;
  grid-template-columns:
    minmax(240px, 1fr) minmax(20px, 1.5fr) minmax(130px, auto);
  align-items: center;
  gap: 45px;
  min-height: 132px;
  padding: 28px 18px;
  border-top: 1px solid var(--line);
  transition: background-color .3s ease, padding .3s ease;
}

.shop-item:hover {
  padding-inline: 28px;
  background: var(--soft);
}

.shop-name {
  margin: 0;
  font-size: 18px;
  max-width: 300px;
  line-height: 1.45;
  letter-spacing: .08em;
}

.shop-location {
  margin: 6px 0 0;
  color: var(--sub);
  font-size: 13px;
  line-height: 1.5;
}

.shop-address {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

.shop-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 110px;
  padding: 8px 0;
  border-bottom: 1px solid #222;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.shop-link::after {
  content: "";
  position: absolute;
  inset: 0;
}

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

.shop-item:hover .shop-link-arrow,
.shop-item:focus-within .shop-link-arrow {
  transform: translateX(2px)
}

.shop-item:focus-within {
  background: var(--soft)
}

.shop-link:focus-visible {
  outline: none
}

.shop-area {
  margin: 0 0 150px;
}

.shop-area,
.shop-area-anchor-list span {
  scroll-margin-top: 40px;
}

.shop-area-anchor-list {
  position: relative;
  height: 0;
  overflow: hidden;
}

/* MAP CTA */
.shop-map-cta {
  margin-top: 95px;
  padding: 42px 48px;
  background: var(--soft);
}

.shop-map-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.shop-map-copy {
  display: flex;
  align-items: center;
  gap: 24px;
}

.shop-map-pin {
  flex: 0 0 auto;
  width: 28px;
  height: auto;
  color: #111;
}

.shop-map-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
}

.shop-map-text {
  margin: 4px 0 0;
  color: var(--sub);
  font-size: 13px;
}

.shop-map-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  min-width: 350px;
  padding: 17px 22px;
  border: 1px solid #111;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  transition: color .25s ease, background-color .25s ease;
}

.shop-map-button:hover {
  color: #fff;
  background: #111;
}

.shop-map-button .external-link-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-left: 6px;
  transition: .3s;
  transition: transform .3s ease;
}

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

/* REVEAL */
.js-shop-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .75s ease, transform .85s cubic-bezier(.22, 1, .36, 1);
}

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

@media screen and (max-width:900px) {
  .shop-list-inner {
    width: min(calc(100% - 56px), var(--content))
  }

  .shop-list-intro {
    padding: 85px 0 75px
  }

  .shop-japan-map {
    margin: 20px auto;
  }

  .shop-item {
    grid-template-columns: minmax(150px, .8fr) minmax(240px, 1.4fr) auto;
    gap: 28px;
  }

  .shop-map-cta-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .shop-map-button {
    width: 100%;
    min-width: 0;
  }
}

@media screen and (max-width:767px) {
  .shop-list-inner {
    width: calc(100% - 48px)
  }

  .shop-list-intro {
    padding: 65px 0 60px
  }

  .shop-list-title {
    font-size: 38px;
    letter-spacing: .12em;
  }

  .shop-list-lead {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.9;
  }

  .shop-list-intro {
    padding-bottom: 45px;
  }

  .shop-japan-map {
    width: 100%;
    margin: 20px auto;
  }

  .shop-list-content {
    padding-bottom: 85px
  }

  .shop-area+.shop-area {
    margin-top: 70px
  }

  .shop-area-heading {
    gap: 18px;
    font-size: 21px;
  }

  .shop-items {
    margin-top: 18px
  }

  .shop-item {
    grid-template-columns: 1fr;
    gap: 15px;
    min-height: 0;
    padding: 32px 0;
  }

  .shop-item:hover {
    padding-inline: 0;
    background: transparent;
  }

  .shop-name {
    font-size: 17px
  }

  .shop-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: fit-content;
    padding: 5px 15px;
    border: 1px solid #ccc;
  }

  .shop-link::before,
  .shop-link::after {
    content: none;
  }

  .shop-link-arrow {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
  }

  .shop-map-cta {
    margin-top: 70px;
    padding: 30px 24px;
  }

  .shop-map-copy {
    align-items: flex-start
  }

  .shop-map-button {
    gap: 20px;
    padding: 16px 17px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .js-shop-reveal {
    opacity: 1;
    transform: none;
  }
}