:root{
  --font: "Zen Kaku Gothic New", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Base */
  --bg: #ffffff;
  --text: #1f1a16;
  --muted: rgba(31,26,22,.72);
  --line: rgba(31,26,22,.18);

  /* Brand-ish */
  --dark: #000;
  --beige: #e8dfc8;
  --yellow: #f2c400;

  --radius: 18px;
  --radius2: 20px;
  --shadow: 0 12px 34px rgba(0,0,0,.10);

  --wrap: 980px;
}

.br-sp{ display:none; }
@media (max-width: 760px){
  .br-sp{ display:inline; }
}
.br-pc{ display:inline; }
@media (max-width: 760px){
  .br-pc{ display:none; }
}

/* B案（リッチカラー）：背景/セクション配色をPDF寄せ */
html[data-theme="b"]{
  --bg: #ffffff;
  --line: rgba(31,26,22,.14);
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  letter-spacing: .02em;
}

img{ max-width:100%; height:auto; display:block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; }

.wrap{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 18px;
}

.center{ text-align:center; }
.stack{ display:flex; flex-direction:column; gap:10px; align-items:center; }
.muted{ color: var(--muted); }
.smallHead{ font-size: 12px; letter-spacing:.08em; opacity:.7; text-transform: none; }

/* ===== Fixed Top ===== */
.fixedTop{
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 30;
  display:flex;
  align-items:center;
  justify-content:space-between;
  pointer-events: none;
}
.fixedTop > *{ pointer-events: auto; }

.brandMini{
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--dark);
  display:grid; place-items:center;
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
}
.brandMini__dot{
  width: 44px; height: 44px;
  color:#fff;
  font-weight:700;
  font-size: 28px;
  transform: translateY(-.5px);
  text-align: center;
}

.fixedTop__right{
  display:flex; align-items:center; gap:10px;
}

.pillLink{
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: rgba(255,255,255,.80);
  backdrop-filter: blur(10px);
  font-size: 25px;
  letter-spacing: .06em;
  text-align: center;
}

.hamburger{
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--dark);
  backdrop-filter: blur(10px);
  display:flex;                 /* grid → flex */
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap: 3px;                     /* ← ここで間隔調整（2〜3px推奨） */
  cursor:pointer;
}

.hamburger span{
  width: 18px;
  height: 2px;
  background: white;
  display:block;
  margin: 0;                    /* margin撤廃 */
  border-radius: 2px;
}

/* ===== Side labels (PC) ===== */
.sideLabels{
  position: fixed;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display:none;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: .2em;
  font-size: 12px;
  gap: 10px;
}
.sideLabels a{
  padding: 10px 10px;
  color: rgba(31,26,22,.55);
}
.sideLabels a:hover{ color: rgba(31,26,22,.90); }

@media (min-width: 980px){
  .sideLabels{ display:flex; }
}


/* 初期：非表示（ふわっと用） */
.fixedTop,
.sideLabels{
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}

/* 表示状態 */
.fixedTop.is-visible,
.sideLabels.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* sideLabels は横スライドのほうが自然ならこれに */
@media (min-width: 980px){
  .sideLabels{
	transform: translateX(-8px);
  }
  .sideLabels.is-visible{
	transform: translateX(0);
  }
}

/* ===== Nav Overlay ===== */
.navOverlay{
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.navOverlay.is-open{
  opacity: 1;
  pointer-events: auto;
}
.navOverlay__inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 26px 16px;
}
.navOverlay__body{
  width:min(520px, 92vw);
  text-align:center;
}
.navOverlay__top{
  position:absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.iconBtn{
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  cursor:pointer;
}
.iconBtn__x{
  display:block;
  width: 18px; height: 18px;
  margin: 0 auto;
  position: relative;
}
.iconBtn__x::before,
.iconBtn__x::after{
  content:"";
  position:absolute;
  inset: 8px 0 auto 0;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.iconBtn__x::before{ transform: rotate(45deg); }
.iconBtn__x::after{ transform: rotate(-45deg); }

.navItem{
  display:block;
  padding: 14px 10px;
  color:#fff;
  font-size: 18px;
  letter-spacing:.08em;
}
.navItem span{
  display:inline-block;
  margin-left: 10px;
  font-size: 12px;
  opacity:.65;
  letter-spacing:.14em;
}

.navOverlay__logo{ margin: 18px 0 12px; display:flex; justify-content:center; }
.navOverlay__sns{ display:flex; gap:25px; justify-content:center; margin-top: 12px; }
.navOverlay__copy{ margin-top: 14px; color: rgba(255,255,255,.65); font-size: 11px; letter-spacing:.10em; }

/* ===== Logo circle ===== */
.logoCircle{
  width: 120px; height: 120px;
  border-radius: 999px;
  /* background: rgba(0,0,0,.55); */
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 6px;
}
.logoCircle__mark{
  font-weight:700;
  color:#fff;
  font-size: 44px;
  line-height: 1;
}
.logoCircle__sub{
  color: rgba(255,255,255,.85);
  font-size: 13px;
  letter-spacing:.12em;
}
.logoCircle--invert{
  /* background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20); */
}
.logoCircle--invert .logoCircle__mark{ color:#fff; }
.logoCircle--invert .logoCircle__sub{ color: rgba(255,255,255,.88); }

/* ===== Hero ===== */
.hero{
  position: relative;
  height: min(82vh, 760px);
  min-height: 520px;
  overflow:hidden;
}
.hero__media{
  position:absolute;
  inset:0;
}
.hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__dim{
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.55));
}
.hero__content{
  position: relative;
  z-index: 2;
  height: 100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding: 120px 18px 60px;
  text-align:center;
}
.hero__logo{ background: var(--dark); }
.hero__lead{
  color:#fff;
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.9;
  text-shadow: 0 10px 30px rgba(0,0,0,.25);
  text-align: left;
}
.hero__mini{ margin-top: 18px; }
.miniLabel{
  display:inline-block;
  font-size: 11px;
  color: rgba(255,255,255,.72);
  letter-spacing:.08em;
}

.hero--recruit .hero__lead{ font-size: 15px; }
.tagPill{
  display:inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.48);
  border: 1px solid rgba(255,255,255,.25);
  color:#fff;
  font-size: 12px;
  letter-spacing:.12em;
}

