* {
  margin: 0;
  padding: 0;
  box-sizing:border-box;
}
body {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}
body.noscroll {
  overflow: hidden;
}
a {
  text-decoration: none;
  color: inherit;
  letter-spacing: 1.2px;
}
a.initial {
  text-decoration: underline;
  color: initial;
}

li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
p,
span {
  letter-spacing: 1.2px;
  line-height: 1.7;
}
.sp-br {
  display: none;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.img-status {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
table {
  width: 100%;
  table-layout: fixed;
  word-break: break-word;
  word-wrap: break-word;
}
.inline {
  display: inline-block;
}
.bg-blue {
  background: linear-gradient(160deg, #0ca4a7 0%, #324b57 100%);
}
/*search-open*/
:root {
  --zn-navy: #2e406b;
  --zn-white: #ffffff;
  --zn-glass: rgba(255, 255, 255, 0.95); /* 視認性のため不透明度アップ */
  --zn-border: rgba(46, 64, 107, 0.15);
  --zn-font-serif: "Hedvig Letters Serif", serif;
  --zn-font-tech: "Orbitron", sans-serif;
  --zn-font-jp: "Zen Old Mincho", serif;
}

/* コンテナ */
.floating-panel-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* =========================================
   1. トリガーボタン (修正: ソリッドな挙動 & 完全中央配置)
   ========================================= */
.monolith-trigger {
  width: 72px;
  height: 72px;
  background: var(--zn-navy);
  color: var(--zn-white);
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(46, 64, 107, 0.3);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-radius 0.3s ease; /* 色反転のみ */
  position: relative;
  z-index: 20;
}

/* Hover: 色反転のみ (動きなし) */
@media (hover: hover) {
  .monolith-trigger:hover {
    background: var(--zn-white);
    color: var(--zn-navy);
    border-color: var(--zn-navy);
  }
}

/* Active: 開いた状態 */
.floating-panel-container.active .monolith-trigger {
  background: var(--zn-white);
  color: var(--zn-navy);
  box-shadow: none;
  border-radius: 0 0 4px 4px;
  border-top: 1px solid var(--zn-border);
}

/* --- アイコン制御 (完全中央配置) --- */
.trigger-icon-box {
  width: 24px;
  height: 24px;
  position: relative;
  margin-bottom: 2px;
}
.bar {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%); /* 左右中央 */
}
/* ハンバーガー状態 */
.bar-1 {
  top: 6px;
}
.bar-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}
.bar-3 {
  bottom: 6px;
}

/* Active: バツ印 (1pxもずれないようにtop/left 50%指定) */
.floating-panel-container.active .bar-1 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 28px; /* 少し長くして綺麗なバツに */
}
.floating-panel-container.active .bar-2 {
  opacity: 0;
}
.floating-panel-container.active .bar-3 {
  top: 50%;
  left: 50%;
  bottom: auto;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 28px;
}

/* --- テキスト制御 (MENU / CLOSE) --- */
.trigger-text-box {
  position: relative;
  height: 12px;
  width: 100%;
  overflow: hidden;
}
.label-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: var(--zn-font-tech);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: all 0.4s ease;
}
.label-menu {
  opacity: 1;
  transform: translateY(0);
}
.label-close {
  opacity: 0;
  transform: translateY(100%);
}

/* Active時: MENUを消してCLOSEを出す */
.floating-panel-container.active .label-menu {
  opacity: 0;
  transform: translateY(-100%);
}
.floating-panel-container.active .label-close {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   2. メニューパネル (L字展開 & 求人検索)
   ========================================= */
.monolith-nav {
  width: 72px; /* 初期幅 */
  max-height: 0; /* 初期高さ */
  opacity: 0;
  background: var(--zn-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transform-origin: bottom right; /* 右下起点 */

  /* 閉じるアニメーション (幅縮小 -> 高さ縮小) */
  transition:
    width 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s,
    max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease 0.3s;
}

/* Active: 開くアニメーション (高さ伸長 -> 左へ幅拡大) */
.floating-panel-container.active .monolith-nav {
  /* ★PC: 480px, スマホ: 画面幅いっぱい(余白引く)の小さい方 */
  width: min(480px, calc(100vw - 4rem));
  max-height: min(700px, 80dvh); /* 画面からはみ出さない制限 */
  opacity: 1;

  transition:
    max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    /* まず縦に伸びる */ width 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s,
    /* 遅れて横に広がる */ opacity 0.2s ease;
}

/* --- ★特別枠: 求人検索モジュール --- */
.special-search-module {
  padding: 20px;
  border-bottom: 1px solid var(--zn-border);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.floating-panel-container.active .special-search-module {
  opacity: 1;
	box-sizing:border-box;
  transition-delay: 0.6s; /* パネルが広がりきってから表示 */
}

.search-action-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--zn-navy);
  color: var(--zn-white);
  border: none;
  border-radius: 4px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(46, 64, 107, 0.2);
}
.search-action-btn:hover {
  background: #3a4e7d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(46, 64, 107, 0.3);
}

.search-icon {
  display: flex;
  align-items: center;
  margin-right: 15px;
}
.search-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: auto;
}
.search-text .jp {
  font-family: var(--zn-font-jp);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}
.search-text .en {
  font-family: var(--zn-font-tech);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
.search-arrow {
  font-family: var(--zn-font-tech);
  font-weight: 700;
  transition: transform 0.3s ease;
}
.search-action-btn:hover .search-arrow {
  transform: translateX(5px);
}

/* --- 通常リストエリア --- */
.monolith-list {
  list-style: none;
  padding: 20px 0;
  margin: 0;
  position: relative;
  /* スマホではみ出る場合はスクロールさせる */
  overflow-y: auto;
  max-height: calc(80dvh - 100px); /* 検索ボタン分を引く */
  opacity: 0;
  transition: opacity 0.3s ease;
}
.floating-panel-container.active .monolith-list {
  opacity: 1;
  transition-delay: 0.7s;
}

/* 装飾ライン */
.connection-line {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 36px;
  width: 1px;
  background: var(--zn-border);
  z-index: 0;
}

/* アイテム */
.monolith-item {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(15px);
  transition: all 0.4s ease;
}
.floating-panel-container.active .monolith-item {
  opacity: 1;
  transform: translateX(0);
}
/* Stagger (順番に表示) */
.floating-panel-container.active .monolith-item:nth-child(2) {
  transition-delay: 0.75s;
}
.floating-panel-container.active .monolith-item:nth-child(3) {
  transition-delay: 0.8s;
}
.floating-panel-container.active .monolith-item:nth-child(4) {
  transition-delay: 0.85s;
}
.floating-panel-container.active .monolith-item:nth-child(5) {
  transition-delay: 0.9s;
}
.floating-panel-container.active .monolith-item:nth-child(6) {
  transition-delay: 0.95s;
}
.floating-panel-container.active .monolith-item:nth-child(7) {
  transition-delay: 1s;
}
.floating-panel-container.active .monolith-item:nth-child(8) {
  transition-delay: 1.05s;
}

/* リンクスタイル */
.monolith-item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 14px 30px 14px 20px;
  color: var(--zn-navy);
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}
@media (hover: hover) {
  .monolith-item a:hover {
    background: rgba(46, 64, 107, 0.06);
    padding-left: 25px;
  }
  .monolith-item a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--zn-navy);
    transform: scaleY(0);
    transition: transform 0.3s ease;
  }
  .monolith-item a:hover::before {
    transform: scaleY(1);
  }

  /* --- 通常リストエリア --- */
  .monolith-list {
    padding: 10px 0;
  }
}

.monolith-item .num {
  font-family: var(--zn-font-tech);
  font-size: 0.8rem;
  color: rgba(46, 64, 107, 0.5);
  width: 32px;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  margin-right: 20px;
  border-radius: 2px;
  flex-shrink: 0;
}
.text-group {
  display: flex;
  align-items: baseline;
}
.monolith-item .text {
  font-family: var(--zn-font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-right: 10px;
}
.monolith-item .divider {
  color: rgba(46, 64, 107, 0.3);
  font-size: 0.9rem;
  margin-right: 10px;
}
.monolith-item .jp {
  font-family: var(--zn-font-jp);
  font-size: 0.9rem;
  color: rgba(46, 64, 107, 0.8);
}

/* ハイライト項目 */
.monolith-item.highlight a {
  background: rgba(46, 64, 107, 0.03);
}

/* バックドロップ */
.monolith-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(46, 64, 107, 0.3);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(2px);
}
.monolith-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* =========================================
   スマホ対応 (画面内収容・L字アニメーション維持)
   ========================================= */
@media (max-width: 768px) {
  .floating-panel-container {
    bottom: 1rem;
    right: 1rem;
  }

  .floating-panel-container.active .monolith-nav {
    /* 画面幅いっぱい、ただし左右余白は残す */
    width: calc(100vw - 2rem);
    /* 高さは80dvhまで（アドレスバー考慮） */
    max-height: 80dvh;
  }

  .search-action-btn {
    padding: 14px;
  }
  .search-text .jp {
    font-size: 0.9rem;
  }

  /* スマホでは改行を許可（念のため） */
  .text-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .monolith-item .divider {
    display: none;
  }
  .monolith-item .jp {
    margin-left: 0;
    font-size: 0.8rem;
    margin-top: 0;
  }
  .monolith-item a {
    white-space: normal;
    padding: 5px 15px;
  }

  .connection-line {
    left: 35px;
  }
  .special-search-module {
    padding: 10px;
  }
}
@media (max-width: 480px) {
.floating-panel-container {
    bottom: 0.5rem;
    right: 1rem;
  }
.monolith-list{
	height:90dvh;
	}
.floating-panel-container.active .monolith-nav{
	max-height: 95dvh;
}
	.monolith-item .jp{
		line-height:1.3;
	}
}
/* =========================================
  アニメーション時の縦伸び防止
   ========================================= */

/* 1. 中身の要素は、親の幅が狭くても「つぶれず」に幅広のまま維持する */
.monolith-nav > * {
  /* スマホ等で崩れない程度の幅、かつ改行しない幅 */
  min-width: 300px;
}

/* PC（769px以上）では、展開時の幅（480px）に合わせておく */
@media (min-width: 769px) {
  .monolith-nav > * {
    min-width: 480px;
  }
}

/* 2. 念のため検索ボタンのテキストも改行禁止にする */
.search-text {
  white-space: nowrap;
}
/* =============================================
   ZeroNexa Final Styles v18 (Responsive Fix)
   ============================================= */
:root {
  --zn-navy: #2e406b;
  --zn-silver: #f0f0f0;
  --zn-white: #ffffff;
  --zn-font-serif: "Hedvig Letters Serif", serif;
  --zn-font-tech: "Orbitron", sans-serif;
  --zn-font-jp: "Noto Sans JP", sans-serif;
  --zn-font-jp: "Zen Old Mincho", serif;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  background: transparent;
}

/* ▼ 背景固定レイヤー ▼ */
#global-silver-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -2;
  background: radial-gradient(
    circle at 50% 40%,
    #ffffff 0%,
    #f0f0f0 40%,
    #d0d0d0 80%,
    #999999 100%
  );
}
#bg-mesh-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  mix-blend-mode: multiply;
}

/* MVコンテナ */
.zn-celestial-mv {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 600px;
  background: transparent;
  overflow: hidden;
  color: var(--zn-navy);
}

/* レイアウト */
.mv-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 10;
  pointer-events: none;
}

/* 左カラム (PC) */
.mv-left-col {
  width: 55%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8%;
  padding-right: 2%;
  box-sizing: border-box;
}

