/*
Theme Name: 倉庫市
Theme URI: https://soukoichi.ikehiko.net/
Author: 株式会社イケヒコ・コーポレーション
Author URI: https://ikehiko.net/
Description: イケヒコ倉庫市 特設サイト用テーマ。シンプルなレイアウトで、デザイン確定までのワイヤーフレームとして機能します。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: soukoichi
*/

/* ─────────────────────── Reset & Base ─────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "ヒラギノ角ゴシック", "Helvetica Neue", "Arial", "メイリオ", Meiryo, sans-serif;
  color: #2d2d2d;
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: #2a7a4d; }
a:hover { color: #1f5a39; }

h1, h2, h3, h4 { line-height: 1.4; }

/* ─────────────────────── Layout ─────────────────────── */
:root {
  --sk-content-max: 1024px;
  --sk-gutter: clamp(1em, 3vw, 2em);
}

body { background: #F5F5F5; }

.sk-site {
  max-width: var(--sk-content-max);
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
  box-shadow: 0 0 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.sk-content {
  padding: 1.5em var(--sk-gutter) 4em;
}

/* ─────────────────────── Top Hero ─────────────────────── */
.sk-hero {
  background: #6b6b6b;
  color: #fff;
  text-align: center;
  padding: clamp(3em, 7vw, 5em) var(--sk-gutter);
}
.sk-hero-edition {
  font-size: clamp(1em, 1.5vw, 1.2em);
  margin-bottom: 0.4em;
}
.sk-hero-brand {
  font-size: clamp(1em, 1.5vw, 1.2em);
  margin-bottom: 0.6em;
  letter-spacing: 0.1em;
}
.sk-hero-title {
  font-size: clamp(1.8em, 4vw, 2.6em);
  font-weight: 700;
  margin: 0;
}

/* ─────────────────────── News bar ─────────────────────── */
.sk-news {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 0.7em var(--sk-gutter);
  display: flex;
  align-items: center;
  gap: 0.8em;
  font-size: 0.9em;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
a.sk-news-link:hover {
  background: #fafafa;
  color: #2a7a4d;
}
a.sk-news-link:hover .sk-news-text {
  text-decoration: underline;
}
.sk-news-label {
  background: #2a2a2a;
  color: #fff;
  padding: 0.15em 0.7em;
  font-weight: 700;
  font-size: 0.85em;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.sk-news-date {
  color: #888;
  font-family: monospace;
  flex-shrink: 0;
}
.sk-news-text {
  color: #444;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─────────────────────── Greeting ─────────────────────── */
.sk-greeting {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1.5em;
  background: #ededed;
  padding: 1.5em;
  margin: 1.5em var(--sk-gutter);
  border-radius: 4px;
}
.sk-greeting-photo {
  background: #fff;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  text-align: center;
  font-size: 0.9em;
  border-radius: 2px;
}
.sk-greeting-text {
  background: #fff;
  padding: 1.2em 1.5em;
  font-size: 0.95em;
  border-radius: 2px;
}
.sk-greeting-text h3 {
  margin: 0 0 0.6em;
  font-size: 1.05em;
}
.sk-greeting-sig {
  text-align: right;
  margin-top: 0.7em;
  color: #666;
  font-size: 0.85em;
}

/* ─────────────────────── Contents nav (links to sections) ─────────────────────── */
.sk-nav {
  margin: 1.5em var(--sk-gutter);
}
.sk-nav h3 {
  text-align: center;
  font-size: 1em;
  margin: 0 0 0.8em;
  color: #555;
  font-weight: 700;
}
.sk-nav-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.7em;
}
.sk-nav-grid a {
  display: block;
  background: #f5f5f5;
  border: 1px solid #ddd;
  padding: 1.2em 0.5em;
  text-align: center;
  font-size: 0.9em;
  color: #444;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.15s, border-color 0.15s;
}
.sk-nav-grid a:hover {
  background: #eee;
  border-color: #2a7a4d;
  color: #2a7a4d;
}

/* ─────────────────────── Section card ─────────────────────── */
.sk-section {
  border: 1px solid #ccc;
  padding: 1.8em 1.5em;
  margin: 0.7em var(--sk-gutter);
  border-radius: 3px;
}
.sk-section-title {
  text-align: center;
  margin: 0 0 0.5em;
  font-size: 1.2em;
  font-weight: 700;
}
.sk-section-items {
  display: flex;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
  margin-top: 1em;
  text-align: center;
  font-size: 0.95em;
  color: #555;
}
.sk-section-items a {
  color: #2a7a4d;
  text-decoration: underline;
}

/* ─────────────────────── 準備中 callout ─────────────────────── */
.sk-coming-soon {
  background: #fff8e1;
  border: 2px dashed #f5d96b;
  padding: 1.2em;
  margin: 1.5em var(--sk-gutter);
  text-align: center;
  font-size: 0.95em;
  color: #b07b00;
  border-radius: 4px;
}

/* ─────────────────────── Page / Single ─────────────────────── */
.sk-page {
  padding: 2em var(--sk-gutter) 3em;
}
.sk-page-title {
  font-size: clamp(1.4em, 2.5vw, 1.8em);
  margin: 0 0 0.8em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #2a7a4d;
}
.sk-page-meta {
  color: #888;
  font-size: 0.85em;
  margin-bottom: 1em;
}
.sk-page-content {
  font-size: 1em;
  line-height: 1.8;
}
.sk-page-content p { margin: 1em 0; }
.sk-page-content img { margin: 1em auto; }

/* ─────────────────────── Form Page Template ─────────────────────── */
.sk-form-page-header {
  padding: 2em var(--sk-gutter);
}
.sk-form-page-header--with-image {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1em, 2.5vw, 2em);
  align-items: start;
}
.sk-form-page-title {
  font-size: clamp(1.5em, 2.5vw, 2em);
  margin: 0 0 0.8em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #2a7a4d;
  line-height: 1.35;
}
.sk-form-page-lead {
  background: #ededed;
  padding: 1.2em 1.4em;
  border-radius: 4px;
  font-size: 0.95em;
  line-height: 1.8;
  color: #444;
}
.sk-form-page-lead p:first-child { margin-top: 0; }
.sk-form-page-lead p:last-child { margin-bottom: 0; }
.sk-form-page-header-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  object-fit: cover;
}
.sk-form-page-body {
  padding: 0 var(--sk-gutter) 3em;
}
@media (max-width: 720px) {
  .sk-form-page-header--with-image {
    grid-template-columns: 1fr;
    gap: 1em;
  }
  .sk-form-page-header-image {
    order: -1; /* モバイルでは画像を上に */
  }
}

/* 送信完了後：プラグイン JS が body にこのクラスを付与する */
body.sef-submitted .sk-form-page-header-image { display: none; }
body.sef-submitted .sk-form-page-lead { display: none; }
body.sef-submitted .sk-form-page-header--with-image {
  grid-template-columns: 1fr;
}

/* ─────────────────────── Header / Footer ─────────────────────── */
.sk-site-header {
  background: #2a2a2a;
  color: #fff;
  padding: 0.8em 1em;
  text-align: center;
}
.sk-site-header a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.sk-site-footer {
  background: #2a2a2a;
  color: #ccc;
  padding: 1.5em var(--sk-gutter);
  text-align: center;
  font-size: 0.85em;
  margin-top: auto; /* sticky footer: 残りスペースを上に押し付けて常に下に張り付ける */
}
.sk-site-footer a {
  color: #fff;
}

/* ─────────────────────── Responsive ─────────────────────── */
@media (max-width: 900px) {
  .sk-nav-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .sk-nav-grid { grid-template-columns: repeat(2, 1fr); }
  .sk-greeting { grid-template-columns: 1fr; }
  .sk-section-items { gap: 1em; }
}

/* =============================================================
   フロントページ（第35回 夏の大倉庫市 LP）
   ============================================================= */
:root {
  --sk-primary: #1A4192;
  --sk-primary-soft: #e9eef8;
  --sk-sky-1: #6ec1ee;
  --sk-sky-2: #9dd6f2;
  --sk-sky-3: #c6e7f5;
  --sk-ink: #1a1a1a;
  --sk-ink-2: #333;
  --sk-mute: #666;
  --sk-card-w: 420px;       /* SP デザインの幅（中央コンテンツ） */
  --sk-main-half: 240px;    /* 中央コンテンツの半幅（PC 480px の半分） */
}
@media (min-width: 1280px) {
  :root { --sk-main-half: 260px; }
}

/* front-page では .sk-site の max-width / shadow を解除して全幅 LP に */
body.home .sk-site,
body.page-template-front-page .sk-site {
  max-width: none;
  box-shadow: none;
  background: transparent;
}

/* ヘッダー領域に隙間が出ないように */
body.home,
body.page-template-front-page {
  background-color: var(--sk-sky-2);
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Helvetica Neue', Arial, 'メイリオ', Meiryo, sans-serif;
}

/* ===== レイアウト ===== */
.sk-lp {
  position: relative;
  min-height: 100vh;
  padding: 0;
  /* PC: 中央コンテンツを画面中央に。左右の装飾は absolute で固定。*/
  display: flex;
  justify-content: center;
}

/* 水彩風の空背景（fixed で全画面に貼り付け） */
.sk-lp-bg {
  position: fixed; inset: 0;
  background-image: url('assets/img/sky-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* ===== 中央コンテンツ（SP デザイン） ===== */
.sk-lp-main {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--sk-card-w);
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 6px 30px rgba(0,30,80,0.10);
  overflow: hidden;
}

/* ===== サイド（PC のみ） ===== */
.sk-lp-side {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none; /* 装飾は通すが、内部のリンクは pointer-events: auto で復活 */
}
.sk-lp-side--left  { left: 0;  width: calc(50% - var(--sk-main-half)); }
.sk-lp-side--right { right: 0; width: calc(50% - var(--sk-main-half)); }
.sk-lp-side a,
.sk-lp-side button { pointer-events: auto; }

/* ----- 左サイド：タイトル SVG + 装飾（縦・横ともに中央配置） ----- */
.sk-lp-side--left {
  display: none;              /* SP では非表示。PC で flex に切替（下の @media） */
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}
.sk-lp-leftstack {
  position: relative;
  width: 100%;
  max-width: clamp(300px, 24vw, 400px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* タイトル SVG（viewBox 365×310 すべて表示／切り抜きなし） */
.sk-lp-title-frame {
  width: 100%;
  filter: drop-shadow(0 6px 18px rgba(0,30,80,0.10));
}
.sk-lp-titlesvg {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== 画面最下部 70px のグレー帯（#F5F5F5） ===== */
.sk-lp-greenstrip {
  display: none;            /* SP では非表示。PC で表示 */
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: 70px;
  background: #F5F5F5;
  z-index: 1;
  pointer-events: none;
}

/* ===== 下部装飾（PC のみ表示） ===== */
.sk-lp-warehouse,
.sk-lp-kitchencar,
.sk-lp-kanban,
.sk-lp-cloud { display: none; }

/* 横長倉庫シルエット：左サイド領域の左右中央、帯の境目を跨ぐ位置に配置 */
.sk-lp-warehouse {
  position: fixed;
  /* 左サイド領域は 0 〜 (50% - --sk-main-half)。その中央に置く */
  left: calc((50% - var(--sk-main-half)) / 2);
  bottom: 50px;             /* 70px 帯の上端付近に */
  width: 170px;
  height: auto;
  transform: translateX(-50%);
  transform-origin: 50% 100%;
  transition: transform 0.45s ease;
  z-index: 5;               /* main(2) より前面に */
  opacity: 0.95;
}
.sk-lp-warehouse:hover {
  transform: translateX(-50%) scale(1.18);
}
@media (prefers-reduced-motion: reduce) {
  .sk-lp-warehouse { transition: none; }
  .sk-lp-warehouse:hover { transform: translateX(-50%); }
}
/* 第9倉庫サイン：帯の上に立てる（左端） */
.sk-lp-kanban {
  position: fixed;
  left: clamp(16px, 2vw, 60px);
  bottom: 28px;
  width: clamp(60px, 5vw, 90px);
  height: auto;
  z-index: 6;
  transform-origin: 50% 100%;
}
.sk-lp-kanban:hover {
  animation: sk-kanban-jump 0.75s ease forwards;
}
@keyframes sk-kanban-jump {
  0%   { transform: translateY(0);     animation-timing-function: cubic-bezier(.2,.7,.4,1); }
  35%  { transform: translateY(-22px); animation-timing-function: cubic-bezier(.55,0,.85,.4); }
  60%  { transform: translateY(0);     animation-timing-function: cubic-bezier(.2,.7,.4,1); }
  78%  { transform: translateY(-7px);  animation-timing-function: cubic-bezier(.55,0,.85,.4); }
  92%  { transform: translateY(0);     animation-timing-function: cubic-bezier(.2,.7,.4,1); }
  97%  { transform: translateY(-2px);  animation-timing-function: cubic-bezier(.55,0,.85,.4); }
  100% { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .sk-lp-kanban:hover { animation: none; }
}
/* キッチンカー：左エリアの右端から 40px の位置（main 縁から 40px 左） */
.sk-lp-kitchencar {
  position: fixed;
  right: calc(50% + var(--sk-main-half) + 40px);
  bottom: 20px;
  width: clamp(110px, 10vw, 160px);
  height: auto;
  z-index: 6;
  pointer-events: none;
}

/* 雲：空とグレー帯の境目（左下／右下）から立ち上げる */
/* SVG 内側に余白があるため、負の left/right で視界外に押し出し隙間を解消 */
.sk-lp-cloud {
  position: fixed;
  z-index: 1;
  pointer-events: none;
  opacity: 0.95;
  will-change: transform;
}
/* 左雲：左下を起点に右上方向へ膨らむ */
.sk-lp-cloud--left  {
  bottom: 70px; left: -25px;
  width: clamp(180px, 16vw, 260px);
  transform-origin: 0% 100%;            /* 左下を起点 */
  animation: sk-cloud-grow-l 6s ease-in-out infinite;
}
/* 右雲：右下を起点に左上方向へ膨らむ */
.sk-lp-cloud--right {
  bottom: 68px; right: -60px;
  width: clamp(320px, 28vw, 440px);
  transform-origin: 100% 100%;          /* 右下を起点 */
  animation: sk-cloud-grow-r 8s ease-in-out infinite;
}

/* 左下→右上に向かって拡大 */
@keyframes sk-cloud-grow-l {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}
/* 右下→左上に向かって拡大 */
@keyframes sk-cloud-grow-r {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}

/* アクセシビリティ：モーション低減設定では止める */
@media (prefers-reduced-motion: reduce) {
  .sk-lp-cloud--left,
  .sk-lp-cloud--right { animation: none; }
}

/* ----- 右サイド：MENU（縦中央 + サイド領域中央寄せ） ----- */
.sk-lp-side--right { pointer-events: none; }
.sk-lp-side--right .sk-lp-menu__label,
.sk-lp-side--right .sk-lp-menu { pointer-events: auto; }

.sk-lp-side--right {
  /* 縦・横ともに MENU ボックスをセンター */
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  font-family: 'Noto Sans JP', sans-serif;
}
/* MENU ラッパー：項目内は左揃え、ボックス自体は親内でセンター */
.sk-lp-menu__box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;  /* MENU ラベルと項目を左端揃え */
  width: max-content;       /* 最大幅は最も広い項目に合わせる */
}
.sk-lp-menu__label {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  color: var(--sk-primary);
  letter-spacing: 0.08em;
}
.sk-lp-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;          /* 行間を広めに */
}
.sk-lp-menu a {
  display: inline-block;
  padding: 2px 12px;  /* 青背景の余白は控えめに */
  background: var(--sk-primary);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  width: max-content;
  transition: background 0.15s, transform 0.15s;
}
.sk-lp-menu a:hover {
  background: #0e2f6e;
  transform: translateX(3px);
}

/* ===== 中央コンテンツ：共通セクション ===== */
.sk-lp-main .sk-sec {
  padding: 28px 24px;
  background: #F5F5F5;
}
.sk-lp-main .sk-sec--white { background: #F5F5F5; }
.sk-lp-main #about { padding-top: 0; }

/* セクション小タブ（上のリボン風）：白背景＋青文字 */
.sk-tab {
  display: inline-block;
  background: transparent;
  color: var(--sk-primary);
  font-size: 14px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 2px;
  margin: 0 auto 6px;
}
.sk-tab2 {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--sk-primary);
  margin: 0 0 8px;
}

/* セクションタイトル（青のピル） */
.sk-pill {
  display: inline-block;
  padding: 0px 11px;
  background: var(--sk-primary);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  border-radius: 0px;
  margin: 0 auto 25px;
  position: relative;
}
.sk-pill::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--sk-primary);
}
/* タブ・ピルをセンターに */
.sk-sec > .sk-tab,
.sk-sec > .sk-tab2,
.sk-sec > .sk-pill {
  display: block;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

/* セクション内のテキスト */
.sk-h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin: 8px 0 25px;
  color: var(--sk-ink);
  line-height: 1.4;
}
.sk-h3-blue {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--sk-primary);
  margin: 0 0 14px;
  position: relative;
}
.sk-h3-blue--lg {
  font-size: 22px;
  font-weight: 800;
  color: var(--sk-ink);
  margin: 12px 0;
  line-height: 1.4;
}
.sk-h3-blue--lg::before,
.sk-h3-blue--lg::after { display: none; }

.sk-lead {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  color: var(--sk-ink-2);
  margin: 0 0 23px;
}
.sk-lead--center { margin-top: 8px; }

/* Hero バナー（背景に空の水彩、その上に SVG） */
.sk-hero2 {
  padding: 0 !important;
  background-image: url('assets/img/bg-soukoichi.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.sk-hero2__img { width: 100%; height: auto; display: block; }

/* 写真ブロック */
.sk-photo { margin: 0; }
.sk-photo img { width: 100%; height: auto; border-radius: 2px; }

/* 商品の一例 */
.sk-prodgrid { margin: 0 -24px 14px; }
.sk-prodslide {
  overflow: hidden;
  width: 100%;
}
.sk-prodslide__track {
  display: flex;
  width: max-content;
  animation: sk-prodslide 25s linear infinite;
}
.sk-prodslide__track img {
  flex: 0 0 auto;
  height: 250px;
  width: auto;
  display: block;
}
@media (max-width: 1023px) {
  .sk-prodslide__track img { height: 150px; }
}
@keyframes sk-prodslide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .sk-prodslide__track { animation: none; }
}
.sk-prodlist {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  color: var(--sk-ink-2);
  margin: 0 0 23px;
}
.sk-prodnote {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--sk-ink);
  margin: 0;
  line-height: 30px;
}

/* コンテンツ目次 */
.sk-contgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.sk-contgrid a {
  display: block;
  padding: 12px 8px;
  background: #fff;
  color: var(--sk-ink);
  border: 1px solid #000;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.15s;
}
.sk-contgrid a:hover { background: #f0f0f0; }
.sk-contgrid a:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

/* 会場イベント */
.sk-eventgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.sk-eventcard {
  background: #fff;
  border-radius: 6px;
  padding: 28px 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  text-align: center;
}
.sk-eventcard__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f3f6fa;
  margin: 0 0 8px;
  border-radius: 2px;
  overflow: visible;
}
.sk-eventcard__media img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 2px; }
.sk-eventcard__when {
  position: absolute;
  top: -14px;
  left: 0px;
  padding: 4px 12px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--sk-primary);
  border-radius: 999px;
  white-space: nowrap;
  z-index: 2;
  line-height: 1.3;
}
@media (max-width: 1023px) {
  .sk-eventcard__when { font-size: 13px; }
}
.sk-eventcard__title {
  margin: 0 0 6px;
  padding: 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--sk-ink);
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .sk-eventcard__title { font-size: 14px; font-weight: 500; }
}
.sk-eventcard__sub {
  margin: 0;
  padding: 0 8px;
  font-size: 12px;
  color: var(--sk-ink);
  line-height: 1.6;
}
.sk-eventcard__cta {
  margin: 12px auto 0;
  padding: 5px 18px;
  background: #fff;
  color: var(--sk-ink);
  border: 1px solid #888;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
}
.sk-eventcard__cta:hover { background: #f0f0f0; color: var(--sk-ink); }

/* フード出店 */
.sk-foodimg {
  margin: 0 0 18px;
}
.sk-foodimg img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.sk-foodlead {
  text-align: center;
  font-weight: 700;
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--sk-ink);
}
.sk-foodlist {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}
.sk-foodlist li {
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
  line-height: 1.6;
}
.sk-foodlist strong {
  display: block;
  color: var(--sk-ink);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 2px;
}
.sk-foodlist span { color: var(--sk-ink-2); }
.sk-foodnote {
  text-align: center;
  font-size: 11px;
  color: var(--sk-mute);
  margin: 0;
}