/* ===== Sections ===== */
.section{ padding: 70px 0; }
.sectionHead{ margin-bottom: 26px;text-align: center; }
.sectionHead__en{
  font-size: 12px;
  letter-spacing: .18em;
  color: rgba(31,26,22,.55);
  text-transform: lowercase;
}
.sectionHead__jp{
  margin: 10px 0 0;
  font-size: 18px;
  letter-spacing: .08em;
  line-height: 1.6;
}
.sectionHead--center{ text-align:center; }

/* Concept grid */
.conceptGrid{
  display:grid;
  gap: 18px;
}

/* 画像にクラスを付けた前提 */
.conceptImg{
  width: 100%;
  display:block;
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}



@media (min-width: 760px){
  .conceptGrid{
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	grid-template-areas:
	  "img1 txt1"
	  "txt2 img2";
  }

  /* DOM順：img1, txt1, img2, txt2 をエリアに割当 */
  .conceptGrid > .conceptImg:nth-of-type(1){ grid-area: img1; }
  .conceptGrid > .conceptText:nth-of-type(1){ grid-area: txt1; }
  .conceptGrid > .conceptImg:nth-of-type(2){ grid-area: img2; }
  .conceptGrid > .conceptText:nth-of-type(2){ grid-area: txt2; }

  .conceptText{ padding: 22px; }
}

