/* ==========================================================
   HATASTA Inc. — 洗練版ドラフト
   参考: dground55.com（余白・全画面写真・小さな英字ラベル）
         areaconnection.net（白地・カード型の実績・カテゴリ）
   ========================================================== */

/* 2026-09-09、ページ切り替えをふわっとさせる演出を試したが
   （@view-transition。3回調整）、実機（iPhone 17 の Chrome）で
   最後まで直らなかったため撤去した。今は元の「パッと切り替わる」
   普通の動きに戻っている。もう一度試すなら、実機で確かめながら
   進めること（このMacだけでは挙動を確認しきれない）。 */

:root {
  --bg: #f3f2ef;          /* 温かみのあるオフホワイト */
  --bg-2: #ebe9e4;        /* 一段濃い地 */
  --ink: #2b2a28;         /* 本文 */
  --ink-2: #6f6c66;       /* 補助テキスト */
  --line: #d9d6cf;        /* 罫線 */
  --accent: #c8265f;      /* HATASTA のピンク。使うのは点と下線だけ */
  --white: #ffffff;
  --latin: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --jp: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  /* 欧文は今までどおり Manrope、日本語・中国語・韓国語だけ本文と同じ Noto Sans JP で出す。
     実績の場所（[大阪・難波] / [Namba, Osaka]）のように、同じ場所へ両方が入るところで使う。 */
  --latin-jp: "Manrope", "Helvetica Neue", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Arial, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --gutter: clamp(20px, 5vw, 72px);
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--jp);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }

.latin { font-family: var(--latin); }
.wrap { width: min(100% - var(--gutter) * 2, var(--max)); margin-inline: auto; }

