:root {
  --bg-color: #FFFFFF;
  --text-color: #111111;
  --border-color: #e5e5e5;
  --dot-color: #cccccc;
  --dot-active: #888888;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-weight: 400;
}

main {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1 {
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 0;
  line-height: 1.6;
}

h2 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 8px 0;
}

p {
  font-size: 16px;
  margin: 0 0 16px 0;
}

.price {
  margin-bottom: 24px;
}

.note {
  display: block;
  margin-top: 24px;
  /* 余白で弱く見せる */
}

.caption {
  margin-top: 8px;
}

address {
  font-style: normal;
  font-size: 16px;
  margin-bottom: 8px;
}

a {
  color: inherit;
  text-decoration: underline;
  font-size: 16px;
}

a:hover {
  opacity: 0.8;
  /* PCホバー時の控えめな変化 */
}

/* Layout & Spacing */
section {
  padding: 48px 0;
}

#hero {
  /* 1画面に収めるための調整（余白少なめ） */
  padding-top: 24px;
  padding-bottom: 24px;
}

hr.section-divider {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 0;
}

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

.info-group {
  margin-bottom: 32px;
}

.info-group:last-child {
  margin-bottom: 0;
}

/* Carousel (店内写真) */
.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track img {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--dot-color);
  border: none;
  padding: 0;
  cursor: pointer;
}

.dot.active {
  background-color: var(--dot-active);
}