/* News section */
.section--news{
  border-top: 1px solid rgba(0,0,0,.06);
}
html[data-theme="b"] .section--news{
  background: var(--beige);
}
.newsList{
  max-width: 720px;
  margin: 0 25%;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.newsItem{
  display:flex;
  gap: 40px;
  align-items: baseline;
  padding: 12px 14px;
  background: rgba(255,255,255,.85);
}
.newsItem time{
  font-size: 12px;
  opacity: .65;
  flex: 0 0 auto;
}
.newsItem span{
  font-size: 13px;
  color: var(--text);
}
.newsItem.is-hidden{ display:none; }

.ghostBtn{
  margin-top: 25px;
  padding: 10px 45px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor:pointer;
  letter-spacing:.08em;
}
.ghostBtn span{ font-size: 12px; }
.ghostBtn span::before{
  content: "＞";
  display: inline-block;
  margin-right: 8px; /* 間隔は好みで調整 */
}

/* Menu section */
.section--menu{
  border-top: 1px solid rgba(0,0,0,.06);
}
html[data-theme="b"] .section--menu{
  background: var(--yellow);
}
.menuGrid{
  display:grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px){
  .menuGrid{ grid-template-columns: 1fr 1fr; gap: 18px; }
}
.menuCard{
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  background: #fff;
}
.menuCard img{ width:100%; aspect-ratio: 16/10; object-fit: cover; }
.menuCard__body{ padding: 14px 14px 16px; }
.menuCard__top{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.menuCard__top h3{
  margin: 0;
  font-size: 13px;
  letter-spacing:.14em;
}
.menuCard__top span{
  font-size: 11px;
  opacity:.65;
}
.menuCard p{
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

/* ---- MENUカード：画像とテキストを分離＆ボーダー撤廃 ---- */
.menuCard{
  border-radius: 0;              /* 親で角丸しない */
  overflow: visible;             /* 親で切らない */
  border: none;                  /* ボーダー削除 */
  box-shadow: none;              /* 必要なら残してもOK */
  background: transparent;       /* 背景も消す */
}

/* 画像は四方丸角 */
.menuCard img{
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius2); /* 画像自体に角丸 */
  display: block;
  border: none;
  box-shadow: 0 12px 30px rgba(0,0,0,.08); /* 画像だけ影（任意） */
}

/* 下のテキストを別ブロックとして分離 */
.menuCard__body{
  margin-top: 10px;              /* 画像との隙間 */
  padding: 14px 16px 16px;
}

.pillBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 168px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 12px;
  letter-spacing:.10em;
}
.pillBtn--outline{
  background: transparent;
}
.pillBtn--dark{
  background: var(--dark);
  color: #fff;
  border-color: rgba(255,255,255,.12);
}
.pillBtn--dark span::before{
  content: "＞";
  display: inline-block;
  margin-right: 8px; /* 間隔は好みで調整 */
}

/* Map + info */
.mapBox{
  width: 100%;
  height: 220px;
}

.mapBox iframe{
  width: 100%;
  height: 100%;
  display: block; /* 下の謎の隙間防止 */
  border: 0;
}
.infoGrid{
  max-width: 720px;
  margin: 0 20%;
}
/* 住所/営業時間/電話：左(dt) 右(dd) の2カラムに */
.infoGrid dl{
  margin: 0;
  display: grid;
  gap: 14px;              /* 行間 */
}

.infoGrid dl > div{
  display: grid;
  grid-template-columns: 92px 1fr; /* ←左列幅（ラベル列） */
  column-gap: 18px;
  align-items: start;
  padding: 12px 0;
}

.infoGrid dl > div:first-child{
  border-top: none;
}

.infoGrid dt{
  margin: 0;
  font-size: 12px;
  letter-spacing: .16em;
  opacity: .65;
  white-space: nowrap;    /* 住　所 / 営業時間 / 電　話 を折り返さない */
}

.infoGrid dd{
  margin: 0;              /* dlのデフォ余白を消す */
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

/* スマホで詰まりそうなら左列幅を少し縮める */
@media (max-width: 420px){
  .infoGrid dl > div{
	grid-template-columns: 78px 1fr;
	column-gap: 14px;
  }
}
/* 営業時間：ラベルと時間を綺麗に揃える */
.bizHours{
  display: grid;
  gap: 6px;
}

.bizHours__row{
  display: grid;
  grid-template-columns: 110px 1fr; /* ←ラベル幅（ここで揃う） */
  align-items: baseline;
  column-gap: 14px;
}

.bizHours__label{
  font-size: 12px;
  letter-spacing: .10em;
  opacity: .85;
  white-space: nowrap;
}

.bizHours__time{
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}

/* Recruit CTA */
.section--recruitCta{
  padding: 72px 0 84px;
}
.section--recruitCta .pillBtn{ margin-top: 10px; }

/* Recruit detail */
.jobGrid{
  display:grid;
  gap: 14px;
  margin-top: 18px;
}
@media (min-width: 760px){
  .jobGrid{ grid-template-columns: 1fr 1fr; gap: 18px; }
}
.jobCard{
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 16px 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.jobCard h3{
  margin:0 0 10px;
  font-size: 14px;
  letter-spacing:.10em;
}
.jobDl{ margin: 0 0 12px; }
.jobDl > div{ padding: 10px 0; border-top: 1px solid rgba(0,0,0,.06); }
.jobDl dt{ font-size: 11px; opacity:.65; letter-spacing:.12em; }
.jobDl dd{ margin: 6px 0 0; font-size: 12px; color: var(--muted); line-height: 1.8; }

.chipArea{
  margin-top: 22px;
  text-align:center;
}
.chipHead{
  font-size: 12px;
  letter-spacing:.12em;
  opacity:.7;
  margin-bottom: 10px;
}
.chips{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  justify-content:center;
}
.chip{
  display:inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 11px;
  opacity:.85;
}

/* Footer */
.footer{
  background: var(--dark);
  color:#fff;
  padding: 40px 0 36px;
}
.footer--photo{
  background:
	linear-gradient(to bottom, rgba(0,0,0,.50), rgba(0,0,0,.78)),
	url("../img/footer.jpg") center/cover no-repeat;
}
.footer__inner{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 14px;
}
.footer__copy{
  font-size: 11px;
  opacity:.7;
  letter-spacing:.10em;
}
.footer__sns{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: nowrap; /* 念のため */
}
.snsIco{
  width: 30px; height: 30px;
  /* border-radius: 999px; */
  /* border: 1px solid rgba(0,0,0,.18); */
  display:grid;
  gap: 5em;
  place-items:center;
  font-size: 12px;
  /* background: rgba(255,255,255,.85); */
}
.snsIco--inv{
  /* background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
  color:#fff; */
}

/* to top */
.toTop{
  position: fixed;
  right: 14px;
  bottom: 14px;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #000;
  backdrop-filter: blur(10px);
  display:grid;
  place-items:center;
  font-size: 12px;
  z-index: 25;
  color: white;
  display: none;
}



/* =========================
   SP最適化（構成はそのまま）
   ========================= */
@media (max-width: 760px){

  /* 全体：横はみ防止（長い文字・英字が折れない問題対策） */
  body{
	overflow-x: hidden;
	-webkit-text-size-adjust: 100%;
  }
  *{
	word-break: break-word;
  }

  /* 余白：セクションがデカすぎる/詰まりすぎるの調整 */
  .wrap{ padding: 0 16px; }
  .section{ padding: 52px 0; }

  /* 見出し：スマホで大きすぎるのを抑える */
  .sectionHead__jp{
	font-size: 16px;
	line-height: 1.7;
	letter-spacing: .06em;
  }
  .sectionHead__en{
	font-size: 11px;
  }

  /* HERO：高さと文字をスマホ向けに */
  .hero{
	min-height: 440px;     /* 520pxはスマホで長すぎ */
	height: 72vh;
  }
  .hero__content{
	padding: 108px 16px 44px;
  }
  .hero__lead{
	font-size: 13.5px;
	line-height: 1.85;
  }
  /* <br>固定改行がスマホで変に切れる → スマホだけ無効化 */
  /* .hero__lead br{ display:none; } */

  /* 上部ボタン：文字がデカすぎる（募がはみ出る等） */
  .brandMini,
  .pillLink,
  .hamburger{
	width: 40px;
	height: 40px;
  }
  .brandMini__dot{
	width: 40px;
	height: 40px;
	font-size: 24px;
	line-height: 40px;
  }
  .pillLink{
	font-size: 18px;
	line-height: 40px;
	border-width: 1px;
  }

  /* CONCEPT：文章の改行が多すぎて“変な切れ”に見える → brを消す */
  .conceptText p{
	font-size: 12.5px;
	line-height: 1.9;
  }
  .conceptText p br{ display:none; }

  /* NEWS：margin 0 25% がスマホを殺してるので戻す */
  .newsList{
	margin: 0 auto;
    margin-bottom: 3em;
	max-width: 100%;
  }
  .newsItem{
	gap: 14px;                 /* 40pxは広すぎ */
	padding: 12px 14px;
  }
  .newsItem time{
	font-size: 11px;
  }
  .newsItem span{
	font-size: 12.5px;
	line-height: 1.6;
  }

  /* ボタン：横幅をスマホで自然に（45px paddingはでかい） */
  .ghostBtn{
	padding: 10px 26px;
  }

  /* MENU：見出し2つ(h3,h3)が折れて崩れやすい → SPだけ縦に */
  .menuCard__top{
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
  }
  .menuCard__top h3{
	font-size: 12.5px;
	letter-spacing: .12em;
  }
  .menuCard p{
	font-size: 12.5px;
	line-height: 1.9;
  }
  /* MENU本文の <br> もスマホでは消すと読みやすい */
  .menuCard p br{ display:none; }

  /* ACCESS：margin 0 20% がスマホを殺してるので戻す */
  .infoGrid{
	margin: 0 auto;
	max-width: 100%;
  }
  .infoGrid dl > div{
	grid-template-columns: 78px 1fr; /* ラベル列を少し縮める */
	column-gap: 12px;
	padding: 10px 0;
  }

  /* 営業時間：ラベル列が長いのでSPは少し狭める */
  .bizHours__row{
	grid-template-columns: 92px 1fr;
	column-gap: 10px;
  }
  /* 注意書き(※〜)が bizHours のgridに巻き込まれて崩れやすいので整える */
  .bizHours{
	row-gap: 8px;
  }
}

/* （ついでに）SNSアイコン：gap:1em は不要なので削除推奨 */
.snsIco{
  gap: 0;
}


/* =========================================
   Recruit page only (scoped)
   ========================================= */
body.page-recruit .recruitIntro{ background:#fff; }
body.page-recruit .recruitIntro__wrap{ padding: 16px 0 30px; text-align:center; }
body.page-recruit .recruitIntro__meta{ display:flex; gap:8px; justify-content:center; margin-top:8px; }
body.page-recruit .metaPill{ font-size:11px; letter-spacing:.14em; opacity:.65; }
body.page-recruit .metaPill--ghost{ opacity:.45; }
body.page-recruit .recruitIntro__title{ margin:10px 0 8px; font-size:18px; letter-spacing:.18em; }
body.page-recruit .recruitIntro__note{ margin:0 auto; max-width:520px; font-size:12px; color:var(--muted); line-height:1.9; }

body.page-recruit .catchMain{ margin:0; font-size:14px; letter-spacing:.10em; }
body.page-recruit .catchSub{ margin:8px 0 0; font-size:13px; line-height:1.9; }
body.page-recruit .catchMini{ margin:12px 0 0; font-size:12px; color:var(--muted); line-height:1.9; }

/* Hero */
body.page-recruit .hero--recruitHero .hero__content--recruit{ padding:0; }
body.page-recruit .hero__logo--recruit{ width:120px; height:120px; background:transparent; }
body.page-recruit .hero__logo--recruit img{ width:140px; max-width:none; }

/* Section head */
body.page-recruit .recruitSection__head{ text-align:center; margin-bottom:18px; }
body.page-recruit .recruitSection__head--left{ text-align:left; }
body.page-recruit .recruitSection__en{ font-size:12px; letter-spacing:.18em; opacity:.55; }
body.page-recruit .recruitSection__jp{ margin:8px 0 0; font-size:14px; letter-spacing:.12em; }

/* =========================================
   Job panels (screenshot-like)
   ========================================= */
body.page-recruit .jobGrid--recruit{
  display:grid;
  gap:26px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width:760px){
  body.page-recruit .jobGrid--recruit{ grid-template-columns: 1fr; }
}

body.page-recruit .jobPanel{
  border:1px solid rgba(0,0,0,.25);
  padding:22px 20px 18px;
  background:#fff;
}
body.page-recruit .jobPanel__title{
  margin:0 0 30px;
  font-size:22px;
}
body.page-recruit .jobHr{
  border:0;
  border-top:1px solid rgba(0,0,0,.25);
  margin:18px 0;
}
body.page-recruit .jobRow{
  display:grid;
  grid-template-columns: 5em minmax(0, 1fr);
  column-gap:18px;
  align-items:start;
}
body.page-recruit .jobKey{
  white-space:nowrap;
}
body.page-recruit .jobVal{
  font-size:13px;
  line-height:1.9;
  color: rgba(0,0,0,.78);
  min-width:0;
}
body.page-recruit .jobCta{
  margin:18px auto 0;
  width:min(320px, 100%);
  height:54px;
  border:2px solid rgba(0,0,0,.22);
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  letter-spacing:.08em;
}
body.page-recruit .jobCta span::before{ content:"＞"; margin-right:12px; }

/* =========================================
   Application form (the main problem) - unified
   ========================================= */
body.page-recruit .appBox{
  border:1px solid rgba(0,0,0,.22);
  padding:26px 26px 20px;
  background:#fff;
  font-size:14px;
  line-height:1.8;
  max-width:100%;
  overflow:hidden;
}
@media (max-width:760px){
  body.page-recruit .appBox{ padding:18px 14px 16px; font-size:13.5px; }
}

/* 共通：押し出し防止（これが無いと右にはみ出す） */
body.page-recruit .appRow,
body.page-recruit .appField,
body.page-recruit .appField *{ min-width:0; }

/* 2項目行（左3列 + 右3列） */
body.page-recruit .appRow{
  display:grid;
  grid-template-columns:
    120px 40px minmax(0,1fr)
    120px 40px minmax(0,1fr);
  column-gap:10px;
  row-gap:10px;
  padding:12px 0;
  align-items:center;
}
body.page-recruit .appRow--single{
  display:grid;
  grid-template-columns: 120px 40px minmax(0,1fr);
}
body.page-recruit .appRow--textarea{
  display:grid;
  grid-template-columns: 120px 40px minmax(0,1fr);
  align-items:start;
}
body.page-recruit .appRow--agree{ padding-top:18px; }

/* SP：1カラム */
@media (max-width:760px){
  body.page-recruit .appRow,
  body.page-recruit .appRow--single,
  body.page-recruit .appRow--textarea{
    grid-template-columns: 1fr;
    padding:10px 0;
  }
}

/* Label / Required */
body.page-recruit .appLabel{
  font-weight:600;
  letter-spacing:.10em;
  white-space:normal;
  line-height:1.35;
}
body.page-recruit .appLabel--r{ justify-self:start; }

body.page-recruit .appReq{ display:flex; }
body.page-recruit .reqPill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:18px;
  padding:0 8px;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:10.5px;
  letter-spacing:.10em;
}

/* Controls */
body.page-recruit .appField select,
body.page-recruit .appField input,
body.page-recruit .appField textarea{
  width:100%;
  height:42px;
  border:1px solid rgba(0,0,0,.18);
  padding:0 12px;
  font-size:14px;
  outline:none;
  background:#fff;
}
body.page-recruit .appField textarea{
  height:220px;
  padding:12px;
  resize:vertical;
}
body.page-recruit .appField input::placeholder,
body.page-recruit .appField textarea::placeholder{ color: rgba(0,0,0,.35); }

/* 日付：flex固定幅は禁止。列の中で必ず収まるgrid */
body.page-recruit .tripleSelect{
  display:grid;
  grid-template-columns: minmax(0,1.2fr) 16px minmax(0,.9fr) 16px minmax(0,.9fr);
  align-items:center;
  width:100%;
  max-width:560px; /* 生年月日/面接希望日でも破綻しない */
}
body.page-recruit .tripleSelect select{ width:100%; }
body.page-recruit .slash{ display:grid; place-items:center; width:16px; opacity:.55; }

/* Radio / Checkbox */
body.page-recruit .appBox input[type="radio"],
body.page-recruit .appBox input[type="checkbox"]{
  width:16px;
  height:16px;
  vertical-align:middle;
  accent-color:#111;
}
body.page-recruit .radioPill{ display:inline-flex; align-items:center; gap:8px; margin-right:14px; color:rgba(0,0,0,.75); }
body.page-recruit .agreeRow{ display:flex; align-items:center; gap:10px; color:rgba(0,0,0,.78); }

/* Footnote */
body.page-recruit .appFootnote{
  margin-top:18px;
  font-size:12px;
  color:rgba(0,0,0,.65);
  letter-spacing:.02em;
}

/* =========================================
   Flow + Instagram (PC: 2 columns)
   ========================================= */
body.page-recruit .flowWrap{ display:grid; gap:16px; }
@media (min-width:760px){
  body.page-recruit .flowWrap{
    grid-template-columns: 1fr 1fr;
    align-items:center;
    gap:28px;
  }
}
body.page-recruit .flowList{
  margin:12px 0 0;
  padding:0;
  list-style:none;
  color:var(--muted);
  font-size:12px;
  line-height:2.0;
}
body.page-recruit .flowList span{
  display:inline-block;
  width:48px;
  color:#000;
  letter-spacing:.08em;
}
body.page-recruit .igBox{ text-align:left; }
body.page-recruit .igBox__label{ font-size:12px; color:var(--muted);margin-top: 3em; margin-bottom:8px;text-align: center; }
body.page-recruit .igBtn{
  display:flex;
  align-items:center;
  justify-content: center;  /* ← 中央寄せ */
  gap:12px;                 /* 距離はそのまま */
  height:44px;
  border-radius:999px;
  background:#000;
  color:#fff;
  padding:0 16px;
  margin: 0 auto;           /* ← 親の中でも中央に置く（必要なら） */
  width: fit-content;       /* ← 中身幅に合わせる（対応ブラウザ広い） */
  min-width: 260px;         /* ← 小さくなりすぎ防止（好みで調整） */
}
body.page-recruit .igBtn span:first-child::before{ content:"＞"; margin-right:8px; }
/* Recruit Instagram 右側アイコンを確実に表示 */
body.page-recruit .igBtn__ico{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

body.page-recruit .igBtn__ico img{
  width: 18px;
  height: 18px;
  display: block;
}

@media (min-width:760px){
  .newsList{ margin: 0 auto; max-width: 720px;margin-bottom: 3em; }
  .infoGrid{ margin: 0 auto; max-width: 720px; }
}

/* =========================
   Recruit intro typography fix
   ========================= */

/* 全体：余白を詰める */
body.page-recruit .recruitIntro__wrap{
  padding-top: 10px;
  padding-bottom: 18px;
}

/* recruit（英字ラベル） */
body.page-recruit .recruitIntro__meta{
  margin-top: 3em;
  margin-bottom: 8px;
}
body.page-recruit .metaPill{
  font-size: 12px;
  letter-spacing: .22em;   /* スクショは字間広め */
  opacity: .35;            /* 薄い */
}

/* 求人情報（見出し） */
body.page-recruit .recruitIntro__title{
  margin: 0 0 16px;
  font-size: 34px;         /* スクショのサイズ感 */
  font-weight: 700;
  letter-spacing: .12em;
}

/* 1行目説明（細め/小さめ） */
body.page-recruit .recruitIntro__note{
  margin: 0 auto 56px;     /* ここは少し空ける（スクショ準拠） */
  max-width: 920px;
  font-size: 18px;
  font-weight: 400;
  color: rgba(0,0,0,.78);
  line-height: 2.1;
}

/* キャッチ全体：センター + 余白管理 */
body.page-recruit .recruitIntro__catch{
  margin-top: 0;
}

/* 「楽しいを仕事に。」→見出し扱い（太いけど今より控えめ） */
body.page-recruit .catchMain{
  font-size: 44px;
  font-weight: 700;
  letter-spacing: .10em;
  margin: 0 0 14px;
}

/* 2〜3行の太字キャッチ（太いが行間を詰める） */
body.page-recruit .catchSub{
  font-size: 40px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.55;       /* ←今ここが広すぎで違って見える */
  margin: 0 0 34px;
}

/* 下の説明文（細め、小さめ） */
body.page-recruit .catchMini{
  font-size: 20px;
  font-weight: 400;
  color: rgba(0,0,0,.78);
  line-height: 2.0;
  margin: 0;
}

/* SPはサイズを落として崩れないように */
@media (max-width: 760px){
  body.page-recruit .recruitIntro__title{
    font-size: 20px;
  }
  body.page-recruit .recruitIntro__note{
    font-size: 10px;
    line-height: 2.0;
    margin-bottom: 36px;
  }
  body.page-recruit .catchSub{
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 22px;
  }
  body.page-recruit .catchMini{
    font-size: 10px;
    line-height: 1.95;
  }
}

/* =========================================
   Recruit form (replacement form: fRow)
   Scope: body.page-recruit only
   ========================================= */

body.page-recruit .appBox{
  border: 1px solid rgba(0,0,0,.22);
  background: #fff;
  padding: 26px 26px 20px;
  max-width: 100%;
}

body.page-recruit .formHead{
  text-align:center;
  margin-bottom: 18px;
}
body.page-recruit .formHead__en{
  font-size: 12px;
  letter-spacing: .22em;
  opacity: .35;
}
body.page-recruit .formHead__jp{
  margin: 8px 0 0;
  font-size: 20px;
  letter-spacing: .10em;
}

/* 1行ブロック */
body.page-recruit .fRow{
  padding: 12px 0;
}

/* ラベル */
body.page-recruit .fLabel{
  font-weight: 600;
  letter-spacing: .08em;
  font-size: 13px;
  line-height: 1.35;
  margin-bottom: 8px;
}

/* 必須バッジ */
body.page-recruit .reqPill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 18px;
  padding: 0 8px;
  border-radius: 999px;
  background: #111;
  color:#fff;
  font-size: 10.5px;
  letter-spacing: .10em;
  margin-left: 8px;
  vertical-align: middle;
}

/* 入力共通 */
body.page-recruit .fField{ min-width: 0; }

body.page-recruit .fField select,
body.page-recruit .fField input,
body.page-recruit .fField textarea{
  width: 100%;
  height: 42px;
  border: 1px solid rgba(0,0,0,.18);
  background: #fff;
  font-size: 14px;
  padding: 0 12px;
  outline: none;
}

body.page-recruit .fField textarea{
  height: 210px;
  padding: 12px;
  resize: vertical;
}

/* placeholder */
body.page-recruit .fField input::placeholder,
body.page-recruit .fField textarea::placeholder{
  color: rgba(0,0,0,.35);
}

/* ラジオ（性別） */
body.page-recruit .fField--inline{
  display:flex;
  gap: 18px;
  align-items:center;
}

body.page-recruit .radioPill{
  display:inline-flex;
  gap: 8px;
  align-items:center;
  color: rgba(0,0,0,.78);
  font-size: 14px;
}

/* チェック（同意） */
body.page-recruit .fField--agree{
  display:flex;
  align-items:center;
  gap: 12px;
}

body.page-recruit .agreeRow{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(0,0,0,.78);
  font-size: 14px;
}

body.page-recruit input[type="radio"],
body.page-recruit input[type="checkbox"]{
  width: 16px;
  height: 16px;
  accent-color: #111;
}

/* 日付：西暦/月/日 を横並び＋スラッシュ（崩れないgrid） */
body.page-recruit .tripleSelect{
  display:grid;
  grid-template-columns: minmax(0,1.2fr) 16px minmax(0,.9fr) 16px minmax(0,.9fr);
  align-items:center;
  width: 100%;
  max-width: 560px;
}
body.page-recruit .tripleSelect select{
  width: 100%;
}
body.page-recruit .slash{
  display:grid;
  place-items:center;
  width: 16px;
  opacity: .55;
}

/* 2カラム行（PCで氏名/ふりがな、電話/メールを横に） */
body.page-recruit .fRow--2col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
body.page-recruit .fCol{ min-width: 0; }

/* 注意書き */
body.page-recruit .appFootnote{
  margin-top: 18px;
  font-size: 12px;
  color: rgba(0,0,0,.65);
  letter-spacing: .02em;
  line-height: 1.9;
}

/* SP：添付スクショの見た目（縦積み） */
@media (max-width: 760px){
  body.page-recruit .appBox{
    padding: 18px 14px 16px;
  }

  body.page-recruit .formHead__jp{
    font-size: 18px;
  }

  body.page-recruit .fRow{ padding: 12px 0; }

  /* スマホは必ず縦（2カラム解除） */
  body.page-recruit .fRow--2col{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* 日付も横3つ維持 */
  body.page-recruit .tripleSelect{
    max-width: 100%;
  }

  /* ラジオは詰める */
  body.page-recruit .fField--inline{
    gap: 14px;
  }
  
  body.page-recruit .recruitSection--flow{
    padding: 0 15%;
  }
  
}


.mapWrap{
  max-width: 720px;
  margin: 10px auto 18px;
  position: relative;
}

.gmap{
  width: 100%;
  height: 260px;         /* 好きに */
  overflow: hidden;
  background: #cfcfcf;   /* 読み込み前の色 */
}

/* 任意：右下に小リンク */
.mapOpen{
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 12px;
  background: rgba(0,0,0,.75);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
}


/* iOS/Androidの内側丸み対策 */
.appForm select::-ms-expand{ display:none; }

/* selectの見た目を統一（Android Chromeの青アクセント抑制） */
.appForm select{
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0 !important; /* 角を統一（必要なら数値変更） */
  color: var(--text);
  background-color: #fff;
}

/* 未選択（value=""）のときだけグレーにする：required有無でブレない */
.appForm select{
  color: var(--text);
}
.appForm select.has-placeholder{
  color: rgba(31,26,22,.45);
}
.appForm select.has-placeholder:not([data-empty="1"]){
  color: var(--text);
}
/* option自体は通常色 */
.appForm option{
  color: var(--text);
}

/* iOS/Android対策でフォーカスリングを統一（青枠を弱める） */
.appForm select:focus{
  outline: none;
  border-color: rgba(0,0,0,.35);
  box-shadow: 0 0 0 4px rgba(0,0,0,.06);
}
/* Recruit form submit */
.page-recruit .fRow--submit{
  margin-top: 14px;
  display:flex;
  justify-content:center;
}

.page-recruit .entrySubmit{
  min-width: 260px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  background: #000;
  color: #fff;
  cursor: pointer;
  letter-spacing: .10em;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.page-recruit .entrySubmit span::before{
  content: "＞";
  display:inline-block;
  margin-right: 10px;
}

/* =========================
   Survey page (scoped)
   ========================= */
body.page-survey{
  background:#fff;
  color: var(--text);
  font-family: var(--font);
  letter-spacing: .02em;
}

/* fixedTop をアンケートでは常時表示（ふわっと制御を無効化） */
body.page-survey .fixedTop{
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}
body.page-survey .fixedTop--survey{
  justify-content: flex-start;
}
body.page-survey .fixedTop--survey .brandMini{
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
}

/* v8.css の .wrap と衝突しないように下余白だけ調整 */
body.page-survey .wrap--survey{
  padding-top: 96px; /* fixedTop 分 */
  padding-bottom: 80px;
}

/* hero（アンケート用に新設：v8の.heroとは別物として扱う） */
body.page-survey .surveyHero{
  margin: 0 auto;
  max-width: 920px;
  padding: 22px 22px;
  border-radius: var(--radius2);
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  box-shadow: var(--shadow);
}
body.page-survey .surveyHero h1{
  margin:0;
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: .02em;
}
body.page-survey .surveyHero .lead{
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.9;
}

/* grid / cards */
body.page-survey .surveyGrid{
  margin-top: 18px;
  display:grid;
  gap: 14px;
}

body.page-survey .card{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius2);
  background: #fff;
  box-shadow: var(--shadow);
  overflow:hidden;
}

body.page-survey .card-head{
  padding: 18px 18px 12px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 10px;
}
body.page-survey .card-head h2{
  margin:0;
  font-size: 16px;
  letter-spacing: .02em;
}
body.page-survey .card-head p{
  margin:6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  max-width: 70ch;
}

body.page-survey .section-body{
  padding: 16px 18px 18px;
  display:grid;
  gap: 14px;
}

/* question box */
body.page-survey .q{
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.85);
}
body.page-survey .q-top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
body.page-survey .q label.title{
  font-weight: 700;
  letter-spacing: .01em;
  display:block;
  margin:0;
}

/* “必須” はv8トーン（赤くしない） */
body.page-survey .req{
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.06);
  color: rgba(0,0,0,.78);
  white-space: nowrap;
  letter-spacing:.10em;
}
body.page-survey .pill{
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.85);
  color: rgba(0,0,0,.60);
  white-space: nowrap;
}

/* rating */
body.page-survey .rating{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
body.page-survey .rating input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
body.page-survey .rate{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 12px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  cursor: pointer;
  user-select:none;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  min-height: 44px;
  font-size: 13px;
  color: rgba(31,26,22,.84);
}
body.page-survey .rate:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
}
body.page-survey .rating input:checked + .rate{
  background:#000;
  color:#fff;
  border-color:#000;
  font-weight:700;
  box-shadow: 0 14px 26px rgba(0,0,0,.14);
}
body.page-survey .rating input:focus + .rate{
  outline: none;
  box-shadow: 0 0 0 4px rgba(0,0,0,.06);
}

body.page-survey .scale{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(31,26,22,.55);
}

/* inputs */
body.page-survey textarea,
body.page-survey select,
body.page-survey input[type="text"],
body.page-survey input[type="email"]{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.14);
  background:#fff;
  color: var(--text);
  outline:none;
}
body.page-survey textarea{
  min-height: 140px;
  padding: 14px;
  resize: vertical;
}
body.page-survey select,
body.page-survey input[type="text"],
body.page-survey input[type="email"]{
  height: 44px;
  padding: 0 14px;
}
body.page-survey textarea:focus,
body.page-survey select:focus,
body.page-survey input:focus{
  border-color: rgba(0,0,0,.35);
  box-shadow: 0 0 0 4px rgba(0,0,0,.06);
}

