@charset "euc-jp";

/* ====================================================================
   maylow vintage / stylesheet
   Design: Bone + Ink, Jost, minimal, category-first
   Responsive: PC / SP (767px breakpoint)
==================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ========== Root variables ========== */
:root {
  --bone: #EFEBE3;
  --bone-2: #E5DFD3;
  --bone-3: #D6CEC0;
  --ink: #1A1512;
  --ink-2: #3A2E20;
  --ink-3: #8A7F73;
  --line: rgba(26, 21, 18, 0.12);
  --line-2: rgba(26, 21, 18, 0.25);
  --terra: #B84A30;
  --terra-h: #9E3E28;
  --teal: #2C5F6B;
  --ochre: #C48A2C;

  --font: 'Jost', 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;

  --max: 1280px;
  --pad: 40px;
  --pad-sp: 20px;
}

/* ========== Reset / base ========== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 320px;
  font-feature-settings: "palt" 1;
}
body.is-scroll-hidden { overflow: hidden; }
img { max-width: 100%; height: auto; vertical-align: top; display: block; }
ul, ol, dl, dt, dd { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 500; line-height: 1.3; }
p { margin: 0; }
a { color: inherit; text-decoration: none; transition: color .15s ease, opacity .15s ease; }
a:hover { color: var(--terra); }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
button:focus-visible,
a:focus-visible,
input:focus-visible { outline: 1.5px solid var(--ink); outline-offset: 2px; }
[data-whatinput=mouse] *:focus,
[data-whatinput=touch] *:focus { outline: none; }

/* ========== Layout helpers ========== */
.m-container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
@media (max-width: 767px) {
  .m-container { padding-left: var(--pad-sp); padding-right: var(--pad-sp); }
}

/* ==================================================================
   HEADER
================================================================== */
.m-header {
  position: relative;
  background: var(--bone);
  border-bottom: 0.5px solid var(--line);
  padding-top: 48px;
}
@media (max-width: 767px) {
  .m-header { padding-top: 44px; }
}
.m-header__top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--bone);
  border-bottom: 0.5px solid var(--line);
  transition: box-shadow .2s ease;
}
.m-header__top.is-stuck {
  box-shadow: 0 2px 10px rgba(26, 21, 18, 0.06);
}
.m-header__top-in {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad) 14px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.25em;
}
@media (max-width: 767px) {
  .m-header__top-in {
    padding: 12px 16px 12px 16px;
  }
}
.m-header__deco {
  display: flex;
  align-items: center;
  line-height: 0;
  color: var(--ink);
  transition: opacity .2s ease;
}
.m-header__deco:hover { opacity: 0.55; color: var(--ink); }
.m-header__deco svg { display: block; }
@media (max-width: 767px) {
  .m-header__deco svg { width: 20px; height: 20px; }
}
.m-header__utility {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: auto;
}
@media (max-width: 767px) {
  .m-header__utility { gap: 14px; }
}
/* taglineºï½üºÑ¤ß */

.m-header__util-btn {
  font: inherit;
  letter-spacing: 0.25em;
  color: var(--ink-2);
  padding: 2px 0;
  font-weight: 400;
}
.m-header__util-btn:hover { color: var(--terra); }
.m-header__cart-count { color: var(--terra); font-weight: 500; margin-left: 4px; }

@media (max-width: 767px) {
  .m-header__util-btn:not([href*="cart"]):not(.js-search-toggle) { display: none; }
}

.m-header__menu-btn {
  display: none;
  position: relative;
  width: 32px;
  height: 32px;
  margin-left: 8px;
}
.m-header__menu-btn span {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 1px;
  background: var(--ink);
  transition: transform .25s ease, top .25s ease;
}
.m-header__menu-btn span:nth-child(1) { top: 12px; }
.m-header__menu-btn span:nth-child(2) { top: 20px; }
@media (max-width: 767px) {
  .m-header__menu-btn { display: block; }
}

/* Search panel */
.m-header__search {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background: var(--bone-2);
}
.m-header__search.is-open { max-height: 120px; }
.m-header__search-form {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--pad);
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 767px) {
  .m-header__search-form { padding: 16px var(--pad-sp); }
}
.m-header__search-input {
  flex: 1;
  background: transparent;
  border: 0;
  border-bottom: 0.5px solid var(--ink);
  padding: 10px 0;
  font: inherit;
  color: var(--ink);
  letter-spacing: 0.05em;
}
.m-header__search-input::placeholder { color: var(--ink-3); }
.m-header__search-submit {
  padding: 8px;
  color: var(--ink);
}
.m-header__search-close {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--ink-2);
  padding: 8px 0;
}

