@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@300;400;600&display=swap');

:root {
  --color-primary: #1c1c1c;
  --color-accent: #c9a84c;
  --color-bg: #ffffff;
  --color-bg-light: #f8f7f4;
  --color-text: #333333;
  --color-text-light: #777777;
  --color-border: #e5e2db;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;
}

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

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
}

/* ========== Header ========== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
  height: 70px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.logo span {
  display: block;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--color-text-light);
  font-family: var(--font-sans);
  margin-top: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.83rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

nav a:hover,
nav a.active {
  color: var(--color-accent);
}

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.page-wrapper {
  padding-top: 70px;
}

/* ========== Hero ========== */
.hero {
  background:
    linear-gradient(rgba(18, 14, 8, 0.8), rgba(18, 14, 8, 0.86)),
    url('../images/hero-nikumabushi.jpg') center 62% / cover no-repeat;
  color: #fff;
  padding: 130px 40px 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: var(--color-accent);
  opacity: 0.6;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: var(--color-accent);
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 2.1;
  max-width: 580px;
  margin: 0 auto 40px;
}

/* ========== Section ========== */
section {
  padding: 90px 40px;
}

section.bg-light {
  background: var(--color-bg-light);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  color: var(--color-accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-primary);
}

.section-header p {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 2;
}

/* ========== Cards ========== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.card {
  background: #fff;
  padding: 40px 36px;
  border-top: 3px solid var(--color-accent);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

.card-icon {
  margin-bottom: 20px;
  line-height: 0;
}

.card-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--color-primary);
}

.card p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 2;
}

/* ========== News ========== */
.news-list {
  border-top: 1px solid var(--color-border);
}

.news-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  transition: color 0.2s;
}

.news-item:hover {
  color: var(--color-accent);
}

.news-date {
  font-size: 0.8rem;
  color: var(--color-text-light);
  white-space: nowrap;
  min-width: 100px;
  flex-shrink: 0;
}

.news-tag {
  font-size: 0.68rem;
  background: var(--color-accent);
  color: #fff;
  padding: 2px 10px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.news-title {
  font-size: 0.88rem;
  flex: 1;
}

/* ========== Table ========== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.info-table th,
.info-table td {
  padding: 20px 28px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
  line-height: 1.9;
}

.info-table th {
  width: 200px;
  color: var(--color-text-light);
  font-weight: 400;
  background: var(--color-bg-light);
  white-space: nowrap;
}

/* ========== Page Hero ========== */
.page-hero {
  background: linear-gradient(135deg, #1c1c1c 0%, #2c2218 100%);
  color: #fff;
  padding: 80px 40px;
  text-align: center;
}

.page-label {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  color: var(--color-accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 0.83rem;
  letter-spacing: 0.1em;
  transition: all 0.25s;
}

.btn:hover {
  background: #fff;
  color: var(--color-primary);
}

.btn-dark {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-dark:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-accent {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.btn-accent:hover {
  background: #b8960c;
  border-color: #b8960c;
  color: #fff;
}

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

.mt-48 {
  margin-top: 48px;
}

/* ========== Store Cards ========== */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  gap: 40px;
}

.store-card {
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.store-card-img {
  height: 240px;
  background: linear-gradient(135deg, #2c2218 0%, #1c1c1c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

.store-card-body {
  padding: 36px;
}

.store-tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.store-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--color-primary);
}

.store-card-body p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 2;
  margin-bottom: 24px;
}

.store-info {
  font-size: 0.83rem;
  color: var(--color-text-light);
  line-height: 2.2;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

.store-info dt {
  float: left;
  width: 72px;
  font-weight: 500;
  color: var(--color-text);
}

.store-info dd {
  margin-left: 72px;
}

/* ========== Recruit ========== */
.recruit-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.recruit-item {
  border: 1px solid var(--color-border);
  padding: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.recruit-item-body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.recruit-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.recruit-badge {
  background: var(--color-bg-light);
  padding: 3px 12px;
  border-radius: 2px;
  font-size: 0.75rem;
}

.recruit-badge.full {
  background: var(--color-primary);
  color: #fff;
}

.recruit-badge.part {
  background: var(--color-accent);
  color: #fff;
}

/* ========== Contact Banner ========== */
.contact-banner {
  background: var(--color-primary);
  color: #fff;
  padding: 80px 40px;
  text-align: center;
}

.contact-banner h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 16px;
}

.contact-banner p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  line-height: 2;
}

/* ========== Footer ========== */
footer {
  background: #111;
  color: rgba(255, 255, 255, 0.55);
  padding: 64px 40px 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #fff;
}

.footer-logo span {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-sans);
  letter-spacing: 0.12em;
  margin-top: 6px;
}

.footer-nav {
  display: flex;
  gap: 48px;
}

.footer-nav-group h4 {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.footer-nav-group ul {
  list-style: none;
}

.footer-nav-group li {
  margin-bottom: 10px;
}

.footer-nav-group a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.2s;
}

.footer-nav-group a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.74rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--color-accent);
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .store-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  header nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  }

  header nav.open {
    max-height: 380px;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
  }

  nav li {
    width: 100%;
  }

  nav a {
    display: block;
    padding: 15px 24px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--color-bg-light);
  }

  .hero {
    padding: 90px 24px 80px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  section {
    padding: 64px 24px;
  }

  .info-table th {
    width: 110px;
    padding: 16px;
  }

  .info-table td {
    padding: 16px;
  }

  .news-item {
    flex-wrap: wrap;
    gap: 6px;
  }

  .recruit-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    flex-direction: column;
    gap: 36px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
