/* =========================================================
   株式会社オオチワークス  共通スタイル（シック版）
   ========================================================= */

:root {
  --black: #111111;
  --char: #1b1b1b;
  --paper: #f4f2ee;
  --ink: #1a1a1a;
  --ink-soft: #6a6862;
  --line: #dcd8d1;
  --line-dark: rgba(255, 255, 255, .12);
  --gold: #a88b5c;
  --gold-light: #c9ae82;
  --gold-dark: #8a7148;
  --max: 1120px;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --display: "Montserrat", "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html,
body { overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: #fff;
  line-height: 1.95;
  letter-spacing: .05em;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide { max-width: 1440px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand img { height: 38px; width: auto; }
.brand-text { display: flex; flex-direction: column; align-items: center; line-height: 1.25; }
.brand-en {
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  color: var(--ink);
  letter-spacing: .08em;
}
.brand-ja { font-size: 10px; font-weight: 700; color: var(--ink-soft); letter-spacing: .2em; }

.global-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.global-nav a {
  position: relative;
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  letter-spacing: .12em;
  text-decoration: none;
  color: var(--ink);
}
.global-nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.global-nav > ul > li > a:hover::after,
.global-nav a[aria-current="page"]::after { transform: scaleX(1); }
.global-nav .nav-cta a {
  margin-left: 14px;
  padding: 10px 22px;
  border: 1px solid var(--ink);
  transition: background .25s, color .25s;
}
.global-nav .nav-cta a::after { display: none; }
.global-nav .nav-cta a:hover { background: var(--ink); color: #fff; }

.has-sub { position: relative; }
.sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 170px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 0 !important;
  display: block !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .25s;
}
.has-sub:hover .sub-menu,
.has-sub:focus-within .sub-menu { opacity: 1; visibility: visible; transform: none; }
.sub-menu a { font-size: 12px; padding: 8px 20px; }
.sub-menu a:hover { color: var(--gold-dark); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: .25s;
}
.menu-toggle span { top: 22px; }
.menu-toggle span::before { top: -7px; left: 0; }
.menu-toggle span::after { top: 7px; left: 0; }
.menu-open .menu-toggle span { background: transparent; }
.menu-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
.menu-open .menu-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero (Top) ---------- */
.hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 120px 100%,
    linear-gradient(160deg, #1f1f1f 0%, #111 60%, #0b0b0b 100%);
  overflow: hidden;
}
/* 背景の透かし文字（スクロールで横に流れる） */
.hero-mark {
  position: absolute;
  left: 0;
  bottom: -3.4vw;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(80px, 15vw, 210px);
  line-height: 1;
  letter-spacing: .04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .08);
  white-space: nowrap;
  pointer-events: none;
  will-change: transform;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 150px 24px 170px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .3em;
  color: var(--gold-light);
  margin-bottom: 28px;
}
.hero-label::before {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  margin: 0 0 32px;
  font-family: var(--serif);
  font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: .08em;
}
.hero h1 .br { display: block; }
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 52px;
  padding: 0;
  list-style: none;
  font-size: 12px;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .6);
}
.hero-tags li + li::before {
  content: "/";
  margin: 0 14px;
  color: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 220px;
  padding: 17px 28px;
  font-size: 13px;
  letter-spacing: .15em;
  text-decoration: none;
  transition: background .3s, color .3s, border-color .3s;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-family: inherit;
}
.btn-accent { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-accent:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost { border-color: rgba(255, 255, 255, .5); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.arrow::after {
  content: "";
  width: 26px;
  height: 7px;
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: skewX(45deg);
  transform-origin: bottom;
  transition: width .3s;
}
.arrow:hover::after { width: 36px; }

/* ---------- Page title (sub pages) ---------- */
.page-title {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 120px 100%,
    linear-gradient(160deg, #1f1f1f 0%, #111 100%);
  color: #fff;
  padding: 84px 0 76px;
}
.page-title .en {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .3em;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.page-title .en::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.page-title h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3.2vw, 32px);
  letter-spacing: .12em;
}

.breadcrumb {
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--ink-soft);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.breadcrumb li + li::before { content: "—"; margin-right: 8px; color: var(--line); }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-dark); }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section-soft { background: var(--paper); }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head .en {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 48px);
  line-height: 1.1;
  letter-spacing: .1em;
  color: var(--ink);
}
.section-head h2 {
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--ink-soft);
}
.section-head h2::before {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  margin: 0 auto 14px;
  background: var(--gold);
}
.section-foot { text-align: center; margin-top: 56px; }

