/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-navy:       #0d1b2e;
  --color-navy-mid:   #132440;
  --color-navy-light: #1a2f47;
  --color-navy-dark:  #07111d;
  --color-blue:       #3a6fa8;
  --color-badge-info: #4477b0;
  --color-badge-prod: #2b7a52;
  --color-white:      #ffffff;
  --color-w70:        rgba(255, 255, 255, 0.7);
  --color-w40:        rgba(255, 255, 255, 0.4);
  --color-w15:        rgba(255, 255, 255, 0.15);
  --color-bg-light:   #f4f1ec;
  --color-text-dark:  #2a2a2a;
  --color-text-muted: #777777;
  --color-border:     #d0c8be;
  --color-gold:       #c3a15b;
  --color-gold-soft:  #d8bd86;

  --font-jp: 'Noto Serif JP', 'Yu Mincho', '游明朝', serif;
  --font-en: 'Cormorant Garamond', Georgia, serif;

  --header-h:  80px;
  --max-w:     1200px;
  --side-pad:  40px;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-jp);
  background-color: var(--color-navy);
  color: var(--color-white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

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

ul { list-style: none; }

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 900;
  background-color: rgba(13, 27, 46, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-w15);
  transition: background-color 0.3s;
}

.site-header.is-scrolled {
  background-color: rgba(7, 17, 29, 0.98);
}

.site-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: unset;
  margin: 0 auto;
  padding: 0 var(--side-pad);
  gap: 40px;
}

/* --- Logo --- */
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-header__logo-icon {
  display: flex;
  align-items: center;
  color: var(--color-white);
  opacity: 0.9;
}

.site-header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.site-header__logo-small {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--color-w70);
  font-weight: 300;
}

.site-header__logo-name {
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: var(--color-white);
}

.site-header__logo-en {
  font-size: 10px;
  font-family: var(--font-en);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--color-w70);
}

/* --- Nav --- */
.site-header__nav { flex: 1; display: flex; justify-content: flex-end; }

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-header__nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--color-white);
  position: relative;
  padding-bottom: 4px;
}

.site-header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-white);
  transition: width 0.3s var(--ease-out);
}

.site-header__nav-link:hover::after { width: 100%; }

.nav-jp {
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.nav-en {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--color-w70);
}

/* --- Actions --- */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.site-header__cart {
  color: var(--color-white);
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.site-header__cart:hover { opacity: 1; }

.site-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 3px 0;
}

.site-header__hamburger-line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}

/* ============================================================
   HAMBURGER OVERLAY MENU
   ============================================================ */
.nav-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: var(--color-navy);
  display: flex;
  flex-direction: column;
  padding: 0 var(--side-pad) 40px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  overflow-y: auto;
}

.nav-menu.is-open { transform: translateX(0); }

.nav-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  border-bottom: 1px solid var(--color-w15);
  flex-shrink: 0;
  position: sticky;
  top: 0;
  background-color: var(--color-navy);
  z-index: 10;
}

.nav-menu__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
}

.nav-menu__logo-icon {
  display: flex;
  align-items: center;
  opacity: 0.9;
}

.nav-menu__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.nav-menu__logo-small {
  font-size: 10px;
  color: var(--color-w70);
  font-weight: 300;
  letter-spacing: 0.1em;
}

.nav-menu__logo-name {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.nav-menu__logo-en {
  font-size: 10px;
  font-family: var(--font-en);
  letter-spacing: 0.18em;
  color: var(--color-w70);
}

.nav-menu__close {
  background: none;
  border: 1px solid var(--color-w40);
  color: var(--color-white);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: border-color 0.2s, background-color 0.2s;
  flex-shrink: 0;
}

.nav-menu__close:hover {
  border-color: var(--color-white);
  background-color: rgba(255,255,255,0.06);
}

.nav-menu__nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.nav-menu__list {
  width: 100%;
  max-width: 440px;
}

.nav-menu__item {
  border-bottom: 1px solid var(--color-w15);
}

.nav-menu__item:first-child {
  border-top: 1px solid var(--color-w15);
}

.nav-menu__link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 8px;
  color: var(--color-white);
  transition: opacity 0.2s;
}

.nav-menu__link:hover { opacity: 0.65; }

.nav-menu__link-jp {
  font-family: var(--font-jp);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.nav-menu__link-en {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--color-w70);
}

.nav-menu__footer {
  padding-top: 28px;
  text-align: center;
  color: var(--color-w40);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

/* ============================================================
   MAIN VISUAL
   ============================================================ */
.mv {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: var(--color-navy-dark);
}

.mv__slider { position: absolute; top: 0; right: 0; bottom: 0; left: 30%; }

.mv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.mv__slide.is-active { opacity: 1; }

.mv__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mv__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--color-navy) 0%,
    var(--color-navy) 30%,
    rgba(13, 27, 46, 0.72) 42%,
    rgba(13, 27, 46, 0.28) 56%,
    rgba(13, 27, 46, 0) 74%
  );
  z-index: 2;
}

.mv__content {
  position: absolute;
  top: 50%;
  left: var(--side-pad);
  transform: translateY(-50%);
  z-index: 3;
  max-width: 540px;
  padding-top: 40px;
}

.mv__heading {
  font-family: var(--font-jp);
  font-size: clamp(34px, 4.8vw, 60px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin-bottom: 28px;
}

.mv__body {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--color-w70);
  margin-bottom: 10px;
}

.mv__catchline {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--color-w40);
  border-top: 1px solid var(--color-w15);
  padding-top: 14px;
  margin-bottom: 40px;
}

.mv__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--color-white);
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: background-color 0.3s, border-color 0.3s;
}

.mv__btn:hover {
  background-color: rgba(255,255,255,0.09);
  border-color: var(--color-white);
}

.mv__btn-en {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--color-w70);
}

.mv__btn-arrow { font-size: 15px; }

.mv__stories {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  z-index: 3;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--color-w40);
  white-space: nowrap;
}

.mv__watermark {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  font-family: var(--font-en);
  font-size: clamp(40px, 9vw, 108px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.035);
  letter-spacing: 0.08em;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
}

.mv__dots {
  position: absolute;
  bottom: 32px;
  right: var(--side-pad);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mv__dot {
  height: 2px;
  width: 28px;
  background-color: var(--color-w40);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s, width 0.4s var(--ease-out);
}

.mv__dot.is-active {
  background-color: var(--color-white);
  width: 48px;
}

/* ============================================================
   SHARED: SECTION LABELS & HEADINGS
   ============================================================ */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.section-label__icon {
  display: flex;
  align-items: center;
  color: var(--color-w70);
}

.section-label__text {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--color-w70);
}

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

.section-heading__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--color-w70);
}

.section-heading__en {
  font-family: var(--font-en);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--color-white);
  display: block;
  margin-bottom: 8px;
}

.section-heading__jp {
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--color-w70);
  display: block;
}

