:root {
  --cream: #fffaf0;
  --sand: #fff2d9;
  --gold: #e9a62b;
  --gold-deep: #b8791a;
  --green: #58a44c;
  --sky: #37a3d6;
  --coral: #ef6b56;
  --ink: #2e2a25;
  --ink-soft: #6f665c;
  --line: #ecdfc7;
  --white: #fff;
  --r: 20px;
  --r-sm: 12px;
  --shadow: 0 6px 20px rgba(120, 88, 30, .10);
  --shadow-lift: 0 14px 32px rgba(120, 88, 30, .18);
  --font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-round: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Maru Gothic ProN", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.9;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--ink); }

h1, h2, h3, .brand, .btn, .badge { font-family: var(--font-round); }

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 760px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 240, .92);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.brand {
  font-weight: 900;
  font-size: 18px;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}

.brand::before { content: "\1F33E"; margin-right: 6px; }

.global-nav { display: flex; gap: 6px; }

.global-nav a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background .2s, color .2s;
}

.global-nav a:hover { background: var(--sand); color: var(--gold-deep); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform .2s, opacity .2s;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(88, 164, 76, .18), transparent 45%),
    radial-gradient(circle at 88% 12%, rgba(55, 163, 214, .18), transparent 45%),
    linear-gradient(170deg, var(--sand) 0%, var(--cream) 100%);
  text-align: center;
  padding: 88px 0 104px;
}

.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -30px;
  height: 70px;
  background: var(--cream);
  border-radius: 50% 50% 0 0;
}

.hero-inner { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-round);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-deep);
  background: var(--white);
  border-radius: 999px;
  padding: 6px 18px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.hero-title-ja { font-size: 46px; font-weight: 900; line-height: 1.35; }

.hero-lead {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-round);
  color: var(--gold-deep);
}

.hero-body { margin-top: 20px; font-size: 15px; color: var(--ink-soft); }

.hero-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 36px;
  min-height: 52px;
  text-align: center;
  border: 3px solid transparent;
  transition: transform .15s, box-shadow .2s, background .2s;
}

.btn-primary { background: var(--gold); color: var(--white); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: var(--shadow-lift); }

.btn-secondary { background: var(--white); color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--gold); transform: translateY(-2px); }

.btn-block { display: block; width: 100%; }

.section { padding: 88px 0; }

.section-alt { background: var(--sand); }

.section-title { text-align: center; margin-bottom: 12px; }

.section-title .en {
  display: block;
  font-family: var(--font-round);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--ink);
}

.section-title .ja {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-deep);
  background: var(--white);
  border-radius: 999px;
  padding: 4px 16px;
}

.section-alt .section-title .ja { background: var(--cream); }

.section-lead { text-align: center; margin-bottom: 48px; font-size: 15px; color: var(--ink-soft); }

.sub-title { margin-top: 64px; margin-bottom: 24px; font-size: 22px; font-weight: 700; text-align: center; }

.sub-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
  margin: 12px auto 0;
}

.activity-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.activity-card {
  position: relative;
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .18s, box-shadow .2s;
}

.activity-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 8px; }

.activity-card:nth-child(5n+1)::before { background: var(--coral); }
.activity-card:nth-child(5n+2)::before { background: var(--green); }
.activity-card:nth-child(5n+3)::before { background: var(--sky); }
.activity-card:nth-child(5n+4)::before { background: var(--gold); }
.activity-card:nth-child(5n+5)::before { background: var(--gold-deep); }

.activity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.activity-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 36px 26px 28px;
  text-decoration: none;
}

.activity-card h3 { font-size: 22px; font-weight: 700; line-height: 1.5; }

.activity-tag {
  align-self: flex-start;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-deep);
  background: var(--sand);
  border-radius: 999px;
  padding: 4px 14px;
}

.activity-summary { margin-top: 18px; font-size: 14.5px; flex: 1; color: var(--ink-soft); }

.activity-freq {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 2px dotted var(--line);
  display: flex;
  gap: 12px;
  font-size: 13.5px;
}

.activity-freq dt { flex-shrink: 0; font-weight: 700; color: var(--gold-deep); }

.activity-more { display: inline-block; margin-top: 18px; font-size: 14px; font-weight: 700; color: var(--gold-deep); }
.activity-more::after { content: " \2192"; }

.activity-card.is-external { background: linear-gradient(160deg, #fff6e2, var(--white)); }

.external-note {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-soft);
  background: var(--sand);
  border-radius: var(--r-sm);
  padding: 8px 12px;
}

.external-note::before { content: "\2197 "; }

.news-list { list-style: none; max-width: 820px; margin: 0 auto; }

.news-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 18px 22px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}

.news-item time {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: var(--gold);
  border-radius: 999px;
  padding: 3px 14px;
  margin-top: 3px;
}

.news-item p { font-size: 14.5px; }

.table-scroll { overflow-x: auto; }

.schedule { width: 100%; min-width: 680px; border-collapse: separate; border-spacing: 0 10px; }

.schedule th {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  text-align: left;
  padding: 0 16px 4px;
  white-space: nowrap;
}

