:root {
  --bg: #faf7f1;
  --text: #1a1a1a;
  --text-soft: #4a4a46;
  --line: rgba(26, 26, 26, 0.14);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding:
    max(7vh, env(safe-area-inset-top) + 24px)
    max(6vw, env(safe-area-inset-right) + 20px)
    max(7vh, env(safe-area-inset-bottom) + 24px)
    max(6vw, env(safe-area-inset-left) + 20px);
}

.content {
  width: 100%;
  max-width: 30rem;
  margin: 0 auto;
  text-align: center;
}

.brand {
  margin: 0 0 clamp(2.2rem, 6vh, 3.2rem);
  line-height: 1.3;
}

.brand__main {
  display: block;
  font-size: clamp(1.6rem, 6.5vw, 2.3rem);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.brand__sub {
  display: block;
  margin-top: 0.5em;
  font-size: clamp(0.7rem, 2.6vw, 0.82rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--text-soft);
}

.catch {
  margin: 0 0 clamp(2.6rem, 7vh, 3.8rem);
  font-size: clamp(1rem, 3.6vw, 1.2rem);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.place {
  margin: 0 0 clamp(3.6rem, 10vh, 5.2rem);
  font-size: clamp(0.72rem, 2.6vw, 0.82rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--text-soft);
}

/*
  ONLINE SHOP ボタン用のスタイル。
  index.html 側のコメントを外して <div class="actions"><a class="cta">...</a></div>
  を有効にすると、そのまま見た目込みで表示されます。
*/
.actions {
  margin-bottom: clamp(2.6rem, 7vh, 3.6rem);
}

.cta {
  display: inline-block;
  padding: 0.9em 2.6em;
  border: 1px solid var(--text);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cta:hover,
.cta:focus-visible {
  background: var(--text);
  color: var(--bg);
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9em;
}

.status-row::before,
.status-row::after {
  content: "";
  height: 1px;
  width: clamp(1.4rem, 6vw, 2.4rem);
  background: var(--line);
}

.status {
  margin: 0;
  font-size: clamp(0.7rem, 2.6vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--text-soft);
}