/* ---------- ラベル（英字・小さく・字間広く） ---------- */
.label {
  font-family: var(--latin);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.label--accent { color: var(--accent); }
.label .num { color: var(--accent); margin-right: 0.8em; }

/* ---------- ヘッダー ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px var(--gutter);
  color: var(--white);
  transition: background .45s var(--ease), color .45s var(--ease), padding .45s var(--ease);
}
.header.is-solid {
  background: rgba(243, 242, 239, .86);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  color: var(--ink);
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: baseline; gap: 8px; }
.brand__name { font-family: var(--latin); font-weight: 800; font-size: 22px; letter-spacing: 0.3em; }
.brand__sub { font-family: var(--latin); font-weight: 600; font-size: 11px; letter-spacing: 0.3em; opacity: .8; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-family: var(--latin); font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  position: relative; padding-bottom: 4px;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
@media (hover: hover) and (pointer: fine) { .nav a:hover::after { transform: scaleX(1); transform-origin: left; } }
.ig { display: inline-flex; width: 28px; height: 28px; }
.ig svg { width: 100%; height: 100%; fill: currentColor; }
.header__right { display: none; align-items: center; gap: 18px; }
.ig--mobile { display: none; }

/* 別の言語のページがあることを知らせる帯。
   出てくるときにポンと現れるのではなく、下からすっと出るようにする */
.langbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 12px 42px; background: #1b1a18; color: #f3f2ef;
  font-size: 12.5px; letter-spacing: .04em;
  animation: langbar-in .35s var(--ease);
}
@keyframes langbar-in {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.langbar a {
  color: #f3f2ef; border-bottom: 1px solid rgba(243,242,239,.6); padding-bottom: 2px;
}
@media (hover: hover) and (pointer: fine) { .langbar a:hover { border-color: var(--accent); color: #fff; } }
.langbar button {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: rgba(243,242,239,.7); font-size: 18px;
  line-height: 1; cursor: pointer; padding: 8px 12px;
}
@media (max-width: 480px) {
  .langbar { flex-direction: column; gap: 7px; font-size: 12px; padding: 11px 38px; text-align: center; }
}
@media (hover: hover) and (pointer: fine) { .langbar button:hover { color: #fff; } }

/* 参考訳のおことわり（外国語版の法令ページ） */
.prose p.legal-note, .legal-note {
  margin: 0 0 26px; padding: 12px 16px; border-left: 2px solid var(--accent);
  background: var(--bg-2); font-size: 12.5px; line-height: 1.7; color: var(--ink-2);
}

/* 言語切り替え（JP / EN / 中文 / 한국어） */
/* margin-left:auto を使うと .header の space-between が効かなくなり、
   ロゴとメニューがくっつく。間隔はヘッダー側の gap に任せる。 */
.hd-lang { display: flex; align-items: center; gap: 2px; }
.hd-lang a {
  font-family: var(--latin); font-size: 10px; letter-spacing: .12em; line-height: 1;
  padding: 6px 7px; border-radius: 2px; color: currentColor; opacity: .78;
  transition: opacity .3s var(--ease), background .3s var(--ease);
  white-space: nowrap;
}
/* 写真の上でも読めるように、うっすら影をつける */
.header:not(.is-solid) .hd-lang a { text-shadow: 0 1px 3px rgba(0,0,0,.55); }
/* 指で押せる大きさを確保する（見た目は変えず、当たり判定だけ広げる） */
@media (hover: none) {
  .hd-lang a { position: relative; }
  .hd-lang a::before { content: ""; position: absolute; inset: -9px 0; }
}
@media (hover: hover) and (pointer: fine) { .hd-lang a:hover { opacity: 1; } }
.hd-lang a.on { opacity: 1; background: rgba(127,127,127,.16); }
.hd-lang a[lang="ko"], .hd-lang a[lang="zh"] { font-family: var(--jp); font-size: 10.5px; }
@media (max-width: 930px) {
  .hd-lang a[lang="ko"], .hd-lang a[lang="zh"] { font-size: 10px; }
}
@media (max-width: 480px) {
  .hd-lang a[lang="ko"], .hd-lang a[lang="zh"] { font-size: 9.5px; }
}
@media (max-width: 360px) {
  .hd-lang a[lang="ko"], .hd-lang a[lang="zh"] { font-size: 9px; }
}
@media (max-width: 930px) {
  .hd-lang { gap: 0; }
  .hd-lang a { padding: 6px 5px; font-size: 9.5px; }
}
/* 狭い画面ではヘッダーの間隔を詰める（4言語ぶんのボタンが入るように） */
@media (max-width: 767px) { .header { gap: 10px; } }
@media (max-width: 480px) { .header { gap: 6px; } }
@media (max-width: 360px) { .header { gap: 4px; } }
/* 4言語ぶんのボタンが入るように、狭い画面では INC. を小さくして詰める
   （2026-09-09、以前は非表示にしていたが、常に出したいという要望で変更） */
@media (max-width: 480px) {
  .brand { gap: 5px; }
  .header .brand__sub { font-size: 9px; letter-spacing: .18em; }
  .hd-lang a { padding: 7px 4px; letter-spacing: .06em; }
}
@media (max-width: 360px) {
  .header .brand__name { font-size: 16px; }   /* 後ろの767px指定に負けないよう強くする */
  .header .brand__sub { font-size: 8px; letter-spacing: .12em; }
  .hd-lang a { padding: 7px 3px; font-size: 9px; }
}

.burger {
  display: none; width: 44px; height: 44px; margin-right: -10px;
  background: none; border: 0; cursor: pointer; color: inherit; position: relative;
}
.burger span {
  position: absolute; left: 12px; width: 20px; height: 1.5px; background: currentColor;
  transition: transform .35s var(--ease), opacity .3s, top .35s var(--ease);
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 25px; }
.burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 40; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; padding: 80px var(--gutter) 40px;
  /* 閉じるときは薄くなりきってから隠す（visibility を .4s 遅らせる）。
     開くときは .menu.is-open 側で遅れなしにして、すぐ「見えている」状態にする。
     そうしないと、開いた直後はまだ見えていない扱いになり、
     キーボードでメニューの中へ入れない（focus が移らない）。 */
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility 0s linear .4s;
  overscroll-behavior: contain;
  /* 横向きの携帯だと画面が低くて中身が入りきらないので、中でスクロールできるようにする */
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
/* 画面が低いときは上下の余白を詰めて、上から並べる */
@media (max-height: 520px) {
  .menu { justify-content: flex-start; padding: 64px var(--gutter) 24px; }
  .menu a { font-size: 17px; padding: 10px 0; }
  .menu__foot { margin-top: 16px; }
}
.menu.is-open { opacity: 1; visibility: visible; transition: opacity .4s var(--ease), visibility 0s; }
.menu a {
  display: flex; align-items: baseline; justify-content: space-between;
  font-family: var(--latin); font-size: 20px; font-weight: 500; letter-spacing: 0.18em;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.menu a span { font-family: var(--jp); font-size: 11px; font-weight: 400; letter-spacing: 0.16em; color: var(--ink-2); }
.menu__foot { margin-top: 28px; }
.menu__foot a { display: inline-flex; align-items: center; gap: 10px; font-family: var(--latin); font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-2); border: 0; padding: 0; }
.menu__foot .ig { width: 22px; height: 22px; }
body.menu-open { overflow: hidden; }
html.menu-open { overflow: hidden; }

/* ---------- ヒーロー ---------- */
.hero {
  position: relative; overflow: hidden;
  height: 100vh; height: calc(var(--vh, 1vh) * 100); height: 100svh;
  min-height: 560px;
  background: #1b1a18; color: var(--white);
}
.hero__slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.6s var(--ease);
}
.hero__slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04); transition: transform 8s linear;
}
.hero__slide.is-active { opacity: 1; z-index: 1; }
.hero__slide.is-active img { transform: scale(1.0); }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.12) 40%, rgba(0,0,0,.18) 100%);
}
/* 言語の案内バーが出ているときは、その高さぶん持ち上げて隠れないようにする。
   帯は初めて来た人にだけ、読み込み終わってから少し遅れて出るので、
   位置がその場でガクッと切り替わって見えていた。transition を足して
   じわっと持ち上がるようにする（2026-09-09）。 */
.hero__inner {
  position: absolute; inset: auto var(--gutter) calc(40px + var(--langbar-h, 0px)) var(--gutter); z-index: 3;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
  transition: bottom .35s var(--ease);
}
.hero__copy .label { color: rgba(255,255,255,.75); }
.hero__title {
  font-family: var(--jp); font-weight: 300; font-size: clamp(26px, 3.6vw, 44px);
  letter-spacing: 0.06em; line-height: 1.35; margin-top: 12px;
}
.hero__lead { font-size: 13px; margin-top: 14px; color: rgba(255,255,255,.82); letter-spacing: .08em; }
/* 写真が切り替わっても文字が上下に動かないよう、高さを先に確保しておく。
   （物件名が2行になっても、場所の表記が無くても、この箱の高さは変わらない） */
