@charset "utf-8";
/* CSS Document */

/* ===============================
　layout.css（header / footer の「箱」だけ）
   Layout
=============================== */
.header {
  position: sticky;
  top: 0;
  background: var(--bg-main);
  border-bottom: 1px solid #C69560;
  z-index: 100;
}

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

/* Logo */
.logo a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  width: 45px;
  opacity: 0.65;
}

.logo-text {
  font-family: 'Shippori Mincho', serif;
}

@media (max-width: 768px) {
  .logo-mark {
    width: 36px;
  }

  .logo-text {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 480px) {
  .logo-text {
    display: none;
  }
}
