/* 炭火焼鳥 とり吉 — 和モダン（濃紺×金） */

:root {
  --bg: #fbf9f4;
  --navy: #1b2436;
  --navy-deep: #131a28;
  --gold: #c8a45d;
  --ink: #2e2a24;
  --line: #ddd6c8;
}

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

body {
  font-family: "Shippori Mincho B1", serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 2;
  letter-spacing: 0.08em;
}

/* header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5vw;
  background: var(--navy);
  color: #f4efe4;
}

.logo { font-size: 20px; font-weight: 600; }
.logo-strong { font-size: 26px; color: var(--gold); margin-left: 4px; }

.nav { display: flex; align-items: center; }

.nav a {
  color: #f4efe4;
  text-decoration: none;
  margin-left: 26px;
  font-size: 14px;
}

.nav a:hover { color: var(--gold); }

.nav-reserve {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 7px 20px;
}

/* hero */
.hero {
  display: flex;
  align-items: stretch;
  background:
    radial-gradient(ellipse at 20% 110%, rgba(200,164,93,0.25), transparent 55%),
    linear-gradient(165deg, var(--navy), var(--navy-deep));
  color: #f4efe4;
  padding: 90px 8vw;
  gap: 6vw;
}

.hero-tate { display: flex; align-items: center; }

.tate-text {
  writing-mode: vertical-rl;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.3em;
  border-right: 1px solid rgba(200,164,93,0.4);
  padding-right: 24px;
}

.hero-main { align-self: center; }

.hero-sub {
  color: var(--gold);
  letter-spacing: 0.3em;
  font-size: 15px;
  margin-bottom: 18px;
}

.hero-main h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  margin-bottom: 16px;
}

/* sections */
.section { padding: 90px 5vw; max-width: 880px; margin: 0 auto; }

.section-title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 54px;
}

.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}

/* こだわり */
.kodawari-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }

.kodawari-item { text-align: center; }

.kodawari-num {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 22px;
}

.kodawari-item h3 { font-size: 19px; margin-bottom: 10px; }
.kodawari-item p { font-size: 14px; text-align: left; }

/* menu */
.section-dark {
  background: var(--navy);
  color: #f4efe4;
  max-width: none;
}

.section-dark > * { max-width: 880px; margin-left: auto; margin-right: auto; }

.title-light::after { background: var(--gold); }

.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

.menu-col h3 {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(200,164,93,0.4);
}

.menu-col ul { list-style: none; }

.menu-col li {
  display: flex;
  justify-content: space-between;
  padding: 9px 2px;
  font-size: 15px;
  border-bottom: 1px dotted rgba(244,239,228,0.2);
}

.menu-note { margin-top: 34px; font-size: 13px; text-align: center; opacity: 0.75; }

/* access */
.info-table { width: 100%; border-collapse: collapse; }

.info-table th, .info-table td {
  text-align: left;
  padding: 14px 8px;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
}

.info-table th { width: 110px; color: var(--gold); white-space: nowrap; }

/* cta */
.cta { text-align: center; padding: 80px 5vw; }

.cta-lead { font-size: 18px; }

.cta-button {
  display: inline-block;
  margin: 22px 0 18px;
  padding: 16px 58px;
  background: var(--navy);
  color: var(--gold);
  text-decoration: none;
  font-size: 24px;
  letter-spacing: 0.12em;
  transition: 0.3s;
}

.cta-button:hover { background: var(--navy-deep); }
.cta-sub { font-size: 13px; color: #6d6656; }

/* footer */
.footer { text-align: center; padding: 34px 0 26px; background: var(--navy-deep); color: #f4efe4; }
.footer-copy { font-size: 12px; opacity: 0.6; margin-top: 6px; }

/* mobile */
@media (max-width: 760px) {
  .header { flex-direction: column; gap: 12px; }
  .nav a { margin: 0 8px; font-size: 13px; }
  .hero { flex-direction: column; padding: 60px 8vw; gap: 30px; }
  .hero-tate { justify-content: center; }
  .tate-text { writing-mode: horizontal-tb; border-right: none; padding-right: 0; border-bottom: 1px solid rgba(200,164,93,0.4); padding-bottom: 12px; }
  .kodawari-grid, .menu-cols { grid-template-columns: 1fr; gap: 30px; }
  .section { padding: 60px 6vw; }
}
