:root {
  --bg: #f2f2f2;
  --surface: #ffffff;
  --surface-soft: #f7f7f7;
  --text: #111111;
  --muted: #555555;
  --accent: #4b3b2f;
  --accent-strong: #3f332b;
  --line: #d7d7d7;
  --shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  --max: 1060px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  background: linear-gradient(90deg, #e8e8e8 0%, #f5f5f5 8%, #f5f5f5 92%, #e8e8e8 100%);
  color: var(--text);
  line-height: 1.8;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
}

.skip-link:focus {
  left: 8px;
}

.site-header {
  position: relative;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}

.site-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-title a {
  color: var(--text);
  text-decoration: none;
}

.global-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.global-nav a {
  display: block;
  text-decoration: none;
  color: var(--text);
  padding: 8px 9px;
  border-radius: 8px;
  font-size: 0.84rem;
}

.global-nav a:hover,
.global-nav a[aria-current="page"] {
  background: transparent;
  color: #000;
  font-weight: 700;
}

.has-submenu {
  position: relative;
}

.has-submenu > ul {
  position: absolute;
  left: 0;
  top: calc(100% + 2px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  min-width: 180px;
  box-shadow: var(--shadow);
  display: none;
  padding: 4px;
  flex-direction: column;
  z-index: 20;
}

.has-submenu:hover > ul,
.has-submenu:focus-within > ul {
  display: flex;
}

.has-submenu > ul a {
  padding: 8px 10px;
}

.page {
  width: min(var(--max), calc(100% - 32px));
  margin: 26px auto 48px;
}

.hero,
.section,
.embed-panel,
.notice,
.card,
.surface {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.hero {
  overflow: hidden;
}

.hero img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-body {
  padding: 16px 18px;
}

.hero h1,
.page h1 {
  margin-top: 0;
  line-height: 1.35;
  font-size: clamp(1.45rem, 2.7vw, 2rem);
}

.page h2 {
  margin: 0 0 10px;
  line-height: 1.4;
  font-size: clamp(1.12rem, 2vw, 1.4rem);
}

.page h3 {
  margin: 20px 0 8px;
  font-size: 1rem;
}

.muted {
  color: var(--muted);
}

.section,
.surface,
.notice,
.embed-panel {
  padding: 16px;
  margin-top: 12px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 6px;
  border: 1px solid var(--accent-strong);
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: var(--accent-strong);
}

.btn-outline {
  background: transparent;
  color: var(--accent-strong);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.card {
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 12px;
}

.card-title {
  margin: 0;
  font-weight: 700;
}

.card-text {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

dl,
ul,
ol {
  margin: 0;
  padding-left: 1.25em;
}

li + li {
  margin-top: 4px;
}

dl dt {
  font-weight: 700;
}

dl dd {
  margin: 0 0 10px;
}

.media {
  margin-top: 10px;
}

.media img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.two-col {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.embed-frame {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: #fff;
  min-height: 560px;
}

.embed-frame.calendar {
  min-height: 680px;
}

.embed-frame.small-calendar {
  min-height: 520px;
}

.embed-frame.form {
  min-height: 1200px;
}

.embed-frame.booking {
  min-height: 680px;
}

.embed-frame.gallery {
  min-height: 860px;
}

.shop-box {
  display: grid;
  gap: 14px;
  grid-template-columns: 180px 1fr;
  align-items: center;
}

.shop-box img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 24px auto 40px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

/* TOPをGoogle Sitesの見え方に寄せる */
.page-home .hero {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.page-home .hero img {
  border: 1px solid var(--line);
}

.page-home .hero-body {
  text-align: center;
  padding: 8px 0 4px;
}

.page-home .hero-body h1 {
  display: none;
}

.page-home .cta-row {
  justify-content: center;
  margin-top: 8px;
}

.page-home .section {
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
  margin-top: 16px;
}

.page-home .section h2 {
  display: none;
}

.page-home .grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.page-home .card {
  border: 0;
  box-shadow: none;
  background: transparent;
}

.page-home .card img {
  aspect-ratio: auto;
}

.page-home .card-body {
  display: none;
}

.page-home .shop-box {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.page-home .shop-box img {
  width: min(360px, 100%);
}

@media (max-width: 860px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

  .global-nav ul {
    gap: 1px;
  }

  .global-nav a {
    padding: 8px;
    font-size: 0.88rem;
  }

  .has-submenu > ul {
    position: static;
    display: flex;
    margin-top: 4px;
    box-shadow: none;
  }

  .shop-box {
    grid-template-columns: 1fr;
  }

  .embed-frame.gallery {
    min-height: 620px;
  }

  .page-home .grid {
    gap: 12px;
  }
}