/* ============================================================
   SHARED: OUTLINE BUTTON
   ============================================================ */
.outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--color-white);
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: background-color 0.3s, border-color 0.3s;
}

.outline-btn:hover {
  background-color: rgba(255,255,255,0.07);
  border-color: var(--color-white);
}

.outline-btn__en {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--color-w70);
}

.outline-btn__arrow { font-size: 15px; }

.outline-btn--center {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

.outline-btn--dark {
  border-color: rgba(42, 42, 42, 0.35);
  color: var(--color-text-dark);
}

.outline-btn--dark:hover {
  background-color: rgba(0,0,0,0.04);
  border-color: var(--color-text-dark);
}

.outline-btn--dark .outline-btn__en { color: var(--color-text-muted); }
.outline-btn--dark .outline-btn__arrow { color: var(--color-text-dark); }

/* ============================================================
   CONCEPT
   ============================================================ */
.concept {
  background-color: var(--color-navy);
  padding: 110px 0;
}

.concept__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.concept__heading {
  font-family: var(--font-jp);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin-bottom: 28px;
}

.concept__body {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 300;
  line-height: 2.2;
  color: var(--color-w70);
  margin-bottom: 44px;
}

.concept__photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  background-color: var(--color-navy);
  padding: 110px 0;
  border-top: 1px solid var(--color-w15);
}

.products__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.product-card {
  display: block;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}

.product-card:hover .product-card__img { transform: scale(1.06); }

.product-card__info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px 2px;
  border-bottom: 1px solid var(--color-w15);
}

.product-card__name-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.product-card__name-jp {
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.product-card__name-en {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--color-w70);
}

.product-card__arrow {
  font-size: 16px;
  color: var(--color-w70);
  transition: transform 0.3s var(--ease-out);
  line-height: 1;
}

.product-card:hover .product-card__arrow { transform: translateX(5px); }

.products__cta { text-align: center; }

/* ============================================================
   NEWS
   ============================================================ */
.news {
  background-color: var(--color-bg-light);
  padding: 100px 0;
}

.news__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 60px;
  align-items: start;
}

.news__label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 44px;
}

.news__label-en {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--color-text-dark);
  line-height: 1;
}

.news__label-jp {
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
}

.news__item { border-bottom: 1px solid var(--color-border); }

.news__link {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 4px;
  color: var(--color-text-dark);
  transition: opacity 0.2s;
}

.news__link:hover { opacity: 0.65; }

.news__date {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  flex-shrink: 0;
  min-width: 88px;
}

.news__badge {
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 400;
  padding: 3px 10px;
  border-radius: 2px;
  color: var(--color-white);
  flex-shrink: 0;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.news__badge--info    { background-color: var(--color-badge-info); }
.news__badge--product { background-color: var(--color-badge-prod); }

.news__title {
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 300;
  flex: 1;
  letter-spacing: 0.04em;
}

.news__arrow {
  font-size: 16px;
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}

.news__link:hover .news__arrow { transform: translateX(5px); }

.news__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  gap: 32px;
}

.news__horse-bg {
  opacity: 0.08;
  width: 140px;
  color: var(--color-text-dark);
}

.news__horse-bg svg { width: 100%; height: auto; }

/* ============================================================
   FOOTER FEATURES
   ============================================================ */
.footer-features {
  background-color: var(--color-navy-light);
  padding: 70px 0;
  border-top: 1px solid var(--color-w15);
}

.footer-features__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

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

.footer-feature__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 52px;
  margin-bottom: 18px;
  color: var(--color-w70);
}

.footer-feature__title {
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.footer-feature__text {
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 300;
  color: var(--color-w70);
  line-height: 1.9;
  letter-spacing: 0.03em;
}

/* ============================================================
   FOOTER BOTTOM
   ============================================================ */
.footer-bottom {
  background-color: var(--color-navy-dark);
  padding: 60px 0 32px;
}

.footer-bottom__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}

.footer-bottom__logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--color-white);
}

.footer-bottom__logo-icon {
  display: flex;
  align-items: center;
  color: var(--color-w70);
}

.footer-bottom__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.footer-bottom__logo-small {
  font-size: 10px;
  color: var(--color-w70);
  font-weight: 300;
  letter-spacing: 0.1em;
}

.footer-bottom__logo-name {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.footer-bottom__logo-en {
  font-size: 10px;
  font-family: var(--font-en);
  letter-spacing: 0.18em;
  color: var(--color-w70);
}

.footer-bottom__address {
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 300;
  color: var(--color-w70);
  line-height: 1.9;
  font-style: normal;
  letter-spacing: 0.04em;
}

.footer-bottom__nav {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.footer-bottom__nav-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-bottom__nav-col a {
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 300;
  color: var(--color-w70);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-bottom__nav-col a:hover { color: var(--color-white); }

.footer-bottom__sns {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-bottom__sns-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-w15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-w70);
  transition: border-color 0.25s, color 0.25s;
}

.footer-bottom__sns-link:hover {
  border-color: var(--color-w70);
  color: var(--color-white);
}

.footer-bottom__copy {
  text-align: center;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--color-w40);
  border-top: 1px solid var(--color-w15);
  padding-top: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--side-pad);
  padding-right: var(--side-pad);
}

/* ============================================================
   RESPONSIVE — 1151px (nav collapse)
   ============================================================ */
@media (max-width: 1151px) {
  .site-header__nav { display: none; }
  .site-header__actions { margin-left: auto; }
}

/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */
@media (max-width: 900px) {
  :root {
    --side-pad: 28px;
    --header-h: 72px;
  }

  .concept__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .concept__photo img { height: 360px; }

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

  .news__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .news__right {
    padding-top: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-features__inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }

  .footer-bottom__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom__nav { justify-content: flex-start; }
}

/* ============================================================
   RESPONSIVE — 600px
   ============================================================ */
@media (max-width: 600px) {
  :root {
    --side-pad: 20px;
    --header-h: 64px;
  }

  .mv { min-height: 540px; }

  .mv__content {
    left: var(--side-pad);
    right: var(--side-pad);
    max-width: 100%;
    padding-top: 20px;
  }

  .mv__heading { font-size: 30px; }

  .mv__stories { display: none; }

  .mv__btn { padding: 12px 20px; font-size: 13px; }

  .news__link { flex-wrap: wrap; gap: 10px; }
  .news__title { flex-basis: 100%; }

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

  .footer-features__inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  .footer-bottom__nav { flex-direction: column; gap: 24px; }

  .products__grid { gap: 12px; }
}

/* ============================================================
   PAGE HERO（下層ページ共通ヘッダー）
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, #1a3050 100%);
  padding: 80px var(--side-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero__icon {
  font-size: 32px;
  color: var(--color-gold);
  margin-bottom: 20px;
  opacity: 0.85;
}

.page-hero__title {
  font-family: var(--font-jp);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.page-hero__sub {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============================================================
   PAGE CONTENT（下層ページ共通コンテンツ）
   ============================================================ */
