/* ============================================
   八雲建設 現場公開サイトデモ 共通スタイル
   参考: 7ura.jp 風(白基調×オレンジ・巨大英字ウォーターマーク・ゴースト番号)
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

:root {
  --orange: #ef8200;
  --ink: #1a1a1a;
  --gray: #666;
  --line: #e6e6e6;
  --ghost: #f3f3f3;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; background: #fff; }
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  color: var(--ink);
  background: transparent;
  line-height: 2;
  letter-spacing: .05em;
  padding-top: 88px;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; }
ul { list-style: none; }
.en-font { font-family: "Montserrat", sans-serif; }

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

/* ---------- 背景装飾(縦罫線＋巨大英字) ---------- */
#bg-deco {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden;
  background-image:
    linear-gradient(var(--line), var(--line)),
    linear-gradient(var(--line), var(--line)),
    linear-gradient(var(--line), var(--line));
  background-repeat: no-repeat;
  background-size: 1px 100%;
  background-position: 25% 0, 50% 0, 75% 0;
}
#bg-deco span {
  position: absolute; font-family: "Montserrat", sans-serif; font-weight: 800;
  writing-mode: vertical-rl; transform: rotate(180deg);
  line-height: 1; user-select: none; white-space: nowrap;
}
#bg-deco .w1 { font-size: 190px; color: #f1f1f1; left: -66px; top: -50px; }
#bg-deco .w2 { font-size: 165px; color: #f6f6f6; left: 100px; top: 34%; }

/* ---------- header ---------- */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #fff; height: 88px;
  border-bottom: 1px solid var(--line);
}
.header-in {
  max-width: 1440px; margin: 0 auto; height: 100%;
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.site-logo { display: flex; align-items: center; gap: 12px; }
.site-logo .crest { width: 46px; height: 46px; flex: none; }
.site-logo .t1 { font-size: 1.18rem; font-weight: 900; line-height: 1.3; letter-spacing: .06em; }
.site-logo .t2 {
  font-family: "Montserrat", sans-serif; font-weight: 600;
  font-size: .58rem; color: var(--gray); letter-spacing: .08em; line-height: 1.3;
  position: relative; padding-left: 12px;
}
.site-logo .t2::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; background: var(--orange);
}
#global-nav ul { display: flex; gap: 4px; }
#global-nav a {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 14px; font-size: .92rem; font-weight: 700; letter-spacing: .1em;
  transition: color .2s;
}
#global-nav a::before {
  content: ""; width: 7px; height: 7px; background: var(--orange);
  opacity: 0; transition: opacity .2s; flex: none;
}
#global-nav li.current a::before, #global-nav a:hover::before { opacity: 1; }
#global-nav a:hover { color: var(--orange); }

/* hamburger */
#ham-btn {
  display: none; width: 52px; height: 52px; border: none; cursor: pointer;
  background: var(--ink); position: relative; flex: 0 0 52px;
}
#ham-btn span { position: absolute; left: 14px; right: 14px; height: 2px; background: #fff; transition: .3s; }
#ham-btn span:nth-child(1){ top: 18px; }
#ham-btn span:nth-child(2){ top: 25px; }
#ham-btn span:nth-child(3){ top: 32px; }
body.menu-open #ham-btn span:nth-child(1){ top: 25px; transform: rotate(45deg); }
body.menu-open #ham-btn span:nth-child(2){ opacity: 0; }
body.menu-open #ham-btn span:nth-child(3){ top: 25px; transform: rotate(-45deg); }
#sp-nav {
  display: none; position: fixed; inset: 88px 0 auto 0; z-index: 99;
  background: #fff; border-bottom: 3px solid var(--orange); padding: 6px 26px 22px;
}
#sp-nav a {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; padding: 13px 4px; border-bottom: 1px solid var(--line);
}
#sp-nav a::before { content: ""; width: 7px; height: 7px; background: var(--orange); flex: none; }
#sp-nav a .en { font-family: "Montserrat", sans-serif; font-size: .66rem; color: var(--gray); font-weight: 600; }
body.menu-open #sp-nav { display: block; }

