@charset "UTF-8";

/* =========================
   base
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: #2b211b;
  background: #fffdf8;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1.4em;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.45;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 1em;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.7em;
}

.section-label {
  display: inline-block;
  margin-bottom: 0.7em;
  color: #9a3f1f;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* =========================
   header
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(43, 33, 27, 0.96);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.header-inner {
  width: min(1180px, 94%);
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo a {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.logo span {
  display: block;
  font-size: 0.75rem;
  opacity: 0.85;
}

.header-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.header-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.sns-link {
  background: #fff;
  color: #2b211b;
}

.reserve-link {
  background: #b74724;
  color: #fff;
}

/* =========================
   nav
========================= */

.global-nav {
  background: #f3eadc;
  border-bottom: 1px solid #e3d5c2;
}

.global-nav ul {
  width: min(1120px, 94%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.global-nav a {
  display: block;
  padding: 13px 18px;
  font-size: 0.95rem;
  font-weight: 700;
}

.global-nav a:hover {
  color: #9a3f1f;
}

/* =========================
   hero
========================= */

.hero {
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(43,33,27,0.86), rgba(43,33,27,0.52), rgba(43,33,27,0.18)),
    url("images/main.png") center / cover no-repeat;
  color: #fff;
  display: grid;
  align-items: center;
  padding: 90px 0;
}

.hero-content {
  width: min(1120px, 98%);
  margin: 0 auto;
  max-width: 900px;
}

.hero-sub {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  font-weight: 700;
}

.hero h1 {
  font-size: calc(1.1vw + 31px);
  margin-bottom: 28px;
  text-shadow: 0 3px 18px rgba(0,0,0,0.45);
  text-align: center;
}

.hero-text {
  max-width: 750px;
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 auto;
}

.hero-buttons,
.bottom-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* =========================
   buttons
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.btn.primary {
  background: #b74724;
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: #2b211b;
  border: 1px solid #e5d6c0;
}

/* =========================
   intro
========================= */

.intro-box {
  padding: 56px 0;
  background: #2b211b;
  color: #fff;
  text-align: center;
}

.intro-box h2 {
  color: #f6d494;
}

.intro-box p {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   sections
========================= */

.content-section {
  padding: 92px 0;
}

.bg-light {
  background: #f7efe3;
}

.bg-dark {
  background: #2b211b;
  color: #fff;
}

.bg-dark .section-label {
  color: #f6d494;
}

.two-column {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.two-column.reverse .text-block {
  order: 2;
}

.two-column.reverse .image-block {
  order: 1;
}

.image-block img {
  width: 100%;
  aspect-ratio: 4 / 4;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(43,33,27,0.16);
}

.lead {
  max-width: 860px;
  font-size: 1.08rem;
  margin-bottom: 36px;
}

.wide-text {
  max-width: 960px;
}

/* =========================
   cards
========================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.card {
  background: #fffdf8;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(43,33,27,0.08);
  border: 1px solid #eadcc8;
}

.card h3 {
  color: #9a3f1f;
}

/* =========================
   seo text
========================= */

.seo-text {
  margin-top: 46px;
  padding: 32px;
  background: rgba(255,255,255,0.72);
  border: 1px solid #eadcc8;
  border-radius: 20px;
}

.light-text {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}

/* =========================
   point list
========================= */

.point-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.point-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.6em;
  font-weight: 700;
}

.point-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #b74724;
}

/* =========================
   menu
========================= */

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.menu-item {
  padding: 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
}

.menu-item h3 {
  color: #f6d494;
}

/* =========================
   tourism
========================= */

.tourism-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.tourism-grid article {
  background: #fffdf8;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid #eadcc8;
}

.tourism-grid h3 {
  color: #9a3f1f;
}

/* =========================
   shop info
========================= */

.shop-info {
  padding: 82px 0;
  background: #fffdf8;
}

.shop-info table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #eadcc8;
}

.shop-info th,
.shop-info td {
  padding: 18px 20px;
  border-bottom: 1px solid #eadcc8;
  vertical-align: top;
  text-align: left;
}

.shop-info th {
  width: 190px;
  background: #f7efe3;
  color: #6d3b25;
}

.shop-info td a {
  color: #9a3f1f;
  font-weight: 700;
}

/* =========================
   footer
========================= */

.site-footer {
  padding: 42px 0;
  background: #2b211b;
  color: #fff;
  text-align: center;
}

.footer-logo {
  margin-bottom: 8px;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.copy {
  margin-top: 18px;
  font-size: 0.85rem;
  opacity: 0.72;
}

/* =========================
   responsive
========================= */

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

  .header-links {
    width: 100%;
  }

  .header-links a {
    flex: 1;
  }


  .hero {
    min-height: 540px;
  }
  .hero h1 {
  font-size: calc(2.6vw + 11px);
}

  .two-column,
  .two-column.reverse {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .two-column.reverse .text-block,
  .two-column.reverse .image-block {
    order: initial;
  }

  .card-grid,
  .tourism-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  body {
    line-height: 1.85;
  }

  .logo a {
    font-size: 1.55rem;
  }

  .global-nav ul {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .global-nav a {
    white-space: nowrap;
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: auto;
    padding: 70px 0;
    background:
      linear-gradient(90deg, rgba(43,33,27,0.9), rgba(43,33,27,0.66)),
      url("images/main.png") center / cover no-repeat;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .content-section {
    padding: 64px 0;
  }

  .intro-box {
    padding: 42px 0;
  }

  .card-grid,
  .menu-list,
  .tourism-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .menu-item,
  .tourism-grid article,
  .seo-text {
    padding: 24px;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .shop-info th,
  .shop-info td {
    display: block;
    width: 100%;
  }

  .shop-info th {
    border-bottom: none;
    padding-bottom: 8px;
  }

  .shop-info td {
    padding-top: 8px;
  }
}