/* 右カラム (PC) */
.mv-right-col {
  width: 45%;
  height: 100%;
  position: relative;
  overflow: visible;
}
/* 3Dキャンバス (PC) */
#zn-three-canvas {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(10%); /* PCでは少し右に寄せる */
  opacity: 0;
}

/* --- コンテンツデザイン --- */
.content-anchor-wrap {
  border-left: 6px solid var(--zn-navy);
  padding-left: 40px;
  opacity: 0;
}
.mask-wrap {
  overflow: hidden;
}
.main-mask {
  margin-bottom: 20px;
}
.js-text-reveal {
  display: block;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.mv-main-title {
  font-family: var(--zn-font-serif);
  margin: 0;
  font-size: clamp(3.5rem, 6vw, 7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 5px 15px rgba(46, 64, 107, 0.2);
}
.en-sub-wrap {
  margin-bottom: 40px;
}
.mv-sub-en {
  font-family: var(--zn-font-tech);
  margin: 0 0 5px;
  font-size: clamp(1rem, 1.8vw, 2rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}
.jp-desc-wrap {
  margin-top: 20px;
}
.mv-desc-jp {
  font-family: var(--zn-font-jp);
  margin: 0 0 8px;
  font-size: clamp(0.9rem, 1.1vw, 1.2rem);
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.8;
}

/* --- ★レスポンシブ対応★ --- */

/* タブレット & スマホ (1024px以下ですべて縦並びにする) */
@media (max-width: 1024px) {
  .mv-container {
    flex-direction: column-reverse; /* 画像上、文字下 */
    justify-content: center;
  }

  /* 左カラム（文字） */
  .mv-left-col {
    width: 100%;
    height: auto;
    flex-grow: 1; /* 残りのスペースを埋める */
    padding: 20px 5% 80px;
    justify-content: flex-start; /* 上詰めで配置 */
    align-items: center;
    z-index: 20;
  }

  /* 右カラム（3D） */
  .mv-right-col {
    width: 90%; /* ★ご要望: 横幅90% */
    height: 45%; /* 画面の45%を画像エリアに */
    min-height: 320px; /* 最小高さを確保 */
    margin: 0 auto; /* 中央寄せ */
    overflow: visible;
  }

  /* 3Dキャンバスの位置リセット */
  #zn-three-canvas {
    transform: translateX(0);
    /* 3Dが文字に被らないように調整 */
  }

  /* 文字デザイン調整 */
  .content-anchor-wrap {
    border-left: none;
    border-top: 4px solid var(--zn-navy);
    padding-left: 0;
    padding-top: 30px;
    text-align: center;
  }
  .mv-main-title {
    font-size: 4rem;
  }
  .en-sub-wrap {
    margin-bottom: 25px;
  }
  .jp-desc-wrap {
    margin-top: 15px;
  }
}

/* スマホ (768px以下) */
@media (max-width: 768px) {
  .mv-right-col {
    height: 40%; /* 少し狭める */
    min-height: 280px;
  }
  .mv-main-title {
    font-size: 3.2rem;
  }
  .mv-sub-en {
    font-size: 1.1rem;
  }
  .mv-desc-jp {
    font-size: 0.9rem;
  }
}
/*main*/
section {
  padding: 4rem 0;
}
.section-titlewrap.vertical {
  writing-mode: vertical-lr;
}
.section-title {
  font-size: 1.75rem;
}
.section-title:before {
  content: attr(data-en);
  display: block;
  text-transform: capitalize;
  font-family: "Allison", cursive;
  font-weight: normal;
  font-size: 8rem;
  line-height: 1;
  color: #256972;
  letter-spacing: 3px;
}
.bg-blue .section-title {
  color: #fff;
}
.bg-blue .section-title:before {
  color: #f7da9c;
}
main {
  width: 100%;
  margin: 0 auto;
}
.main-content {
  width: 100%;
}
/* =============================================
   ZeroNexa Area Search v5 (Pinpoint & Compact)
   ============================================= */
:root {
  --zn-navy: #2e406b;
  --zn-dark-navy: #151d2f;
  --zn-gold: #bf8d23;
  --zn-white: #ffffff;
  --zn-gray-bg: #f4f6f8;
  --zn-border: #dbe0e6;
  --zn-font-serif: "Hedvig Letters Serif", serif;
  --zn-font-tech: "Orbitron", sans-serif;
  --zn-font-jp: "Zen Old Mincho", serif;
}

.nexus-pinpoint-section {
  padding: 100px 0 160px;
  position: relative;
  overflow: hidden;
  color: var(--zn-navy);
}

/* --- 背景アニメーション: "Location Pulse" (地図検索感) --- */
.pinpoint-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(#e0e5eb 1px, transparent 1px),
    linear-gradient(90deg, #e0e5eb 1px, transparent 1px);
  background-size: 50px 50px;
}
/* 波紋 (GPS探索のような動き) */
.pulse-ring {
  position: absolute;
  border: 1px solid var(--zn-navy);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: pulseWave 8s linear infinite;
}
.ring-1 {
  top: 30%;
  left: 20%;
  width: 0;
  height: 0;
  animation-delay: 0s;
}
.ring-2 {
  top: 70%;
  left: 80%;
  width: 0;
  height: 0;
  animation-delay: 3s;
}
.ring-3 {
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  animation-delay: 5s;
}

@keyframes pulseWave {
  0% {
    width: 0;
    height: 0;
    opacity: 0.5;
    border-width: 2px;
  }
  100% {
    width: 600px;
    height: 600px;
    opacity: 0;
    border-width: 0px;
  }
}

.nexus-pinpoint-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* --- タイトル (Featureと統一) --- */
.stream-title-area {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.title-inner {
  display: flex;
  flex-direction: column;
}
.section-en {
  font-family: var(--zn-font-serif);
  font-size: 3.5rem;
  color: var(--zn-navy);
  line-height: 1;
  margin: 0;
  letter-spacing: 0.05em;
}
.section-jp {
  font-family: var(--zn-font-jp);
  font-size: 1rem;
  color: #888;
  letter-spacing: 0.1em;
  margin-top: 5px;
}
.title-line {
  flex-grow: 1;
  height: 1px;
  background: rgba(46, 64, 107, 0.2);
  margin-left: 30px;
  margin-bottom: 10px;
  position: relative;
}
.title-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  background: var(--zn-navy);
}

/* --- エリアセレクター (メイン画面) --- */
.atlas-selector-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(46, 64, 107, 0.08);
}

.region-tabs-simple {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  justify-content: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.simple-tab {
  background: transparent;
  border: 1px solid transparent;
  font-family: var(--zn-font-jp);
  font-weight: 700;
  font-size: 1rem;
  color: #888;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
}
.simple-tab:hover {
  color: var(--zn-navy);
  background: #f0f0f0;
}
.simple-tab.active {
  background: var(--zn-navy);
  color: #fff;
  box-shadow: 0 5px 15px rgba(46, 64, 107, 0.2);
}

.pref-panels-wrapper {
  min-height: 200px;
}
.simple-panel {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  animation: fadeIn 0.4s ease;
}
.simple-panel.active {
  display: grid;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.simple-pref-btn {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 16px 0;
  text-align: center;
  font-family: var(--zn-font-jp);
  font-weight: 700;
  font-size: 1rem;
  color: var(--zn-navy);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}
.simple-pref-btn:hover {
  background: var(--zn-navy);
  color: #fff;
  border-color: var(--zn-navy);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 64, 107, 0.2);
}

/* =============================================
   ★ Modal (Compact & Responsive) ★
   ============================================= */
.pinpoint-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.pinpoint-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.pinpoint-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 50, 0.7);
  backdrop-filter: blur(5px);
}

.pinpoint-modal-window {
  position: relative;
  /* PCでは横長、高さ固定 */
  width: 95%;
  max-width: 1000px;
  height: 85vh;
  max-height: 750px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transform: scale(0.98);
  transition: transform 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pinpoint-modal.active .pinpoint-modal-window {
  transform: scale(1);
}

/* 閉じるボタン */
.pinpoint-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 20;
  background: var(--zn-navy);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.pinpoint-close-btn:hover {
  background: var(--zn-gold);
}
.close-icon {
  font-size: 1.5rem;
  line-height: 1;
}

/* --- 2カラムレイアウト --- */
.pinpoint-dashboard-layout {
  display: flex;
  width: 100%;
  height: 100%;
}
.pinpoint-modal-inner {
  width: 100%;
  height: 100%;
}

/* === 左サイドバー (固定情報) === */
.pinpoint-sidebar {
  width: 280px;
  flex-shrink: 0;
  background: #fdfdfd;
  border-right: 1px solid #eee;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  box-sizing:border-box;
}
.pref-label {
  font-family: var(--zn-font-tech);
  font-size: 0.8rem;
  color: var(--zn-gold);
  letter-spacing: 0.1em;
}
.sidebar-pref-title {
  font-family: var(--zn-font-jp);
  font-size: 2.5rem;
  margin: 10px 0 30px;
  line-height: 1;
  color: var(--zn-navy);
}

.sidebar-desc {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 15px;
}

.btn-whole-search-compact {
  width: 100%;
  padding: 15px;
  background: var(--zn-navy);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: var(--zn-font-jp);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
  box-shadow: 0 5px 10px rgba(46, 64, 107, 0.2);
}
.btn-whole-search-compact:hover {
  background: #1a253a;
  transform: translateY(-2px);
}

/* === 右メインコンテンツ (スクロール) === */
.pinpoint-main-content {
  flex-grow: 1;
  background: #fff;
  display: grid;
  grid-template-rows: auto 1fr auto; /* ヘッダー・スクロール・フッター */
  height: 100%;
  overflow: hidden;
}

.content-header {
  padding: 25px 40px;
  border-bottom: 1px solid #eee;
  background: #fff;
}
.content-title {
  font-size: 1.1rem;
  color: var(--zn-navy);
  margin: 0;
  font-family: var(--zn-font-jp);
}

/* ★スクロールエリア (区が大きくならない工夫) ★ */
.content-scroll-compact {
  overflow-y: auto;
  padding: 30px 40px;
  scrollbar-width: thin;
  scrollbar-color: var(--zn-navy) #eee;
}

/* グループ見出し */
.city-group-title {
  font-family: var(--zn-font-jp);
  font-size: 0.95rem;
  font-weight: 700;
  color: #555;
  margin: 0 0 10px;
  padding-left: 10px;
  border-left: 3px solid var(--zn-navy);
}
.city-group-wrapper {
  margin-bottom: 30px;
}

/* ★ コンパクトグリッド (区が巨大化しない設定) ★ */
.compact-city-grid {
  display: grid;
  /* 最小幅を小さく(100px)して、詰め込む */
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
}

.compact-city-grid label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 5px; /* パディングを小さく */
  border: 1px solid #e0e0e0;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.85rem; /* 文字サイズも少し小さく */
  transition: all 0.1s;
  text-align: center;
}
.compact-city-grid label:hover {
  border-color: var(--zn-navy);
  background: #f4f6fa;
}
.compact-city-grid label:has(input:checked) {
  background: var(--zn-navy);
  color: #fff;
  border-color: var(--zn-navy);
}
.compact-city-grid input {
  /* チェックボックス自体は消して、ボタン全体で表現 */
  display: none;
}

/* フッター */
.content-footer {
  padding: 20px 40px;
  border-top: 1px solid #eee;
  background: #fff;
  z-index: 5;
}
.btn-detail-search-compact {
  width: 100%;
  padding: 15px;
  background: #fff;
  border: 2px solid var(--zn-navy);
  color: var(--zn-navy);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
}
.btn-detail-search-compact:hover {
  background: var(--zn-navy);
  color: #fff;
}
/* --- スマホ対応 (完全レスポンシブ・アプリ風UI) --- */
@media (max-width: 900px) {
  /* === 1. メイン画面: 地方タブ (一覧性を重視) === */
  .region-tabs-simple {
    display: grid;
    /* 3列で表示 (6エリアが2行で綺麗に収まる) */
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 0;
    overflow: visible; /* スクロールさせない */
    justify-content: stretch;
  }

  .simple-tab {
    width: 100%;
    text-align: center;
    padding: 10px 4px; /* 余白を詰める */
    font-size: 0.8rem; /* 文字サイズ調整 */
    white-space: nowrap;
    /* 文字が溢れる場合は小さくする処理 */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* === 2. 都道府県パネル (2列固定 & コンパクト化) === */
  .simple-panel {
    /* ★ご要望: 2列表示 */
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .simple-pref-btn {
    padding: 14px 0;
    font-size: 0.9rem; /* ★ご要望: 文字を少し小さく */
  }

  /* === 3. モーダルウィンドウ調整 === */
  .pinpoint-modal-window {
    width: 100%;
    height: 100vh;
    max-height: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }

  .pinpoint-modal-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
  }

  .pinpoint-dashboard-layout {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
  }

  /* === 上部ヘッダー (旧サイドバー) === */
  .pinpoint-sidebar {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    /* 上に余白を大きくとる (閉じるボタン回避) */
    padding: 60px 20px 20px;
    background: var(--zn-navy);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border-right: none;
    position: relative;
    z-index: 10;
  }

  /* 県名タイトル */
  .sidebar-pref-title {
    font-size: 1.6rem;
    margin: 0;
    color: #fff;
    line-height: 1.2;
    text-align: center;
  }

  .pref-label,
  .sidebar-desc,
  .sidebar-line {
    display: none;
  }

  /* 全域検索ボタン */
  .sidebar-action-area {
    width: 100%;
    max-width: 320px;
  }
  .btn-whole-search-compact {
    width: 100%;
    padding: 12px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    justify-content: center;
  }
  .btn-whole-search-compact:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: none;
  }
  .btn-whole-search-compact .arrow {
    display: none;
  }

  /* === 閉じるボタン === */
  .pinpoint-close-btn {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    z-index: 50;
    backdrop-filter: blur(4px);
  }
  .pinpoint-close-btn .close-icon {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
  }

  /* === メインコンテンツ (下部エリア) === */
  .pinpoint-main-content {
    flex-grow: 1;
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    margin-top: -10px;
    position: relative;
    z-index: 20;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  }

  .content-header {
    padding: 20px 20px 10px;
    background: #fff;
    flex-shrink: 0;
    text-align: center;
    border-bottom: 1px solid #eee;
  }
  .content-title {
    font-size: 1rem;
    margin: 0;
  }

  /* === スクロールエリア === */
  .content-scroll-compact {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px 15px;
    background: #fdfdfd;
    -webkit-overflow-scrolling: touch;
  }

  /* グリッド調整 (市区町村) */
  .compact-city-grid {
    grid-template-columns: repeat(2, 1fr); /* 2列 */
    gap: 8px;
  }
  .compact-city-grid label {
    font-size: 0.85rem;
    padding: 12px 5px;
    min-height: 44px;
  }

  /* フッター */
  .content-footer {
    padding: 15px 20px 30px;
    flex-shrink: 0;
    background: #fff;
    border-top: 1px solid #eee;
  }
  .btn-detail-search-compact {
    padding: 14px;
    font-size: 1rem;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .atlas-selector-panel {
    padding: 30px 15px;
  }
.compact-city-grid label {
    padding: 8px 5px;
    min-height: 22px;
  }
}
/* =============================================
   ZeroNexa Search Modal - TRUE MINIMAL FIX
   (以前の検索モーダル関連のCSSを全て消して、これだけを貼ってください)
   ============================================= */

/* --- 1. モーダル本体 --- */
.detailedsearch-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 25, 43, 0.9); /* 背景をしっかり隠す */
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
.detailedsearch-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.detailedsearch-modal {
  position: fixed;
  top: 0;
  right: -100px;
  width: 500px;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}
.detailedsearch-modal.is-active {
  transform: translateX(-100px);
}

/* --- 2. CLOSEボタンエリア (header.phpの構造に対応) --- */
.modal-control {
  width: 100%;
  height: 60px;
  background: #0e192b; /* Navy */
  display: flex !important; /* 強制表示 */
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px;
  flex-shrink: 0;
}

.modal-close-trigger {
  display: flex !important;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: transparent;
  border: none;
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 10px;
}
.modal-close-trigger:hover {
  opacity: 0.7;
}

/* 閉じるアイコン */
.modal-close-trigger .close-icon {
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
}
.modal-close-trigger .close-icon::before,
.modal-close-trigger .close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-close-trigger .close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-close-trigger .close-text {
  display: inline-block;
  line-height: 1;
}

/* --- 3. フォームエリア --- */
.detailedsearch-contents {
  flex-grow: 1;
  overflow-y: auto;
  padding: 40px 30px;
}

.search-form-header {
  margin-bottom: 30px;
  border-bottom: 2px solid #eee;
  padding-bottom: 15px;
}
.search-form-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.6rem;
  color: #0e192b;
  margin: 0;
  line-height: 1.2;
}
.search-form-subtitle {
  font-size: 0.75rem;
  color: #999;
  margin-top: 5px;
}