.schedule td {
  font-size: 14.5px;
  padding: 18px 16px;
  background: var(--white);
  vertical-align: middle;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.schedule td:first-child { border-radius: var(--r-sm) 0 0 var(--r-sm); border-left: 1px solid var(--line); }
.schedule td:last-child { border-radius: 0 var(--r-sm) var(--r-sm) 0; border-right: 1px solid var(--line); }

.sc-date { white-space: nowrap; font-weight: 700; }
.sc-name { font-weight: 700; }
.sc-name a { color: var(--gold-deep); }

.badge {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 16px;
  white-space: nowrap;
  color: var(--white);
}

.badge.is-open { background: var(--coral); }
.badge.is-planned { background: var(--green); }
.badge.is-closed { background: var(--ink-soft); }

.addr { font-size: 12.5px; color: var(--ink-soft); font-weight: 400; }

.note { margin-top: 24px; font-size: 13px; color: var(--ink-soft); text-align: center; }

.page-head {
  background: linear-gradient(170deg, var(--sand), var(--cream));
  padding: 64px 0 56px;
  border-bottom: 2px dotted var(--line);
}

.page-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-deep);
  background: var(--white);
  border-radius: 999px;
  padding: 4px 16px;
  margin-bottom: 16px;
}

.page-title .en { display: block; font-size: 34px; font-weight: 900; line-height: 1.3; }

.page-title .ja {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-deep);
  background: var(--white);
  border-radius: 999px;
  padding: 4px 16px;
}

.page-title .ja-lg { display: block; font-size: 34px; font-weight: 900; line-height: 1.35; }

.page-lead { margin-top: 20px; font-size: 15.5px; color: var(--ink-soft); max-width: 720px; }

.block-title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 56px;
  margin-bottom: 18px;
  padding-left: 16px;
  border-left: 6px solid var(--gold);
}

.block-title:first-child { margin-top: 0; }

.placeholder-block {
  background: var(--white);
  border: 2px dashed var(--line);
  border-radius: var(--r);
  padding: 28px 26px;
}

.placeholder-block p + p { margin-top: 16px; }

.placeholder-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background: var(--coral);
  border-radius: 999px;
  padding: 3px 14px;
  margin-bottom: 14px;
}

.page-back { margin-top: 64px; font-size: 15px; font-weight: 700; }
.page-back a { color: var(--gold-deep); }

.notice { background: var(--sand); border-radius: var(--r); padding: 18px 22px; font-size: 14.5px; margin-bottom: 40px; }

.contact-form .field { margin-bottom: 26px; }

.contact-form label { display: block; font-size: 15px; font-weight: 700; margin-bottom: 8px; }

.req {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: var(--coral);
  border-radius: 999px;
  padding: 2px 10px;
  margin-left: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  min-height: 52px;
  transition: border-color .2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--gold); }

.contact-form textarea { resize: vertical; }

.form-error { font-size: 14.5px; font-weight: 700; color: var(--coral); margin-bottom: 16px; }

.form-result { margin-top: 20px; background: var(--sand); border-radius: var(--r); padding: 18px 22px; font-size: 14.5px; }

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

.store-item { background: var(--white); border-radius: var(--r); padding: 36px 28px; box-shadow: var(--shadow); }

.store-item h2, .store-item h3 { font-size: 21px; font-weight: 700; margin-bottom: 12px; }

.store-item p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 22px; }

.store-banner img { border-radius: var(--r-sm); }

.company-table { width: 100%; min-width: 520px; border-collapse: collapse; }

.company-table th {
  width: 170px;
  text-align: left;
  vertical-align: top;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--gold-deep);
  padding: 20px 16px 20px 0;
  border-bottom: 2px dotted var(--line);
}

.company-table td { font-size: 14.5px; padding: 20px 0; border-bottom: 2px dotted var(--line); }

.site-footer { background: var(--ink); color: var(--cream); padding: 56px 0 40px; text-align: center; }

.site-footer a { color: var(--cream); }

.footer-brand { font-family: var(--font-round); font-weight: 900; font-size: 20px; margin-bottom: 20px; }

.footer-nav, .footer-sns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 20px;
}

.footer-nav a {
  font-size: 14px;
  text-decoration: none;
  opacity: .85;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 8px;
}
.footer-nav a:hover { opacity: 1; text-decoration: underline; }

.footer-sns a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255, 250, 240, .35);
  border-radius: 999px;
  padding: 10px 22px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: background .2s, border-color .2s;
}

.footer-sns a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.site-footer small { font-size: 12.5px; opacity: .7; }

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  border-radius: 999px;
  text-decoration: none;
  font-size: 20px;
  box-shadow: var(--shadow-lift);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, transform .2s;
}

body.scrolled .to-top { opacity: 1; visibility: visible; }
.to-top:hover { transform: translateY(-3px); }

@media (max-width: 1024px) {
  .activity-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  body { line-height: 1.8; }
  .section { padding: 64px 0; }
  .pc-only { display: none; }

  .global-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 2px solid var(--line);
    flex-direction: column;
    gap: 4px;
    padding: 12px 20px 20px;
  }

  .global-nav a { padding: 14px 16px; font-size: 15px; background: var(--white); }

  body.nav-open .global-nav { display: flex; }

  .nav-toggle { display: flex; }

  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

  .hero { padding: 64px 0 80px; }
  .hero-title-ja { font-size: 30px; }
  .hero-lead { font-size: 19px; }

  .brand { font-size: 15px; }

  .section-title .en { font-size: 27px; }
  .page-title .en, .page-title .ja-lg { font-size: 27px; }

  .activity-grid { grid-template-columns: 1fr; }
  .store-grid { grid-template-columns: 1fr; }
  .store-item { padding: 28px 22px; }

  .news-item { flex-direction: column; gap: 8px; }
  .news-item time { margin-top: 0; }

  .block-title { margin-top: 44px; font-size: 20px; }
}
