/* ===== 基本色・フォント ===== */
  :root{
    --fade-step: 700ms;
    --fade-dur:  800ms;
    --whale-sway: 4s;
    --drop: 0 6px 16px rgba(0,0,0,.25);

    /* ヘッダー色（不透明白に固定） */
    --shell-bg:#fff;
    --shell-border:#fff;
    --ink:#0e2550;
    --ink-weak:#2b3b65;
  }

  /* 背景を1枚画像に（自己紹介と同じフルブリード想定） */
  html,body{height:100%;}
/* すべての要素で border/padding を幅に含める（はみ出し防止） */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }

/* 画像は枠内におさめる */
img { max-width: 100%; height: auto; }
body{
  margin:0; overflow-x:hidden;
  font-family:"Hiragino Sans","Helvetica Neue",Arial,sans-serif;
  background:
    linear-gradient(rgba(255,255,255,.25), rgba(255,255,255,.25)),
    url("../images/work_bg.jpg") center/cover fixed no-repeat #000;
}

  /* 固定ヘッダー（前のまま・完全白） */
  .site-header{
    position: fixed; top:16px; left:16px; right:16px; z-index:9999; pointer-events:none;
  }
  .nav-shell{
    pointer-events:auto;
    display:flex; align-items:center; gap:18px;
    padding:12px 14px; background:var(--shell-bg);
    border:2px solid var(--shell-border); border-radius:14px;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
  }
  .brand{display:flex; text-decoration: none; align-items:center; gap:10px; white-space:nowrap; padding:8px 12px; border-radius:10px; background:#fff; box-shadow:0 2px 8px rgba(0,0,0,.06) inset;}
  .brand .logo{font-weight:900; font-size: clamp(18px,2.4vw,22px); letter-spacing:.06em; color:var(--ink);}
  .brand .tag{margin-left:6px; font-size:11px; letter-spacing:.1em; color:#6b7aa6;}
  .nav{display:flex; align-items:center; gap:8px;}
  .nav a{padding:10px 14px; border-radius:10px; color:var(--ink-weak); text-decoration:none; font-weight:700; font-size:14px; transition:.15s;}
  .nav a:hover{ background:#fff; color:var(--ink); transform:translateY(-1px); }
  .cta{ margin-left:auto; }
  .cta a{ background:#111827; color:#fff !important; padding:10px 16px; border-radius:10px; text-decoration:none; font-weight:700; box-shadow:0 6px 16px rgba(0,0,0,.18); }

  .hamburger{ display:none; margin-left:auto; width:40px; height:40px; border-radius:10px; background:#fff; border:1px solid #e5e7eb; align-items:center; justify-content:center; }
  .hamburger span{ width:20px; height:2px; background:#111; position:relative; display:block; }
  .hamburger span:before,.hamburger span:after{ content:""; position:absolute; left:0; width:20px; height:2px; background:#111; }
  .hamburger span:before{ top:-6px; } .hamburger span:after{ top:6px; }

  @media (max-width: 900px){
    .nav{ display:none; } .cta{ display:none; } .hamburger{ display:flex; }
    .nav.open{
      position:absolute; top:64px; left:16px; right:16px;
      display:flex; flex-direction:column; gap:6px;
      background:#fff; border:2px solid #fff;
      border-radius:12px; padding:10px; box-shadow:0 10px 24px rgba(0,0,0,.12);
    }
    .nav.open a{ padding:12px 10px; }
    .brand .tag{ display:none; }
    .brand{ min-width:0; padding:8px 10px; }
    .brand .logo{
        font-size: clamp(16px, 4.6vw, 20px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
  }

/* ===== ヒーロー ===== */
.hero{
  padding: clamp(96px, 16vh, 160px) 20px 40px;
  text-align:center;
  color:#fff;
  position:relative;
}

.hero::before{
  content:"";
  position:absolute; inset:0;
  background: rgba(0,0,0,0.35); /* 半透明の黒でコントラストUP */
  border-radius: 12px;
  width: 90%;
  margin: 0 auto;
  height: 100%;
  z-index: -1;
}

.hero h1{
  margin:0;
  font-size: clamp(26px,4vw,42px);
  font-weight:900;
  background: linear-gradient(90deg,#ff6ec4,#7873f5);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero p{
  margin:.6em 0 0;
  font-size: clamp(15px,2vw,18px);
  color:#f9fafb; /* より明るい白 */
}

/* ===== 実績リスト ===== */
/* セクション下地はうっすら白ベール（読みやすさ維持） */
.section{ position:relative; }
.section::before{ content:""; position:absolute; inset:0; background:rgba(255,255,255,.30); z-index:0; }
.container{ position:relative; z-index:1; }

/* スタック幅：他ページのカードと同等に中央寄せ */
.work-item{
  width: min(920px, 96vw);          /* ← 横幅をカード標準に */
  margin: 0 auto 24px;              /* 中央寄せ＆間隔 */
  background:#fff;
  border:10px solid #fff;           /* 白フチ */
  border-radius:16px;
  box-shadow:0 14px 32px rgba(0,0,0,.16);
  padding: clamp(16px, 2.4vw, 24px);
  display:grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(14px,2vw,22px);
  transition: transform .18s ease, box-shadow .18s ease;
  will-change: transform;
}

/* カードにホバー動き */
.work-item:hover{
  transform: translateY(-2px) scale(1.01);
  box-shadow:0 18px 40px rgba(0,0,0,.22);
}

/* 写真（白枠はカード側で付けるので影のみ／ホバー拡大） */
.work-photo{
  border:0;
  border-radius:12px;
  overflow:hidden;
  background:#f3f4f6;
  aspect-ratio: 4/3;
  display:grid; place-items:center;
  box-shadow:0 8px 20px rgba(0,0,0,.12);
}
.work-photo img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition: transform .22s ease;
  will-change: transform;
}
.work-photo:hover img{ transform: scale(1.04); } /* ← Gallery同様の動き */

/* 本文を上下で分離：説明は上、地域名は最下部に固定 */
.work-body{
  display:flex; flex-direction:column; min-height:100%;
}
.work-title{ font-size:clamp(18px,2.2vw,22px); font-weight:900; color:#0f172a; }
.work-desc{ color:#374151; line-height:1.9; }
.work-extra{ color:#64748b; font-size:14px; margin-top:8px; } /* 日付・リンクなどがあればここに */
/* 既存 .work-place は使わないので削除 or 無効化 */
.work-place{ display:none; }
/* カード本文の最下部に固定表示する行（地域名＋日付） */
.work-footer{
  margin-top:auto;                 /* ← 常に一番下へ */
  display:flex; align-items:center;
  justify-content:space-between;   /* 左：地域名 / 右：日付 */
  gap:12px;
  padding-top:10px;
  border-top:1px dashed #e5e7eb;
}
.work-footer .place{ font-weight:700; color:#0f172a; }
.work-footer .date { color:#64748b; font-size:14px; white-space:nowrap; }
/* レスポンシブ */
@media (max-width: 900px){
  .work-item{ grid-template-columns: 1fr; }
  .work-photo{ aspect-ratio: 3/2; }
}

/* 動きを控えたい環境 */
@media (prefers-reduced-motion: reduce){
  .work-item, .work-photo img{ transition:none !important; }
  .work-item:hover{ transform:none; box-shadow:0 14px 32px rgba(0,0,0,.16); }
}

/* ===== ライトボックス ===== */
.lb{ position:fixed; inset:0; background:rgba(0,0,0,.86); display:none; align-items:center; justify-content:center; z-index:10000; }
.lb.open{ display:flex; }
.lb-inner{ position:relative; max-width:92vw; max-height:86vh; }
.lb-img{ display:block; max-width:92vw; max-height:86vh; object-fit:contain; border-radius:12px; box-shadow:0 8px 26px rgba(0,0,0,.4); }
.lb-wm{ position:absolute; inset:0; display:grid; place-items:center; pointer-events:none;
  color:#000; font-weight:900; font-size:clamp(32px,5vw,64px); text-shadow:0 0 10px rgba(255,255,255,.7); transform:rotate(-20deg); }
.lb-close{ position:absolute; top:-42px; right:0; width:36px; height:36px; border-radius:50%; background:#fff; color:#111; font-weight:900;
  display:grid; place-items:center; cursor:pointer; border:none; box-shadow:0 6px 18px rgba(0,0,0,.3); }
.lb-close:focus{ outline:2px solid #60a5fa; }

/* ===== Footer ===== */
.site-footer{
  background:#fff;       /* フッター全体を白で */
  width:100%;
  padding: 48px 0;
  border-top: 2px solid #eee;
  position: relative;
}

.footer-inner{
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* 縦並びメニュー */
.footer-nav{
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
}
.footer-nav a{
  text-decoration: none;
  color: #0e2550;
  font-weight: 800;
  font-size: clamp(16px, 1.7vw, 18px);
  padding: 10px 12px;
  border-radius: 10px;
  transition: background-color .15s ease, transform .15s ease;
}
.footer-nav a:hover{
  background: #f1f5ff;
  transform: translateX(4px);
}

/* コピーライト */
.copyright{
  margin-top: 18px;
  color:#6b7280;
}

/* 右側の固定イラスト */
.footer-art{
  position: absolute;
  right: max(16px, 5%);
  bottom: -6px;
  width: clamp(540px, 22vw, 260px);
  pointer-events: none;
  filter:
    drop-shadow(1px 0 0 #fff)
    drop-shadow(-1px 0 0 #fff)
    drop-shadow(0 1px 0 #fff)
    drop-shadow(0 -1px 0 #fff);
  z-index: 1;
}

/* ゆらぎアニメ */
.sway{
  animation: footerSway 7s ease-in-out infinite;
  transform-origin: 60% 45%;
}
@keyframes footerSway{
  0%{transform: translateY(0) rotate(-3deg)}
  50%{transform: translateY(-6px) rotate(3deg)}
  100%{transform: translateY(0) rotate(-3deg)}
}

/* レスポンシブ対応 */
@media (max-width: 700px){
  .footer-art{ right: 8px; width: 34vw; opacity: .9; }
}
@media (max-width: 480px){
  .footer-art{ display:none; }
}


/* スクロールロック */
.no-scroll{ overflow:hidden; }