/* ---------- Shop cards ---------- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.shop-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: border-color .3s;
}
.shop-card:hover { border-color: var(--ink); }
.shop-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #ebe8e2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.shop-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.shop-card:hover .shop-thumb img { transform: scale(1.04); }
/* 背景の透かし（中央・実際のロゴマーク） */
.shop-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/watermark-w.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 52%;
  opacity: .16;
  pointer-events: none;
  z-index: 0;
}
.shop-thumb .fallback {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 100%;
  padding: 0 22px;
  font-family: var(--display);
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .18);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: .04em;
  text-align: center;
}
.shop-thumb.is-light-bg .fallback {
  color: #222;
  text-shadow: 0 1px 6px rgba(255, 255, 255, .45);
}
/* 店舗ごとに色味を変える（実際の店舗ページを参考にした鮮やかな配色） */
.shop-grid .shop-card:nth-child(1) .shop-thumb { background: #f6b344; }
.shop-grid .shop-card:nth-child(2) .shop-thumb { background: #ea4440; }
.shop-grid .shop-card:nth-child(3) .shop-thumb { background: #9eda45; }
.shop-grid .shop-card:nth-child(4) .shop-thumb { background: #3c4be5; }
.shop-grid .shop-card:nth-child(5) .shop-thumb { background: #ff7445; }
.shop-grid .shop-card:nth-child(6) .shop-thumb { background: #ea2691; }
.shop-grid .shop-card:nth-child(7) .shop-thumb { background: #3d9c5a; }
.shop-grid .shop-card:nth-child(8) .shop-thumb { background: #ff2652; }
.shop-grid .shop-card:nth-child(9) .shop-thumb { background: #8f4ef8; }
.shop-body {
  padding: 20px 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
}
.shop-name { font-weight: 500; font-size: 14px; line-height: 1.6; letter-spacing: .06em; }
.shop-go {
  flex-shrink: 0;
  font-size: 0;
  width: 26px;
  height: 7px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: skewX(45deg);
  transform-origin: bottom;
  transition: width .3s;
}
.shop-card:hover .shop-go { width: 36px; }
.shop-card.is-soon { cursor: default; }
.shop-card.is-soon:hover { border-color: var(--line); }
.shop-card.is-soon .shop-thumb { filter: saturate(.5); }
.shop-card.is-soon .shop-name { color: var(--ink-soft); }
.shop-card.is-soon .shop-thumb img,
.shop-card.is-soon:hover .shop-thumb img { transform: none; }
.shop-soon {
  flex-shrink: 0;
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* ---------- Company teaser (top) ---------- */
.teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.teaser-visual {
  background: var(--char);
  color: #fff;
  padding: 56px 52px;
  position: relative;
}
.teaser-visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(168, 139, 92, .45);
  pointer-events: none;
}
.teaser-visual dl { margin: 0; position: relative; }
.teaser-visual dt {
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: .25em;
  margin-bottom: 4px;
}
.teaser-visual dd {
  margin: 0 0 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;

  word-break: keep-all;
  overflow-wrap: break-word;
}
.teaser-visual dd:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.teaser-text .en {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 48px);
  line-height: 1.1;
  letter-spacing: .1em;
  margin: 0 0 32px;
}
.teaser-text h2 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--ink-soft);
  margin: 12px 0 28px;
}
.teaser-text p { margin: 0 0 40px; }

/* ---------- Profile ---------- */
.anchor-nav {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.anchor-nav li + li { border-left: 1px solid var(--line); }
.anchor-nav a {
  display: block;
  padding: 18px 44px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .2em;
  transition: color .25s;
}
.anchor-nav a:hover { color: var(--gold-dark); }

.info-table {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-collapse: collapse;
  border-top: 1px solid var(--ink);
}
.info-table th,
.info-table td {
  text-align: left;
  padding: 26px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.info-table th {
  width: 26%;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* ---------- Access ---------- */
.access-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.access-info .info-table { margin: 0 0 32px; }
.access-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
}
.access-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.message {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}
.message-logo {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
}
.message-logo .fallback {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  font-size: 26px;
  letter-spacing: .06em;
  text-align: center;
}
.message-body p {
  margin: 0 0 1.6em;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 2.2;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.message-sign {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  text-align: right;
}
.message-sign .role { font-size: 12px; letter-spacing: .15em; color: var(--ink-soft); display: block; }
.message-sign .name {
  font-family: "Yuji Syuku", var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: .3em;
}

.timeline {
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}
.timeline li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  padding: 22px 20px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.timeline time {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: .06em;
  color: var(--gold-dark);
  white-space: nowrap;
}
.timeline p { margin: 0; word-break: keep-all; overflow-wrap: break-word; }

/* ---------- News ---------- */
.news-list {
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}
.news-list li { border-bottom: 1px solid var(--line); }
.news-empty {
  padding: 56px 20px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 14px;
}
.news-item { display: flex; gap: 32px; padding: 24px 20px; }
.news-item time { font-family: var(--display); font-weight: 600; font-size: 17px; color: var(--gold-dark); white-space: nowrap; }
.news-item p { margin: 0; word-break: keep-all; overflow-wrap: break-word; }

/* ---------- Contact ---------- */
.contact-lead { text-align: center; margin: 0 auto 56px; max-width: 640px; }
.contact-form {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--ink);
}
.form-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  column-gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.form-row label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 500;
  font-size: 14px;
  padding-top: 12px;
}
.form-row .form-error { grid-column: 2; }
.tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .15em;
  padding: 1px 8px;
  line-height: 1.8;
  white-space: nowrap;
  flex-shrink: 0;
}
.tag-req { color: var(--gold-dark); border: 1px solid var(--gold); }
.tag-opt { color: var(--ink-soft); border: 1px solid var(--line); }
.form-row input,
.form-row textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  transition: border-color .25s, background .25s;
}
.form-row textarea { min-height: 200px; resize: vertical; }
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
}
.form-error { color: #a33a2a; font-size: 12px; margin: 6px 0 0; display: none; }
.form-row.invalid .form-error { display: block; }
.form-row.invalid input,
.form-row.invalid textarea { border-color: #a33a2a; }
.form-submit { text-align: center; margin-top: 52px; }
.form-submit .btn { min-width: 280px; }
.form-notice {
  display: none;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid var(--gold);
  color: var(--ink);
  text-align: center;
  font-size: 14px;
}
.form-notice.show { display: block; }

/* ---------- CTA band (common) ---------- */
.cta {
  background: var(--char);
  color: #fff;
  padding: 96px 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
}
.cta .en {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 48px);
  line-height: 1.1;
  letter-spacing: .1em;
}
.cta h2 {
  margin: 12px 0 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .3em;
  color: rgba(255, 255, 255, .6);
}
.cta-tel {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 46px);
  line-height: 1.2;
  text-decoration: none;
  letter-spacing: .06em;
}
.cta-tel small {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .2em;
  color: var(--gold-light);
}
.cta-hours { margin: 6px 0 0; font-size: 13px; color: rgba(255, 255, 255, .6); }
.cta-note { margin: 4px 0 0; font-size: 12px; color: rgba(255, 255, 255, .45); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, .6);
  padding: 72px 0 32px;
  font-size: 13px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-brand .brand-en { color: #fff; font-size: 26px; }
.footer-brand .company { color: #fff; margin: 4px 0 18px; letter-spacing: .15em; font-size: 13px; }
.footer-brand address { font-style: normal; line-height: 2; }
.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}
.footer-nav a { text-decoration: none; letter-spacing: .12em; transition: color .25s; }
.footer-nav a:hover { color: var(--gold-light); }
.sns-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.sns {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border: 1px solid var(--line-dark);
  text-decoration: none;
  color: #fff;
  letter-spacing: .12em;
  font-size: 12px;
  transition: border-color .25s;
}
.sns:hover { border-color: var(--gold); }
.sns svg { width: 16px; height: 16px; }
.copyright {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  text-align: center;
  font-size: 11px;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .4);
}

/* ---------- Page top ---------- */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 40;
}
.to-top.show { opacity: 1; visibility: visible; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .global-nav {
    position: fixed;
    inset: 76px 0 0 0;
    background: #fff;
    padding: 20px 24px 40px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .25s, transform .25s, visibility .25s;
  }
  .menu-open .global-nav { opacity: 1; visibility: visible; transform: none; }
  .menu-open { overflow: hidden; }
  .global-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .global-nav > ul > li { border-bottom: 1px solid var(--line); }
  .global-nav a { padding: 18px 4px; font-size: 15px; }
  .global-nav > ul > li > a::after { display: none; }
  .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    padding: 0 0 10px 16px !important;
  }
  .sub-menu a { font-size: 13px; padding: 8px 4px; color: var(--ink-soft); }
  .global-nav .nav-cta { border-bottom: 0 !important; margin-top: 28px; }
  .global-nav .nav-cta a { margin: 0; text-align: center; }

  .teaser { grid-template-columns: 1fr; gap: 40px; }
  .message { grid-template-columns: 1fr; gap: 36px; }
  .message-logo { max-width: 200px; margin: 0 auto; }
  .cta-inner { grid-template-columns: 1fr; align-items: start; }
  .footer-inner { grid-template-columns: 1fr; }
  .access-layout { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 44px; }
  .hero-inner { padding: 96px 20px 120px; }
  .hero h1 .br { display: inline; }
  .brand-ja { display: none; }
  .btn { min-width: 0; width: 100%; }
  .info-table th,
  .info-table td { display: block; width: 100%; padding: 14px 4px; }
  .info-table th { border-bottom: 0; padding-bottom: 0; }
  .timeline li { grid-template-columns: 1fr; gap: 2px; padding: 18px 4px; }
  .anchor-nav a { padding: 16px 18px; font-size: 12px; letter-spacing: .1em; }
  .teaser-visual { padding: 44px 32px; }
  .form-row { grid-template-columns: 1fr; row-gap: 8px; padding: 20px 0; }
  .form-row label { padding-top: 0; justify-content: flex-start; }
  .form-row .form-error { grid-column: 1; }
  .form-submit .btn { min-width: 0; }
  .news-item { flex-direction: column; gap: 4px; }
  .contact-lead {
    text-align: left;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
}

/* =========================================================
   MOTION（動きの演出）
   ========================================================= */

/* ---------- ページ切り替えの幕 ---------- */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--black);
  pointer-events: none;
}
/* 読み込み時：黒い幕が上に抜ける */
body::before {
  transform-origin: top;
  animation: coverOut .9s .05s cubic-bezier(.77, 0, .18, 1) forwards;
}
/* 移動時：黒い幕が下から閉じる */
body::after {
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .55s cubic-bezier(.77, 0, .18, 1);
}
body.is-leaving::after { transform: scaleY(1); }
@keyframes coverOut { to { transform: scaleY(0); } }

/* ---------- オープニング（トップのみ・初回のみ） ---------- */
.loader { display: none; }
.js .loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: var(--black);
  color: #fff;
  transition: transform 1s cubic-bezier(.77, 0, .18, 1);
}
.loader.is-done { transform: translateY(-100%); }
.loader.is-skip { display: none; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.loader-logo { overflow: hidden; display: block; }
.loader-logo span {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(34px, 6vw, 56px);
  letter-spacing: .12em;
  transform: translateY(110%);
  animation: rise .9s .2s cubic-bezier(.2, .8, .2, 1) forwards;
}
.loader-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  animation: grow 1s .7s cubic-bezier(.6, 0, .2, 1) forwards;
}
.loader-sub {
  font-size: 11px;
  letter-spacing: .4em;
  color: rgba(255, 255, 255, .6);
  opacity: 0;
  animation: fade .8s 1.1s forwards;
}
@keyframes rise { to { transform: none; } }
@keyframes grow { to { width: 180px; } }
@keyframes fade { to { opacity: 1; } }