/* グリッド・レイアウト */
.search-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.search-select-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ラベル */
.search-label {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  color: #0e192b;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.search-label .label-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.7rem;
  color: #888;
  font-weight: normal;
  margin-left: 8px;
}

/* --- 4. 入力フォーム (バグ修正版) --- */
/* !importantでテーマのスタイルを強制上書きし、枠線を表示させる */
.nexus-input-field,
select {
  width: 100% !important;
  height: 50px !important;
  padding: 0 15px !important;
  background-color: #f8f8f8 !important; /* 薄いグレー */
  border: 1px solid #ccc !important; /* 物理的な枠線 */
  border-radius: 0 !important; /* 角丸なし */
  color: #333 !important;
  font-size: 1rem !important;
  appearance: none !important; /* OS標準スタイル削除 */
  box-shadow: none !important;
  box-sizing: border-box !important;
}

/* フォーカス時はネイビーの枠線 */
.nexus-input-field:focus,
select:focus {
  background-color: #fff !important;
  border-color: #0e192b !important;
  outline: none !important;
}

/* スマホ用矢印 */
select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 15px center !important;
  background-size: 12px !important;
  padding-right: 40px !important;
}

/* --- 5. 検索ボタン (重複矢印削除・シンプル化) --- */
.nexus-search-submit {
  width: 100%;
  margin-top: 40px;
  background: #0e192b; /* Navy */
  color: #fff;
  border: none;
  border-radius: 0; /* 角丸なし */
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}
.nexus-search-submit:hover {
  background: #bf8d23; /* Gold */
}

/* ボタン内のテキスト配置 */
.nexus-search-submit .btn-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.nexus-search-submit .btn-en {
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.nexus-search-submit .btn-jp {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* HTML側にある矢印(.btn-arrow)だけを表示 */
.nexus-search-submit .btn-arrow {
  font-family: "Orbitron", sans-serif;
  font-size: 1.2rem;
  margin-left: 10px;
}
/* 【重要】CSSで追加していた矢印を削除 */
.nexus-search-submit::after {
  content: none !important;
  display: none !important;
}

/* --- 6. タグ・キーワード (フラットデザイン化) --- */
.search-footer-info {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}
.suggestion-hd {
  font-family: "Orbitron", sans-serif;
  font-size: 0.8rem;
  color: #aaa;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

/* リスト設定 */
.suggestion-content ul,
.suggestion-content {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* タグ本体：枠線をなくし、背景色だけのブロックにする */
.suggestion-content a,
.suggestion-content li {
  display: block;
  font-size: 0.8rem;
  color: #333;
  background: #f2f2f2; /* 薄いグレーの塊 */
  border: none !important; /* 枠線を完全に消す */
  padding: 8px 16px;
  text-decoration: none;
  transition: 0.2s;
  border-radius: 2px; /* わずかな角丸 */
}

/* ホバー時：反転 */
.suggestion-content a:hover,
.suggestion-content li:hover {
  background: #0e192b; /* Navy */
  color: #fff;
}

/* 人気キーワード（金色系） */
.suggestion-content.tags li {
  padding: 0;
}
.suggestion-content.tags a {
  background: #f2f2f2; /* 薄いゴールド背景 */
  color: #8c6b1d;
}
.suggestion-content.tags a:hover,
.suggestion-content.tags li:hover {
  background: #0e192b; /* Navy */
  color: #fff;
}

/* --- 7. スマホ調整 --- */
@media (max-width: 768px) {
  .detailedsearch-modal {
    width: 100%;
  }
  .search-select-pair {
    grid-template-columns: 1fr;
  }
  .detailedsearch-contents {
    padding: 30px 20px;
    padding-bottom: 100px; /* 下部余白確保 */
  }
}
/*top useful*/
.top-useful {
  margin: 3rem auto 4rem;
}
.useful-item-lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.useful-item {
  width: calc((100% - 3rem) / 3);
  margin: 0.5rem;
}
.useful-item a {
  width: 100%;
  height: 100%;
}
.useful-item-img {
  width: 100%;
  aspect-ratio: 1.5/1;
  padding: 0.5rem;
}
.useful-item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.useful-item-textwrap {
  width: 100%;
  padding: 0.5rem;
}
.useful-item-title {
  font-size: 1rem;
}

/*more*/
.more-btn {
  width: fit-content;
  display: inline-block;
  margin: 2rem auto;
  display: flex;
  align-items: center;
  color: #256972;
  background-color: #fff;
  padding: 0.75rem 2rem;
  border: 1px solid #256972;
  text-align: center;
}
/* =============================================
   ZERO BLOG (Card List Style)
   ============================================= */
:root {
  --zn-navy: #2e406b;
  --zn-gold: #bf8d23;
  --zn-white: #ffffff;
  --zn-shadow: rgba(46, 64, 107, 0.1);
}

.zero-blog-section {
  /* 背景透過 */
  background-color: transparent;
  padding: 100px 0;

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.zero-blog-container {
  width: 90%;
  max-width: 1000px;
  height: 85%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

/* ヘッダー */
.blog-header-row {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--zn-navy); /* 区切り線 */
  padding-bottom: 15px;
}
.section-en {
  font-family: var(--zn-font-tech);
  font-size: 3rem;
  line-height: 1;
  margin: 0;
  color: var(--zn-navy);
  letter-spacing: 0.05em;
}
.section-jp {
  font-family: var(--zn-font-jp);
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
  display: block;
}

/* フィルターボタン */
.blog-filter-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-pill {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--zn-navy);
  color: var(--zn-navy);
  font-size: 0.75rem;
  padding: 5px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 700;
}
.filter-pill:hover,
.filter-pill.is-active {
  background: var(--zn-navy);
  color: #fff;
  box-shadow: 0 4px 10px rgba(46, 64, 107, 0.3);
}

/* --- スクロールエリア & カードラッパー --- */
.blog-scroll-area {
  flex-grow: 1;
  overflow-y: auto;
  padding: 10px; /* 影が切れないように内側に余白 */

  /* スクロールバー装飾 */
  scrollbar-width: thin;
  scrollbar-color: var(--zn-navy) transparent;
}
.blog-scroll-area::-webkit-scrollbar {
  width: 4px;
}
.blog-scroll-area::-webkit-scrollbar-track {
  background: transparent;
}
.blog-scroll-area::-webkit-scrollbar-thumb {
  background: var(--zn-navy);
  border-radius: 4px;
}

.blog-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px; /* ★アイテム同士の隙間 */
}

/* --- カードデザイン (New) --- */
.blog-card-item {
  background: var(--zn-white);
  border-radius: 8px; /* 角丸 */
  box-shadow: 0 5px 15px var(--zn-shadow); /* ふんわりした影 */
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
}
/* ホバーで少し浮く */
.blog-card-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(46, 64, 107, 0.2);
}

/* JS制御用非表示クラス */
.blog-card-item.is-hidden,
.blog-card-item.is-hidden-by-limit {
  display: none;
}

.blog-card-link {
  display: flex;
  align-items: center;
  padding: 15px;
  text-decoration: none;
  color: var(--zn-navy);
  gap: 20px;
}

/* 1. 画像 (正方形に近い長方形) */
.blog-card-thumb {
  width: 140px;
  aspect-ratio: 5 / 4; /* ★ここが正方形に近い長方形 */
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card-link:hover .blog-card-thumb img {
  transform: scale(1.1);
}

/* 2. 右側: 情報ボディ (縦並び) */
.blog-card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px; /* カテゴリとタイトルの間隔 */
}

/* カテゴリ */
.blog-card-cat {
  line-height: 1;
}
.cat-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--zn-gold);
  /* ボーダーありスタイル */
  border: 1px solid var(--zn-gold);
  padding: 3px 8px;
  border-radius: 2px;
  /* 背景ありスタイルにしたい場合はこちら↓
  background: var(--zn-gold); color: #fff; padding: 3px 8px; border-radius: 2px; */
}

