:root{
      --jsoba-bg: #0b1022;
      --jsoba-ink: #0d1220;
      --jsoba-text: #1a1f2e;
      --jsoba-muted: #5b647a;
      --jsoba-line: rgba(13,18,32,.12);
      --jsoba-brand: #0b1a4a;  /* ロゴのネイビー寄せ */
      --jsoba-accent: #c9a45a; /* 金寄せ（控えめ） */
      --jsoba-white: #ffffff;
      --jsoba-card: #ffffff;
      --jsoba-soft: #f6f7fb;
      --jsoba-radius: 18px;
      --jsoba-shadow: 0 14px 40px rgba(12, 18, 38, .10);
      --jsoba-shadow2: 0 10px 26px rgba(12, 18, 38, .08);
      --jsoba-max: 1120px;
    }

    *{ box-sizing: border-box; }
    body{
      margin:0;
      font-family: system-ui, -apple-system, "Segoe UI", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", sans-serif;
      color: var(--jsoba-text);
      background: var(--jsoba-soft);
      line-height: 1.7;
    }
    a{ color: inherit; text-decoration: none; }
    img{ max-width:100%; height:auto; display:block; }

    /* ===== Layout ===== */
    .jsoba-wrap{ width: min(var(--jsoba-max), calc(100% - 40px)); margin: 0 auto; }
    .jsoba-section{ padding: 64px 0; }
    .jsoba-section--tight{ padding: 44px 0; }
    .jsoba-kicker{
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--jsoba-muted);
      margin: 0 0 10px;
    }
    .jsoba-h2{
      margin: 0 0 18px;
      font-size: clamp(22px, 2.2vw, 30px);
      letter-spacing: .02em;
      color: var(--jsoba-ink);
    }
/* Lightningの装飾を個別に無効化 */
.jsoba-h2::before,
.jsoba-h2::after {
  content: none;
}
    .jsoba-lead{
      margin: 0;
      color: black;
      font-size: 18px;
    }

    /* ===== Header ===== */
    .jsoba-topbar{
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(246,247,251,.86);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--jsoba-line);
    }
    .jsoba-topbar__inner{
      width: min(var(--jsoba-max), calc(100% - 40px));
      margin: 0 auto;
      display:flex;
      align-items:center;
      justify-content: space-between;
      padding: 12px 0;
      gap: 14px;
    }
    .jsoba-branding{
      display:flex;
      align-items:center;
      gap: 12px;
      min-width: 220px;
    }
    .jsoba-logo{
      width: 116px;
      height: 46px;
      border-radius: 1px;
      overflow: hidden;
      background: #0a1a4c;
      box-shadow: 0 8px 18px rgba(11,26,74,.18);
    }
    .jsoba-branding__text{
      display:flex;
      flex-direction:column;
      line-height:1.15;
    }
    .jsoba-branding__name{
      font-weight: 800;
      letter-spacing: .02em;
      color: var(--jsoba-ink);
      font-size: 14px;
    }
    .jsoba-branding__sub{
      font-size: 12px;
      color: var(--jsoba-muted);
      letter-spacing: .08em;
    }

    .jsoba-nav{
      display:flex;
      gap: 18px;
      align-items:center;
      flex-wrap: wrap;
      justify-content:flex-end;
    }
    .jsoba-nav a{
      font-size: 13px;
      color: var(--jsoba-muted);
      padding: 8px 10px;
      border-radius: 999px;
      transition: .2s;
    }
    .jsoba-nav a:hover{
      background: rgba(11,26,74,.06);
      color: var(--jsoba-ink);
    }
    .jsoba-cta{
      display:flex;
      align-items:center;
      gap: 10px;
    }
    .jsoba-pill{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      padding: 9px 14px;
      border-radius: 999px;
      background: var(--jsoba-brand);
      color: var(--jsoba-white);
      font-size: 13px;
      box-shadow: 0 10px 22px rgba(11,26,74,.18);
      white-space: nowrap;
    }
    .jsoba-pill--ghost{
      background: transparent;
      color: var(--jsoba-brand);
      border: 1px solid rgba(11,26,74,.25);
      box-shadow: none;
    }

    /* ===== Hero ===== */