/* Logo */
.m-header__logo {
  position: relative;
  text-align: center;
  padding: 28px var(--pad) 28px;
}
@media (max-width: 767px) {
  .m-header__logo { padding: 32px var(--pad-sp) 30px; }
}

/* ---- Decorations around the logo ---- */
.m-header__deco {
  position: absolute;
  line-height: 0;
  pointer-events: none;
  user-select: none;
}
.m-header__deco svg { display: block; }

/* PC placements */
.m-header__deco--star     { top: 22px; left: 12%; }
.m-header__deco--wave     { bottom: 26px; left: 22%; }
.m-header__deco--dot      { top: 52px; left: 34%; }
.m-header__deco--atomic   { top: 22px; right: 14%; }
.m-header__deco--dot2     { bottom: 32px; right: 30%; }
.m-header__deco--spiral   { bottom: 18px; right: 6%; }
.m-header__deco--freckles { top: 18px; right: 30%; }

@media (max-width: 767px) {
  .m-header__deco--star     { top: 14px; left: 5%; }
  .m-header__deco--star svg { width: 22px; height: 22px; }
  .m-header__deco--wave     { bottom: 14px; left: 10%; }
  .m-header__deco--wave svg { width: 40px; height: 20px; }
  .m-header__deco--dot      { top: 60px; left: 16%; }
  .m-header__deco--dot svg  { width: 10px; height: 10px; }
  .m-header__deco--atomic   { top: 38px; right: 5%; }
  .m-header__deco--atomic svg { width: 22px; height: 22px; }
  .m-header__deco--dot2     { bottom: 12px; right: 16%; }
  .m-header__deco--dot2 svg { width: 10px; height: 10px; }
  .m-header__deco--spiral   { top: 70px; right: 6%; }
  .m-header__deco--spiral svg { width: 20px; height: 20px; }
  .m-header__deco--freckles { display: block; top: 14px; right: 26%; }
  .m-header__deco--freckles svg { width: 32px; height: 32px; }
}

/* ---- Animations ---- */
/* Spiral: slow rotation */
.m-header__deco--spiral svg {
  animation: m-spin 16s linear infinite;
  transform-origin: 50% 50%;
}
@keyframes m-spin {
  to { transform: rotate(360deg); }
}

/* Dot (Ochre): gentle pulse */
.m-header__deco--dot svg {
  animation: m-pulse 3.4s ease-in-out infinite;
  transform-origin: 50% 50%;
}
/* Dot2 (Terracotta): different timing */
.m-header__deco--dot2 svg {
  animation: m-pulse 4.6s ease-in-out infinite;
  transform-origin: 50% 50%;
  animation-delay: 1.2s;
}
@keyframes m-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.45); }
}

/* Wave: path snake */
.m-header__wave-path {
  animation: m-wave 3.2s ease-in-out infinite;
}
@keyframes m-wave {
  0%, 100% { d: path("M4 20 Q14 4 30 16 T56 10"); }
  50%      { d: path("M4 14 Q14 22 30 8 T56 18"); }
}
/* Fallback for browsers without `d` path animation (Safari <16.4, older Firefox) */
@supports not (d: path("M0 0")) {
  .m-header__deco--wave svg {
    animation: m-bob 3.2s ease-in-out infinite;
    transform-origin: 50% 50%;
  }
  @keyframes m-bob {
    0%, 100% { transform: translateY(0) scaleY(1); }
    50%      { transform: translateY(-2px) scaleY(-1); }
  }
}

/* Atomic: ring breathes (expand/contract) */
.m-header__atomic-ring {
  transform-origin: 20px 20px;
  transform-box: fill-box;
  animation: m-breathe 3.8s ease-in-out infinite;
}
@keyframes m-breathe {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.7); opacity: 0.25; }
}

/* Star: sparkles flashing */
.m-header__spark {
  position: absolute;
  line-height: 0;
  opacity: 0;
  pointer-events: none;
}
.m-header__spark--a { top: -6px; right: -8px; animation: m-spark 5s ease-in-out infinite; }
.m-header__spark--b { bottom: -4px; left: -6px; animation: m-spark 5s ease-in-out infinite; animation-delay: 2.5s; }
@keyframes m-spark {
  0%, 100%  { opacity: 0; transform: scale(0.4) rotate(0deg); }
  4%        { opacity: 1; transform: scale(1) rotate(45deg); }
  8%        { opacity: 0; transform: scale(0.4) rotate(90deg); }
  14%       { opacity: 0; }
  16%       { opacity: 1; transform: scale(0.9) rotate(135deg); }
  20%       { opacity: 0; transform: scale(0.4) rotate(180deg); }
}