/* タイトル */
.blog-card-title {
  font-family: var(--zn-font-jp);
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
  transition: color 0.3s;

  /* 2行制限 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-link:hover .blog-card-title {
  color: #4b7bec;
}

/* 3. 矢印 */
.blog-card-arrow {
  font-family: var(--zn-font-tech);
  font-size: 1.2rem;
  color: var(--zn-navy);
  padding-right: 10px;
  opacity: 0.3;
  transition: 0.3s;
}
.blog-card-link:hover .blog-card-arrow {
  opacity: 1;
  transform: translateX(5px);
  color: var(--zn-gold);
}

/* フッターボタン */
.blog-footer {
  text-align: center;
  margin-top: 20px;
  flex-shrink: 0;
}
.btn-navy {
  display: inline-block;
  padding: 12px 50px;
  background: var(--zn-navy);
  color: #fff;
  text-decoration: none;
  font-family: var(--zn-font-tech);
  font-weight: 700;
  transition: 0.3s;
  border: 1px solid var(--zn-navy);
}
.btn-navy:hover {
  background: transparent;
  color: var(--zn-navy);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .zero-blog-section {
    height: auto;
    min-height: auto;
    padding: 60px 0;
    max-height: none;
  }
  .blog-scroll-area {
    overflow: visible;
    height: auto;
    padding: 0;
  }
  .blog-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .section-en {
    font-size: 2.5rem;
  }

  .blog-card-link {
    align-items: flex-start; /* 上揃え */
  }
  .blog-card-thumb {
    width: 100px;
    aspect-ratio: 1/1; /* スマホは正方形で見やすく */
  }
  .blog-card-title {
    font-size: 1rem;
  }
  .blog-card-arrow {
    display: none;
  }
  .filter-pill {
    padding: 5px 12px;
  }
}
/* =============================================
   ZeroNexa Footer (MV Synchronized)
   ============================================= */
:root {
  --zn-navy: #2e406b;
  --zn-gold: #bf8d23;
  --zn-font-tech: "Orbitron", sans-serif;
  --zn-font-jp: "Zen Old Mincho", serif;
}

.nexus-footer {
  background-color: #fff;
  padding: 140px 0 60px;
  position: relative;
  /* ZERO BLOGの背景透過に合わせて、ここも境界を曖昧にしない */
  border-top: 1px solid #eee;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- BACK TO TOP (MV連動型) --- */
.scroll-top-anchor {
  position: absolute;
  top: 0;
  right: 8%;
  transform: translateY(-50%);
  text-decoration: none;
}
.anchor-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.anchor-visual .line {
  width: 1px;
  height: 100px;
  background: var(--zn-navy);
  transform-origin: top;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.anchor-visual .label {
  margin-top: 15px;
  font-family: var(--zn-font-tech);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--zn-navy);
  writing-mode: vertical-rl;
}
.scroll-top-anchor:hover .line {
  transform: scaleY(1.3);
}

/* --- レイアウト --- */
.footer-main-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 120px;
}

/* ロゴ & コンセプト */
.footer-brand-area .footer-logo {
  font-family: var(--zn-font-tech);
  font-size: 3.2rem; /* MVより少し控えめ */
  color: var(--zn-navy);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 30px;
}
.footer-brand-area .footer-logo span {
  font-family: var(--zn-font-jp);
  font-size: 1rem;
  margin-left: 15px;
  color: #999;
  letter-spacing: 0.2em;
}

.brand-statement .en {
  font-family: var(--zn-font-tech);
  font-size: 0.85rem;
  color: var(--zn-gold);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.brand-statement .jp {
  font-family: var(--zn-font-jp);
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

/* リンク */
.footer-links-area {
  display: flex;
  gap: 80px;
}
.group-hd {
  font-family: var(--zn-font-tech);
  font-size: 0.75rem;
  color: #ccc;
  margin-bottom: 30px;
  letter-spacing: 0.2em;
}
.link-group ul {
  list-style: none;
  padding: 0;
}
.link-group li {
  margin-bottom: 20px;
}
.link-group a {
  text-decoration: none;
  color: var(--zn-navy);
  font-family: var(--zn-font-jp);
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
  padding-bottom: 5px;
}
.link-group a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--zn-gold);
  transition: width 0.3s;
}
.link-group a:hover {
  color: var(--zn-gold);
}
.link-group a:hover::after {
  width: 100%;
}

/* --- ボトム --- */
.nexus-hr {
  width: 100%;
  height: 1px;
  background: #eee;
  margin-bottom: 30px;
}
.copyright {
  text-align: center;
}
.copyright small {
  font-family: var(--zn-font-tech);
  font-size: 0.7rem;
  color: #bbb;
  letter-spacing: 0.1em;
}

/* --- スマホ --- */
@media (max-width: 900px) {
  .footer-main-layout {
    flex-direction: column;
    gap: 60px;
  }
  .footer-links-area {
    width: 100%;
    gap: 20px;
    justify-content: space-between;
  }
  .footer-brand-area .footer-logo {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .footer-links-area {
    flex-direction: column;
  }
}
/* --- ロゴ画像周りの調整 --- */
.footer-logo {
  margin-bottom: 30px;
  line-height: 0; /* 画像の下の隙間を消す */
}

.footer-logo img {
  width: 320px; /* ロゴの形に合わせて適宜調整してください */
  height: auto;
  display: block;
  /* MVのテック感に合わせ、少しだけコントラストを強調しても良い */
  filter: brightness(1.02);
}

.brand-statement {
  /* ロゴ画像との距離感を微調整 */
  padding-left: 2px;
}

.brand-statement .en {
  font-family: var(--zn-font-tech);
  font-size: 0.85rem;
  color: var(--zn-gold);
  margin-bottom: 8px;
  letter-spacing: 0.12em;
}

/* スマホでのロゴサイズ */
@media (max-width: 900px) {
  .footer-logo img {
    width: 220px; /* モバイルでは少し小さめに */
    margin: 0 auto 20px; /* 中央揃えにする場合 */
  }
  .footer-brand-area {
    text-align: center; /* スマホではブランドエリアを中央に寄せるのが一般的 */
  }
  .brand-statement {
    padding-left: 0;
  }
}
/*サイドバーの検索利用分*/
h3.search-title {
}
/*検索結果*/
.search-title {
  border-bottom: 2px solid #000;
  padding-bottom: 0.5rem;
  color: #000;
}
.search-result-item {
  margin-top: 2rem;
}
.post {
  margin-top: 1rem;
}

/*inner-1000*/
.inner-1000 {
  max-width: 1000px;
  margin: 0 auto;
  width: 95%;
}
.inner-1200 {
  max-width: 1200px;
  margin: 0 auto;
}
.sidebar-search-inner {
  display: flex;
  justify-content: space-between;
}
.search-occ .sidebar-search-inner select,
.search-salary-type .sidebar-search-inner select {
  width: 50%;
  margin: 0;
  border: 4px solid #000;
}
.search-occ .sidebar-search-inner select,
.search-salary-type .sidebar-search-inner select:first-of-type {
  border-right: none;
}
.search-field {
  width: 100%;
  padding: 0.75rem;
  width: 100%;
  margin: 0 auto;
  display: block;
  border: 4px solid #000;
}
.free-word-inner label {
  width: 100%;
}
.free-word {
  margin-top: 1rem;
}
.search-field::placeholder {
  color: #333;
  font-size: 1rem;
}
/* =============================================
   ZeroNexa Live Grid (Final Fix)
   ============================================= */
:root {
  --zn-navy: #2e406b;
  --zn-gold: #bf8d23;
  --zn-font-tech: "Orbitron", sans-serif;
  --zn-font-jp: "Zen Old Mincho", serif;
}

.live-grid-section {
  padding: 100px 0 140px;
  background-color: transparent;
  position: relative;
  width: 100%;
  overflow: hidden; /* 横スクロール防止 */
}

.live-grid-container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto !important; /* 中央揃えを強制 */
  position: relative;
  z-index: 2;
  padding: 0 !important; /* 余計なパディングを削除 */
}

/* タイトルエリア */
.stream-title-area {
  width: 100%;
  margin: 0 auto 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.title-inner {
  display: flex;
  flex-direction: column;
}
.section-en {
  font-family: var(--zn-font-tech);
  font-size: 3.5rem;
  color: var(--zn-navy);
  line-height: 1;
  margin: 0;
}
.section-jp {
  font-family: var(--zn-font-jp);
  font-size: 1rem;
  color: #888;
  margin-top: 5px;
}
.title-line {
  flex-grow: 1;
  height: 1px;
  background: rgba(46, 64, 107, 0.2);
  margin-left: 30px;
  margin-bottom: 10px;
  position: relative;
}
.title-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  background: var(--zn-navy);
}

/* --- グリッドボード修正版 --- */
.live-grid-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PC: 4列 */
  gap: 20px;
  width: 100%;
  margin: 0 auto; /* 中央揃え */
  padding: 0;
  perspective: 1000px;
  box-sizing: border-box;
}

/* カードコンテナ */
.flip-container {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  transform-style: preserve-3d;
  opacity: 1;
  display: block;
}

/* PCでは5枚目以降を隠してレイアウト崩れを防ぐ（念の為） */
@media (min-width: 901px) {
  .flip-container:nth-child(n + 9) {
    display: none;
  }
}

/* カード本体 */
.flip-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.flip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.5s ease;
}
.flip-container:hover .flip-img {
  transform: scale(1.1);
  opacity: 0.6;
}
/* --- グリッドボード --- */
.live-grid-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PC: 4列 */
  gap: 20px;
  width: 100%;
  margin: 0 auto;
  perspective: 1000px;
  box-sizing: border-box;
  /* ボタンが潜り込むのを防ぐため、明示的に高さを確保 */
  position: relative;
  z-index: 1;
}