/* 下層ページ全体を #f1f0ec に（page-hero は自前で dark を持つので上書きされない） */
body.page:not(.home) {
  background-color: #f1f0ec;
}

.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px var(--side-pad);
}

.page-container {
  padding: 0;
}

.page-content h2 {
  font-family: var(--font-jp);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 400;
  color: var(--color-navy);
  letter-spacing: 0.1em;
  margin: 56px 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-gold);
  position: relative;
}

.page-content h2:first-child { margin-top: 0; }

.page-content p {
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 300;
  line-height: 2.0;
  color: #444;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.page-content ul, .page-content ol {
  padding-left: 1.5em;
  margin-bottom: 20px;
}

.page-content li {
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: #444;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

/* ============================================================
   FAQ ページ
   ============================================================ */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  border: 1px solid #e8e4dd;
  border-radius: 4px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-item__q {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--color-bg-light);
  cursor: pointer;
}

.faq-item__q-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 500;
  margin-top: 2px;
}

.faq-item__q-text {
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-navy);
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.faq-item__a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--color-white);
  border-top: 1px solid #e8e4dd;
}

.faq-item__a-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--color-gold);
  color: var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 500;
  margin-top: 2px;
}

.faq-item__a-text {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 300;
  color: #555;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

/* ============================================================
   CONTACT ページ
   ============================================================ */
.contact-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px var(--side-pad);
}

.contact-wrap .wpcf7 input[type="text"],
.contact-wrap .wpcf7 input[type="email"],
.contact-wrap .wpcf7 input[type="tel"],
.contact-wrap .wpcf7 select,
.contact-wrap .wpcf7 textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d8d4cd;
  border-radius: 2px;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 300;
  color: #333;
  background: #fafaf8;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.contact-wrap .wpcf7 input:focus,
.contact-wrap .wpcf7 textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: var(--color-white);
}

.contact-wrap .wpcf7 textarea { min-height: 160px; resize: vertical; }

.contact-form__row {
  margin-bottom: 28px;
}

.contact-form__label {
  display: block;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-navy);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.contact-form__req {
  display: inline-block;
  font-size: 11px;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0.05em;
}

.contact-wrap .wpcf7 input[type="submit"] {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 40px auto 0;
  padding: 16px 32px;
  background: var(--color-navy);
  color: var(--color-white);
  border: none;
  border-radius: 2px;
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}

.contact-wrap .wpcf7 input[type="submit"]:hover { opacity: 0.8; }

/* ============================================================
   PRODUCTS ページ
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.products-card {
  background: var(--color-white);
  border: 1px solid #e8e4dd;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.products-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(13,27,46,0.1);
}

.products-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.products-card__body {
  padding: 24px;
}

.products-card__title {
  font-family: var(--font-jp);
  font-size: 17px;
  font-weight: 400;
  color: var(--color-navy);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.products-card__text {
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 300;
  color: #666;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

/* 産地フラグ */
.origin-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
  align-items: center;
}

.origin-flag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #e8e4dd;
  border-radius: 40px;
  background: var(--color-white);
}

.origin-flag__emoji { font-size: 20px; }

.origin-flag__name {
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 300;
  color: var(--color-navy);
  letter-spacing: 0.06em;
}

/* ============================================================
   NUTRITION ページ
   ============================================================ */
.nutrition-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 190px));
  gap: 20px;
  margin: 32px 0;
  justify-content: center;
}

.nutrition-stat {
  background: var(--color-navy);
  border-radius: 4px;
  padding: 24px 20px;
  text-align: center;
}

.nutrition-stat__value {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 300;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 8px;
}

.nutrition-stat__label {
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
}

.subscription-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 280px));
  gap: 24px;
  margin-top: 32px;
  justify-content: center;
}

.subscription-plan {
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
}

.subscription-plan--popular {
  background: var(--color-navy);
  color: var(--color-white);
}

.subscription-plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-navy);
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 400;
  padding: 4px 14px;
  border-radius: 40px;
  white-space: nowrap;
  letter-spacing: 0.08em;
}

.subscription-plan__name {
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.subscription-plan--popular .subscription-plan__name { color: var(--color-white); }
.subscription-plan--popular .subscription-plan__price { color: var(--color-gold-soft); font-size: 34px; font-weight: 400; }
.subscription-plan--popular .subscription-plan__price span { color: rgba(255,255,255,0.75); }

.subscription-plan__price {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 300;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.subscription-plan__price span {
  font-size: 14px;
  font-family: var(--font-jp);
  font-weight: 300;
}

.subscription-plan__items {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}

.subscription-plan__items li {
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: #666;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  letter-spacing: 0.03em;
}

.subscription-plan--popular .subscription-plan__items li {
  color: rgba(255,255,255,0.7);
  border-bottom-color: rgba(255,255,255,0.1);
}

/* ============================================================
   About Page（店舗紹介）
   ============================================================ */

/* 共通セクション見出し（下層ページ用） */
.section-heading {
  font-family: var(--font-jp);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  color: var(--color-navy);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.section-heading__en {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  text-transform: uppercase;
}

/* あいさつセクション */
.about-greeting {
  padding: 80px var(--side-pad);
}
.about-greeting__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-greeting__text p {
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 300;
  line-height: 2.2;
  color: #444;
  margin-bottom: 20px;
}
.about-greeting__img img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(13,27,46,0.1);
}

/* 店舗情報テーブルセクション */
.about-info {
  background-color: var(--color-white);
  padding: 80px var(--side-pad);
}
.about-info__inner {
  max-width: 860px;
  margin: 0 auto;
}
.about-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-jp);
}
.about-table th,
.about-table td {
  padding: 18px 24px !important;
  text-align: left !important;
  vertical-align: top !important;
  border-bottom: 1px solid #e8e4dc;
  line-height: 1.8;
}
.about-table th {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-navy);
  letter-spacing: 0.08em;
  white-space: nowrap;
  width: 160px;
  background-color: #f7f5f0;
}
.about-table td {
  font-size: 14px;
  font-weight: 300;
  color: #444;
}
.about-table tr:last-child th,
.about-table tr:last-child td {
  border-bottom: none;
}

/* こだわりセクション */
.about-concept {
  padding: 80px var(--side-pad);
}
.about-concept__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-concept__img img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(13,27,46,0.1);
}
.about-concept__text p {
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 300;
  line-height: 2.2;
  color: #444;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .about-greeting__inner,
  .about-concept__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-concept__img { order: -1; }
  .about-table th { width: 120px; }
}

/* ============================================================
   Animal Welfare Page
   ============================================================ */

