@charset "UTF-8";
/* ===========================================================
   JAM STAND COFFEE LP  専用CSS（本文のみ）
   ※ヘッダー/フッターは import.css を利用
   フォント: JP = dnp-shuei-gothic-kin-std (Adobe Fonts) / EN = Antique Olive T
   設計基準: PC=Figma 1920 frame / SP=Figma 375 frame  BP=768px
   余白は原則 margin。重なり配置のみ position:absolute。
   =========================================================== */

/* ---------- Fonts (EN: 同梱) ---------- */
@font-face {
  font-family: "Antique Olive T";
  src: url("../fonts/antiqueolive/ANTIQUE OLIVE T CONDENSED BOLD.OTF") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Antique Olive T";
  src: url("../fonts/antiqueolive/ANTIQUEOLI-REG.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
* {
  letter-spacing: 0;
}
/* ---------- 変数 ---------- */
.jsc {
  --jsc-accent: #d3a12a;
  --jsc-fg: rgba(255, 255, 255, 0.9);
  --jsc-bg: #000;
  --jsc-jp: "dnp-shuei-gothic-kin-std", "Noto Sans JP", "ヒラギノ角ゴシック ProN",
    "Hiragino Kaku Gothic ProN", sans-serif;
  --jsc-en: "Antique Olive T", "Arial Narrow", sans-serif;
  font-weight: 600;

  background: var(--jsc-bg);
  color: var(--jsc-fg);
  font-family: var(--jsc-jp);
  overflow-x: hidden;
}
.jsc * { box-sizing: border-box; }
.jsc img { display: block; max-width: 100%; }

/* 中央コンテンツ幅（Figmaのコンテンツ幅 ≒ 1004px） */
.jsc-inner {
  width: min(86%, 1004px);
  margin: 0 auto;
}

/* =========================================================
   ① HERO
   ========================================================= */
.jsc-hero {
  /* 固定ヘッダー(50/60px)＋デザイン上部余白 */
  padding-top: clamp(110px, 19.5vw, 375px);
}

/* ロゴ（湯気アニメ対象） */
.jsc-hero__logo {
  width: clamp(196px, 17.3vw, 333px);
  margin: 0 auto;
}
.jsc-hero__logo img { width: 100%; height: auto; }

/* NEW OPEN */
.jsc-hero__newopen {
  margin-top: clamp(14px, 1.5vw, 30px);
  font-family: var(--jsc-en);
  font-weight: 700;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  color: #fff;
}
.jsc-hero__newopen .new,
.jsc-hero__newopen .open {
  font-size: clamp(52px, 6vw, 115px);
  letter-spacing: 0.01em;
}
.jsc-hero__newopen .open { margin-left: clamp(14px, 1.6vw, 30px); }

.jsc-hero__date {
  margin-top: clamp(4px, 0.6vw, 12px);
  font-family: var(--jsc-en);
  font-weight: 700;
  font-size: clamp(26px, 2.76vw, 53px);
  text-align: center;
  line-height: 1;
  color: #fff;
}

/* メインビジュアル + キャッチ重ね */
.jsc-hero__visual {
  position: relative;
  width: min(96%, 967px);
  margin: clamp(70px, 12.7vw, 244px) auto 0;
}
.jsc-hero__imgwrap { position: relative; }
.jsc-hero__main { display: block; }
.jsc-hero__main img {
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 1vw, 18px);
}

/* Be the Buyer.（白文字／上半分がメインビジュアル下部に重なる） */
.jsc-hero__catch {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -58%);
  width: 104%;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  font-family: var(--jsc-en);
  font-weight: 700;
  font-size: clamp(46px, 11.3vw, 217px);
  line-height: 1;
  color: #fff;
  -webkit-text-fill-color: #fff;
  z-index: 2;
}

/* Every great find ...（画像の下） */
.jsc-hero__lead {
  margin-top: clamp(64px, 7vw, 130px);
  text-align: center;
  font-family: var(--jsc-en);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 50px);
  line-height: 1.1;
  color: #fff;
}

/* =========================================================
   ② CONCEPT
   ========================================================= */
.jsc-concept { margin-top: clamp(40px, 4.7vw, 90px); }
.jsc-concept .jsc-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* 写真3枚（PC=斜め重ね / 重なり配置のため absolute） */
.jsc-concept__photos {
  position: relative;
  width: 44%;
  /* 高さ＝幅×(723/440) を確保（absolute子の土台） */
  padding-bottom: 72.3%;
}
.jsc-concept__photo {
  position: absolute;
  width: 60.4%;
  margin: 0;
}
.jsc-concept__photo img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.jsc-concept__photo.-p1 { left: 0;     top: 0;     z-index: 1; }
.jsc-concept__photo.-p2 { left: 39.5%; top: 10.5%; z-index: 3; }
.jsc-concept__photo.-p3 { left: 12.5%; top: 52.3%; z-index: 2; }

