:root {
  --brand-color: #2fc8c3;
  --brand-deep: #0d8791;
  --brand-ink: #07566a;
  --background-light: #f5fbfa;
  --surface: #ffffff;
  --text-color: #15343a;
  --muted-color: #5d7478;
  --line-color: #d8e8e6;
  --line-green: #06c755;
  --hpb-color: #e85f75;
  --shadow: 0 14px 36px rgb(8 79 88 / 14%);
  --radius-large: 22px;
  --content-width: 640px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text-color);
  background: var(--background-light);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic",
    "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.7;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--surface);
  background: var(--brand-ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: max(20px, env(safe-area-inset-top)) 18px 48px;
  background: var(--brand-color);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 260px;
  height: 260px;
  top: -155px;
  right: -95px;
  border: 42px solid rgb(255 255 255 / 16%);
}

.hero::after {
  width: 170px;
  height: 170px;
  bottom: 78px;
  left: -115px;
  border: 30px solid rgb(4 91 105 / 9%);
}

.hero__inner,
.content-width {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.brand-mark {
  display: block;
  width: clamp(72px, 21vw, 108px);
  height: auto;
  margin: 0 auto 6px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.eyebrow {
  margin: 2px 0 3px;
  color: #064d5c;
  font-size: clamp(0.92rem, 4.2vw, 1.08rem);
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1.35;
}

h1 {
  margin: 0;
  color: #053e4c;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 1.25;
}

.lead {
  margin: 10px auto 17px;
  color: #093f4b;
  font-size: clamp(0.9rem, 3.8vw, 1rem);
  font-weight: 600;
  line-height: 1.65;
  white-space: pre-line;
}

.primary-actions {
  display: grid;
  gap: 10px;
}

.action-button {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 16px;
  align-items: center;
  min-height: 92px;
  padding: 10px 17px 10px 12px;
  color: #29474d;
  background: var(--surface);
  text-align: left;
  text-decoration: none;
  border: 2px solid rgb(255 255 255 / 75%);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

.action-button--line {
  color: #29474d;
}

.action-button__icon {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 13px;
}

.action-button__badge {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--surface);
  background: var(--line-green);
  border-radius: 13px;
  font-size: 0.66rem;
  font-weight: 900;
}

.action-button__badge--hpb {
  color: var(--surface);
  background: var(--hpb-color);
}

.action-button strong,
.action-button small {
  display: block;
}

.action-button strong {
  font-size: 0.97rem;
  line-height: 1.35;
  text-wrap: balance;
}

.action-button__service {
  white-space: nowrap;
}

.action-button small {
  margin-top: 2px;
  font-size: 0.69rem;
  font-weight: 500;
  opacity: 0.82;
}

.action-button__arrow {
  justify-self: end;
  font-family: Arial, sans-serif;
  font-size: 1.7rem;
  line-height: 1;
}

.action-button:hover {
  filter: brightness(1.02);
  box-shadow: 0 17px 40px rgb(8 79 88 / 19%);
  transform: translateY(-2px);
}

.action-button:active {
  transform: translateY(0);
}

.action-button:focus-visible,
.detail-link:focus-visible,
.social-area a:focus-visible {
  outline: 3px solid var(--brand-ink);
  outline-offset: 4px;
}

.detail-link {
  display: inline-block;
  margin-top: 13px;
  color: #084b58;
  font-size: 0.78rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.store-section {
  padding: 58px 22px 52px;
  background: var(--background-light);
}

.section-kicker {
  margin: 0 0 2px;
  color: var(--brand-deep);
  font-family: Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 26px;
  color: var(--text-color);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
}

.store-info {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line-color);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgb(29 84 88 / 7%);
}

.store-info__row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
}

.store-info__row + .store-info__row {
  border-top: 1px solid var(--line-color);
}

.store-info dt {
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.store-info dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.75;
}

.store-info dd small {
  display: block;
  margin-top: 2px;
  color: var(--muted-color);
  font-size: 0.73rem;
  font-weight: 500;
}

.social-area {
  margin-top: 28px;
  color: var(--muted-color);
  text-align: center;
}

.social-area p {
  margin: 0 0 8px;
  font-size: 0.72rem;
}

.social-area a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 18px;
  color: var(--brand-ink);
  font-family: Georgia, serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #a9cfcc;
  border-radius: 999px;
}

footer {
  padding: 20px 16px calc(20px + env(safe-area-inset-bottom));
  color: #688084;
  background: var(--background-light);
  border-top: 1px solid var(--line-color);
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

@media (max-width: 559px) {
  .action-button {
    min-height: 84px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .store-info__row {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (max-width: 359px) {
  .action-button {
    grid-template-columns: 48px minmax(0, 1fr) 14px;
    padding-right: 14px;
    padding-left: 10px;
  }

  .action-button strong {
    font-size: 0.91rem;
  }
}

@media (min-width: 560px) {
  .hero {
    padding-top: 34px;
    padding-bottom: 52px;
  }
}

@media (min-width: 768px) {
  .hero {
    min-height: auto;
    padding-bottom: 76px;
  }
}

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

  .action-button {
    transition: none;
  }
}