/* 哲学セクション（テキスト＋画像 横並び） */
.aw-philosophy {
  padding: 80px var(--side-pad);
}
.aw-philosophy__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.aw-section-title {
  font-family: var(--font-jp);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  color: var(--color-navy);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.aw-section-en {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  text-transform: uppercase;
}
.aw-philosophy__text p {
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 300;
  line-height: 2.1;
  color: #444;
  margin-bottom: 16px;
}
.aw-philosophy__img img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 8px 32px rgba(13,27,46,0.12);
}

/* 3枚カードセクション */
.aw-cards {
  background-color: var(--color-white);
  padding: 80px var(--side-pad);
}
.aw-cards__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.aw-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 20px;
}
.aw-card h3 {
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-navy);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  line-height: 1.6;
}
.aw-card p {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 300;
  color: #555;
  line-height: 1.9;
}

/* 5原則セクション */
.aw-principles {
  padding: 80px var(--side-pad);
}
.aw-principles__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.aw-principles__title {
  font-family: var(--font-jp);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 300;
  color: var(--color-navy);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 56px;
}
.aw-principles__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.aw-principle {
  text-align: center;
  padding: 32px 16px;
  background: var(--color-white);
  border-radius: 2px;
}
.aw-principle__icon {
  font-size: 28px;
  color: var(--color-gold);
  margin-bottom: 16px;
}
.aw-principle__num {
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 10px;
}
.aw-principle__text {
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 300;
  color: #666;
  line-height: 1.8;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 600px) {
  .page-hero { padding: 60px var(--side-pad); }
  .page-hero__title { font-size: 22px; }
  .nutrition-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .aw-philosophy__inner { grid-template-columns: 1fr; gap: 40px; }
  .aw-cards__inner { grid-template-columns: 1fr; gap: 48px; }
  .aw-principles__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (max-width: 600px) {
  .aw-principles__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Privacy Policy
   ============================================================ */
.priv-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}
.section-title-center {
  text-align: center;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-navy);
  margin-bottom: 40px;
}
.priv-lead-txt {
  margin-bottom: 48px;
  line-height: 2;
  font-weight: 300;
  color: #444;
}
.priv-section {
  margin-bottom: 40px;
}
.priv-section h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-navy);
  border-left: 3px solid var(--color-gold);
  padding-left: 12px;
  margin-bottom: 12px;
}
.priv-section p {
  line-height: 2;
  font-weight: 300;
  color: #444;
}
.priv-list {
  padding-left: 1.5em;
  line-height: 2;
  font-weight: 300;
  color: #444;
}
.priv-list li {
  list-style: disc;
  margin-bottom: 4px;
}
.priv-footer-info {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid #e0dbd3;
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: #666;
}

/* ===== 商品カード 価格・注記（MASION-DU-CHEVAL 実データ反映 2026-07） ===== */
.products-card__body { display: flex; flex-direction: column; }
.products-card__price {
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-navy);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.products-card__price span {
  font-size: 12px;
  font-weight: 300;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}
.products-card__badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--color-white);
  background: var(--color-badge-prod);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.products-note {
  background: var(--color-bg-light);
  border: 1px dashed var(--color-border);
  border-radius: 4px;
  padding: 18px 22px;
  margin: 28px 0 8px;
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.9;
}
.products-section-lead {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 300;
  color: #555;
  line-height: 2;
  letter-spacing: 0.03em;
}


/* ===== MV レイアウト：狭い画面では画像フル幅に戻す ===== */
@media (max-width: 900px) {
  .mv__slider { left: 0; right: 0; top: 0; bottom: 0; }
  .mv__overlay {
    background: linear-gradient(
      100deg,
      rgba(13, 27, 46, 0.92) 0%,
      rgba(13, 27, 46, 0.7) 45%,
      rgba(13, 27, 46, 0.35) 100%
    );
  }
}

/* ===== 実ロゴ・馬イラスト差し替え（2026-07 horse_01/02/03・shop_name） ===== */
/* ロゴマーク（ヘッダー／モバイルナビ／フッター最下部） */
.site-header__logo-icon img,
.nav-menu__logo-icon img { height: 46px; width: auto; display: block; }
.footer-bottom__logo-icon img { height: 40px; width: auto; display: block; }

/* MV下の店名ワードマーク（白画像・50%透過） */
.mv__watermark {
  bottom: 22px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(76%, 860px);
  height: auto;
  opacity: 0.5;
}

/* CONCEPT左・PRODUCTS上の馬（horse_02） */
.section-label__horse { width: 40px; height: auto; display: block; border-radius: 4px; }
.section-heading__horse { width: 64px; height: auto; display: block; margin: 0 auto 14px; border-radius: 6px; }

/* NEWS右の馬（horse_03） */
.news__horse-bg { opacity: 1; width: 200px; color: inherit; }
.news__horse-img { width: 100%; height: auto; display: block; border-radius: 8px; }

/* トップページ見出しを白に（下層ページ用ルールの後勝ちを上書き） */
.home .section-heading { text-align: center; font-family: var(--font-jp); color: #fff; margin-bottom: 64px; display: block; gap: 0; }
.home .section-heading__en { font-family: var(--font-en); font-size: clamp(28px,4vw,46px); font-weight: 400; letter-spacing: 0.22em; color: #fff; text-transform: none; display: block; margin-bottom: 8px; }
.home .section-heading__jp { color: rgba(255,255,255,0.85); }

/* ===== ヘッダー ドロップダウン（PCナビ IA拡張 2026-07） ===== */
.site-header__nav-item.has-dropdown { position: relative; }
.site-header__nav-link--parent { cursor: default; }
/* 親項目にドロップダウン記号 */
.site-header__nav-item.has-dropdown > .site-header__nav-link .nav-jp::after,
.site-header__nav-item.has-dropdown > .site-header__nav-link--parent .nav-jp::after {
  content: "\25BE";
  font-size: 9px;
  margin-left: 5px;
  opacity: 0.55;
  vertical-align: middle;
}
.site-header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 210px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  background: rgba(7, 17, 29, 0.98);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-w15);
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  z-index: 950;
}
.site-header__nav-item.has-dropdown:hover > .site-header__dropdown,
.site-header__nav-item.has-dropdown:focus-within > .site-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.site-header__dropdown li { margin: 0; }
.site-header__dropdown a {
  display: block;
  padding: 11px 22px;
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: var(--color-w70);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.site-header__dropdown a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
/* モバイルメニュー：子項目のインデント */
.nav-menu__item--sub .nav-menu__link { padding-left: 24px; }
.nav-menu__item--sub .nav-menu__link-jp { opacity: 0.9; }
.nav-menu__item--sub .nav-menu__link-jp::before {
  content: "\2013\00a0";
  opacity: 0.5;
}
/* フッター：3カラム対応（既存flexに追従。折返し許可） */
.footer-bottom__nav { flex-wrap: wrap; }

/* ===== フッター 特徴アイコン（icon_01–04 差し替え 2026-07） ===== */
.footer-feature__icon img { height: 46px; width: auto; display: block; }

/* ============================================================
   NUTRITION ページ 強化（2026-07）
   ============================================================ */
.nutrition-lead {
  font-size: 16px !important;
  line-height: 2.1 !important;
  color: #3a3a3a !important;
}
/* 特徴カード（Font Awesome） */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 36px 0 8px;
}
.feature-card {
  background: var(--color-white);
  border: 1px solid #ece7de;
  border-radius: 6px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 14px 34px rgba(13,27,46,0.1); }