/* カードコンテナ */
.flip-container {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  transform-style: preserve-3d;
  opacity: 1;
  display: block;
}

/* PC: 5枚目以降を隠す (1列4枚のみ表示) */
/* もし2行表示したい場合は n+9 にしてください */
@media (min-width: 901px) {
  .flip-container:nth-child(n + 9) {
    display: none;
  }
}

/* カード本体 */
.flip-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15); /* 影を少し濃く */
}

/* ★修正1: 画像を暗くしない */
.flip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1; /* 元の明るさのまま */
  transition: transform 0.6s ease;
}
.flip-container:hover .flip-img {
  transform: scale(1.1);
}

/* ★修正2: 文字の背景のみグラデーションをかける（上部は透明で写真をクリアに） */
.flip-content {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  z-index: 2;
  /* 下半分だけ暗くして文字を読ませる */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    /* 上部はほぼ透明 */ transparent 30%,
    /* 中間は完全透明 */ rgba(0, 0, 0, 0.6) 70%,
    /* 文字エリアから暗く */ rgba(0, 0, 0, 0.9) 100%
  );
}

/* ヘッダー・タグ */
.flip-header {
  margin-bottom: 5px;
}
.flip-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.f-tag {
  font-size: 0.7rem;
  color: #fff;
  background: var(--zn-navy);
  padding: 3px 8px;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* 白背景で見やすいように影追加 */
}

/* フッター（文字情報） */
.flip-footer {
  margin-top: auto;
  width: 100%;
}

.flip-title {
  font-family: var(--zn-font-jp);
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0 0 10px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9); /* 文字の影を強くして視認性確保 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.flip-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.4); /* 線を少しはっきり */
  padding-top: 10px;
  margin-top: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.flip-salary {
  color: var(--zn-gold);
  font-weight: 700;
  font-family: var(--zn-font-tech);
  font-size: 0.95rem;
  line-height: 1.2;
  flex: 1;
  word-break: break-all;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.flip-type {
  font-size: 0.8rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5); /* 半透明黒背景で視認性UP */
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* --- フッターボタン修正 --- */
.live-footer {
  margin-top: 40px;
  text-align: right;
  position: relative; /* 重なり防止 */
  z-index: 10;
  clear: both; /* 回り込み解除 */
}
.view-all-btn {
  display: inline-block;
  padding: 12px 40px;
  border: 1px solid var(--zn-navy);
  color: var(--zn-navy);
  text-decoration: none;
  font-family: var(--zn-font-tech);
  transition: 0.3s;
  font-weight: 700;
  background: #fff; /* 背景白で浮き立たせる */
}
.view-all-btn:hover {
  background: var(--zn-navy);
  color: #fff;
}

/* --- ★スマホ対応 (1列 x 4個) --- */
@media (max-width: 900px) {
  .section-en {
    font-size: 2.5rem;
  }

  .live-grid-board {
    /* 1列に変更 */
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px; /* 横に広がりすぎないように制限 */
    margin: 0 auto;
  }

  /* 5個目以降を隠す（1列x4行=4個表示） */
  .flip-container:nth-child(n + 5) {
    display: none;
  }

  /* 縦横比を少し横長にして見やすく (4:3) */
  .flip-container {
    aspect-ratio: 4/3;
  }

  .flip-content {
    padding: 15px;
    /* スマホは文字が見にくいのでグラデーションを少し強めに */
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.2) 40%,
      rgba(0, 0, 0, 0.8) 80%,
      rgba(0, 0, 0, 0.95) 100%
    );
  }

  .flip-title {
    font-size: 1rem;
  }
  .flip-salary {
    font-size: 0.9rem;
  }
  .flip-type {
    font-size: 0.75rem;
  }
}

/*footer追加*/
.footer-logo h1 {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
}

.useful-single {
  margin-top: 4rem;
}
.job-item-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.job-item-img {
  width: 40%;
}
.job-item-img img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
}
.job-single-img {
  width: 95%;
  aspect-ratio: 16/9;
  max-width: 600px;
  margin: 0 auto;
}
.pickup-deswrap {
  width: 55%;
}
.pickup-des-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* ← ここで行数指定 */
  overflow: hidden;
  font-size: 0.9rem;
  white-space: normal; /* nowrapを解除 */
  word-break: break-word; /* 長い単語を折り返す */
  overflow-wrap: break-word; /* 英語対応の互換性向け */
}
.print-button {
  background-color: #256972;
  color: #fff;
  width: fit-content;
  margin-top: 2rem;
  display: block;
}
.print-button button {
  color: inherit;
}
:root {
  --zn-navy: #2e406b;
  --zn-dark-navy: #1a233a;
  --zn-silver: #e0e6ed;
  --zn-font-serif: "Hedvig Letters Serif", serif;
  --zn-font-tech: "Orbitron", sans-serif;
  --zn-font-jp: "Zen Old Mincho", serif;
}

.stream-feature-section {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

/* 背景にうっすらデジタルノイズっぽいライン */
.stream-feature-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 50px,
    rgba(46, 64, 107, 0.03) 50px,
    rgba(46, 64, 107, 0.03) 51px
  );
  pointer-events: none;
}

/* =============================================
   ZeroNexa Feature Section (Vertical Slot Reels)
   ============================================= */
:root {
  --zn-navy: #2e406b;
  --zn-dark-navy: #1a233a;
  --zn-white: #ffffff;
  --zn-border: rgba(46, 64, 107, 0.2);
  --zn-font-serif: "Hedvig Letters Serif", serif;
  --zn-font-tech: "Orbitron", sans-serif;
  --zn-font-jp: "Zen Old Mincho", serif;
}

.slot-feature-section {
  padding: 100px 0 140px;
  position: relative;
  overflow: hidden;
}

/* 背景: うっすら縦のラインを入れてレーン感を出す */
.slot-feature-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 99%,
    rgba(46, 64, 107, 0.05) 100%
  );
  background-size: 25% 100%; /* 4分割 */
  pointer-events: none;
}

/* --- タイトルエリア --- */
.stream-title-area {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.title-inner {
  display: flex;
  flex-direction: column;
}
.section-en {
  font-family: var(--zn-font-serif);
  font-size: 3.5rem;
  color: var(--zn-navy);
  line-height: 1;
  margin: 0;
  letter-spacing: 0.05em;
}
.section-jp {
  font-family: var(--zn-font-jp);
  font-size: 1rem;
  color: #888;
  letter-spacing: 0.1em;
  margin-top: 5px;
}
.title-line {
  flex-grow: 1;
  height: 1px;
  background: var(--zn-border);
  margin-left: 30px;
  margin-bottom: 10px;
  position: relative;
}
.title-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  background: var(--zn-navy);
}

/* --- スロットマシン・コンテナ --- */
.slot-machine-container {
  width: 100%;
  /* コンテナの高さを制限して、上下を隠す */
  height: 600px;
  position: relative;
  overflow: hidden;
}

.slot-grid-wrapper {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  gap: 20px; /* カラム間の隙間 */
  padding: 0 20px;
}

/* 各リール（列） */
.slot-column {
  flex: 1; /* 均等割付 (PC:25%) */
  height: 100%;
  position: relative;
  overflow: hidden; /* トラックのはみ出しを隠す */
}

/* トラック（動く部分） */
.slot-track {
  display: flex;
  flex-direction: column;
  gap: 20px; /* カード間の縦隙間 */
  padding-bottom: 20px;
}

/* --- アニメーション設定 --- */

/* 上へ流れる (0% -> -50%) */
.scroll-up {
  animation: slotUp 40s linear infinite;
}
@keyframes slotUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  } /* 半分移動したらループ */
}

/* 下へ流れる (-50% -> 0%) */
/* ※初期位置を-50%にしておき、0%に向かうことで「下へ」見せる */
.scroll-down {
  transform: translateY(-50%);
  animation: slotDown 45s linear infinite; /* 少し速度を変えてランダム感を出す */
}
@keyframes slotDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

/* --- カードデザイン (正方形・コンパクト) --- */
.slot-card {
  width: 100%;
  aspect-ratio: 1 / 1; /* 正方形 */
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  transition: transform 0.3s ease;
}
.slot-card:hover {
  transform: scale(0.98); /* ホバーで少し沈む */
  border: 1px solid var(--zn-navy);
}

.slot-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: #fff;
  text-decoration: none;
}

/* 画像 */
.slot-img {
  width: 100%;
  height: 100%;
  position: relative;
}
.slot-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.8;
}
.slot-card:hover .slot-img img {
  transform: scale(1.1);
  opacity: 0.4; /* ホバーで画像を暗くして文字を目立たせる */
}

/* オーバーレイ（文字の背景） */
.slot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  pointer-events: none;
}

/* テキスト情報（画像の上に配置） */
.slot-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.slot-num {
  font-family: var(--zn-font-tech);
  font-size: 0.8rem;
  color: var(--zn-gold);
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.slot-title {
  font-family: var(--zn-font-jp);
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
  /* 2行制限 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* --- フッターバー --- */
.stream-footer-bar {
  width: 90%;
  max-width: 1400px;
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.bar-deco {
  flex-grow: 1;
  height: 1px;
  background: #eee;
  margin-right: 20px;
}
.view-all-btn {
  font-family: var(--zn-font-tech);
  font-size: 0.9rem;
  color: var(--zn-navy);
  text-decoration: none;
  letter-spacing: 0.1em;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 1px solid var(--zn-navy);
  padding: 12px 30px;
}
.view-all-btn:hover {
  background: var(--zn-navy);
  color: #fff;
}

/* --- スマホ対応 (2列x2段のような見た目) --- */
@media (max-width: 768px) {
  .section-en {
    font-size: 2.5rem;
  }

  .slot-machine-container {
    height: 500px; /* スマホは少し低く */
  }

  /* グリッドを2列に変更 */
  .slot-grid-wrapper {
    flex-wrap: wrap; /* 折り返し許可 */
    gap: 10px;
    padding: 0 10px;
  }

  .slot-column {
    flex: 0 0 calc(50% - 5px); /* 50%幅 (隙間考慮) */
    height: 100%; /* 全員高さいっぱい */
  }

  /* スマホでは文字サイズ調整 */
  .slot-title {
    font-size: 0.85rem;
  }
  .slot-num {
    font-size: 0.7rem;
  }

  /* スマホでは速度を少し落とす */
  .scroll-up,
  .scroll-down {
    animation-duration: 50s;
  }
}
/*mapsearch*/
.mapsearch-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
}
.mapsearch-titlewrap {
  width: 400px;
}
.mapsearch-contents {
  width: calc(100% - 450px);
}
.mapsearch-japan-img {
  margin-top: 2rem;
}

/*map-accrodion*/

/*アコーディオン全体*/
.map-accordion {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
  font-weight: bold;
}

.map-accordion > li {
  margin: 1rem 0;
  border: 3.5px solid #000;
  background-color: #fff;
  color: #000;
}
.map-accordion > li.hokkaido-region {
  border-color: #8886da;
}

.map-accordion > li.tohoku-region {
  border-color: #619feb;
}

.map-accordion > li.kanto-region {
  border-color: #3da943;
}

.map-accordion > li.chubu-region {
  border-color: #99cd34;
}

.map-accordion > li.kinki-region {
  border-color: #f8db74;
}

.map-accordion > li.chugoku-region {
  border-color: #ff9902;
}

.map-accordion > li.shikoku-region {
  border-color: #feacb6;
}

.map-accordion > li.kyushu-region {
  border-color: #ff6460;
}
/*アコーディオンタイトル*/
.map-accordion-title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
}

/*アイコンの＋と×*/
.map-accordion-title::before,
.map-accordion-title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #000;
}
.map-accordion-title::before {
  top: 48%;
  right: 1rem;
  transform: rotate(0deg);
}
.map-accordion-title::after {
  top: 48%;
  right: 1rem;
  transform: rotate(90deg);
}
.hokkaido-region .map-accordion-title::before,
.hokkaido-region .map-accordion-title::after {
  display: none;
}