/* ---------- ヘッダー（スクロールで細くなる） ---------- */
.site-header { transition: box-shadow .3s; }
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(0, 0, 0, .06); }
@media (min-width: 901px) {
  .header-inner { transition: height .3s; }
  .site-header.is-scrolled .header-inner { height: 62px; }
}

/* ---------- ヒーロー：スライダー ---------- */
.hero {
  min-height: clamp(580px, calc(100vh - 76px), 860px);
  min-height: clamp(580px, calc(100svh - 76px), 860px);
  display: flex;
  align-items: center;
}
.hero-inner { padding: 110px 24px 170px; width: 100%; will-change: transform, opacity; }
.hero-slides {
  position: absolute;
  inset: 0;
  transform: translate3d(var(--mx, 0px), var(--my, 0px), 0);
  transition: transform .8s ease-out;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide:nth-child(1) { background: radial-gradient(circle at 75% 45%, rgba(88, 110, 84, .28), transparent 60%); }
.hero-slide:nth-child(2) { background: radial-gradient(circle at 75% 45%, rgba(140, 110, 60, .26), transparent 60%); }
.hero-slide:nth-child(3) { background: radial-gradient(circle at 75% 45%, rgba(110, 118, 128, .26), transparent 60%); }
.hero-slide:nth-child(4) { background: radial-gradient(circle at 75% 45%, rgba(150, 120, 80, .22), transparent 60%); }
.hero-art {
  position: absolute;
  right: 5vw;
  top: 50%;
  width: min(44vw, 580px);
  height: auto;
  color: var(--gold);
  opacity: .85;
  transform: translateY(-50%) scale(1);
  transition: transform 7s linear;
}
.hero-slide.is-active .hero-art { transform: translateY(-50%) scale(1.07); }
.hero-art .draw {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 2.2s cubic-bezier(.6, .1, .2, 1) var(--d, 0s);
}
.hero-art circle.draw { stroke: rgba(201, 174, 130, .35); }
.hero-slide.is-active .hero-art .draw { stroke-dashoffset: 0; }

.hero-tags li { transition: color .5s; }
.hero-tags li.is-on { color: var(--gold-light); }

/* 見出しが下から立ち上がる */
.hero h1 .br { display: block; overflow: hidden; }
.hero h1 .ln { display: inline-block; }
.js .hero h1 .ln,
.js .hero-label,
.js .hero-tags,
.js .hero .btn-row { opacity: 0; }
.js .hero h1 .ln { transform: translateY(105%); }
.is-loaded .hero h1 .ln { animation: lineUp 1.1s cubic-bezier(.2, .8, .2, 1) forwards; }
.is-loaded .hero h1 .br:nth-child(2) .ln { animation-delay: .15s; }
.is-loaded .hero-label { animation: fadeUp 1s .1s forwards; }
.is-loaded .hero-tags { animation: fadeUp 1s .45s forwards; }
.is-loaded .hero .btn-row { animation: fadeUp 1s .6s forwards; }
@keyframes lineUp { to { transform: none; opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ページャー */
.hero-pager { position: absolute; left: 0; right: 0; bottom: 40px; z-index: 2; }
.hero-pager-inner { display: flex; align-items: center; gap: 28px; }
.hero-count {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .5);
  white-space: nowrap;
}
.hero-count em { font-style: normal; font-size: 22px; color: #fff; }
.hero-caption {
  min-width: 250px;
  font-size: 11px;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .6);
  transition: opacity .4s;
}
.hero-caption b {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .25em;
  color: var(--gold-light);
  margin-right: 12px;
}
.hero-caption.is-change { opacity: 0; }
.hero-bars { display: flex; gap: 8px; }
.hero-bar {
  width: 48px;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.hero-bar::before,
.hero-bar span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, .25);
}
.hero-bar span { background: var(--gold); transform: scaleX(0); transform-origin: left; }
.hero-bar.is-done span { transform: scaleX(1); }
.hero-bar.is-active span { animation: barFill var(--dur, 6s) linear forwards; }
.hero.is-paused .hero-bar.is-active span { animation-play-state: paused; }
@keyframes barFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* スクロール案内 */
.hero-scroll {
  position: absolute;
  right: 28px;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .3em;
  color: rgba(255, 255, 255, .6);
}
.hero-scroll span { writing-mode: vertical-rl; }
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 70px;
  background: linear-gradient(var(--gold) 0 0) 0 0 / 1px 30px no-repeat, rgba(255, 255, 255, .2);
  animation: scrollLine 2s cubic-bezier(.6, 0, .3, 1) infinite;
}
@keyframes scrollLine {
  0% { background-position: 0 -30px, 0 0; }
  100% { background-position: 0 70px, 0 0; }
}