.hero__meta {
  text-align: right; font-family: var(--latin); flex-shrink: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 100px;
}
.hero__work {
  font-family: var(--jp); font-size: 13px; letter-spacing: .1em; line-height: 1.5;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden;
}
/* 場所には日本語・中国語・韓国語も入る。字を少し大きく、字間を詰めて読めるようにする。 */
.hero__loc {
  font-family: var(--latin-jp);
  font-size: 10.5px; letter-spacing: .12em; opacity: .7; margin-top: 2px;
  line-height: 1.9; min-height: 19px;
}
.hero__counter {
  display: flex; align-items: center; justify-content: flex-end; gap: 10px;
  margin-top: 16px; font-size: 11px; letter-spacing: .2em;
}
.hero__bar { width: 60px; height: 1px; background: rgba(255,255,255,.3); position: relative; overflow: hidden; }
.hero__bar i { position: absolute; inset: 0; background: #fff; transform-origin: left; transform: scaleX(0); }
.hero.is-running .hero__bar i { animation: bar 7s linear infinite; }
@keyframes bar { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hero__scroll {
  position: absolute; left: 50%; bottom: calc(18px + var(--langbar-h, 0px)); z-index: 3; transform: translateX(-50%);
  font-family: var(--latin); font-size: 9px; letter-spacing: .3em; opacity: .6;
  transition: bottom .35s var(--ease);
}

/* ---------- About は黒い面（スクロールに緩急をつける） ---------- */
#about { background: #1b1a18; color: #f3f2ef; }
#about .label { color: rgba(243,242,239,.6); }
#about .statement__text { color: rgba(243,242,239,.74); }
#about .statement__sign small { color: rgba(243,242,239,.55); }

/* ---------- セクション共通 ---------- */
.section { padding-block: clamp(80px, 11vw, 150px); }
.section--tight { padding-block: clamp(60px, 8vw, 110px); }
.section--alt { background: var(--bg-2); }
.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: clamp(32px, 4vw, 56px); }
.sec-head .label { display: inline-flex; align-items: center; }
.sec-head .label::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); margin-right: 12px; }
.sec-title { font-family: var(--latin); font-weight: 300; font-size: clamp(30px, 4.4vw, 56px); letter-spacing: 0.06em; line-height: 1; }

/* ---------- ステートメント ---------- */
.statement { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; }
.statement__ja {
  font-weight: 300; font-size: clamp(22px, 2.6vw, 34px); line-height: 1.7; letter-spacing: 0.08em;
}
.statement__ja em { font-style: normal; font-family: var(--latin); font-weight: 500; letter-spacing: 0.1em; }
.statement__text { margin-top: 28px; color: var(--ink-2); font-size: 14px; max-width: 42em; }
.statement__sign { margin-top: 26px; font-size: 12px; letter-spacing: .16em; }
.statement__sign small { display: block; font-family: var(--latin); font-size: 9px; letter-spacing: .3em; color: var(--ink-2); }

/* ---------- WORKS ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.filters button {
  background: none; border: 0; padding: 4px 0; cursor: pointer;
  font-family: var(--latin); font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-2); position: relative;
}
.filters button::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--accent); transform: scaleX(0); transition: transform .3s var(--ease); }
.filters button.is-active { color: var(--ink); }
.filters button.is-active::after { transform: scaleX(1); }
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.card { display: block; position: relative; overflow: hidden; background: var(--bg-2); }
/* 隠す指定は必ず勝たせる。あとに出てくる .card.is-solo{display:grid} と
   同じ強さなので、! を付けないと絞り込みが効かなくなる（2026-09-08） */
.card.is-hidden { display: none !important; }
.card__img { aspect-ratio: 3 / 2; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
@media (hover: hover) and (pointer: fine) { .card:hover .card__img img { transform: scale(1.04); } }
.card__over {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(16px, 2vw, 28px); color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,.62) 0%, rgba(0,0,0,.18) 45%, rgba(0,0,0,0) 70%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.card:focus-visible .card__over { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .card:hover .card__over { opacity: 1; } }
.card__cat { font-family: var(--latin); font-size: 10px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.75); }
.card__title { font-size: clamp(16px, 1.6vw, 22px); font-weight: 400; letter-spacing: .06em; margin-top: 6px; line-height: 1.4; transform: translateY(6px); transition: transform .5s var(--ease); }
@media (hover: hover) and (pointer: fine) { .card:hover .card__title { transform: none; } }
.card__loc { font-family: var(--latin-jp); font-size: 10.5px; letter-spacing: .12em; color: rgba(255,255,255,.7); margin-top: 4px; }
@media (hover: none), (pointer: coarse), (pointer: none) { .card__over { opacity: 1; } .card__title { transform: none; } }