/* ワークショップ */
.sk-wscard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  background: #fff;
  border: 0;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  align-items: stretch;
}
.sk-wscard:last-child { margin-bottom: 0; }
.sk-wscard__media {
  background: #f3f6fa;
  border-radius: 2px;
  overflow: hidden;
  height: 135px;
}
.sk-wscard__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 1023px) {
  .sk-wscard__media { height: 100px; }
}
.sk-wscard__body {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.sk-wscard__title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--sk-ink);
  line-height: 1.4;
}
.sk-wscard__time {
  margin: 0 0 6px;
  font-size: 12px;
  color: var(--sk-ink);
  line-height: 1.55;
}
.sk-wscard__fee {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sk-ink);
  line-height: 1.4;
}
.sk-wscard__cta {
  display: inline-block;
  padding: 5px 18px;
  background: #fff;
  color: var(--sk-ink);
  border: 1px solid #888;
  border-radius: 999px;
  font-size: 12px;
  text-decoration: none;
}
.sk-wscard__cta:hover { background: #f0f0f0; color: var(--sk-ink); }

/* アクセス */
.sk-map {
  margin: 0 0 14px;
  border-radius: 4px;
  overflow: hidden;
  background: #e7eef5;
  aspect-ratio: 4 / 3;
}
.sk-map iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}
.sk-access {
  margin: 0;
  font-size: 14px;
  text-align: center;
}
.sk-access > div {
  padding: 20px 0;
}
.sk-access dt {
  color: var(--sk-ink);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}