/* ---------- ボタン：塗りが横から走る ---------- */
.btn { position: relative; isolation: isolate; overflow: hidden; }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s cubic-bezier(.7, 0, .2, 1);
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-accent::before { background: var(--gold-dark); }
.btn-outline::before { background: var(--ink); }
.btn-ghost::before { background: #fff; }
.btn-accent:hover,
.btn-outline:hover,
.btn-ghost:hover { background: transparent; }
.btn-accent:hover { border-color: var(--gold-dark); }
.global-nav .nav-cta a { position: relative; isolation: isolate; overflow: hidden; }

/* ---------- 店舗カード：ホバーで幕が上がる ---------- */
.shop-thumb { position: relative; }
.shop-thumb::after {
  content: "VISIT SHOP";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(17, 17, 17, .78);
  color: #fff;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .35em;
  transform: translateY(101%);
  transition: transform .5s cubic-bezier(.7, 0, .2, 1);
}
.shop-card:hover .shop-thumb::after,
.shop-card:focus-visible .shop-thumb::after { transform: none; }

/* ---------- スクロールで現れる ---------- */
.js .rv {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s cubic-bezier(.2, .8, .2, 1), transform 1s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--rd, 0s);
}
.js .rv.in { opacity: 1; transform: none; }
.js .rv-left { transform: translateX(-40px); }
.js .rv-right { transform: translateX(40px); }