/* 単独の行：写真は2枚並びと同じ大きさで左、右に店名を常時表示（COCOON を参考に本人指定） */
.card.is-solo {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;   /* 一覧と同じ割り方＝写真の大きさが揃う */
  background: transparent; overflow: visible;
}
.card.is-solo .card__img { background: var(--bg-2); }
.card.is-solo .card__over {
  position: static; opacity: 1; background: none; color: var(--ink);
  padding: 0 0 0 clamp(8px, 2.4vw, 32px); justify-content: center;
}
.card.is-solo .card__cat { color: var(--ink-2); }
.card.is-solo .card__title { font-size: clamp(20px, 2.2vw, 30px); font-weight: 300; margin-top: 10px; transform: none; }
.card.is-solo .card__loc { color: var(--ink-2); margin-top: 8px; }
.card.is-solo .card__over::after {
  content: "VIEW PROJECT"; align-self: flex-start; margin-top: 24px; padding-bottom: 4px;
  font-family: var(--latin); font-size: 10.5px; letter-spacing: .2em; border-bottom: 1px solid var(--ink);
}
.grid-foot { margin-top: 56px; text-align: center; }
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--latin); font-size: 11px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  padding: 16px 30px; border: 1px solid var(--ink); border-radius: 999px; background: none; cursor: pointer; color: var(--ink);
  transition: background .35s var(--ease), color .35s var(--ease);
}
@media (hover: hover) and (pointer: fine) { .btn:hover { background: var(--ink); color: var(--bg); } }
.btn--fill { background: var(--ink); color: var(--bg); }
@media (hover: hover) and (pointer: fine) { .btn--fill:hover { background: var(--accent); border-color: var(--accent); color: #fff; } }
.btn svg { width: 14px; height: 14px; }
.btn--icon { width: 54px; height: 54px; padding: 0; justify-content: center; }
.btn--icon svg { width: 24px; height: 24px; fill: currentColor; stroke: none; }

/* ---------- SERVICE ---------- */
.service { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); }
.service__item { padding: 44px 40px 44px 0; border-bottom: 1px solid var(--line); }
.service__item + .service__item { padding-left: 40px; padding-right: 0; border-left: 1px solid var(--line); }
.service__num { font-family: var(--latin); font-size: 11px; letter-spacing: .3em; color: var(--accent); }
.service__en { font-family: var(--latin); font-weight: 300; font-size: 30px; letter-spacing: .06em; margin-top: 10px; }
.service__ja { font-size: 15px; font-weight: 500; letter-spacing: .12em; margin-top: 4px; }
.service__text { margin-top: 18px; color: var(--ink-2); font-size: 13.5px; }
.service__note { margin-top: 28px; display: flex; gap: 16px; align-items: center; color: var(--ink-2); font-size: 12.5px; }
.service__note::before { content: ""; width: 40px; height: 1px; background: var(--accent); flex-shrink: 0; }

/* ---------- COMPANY ---------- */
.company { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }
.dl { border-top: 1px solid var(--line); }
.dl div { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.dl dt { color: var(--ink-2); letter-spacing: .14em; }
.dl dd { margin: 0; }
.company__map { margin-top: 28px; aspect-ratio: 16/9; background: var(--bg-2); display: grid; place-items: center; color: var(--ink-2); font-size: 11px; letter-spacing: .2em; }

/* ---------- CONTACT ---------- */
.contact { background: var(--ink); color: var(--bg); }
.contact .label { color: rgba(243,242,239,.6); }
.contact .sec-head .label::before { background: var(--accent); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
.contact__title { font-weight: 300; font-size: clamp(24px, 3vw, 38px); letter-spacing: .08em; line-height: 1.5; }
.contact__text { margin-top: 18px; color: rgba(243,242,239,.7); font-size: 13.5px; max-width: 34em; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
.contact .btn { border-color: rgba(243,242,239,.5); color: var(--bg); }
@media (hover: hover) and (pointer: fine) { .contact .btn:hover { background: var(--bg); color: var(--ink); } }
.contact .btn--fill { background: var(--bg); color: var(--ink); border-color: var(--bg); }
@media (hover: hover) and (pointer: fine) { .contact .btn--fill:hover { background: var(--accent); color: #fff; border-color: var(--accent); } }

/* ---------- フッター ---------- */
.footer { padding: 40px 0 28px; border-top: 1px solid var(--line); }
.footer__row { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer .brand { color: var(--ink); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.footer__nav a { font-family: var(--latin); font-size: 10px; letter-spacing: .22em; color: var(--ink-2); }
.footer__copy { margin-top: 26px; font-family: var(--latin); font-size: 9.5px; letter-spacing: .2em; color: var(--ink-2); }
/* フッターの GUIDE（案内ページ4つへの入口。メニューの Guide と同じ並び）と会社情報 */
.footer__guides { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 22px; margin-top: 22px; }
.footer__guides-label { font-family: var(--latin); font-size: 11px; letter-spacing: .26em; color: var(--ink); }
.footer__guides a { font-size: 11.5px; letter-spacing: .04em; color: var(--ink-2); }
.footer__company { margin-top: 26px; font-size: 11px; line-height: 1.9; letter-spacing: .04em; color: var(--ink-2); }
.footer__company + .footer__copy { margin-top: 10px; }

/* フッターの関連事業（大泊まりとトゥクトゥク。飛び先はインスタ） */
.footer__group { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.footer__group-label {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  font-family: var(--latin); font-size: 11px; letter-spacing: .26em; color: var(--ink);
}
.footer__group-label span { font-family: var(--jp); font-size: 11.5px; letter-spacing: .06em; color: var(--ink-2); }
.footer__group-list {
  list-style: none; margin: 16px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; max-width: 760px;
}
.gcard {
  position: relative; display: flex; align-items: flex-end; gap: 12px; min-width: 0;
  min-height: 168px; padding: 22px 24px; color: #fff; overflow: hidden; border-radius: 2px;
  background: #1b1a18 center / cover no-repeat;
  transition: transform .3s var(--ease);
}
/* 写真は大泊まりのHPと同じもの（海沿いの外観／トゥクトゥクの正面） */
.footer__group-list li:nth-child(1) .gcard { background-image: url(../img/group-ohtomari.jpg); }
.footer__group-list li:nth-child(2) .gcard { background-image: url(../img/group-tuktuk.jpg); background-position: center 28%; }   /* 車体の文字が説明文と重ならない位置 */
/* WebP が使える端末にはより軽い画像を（使えない端末は上の JPG のまま） */
@supports (background-image: image-set(url(x.webp) type("image/webp"))) {
  .footer__group-list li:nth-child(1) .gcard { background-image: image-set(url(../img/group-ohtomari.webp) type("image/webp")); }
  .footer__group-list li:nth-child(2) .gcard { background-image: image-set(url(../img/group-tuktuk.webp) type("image/webp")); }
}
.gcard::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.66) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.1) 100%);
  transition: background .3s var(--ease);
}
.gcard > * { position: relative; z-index: 1; }
@media (hover: hover) and (pointer: fine) { .gcard:hover { transform: translateY(-2px); } }
@media (hover: hover) and (pointer: fine) { .gcard:hover::after { background: linear-gradient(to top, rgba(0,0,0,.74) 0%, rgba(0,0,0,.34) 55%, rgba(0,0,0,.16) 100%); } }
.gcard__ig { display: block; width: 22px; height: 22px; flex-shrink: 0; margin-bottom: 1px; color: #fff; }
.gcard__ig svg { width: 100%; height: 100%; fill: currentColor; display: block; }
.gcard__body { display: block; min-width: 0; }
.gcard__name { display: block; font-family: var(--jp); font-size: 17px; font-weight: 500; letter-spacing: .04em; color: #fff; line-height: 1.4; }
.gcard__desc { display: block; margin-top: 4px; font-size: 11.5px; letter-spacing: .04em; color: rgba(255,255,255,.82); line-height: 1.6; }
.gcard__cta {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
  font-family: var(--latin); font-size: 10.5px; letter-spacing: .16em; color: #fff;
}
.gcard__cta svg { width: 13px; height: 13px; transition: transform .3s var(--ease); }
@media (hover: hover) and (pointer: fine) { .gcard:hover .gcard__cta svg { transform: translateX(3px); } }

/* ---------- スクロール出現 ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* ---------- タブレット ---------- */
@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .statement, .company, .contact__inner { grid-template-columns: 1fr; gap: 28px; }
  .contact__actions { justify-content: flex-start; }
}

/* iPad縦など 768〜930px でも、メニューが言語ボタンを画面の外へ押し出すので
   ハンバーガーに切り替える（4言語ぶんのボタンが増えたため） */
@media (max-width: 930px) {
  .nav { display: none; }
  .burger { display: block; }
  .header__right { display: flex; align-items: center; gap: 14px; }
  .ig--mobile { display: inline-flex; width: 26px; height: 26px; }
}

/* ---------- 携帯 ---------- */
@media (max-width: 767px) {
  body { font-size: 14.5px; }
  .nav { display: none; }
  .burger { display: block; }
  .header__right { display: flex; }
  .ig--mobile { display: inline-flex; width: 26px; height: 26px; }
  .brand__name { font-size: 19px; }
  .header__right { gap: 8px; }
  .header { padding: 16px var(--gutter); }
  .hero { min-height: 0; }
  .hero__inner { flex-direction: column; align-items: flex-start; bottom: calc(48px + var(--langbar-h, 0px)); gap: 14px; }
  .hero__meta { text-align: left; }
  .hero__counter { justify-content: flex-start; }
  .hero__title { font-size: 28px; }
  .hero__lead { font-size: 12.5px; }
  .section { padding-block: 44px; }
  section[id] { scroll-margin-top: 16px; }
  .sec-head { margin-bottom: 20px; }
  .company { gap: 14px; }
  #about { min-height: 100vh; min-height: calc(var(--vh, 1vh) * 100 + 60px); min-height: 100lvh; display: flex; flex-direction: column; justify-content: center; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .sec-title { font-size: 30px; }
  .grid { grid-template-columns: 1fr; gap: 12px; }
  .card__title { font-size: 17px; }
  .card.is-solo { display: block; grid-column: auto; overflow: hidden; }
  .card.is-solo .card__over {
    position: absolute; inset: 0; padding: 16px; color: #fff; justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,.62) 0%, rgba(0,0,0,.18) 45%, rgba(0,0,0,0) 70%);
  }
  .card.is-solo .card__cat, .card.is-solo .card__loc { color: rgba(255,255,255,.75); }
  .card.is-solo .card__title { font-size: 17px; font-weight: 400; margin-top: 6px; }
  .card.is-solo .card__over::after { content: none; }
  .service { grid-template-columns: 1fr; }
  .service__item { padding: 32px 0; }
  .service__item + .service__item { padding-left: 0; border-left: 0; }
  /* 英語の項目名（Representative）は84pxに収まらないので、狭い画面では上下に並べる */
  .dl div { grid-template-columns: 1fr; gap: 3px; padding: 11px 0; font-size: 13px; line-height: 1.7; }
  .dl dt { font-size: 11.5px; letter-spacing: .1em; }
  .company__map { margin-top: 18px; }
  .contact__actions { flex-direction: row; align-items: center; }
  .contact .btn { justify-content: center; }
  .contact .btn--fill { flex: 1; }
  .footer__row { flex-direction: column; align-items: flex-start; }
  .footer__group-list { grid-template-columns: 1fr; gap: 10px; }
  .gcard { min-height: 150px; padding: 18px 18px; }
  .gcard__name { font-size: 16px; }
}

/* ==========================================================
   下層ページ共通（work.html / contact.html / privacy.html）
   ========================================================== */
body.page .header { color: var(--ink); }
.subpage, .work { padding: clamp(120px, 16vw, 180px) 0 clamp(80px, 10vw, 140px); }
.subpage__head { margin-bottom: clamp(36px, 5vw, 64px); }
.subpage__head .sec-title { margin-top: 14px; }
.subpage__lead { margin-top: 22px; color: var(--ink-2); font-size: 14px; max-width: 40em; }
.wrap--narrow { max-width: 760px; }
.pc-only { display: inline; }

/* ---------- プロフィールの肖像（profile.html の見出し） ----------
   写真は「紙の色 #f3f2ef に溶ける」よう画像ファイル側でモノクロにしてある。
   CSS の filter: grayscale は使わない（Google画像検索・SNSにはカラーのまま出て
   ページと食い違うため）。枠線も影も付けない。付けると溶かした意味が消える。 */
.subpage__head--intro { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: end; }
/* 名前は写真の高さに対して大きすぎたので、このページだけ少し抑える
   （他の下層ページの見出しは 56px のまま） */
.subpage__head--intro .sec-title { font-size: clamp(30px, 3.4vw, 42px); }
.portrait { margin: 0; }
/* 読み込み前の下地は地の色そのもの。--bg-2 だと写真が出るまで一段濃い四角が見えて、
   「紙に溶かす」ために置いたはずの場所に枠が出てしまう */
.portrait img { display: block; width: 100%; height: auto; background: var(--bg); }

/* 会社案内の地図 */
.company__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(1) contrast(.95); }

/* ---------- 実績詳細 ---------- */
.work__head { margin-bottom: clamp(32px, 4vw, 56px); }
.work__head .label a { color: var(--ink-2); }
@media (hover: hover) and (pointer: fine) { .work__head .label a:hover { color: var(--ink); } }
.work__sep { margin: 0 .8em; opacity: .5; }
.work__title { font-weight: 400; font-size: clamp(26px, 3.6vw, 44px); letter-spacing: .06em; line-height: 1.35; margin-top: 14px; }
.work__loc { font-family: var(--latin-jp); font-size: 10.5px; letter-spacing: .12em; color: var(--ink-2); margin-top: 8px; }
.work__desc { margin-top: 22px; color: var(--ink-2); font-size: 14px; max-width: 42em; }
.work .wrap { max-width: 1160px; }
.work__photos { columns: 2; column-gap: 18px; }
.work__photo { margin: 0 0 18px; break-inside: avoid; background: var(--bg-2); }
.work__photo img { width: 100%; height: auto; display: block; }
.work__photos .work__photo:first-child { column-span: all; }   /* 1枚目だけ横いっぱい、2枚目から2列 */
.work__missing { margin-top: 14px; color: var(--ink-2); }
.work__pager { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; margin-top: clamp(48px, 6vw, 80px); padding-top: 28px; border-top: 1px solid var(--line); }
.work__nav { display: block; min-width: 0; }
.work__nav--next { text-align: right; }
.work__nav-title { display: block; font-size: 14px; margin-top: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.work__nav .label { color: var(--accent); }

/* ---------- お問い合わせフォーム ---------- */
.form { max-width: 720px; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__row { display: grid; grid-template-columns: 200px 1fr; gap: 16px 24px; padding: 20px 0; border-top: 1px solid var(--line); align-items: start; }
.form__row:last-of-type { border-bottom: 1px solid var(--line); }
.form__label { font-size: 13px; letter-spacing: .12em; padding-top: 10px; }
.req { font-family: var(--latin); font-size: 9px; letter-spacing: .2em; color: var(--accent); margin-left: 8px; vertical-align: middle; }
.form__input {
  width: 100%; font: inherit; font-size: 15px; letter-spacing: .04em; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 11px 14px;
  transition: border-color .25s var(--ease);
}
.form__input:focus { outline: 2px solid var(--ink); outline-offset: 3px; border-color: var(--ink); }
.form__input.is-error { border-color: var(--accent); }
/* 何が悪いかを文字でも出す。枠の色だけでは、色の違いが分かりにくい人に伝わらない */
.form__error { display: block; margin: 7px 0 0; font-size: 13px; line-height: 1.7; color: var(--accent); }
.form__error[hidden] { display: none; }
.form__error::before { content: "\26A0"; margin-right: 6px; font-size: 12px; }
.form__textarea { resize: vertical; min-height: 160px; line-height: 1.8; }
.form__radios { display: flex; flex-wrap: wrap; gap: 10px 22px; padding-top: 8px; }
.form__radios label { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; }
.form__radios input { accent-color: var(--ink); width: 16px; height: 16px; }
.form__note { margin-top: 18px; font-size: 12px; color: var(--ink-2); }
.form__note a { text-decoration: underline; text-underline-offset: 3px; }
.form__actions { margin-top: 28px; }

/* ---------- プライバシー等の本文 ---------- */
.prose h2 { font-size: 15px; font-weight: 500; letter-spacing: .12em; margin: 36px 0 10px; padding-left: 14px; border-left: 2px solid var(--accent); }
.prose p { font-size: 14px; color: var(--ink-2); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose__date { margin-top: 40px; color: var(--ink) !important; font-size: 13px !important; letter-spacing: .12em; }

@media (max-width: 767px) {
  .pc-only { display: none; }
  /* 携帯は縦に積む。写真を全幅にすると「全幅にしそこねた写真」に見えるので
     列の 62%（最大240px）に抑えて、右にはっきり余白を残す */
  .subpage__head--intro { grid-template-columns: 1fr; gap: 26px; }
  .portrait { width: 62%; max-width: 240px; }
  .form__row { grid-template-columns: 1fr; gap: 8px; padding: 16px 0; }
  .form__label { padding-top: 0; }
  .form__actions .btn { width: 100%; justify-content: center; }
  .work__pager { grid-template-columns: 1fr 1fr; }
  .work__photos { columns: 1; }
  .work__photo { margin-bottom: 12px; }
  .work__pager .btn { grid-column: 1 / -1; order: 3; justify-content: center; }
}

/* 携帯を横向きにすると縦が足りず、写真だけで1画面が埋まって名前が下に出てこない。
   高さが無いときは写真を小さくする（メニューの @media (max-height: 520px) と同じ考え方） */
@media (max-width: 767px) and (max-height: 520px) {
  .subpage, .work { padding-top: 96px; }
  .portrait { width: 34%; max-width: 140px; }
}

/* 翻訳された実績紹介文：単語の強制分割を避け、広い画面でも行を伸ばしすぎない。 */
.work__desc { white-space: pre-line; }
html[lang="en"] .work__desc { max-width: 68ch; line-height: 1.9; letter-spacing: .015em; overflow-wrap: break-word; hyphens: none; }
html[lang="zh"] .work__desc { max-width: 40em; line-height: 2; letter-spacing: .03em; overflow-wrap: break-word; }
html[lang="ko"] .work__desc { max-width: 42em; line-height: 2; letter-spacing: .015em; word-break: keep-all; overflow-wrap: break-word; }
@media (max-width: 622px) {
  html[lang="en"] .work__desc, html[lang="zh"] .work__desc, html[lang="ko"] .work__desc { font-size: 14px; }
}
/* 320px幅でもロゴ・4言語・Instagram・メニューを欠けずに表示する。 */
@media (max-width: 360px) {
  .header { padding-inline: 12px; }
  .header .brand__name { letter-spacing: .2em; }
  .header__right { gap: 4px; }
}

/* Same-document language changes keep the real page and photographs in place. */
html.language-changing { overflow-anchor: none; }
html.language-changing .header,
html.language-changing .reveal { transition: none !important; }
html.language-changing::view-transition-group(root) { animation: none; }
html.language-changing::view-transition-image-pair(root) { isolation: isolate; }
html.language-changing::view-transition-old(root) { animation: none; opacity: 1; mix-blend-mode: normal; }
html.language-changing::view-transition-new(root) { animation: language-blend 1.4s cubic-bezier(.22,.61,.36,1) both; mix-blend-mode: normal; }
@keyframes language-blend { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  html.language-changing::view-transition-new(root) { animation: none; }
}

/* Touch links activate normally without waiting for a double-tap gesture.
   Pinch zoom and page scrolling remain available. Mouse effects are gated above. */
a, button, input[type="submit"], input[type="button"] { touch-action: manipulation; }

/* Direct routes to practical information, using the existing type and rules. */
.service-guides { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 36px; margin-top: 36px; }
.service-guides a { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 64px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 14px; line-height: 1.6; }
.service-guides svg, .menu__guides svg { width: 16px; height: 16px; flex-shrink: 0; }
.service-guides a:focus-visible, .menu__guides a:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }
.menu__guides { margin-top: 24px; flex-shrink: 0; }
.menu__guides .label { margin-bottom: 6px; color: var(--ink-2); }
.menu__guides a { font-family: var(--jp); font-size: 14px; font-weight: 400; letter-spacing: .04em; line-height: 1.6; padding: 9px 0; align-items: center; gap: 16px; }
@media (max-width: 930px) { .menu { justify-content: flex-start; } .menu > a, .menu__foot { flex-shrink: 0; } }
@media (max-width: 600px) { .service-guides { grid-template-columns: 1fr; gap: 0; margin-top: 28px; } }

/* Keep compact language labels while giving each mobile link its own target. */
@media (max-width: 930px) {
  .hd-lang a { min-width: 24px; min-height: 24px; display: flex; align-items: center; justify-content: center; }
}

/* ---------- ヘッダーの丸ボタン（相手別の入口） ----------
   header の flex 行には一切触らない。実測でヘッダーは 320〜400px 幅で余白が
   1px〜-13px しかなく、flex-wrap を足すと 390px あたりでハンバーガーが
   2段目に落ちた。そこで絶対配置にして、ヘッダーの下にぶら下げる。
   ヘッダーは position:fixed なので、absolute の基準になる。
   本文は main の padding-top 124px（スマホ）/153px（PC）で、ボタン下端 114px/109px
   をかわしている。左に「工事をお考えの方へ」＝お金を出す側を先に置く。 */
.hd-pills {
  position: absolute; top: 100%; left: 0; right: 0;
  display: flex; justify-content: flex-end; gap: 10px; padding: 0 72px 11px;
  transition: opacity .25s, visibility 0s;
}
.header.is-solid .hd-pills {
  background: rgba(243, 242, 239, .86);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.hd-pill {
  display: inline-flex; align-items: center; border: 1px solid currentColor; border-radius: 999px;
  padding: 7px 17px; font-size: 12px; letter-spacing: .06em; line-height: 1; white-space: nowrap;
  text-decoration: none; color: inherit; opacity: .9; transition: opacity .2s, background .2s;
}
@media (hover: hover) and (pointer: fine) { .hd-pill:hover { opacity: 1; } }
/* 写真の上にいるとき（トップページ）はヘッダーと同じ扱いにする */
.header:not(.is-solid) .hd-pill { border-color: rgba(255,255,255,.75); text-shadow: 0 1px 3px rgba(0,0,0,.55); }
@media (max-width: 930px) {
  .hd-pills { padding: 0 16px 10px; gap: 8px; }
  .hd-pill { flex: 1; justify-content: center; padding: 9px 4px; font-size: 11.5px; letter-spacing: .02em; }
}
/* ハンバーガーメニューを開いている間は、丸ボタンの帯を消す。
   帯はヘッダーの下にぶら下がる絶対配置で、ヘッダーの z-index は 50、
   メニューは 40。そのためメニューを開くと、帯の下端(114px)が
   1行目「WORKS」の上端(80px)に34px重なり、文字が半分隠れていた。
   931px以上はハンバーガー自体が出ないので、携帯とタブレットだけの話。
   opacity だけでは読み上げにもフォーカスにも残るので、.menu と同じく visibility で消す。
   消えきってから visibility を切り替えるため、transition を .25s 遅らせている。
   メニューの中に同じ行き先（設計事務所の方へ／費用と見積もり）が入っているので、
   開いている間に消しても行けなくなる場所はない。 */
body.menu-open .hd-pills {
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s, visibility 0s linear .25s;
}

/* インスタのボタンを言語切替の隣に置く（2026-09-17 追加）
   もとは CONTACT のすぐ右、nav の中にあったので、メニューの並びの一部に見えていた。
   nav から出して言語切替とひとまとめにし、ヘッダーの右端に寄せる。
   930px以下では nav ごと畳まれ、header__right の ig--mobile が出るので、こちらは隠す。 */
.hd-side { display: flex; align-items: center; gap: 14px; }
@media (max-width: 930px) { .hd-side .ig { display: none; } }

/* 会社案内の地図の位置（2026-09-17 追加）
   .company は 1fr 2fr の2段組みだが、左の段は見出し「Company」だけで
   その下が900px以上空いていた。地図は右の段の一番下に 853×480 でぶら下がり、
   section の高さが 1050px に膨らんで、重心が右下に寄っていた。
   広い画面では、地図を左の段の見出しの下へ移して空きを埋める。
   高さは 16/9 などで決め打ちせず、右の段（会社情報）の下端に合わせて伸ばす。
   幅によって会社情報の高さは変わるので、比率を固定すると余りが出たり
   はみ出したりする。min-height は、会社情報が短くなったときに地図が
   潰れないようにするための下限。
   1024px以下は1段組みになるので、今までどおり会社情報の下に置く（DOMの並びのまま）。 */
@media (min-width: 1025px) {
  .company { align-items: start; grid-template-rows: auto 1fr; }
  .company > h2 { grid-column: 1; grid-row: 1; }
  .company__info { grid-column: 2; grid-row: 1 / span 2; }
  .company__map {
    grid-column: 1; grid-row: 2; margin-top: 0;
    aspect-ratio: auto; align-self: stretch; min-height: 260px;
  }
}

/* iPhone で画面が横に動いてしまうのを止める（2026-09-18 追加）
   トップの写真は切り替わる前に 1.04倍 にしてあり、390px の画面で左右に 8px ずつ
   はみ出している。.hero の overflow:hidden で隠しているが、iPhone の Safari は
   拡大（transform）された写真を横スクロールの幅に数えてしまい、指で左右に払うと
   ページが 8px 動いて右に隙間が残っていた。1回目のタップが効かない症状も、
   この横の動きが残っているせいと見ている。
   ・.hero の contain: paint … はみ出しを .hero の中に確実に閉じ込める（Safari 15.4+）
   ・html の overflow-x: clip … 念のための2本目。body だけでは iPhone は止まらない
     （Safari 16+。clip はスクロールの器を作らないので、縦のスクロールや
     固定ヘッダーには影響しない。古い Safari では無視されて今までどおり）
   hidden を html に付けないのは、古い Safari で body が別のスクロールの器になり、
   縦のスクロールが壊れることがあるため。 */
.hero { contain: paint; }
html { overflow-x: clip; }
/* 写真は指で左右に払うと次へ進む（js/main.js の touchstart/touchend）。
   そのときブラウザ側でもページが横に動き、離したあと右に 12px の白い帯が残っていた
   （本人の画面録画で確認：払っている最中に最大60px、離したあと12pxずれたまま）。
   写真の上では、ブラウザには縦のスクロールと拡大だけを任せ、横の動きは JS だけが使う。 */
.hero { touch-action: pan-y pinch-zoom; }
