:root {
  --santen-red: #a61f24;
  --santen-red-dark: #7c1419;
  --santen-gold: #c9952f;
  --ink: #2f2925;
  --muted: #6d645e;
  --line: #ded4c7;
  --paper: #fffdf9;
  --warm: #f7f1e7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-feature-settings: "palt";
  line-height: 1.7;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 40px, 980px);
  margin-inline: auto;
}

.page-title {
  position: relative;
  overflow: hidden;
  border-bottom: 6px solid var(--santen-gold);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%) 0 0 / 22px 22px,
    var(--santen-red);
  color: #fff;
  text-align: center;
}

.page-title::before,
.page-title::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.page-title::before {
  top: -135px;
  left: -80px;
  width: 260px;
  height: 260px;
}

.page-title::after {
  right: -55px;
  bottom: -110px;
  width: 220px;
  height: 220px;
}

.page-title .container {
  position: relative;
  z-index: 1;
  padding-block: 58px 52px;
}

.title-logo {
  display: block;
  width: clamp(132px, 18vw, 176px);
  height: auto;
  margin: 0 auto 20px;
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(74, 7, 10, 0.25);
}

.page-title h1 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.page-lead {
  margin: 16px auto 0;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
}

.page-content {
  padding-block: 46px 72px;
}

.area-jump {
  padding: 24px 26px 26px;
  border-top: 3px solid var(--santen-red);
  background: var(--warm);
}

.area-jump > p {
  margin: 0 0 16px;
  color: var(--santen-red-dark);
  font-weight: 700;
  text-align: center;
}

.area-jump-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.area-jump-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid #cdbda9;
  background: #fff;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.area-jump-list a::after {
  margin-left: 8px;
  color: var(--santen-red);
  content: "↓";
}

.area-jump-list a:hover {
  border-color: var(--santen-red);
  color: var(--santen-red);
  transform: translateY(-1px);
}

.area-jump-list a:focus-visible,
.store-link:focus-visible {
  outline: 3px solid rgba(166, 31, 36, 0.3);
  outline-offset: 3px;
}

.area-list {
  display: grid;
  gap: 48px;
  margin-top: 54px;
}

.area-section {
  scroll-margin-top: 24px;
}

.area-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.area-heading > span {
  width: 7px;
  height: 30px;
  background: var(--santen-red);
  box-shadow: 4px 0 0 var(--santen-gold);
}

.area-heading h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.55rem;
  line-height: 1.3;
}

.area-heading small {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.78rem;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.store-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 88px;
  padding: 15px 18px 15px 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--santen-red);
  background: #fff;
  box-shadow: 0 3px 12px rgba(75, 48, 28, 0.045);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

a.store-link:hover {
  border-color: #c8a8a5;
  box-shadow: 0 8px 20px rgba(75, 48, 28, 0.09);
  transform: translateY(-2px);
}

.store-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.store-name {
  display: block;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.store-address {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.55;
}

.store-action {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--santen-red);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.store-arrow {
  display: grid;
  width: 27px;
  height: 27px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--santen-red);
  color: #fff;
  font-size: 0.95rem;
  line-height: 1;
  place-items: center;
  transition: background-color 160ms ease;
}

a.store-link:hover .store-arrow {
  background: var(--santen-red-dark);
}

.store-link.is-disabled {
  border-left-color: #aaa29a;
  background: #f2f0ed;
  color: #817a74;
  box-shadow: none;
}

.store-link.is-disabled .store-action {
  color: #817a74;
}

.page-note {
  margin: 48px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 980px);
  }

  .page-title .container {
    padding-block: 42px 38px;
  }

  .title-logo {
    width: 126px;
    margin-bottom: 16px;
    border-width: 3px;
  }

  .page-title h1 {
    font-size: clamp(1.75rem, 8.8vw, 2.35rem);
    letter-spacing: 0.04em;
  }

  .page-lead {
    margin-top: 12px;
    font-size: 0.88rem;
    line-height: 1.75;
  }

  .page-content {
    padding-block: 30px 52px;
  }

  .area-jump {
    padding: 20px 16px;
  }

  .area-jump-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .area-list {
    gap: 38px;
    margin-top: 42px;
  }

  .area-heading h2 {
    font-size: 1.35rem;
  }

  .store-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .store-link {
    min-height: 82px;
    padding: 13px 14px 13px 16px;
  }

  .store-name {
    font-size: 0.94rem;
  }

  .store-address {
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .area-jump-list a,
  .store-link,
  .store-arrow {
    transition: none;
  }
}