/* 英字見出しが1文字ずつ立ち上がる */
.split { overflow: hidden; }
.split .ch { display: inline-block; white-space: pre; }
.js .split .ch {
  transform: translateY(105%);
  transition: transform .9s cubic-bezier(.2, .8, .2, 1) calc(var(--i) * 45ms + var(--rd, 0s));
}
.js .in .split .ch,
.js .split.in .ch { transform: none; }

/* 金の線が伸びる */
.js .section-head h2::before { transform: scaleY(0); transform-origin: top; transition: transform .8s .35s cubic-bezier(.6, 0, .2, 1); }
.js .section-head.in h2::before { transform: none; }

/* 沿革・表：線が左から引かれる */
.js .timeline li,
.js .info-table tr { position: relative; }
.js .timeline li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(.6, 0, .2, 1) calc(var(--rd, 0s) + .2s);
}
.js .timeline li.in::after { transform: scaleX(1); opacity: 0; transition: transform 1.1s cubic-bezier(.6, 0, .2, 1) calc(var(--rd, 0s) + .2s), opacity .8s calc(var(--rd, 0s) + 1.3s); }

/* サブページの見出し */
.js .page-title .en,
.js .page-title h1 { opacity: 0; }
.is-loaded .page-title .en { animation: fadeUp .9s .45s forwards; }
.is-loaded .page-title h1 { animation: fadeUp .9s .6s forwards; }
.page-title::after {
  content: attr(data-en);
  position: absolute;
  right: -1vw;
  bottom: -2.4vw;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(64px, 11vw, 150px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .08);
  white-space: nowrap;
  pointer-events: none;
}