/* Freckles: floating drift */
.m-header__freckle {
  transform-origin: center;
  transform-box: fill-box;
}
.m-header__freckle--1 { animation: m-drift1 6.5s ease-in-out infinite; }
.m-header__freckle--2 { animation: m-drift2 7.2s ease-in-out infinite; }
.m-header__freckle--3 { animation: m-drift1 8.0s ease-in-out infinite; animation-delay: 1s; }
.m-header__freckle--4 { animation: m-drift2 6.8s ease-in-out infinite; animation-delay: 2s; }
.m-header__freckle--5 { animation: m-drift1 7.6s ease-in-out infinite; animation-delay: 0.5s; }
.m-header__freckle--6 { animation: m-drift2 8.4s ease-in-out infinite; animation-delay: 3s; }
.m-header__freckle--7 { animation: m-drift1 6.2s ease-in-out infinite; animation-delay: 1.5s; }
.m-header__freckle--8 { animation: m-drift2 7.8s ease-in-out infinite; animation-delay: 2.5s; }
@keyframes m-drift1 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(2px, -3px); }
}
@keyframes m-drift2 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-2px, 2px); }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .m-header__deco--spiral svg,
  .m-header__deco--dot svg,
  .m-header__deco--dot2 svg,
  .m-header__wave-path,
  .m-header__deco--wave svg,
  .m-header__atomic-ring,
  .m-header__spark,
  .m-header__freckle {
    animation: none !important;
  }
}
.m-header__logo-ttl { margin: 0; }
.m-header__logo-ttl a {
  display: inline-block;
  line-height: 0;
}
.m-header__logo-ttl img {
  max-height: 92px;
  width: auto;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .m-header__logo-ttl img { max-height: 68px; }
}
.m-header__logo-txt {
  font-family: var(--font);
  font-size: 54px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
@media (max-width: 767px) {
  .m-header__logo-txt { font-size: 40px; }
}
.m-header__logo-ttl a:hover { opacity: 0.7; color: var(--ink); }

/* Main nav */
.m-header__nav {
  padding: 0 var(--pad) 32px;
}
@media (max-width: 767px) {
  .m-header__nav { display: none; }
}
.m-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 11px;
  letter-spacing: 0.25em;
}
.m-nav__item {}
.m-nav__link {
  color: var(--ink);
  padding: 4px 0;
  font-weight: 400;
  display: inline-block;
  border-bottom: 0.5px solid transparent;
}
.m-nav__link:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.m-nav__item--sold .m-nav__link { color: var(--ink-3); }
.m-nav__item--sold .m-nav__link:hover { color: var(--ink); border-bottom-color: var(--ink-3); }

/* Drawer (SP) */
.m-navi-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 84%;
  max-width: 360px;
  background: var(--bone);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
}
.m-navi-drawer.is-open { transform: translateX(0); }
.m-navi-drawer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--ink);
  z-index: 10;
}
.m-navi-drawer__close:hover { opacity: 0.6; }
.m-navi-drawer__in { padding: 72px 28px 40px; }
.m-navi-drawer__list {}
.m-navi-drawer__item { border-bottom: 0.5px solid var(--line); }
.m-navi-drawer__link {
  display: block;
  padding: 18px 0;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--ink);
}
.m-navi-drawer__sub {
  margin-top: 32px;
  display: flex;
  gap: 20px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-2);
}
.m-navi-drawer__sub-link { color: var(--ink-2); }

.m-navi-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 21, 18, 0.35);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.m-navi-drawer.is-open ~ .m-navi-overlay,
.m-navi-drawer.is-open + .m-navi-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* ==================================================================
   MAIN
================================================================== */
.m-main { min-height: 400px; }
.m-main--free { padding: 24px 0 80px; }

.m-breadcrumbs {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  padding: 20px 0 30px;
}
.m-breadcrumbs a { color: var(--ink-2); }
.m-breadcrumbs a:hover { color: var(--terra); }
.m-breadcrumbs__sep { margin: 0 10px; opacity: 0.5; }