/* actions / buttons：v8のghostBtn寄せ */
body.page-survey .actions{
  margin-top: 16px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items:center;
  justify-content:center;
}
body.page-survey .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor:pointer;
  letter-spacing:.08em;
  padding: 0 18px;
}
body.page-survey .btn.primary{
  background:#000;
  color:#fff;
  border-color:#000;
}
body.page-survey .btn.primary::before{
  content:"＞";
  display:inline-block;
  margin-right: 10px;
}

/* エラー：赤じゃなく“黒系の注意”で統一 */
body.page-survey .q.is-error{
  border-color: rgba(0,0,0,.28);
  box-shadow: 0 0 0 4px rgba(0,0,0,.06);
}

/* responsive */
@media (max-width:760px){
  body.page-survey .wrap--survey{ padding-top: 86px; }
  body.page-survey .card-head{ padding: 16px 16px 12px; }
  body.page-survey .section-body{ padding: 14px 16px 16px; }
  body.page-survey .rate{ padding: 10px 8px; font-size: 12px; }
}

body.page-survey .surveyHeader{
  padding: 18px 0 6px;
}
body.page-survey .wrap--surveyHeader{
  display:flex;
  justify-content:flex-start;
}
body.page-survey .surveyHeader__brand{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #000;
  display:grid;
  place-items:center;
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
}
body.page-survey .surveyHeader__brand img{
  width: 26px;
  height: auto;
}
body.page-survey .wrap--survey{
  padding-top: 18px; /* fixedTop用の余白を消す */
}