.jsoba-hero{
  background-image: url("/assets/img/top.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color:#fff;
}

/* 3枚目の「左右でドン」：gapなし、余白も少なめ */
.jsoba-hero__wrap{
  width: min(1400px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr; /* 左でかめ */
  min-height: 560px;               /* 3枚目の“広さ” */
}

/* ===== Left: big facade ===== */
.jsoba-hero__left{
  position: relative;
  overflow: hidden;
}
.jsoba-hero__leftImg{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
}

/* 2枚目の雰囲気：暗めグラデで締める */
.jsoba-hero__left::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(700px 420px at 30% 20%, rgba(0,0,0,.10), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.45) 100%);
  pointer-events:none;
}

/* 2枚目の“左下ロゴプレート”を維持 */
.jsoba-hero__brandPlate{
  position:absolute;
  left: 28px;
  bottom: 26px;
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(11,16,34,.55);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0,0,0,.20);
  z-index: 2;
}
.jsoba-hero__brandLogo{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow:hidden;
  background: #0b1a4a;
  flex: 0 0 auto;
}
.jsoba-hero__brandLogo img{
  width:100%; height:100%; object-fit:cover;
}
.jsoba-hero__brandText{
  line-height: 1.1;
}
.jsoba-hero__brandName{
  margin:0 0 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}
.jsoba-hero__brandSub{
  margin:0;
  font-size: 11px;
  letter-spacing: .10em;
  color: rgba(255,255,255,.72);
}

/* ===== Right: vertical stack (3枚目) ===== */
.jsoba-hero__right{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 52px 52px;
}

.jsoba-hero__stack{
  width: min(440px, 100%);
  display:flex;
  flex-direction: column;
  gap: 18px;
  /* 3枚目の雰囲気：縦積みを中央寄せ */
  align-items: flex-start;
}

/* 2枚目のバッジを維持 */
.jsoba-hero__badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
  font-size: 12px;
  letter-spacing: .10em;
}

/* 2枚目の見出し色・質感を維持（白） */
.jsoba-hero__title{
  margin: 0;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.12;
  letter-spacing: .01em;
}

/* 3枚目：右カラム内に“そば写真”を縦積み */
.jsoba-hero__menuShot{
  width: 320px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow:hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}
.jsoba-hero__menuShot img{
  width:100%; height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
}

/* 2枚目の本文トーンを維持 */
.jsoba-hero__lead{
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.82);
  max-width: 46ch;
}

/* 2枚目のボタンを維持（ピル＋ゴースト） */
.jsoba-hero__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.jsoba-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 9px 14px;
  border-radius: 999px;
  background: #0b1a4a;
  color:#fff;
  font-size: 13px;
  text-decoration:none;
  box-shadow: 0 10px 22px rgba(11,26,74,.18);
  white-space: nowrap;
}
.jsoba-pill--ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: none;
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .jsoba-hero__wrap{
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .jsoba-hero__left{
    height: 360px;
  }
  .jsoba-hero__right{
    padding: 42px 22px 52px;
  }
  .jsoba-hero__stack{
    align-items: flex-start;
  }
}