/* コンセプト本文 */
.jsc-concept__text {
  width: 46%;
  padding-top: clamp(10px, 5vw, 96px);
  font-size: clamp(13px, 0.84vw, 16px);
  line-height: 1.75;
  color: var(--jsc-fg);
}
.jsc-concept__text p { margin: 0 0 1.75em; }
.jsc-concept__text p:last-child { margin-bottom: 0; }

/* =========================================================
   ③ MENU
   ========================================================= */
.jsc-menu { margin-top: clamp(70px, 8vw, 150px); }
.jsc-menu__ttl {
  font-family: var(--jsc-en);
  font-weight: 700;
  font-size: clamp(40px, 5.1vw, 98px);
  line-height: 1;
  text-align: center;
  color: var(--jsc-fg);
}
.jsc-menu__ttl.-other { margin-top: clamp(70px, 8.2vw, 157px); }

.jsc-menu__list {
  width: min(100%, 498px);
  margin: clamp(14px, 0.5vw, 10px) auto 0;
  padding: 0;
  list-style: none;
}
.jsc-menu__list.-other { width: min(100%, 498px); }

.jsc-menu__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1em;
  line-height: 2.6;
  font-size: clamp(14px, 0.89vw, 17px);
}
.jsc-menu__name {
  color: var(--jsc-fg);
  cursor: default;
  transition: color 0.3s ease;
}
.jsc-menu__price {
  color: var(--jsc-fg);
  font-family: var(--jsc-en);
  font-weight: 400;
  white-space: nowrap;
}
/* メニュー名はすべてホバーで着色（価格は対象外） */
.jsc-menu__name:hover { color: var(--jsc-accent); }

/* =========================================================
   ④ GALLERY（下部5枚・PC）
   ========================================================= */