.feature-card__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy) 0%, #23405f 100%);
  color: var(--color-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.feature-card h3 {
  font-family: var(--font-jp);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-navy);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 13px !important;
  line-height: 1.9 !important;
  color: #666 !important;
  margin: 0 !important;
}
/* 栄養スタットにアイコン付与 */
.nutrition-stat__icon {
  font-size: 22px;
  color: var(--color-gold-soft);
  margin-bottom: 12px;
}
/* カロリー比較バー */
.cal-compare {
  margin: 32px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cal-bar-row { display: flex; align-items: center; gap: 18px; }
.cal-bar-label {
  flex-shrink: 0;
  width: 92px;
  text-align: right;
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--color-navy);
  letter-spacing: 0.04em;
}
.cal-bar-track { flex: 1; background: #efeae1; border-radius: 4px; overflow: hidden; }
.cal-bar {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 14px;
  color: #fff;
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.04em;
  background: #5f7288;
  border-radius: 4px;
  white-space: nowrap;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  animation: calGrow 1.1s var(--ease-out) both;
}
.cal-bar--horse {
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-soft) 100%);
  color: var(--color-navy);
  font-weight: 500;
}
@keyframes calGrow { from { transform: scaleX(0); transform-origin: left; } to { transform: scaleX(1); } }
.cal-note {
  font-size: 13px !important;
  color: #888 !important;
  margin-top: 8px !important;
}

/* ============================================================
   FAQ アコーディオン（2026-07）
   ============================================================ */