/* ==================================================================
   HERO
================================================================== */
.p-hero { background: var(--bone-2); margin: 0; }
.p-hero__slide { max-width: var(--max); margin: 0 auto; }
.p-hero__slide img { width: 100%; height: auto; display: block; }
.p-hero__slide .bx-wrapper { margin-bottom: 0; box-shadow: none; border: 0; background: transparent; }
.p-hero__slide .bx-pager {
  bottom: 16px;
  padding-top: 0;
}
.p-hero__slide .bx-pager .bx-pager-item a {
  background: rgba(239, 235, 227, 0.5);
  width: 8px;
  height: 8px;
}
.p-hero__slide .bx-pager .bx-pager-item a.active,
.p-hero__slide .bx-pager .bx-pager-item a:hover {
  background: var(--bone);
}

/* ==================================================================
   NEW ARRIVAL grid
================================================================== */
.p-arrivals { padding: 80px 0 100px; }
@media (max-width: 767px) { .p-arrivals { padding: 50px 0 70px; } }

.p-arrivals__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 50px;
  padding-bottom: 18px;
  border-bottom: 0.5px solid var(--line);
}
@media (max-width: 767px) {
  .p-arrivals__head { margin-bottom: 32px; padding-bottom: 14px; }
}
.p-arrivals__ttl {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink);
}
@media (max-width: 767px) {
  .p-arrivals__ttl { font-size: 20px; }
}
.p-arrivals__meta {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--ink-3);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .p-arrivals__meta { display: none; }
}

.p-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 28px;
}
@media (max-width: 767px) {
  .p-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 14px; }
}

.p-grid__item {}

.p-card {
  display: block;
  color: var(--ink);
}
.p-card:hover { color: var(--ink); }
.p-card__img {
  position: relative;
  background: var(--bone-2);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 14px;
}
.p-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.p-card:hover .p-card__img img { transform: scale(1.03); }

.p-card__new {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--terra);
  color: var(--bone);
  font-size: 9px;
  letter-spacing: 0.2em;
  font-weight: 500;
  padding: 4px 10px;
}
.p-card__sold {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ink);
  color: var(--bone);
  font-size: 9px;
  letter-spacing: 0.2em;
  font-weight: 500;
  padding: 4px 10px;
}

.p-card__body {
  padding: 0 2px;
}
.p-card__maker {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.p-card__name {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
.p-card__price {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* SOLD state (category page) */
.p-grid__item.is-sold .p-card__img img { opacity: 0.55; }
.p-grid__item.is-sold .p-card__name {
  color: var(--ink-3);
  text-decoration: line-through;
  text-decoration-thickness: 0.5px;
}
.p-grid__item.is-sold .p-card__price { display: none; }

/* "Load more" / view all btn */
.p-arrivals__more {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 0.5px solid var(--line);
}
.p-arrivals__empty {
  text-align: center;
  padding: 80px 0;
  color: var(--ink-3);
  font-size: 13px;
  letter-spacing: 0.1em;
}

/* ==================================================================
   Product list page (¾¦ÉÊ°ìÍ÷)
================================================================== */
.p-listhead {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0 24px;
  border-bottom: 0.5px solid var(--line);
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .p-listhead { padding: 8px 0 18px; margin-bottom: 18px; }
}
.p-listhead__ttl {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .p-listhead__ttl { font-size: 22px; }
}
.p-listhead__meta {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  text-transform: uppercase;
}

.p-listsort {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin: 0 0 36px;
  font-size: 11px;
  letter-spacing: 0.18em;
}
@media (max-width: 767px) {
  .p-listsort { margin-bottom: 24px; }
}
.p-listsort__label {
  color: var(--ink-3);
  text-transform: uppercase;
}
.p-listsort__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 0.5px solid var(--ink);
  padding: 6px 26px 6px 4px;
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink);
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%231A1512' stroke-width='1' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 10px 6px;
}

.p-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin: 60px 0 20px;
  padding-top: 30px;
  border-top: 0.5px solid var(--line);
}
@media (max-width: 767px) {
  .p-pager { gap: 18px; margin: 40px 0 10px; }
}
.p-pager__link {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--ink);
  padding: 8px 4px;
  text-transform: uppercase;
  border-bottom: 0.5px solid transparent;
  transition: border-color .15s ease;
}
.p-pager__link:not(.is-disabled):hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.p-pager__link.is-disabled {
  color: var(--ink-3);
  cursor: default;
  pointer-events: none;
}
.p-pager__count {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
}

