:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --muted: #888888;
  --border: #e0e0e0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  line-height: 1.8;
}

/* ===== モバイルロゴ ===== */
.mobile-logo {
  text-align: center;
  padding: 40px 28px 16px;
}
.mobile-logo img { width: 200px; }
.mobile-logo p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #888;
  margin-top: 10px;
}

/* ===== PC/モバイル切り替え ===== */
@media (min-width: 768px) {
  .mobile-only { display: none !important; }
}
@media (max-width: 767px) {
  .pc-only { display: none !important; }
}

/* ===== レイアウト ===== */
@media (min-width: 768px) {
  .layout {
    display: flex;
    align-items: flex-start;
  }
  .layout-left {
    position: sticky;
    top: 0;
    width: 50vw;
    height: 100vh;
    flex-shrink: 0;
  }
  .layout-right {
    width: 50vw;
    min-height: 100vh;
  }
}

/* ===== ヒーロースライド ===== */
.hero-swiper {
  width: 100%;
  height: 60vw;
}
@media (min-width: 768px) {
  .hero-swiper {
    height: 100vh;
  }
}
.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
object-fit: contain;
}
.hero-swiper .swiper-pagination-bullet { background: #fff; }
.hero-swiper .swiper-pagination-bullet-active { background: #fff; opacity: 1; }


@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===== PC右側情報 ===== */
.hero-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding: 80px 60px;
}
.hero-info img { width: 260px; }
.hero-info .since {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-top: 12px;
  display: block;
}
.divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 28px auto;
}
.hero-info p {
  font-size: 15px;
  color: var(--text);
  line-height: 2.2;
}
/* ===== モバイルキャッチ ===== */
.mobile-catch {
  padding: 24px 28px 40px;
  text-align: center;
  border-bottom: 0.5px solid var(--border);
  font-size: 13px;
  line-height: 2.2;
}

/* ===== セクション共通 ===== */
.section {
  padding: 60px 28px;
  border-top: 0.5px solid var(--border);
}
@media (min-width: 768px) { .section { padding: 72px 60px; } }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .section-title { font-size: 28px; }
  .feature-name { font-size: 16px; }
  .feature-desc { font-size: 14px; }
  .hours-main { font-size: 18px; }
  .hours-last { font-size: 15px; }
  .hours-note { font-size: 13px; }
  .pay-tag { font-size: 14px; }
  .address-text { font-size: 15px; }
  .hero-info p { font-size: 15px; }
  .cta-btn { font-size: 15px; }
  footer p { font-size: 13px; }
}

/* ===== Features ===== */
.feature-item { margin-bottom: 48px; text-align: center; }
.feature-item:last-child { margin-bottom: 0; }
.feature-name { font-size: 16px; margin-bottom: 6px; }
.feature-desc { font-size: 14px; color: var(--muted); line-height: 1.9; margin-bottom: 16px; }.hours-main { font-size: 14px; margin-bottom: 6px; }
.hours-last { font-size: 13px; margin-bottom: 10px; }
.hours-note { font-size: 12px; color: var(--muted); }
.pay-tag { font-size: 12px; padding: 5px 14px; }
.address-text { font-size: 13px; margin-bottom: 16px; text-align: center; }

/* フードスライダー */
.food-swiper {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 32px !important;
}
.food-swiper .swiper-slide {
  aspect-ratio: 4/3; /* 4:3のアスペクト比を維持 */
  overflow: hidden;
  border-radius: 2px;
  width: 70%;
}
.food-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.food-swiper .swiper-button-prev,
.food-swiper .swiper-button-next {
  color: var(--text);
  width: 32px;
  height: 32px;
}
.food-swiper .swiper-button-prev::after,
.food-swiper .swiper-button-next::after {
  font-size: 14px;
}

/* マイクアイコン */
.mic-img {
  width: 80px;
  opacity: 0.75;
  margin: 16px auto 0;
  display: block;
}

/* 内観写真 */
.inside-photo {
  margin-top: 16px;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.inside-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Hours ===== */
.hours-box {
  background: #f5f5f5;
  padding: 24px 20px;
  text-align: center;
}
.hours-main { margin-bottom: 6px; }
.hours-last { margin-bottom: 10px; }
.hours-note { color: var(--muted); }

/* ===== Payment ===== */
.pay-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.pay-tag {
  border: 0.5px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
}

/* ===== Access ===== */
.address-text {
  margin-bottom: 16px;
  text-align: center;
}
.map-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== CTA ===== */
.cta-section {
  padding: 52px 28px;
  text-align: center;
  border-top: 0.5px solid var(--border);
}
@media (min-width: 768px) { .cta-section { padding: 52px 60px; } }
.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn {
  flex: 1;
  min-width: 100px;
  max-width: 200px;
  padding: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.1em;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: block;
  transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
  background: #1a1a1a;
  color: #ffffff;
}
.cta-instagram {
  background: transparent;
  color: var(--text);
  border: 1px solid #E1306C;
}
.cta-line {
  background: transparent;
  color: #06C755;
  border: 1px solid #06C755;
}
.cta-tel {
  background: transparent;
  color: var(--text);
  border: 1px solid #1a1a1a;
}

/* ===== Footer ===== */
footer {
  padding: 24px 28px;
  text-align: center;
  border-top: 0.5px solid var(--border);
}
footer p {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
/* ===== SEI写真 ===== */
.sei-photos {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.sei-photos img {
  width: 32%;
  height: 150px;
  object-fit: cover;
}