.sk-access dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--sk-ink);
}
.sk-access__tel {
  font-size: 18px;
  font-weight: 700;
}

/* LP フッターバー */
.sk-lpfoot {
  background: var(--sk-primary);
  color: #fff;
  text-align: center;
  padding: 28px 16px;
  font-size: 13px;
}
.sk-lpfoot p { margin: 6px 0; line-height: 1.8; }
.sk-lpfoot .sk-lpfoot__copy { font-size: 11px; opacity: 0.9; }

/* モーダル */
.sk-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}
.sk-modal[hidden] { display: none; }
.sk-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  cursor: pointer;
}
.sk-modal__dialog {
  position: relative;
  max-width: 420px;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.sk-modal__close {
  position: absolute;
  top: -38px;
  right: -4px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
  z-index: 2;
}
.sk-modal__close:hover { opacity: 0.7; }
.sk-modal__dialog img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  margin: 0 auto;
}
.sk-modal__dialog--haihai img { max-height: calc(100vh - 180px); }
.sk-modal__cta {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: #fff;
  color: var(--sk-ink);
  border: 1px solid #000;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}
.sk-modal__cta:hover { background: #f0f0f0; color: var(--sk-ink); }
.sk-modal__imglink { display: block; }
body.sk-modal-open { overflow: hidden; }

/* 共通サイトフッター（home では非表示。LP 内の sk-lpfoot に統一） */
body.home .sk-site-footer { display: none; }

/* スムーズスクロール時のオフセット（sticky なヘッダーは無いが念のため） */
html { scroll-behavior: smooth; }

/* ===== PC: 3 カラム ===== */
@media (min-width: 1024px) {
  .sk-lp {
    padding: 0;
    align-items: flex-start;
  }
  .sk-lp-side         { display: block; }
  .sk-lp-side--left   { display: flex; }   /* 左：SVG を flex で中央寄せ */
  .sk-lp-side--right  { display: flex; }   /* 右：MENU を縦中央 */
  .sk-lp-main {
    max-width: 480px;
    margin: 0 auto 0;
    border-radius: 0;
  }
  /* PC では下部帯と装飾を表示 */
  .sk-lp-greenstrip,
  .sk-lp-warehouse,
  .sk-lp-kanban,
  .sk-lp-kitchencar,
  .sk-lp-cloud { display: block; }
}

/* 1280px 以上：中央カラムを少し広げる（--sk-main-half は :root 側で 260px に追従済み） */
@media (min-width: 1280px) {
  .sk-lp-main { max-width: 520px; }
}

/* SP: 中央コンテンツのみ。背景画像は SP でも表示する（左右の装飾だけ非表示） */
@media (max-width: 1023px) {
  .sk-lp { padding: 0; }
  .sk-lp-main {
    max-width: 480px;
    border-radius: 0;
    box-shadow: 0 6px 30px rgba(0,30,80,0.10);
  }
}

/* 小さい SP：余白を詰める */
@media (max-width: 420px) {
  .sk-lp-main .sk-sec { padding: 24px 16px; }
  .sk-h2 { font-size: 20px; }
  .sk-eventgrid { gap: 10px; }
  .sk-wscard { grid-template-columns: 1fr 1fr; }
}