.jsc-gallery { margin-top: clamp(80px, 11.8vw, 227px); }
.jsc-gallery__list {
  width: min(92%, 1004px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.jsc-gallery__list li { width: 17.4%; }
.jsc-gallery__list img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
/* ④ 下部5枚：左から順に、それぞれ下から表示（JSで is-in 付与） */
.js-gallery .jsc-gallery__list li {
  opacity: 0;
  transform: translateY(36px);
}
.js-gallery .jsc-gallery__list li.is-in {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.18, 0.9, 0.24, 1), opacity 0.45s ease-out;
}

/* コンセプトのスライダー用追加画像（5枚）はSPスライダー専用 → PCでは非表示 */
.jsc-concept__photo.-extra { display: none; }

/* =========================================================
   ⑤ INFO
   ========================================================= */
.jsc-info {
  margin-top: clamp(40px, 2.8vw, 53px);
  padding-bottom: clamp(60px, 9vw, 170px);
  text-align: center;
}
.jsc-info__sns img {
  width: clamp(38px, 2.45vw, 47px);
  height: auto;
  margin: 0 auto;
}
.jsc-info__addr-en {
  margin-top: clamp(28px, 2.4vw, 46px);
  font-family: var(--jsc-en);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(22px, 2.08vw, 40px);
  line-height: 1.25;
  color: var(--jsc-fg);
}
.jsc-info__addr-jp {
  margin-top: clamp(20px, 2.6vw, 50px);
  font-size: clamp(11px, 0.7vw, 13px);
  line-height: 1.45;
  color: var(--jsc-fg);
}
.jsc-info__logo { display: none; } /* PCデザインには無し（SPのみ表示） */
.jsc-info__hours {
  margin-top: clamp(12px, 0.9vw, 18px);
  font-size: clamp(11px, 0.7vw, 13px);
  line-height: 1.45;
  color: var(--jsc-fg);
  opacity: 0.7;
}

/* =========================================================
   アニメーション
   ========================================================= */
/* ① ロゴ：正面からふわっと（下からではなく中央からズームイン・約1.5s） */
@keyframes jscSteam {
  0%   { opacity: 0; transform: scale(0.82); filter: blur(6px); }
  60%  { opacity: 1; filter: blur(1px); }
  100% { opacity: 1; transform: scale(1);    filter: blur(0); }
}
.js-steam {
  transform-origin: center center;
  animation: jscSteam 1.5s ease-out both;
}

/* ④ slide1：左→右に素早くスナップ（JSで is-in 付与・staggerはdelay） */
.js-slide1 .jsc-concept__photo {
  opacity: 0;
  transform: translateX(-26px) scale(0.95);
}
.js-slide1 .jsc-concept__photo.is-in {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: transform 0.28s cubic-bezier(0.18, 0.9, 0.24, 1), opacity 0.2s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .js-steam { animation: none; }
  .js-slide1 .jsc-concept__photo { opacity: 1; transform: none; }
  .js-gallery .jsc-gallery__list li { opacity: 1; transform: none; }
}

/* =========================================================
   SP（≤768px）  Figma 375 frame 基準
   ========================================================= */
@media only screen and (max-width: 768px) {
  .jsc-inner { width: min(86%, 375px); }

  /* HERO */
  .jsc-hero { padding-top: 50px;}
  .jsc-hero__logo { width: clamp(160px, 52vw, 196px); padding-top: calc(50vh - 145px); }
  .jsc-hero__newopen { margin-top: clamp(30px, 11vw, 42px); }
  .jsc-hero__newopen .new,
  .jsc-hero__newopen .open { font-size: clamp(48px, 18.6vw, 70px); }
  .jsc-hero__newopen .open { margin-left: clamp(12px, 6vw, 22px); }
  .jsc-hero__date {
    margin-top: clamp(6px, 2vw, 10px);
    font-size: clamp(26px, 9vw, 34px);
  }

  /* HERO：SPは画像を左端ぴったり配置（Figma: x=-1, w346.33 → 右側のみ余白） */
  .jsc-hero .jsc-inner { width: 100%; }
  .jsc-hero__visual {
    width: 100%;
    margin: clamp(50px, 18vw, 80px) 0 0;
    padding: 0;
    margin-top: calc(50vh - 140px);
  }
  .jsc-hero__imgwrap {
    width: 92.35%;   /* 346.33 / 375 */
    margin: 0;       /* 左端ぴったり（右だけ余白） */
  }
  .jsc-hero__main { width: 100%; margin: 0; }
  /* Be the Buyer.：右側に白の縦書き（1列／⑤改行防止のため height 解除＋nowrap） */
  .jsc-hero__catch {
    left: auto;
    right: -12%;
    top: -1%;
    bottom: auto;
    transform: none;
    width: auto;
    height: auto;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
    font-size: clamp(56px, 31.5vw, 118px);
    line-height: 0.92;
    color: #fff;
    -webkit-text-fill-color: #fff;
    letter-spacing: -2px;
  }
  /* Every great find...：左側に白の縦書き（1列） */
  .jsc-hero__lead {
    position: absolute;
    left: 1%;
    top: 0;
    margin: 0;
    width: auto;
    height: auto;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
    font-size: clamp(16px, 7.5vw, 28px);
    line-height: 1;
    letter-spacing: 0;
  }

  /* CONCEPT：本文 → その下に写真スライダー（④） */
  .jsc-concept { margin-top: clamp(40px, 15vw, 80px); }
  .jsc-concept .jsc-inner {
    width: 92%;
    display: flex;
    flex-direction: column;
  }
  .jsc-concept__text {
    order: 0;
    width: min(273px, 100%);
    margin: 0 auto;
    padding-top: 0;
    font-size: clamp(12px, 3.5vw, 13px);
    line-height: 1.7;
  }
  /* 写真：スライダー（slickで初期化）。1スライド ≒152px */
  .jsc-concept__photos {
    order: 1;
    position: relative;
    width: 100%;
    padding-bottom: 0;
    margin-top: clamp(28px, 10vw, 50px);
  }
  .jsc-concept__photo {
    position: static;
    width: 152px;
    margin: 0 6px;
    z-index: auto !important;
    /* slick表示のため snap初期状態を解除 */
    opacity: 1 !important;
    transform: none !important;
  }
  /* SPのみ：ギャラリー画像もスライダーに統合 */
  .jsc-concept__photo.-extra { display: block; }
  .jsc-concept__photo.-p1,
  .jsc-concept__photo.-p2,
  .jsc-concept__photo.-p3 { left: auto; top: auto; }
  /* slickドット（黒背景用に白） */
  .jsc-concept__photos .slick-dots { bottom: -28px; }
  .jsc-concept__photos .slick-dots li button:before {
    color: #fff;
    opacity: 0.35;
    font-size: 8px;
  }
  .jsc-concept__photos .slick-dots li.slick-active button:before { opacity: 1; }

  /* MENU：Figma 左右余白 ≒48px(=73.6%) */
  .jsc-menu { margin-top: clamp(60px, 22vw, 100px); }
  .jsc-menu .jsc-inner { width: min(73.6%, 300px); }
  .jsc-menu__ttl { font-size: clamp(40px, 14vw, 53px); }
  .jsc-menu__ttl.-other { margin-top: clamp(70px, 28vw, 110px); }
  .jsc-menu__list { width: 100%; }
  .jsc-menu__row {
    line-height: 2.18;
    font-size: clamp(11px, 3vw, 12px);
  }

  /* GALLERY：SPデザインには無いため非表示 */
  .jsc-gallery { display: none; }

  /* INFO */
  .jsc-info {
    margin-top: clamp(40px, 16vw, 70px);
    padding-bottom: clamp(40px, 12vw, 70px);
  }
  .jsc-info__sns img { width: clamp(26px, 8vw, 30px); }
  .jsc-info__sns { order: -1; }
  .jsc-info__addr-en {
    margin-top: clamp(40px, 16vw, 60px);
    font-size: clamp(20px, 7.4vw, 28px);
  }
  .jsc-info__addr-jp {
    margin-top: clamp(16px, 5vw, 30px);
    font-size: clamp(9px, 2.6vw, 10px);
  }
  .jsc-info__logo {
    display: block;
    width: clamp(64px, 21vw, 81px);
    margin: clamp(24px, 9vw, 40px) auto 0;
  }
  .jsc-info__hours {
    margin-top: clamp(12px, 4vw, 20px);
    font-size: clamp(9px, 2.6vw, 10px);
  }
}