/* =========================
   Hero single image
========================= */
.jsoba-hero-image {
  width: 100vw;
  margin-left: calc(50% - 50vw); /* Lightningの中央寄せ解除 */
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

.jsoba-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}



    /* ===== Cards / Grid ===== */
    .jsoba-grid2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      margin-top: 18px;
    }
    .jsoba-grid3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 18px;
    }
    .jsoba-card{
      background: var(--jsoba-card);
      border: 1px solid var(--jsoba-line);
      border-radius: var(--jsoba-radius);
      box-shadow: var(--jsoba-shadow2);
      padding: 18px;
    }
    .jsoba-card--media{
      padding: 0;
      overflow: hidden;
    }
    .jsoba-card__media{
      aspect-ratio: 16/10;
      background: #e8eaf2;
    }
    .jsoba-card__media img{
      width:100%;
      height:100%;
      object-fit: cover;
    }
    .jsoba-card__body{ padding: 16px 18px 18px; }
    .jsoba-card__title{
      margin: 0 0 8px;
      font-weight: 800;
      letter-spacing: .02em;
      color: var(--jsoba-ink);
      font-size: 16px;
    }
    .jsoba-card__text{
      margin: 0;
      color: var(--jsoba-muted);
      font-size: 16px;
    }
    .jsoba-tagrow{
      display:flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 12px;
    }
    .jsoba-tag{
      font-size: 14px;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(11,26,74,.18);
      color: var(--jsoba-brand);
      background: rgba(11,26,74,.04);
    }

    /* ===== Menu list ===== */
    .jsoba-menu{
      display:grid;
      grid-template-columns: 1fr;
      gap: 12px;
      margin-top: 16px;
    }
    .jsoba-menuitem{
      display:grid;
      grid-template-columns: 140px 1fr;
      gap: 14px;
      align-items:center;
      padding: 14px;
      border: 1px solid var(--jsoba-line);
      border-radius: 16px;
      background: #fff;
      box-shadow: 0 10px 24px rgba(12,18,38,.06);
    }
    .jsoba-menuitem__img{
      aspect-ratio: 4/3;
      border-radius: 14px;
      overflow: hidden;
      background: #e8eaf2;
    }
    .jsoba-menuitem__img img{
      width:100%;
      height:100%;
      object-fit: cover;
    }
    .jsoba-menuitem__title{
      margin: 0 0 6px;
      font-weight: 800;
      color: var(--jsoba-ink);
      font-size: 15px;
      letter-spacing: .02em;
    }
    .jsoba-menuitem__desc{
      margin: 0;
      color: var(--jsoba-muted);
      font-size: 13px;
    }
    .jsoba-menuitem__meta{
      margin-top: 10px;
      display:flex;
      gap: 10px;
      flex-wrap: wrap;
      color: var(--jsoba-muted);
      font-size: 12px;
    }
    .jsoba-dot{
      width: 6px; height: 6px; border-radius: 999px;
      background: rgba(11,26,74,.35);
      display:inline-block;
      transform: translateY(-1px);
      margin-right: 6px;
    }

    /* ===== Info list ===== */
    .jsoba-dl{
      margin: 0;
      display:grid;
      grid-template-columns: 180px 1fr;
      gap: 10px 14px;
      font-size: 16px;
    }
    .jsoba-dl dt{ color: var(--jsoba-muted); }
    .jsoba-dl dd{ margin:0; color: var(--jsoba-ink); font-weight: 600; }
    .jsoba-note{
      margin-top: 12px;
      padding: 12px 14px;
      border-radius: 14px;
      background: rgba(201,164,90,.12);
      border: 1px solid rgba(201,164,90,.22);
      color: #3b2e15;
      font-size: 15px;
    }

    /* ===== Footer ===== */
    .jsoba-footer{
      padding: 30px 0 44px;
      border-top: 1px solid var(--jsoba-line);
      color: var(--jsoba-muted);
      font-size: 14px;
    }

    /* ===== Responsive ===== */
    @media (max-width: 980px){
      .jsoba-hero__grid{ grid-template-columns: 1fr; }
      .jsoba-grid3{ grid-template-columns: 1fr; }
      .jsoba-grid2{ grid-template-columns: 1fr; }
      .jsoba-nav{ display:none; }
    }
    @media (max-width: 560px){
      .jsoba-section{ padding: 48px 0; }
      .jsoba-menuitem{ grid-template-columns: 1fr; }
      .jsoba-dl{ grid-template-columns: 1fr; }
      .jsoba-branding{ min-width: unset; }
    }

.jsoba-concept {
  max:width:1120px;
  margin: 0 auto;
}