.p-empty {
  text-align: center;
  padding: 100px 0;
}
.p-empty__txt {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
}


/* ==================================================================
   Buttons
================================================================== */
.m-btn {
  display: inline-block;
  padding: 14px 36px;
  border: 0.5px solid var(--ink);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.25em;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .2s ease;
  background: transparent;
  cursor: pointer;
}
.m-btn:hover {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.m-btn--primary {
  background: var(--terra);
  color: var(--bone);
  border-color: var(--terra);
}
.m-btn--primary:hover {
  background: var(--terra-h);
  border-color: var(--terra-h);
  color: var(--bone);
}

/* ==================================================================
   ABOUT
================================================================== */
.m-about {
  background: var(--ink);
  color: var(--bone);
  padding: 90px 0;
}
@media (max-width: 767px) { .m-about { padding: 60px 0; } }
.m-about__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}
@media (max-width: 767px) {
  .m-about__grid { grid-template-columns: 1fr; gap: 24px; }
}
.m-about__label {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ochre);
  font-weight: 500;
}
.m-about__ttl {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--bone);
  margin: 0 0 28px;
}
@media (max-width: 767px) {
  .m-about__ttl { font-size: 24px; }
}
.m-about__txt {
  font-size: 13px;
  color: rgba(239, 235, 227, 0.72);
  line-height: 1.9;
  max-width: 560px;
  margin-bottom: 28px;
}
.m-about__staff {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.m-about__staff img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.m-about__staff span {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(239, 235, 227, 0.7);
}

/* ==================================================================
   SHOP GUIDE
================================================================== */
.m-shopguide { padding: 80px 0; }
@media (max-width: 767px) { .m-shopguide { padding: 50px 0; } }
.m-shopguide__ttl {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 0.5px solid var(--line);
}
.m-shopguide__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 767px) {
  .m-shopguide__grid { grid-template-columns: 1fr; gap: 32px; }
}
.m-shopguide__col {}
.m-shopguide__col-ttl {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid var(--line);
}
.m-shopguide__dl dt {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 14px;
  letter-spacing: 0.05em;
}
.m-shopguide__dl dd {
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.8;
  margin: 4px 0 0;
}
.m-shopguide__img { margin-top: 8px; }
.m-shopguide__img img { max-height: 24px; width: auto; display: inline-block; }

/* ==================================================================
   FOOTER
================================================================== */
.m-footer {
  background: var(--ink);
  color: rgba(239, 235, 227, 0.7);
  padding: 70px 0 30px;
}
.m-footer a { color: rgba(239, 235, 227, 0.9); }
.m-footer a:hover { color: var(--ochre); }

.m-footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 1030px) {
  .m-footer__main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .m-footer__main { grid-template-columns: 1fr; gap: 32px; }
}

.m-footer__brand {}
.m-footer__logo {
  display: inline-block;
  line-height: 0;
}
.m-footer__logo img {
  max-height: 42px;
  width: auto;
  filter: invert(1) brightness(1.2);
}
.m-footer__logo-txt {
  font-size: 24px;
  color: var(--bone);
  letter-spacing: -0.01em;
}
.m-footer__address {
  font-style: normal;
  font-size: 10px;
  line-height: 1.9;
  letter-spacing: 0.1em;
  margin-top: 20px;
  color: rgba(239, 235, 227, 0.6);
}
.m-footer__address a { color: rgba(239, 235, 227, 0.9); border-bottom: 0.5px solid rgba(239, 235, 227, 0.4); padding-bottom: 2px; }

.m-footer__nav {
  display: contents;
}
@media (max-width: 1030px) {
  .m-footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; grid-column: 1 / -1; }
}
@media (max-width: 767px) {
  .m-footer__nav { grid-template-columns: 1fr 1fr; }
}

.m-footer__nav-col h4 {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ochre);
  font-weight: 500;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.m-footer__nav-col ul li {
  font-size: 11px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.m-footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 24px;
  border-top: 0.5px solid rgba(239, 235, 227, 0.1);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: rgba(239, 235, 227, 0.4);
}
@media (max-width: 767px) {
  .m-footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ==================================================================
   Admin-controlled color overrides (original behavior preserved)
================================================================== */
body {
  background-color: #fff;
  background-image: url(https://img.shop-pro.jp/tmpl_img/84/bg.gif);
}
a { color: #464e54; }
a:hover { color: #5e5e5e; }

/* ==================================================================
   Utility (legacy compat)
================================================================== */
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px; padding: 0; border: 0;
}