/*アコーディオンで現れるエリア*/

.map-accordion-box {
  display: none; /*はじめは非表示*/
}
.map-accordion-title.close::before {
  transform: rotate(45deg);
}

.map-accordion-title.close::after {
  transform: rotate(-45deg);
}

.map-accordion-prefectures {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0.5rem;
}
.map-accordion-prefectures > li {
  margin: 0.5rem;
  background-color: #14518e;
  color: #fff;
  padding: 0 0.5rem;
  cursor: pointer;
}

/*mapsearch-municipality*/
#municipality-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mapsearch-municipality-scroll {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99;
  transform: translateX(calc(100% + 50px));
  transition: 0.3s ease-in-out;
  width: 400px;
}
.mapsearch-municipality-scroll.show {
  transform: translateX(0);
}

.mapsearch-municipality-wrap {
  height: 100vh;
  background-color: #fff;
  padding: 1rem;
}
.municipality-closebtn {
  cursor: pointer;
  position: absolute;
  left: -50px;
  top: 1rem;
  background-color: #14518e;
  width: 50px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dli-close {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1.5em;
  height: 0.2em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
  transform: rotate(45deg);
}

.dli-close::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}
.municipality-form-item {
  display: none;
}
.municipality-form-item-visible {
  display: block;
}
.municipality-form-lists {
  display: flex;
  flex-wrap: wrap;
  overflow-y: scroll;
  overflow-x: hidden;
  max-height: calc(100vh - 370px);
  margin-top: 1rem;
}
.municipality-form-lists label {
  width: 50%;
  display: flex;
  align-items: center;
}

.municipality-form-lists label input {
  margin-right: 0.5rem;
}
.prefecture-checkbox {
  margin-top: 1rem;
  display: flex;
  align-items: center;
}
.prefecture-checkbox input {
  margin-right: 0.5rem;
}
.municipality-form-lists input:checked,
.prefecture-checkbox input:checked {
  background-color: #14518e;
}

.municipality-form-btn {
  margin-top: auto;
  background-color: #14518e;
  color: #fff;
  font-size: 1.2rem;
  width: 100%;
  height: 50px;
  display: block;
}
#prefecture-image-container {
  width: 100%;
  aspect-ratio: 25/14;
}
#prefecture-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*アニメーション*/
.trigger {
  opacity: 0; /* 最初は非表示にしておく */
  transition: all 1s; /* 動きを滑らかに */
  transform: translateY(10px);
}
.trigger-ready {
  opacity: 0; /* 最初は非表示にしておく */
  transition: all 1s; /* 動きを滑らかに */
  transition-delay: 1s; /* 動きを滑らかに */
  transform: translateY(10px);
}
.trigger-ready01 {
  transition-delay: 1.3s; /* 動きを滑らかに */
  transform: translate(-50%, 10px);
}
/* フェードイン用のクラス */
.fadein {
  opacity: 1;
  transform: translateY(0);
}
.trigger-ready01.fadein {
  transform: translate(-50%, 0);
}

/*slick用*/
.pickup-lists01,
.pickup-lists02 {
  display: flex;
  flex-direction: row;
  white-space: nowrap;
  will-change: transform;
  transition: transform 0s linear;
}

.pickup-contents {
  overflow: hidden;
  position: relative;
  width: 100%;
}

:where(figure) {
  margin-bottom: 0 !important;
}

.pc-none {
  display: none;
}
.tablet-menu {
  display: none;
  z-index: 99;
}
.tablet-nav {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  background: linear-gradient(160deg, #0ca4a7 0%, #324b57 100%);
  width: 100%;
  height: 100vh;
  color: #fff;
  transform: translateX(100%);
  transition: 0.3s ease-in-out;
}
.tablet-nav.active {
  transform: translateX(0);
}
.tablet-menu .openbtn {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 10;
}
.tablet-menu-item-img img {
  width: 50px;
  display: block;
}
.tablet-menu-item-img {
  margin-right: 1rem;
}
.tablet-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 4rem auto 0;
}
.tablet-nav ul li {
  width: 49%;
  padding: 1.5rem 0;
  font-size: 1.1rem;
  border-bottom: 1px solid #e9e9e9;
  font-weight: bold;
}
.tablet-nav ul li a,
.tablet-nav ul li > div {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
}

.tablet-menu-item01 {
  cursor: pointer;
}

.wpcf7 input[type="url"] {
  width: 100%;
}

.no-post,
.no-results {
  color: #fff;
}
.holiday-notice-box {
  width: 95%;
  max-width: 900px; /* 横幅の制限 */
  margin: 40px auto 60px; /* 上と下の余白（下を少し広めに） */
  padding: 25px; /* 箱の内側の余白 */
  border: 2px solid #0f5e63; /* サイトの濃い緑色に合わせた枠線 */
  background-color: #fff; /* 背景は清潔感のある白 */
  text-align: center; /* 文字を中央揃え */
  border-radius: 6px; /* 角を少し丸く */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* うっすら影をつけて浮かせる */
}

.holiday-text {
  font-size: 16px; /* 文字の大きさ */
  color: #333; /* 文字の色 */
  line-height: 1.8; /* 行間を広げて読みやすく */
  font-weight: 500; /* 少しだけ太字にして視認性を上げる */
  margin: 0;
}
.tag-ranking {
  margin-top: 2rem;
}

/* =============================================
   ZeroNexa Search (Silver Fixed BG & Wide List)
   ============================================= */

/* --- 1. 背景固定レイヤー --- */
#global-silver-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -2;
  background: radial-gradient(
    circle at 50% 40%,
    #ffffff 0%,
    #f0f0f0 40%,
    #d0d0d0 80%,
    #999999 100%
  );
}
#bg-mesh-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  mix-blend-mode: multiply;
}

/* --- 2. メインコンテナ --- */
.zn-search-container {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 80vh;
  padding-top: 120px;
  padding-bottom: 50px;
  background: transparent;
  font-family: "Hedvig Letters Serif", serif;
}

.zn-content-inner {
  width: 94%;
  max-width: 1100px;
  margin: 0 auto;
}

/* --- 3. ヘッダーエリア --- */
.zn-search-header {
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(14, 25, 43, 0.2);
  padding-bottom: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.zn-hd-title .en {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0e192b;
  letter-spacing: 0.1em;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}
.zn-hd-title .jp {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
  letter-spacing: 0.2em;
}
.zn-hd-stat {
  font-family: "Orbitron", sans-serif;
  color: #0e192b;
  opacity: 0.8;
  text-align: right;
}
.zn-hd-stat .num {
  font-size: 2rem;
  font-weight: 700;
  margin-right: 5px;
}

/* --- 4. 求人リスト (ワイドカード) --- */
.zn-job-list-wide {
  display: flex;
  flex-direction: column;
  gap: 20px; /* カード間の隙間を少し詰める */
  padding: 0;
  margin: 0;
  list-style: none;
}

.zn-wide-card {
  display: flex;
  align-items: stretch; /* 高さを揃える */
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(14, 25, 43, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.zn-wide-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 15px 40px rgba(14, 25, 43, 0.15);
  border-color: #0e192b;
}

/* ▼ アイキャッチ画像 (余白・中央寄せ) ▼ */
.wide-visual {
  width: 280px; /* PC/タブレット時の幅 */
  flex-shrink: 0;
  position: relative;
  background: #fff;
  border-right: 1px solid #eee;

  /* 上下左右中央寄せ & 余白 */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px; /* 画像周りの隙間 */
}

.visual-img {
  width: 100%;
  height: auto;
  max-height: 100%; /* 枠からはみ出さない */
  object-fit: contain; /* 画像全体を表示 */
}

.visual-cat {
  position: absolute;
  top: 0;
  left: 0;
  background: #0e192b;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: 0.7rem;
  padding: 4px 10px;
  z-index: 2;
}

/* 情報エリア */
.wide-info {
  flex-grow: 1;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wide-header {
  margin-bottom: 10px;
}
.wide-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0e192b;
  margin-bottom: 8px;
  line-height: 1.4;
}
.wide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.w-tag {
  font-size: 0.7rem;
  color: #666;
  background: #f0f2f5;
  padding: 2px 8px;
  border-radius: 2px;
}

/* 説明文 */
.wide-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* フッター */
.wide-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 12px;
  margin-top: auto;
}

.wide-specs {
  display: flex;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.wide-specs li {
  display: flex;
  flex-direction: column;
}
.wide-specs .lbl {
  font-family: "Orbitron", sans-serif;
  font-size: 0.65rem;
  color: #aaa;
  margin-bottom: 2px;
  letter-spacing: 0.05em;
}
.wide-specs .val {
  font-size: 0.95rem;
  color: #333;
  font-weight: 600;
}
.wide-specs .price {
  color: #0e192b;
  font-weight: 700;
}

.wide-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0e192b;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  transition: 0.3s;
  white-space: nowrap;
}
.zn-wide-card:hover .wide-btn {
  color: #0049ad;
  letter-spacing: 1px;
}

/* --- 5. ページネーション (スマホ最適化・丸統一版) --- */
.zn-pagination-wide {
  margin-top: 80px;
  text-align: center;
}

.zn-pagination-wide .wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px; /* PCでの間隔 */
  flex-wrap: wrap;
}