.faq-accordion { list-style: none; padding: 0; margin: 0; }
.faq-accordion > li { margin-bottom: 14px; }
.faq-ac {
  border: 1px solid #e5e0d6;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.faq-ac[open] { box-shadow: 0 10px 30px rgba(13,27,46,0.08); border-color: var(--color-gold); }
.faq-ac__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  background: var(--color-bg-light);
  border-left: 4px solid var(--color-gold);
  transition: background 0.25s, color 0.25s;
}
.faq-ac__head::-webkit-details-marker { display: none; }
.faq-ac[open] .faq-ac__head {
  background: var(--color-navy);
  border-left-color: var(--color-gold-soft);
}
.faq-ac__q {
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: var(--color-navy);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-size: 14px; font-weight: 600;
  transition: background 0.25s, color 0.25s;
}
.faq-ac[open] .faq-ac__q { background: var(--color-gold); color: var(--color-navy); }
.faq-ac__q-text {
  flex: 1;
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.6;
  letter-spacing: 0.03em;
  transition: color 0.25s;
}
.faq-ac[open] .faq-ac__q-text { color: #fff; }
.faq-ac__chev {
  flex-shrink: 0;
  color: var(--color-navy);
  font-size: 14px;
  transition: transform 0.3s var(--ease-out), color 0.25s;
}
.faq-ac[open] .faq-ac__chev { transform: rotate(180deg); color: var(--color-gold-soft); }
.faq-ac__body {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 22px 24px;
  border-top: 1px solid #eee6da;
}
.faq-ac__a {
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: var(--color-gold);
  color: var(--color-navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-size: 14px; font-weight: 600;
  margin-top: 1px;
}
.faq-ac__a-text {
  flex: 1;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 300;
  color: #555;
  line-height: 1.95;
  letter-spacing: 0.03em;
}

/* ============================================================
   NEWS アーカイブ / 単記事（2026-07 独自テンプレ）
   ============================================================ */
body.archive, body.single { background-color: #f1f0ec; }

.news-archive { list-style: none; padding: 0; margin: 0; }
.news-archive__item { border-bottom: 1px solid #e2ddd2; }
.news-archive__item:first-child { border-top: 1px solid #e2ddd2; }
.news-archive__link {
  display: flex; align-items: center; gap: 22px;
  padding: 26px 8px; transition: opacity 0.25s, padding-left 0.25s;
}
.news-archive__link:hover { opacity: 0.72; padding-left: 14px; }
.news-archive__date {
  flex-shrink: 0; font-family: var(--font-en); font-size: 15px;
  color: var(--color-gold); letter-spacing: 0.08em;
}
.news-archive__badge {
  flex-shrink: 0; background: var(--color-navy); color: #fff;
  font-family: var(--font-jp); font-size: 11px; font-weight: 300;
  padding: 4px 13px; border-radius: 2px; letter-spacing: 0.06em;
}
.news-archive__title {
  flex: 1; font-family: var(--font-jp); font-size: 15px; font-weight: 400;
  color: var(--color-navy); line-height: 1.6; letter-spacing: 0.03em;
}
.news-archive__arrow { flex-shrink: 0; color: var(--color-gold); font-family: var(--font-en); }
.news-archive__empty { text-align: center; color: #888; padding: 40px 0; }
.news-archive__pager { margin-top: 48px; }
.news-archive__pager .page-numbers {
  display: inline-flex; min-width: 40px; height: 40px; align-items: center; justify-content: center;
  padding: 0 12px; margin: 0 4px; border: 1px solid var(--color-border);
  font-family: var(--font-en); color: var(--color-navy); border-radius: 3px; transition: all 0.2s;
}
.news-archive__pager .page-numbers.current,
.news-archive__pager .page-numbers:hover { background: var(--color-navy); color: #fff; border-color: var(--color-navy); }
.news-archive__pager .screen-reader-text { position: absolute; left: -9999px; }
.news-archive__pager nav { text-align: center; }

/* 単記事ヒーロー */
.single-hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, #1a3050 100%);
  padding: 96px var(--side-pad) 56px;
  text-align: center; position: relative; overflow: hidden;
}
.single-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px);
}
.single-hero__inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.single-hero__meta { display: flex; gap: 14px; align-items: center; justify-content: center; margin-bottom: 18px; }
.single-hero__date { font-family: var(--font-en); font-size: 15px; color: var(--color-gold-soft); letter-spacing: 0.08em; }
.single-hero__badge {
  background: var(--color-gold); color: var(--color-navy);
  font-family: var(--font-jp); font-size: 11px; padding: 4px 13px; border-radius: 2px; letter-spacing: 0.06em;
}
.single-hero__title {
  font-family: var(--font-jp); font-size: clamp(22px, 3.4vw, 32px); font-weight: 400;
  color: #fff; line-height: 1.55; letter-spacing: 0.06em;
}
.single-body { padding-bottom: 40px; }
.single-body img { border-radius: 4px; }
.single-footer { text-align: center; padding: 8px var(--side-pad) 96px; }

/* ============================================================
   HOW TO ENJOY 強化（2026-07）
   ============================================================ */
.howto-steps { list-style: none; padding: 0; margin: 28px 0; display: flex; flex-direction: column; gap: 16px; }
.howto-step {
  display: flex; align-items: flex-start; gap: 20px;
  background: #fff; border: 1px solid #ece7de; border-radius: 6px; padding: 22px 26px;
}
.howto-step__num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy) 0%, #23405f 100%);
  color: var(--color-gold-soft); font-family: var(--font-en); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.howto-step__text { flex: 1; font-family: var(--font-jp); font-size: 15px; font-weight: 300; color: #444; line-height: 1.9; padding-top: 6px; }
.howto-note {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--color-bg-light); border-left: 4px solid var(--color-gold);
  border-radius: 4px; padding: 22px 26px; margin: 24px 0;
}
.howto-note__icon { flex-shrink: 0; color: var(--color-gold); font-size: 22px; margin-top: 2px; }
.howto-note__text { font-family: var(--font-jp); font-size: 14px; font-weight: 300; color: #555; line-height: 1.95; }
.howto-serve { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin: 28px 0; }
.howto-serve__item {
  background: #fff; border: 1px solid #ece7de; border-radius: 6px; padding: 26px 24px; text-align: center;
}
.howto-serve__icon {
  width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--color-bg-light); color: var(--color-navy); font-size: 22px;
  display: flex; align-items: center; justify-content: center;
}
.howto-serve__item h3 { font-family: var(--font-jp); font-size: 16px; font-weight: 500; color: var(--color-navy); margin-bottom: 8px; }
.howto-serve__item p { font-size: 13px !important; color: #666 !important; line-height: 1.85 !important; margin: 0 !important; }

/* ===== 本文中の写真（figure） 2026-07 ===== */
.content-figure { margin: 36px 0; border-radius: 8px; overflow: hidden; box-shadow: 0 14px 34px rgba(13,27,46,0.14); }
.content-figure img { width: 100%; display: block; }
.content-figure figcaption {
  background: var(--color-navy); color: rgba(255,255,255,0.78);
  font-family: var(--font-jp); font-size: 12px; font-weight: 300;
  text-align: center; padding: 11px; letter-spacing: 0.06em;
}

/* ===== 本文内テーブルの文字色（特商法など td が白で沈む対策 2026-07） ===== */
.page-content table td { color: var(--color-text-dark); }
.page-content table th { color: var(--color-navy); }

/* ============================================================
   産地マップ（世界地図＋馬ピン 2026-07）
   ============================================================ */
.origin-map { margin: 30px 0 8px; }
.origin-map__frame {
  position: relative; width: 100%;
  background: linear-gradient(180deg, #eef1f5 0%, #e6ebf0 100%);
  border: 1px solid #dde2e8; border-radius: 10px;
  padding: 8px; overflow: hidden;
}
.origin-map__svg { width: 100%; height: auto; display: block; }
.origin-map__land { fill: #c4cdd7; stroke: #b4bfca; stroke-width: 0.35; }
.origin-map__origin { fill: var(--color-gold); stroke: #9c7d38; stroke-width: 0.4; }
.origin-pin { position: absolute; transform: translate(-50%, -50%); z-index: 3; }
.origin-pin__badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--color-navy); border: 2px solid var(--color-gold);
  border-radius: 40px; padding: 3px 9px;
  box-shadow: 0 4px 12px rgba(13,27,46,0.4);
}
.origin-pin__flag { font-size: 15px; line-height: 1; }
.origin-pin__horse { font-size: 11px; color: var(--color-gold-soft); }
.origin-pin__label {
  position: absolute; left: 50%; transform: translateX(-50%);
  white-space: nowrap; font-family: var(--font-jp); font-size: 11px; font-weight: 400;
  color: var(--color-navy); background: rgba(255,255,255,0.92);
  padding: 2px 9px; border-radius: 3px;
  box-shadow: 0 2px 7px rgba(13,27,46,0.15);
}
.origin-pin--below .origin-pin__label { top: calc(100% + 7px); }
.origin-pin--above .origin-pin__label { bottom: calc(100% + 9px); }
.origin-map__caption { text-align: center; font-size: 13px !important; color: #808080 !important; margin: 16px 0 0 !important; letter-spacing: 0.03em; }
@media (max-width: 680px) {
  .origin-pin__badge { padding: 2px 6px; gap: 3px; }
  .origin-pin__flag { font-size: 12px; }
  .origin-pin__horse { font-size: 9px; }
  .origin-pin__label { font-size: 9px; padding: 1px 5px; }
}

/* ===== ペット 冒頭2カラム（2026-07） ===== */
.pet-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 24px; }
.pet-intro__text h2 { margin-top: 0; }
.pet-intro__img img { width: 100%; border-radius: 8px; box-shadow: 0 14px 34px rgba(13,27,46,0.16); display: block; }
@media (max-width: 760px) {
  .pet-intro { grid-template-columns: 1fr; gap: 22px; }
  .pet-intro__img { order: -1; }
}

/* ============================================================
   ABOUT US コンセプトページ（2026-07）
   ============================================================ */
/* 背景帯（フルワイド。セクションごとに色を切替） */
.about-sec { width: 100vw; position: relative; left: 50%; margin: 0 0 0 -50vw !important; padding: 72px var(--side-pad); }
.about-sec + .about-sec { margin-top: 0 !important; }
.about-sec--white { background-color: #ffffff; }
.about-sec--tint  { background-color: #e9edf1; }
.about-sec--navy  { background: linear-gradient(135deg, var(--color-navy) 0%, #1a3050 100%); overflow: hidden; }
.about-sec__inner { max-width: 1040px; margin: 0 auto; position: relative; z-index: 1; }

/* リード */
.about-lead { text-align: center; max-width: 800px; margin: 0 auto; }
.about-lead__quote { font-family: var(--font-jp); font-size: clamp(20px, 3vw, 28px); font-weight: 400; color: var(--color-navy); line-height: 1.9; letter-spacing: 0.04em; margin: 0; }
.about-lead__en { font-family: var(--font-en); font-size: 14px; color: var(--color-gold); letter-spacing: 0.22em; margin-top: 16px; }

/* ストーリーブロック */
.story-block { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.story-block__img img { width: 100%; border-radius: 8px; box-shadow: 0 16px 40px rgba(13,27,46,0.16); display: block; }
.story-block__label { font-family: var(--font-en); font-size: 13px; letter-spacing: 0.22em; color: var(--color-gold); margin-bottom: 10px; }
.story-block__title { font-family: var(--font-jp); font-size: clamp(20px, 2.6vw, 26px); font-weight: 400; color: var(--color-navy); letter-spacing: 0.06em; margin: 0 0 20px; }
.story-block__text { font-family: var(--font-jp); font-size: 15px; font-weight: 300; line-height: 2.05; color: #444; letter-spacing: 0.03em; margin: 0; }
.story-block--reverse .story-block__img { order: 2; }
@media (max-width: 820px) {
  .about-sec { padding: 52px var(--side-pad); }
  .story-block { grid-template-columns: 1fr; gap: 22px; }
  .story-block__img, .story-block--reverse .story-block__img { order: -1; }
}

/* 生産者への敬意 */
.about-respect { text-align: center; }
.about-sec--navy::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px);
}
.about-respect__icon { font-size: 30px; color: var(--color-gold-soft); margin-bottom: 18px; }
.about-respect__title { font-family: var(--font-jp); font-size: 21px; font-weight: 400; color: #fff; letter-spacing: 0.08em; margin-bottom: 16px; }
.about-respect__text { font-family: var(--font-jp); font-size: 15px; font-weight: 300; line-height: 2.05; color: rgba(255,255,255,0.86); max-width: 720px; margin: 0 auto; }

/* 会社概要 */
.about-company__title { font-family: var(--font-jp); font-size: clamp(18px, 3vw, 24px); font-weight: 400; color: var(--color-navy); letter-spacing: 0.1em; margin: 0 0 24px; padding-bottom: 12px; border-bottom: 1px solid var(--color-gold); }
.about-company__table { width: 100%; border-collapse: collapse; }
.about-company__table th, .about-company__table td { text-align: left; padding: 16px 16px; border-bottom: 1px solid #e2ddd2; font-family: var(--font-jp); font-size: 14px; vertical-align: top; }
.about-company__table th { width: 140px; color: var(--color-navy); font-weight: 500; background: #f7f4ef; letter-spacing: 0.04em; }
.about-company__table td { color: var(--color-text-dark); font-weight: 300; }

/* ============================================================
   TOP 追加導線（feature band / info cards / CTA 2026-07）
   ============================================================ */
/* 汎用：濃背景用ライトボタン */
.band-btn { display: inline-flex; align-items: center; gap: 12px; padding: 14px 34px; border: 1px solid var(--color-gold); color: #fff; font-family: var(--font-jp); font-size: 14px; letter-spacing: 0.06em; border-radius: 2px; transition: background 0.3s, color 0.3s; }
.band-btn:hover { background: var(--color-gold); color: var(--color-navy); }
.band-btn__en { font-family: var(--font-en); font-size: 11px; letter-spacing: 0.14em; opacity: 0.85; }

/* アニマルウェルフェア 画像バンド */
.feature-band { position: relative; width: 100%; min-height: 440px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.feature-band__bg { position: absolute; inset: 0; }
.feature-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.feature-band__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(13,27,46,0.6) 0%, rgba(13,27,46,0.72) 100%); }
.feature-band__inner { position: relative; z-index: 2; max-width: 700px; padding: 88px var(--side-pad); }
.feature-band__en { font-family: var(--font-en); font-size: 14px; letter-spacing: 0.25em; color: var(--color-gold-soft); margin-bottom: 14px; }
.feature-band__title { font-family: var(--font-jp); font-size: clamp(24px, 3.6vw, 36px); font-weight: 400; color: #fff; letter-spacing: 0.08em; margin-bottom: 20px; line-height: 1.6; }
.feature-band__text { font-family: var(--font-jp); font-size: 15px; font-weight: 300; line-height: 2; color: rgba(255,255,255,0.86); margin-bottom: 30px; }

/* 「馬肉をもっと知る」カード */
.info-nav { background: #ffffff; padding: 96px var(--side-pad); }
.info-nav__inner { max-width: var(--max-w); margin: 0 auto; }
.info-nav__heading { text-align: center; margin-bottom: 52px; }
.info-nav__heading-en { display: block; font-family: var(--font-en); font-size: clamp(24px, 3.4vw, 38px); font-weight: 400; color: var(--color-navy); letter-spacing: 0.2em; }
.info-nav__heading-jp { display: block; font-family: var(--font-jp); font-size: 14px; color: var(--color-gold); letter-spacing: 0.12em; margin-top: 10px; }
.info-nav__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.info-card { display: block; background: #fff; border: 1px solid #ece7de; border-radius: 8px; overflow: hidden; transition: transform 0.35s var(--ease-out), box-shadow 0.35s; }
.info-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(13,27,46,0.13); }
.info-card__img { aspect-ratio: 4 / 3; overflow: hidden; }
.info-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s var(--ease-out); }
.info-card:hover .info-card__img img { transform: scale(1.07); }
.info-card__body { padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.info-card__titles { display: flex; flex-direction: column; gap: 4px; }
.info-card__jp { font-family: var(--font-jp); font-size: 16px; font-weight: 400; color: var(--color-navy); letter-spacing: 0.04em; }
.info-card__en { font-family: var(--font-en); font-size: 11px; letter-spacing: 0.14em; color: var(--color-gold); }
.info-card__arrow { color: var(--color-gold); font-family: var(--font-en); font-size: 16px; flex-shrink: 0; transition: transform 0.3s; }
.info-card:hover .info-card__arrow { transform: translateX(5px); }
@media (max-width: 820px) { .info-nav { padding: 64px var(--side-pad); } .info-nav__grid { grid-template-columns: 1fr; gap: 22px; } }

/* お問い合わせ CTA バンド */
.cta-band { background: linear-gradient(135deg, var(--color-navy) 0%, #1a3050 100%); text-align: center; padding: 80px var(--side-pad); position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px); }
.cta-band__inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-band__en { font-family: var(--font-en); font-size: 13px; letter-spacing: 0.25em; color: var(--color-gold-soft); margin-bottom: 12px; }
.cta-band__title { font-family: var(--font-jp); font-size: clamp(22px, 3vw, 30px); font-weight: 400; color: #fff; letter-spacing: 0.06em; margin-bottom: 16px; }
.cta-band__text { font-family: var(--font-jp); font-size: 15px; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,0.82); margin-bottom: 30px; }

/* 産地マップ：モバイルは地図上ラベルを隠し、下に凡例を出す */
.origin-map__legend { display: none; }
@media (max-width: 620px) {
  .origin-pin__label { display: none; }
  .origin-map__legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 14px; margin-top: 14px; padding: 0 8px; }
  .origin-map__legend-item { font-family: var(--font-jp); font-size: 12px; color: var(--color-navy); letter-spacing: 0.02em; }
}


/* ============================================================
   モバイル ハンバーガーメニュー 調整（2026-07-24）
   ============================================================ */
@media (max-width: 600px) {
  .nav-menu__nav { padding: 20px 0; }
  .nav-menu__list { max-width: 100%; }
  .nav-menu__link {
    padding: 15px 2px;
    gap: 12px;
    justify-content: space-between;
    align-items: baseline;
  }
  .nav-menu__link-jp { font-size: 15px; letter-spacing: 0.02em; }
  .nav-menu__link-en { font-size: 10px; letter-spacing: 0.1em; flex-shrink: 0; }
  .nav-menu__item--sub .nav-menu__link { padding-left: 20px; }
}


/* ============================================================
   2026-08-07 修正依頼反映
   ・ロゴマークを紋章（英字なし）へ差し替え／店舗名の文字を拡大
   ・下位メニュー（ドロップダウン）の文字を明るい白へ
   ============================================================ */

/* --- ロゴマーク（紋章）サイズ --- */
.site-header__logo-icon img,
.nav-menu__logo-icon img { height: 54px; width: auto; display: block; }
.footer-bottom__logo-icon img { height: 50px; width: auto; display: block; }

.site-header__logo-icon,
.nav-menu__logo-icon,
.footer-bottom__logo-icon { opacity: 1; }

/* --- 店舗名まわりの文字を拡大 --- */
.site-header__logo-small,
.nav-menu__logo-small,
.footer-bottom__logo-small {
  font-size: 12px;
  letter-spacing: 0.12em;
}

.site-header__logo-name,
.nav-menu__logo-name,
.footer-bottom__logo-name {
  font-size: 20px;
  letter-spacing: 0.06em;
  font-weight: 400;
}

.site-header__logo-en,
.nav-menu__logo-en,
.footer-bottom__logo-en {
  font-size: 12px;
  letter-spacing: 0.16em;
}

.site-header__logo,
.nav-menu__logo,
.footer-bottom__logo-link { gap: 14px; }

/* --- 下位メニュー（ドロップダウン）の視認性 --- */
.site-header__dropdown {
  background: #0d1b2e;
  border-color: rgba(255,255,255,0.28);
}

.site-header__dropdown a {
  color: #ffffff;
  font-weight: 400;
  font-size: 14px;
}

.site-header__dropdown a:hover,
.site-header__dropdown a:focus-visible {
  color: #ffffff;
  background: rgba(255,255,255,0.14);
}

/* --- レスポンシブ調整 --- */
@media (max-width: 900px) {
  .site-header__logo-icon img,
  .nav-menu__logo-icon img { height: 46px; }
  .site-header__logo-name,
  .nav-menu__logo-name { font-size: 18px; }
  .site-header__logo-small,
  .nav-menu__logo-small,
  .site-header__logo-en,
  .nav-menu__logo-en { font-size: 11px; }
}

@media (max-width: 600px) {
  .site-header__logo-icon img,
  .nav-menu__logo-icon img { height: 40px; }
  .footer-bottom__logo-icon img { height: 44px; }
  .site-header__logo,
  .nav-menu__logo { gap: 10px; }
  .site-header__logo-name,
  .nav-menu__logo-name { font-size: 16px; }
  .site-header__logo-small,
  .nav-menu__logo-small { font-size: 10px; }
  .site-header__logo-en,
  .nav-menu__logo-en { font-size: 10px; letter-spacing: 0.12em; }
}

/* ============================================================
   産地マップ（日本地図＋海外国旗）2026-08-07
   ============================================================ */
.jpmap {
  margin: 48px 0 56px;
  padding: 40px 32px 32px;
  background: linear-gradient(180deg, #0d1b2e 0%, #132440 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
}

.jpmap__head {
  text-align: center;
  margin-bottom: 8px;
}

.jpmap__head-en {
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.jpmap__head-jp {
  display: block;
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
}

.jpmap__frame {
  max-width: 660px;
  margin: 8px auto 0;
}

.jpmap__svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.jpmap__land {
  fill: #d6ba84;
  stroke: rgba(255,255,255,0.35);
  stroke-width: 1;
  stroke-linejoin: round;
}

.jpmap__lead {
  stroke: rgba(214,186,132,0.75);
  stroke-width: 1.5;
}

.jpmap__dot { fill: #ffffff; }
.jpmap__anchor { fill: rgba(214,186,132,0.75); }

.jpmap__dot-halo {
  fill: none;
  stroke: rgba(255,255,255,0.55);
  stroke-width: 1.5;
}

.jpmap__label {
  fill: #ffffff;
  font-family: var(--font-jp);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.jpmap__overseas {
  margin: 28px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
  max-width: 660px;
  text-align: center;
}

.jpmap__overseas-title {
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
  margin: 0 0 14px;
}

.jpmap__flags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.jpmap__flag-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.jpmap__flag {
  font-size: 26px;
  line-height: 1;
}

.jpmap__caption {
  margin: 22px 0 0;
  text-align: center;
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
}

@media (max-width: 700px) {
  .jpmap { padding: 28px 16px 24px; }
  .jpmap__label { font-size: 30px; }
  .jpmap__flag-item { font-size: 14px; padding: 9px 18px; }
  .jpmap__flag { font-size: 22px; }
}

/* --- Coming soon パネル（サブスク等）2026-08-07 --- */
.coming-soon {
  margin: 24px 0 8px;
  padding: 48px 24px;
  text-align: center;
  border: 1px solid rgba(13,27,46,0.14);
  border-radius: 4px;
  background: linear-gradient(180deg, #fbfaf7 0%, #f4f1ea 100%);
}

.coming-soon__en {
  margin: 0 0 10px;
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--color-gold);
}

.coming-soon__jp {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #666;
}

/* --- 店舗案内：改装中のお知らせ 2026-08-07 --- */
.store-notice {
  margin: 0 0 28px;
  padding: 20px 24px;
  border-left: 3px solid var(--color-gold);
  background: #fbf7ee;
  border-radius: 0 4px 4px 0;
}

.store-notice__text {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  color: #3b3b3b;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .store-notice { padding: 16px 18px; }
  .store-notice__text { font-size: 14px; }
}

/* ============================================================
   最新情報：Instagram フィード（全幅表示）2026-08-07
   ============================================================ */
.ig-section {
  padding: 64px 0 80px;
  overflow: hidden;
}

.ig-section__head {
  text-align: center;
  margin-bottom: 36px;
  padding: 0 var(--side-pad);
}

.ig-section__en {
  margin: 0 0 10px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--color-gold);
}

.ig-section__jp {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 2;
  color: #444;
}

/* 画面全体（フルブリード）でフィードを表示 */
.ig-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.ig-full #sb_instagram { padding: 0 !important; }
.ig-full #sb_instagram .sbi_photo_wrap { border-radius: 0; }

.ig-section__cta {
  margin-top: 40px;
  text-align: center;
  padding: 0 var(--side-pad);
}

@media (max-width: 900px) {
  .ig-section { padding: 48px 0 64px; }
}

/* Instagram：アカウント未接続時のエラー表示を公開画面から隠す
   （接続後は自動的にフィードが表示される。設定は wp-admin > Instagram Feed から） */
#sbi_mod_error { display: none !important; }