/* ---------- hero (トップ) ---------- */
#hero { position: relative; height: calc(100vh - 88px); min-height: 560px; max-height: 860px; }
.hero-media { position: absolute; top: 0; right: 0; bottom: 64px; left: 19%; overflow: hidden; background: #ddd; }
.hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.2s;
}
.hero-media img.on { opacity: 1; }
.hero-copy { position: absolute; left: 4.5%; top: 20%; z-index: 2; max-width: 700px; }
.hero-eyebrow {
  display: inline-block; background: var(--ink); color: #fff;
  font-family: "Montserrat", sans-serif; font-weight: 700;
  font-size: .7rem; letter-spacing: .22em; padding: 5px 16px;
}
.hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 900; line-height: 1.55; letter-spacing: .08em;
  text-shadow: 0 0 8px #fff, 0 0 18px #fff, 0 0 30px #fff, 0 0 40px rgba(255,255,255,.9);
}
.hero-sq { width: 42px; height: 42px; background: var(--orange); margin-top: 20px; }
.hero-sub {
  margin-top: 16px; font-size: .95rem; font-weight: 700; line-height: 2;
}
.hero-sub span { background: #fff; padding: 3px 10px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 30px; }
/* スライダー操作 */
.hero-ctrl { position: absolute; right: 0; top: 40%; z-index: 3; display: flex; flex-direction: column; }
.hero-ctrl .cnt {
  background: #fff; font-family: "Montserrat", sans-serif; font-weight: 600;
  font-size: .78rem; text-align: center; padding: 9px 0; width: 46px; letter-spacing: .1em;
}
.hero-ctrl button {
  width: 46px; height: 40px; border: none; background: var(--ink); color: #fff;
  cursor: pointer; font-size: .8rem; transition: background .2s; line-height: 1;
}
.hero-ctrl button + button { border-top: 1px solid #444; }
.hero-ctrl button:hover { background: var(--orange); }
.hero-scroll {
  position: absolute; right: 20px; bottom: 0; z-index: 2;
  writing-mode: vertical-rl; font-family: "Montserrat", sans-serif; font-weight: 600;
  font-size: .68rem; letter-spacing: .34em; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.hero-scroll::after {
  content: ""; width: 1px; height: 46px; background: var(--ink);
  animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- セクション共通 ---------- */
section { padding: 100px 0; position: relative; }
.ghost-num {
  position: absolute; top: -40px; right: 1%; z-index: -1;
  font-family: "Montserrat", sans-serif; font-weight: 800;
  font-size: clamp(7rem, 17vw, 14rem); line-height: 1; color: var(--ghost);
  user-select: none;
}
.ghost-num.left { right: auto; left: 1%; }
.sec-head { margin-bottom: 34px; }
.sec-head .en {
  font-family: "Montserrat", sans-serif; font-weight: 800;
  font-size: clamp(1.9rem, 3.8vw, 3.1rem); line-height: 1.15; letter-spacing: .01em;
  position: relative; display: inline-block; z-index: 0;
}
.sec-head .en::before {
  content: ""; position: absolute; left: -13px; top: -8px; z-index: -1;
  width: 28px; height: 28px; background: var(--orange);
}
.sec-head .ja { font-size: 1rem; font-weight: 700; margin-left: 20px; letter-spacing: .12em; }
.sec-head.center { text-align: center; }
.sec-head.center .ja { display: block; margin-left: 0; margin-top: 6px; }

.lead-left { max-width: 860px; font-size: .97rem; }
.lead-center { max-width: 860px; margin: 0 auto; text-align: center; font-size: .97rem; }

/* 画像フルブリード2分割 */
.split { display: grid; grid-template-columns: 52% 48%; align-items: center; }
.split .img { line-height: 0; }
.split .img img { width: 100%; height: clamp(320px, 34vw, 480px); object-fit: cover; }
.split .txt { padding: 20px 6% 20px 6%; }
.split .txt p { font-size: .95rem; }

/* ---------- more ボタン ---------- */
.more-btn {
  display: inline-flex; align-items: center;
  background: var(--ink); color: #fff;
  font-weight: 700; font-size: .9rem; letter-spacing: .16em;
  padding: 15px 54px 15px 26px; position: relative; transition: background .25s;
}
.more-btn::after {
  content: ""; position: absolute; right: -34px; top: 50%;
  width: 64px; height: 2px; background: var(--orange); transition: width .25s;
}
.more-btn:hover { background: var(--orange); color: #fff; }
.more-btn:hover::after { width: 84px; }
.more-btn .en {
  font-family: "Montserrat", sans-serif; font-weight: 600; font-size: .66rem;
  margin-left: 14px; opacity: .7; letter-spacing: .14em;
}
.btn-center { text-align: center; margin-top: 44px; }

/* ---------- news ---------- */
.news-list { max-width: 940px; margin: 0 auto; border-top: 1px solid var(--line); }
.news-list dl {
  display: flex; gap: 22px; padding: 20px 8px; border-bottom: 1px solid var(--line);
  align-items: center; flex-wrap: wrap;
}
.news-list dt {
  font-family: "Montserrat", sans-serif; font-weight: 600;
  color: #555; font-size: .86rem; white-space: nowrap; letter-spacing: .06em;
}
.badge {
  display: inline-block; border: 1px solid var(--orange); color: var(--orange);
  font-size: .7rem; font-weight: 700; padding: 1px 16px; white-space: nowrap; line-height: 1.7;
}
.news-list dd { flex: 1; min-width: 240px; font-size: .93rem; }
.news-list dd a { transition: color .2s; }
.news-list dd a:hover { color: var(--orange); }
.tag-new {
  display: inline-block; background: var(--orange); color: #fff; font-size: .64rem; font-weight: 700;
  padding: 1px 9px; margin-right: 8px; vertical-align: 2px; letter-spacing: .1em;
}

/* ---------- tables ---------- */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { padding: 16px 18px; text-align: left; font-size: .93rem; vertical-align: top; }
.spec-table th {
  width: 24%; white-space: nowrap; font-weight: 700;
  border-bottom: 2px solid var(--ink);
}
.spec-table td { border-bottom: 1px solid var(--line); }
.red-note { color: var(--orange); font-weight: 700; }

/* ---------- よくある質問 ---------- */
.faq { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); background: transparent; }
.faq summary {
  cursor: pointer; padding: 20px 48px 20px 62px; font-weight: 700; font-size: .97rem;
  list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q"; position: absolute; left: 14px; top: 20px;
  width: 30px; height: 30px; background: var(--ink); color: #fff;
  font-family: "Montserrat", sans-serif; font-weight: 700; font-size: .95rem;
  display: grid; place-items: center; line-height: 1;
}
.faq summary::after {
  content: "＋"; position: absolute; right: 18px; top: 20px; color: var(--orange); font-weight: 700;
}
.faq details[open] summary::after { content: "−"; }
.faq .a { padding: 12px 24px 24px 62px; position: relative; font-size: .93rem; }
.faq .a::before {
  content: "A"; position: absolute; left: 14px; top: 10px;
  width: 30px; height: 30px; background: var(--orange); color: #fff;
  font-family: "Montserrat", sans-serif; font-weight: 700; font-size: .95rem;
  display: grid; place-items: center; line-height: 1;
}

/* ---------- 下層ページタイトル ---------- */
.page-title { padding: 78px 24px 0; max-width: 1100px; margin: 0 auto; position: relative; }
.page-title .en {
  font-family: "Montserrat", sans-serif; font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.1; letter-spacing: .01em;
  position: relative; display: inline-block; z-index: 0;
}
.page-title .en::before {
  content: ""; position: absolute; left: -16px; top: -10px; z-index: -1;
  width: 36px; height: 36px; background: var(--orange);
}
.page-title .ja { display: block; font-size: 1.02rem; font-weight: 700; margin-top: 10px; letter-spacing: .14em; }
.page-title .kj { font-size: .82rem; color: var(--gray); margin-top: 4px; }

/* ---------- 工程表 (ガントチャート) ---------- */
.gantt-wrap { overflow-x: auto; }
.gantt { border-collapse: collapse; width: 100%; min-width: 760px; background: #fff; }
.gantt th, .gantt td { border: 1px solid #c9c9c9; font-size: .78rem; padding: 6px 8px; text-align: center; }
.gantt thead th { background: #fff; font-weight: 700; }
.gantt .rowhead { background: #fff; font-weight: 700; white-space: nowrap; text-align: center; min-width: 96px; }
.gantt .subhead { background: #fff; white-space: nowrap; min-width: 88px; }
.gantt td.cell { position: relative; height: 34px; padding: 0; min-width: 44px; }
.gantt td.cell .bar {
  position: absolute; top: 50%; transform: translateY(-50%); height: 14px;
  background: var(--orange); left: 4px; right: 4px;
}
.gantt td.cell .bar.mid { left: 0; right: 0; }
.gantt td.cell .bar.contL { left: 0; }
.gantt td.cell .bar.contR { right: 0; }
.gantt .hol { background: #f0f0f0; width: 10px; min-width: 10px; padding: 0; }
.gantt .hol-label { writing-mode: vertical-rl; font-size: .62rem; color: #888; letter-spacing: 0; }
.gantt-note { font-size: .78rem; color: var(--gray); margin-top: 10px; }

/* ---------- flow ---------- */
.flow { max-width: 860px; margin: 0 auto; }
.flow-step { display: flex; gap: 22px; position: relative; padding: 0 0 30px 0; }
.flow-step::before {
  content: ""; position: absolute; left: 27px; top: 56px; bottom: 0; width: 2px;
  background: var(--line);
}
.flow-step:last-child::before { display: none; }
.flow-step .num {
  flex: 0 0 56px; height: 56px; background: var(--ink); color: #fff;
  display: grid; place-items: center; z-index: 1;
  font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 1.2rem;
}
.flow-step .txt { border: 1px solid var(--line); background: #fff; padding: 16px 24px; flex: 1; }
.flow-step h3 { font-size: 1rem; letter-spacing: .08em; }
.flow-step h3::before { content: ""; display: inline-block; width: 9px; height: 9px; background: var(--orange); margin-right: 10px; }
.flow-step p { font-size: .88rem; color: var(--gray); line-height: 1.9; }

/* ---------- 進捗 ---------- */
.prog-summary { max-width: 860px; margin: 0 auto; border: 1px solid var(--ink); background: #fff; padding: 32px 40px; }
.prog-summary .label { display: flex; justify-content: space-between; align-items: baseline; font-weight: 700; flex-wrap: wrap; gap: 8px; }
.prog-summary .pct {
  font-family: "Montserrat", sans-serif; font-weight: 800;
  color: var(--orange); font-size: 3rem; line-height: 1;
}
.prog-bar { height: 14px; background: #eee; overflow: hidden; margin-top: 14px; }
.prog-bar i { display: block; height: 100%; width: 0; transition: width 1.2s ease; background: var(--orange); }
.prog-note { font-size: .82rem; color: var(--gray); margin-top: 12px; }

.month-block { margin-top: 70px; }
.month-block h3 {
  font-size: 1.2rem; font-weight: 900; letter-spacing: .06em;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.month-block h3::before { content: ""; width: 16px; height: 16px; background: var(--orange); flex: none; }
.month-block .date { font-size: .85rem; color: var(--gray); font-weight: 700; }
.month-block > p { font-size: .95rem; margin-bottom: 22px; }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.photo-grid.grid-3 { grid-template-columns: repeat(3, 1fr); }
.photo-grid figure { line-height: 0; }
.photo-grid img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; }
.photo-grid figcaption { font-size: .82rem; line-height: 1.6; margin-top: 10px; color: var(--ink); }
.photo-grid figcaption::before { content: ""; display: inline-block; width: 8px; height: 8px; background: var(--orange); margin-right: 8px; }

/* ---------- お知らせ ---------- */
.notice-article { max-width: 900px; margin: 0 auto; }
.notice-article h3 {
  font-size: 1.12rem; font-weight: 900; margin: 50px 0 16px; letter-spacing: .08em;
}
.notice-article h3::before { content: ""; display: inline-block; width: 12px; height: 12px; background: var(--orange); margin-right: 12px; }
.notice-article p { font-size: .95rem; }
.caution { color: var(--orange); font-weight: 700; font-size: .9rem; margin-top: 12px; }
.fig-frame { border: 1px solid var(--line); background: #fff; padding: 10px; line-height: 0; }
.fig-frame svg { width: 100%; height: auto; }

/* 写真＋注記オーバーレイ */
.anno-map { position: relative; line-height: 0; }
.anno-map img { width: 100%; display: block; }
.anno {
  position: absolute; color: #ffe14d; font-weight: 700; line-height: 1.4;
  font-size: clamp(.68rem, 1.8vw, 1.05rem); text-shadow: 0 1px 5px rgba(0,0,0,.9), 0 0 2px rgba(0,0,0,.9);
  white-space: nowrap;
}
.anno-ellipse { position: absolute; border: 3px solid #ffe14d; border-radius: 50%; filter: drop-shadow(0 1px 3px rgba(0,0,0,.6)); }

.notice-item { border: 1px solid var(--line); background: #fff; border-left: 5px solid var(--orange); padding: 22px 28px; margin-bottom: 22px; }
.notice-item .date { font-family: "Montserrat", sans-serif; font-weight: 600; font-size: .8rem; color: var(--gray); }
.notice-item h3 { font-size: 1.05rem; margin: 2px 0 8px; font-weight: 900; }
.notice-item p { font-size: .92rem; }

/* ---------- カード(重機・安全) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; }
.card { border: 1px solid var(--line); overflow: hidden; background: #fff; }
.card .thumb { aspect-ratio: 16/9; overflow: hidden; line-height: 0; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .thumb img { transform: scale(1.05); }
.card .body { padding: 18px 22px 22px; }
.card h3 { font-size: 1rem; margin-bottom: 6px; letter-spacing: .08em; }
.card h3::before { content: ""; display: inline-block; width: 9px; height: 9px; background: var(--orange); margin-right: 9px; }
.card p { font-size: .87rem; color: var(--gray); line-height: 1.9; }

/* ---------- 凡例 ---------- */
.legend { border: 1px solid var(--ink); background: #fff; padding: 14px 22px; display: flex; gap: 28px; flex-wrap: wrap; align-items: center; margin-top: 18px; font-size: .85rem; }
.legend .t { font-weight: 700; color: var(--orange); }
.legend span.pin { display: inline-flex; align-items: center; gap: 7px; }
.legend i { width: 14px; height: 14px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); display: inline-block; }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--line); background: #fff; padding: 60px 24px 24px; margin-top: 80px; position: relative; }
footer::before { content: ""; position: absolute; left: 0; top: -1px; width: 120px; height: 3px; background: var(--orange); }
.ft-in {
  max-width: 1100px; margin: 0 auto; display: grid;
  grid-template-columns: auto 1fr auto; gap: 44px; align-items: start;
}
.ft-company { display: flex; align-items: center; gap: 14px; }
.ft-company .crest { width: 56px; height: 56px; flex: none; }
.ft-company .t1 { font-size: 1.3rem; font-weight: 900; letter-spacing: .08em; line-height: 1.4; }
.ft-company .t2 {
  font-family: "Montserrat", sans-serif; font-weight: 600;
  font-size: .6rem; color: var(--gray); letter-spacing: .08em;
  position: relative; padding-left: 12px;
}
.ft-company .t2::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; background: var(--orange);
}
.ft-office h3 { font-size: .92rem; font-weight: 700; letter-spacing: .1em; }
.ft-office h3::before { content: ""; display: inline-block; width: 9px; height: 9px; background: var(--orange); margin-right: 9px; }
.ft-office p { font-size: .88rem; }
.ft-office .tel {
  font-family: "Montserrat", sans-serif; font-weight: 800;
  color: var(--orange); font-size: 1.9rem; line-height: 1.4; letter-spacing: .02em;
}
.ft-office .tel small { font-size: .95rem; font-weight: 700; margin-right: 6px; }
.ft-links { display: flex; flex-direction: column; gap: 10px; }
.ft-links a {
  display: flex; align-items: center; gap: 10px;
  background: var(--ink); color: #fff; font-size: .84rem; font-weight: 700;
  padding: 13px 26px; letter-spacing: .12em; transition: background .2s; white-space: nowrap;
}
.ft-links a::before { content: ""; width: 7px; height: 7px; background: var(--orange); flex: none; }
.ft-links a:hover { background: var(--orange); }
.copyright { text-align: center; font-size: .72rem; color: var(--gray); margin-top: 52px; font-family: "Montserrat", sans-serif; letter-spacing: .08em; }
.demo-note { text-align: center; font-size: .7rem; color: #aaa; margin-top: 6px; }
.demo-note a { color: inherit; text-decoration: underline; }

#page-top {
  position: fixed; right: 16px; bottom: 18px; z-index: 90;
  writing-mode: vertical-rl; font-family: "Montserrat", sans-serif; font-weight: 600;
  font-size: .68rem; letter-spacing: .28em; color: var(--ink);
  display: flex; align-items: center; gap: 8px; text-align: left;
  opacity: 0; pointer-events: none; transition: .3s;
}
#page-top::before { content: ""; width: 1px; height: 42px; background: var(--ink); }
#page-top.show { opacity: 1; pointer-events: auto; }
#page-top:hover { color: var(--orange); }

/* scroll animation */
.sa { opacity: 0; transform: translateY(26px); transition: opacity .7s, transform .7s; }
.sa.show { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1180px) {
  #global-nav a { padding: 10px 8px; font-size: .84rem; }
  .site-logo .t1 { font-size: 1.02rem; }
}
@media (max-width: 980px) {
  #global-nav { display: none; }
  #ham-btn { display: block; }
  #bg-deco .w1 { font-size: 110px; left: -40px; }
  #bg-deco .w2 { display: none; }
}
@media (max-width: 860px) {
  body { padding-top: 72px; }
  #site-header { height: 72px; }
  #sp-nav { inset: 72px 0 auto 0; }
  .site-logo .crest { width: 38px; height: 38px; }
  section { padding: 64px 0; }
  #hero { height: auto; min-height: 0; max-height: none; padding-bottom: 40px; }
  .hero-media { position: relative; inset: auto; left: 8%; height: 46vh; min-height: 300px; }
  .hero-copy { position: relative; left: 0; top: 0; margin-top: -70px; padding: 0 24px; }
  .hero-ctrl { top: 200px; }
  .hero-scroll { display: none; }
  .split { grid-template-columns: 1fr; }
  .split .txt { padding: 34px 24px 0; }
  .split .img img { height: 52vw; }
  .ghost-num { font-size: 6.5rem; top: -26px; }
  .spec-table th { width: 32%; }
  .ft-in { grid-template-columns: 1fr; gap: 30px; justify-items: start; }
  .more-btn::after { right: -20px; width: 40px; }
}
@media (max-width: 640px) {
  .photo-grid, .photo-grid.grid-3 { grid-template-columns: 1fr; }
}