/* --- 共通ボタンデザイン (基本すべて丸) --- */
.zn-pagination-wide .wp-pagenavi a,
.zn-pagination-wide .wp-pagenavi span {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;
  border: 1px solid rgba(46, 64, 107, 0.2);
  color: #0e192b;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;

  border-radius: 50%; /* 完全な丸 */

  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* --- 不要な「最初」「最後」を削除 --- */
.zn-pagination-wide .wp-pagenavi .first,
.zn-pagination-wide .wp-pagenavi .last {
  display: none !important;
}

/* --- PCのみ: 前後ボタンを横長にする (オプション) --- */
@media (min-width: 769px) {
  .zn-pagination-wide .wp-pagenavi a.previouspostslink,
  .zn-pagination-wide .wp-pagenavi a.nextpostslink {
    width: auto;
    padding: 0 25px !important;
    border-radius: 30px; /* カプセル型 */
    aspect-ratio: auto;
  }
}

/* --- 現在のページ --- */
.zn-pagination-wide .wp-pagenavi span.current {
  background: var(--zn-navy);
  color: #fff;
  border-color: var(--zn-navy);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

/* --- ページ数表示 (1 / 19) --- */
.zn-pagination-wide .wp-pagenavi span.pages {
  width: auto;
  border: none;
  background: transparent;
  box-shadow: none;
  font-size: 0.9rem;
  color: #999;
  padding: 0 15px !important;
  pointer-events: none;
}

/* --- ホバー時 --- */
.zn-pagination-wide .wp-pagenavi a:hover {
  background: var(--zn-navy);
  color: #fff;
  border-color: var(--zn-navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(46, 64, 107, 0.3);
}

/* --- スマホ対応 (コンパクト化) --- */
@media (max-width: 768px) {
  .zn-pagination-wide {
    margin-top: 60px;
  }

  .zn-pagination-wide .wp-pagenavi {
    gap: 8px; /* 間隔を詰める */
  }

  /* ページ数テキスト (1 / 19) を上段に逃がす */
  .zn-pagination-wide .wp-pagenavi span.pages {
    width: 100%; /* 改行させる */
    height: auto;
    margin-bottom: 5px !important;
    font-size: 0.8rem;
    padding: 0 !important;
  }

  /* 全ボタンを小さめの丸に統一 */
  .zn-pagination-wide .wp-pagenavi a,
  .zn-pagination-wide .wp-pagenavi span {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    border-radius: 50%; /* 正円 */
  }

  /* 前後ボタンも丸に戻す (崩れ防止) */
  .zn-pagination-wide .wp-pagenavi a.previouspostslink,
  .zn-pagination-wide .wp-pagenavi a.nextpostslink {
    width: 40px;
    padding: 0 !important;
    aspect-ratio: 1/1;
  }
}

/* --- 6. レスポンシブ対応 --- */

/* タブレット・PCの境界 (900px -> 768pxに変更) */
@media (max-width: 768px) {
  .zn-search-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .zn-hd-stat {
    margin-left: auto;
  }
  /* カードを縦積みに変更 */
  .zn-wide-card {
    flex-direction: column;
  }

  /* アイキャッチ (スマホ用) */
  .wide-visual {
    width: 100%;
    height: 180px; /* 高さを抑える */
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 10px;
  }

  /* 情報エリア (スマホ用) */
  .wide-info {
    padding: 15px;
  }
  .wide-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  /* ★スクロール短縮対策: 説明文を非表示 */
  .wide-desc {
    display: none;
  }

  /* フッター (スマホ用: 縦積み短縮) */
  .wide-footer {
    border-top: none; /* 線を消して詰める */
    padding-top: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  /* スペックを2列グリッドにして高さを節約 */
  .wide-specs {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2列 */
    gap: 10px 15px;
    width: 100%;
  }

  .wide-btn {
    align-self: flex-end;
    margin-top: 5px;
  }
}
/* =============================================
   ZeroNexa Job Detail (Tight & Clean)
   ============================================= */

/* --- ベース設定 --- */
.zn-detail-container {
  width: 100%;
  min-height: 100vh;
  padding-top: 100px;
  background: transparent;
  font-family: "Hedvig Letters Serif", serif;
  z-index: 1;
  position: relative;
  overflow-x: hidden;
}

.zn-detail-dashboard {
  width: 94%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 80px;
  box-sizing:border-box;
}
.zn-detail-dashboard .zn-section-block {
  padding: 1.5rem 0;
}
.zn-footer-spacer {
  height: 100px;
}

/* --- 1. HEADER (Sharp) --- */
.zn-silver-header {
  margin-bottom: 30px;
  border-bottom: 1px solid #0e192b;
  padding-bottom: 20px;
}

.header-meta-row {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.8rem;
  color: #0e192b;
  margin-bottom: 10px;
  padding-left: 0.5rem;
  opacity: 0.8;
}
.meta-sep {
  opacity: 0.5;
}

.header-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0e192b;
  line-height: 1.3;
  margin-bottom: 15px;
  word-break: break-all; /* SPでの貫通防止 */
}

.header-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.zn-pill {
  font-size: 0.75rem;
  padding: 3px 12px;
  border-radius: 50px;
}
.zn-pill.cat {
  background: #0e192b;
  color: #fff;
}
.zn-pill.tag {
  background: #fff;
  color: #000;
  border: 1px solid #ccc;
  font-family: "Orbitron", sans-serif;
}

/* --- 2. BENTO MODULE --- */
.zn-bento-module {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px; /* 間隔大幅短縮 */
  border: 1px solid #e0e0e0;
  background: #fff;
}

.bento-col.visual-col {
  flex: 1.2;
  min-width: 300px;
  background: #f4f4f4;
  position: relative;
}
.visual-frame {
  width: 100%;
  height: 100%;
  min-height: 300px; /* PC用高さ */
  position: relative;
  padding: 10px;
}
.frame-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #0e192b;
}
.c-tl {
  top: 10px;
  left: 10px;
  border-right: 0;
  border-bottom: 0;
}
.c-br {
  bottom: 10px;
  right: 10px;
  border-left: 0;
  border-top: 0;
}

.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bento-col.message-col {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* ★上揃えに変更 */
  border-left: 1px solid #e0e0e0;
}
.msg-ttl {
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0e192b;
  margin-bottom: 15px;
  border-bottom: 2px solid #0e192b;
  display: inline-block;
  padding-bottom: 3px;
  width: fit-content;
}
.msg-body {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* --- 3. SECTIONS (Very Tight Spacing) --- */
.zn-section-block {
  margin-bottom: 20px; /* ★さらに詰める */
}
/* 詳細度対策 */
.zn-detail-dashboard .zn-section-block.tight-spacing {
  margin-bottom: 20px;
}

.block-header {
  margin-bottom: 15px; /* 下余白も詰める */
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 15px;
}
.block-ttl {
  font-family: "Orbitron", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0e192b;
}
.block-ttl .jp {
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  color: #666;
  margin-left: 10px;
}

/* グリッド */
.zn-grid-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px; /* カード間隔も詰める */
}

/* カードモジュール (ホバー全廃) */
.spec-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  /* transition削除 */
}
.spec-card.full-card {
  grid-column: 1 / -1;
}
@media(max-width:480px){
	.spec-card{padding:10px;}
}
.card-hd {
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  color: #000;
  margin-bottom: 8px;
  font-weight:  bold;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}
.card-hd::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #0e192b;
  margin-right: 8px;
}

.card-bd {
  font-size: 0.95rem;
  color: #000;
  line-height: 1.6;
  word-break: break-all; /* SP文字貫通防止 */
}
.lead-text {
  font-weight: 700;
}

/* 給与ハイライト */
.spec-card.highlight {
  border: 2px solid #0e192b;
  background: #fdfdfd;
}
.price-box .p-type {
  background: #0e192b;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  margin-right: 5px;
  vertical-align: text-bottom;
}
.price-box .p-val {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0e192b;
}
@media(max-width:480px){
	.price-box .p-val {
  font-size: 1.1rem;
}
}
.price-note {
  font-size: 0.8rem;
  margin-top: 5px;
  border-top: 1px dashed #ccc;
  padding-top: 5px;
}
.ext-link {
  color: #0049ad;
  text-decoration: underline;
  font-family: "Orbitron", sans-serif;
}

/* --- 4. PC ENTRY DOCK --- */
.zn-entry-dock-pc {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}

.zn-dock-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 380px;
  height: 70px;
  padding: 0 30px;
  background: #0e192b;
  color: #fff;
  border: none;
  border-radius: 40px;
  box-shadow: 0 10px 40px rgba(14, 25, 43, 0.3);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s;
}
.zn-dock-trigger:hover {
  transform: scale(1.05);
  background: #0049ad;
}

.dock-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 15px;
  color: #fff;
}
.dock-icon {
  font-size: 1.5rem;
}
.dock-text {
  text-align: left;
  flex-grow: 1;
}
.dock-text .en {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}
.dock-text .jp {
  display: block;
  font-size: 0.7rem;
  color: #00f0ff;
  margin-top: 2px;
}
.dock-arrow {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
}

/* 光のアニメーション */
.dock-border-anim {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-20deg);
  z-index: 1;
  animation: dockShine 3s infinite;
}
@keyframes dockShine {
  0% {
    left: -100%;
  }
  20% {
    left: 200%;
  }
  100% {
    left: 200%;
  }
}

/* --- 5. SP ENTRY FAB (Menu Avoidance) --- */
.zn-sp-entry-fab-wrap {
  display: none; /* PC非表示 */
}

/* --- 応募フォーム (モーダル) --- */
.u-job-entryform {
  position: fixed;
  top: 0;
  right: 0;
  width: 600px;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 99999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3);
  display: block !important;
padding:0;
}
.u-job-entryform.active {
  transform: translateX(0);
}
.u-job-entryform-inner {
  height: 100%;
  overflow-y: auto;
  padding: 30px 50px 10px;
	box-sizing:border-box;
}
.job-entryform-closebtn {
  text-align: right;
  margin-bottom: 20px;
  cursor: pointer;
}
.entryform-close-text {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  color: #0e192b;
  border-bottom: 2px solid #0e192b;
}
.form-title-area h2 {
  font-size: 2rem;
  color: #0e192b;
}

/* --- スマホ対応 (900px以下) --- */
@media (max-width: 900px) {
  .zn-detail-container {
    padding-top: 60px;
  }

  /* スマホ左右余白 */
  .zn-detail-dashboard {
    width: 100%;
    padding: 0 15px 120px;
  }

  .header-title {
    font-size: 1.8rem;
  }

  /* Bento縦積み */
  .zn-bento-module {
    display: block;
    margin-bottom: 20px;
  }

  /* ★アイキャッチ高さ自動 & 下余白 */
  .visual-frame {
    min-height: auto; /* 高さ自動 */
    height: auto;
    padding: 0;
  }
  .bento-col.visual-col {
    border-right: none;
    border-bottom: 1px solid #ccc;
    min-height: auto;
    margin-bottom: 20px; /* ここでアイキャッチ下に余白確保 */
  }
  .bento-col.message-col {
    border-left: none;
    padding: 25px 20px;
  }

  /* グリッド縦積み */
  .zn-grid-specs {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* PCドック非表示 */
  .zn-entry-dock-pc {
    display: none;
  }

  /* ★ SP用エントリーボタン (右余白90px) ★ */
  .zn-sp-entry-fab-wrap {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    z-index: 9990;
    pointer-events: none;
    padding-left: 15px;
    padding-right: 90px; /* メニュー回避 */
  }

  .zn-sp-entry-fab {
    width: 100%;
    height: 60px;
    background: #0e192b;
    color: #fff;
    border: 2px solid #00f0ff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    cursor: pointer;
  }
  .zn-sp-entry-fab .icon {
    font-size: 1.2rem;
    animation: pulse 1s infinite;
  }
  .zn-sp-entry-fab .txt {
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    font-size: 1rem;
  }

  @keyframes pulse {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
    100% {
      opacity: 1;
    }
  }

  .u-job-entryform-inner {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .header-title {
    font-size: 1.4rem;
  }
  .block-ttl .jp {
    margin-left: 3px;
  }
  .entry-btn {
  }
}
/* デフォルトは非表示（画面外や非表示） */
.u-job-entryform {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;

  /* アニメーション用（例：右からスライド） */
  transform: translateX(150%);
  transition: transform 0.4s ease;

  /* もし opacity で制御している場合は opacity: 0; pointer-events: none; など */
}

/* activeクラスがついたら表示 */
.u-job-entryform.active {
  transform: translateX(0); /* 定位置に戻す */
}

/* =============================================
   ZeroNexa Entry Form Style (Final Complete)
   ============================================= */

/* --- 1. フォーム見出し --- */
.form-title-area {
  margin-bottom: 30px;
  border-bottom: 2px solid #eee;
  padding-bottom: 15px;
}
.form-title-area h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  color: #0e192b;
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
}
.form-title-area p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8rem;
  color: #999;
  margin-top: 5px;
}

/* --- 2. CF7 フォームレイアウト (2列グリッド) --- */
.cf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
	padding-bottom:
}