.jsoba-concept__lead {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.jsoba-concept__more {
  display: none;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.jsoba-concept__toggle {
  background: none;
  border: none;
  color: #1f2a44;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
}

.jsoba-concept__toggle:hover {
  text-decoration: underline;
}

.jsoba-concept {
  max:width:1120px;
  margin: 0 auto;
}

.jsoba-concept__excerpt {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.jsoba-concept__full {
  display: none;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.jsoba-concept__toggle {
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  color: #1f2a44;
  cursor: pointer;
}

.jsoba-concept__toggle:hover {
  text-decoration: underline;
}

.jsoba-concept__excerpt,
.jsoba-concept__full {
  transition: opacity 0.6s ease;
}

.jsoba-concept__full {
  display: none;
  opacity: 0;
}


/* ===== おすすめメニュー：カルーセル ===== */
.menu-carousel {
  margin-top: 16px;
}

.menu-carousel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.menu-carousel__controls {
  display: flex;
  gap: 8px;
}

.menu-carousel__btn {
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  border-radius: 999px;
  padding: 8px 10px;
  line-height: 1;
  cursor: pointer;
}

.menu-carousel__viewport {
  overflow: hidden;
  border-radius: 18px; /* 既存の丸みと合わせる */
}

.menu-carousel__track {
  display: flex;
  gap: 18px;
  will-change: transform;
  transition: transform 420ms ease;
}

/* 3枚表示（PC） */
.menu-card {
  flex: 0 0 calc((100% - 18px * 2) / 3);
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.menu-card__media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.menu-card__body {
  padding: 14px 16px 16px;
}

.menu-card__name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.menu-card__price {
  font-size: 13px;
  opacity: .75;
  margin-bottom: 8px;
}

.menu-card__desc {
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

/* ドット */
.menu-carousel__dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.menu-carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0,0,0,.18);
}
.menu-carousel__dot.is-active {
  width: 18px;
  background: rgba(0,0,0,.55);
}

/* タブレット：2枚 */
@media (max-width: 1024px) {
  .menu-card { flex-basis: calc((100% - 18px) / 2); }
  .menu-card__media img { height: 220px; }
}

/* スマホ：1枚 */
@media (max-width: 640px) {
  .menu-card { flex-basis: 100%; }
  .menu-card__media img { height: 220px; }
}

.jsoba-concept{
margin-top:4rem;
}

 .menu-section{
margin-top:4rem;
}

.contact-recruit-card__media{
  border-radius: 18px;
  overflow: hidden;
}
.contact-recruit-card__media img{
  width: 20%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
.contact-recruit-card__media img{
  width: 50%;
  object-fit: cover;
  display: block;
}}


/* ===== a11y ===== */
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* ===== topbar layout (最低限) ===== */
.jsoba-topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

/* PCナビ */
.jsoba-nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.jsoba-nav a{
  text-decoration:none;
}

/* スマホ用CTA（ハンバーガー） */
.jsoba-cta{
  position:relative; /* ドロップダウンの基準 */
  display:none;      /* PCでは消す（スマホで表示） */
}

/* ===== hamburger ===== */
.jsoba-burger{
  appearance:none;
  background:transparent;
  border:0;
  padding:10px;
  cursor:pointer;
  line-height:1;
  color:inherit;
}

.jsoba-burger__line{
  display:block;
  width:26px;
  height:2px;
  margin:6px 0;
  background: currentColor;
}


/* ===== dropdown menu ===== */
.jsoba-spmenu{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  min-width: 220px;
  padding:10px;
  border-radius:14px;

  /* 既存デザインに合わせやすい無難な見た目 */
  background: rgba(0,0,0,.70);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);

  z-index: 9999;
color:white;
}

.jsoba-spmenu a{
  display:block;
  padding:12px 10px;
  text-decoration:none;
  color:inherit;
  border-radius:10px;
}

.jsoba-spmenu a:hover{
  background: rgba(255,255,255,.10);
}

/* ===== responsive: SPで切替 ===== */
@media (max-width: 767px){
  .jsoba-nav{ display:none; }
  .jsoba-cta{ display:block; }
}