/* ---------- スマホ ---------- */
@media (max-width: 900px) {
  .hero-art { right: 50%; width: min(90vw, 520px); opacity: .28; transform: translate(50%, -50%) scale(1); }
  .hero-slide.is-active .hero-art { transform: translate(50%, -50%) scale(1.07); }
  .hero-scroll { display: none; }
  .hero-caption { min-width: 0; }
}
@media (max-width: 600px) {
  .hero-inner { padding: 80px 20px 150px; }
  .hero-pager { bottom: 28px; }
  .hero-pager-inner { flex-wrap: wrap; gap: 10px 18px; }
  .hero-caption { order: 3; width: 100%; }
  .hero-bar { width: 36px; }
}

/* ---------- 動きを減らす設定の方には静かに表示 ---------- */
@media (prefers-reduced-motion: reduce) {
  body::before, body::after, .js .loader { display: none !important; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-delay: 0s !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .js .rv, .js .split .ch { opacity: 1 !important; transform: none !important; }
}

/* 文字の読みやすさ：左側を少し暗くする */
.hero-slides { z-index: 0; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(17, 17, 17, .88) 0%, rgba(17, 17, 17, .55) 42%, rgba(17, 17, 17, 0) 68%);
  pointer-events: none;
}
.hero-mark { z-index: 1; }
.hero-inner { z-index: 2; }
@media (min-width: 901px) {
  .hero-art { right: 3vw; width: min(40vw, 540px); }
}
@media (max-width: 900px) {
  .hero::before { background: rgba(17, 17, 17, .35); }
}

/* ---------- プライバシーポリシー ---------- */
.policy-body { max-width: 880px; margin: 0 auto; }
.policy-body > p:first-child {
  margin: 0 0 48px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-soft);
  word-break: keep-all;
  overflow-wrap: break-word;
}
.policy-body h3 {
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .04em;
}
.policy-body h3:first-of-type { margin-top: 0; }
.policy-body p {
  margin: 0 0 1.4em;
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink);
  word-break: keep-all;
  overflow-wrap: break-word;
}
.policy-body ul { margin: 0 0 1.4em; padding-left: 1.4em; }
.policy-body li {
  margin-bottom: .5em;
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink);
  word-break: keep-all;
  overflow-wrap: break-word;
}
.policy-date {
  margin-top: 56px !important;
  text-align: right;
  color: var(--ink-soft) !important;
  font-size: 13px !important;
}
.form-privacy-note {
  margin: 0 0 24px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.8;
}
.form-privacy-note a { color: var(--gold-dark); text-decoration: underline; }