/* 2列レイアウト */
.form-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-full-row {
  width: 100%;
}

/* ラベル */
.form-label label {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  color: #0e192b;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.label-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  color: #888;
  font-weight: normal;
  margin-left: 8px;
}
.req-badge {
  display: inline-block;
  font-size: 0.65rem;
  background: #0e192b;
  color: #fff;
  padding: 2px 6px;
  margin-left: 8px;
  vertical-align: middle;
  border-radius: 2px;
  font-family: "Orbitron", sans-serif;
}

/* --- 3. 入力フィールド (修正版) --- */
.cf7-form input[type="text"],
.cf7-form input[type="email"],
.cf7-form input[type="tel"],
.cf7-form input[type="url"],
.cf7-form textarea,
.cf7-form select {
  width: 100% !important;
  height: 50px !important;
  padding: 0 15px !important;
  background-color: #f8f8f8 !important;
  border: 1px solid #ccc !important;
  border-radius: 0 !important;
  color: #333 !important;
  font-size: 1rem !important;
  appearance: none !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  font-family: "Noto Sans JP", sans-serif;
}

.cf7-form textarea {
  height: 120px !important;
  padding-top: 15px !important;
  resize: vertical;
}

/* ★修正: 送信ボタン以外にのみ「背景白」を適用 */
.cf7-form input:not([type="submit"]):focus,
.cf7-form textarea:focus,
.cf7-form select:focus {
  background-color: #fff !important;
  border-color: #0e192b !important;
  outline: none !important;
}

/* ラジオボタン */
.radio-group {
  display: flex;
  gap: 20px;
  height: 50px;
  align-items: center;
  padding-left: 5px;
}
.wpcf7-list-item {
  margin: 0;
}
.wpcf7-list-item + .wpcf7-list-item{
margin-left:10px!important;
}

/* --- 4. 送信ボタン (修正版) --- */
.form-full-row.submit-row {
  margin-top: 20px;
  position: relative;
}

/* ボタンの親要素 (バグ対策) */
.form-full-row.btn-submit {
  position: relative;
  min-height: 80px;
  margin-top: 30px;
  z-index: 10;
  transform: translate3d(0, 0, 0);
  isolation: isolate;
}

.cf7-form input[type="submit"] {
  width: 100%;
  height: 60px; /* 高さ明示 */
  background: #0e192b;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0 auto;
  cursor: pointer;
  font-family: "Orbitron", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition:
    background-color 0.2s,
    color 0.2s;

  /* 強制表示設定 */
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-appearance: none;

  /* 描画安定化 */
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* ★修正: ホバー時とフォーカス時(クリック時)の色指定 */
.cf7-form input[type="submit"]:hover,
.cf7-form input[type="submit"]:focus {
  background: #bf8d23 !important; /* Gold */
  color: #fff !important;
  outline: none !important;
}

/* 送信中・完了時の状態維持 */
.cf7-form input[type="submit"]:disabled,
.cf7-form input[type="submit"][disabled],
.wpcf7-form.submitting input[type="submit"],
.wpcf7-form.sent input[type="submit"],
.wpcf7-form.invalid input[type="submit"] {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  background-color: #333 !important; /* 送信中はグレーっぽく */
  color: #ccc !important;
  transition: none !important;
  transform: none !important;
  animation: none !important;
}

/* エラー時の即時復帰 */
.wpcf7-form.invalid input[type="submit"],
.wpcf7-form.unaccepted input[type="submit"] {
  background-color: #e74c3c !important; /* 赤 */
  color: #fff !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  transform: translate3d(0, 0, 0) !important;
}

/* ローディングアイコン位置 */
.wpcf7-spinner {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  margin: 0 !important;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
}
.wpcf7-form.submitting .wpcf7-spinner {
  visibility: visible !important;
  opacity: 1 !important;
}

/* --- 5. エラーメッセージボックス (表示制御版) --- */
.wpcf7-response-output {
  margin: 20px 0 0 0 !important;
  background: #fff !important;
  font-size: 0.85rem;
  padding: 10px !important;
  text-align: center;
  font-weight: 700;
  border-radius: 4px;

  /* デフォルトでは非表示・枠線なし */
  display: none !important;
  border: none !important;
}

/* 状態クラスが付与された時だけ表示する */
form.wpcf7-form.sent .wpcf7-response-output,
form.wpcf7-form.invalid .wpcf7-response-output,
form.wpcf7-form.unaccepted .wpcf7-response-output,
form.wpcf7-form.spam .wpcf7-response-output {
  display: block !important;
  border: 1px solid #e74c3c !important; /* 赤枠 */
  color: #e74c3c !important;
}

/* 送信成功時はネイビーにする */
form.wpcf7-form.sent .wpcf7-response-output {
  border-color: #2e406b !important;
  color: #2e406b !important;
}

.form-box{
padding-bottom:120px;
}
/* --- 6. スマホ対応 --- */
@media (max-width: 768px) {
  .u-job-entryform {
    width: 100%;
  }
  .form-grid-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .u-job-entryform-inner {
    padding: 30px 20px 0;
  }
  .modal-control-bar {
    padding: 0 15px;
  }
}

/* --- 7. Close Button (Fixed) --- */
.modal-control-bar {
  width: 100%;
  height: 60px;
  background: #0e192b;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  padding: 0 20px;
  box-sizing: border-box;
}

.job-entryform-closebtn {
  display: flex !important;
  align-items: center !important;
  gap: 10px;
  color: #fff;
  background: transparent;
  border: none;
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 10px;
  margin: 0;
  height: auto;
  line-height: 1;
}
.job-entryform-closebtn:hover {
  opacity: 0.7;
}

.job-entryform-closebtn .close-icon {
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
}
.job-entryform-closebtn .close-icon::before,
.job-entryform-closebtn .close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.job-entryform-closebtn .close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.job-entryform-closebtn .close-text {
  display: inline-block;
  line-height: 1;
  font-weight: 400;
}
/* --- 応募フォーム用オーバーレイ（背景の黒幕） --- */
.zn-entry-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 25, 43, 0.6); /* 濃いネイビーの半透明 */
  backdrop-filter: blur(2px); /* 少しぼかすとお洒落 */
  z-index: 9990; /* フォーム(9999)より下、他より上 */
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
  cursor: pointer;
}

/* アクティブ時に表示 */
.zn-entry-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =============================================
   ZeroNexa Tag Page Additions
   ============================================= */

/* --- 求人カード専用スタイル --- */
.job-cat {
  background: var(--zn-gold) !important;
  color: #fff !important;
}

.zn-job-meta {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed #eee;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.j-row {
  font-family: var(--zn-font-jp);
  font-size: 0.8rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.4;
}
.j-row .icon {
  font-size: 0.9rem;
}

/* --- ページネーション (ZeroNexa Style) --- */
.zn-pagination-wrap {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.wp-pagenavi,
.pagination {
  display: flex;
  gap: 10px;
  align-items: center;
}

.wp-pagenavi a,
.wp-pagenavi span,
.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: var(--zn-navy);
  font-family: var(--zn-font-tech);
  font-size: 0.9rem;
  transition: 0.3s;
  border-radius: 50%; /* 丸形 */
}

.wp-pagenavi a:hover,
.pagination a:hover {
  background: var(--zn-navy);
  color: #fff;
  border-color: var(--zn-navy);
}

.wp-pagenavi span.current,
.pagination span.current {
  background: var(--zn-gold);
  color: #fff;
  border-color: var(--zn-gold);
  font-weight: 700;
}

/* "前へ/次へ" の文字対応 */
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink,
.pagination .prev,
.pagination .next {
  width: auto;
  padding: 0 15px;
  border-radius: 20px; /* 楕円 */
}

/* --- No Post --- */
.zn-no-post {
  text-align: center;
  padding: 50px 0;
  color: #999;
  font-family: var(--zn-font-jp);
}

/* =============================================
   ZeroNexa Job List Style (Pickup & Search)
   ============================================= */

.zn-pickup-section {
  padding: 60px 0 120px;
}

/* リストレイアウト */
.zn-job-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* --- JOB CARD --- */
.zn-job-card {
  background: #fff;
  border: 1px solid rgba(14, 25, 43, 0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.zn-job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(14, 25, 43, 0.1);
  border-color: var(--zn-navy);
}

.job-card-link {
  display: flex;
  text-decoration: none;
  color: inherit;
  align-items: stretch;
}

/* サムネイルエリア */
.job-card-visual {
  width: 280px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.job-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.zn-job-card:hover .job-card-visual img {
  transform: scale(1.05);
}

.job-status-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--zn-navy);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 10px;
  font-weight: 700;
  border-radius: 2px;
  z-index: 2;
}

/* 本文エリア */
.job-card-body {
  flex-grow: 1;
  padding: 30px;
  position: relative;
}

/* メタ情報 (日付・タグ) */
.job-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.8rem;
  color: #999;
}
.job-date {
  font-family: var(--zn-font-tech);
}
.job-tags span {
  background: #f0f2f5;
  padding: 2px 8px;
  border-radius: 2px;
  margin-right: 5px;
  color: #666;
}

/* タイトル & 説明 */
.job-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--zn-navy);
  margin-bottom: 15px;
  line-height: 1.4;
}
.job-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* 情報テーブル */
.job-info-table {
  background: #f8f9fb;
  padding: 15px;
  border-radius: 4px;
}
.info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #333;
}
.info-row .icon {
  background: var(--zn-gold);
  color: #fff;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}

/* 矢印 */
.job-card-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-family: var(--zn-font-tech);
  font-weight: 700;
  color: var(--zn-navy);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: 0.3s;
}
.zn-job-card:hover .job-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* エラー表示 */
.no-post {
  text-align: center;
  padding: 50px;
  color: #999;
}

/* SP Responsive */
@media (max-width: 768px) {
  .job-card-link {
    flex-direction: column;
  }
  .job-card-visual {
    width: 100%;
    height: 200px;
  }
  .job-card-body {
    padding: 20px;
  }
  .job-title {
    font-size: 1.2rem;
  }
  .job-card-arrow {
    position: static;
    margin-top: 15px;
    text-align: right;
    opacity: 1;
    transform: none;
    display: block;
  }
}
/* =============================================
   reCAPTCHA Style (Badge Hidden)
   ============================================= */

/* 1. 右下のバッジを非表示にする */
.grecaptcha-badge {
  visibility: hidden;
}

/* 2. フォーム下の注意書きスタイル */
.recaptcha-text {
  font-size: 0.7rem;       /* 控えめなサイズ */
  color: #888;             /* 薄めのグレー */
  text-align: center;
  margin-top: 20px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}

.recaptcha-text a {
  color: #666;
  text-decoration: underline;
  transition: 0.3s;
}

.recaptcha-text a:hover {
  color: var(--zn-navy);   /* リンクホバー時はネイビー */
}

/* =============================================
   ZeroNexa Print Button & Print Styles
   ============================================= */

/* --- 1. 印刷ボタンの見た目 (画面表示用) --- */
.header-meta-row {
  /* 既存のスタイルに flex配置を確実にする */
  display: flex;
  align-items: center;
  gap: 20px; /* IDとボタンの間隔 */
}

.zn-print-btn {
  background: var(--zn-navy, #2e406b);
  border: 1px solid var(--zn-navy, #2e406b);
  color:#fff;
  padding: 4px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.zn-print-btn .icon {
  font-size: 0.9rem;
  line-height: 1;
}

.zn-print-btn .txt {
  font-family: "Orbitron", sans-serif; /* テック感のあるフォント */
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}


