@charset "UTF-8";
/* =========================================================
   INDEX / FILE OVERVIEW
   ---------------------------------------------------------
   01. Sass Modules / Utilities
       - sass:map

   02. Breakpoints
       - $bp

   03. Color Scale
       - $colors (yellow / green / navy ...)

   04. Following Sections
       - Layout / Components / Utilities (unchanged)
   ========================================================= */
/* =========================================================
   Color Scale
   ========================================================= */
/* =========================================================
   Base / Reset
   ========================================================= */
:root {
  --bg: #ffffff;
  --card: #ffffff;
  --text: #111;
  --muted: #bfbfbf;
  --line: #dfdfdf;
  /* ===== Color scale (CSS Vars) ===== */
  --yellow-900: #c79700;
  --yellow-800: #d4a100;
  --yellow-700: #e0aa00;
  --yellow-600: #edb400;
  --yellow-500: #f9bd00;
  --yellow-400: #faca33;
  --yellow-300: #fbd766;
  --yellow-200: #fde599;
  --yellow-100: #fef2cc;
  --green-900: #126b0d;
  --green-800: #157d0f;
  --green-700: #188e12;
  --green-600: #1ba014;
  --green-500: #1eb216;
  --green-400: #40be39;
  --green-300: #62c95c;
  --green-200: #83d57f;
  --green-100: #dcfbdb;
  --navy-900: #000001;
  --navy-800: #00001a;
  --navy-700: #000034;
  --navy-600: #00004d;
  --navy-500: #000066;
  --navy-400: #202079;
  --navy-300: #40408c;
  --navy-200: #60609f;
  --navy-100: #8080b3;
  --gray-500: #adb5bd;
  /* semantic */
  --brand: #edb400;
  --primary: #1eb216;
  --primary-hover: #1ba014;
  --secondary: #000066;
  --secondary-hover: #000034;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 12px 30px var(--line);
  --shadow-sm: 0 6px 16px var(--line);
  --container: 1200px;
  --gutter: 24px;
}

.text-yellow-100 {
  color: var(--yellow-100);
}

.text-yellow-200 {
  color: var(--yellow-200);
}
.text-yellow-300 {
  color: var(--yellow-300);
}
.text-yellow-400 {
  color: var(--yellow-400);
}
.text-yellow-500 {
  color: var(--yellow-500);
}
.text-yellow-600 {
  color: var(--yellow-600);
}
.text-yellow-700 {
  color: var(--yellow-700);
}
.text-yellow-800 {
  color: var(--yellow-800);
}
.text-yellow-900 {
  color: var(--yellow-900);
}

.text-green-100 {
  color: var(--green-100);
}

.text-green-200 {
  color: var(--green-200);
}
.text-green-300 {
  color: var(--green-300);
}
.text-green-400 {
  color: var(--green-400);
}
.text-green-500 {
  color: var(--green-500);
}
.text-green-600 {
  color: var(--green-600);
}
.text-green-700 {
  color: var(--green-700);
}
.text-green-800 {
  color: var(--green-800);
}
.text-green-900 {
  color: var(--green-900);
}

.text-navy-100{
  color: var(--navy-100);
}
.text-navy-200{
  color: var(--navy-200);
}
.text-navy-300{
  color: var(--navy-300);
}
.text-navy-400{
  color: var(--navy-400);
}
.text-navy-600{
  color: var(--navy-600);
}
.text-navy-700{
  color: var(--navy-700);
}
.text-navy-800{
  color: var(--navy-800);
}
.text-navy-900{
  color: var(--navy-900);
}
.text-navy-500{
  color: var(--navy-500) !important;
}
.text-gray-500 {
  color: var(--gray-500);
}

.fs-12px {
  font-size: 12px;
}
.fs-14px {
  font-size: 14px;
}
.fs-16px {
  font-size: 16px;
}
.fs-18px {
  font-size: 18px;
}
.fs-20px {
  font-size: 20px;
}
.fs-24px {
  font-size: 24px;
}
.p-24 {
  padding: 1.5rem;
}
.m-24 {
  margin: 1.5rem;
}

.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}

.gap-8px {
  gap: 8px;
}
.gap-12px {
  gap: 12px;
}
.gap-16px {
  gap: 16px;
}
.gap-24px {
  gap: 24px;
}

.bg-gray-200{
  background-color: var(--bs-gray-200);
}

.h-90px {
  height: 90px;
}

.btn-outline-navy {
  border-color: var(--navy-500);
  color: var(--navy-500);
}

.btn-outline-navy:hover {
  background-color: var(--navy-300);
  color: var(--bg);
}

.line-clamp-1 { -webkit-line-clamp: 1; }
.line-clamp-2 { -webkit-line-clamp: 2; }
.line-clamp-3 { -webkit-line-clamp: 3; }
.line-clamp-4 { -webkit-line-clamp: 4; }
.line-clamp-5 { -webkit-line-clamp: 5; }

.line-clamp-1,
.line-clamp-2,
.line-clamp-3,
.line-clamp-4,
.line-clamp-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.word-break-all {
  word-break: break-all;
}

@media (max-width: 767px) {
  :root {
    --gutter: 16px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Roboto", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.6;
  font-size: 14px;
}

body.is-modal-open {
  overflow: hidden;
}

button,input, optgroup, select, textarea {
  font-family: "Roboto", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

html[lang="en"] body,
html[lang="en"] button,
html[lang="en"] input,
html[lang="en"] optgroup,
html[lang="en"] select,
html[lang="en"] textarea {
  font-family: 'Roboto Condensed', sans-serif;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* =========================================================
   Page Wrapper
   ========================================================= */
.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
  padding-top: 80px;
}
@media (max-width: 1023px) and (min-width: 768px) {
  .site-main {
    padding-top: 112px;
  }
}
@media (max-width: 767px) {
  .site-main {
    padding-top: 56px;
  }
}

/* =========================================================
   Utilities / Buttons
   ========================================================= */
.btn--primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn--primary:hover, .btn--primary:focus, .btn--primary:active {
  background: var(--primary-hover) !important;
  color: #fff !important;
  border-color: var(--primary-hover) !important;
}
.btn--navy {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}

.btn-interested {
  border: 1px solid var(--navy-200);
  background-color: var(--navy-200);
  color: #fff;
}

.btn-like {
  color: #fff;
  border: 1px solid var(--navy-500);
  background-color: var(--navy-500);
}

.btn-like:hover, .btn--like:focus, .btn--like:active {
  background: var(--secondary-hover) !important;
  color: #fff !important;
  border-color: var(--secondary-hover) !important;
}

.btn--navy:hover, .btn--navy:focus, .btn--navy:active {
  background: var(--secondary-hover) !important;
  color: #fff !important;
  border-color: var(--secondary-hover) !important;
}

.btn-interested:hover, .btn-interested:focus, .btn-interested:active {
  color: #fff !important;
  border: 1px solid var(--navy-200) !important;
  background-color: var(--navy-200) !important;
}

.btn--outline {
  background: #fff;
  border-color: #d0d5dd;
  color: var(--text);
}
.btn--ghost {
  background: transparent;
  border-color: #d0d5dd;
  color: var(--text);
  padding: 8px 14px;
}
.btn--ghost:hover, .btn--ghost:focus, .btn--ghost:active {
  background: transparent;
  border-color: #d0d5dd;
  color: var(--text);
  padding: 8px 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.badge--new {
  background: #f9bd00;
  color: var(--text);
}
.badge--hot {
  background: #F23C1D;
  color: #fff;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  background: #f2f2f7;
  color: var(--text);
}
.pill--company {
  background: var(--primary);
  color: #fff;
}
.pill--outline {
  background: #fff;
  border: 1px solid var(--line);
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.site-header__top-inner {
  margin: 0 auto;
  padding: 28px 24px 16px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-header__brand {
  flex: 0 0 auto;
}
.site-header__logo {
  height: 44px;
  width: auto;
}
.site-header__right {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-header__nav {
  flex: 1 1 auto;
  min-width: 0;
}
.site-header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
html[lang="en"] .site-header__nav-list {
  font-weight: 600;
}
.site-header__nav-list a {
  display: inline-flex;
  align-items: center;
  padding: 0 6px;
  border-radius: 10px;
  white-space: nowrap;
}
.site-header__nav-list a:hover {
  color: var(--primary);
}
.site-header__nav-list .is-current a {
  color: var(--primary);
}
.site-header__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-header__link-employer {
  font-size: 14px;
  color: var(--text);
  white-space: nowrap;
}
.site-header__cta {
  font-size: 14px;
  border-radius: 23px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
}
.site-header__lang {
  width: 50px;
  height: 46px;
  border-radius: 50%;
  background: #f2f2f7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text);
  padding: 16px;
}
html[lang="en"] .site-header__lang {
  padding: 16px 0;
}
.site-header__account {
  position: relative;
  padding-right: 16px;
  padding-left: 16px;
  background: #f2f2f7;
  border-radius: 999px;
}
.site-header__account.is-user-menu-open .site-header__user-menu {
  display: block;
}
.site-header__user {
  position: relative;
}
.site-header__user-btn {
  width: 44px;
  height: 44px;
  border: 0;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: none;
  color: var(--text);
}
.site-header__user-btn:hover {
  color: var(--primary);
}
.site-header__user-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-header__user-icon svg {
  display: block;
}
.site-header__user-caret {
  font-size: 10px;
  line-height: 1;
  transform: translateY(1px);
}
.site-header__iconbar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  margin-left: 8px;
  gap: 16px;
}
.site-header__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.site-header__icon-btn svg {
  display: block;
}
.site-header__icon-btn:hover {
  color: var(--primary);
}
.site-header__badge-dot {
  position: absolute;
  top: -2px;
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f23c1d;
}
.site-header__user-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  z-index: 80;
}
.site-header__user-menu-link {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 12px;
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
}
.site-header__user-menu-link:hover {
  background: #f2f2f7;
}
.site-header__hamburger {
  display: none;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  background: #f2f2f7;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.site-header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0;
  background: var(--text);
  border-radius: 2px;
  transition: transform 500ms ease, opacity 500ms ease;
  transform-origin: center;
}
.site-header__sp-menu, .site-header__sp-resume {
  display: none;
}
.site-header.is-menu-open .site-header__sp-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* Smooth height animation for SP menu - using clip-path for smooth slide effect */
.site-header__sp-menu {
  transition: clip-path 500ms cubic-bezier(0.4, 0, 0.2, 1), opacity 500ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: clip-path, opacity;
}
.site-header.is-menu-open .site-header__hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.site-header.is-menu-open .site-header__hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.site-header.is-menu-open .site-header__hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.site-header {
  /* =========================
     1024〜1200px
     ========================= */
}
@media (max-width: 1200px) and (min-width: 1024px) {
  .site-header__logo {
    height: 38px;
  }
  .site-header__nav-list {
    gap: 4px;
    font-size: 14px;
  }
}
.site-header {
  /* =========================
     768〜1023px
     ========================= */
}
@media (max-width: 1023px) and (min-width: 768px) {
  .site-header__top-inner {
    align-items: center;
    padding: 16px 16px 8px;
  }
  .site-header__right {
    margin-left: auto;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }
  .site-header__actions {
    order: 1;
    justify-content: flex-end;
  }
  .site-header__nav {
    order: 2;
    width: 100%;
  }
  .site-header__nav-list {
    justify-content: flex-end;
    gap: 12px;
  }
}
.site-header {
  /* =========================
     SP（〜767px）
     ========================= */
}
@media (max-width: 767px) {
  .site-header {
    --sp-header-h: 56px;
  }
  .site-header__top-inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 60;
    background: #fff;
    padding: 0 0 0 12px;
    min-height: var(--sp-header-h);
    border-bottom: 1px solid var(--line);
    gap: 8px;
  }
  .site-header__logo {
    height: 36px;
  }
  .site-header__right {
    margin-left: auto;
    align-items: center;
    gap: 0;
  }
  .site-header__nav {
    display: none;
  }
  .site-header__account {
    display: none;
  }
  .site-header__link-employer, .site-header__lang {
    display: none;
  }
  .site-header__actions {
    margin-left: auto;
  }
  .site-header__hamburger {
    display: flex;
  }
  .site-header__sp-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    padding-top: calc(env(safe-area-inset-top) + var(--sp-header-h));
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    /* Smooth height animation using clip-path - slide from top when opening, from bottom when closing */
    clip-path: inset(0 0 100% 0);
    transition: clip-path 500ms cubic-bezier(0.4, 0, 0.2, 1), opacity 500ms cubic-bezier(0.4, 0, 0.2, 1);
    will-change: clip-path, opacity;
  }
  /* clip-path animation is handled by JavaScript, not CSS */
  .site-header.is-menu-open .site-header__sp-menu {
    /* clip-path and opacity are controlled by inline styles in JavaScript */
    pointer-events: auto;
  }
  .site-header__sp-resume {
    display: flex;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    height: 34px;
    padding: 12px 16px;
    border-radius: 23px;
  }
  .site-header__sp-inner {
    height: calc(100dvh - var(--sp-header-h) - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    height: calc(100vh - var(--sp-header-h) - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    height: calc(var(--view-height) - var(--sp-header-h) - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 24px 0 24px;
  }
  .site-header__sp-cta-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
  }
  .site-header__sp-pill {
    padding: 16px clamp(16px, 5vw, 48px);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    min-width: 230px;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--line);
    text-decoration: none;
    line-height: 1;
  }
  .site-header__sp-pill--ghost {
    font-size: 14px;
    padding: 16px 24px;
    background: #f2f2f7;
    border-color: transparent;
    min-width: 100px;
  }
  .site-header__sp-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
  }
  .site-header__sp-list--sub {
    background: #f2f2f7;
    overflow: hidden;
    border-top: 0;
  }
  .site-header__sp-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    line-height: 1;
    border-bottom: 1px solid var(--line);
  }
  html[lang="en"] .site-header__sp-link,
  html[lang="en"] .site-header__sp-pill,
  html[lang="en"] .site-header__sp-employer {
    font-weight: 600;
  }
  .site-header__sp-link.sub {
    padding: 16px 24px;
    font-size: 12px;
  }
  .site-header__sp-link.child {
    padding: 16px 24px 16px 40px;
    font-size: 12px;
  }
  .site-header__sp-link::after {
    content: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.5 3.5L11 8L6.5 12.5" stroke="%23111111" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  }
  .site-header__sp-employer {
    margin: 24px 24px 0;
    padding: 16px auto;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 48px);
    height: 48px;
    background: #eef1f4;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
  }
  .site-header__cta {
    font-size: 10px;
    font-weight: 700;
    height: 34px;
    padding: 12px 16px;
  }
}
.site-header {
  /* =========================
     〜374px
     ========================= */
}
@media (max-width: 374px) {
  .site-header__logo {
    height: 28px;
  }
}

body.is-menu-open {
  overflow: hidden;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: #000066;
  color: #fff;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
  flex: 0 0 auto;
}
.site-footer a:hover {
  text-decoration: underline;
}
.site-footer__main {
  padding: 24px 0;
}
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.site-footer__logo {
  flex: 0 0 auto;
  letter-spacing: 0.02em;
  font-size: 34px;
  line-height: 1;
}
.site-footer__logo-link img {
  height: 44px;
}
.site-footer__logo span {
  font-size: 18px;
  margin-left: 2px;
  font-weight: 700;
}
.site-footer__nav {
  flex: 1 1 auto;
}
.site-footer__nav-list {
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.site-footer__nav-list a {
  font-size: 14px;
  white-space: nowrap;
}
.site-footer__sub-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 24px;
  line-height: 1.25;
}
html[lang="en"] .site-footer__sub-list {
  display: flex;
  flex-wrap: wrap;
}
.site-footer__sub-list a {
  position: relative;
  padding-left: 20px;
  font-size: 12px;
  white-space: nowrap;
}
.site-footer__sub-list a::before {
  content: url('data:image/svg+xml,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_588_5408)"><path d="M11.625 0.375L5.625 6.375" stroke="white" stroke-linecap="round" stroke-linejoin="round"/><path d="M6.375 0.375H11.625V5.625" stroke="white" stroke-linecap="round" stroke-linejoin="round"/><path d="M3.375 0.375H1.5C1.20163 0.375 0.915483 0.493526 0.704505 0.704505C0.493526 0.915483 0.375 1.20163 0.375 1.5V10.5C0.375 10.7984 0.493526 11.0845 0.704505 11.2955C0.915483 11.5065 1.20163 11.625 1.5 11.625H10.5C10.7984 11.625 11.0845 11.5065 11.2955 11.2955C11.5065 11.0845 11.625 10.7984 11.625 10.5V8.625" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_588_5408"><rect width="12" height="12" fill="white"/></clipPath></defs></svg>');
  position: absolute;
  left: 0;
  top: -1px;
  opacity: 0.9;
}
.site-footer__mark {
  flex: 0 0 auto;
  margin-left: auto;
}
.site-footer__mark img {
  width: 86px;
  height: auto;
  display: block;
}
.site-footer__bottom {
  background: #111;
}
.site-footer__bottom-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 16px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-footer__copy {
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 8px 16px;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.site-footer {
  /* ===== SP ===== */
}
@media (max-width: 767px) {
  .site-footer__main {
    padding: 24px;
  }
  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
  .site-footer__nav {
    width: 100%;
  }
  .site-footer__nav-list {
    justify-content: center;
    gap: 4px 16px;
  }
  .site-footer__sub-list {
    justify-content: center;
    gap: 8px 16px;
    grid-template-columns: 1fr;
  }
  .site-footer__sub-list a {
    white-space: normal;
    /* SPは折り返しOK */
    text-align: left;
    /* 好みで center でもOK */
  }
  .site-footer__mark {
    margin-left: 0;
  }
  .site-footer__mark img {
    width: 110px;
  }
  .site-footer__bottom-inner {
    padding: 12px 18px;
    height: 60px;
  }
  .site-footer__copy {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================================================
   Hero / Carousel
   ========================================================= */
.hero {
  padding: 48px 0;
}
.hero__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.hero__viewport {
  position: relative;
  overflow: hidden;
  padding-bottom: 44px;
}
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  top: auto;
  bottom: auto;
  width: auto;
}
.hero__viewport.swiper {
  overflow: hidden;
}
.hero__track.swiper-wrapper {
  align-items: center;
  gap: 0;
}
.hero__track .swiper-slide {
  width: 420px;
  flex-shrink: 0;
}
.hero__dots .hero__dots-pagination,
.hero__dots .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
  margin: 0;
}
.hero__track {
  display: flex;
  align-items: center;
  gap: 24px;
  will-change: transform;
  transition: transform 320ms ease;
}
.hero__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.hero__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #d9d9d9;
  background: transparent;
  cursor: pointer;
}
.hero__dot:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.hero__dot.is-active {
  background: var(--primary);
  border-color: var(--primary);
}
.hero__dot.hero__dot-prev {
  width: 16px;
  height: 16px;
  border-radius: 0;
  border: 0;
  margin-right: 5px;
  position: relative;
}
.hero__dot.hero__dot-prev:hover {
  background: transparent;
  border-color: 0;
}
.hero__dot.hero__dot-prev::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 0;
  border: 0;
  border-top: 1px solid #1EB216;
  border-left: 1px solid #1EB216;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.hero__dot.hero__dot-next {
  width: 16px;
  height: 16px;
  border-radius: 0;
  border: 0;
  margin-left: 5px;
  position: relative;
}
.hero__dot.hero__dot-next:hover {
  background: transparent;
  border-color: 0;
}
.hero__dot.hero__dot-next::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 0;
  border: 0;
  border-top: 1px solid #1EB216;
  border-left: 1px solid #1EB216;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}
@media (max-width: 767px) {
  .hero__inner {
    padding: 0;
  }
}

.hero-card {
  flex: 0 0 auto;
  width: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(16, 24, 40, 0.06);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.hero-card__link {
  display: block;
}
.hero-card__img {
  display: block;
  width: 100%;
  /* height: 280px; */
  -o-object-fit: fill;
     object-fit: fill;
}
.hero-card {
  position: relative;
}
.hero-card__text {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-card__text-cfair {
  position: absolute;
  top: 66%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 8px;
  box-sizing: border-box;
  pointer-events: auto;
}
.hero-card__text-cfair .hero-card__text-title {
  margin: 0;
  padding: 2px 10px;
  font-size: clamp(14px, 2vw, 16px);
  background: var(--primary);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.hero-card__text-cfair .hero-card__text-detail {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  margin-top: 4px;
}
.hero-card__text-cfair .hero-card__text-detail-date {
  margin: 0;
  font-weight: 600;
  font-size: clamp(12px, 1.6vw, 14px);
  line-height: 1.3;
}
.hero-card__text-cfair .hero-card__text-detail-venue {
  margin: 0;
  font-size: clamp(10px, 1.4vw, 12px);
  font-weight: 400;
  line-height: 1.3;
  word-break: break-word;
}
@media (max-width: 767px) {
  .hero {
    padding: 32px 24px 0;
  }
  .hero-card {
    width: min(420px, 100%);
  }
  .layout-grid-banner .hero {
    padding: 0px;
  }
}

/* =========================================================
   Search Block
   ========================================================= */
.search-block {
  padding: 48px 0 40px;
}
.search-block__inner {
  max-width: var(--container);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .search-block__inner {
    padding: 0 24px;
  }
}

/* =========================================================
   Search Form
   ========================================================= */
.search-form {
  background: #f2f2f7;
  border-radius: 16px;
  padding: 40px;
}
.search-form__head {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.search-form__title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}
.search-form__title::before {
  content: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 8H1V10H9V8Z" fill="%23111111"/><path d="M9 14H1V16H9V14Z" fill="%23111111"/><path d="M18 20H1V22H18V20Z" fill="%23111111"/><path d="M18 2H1V4H18V2Z" fill="%23111111"/><path d="M23.414 18L20.167 14.753C20.691 13.962 21 13.017 21 12C21 9.243 18.757 7 16 7C13.243 7 11 9.243 11 12C11 14.757 13.243 17 16 17C17.017 17 17.962 16.691 18.753 16.167L22 19.414L23.414 18ZM13 12C13 10.346 14.346 9 16 9C17.654 9 19 10.346 19 12C19 13.654 17.654 15 16 15C14.346 15 13 13.654 13 12Z" fill="%23111111"/></svg>');
  display: inline-block;
  position: relative;
  top: 0;
  width: 24px;
  height: 24px;
}
.search-form__grid {
  display: grid;
  grid-template-columns: 240px 240px 240px 1fr;
  gap: 16px;
  align-items: center;
}

.search-form__control {
  position: relative;
}
.search-form__control::before {
  position: absolute;
  left: 16px;
  top: 13px;
}
.search-form__control::after {
  content: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.99998 12C7.73479 12 7.48047 11.8946 7.29298 11.707L1.29298 5.70702C1.11082 5.51842 1.01003 5.26582 1.01231 5.00362C1.01458 4.74142 1.11975 4.49061 1.30516 4.3052C1.49057 4.11979 1.74138 4.01462 2.00358 4.01235C2.26578 4.01007 2.51838 4.11086 2.70698 4.29302L7.99998 9.58602L13.293 4.29302C13.3852 4.19751 13.4956 4.12133 13.6176 4.06892C13.7396 4.01651 13.8708 3.98892 14.0036 3.98777C14.1364 3.98662 14.268 4.01192 14.3909 4.0622C14.5138 4.11248 14.6255 4.18673 14.7194 4.28062C14.8133 4.37452 14.8875 4.48617 14.9378 4.60907C14.9881 4.73196 15.0134 4.86364 15.0122 4.99642C15.0111 5.1292 14.9835 5.26042 14.9311 5.38242C14.8787 5.50443 14.8025 5.61477 14.707 5.70702L8.70698 11.707C8.51949 11.8946 8.26517 12 7.99998 12Z" fill="%231EB216"/></svg>');
  position: absolute;
  right: 18px;
  top: 13px;
  pointer-events: none;
}
.search-form__control select,
.search-form__control input[type=text] {
  width: 100%;
  height: 48px;
  padding: 0 40px;
  border-radius: 8px;
  border: 0;
  background: #fff;
  color: var(--text);
  font-size: 14px;
  outline: none;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
}
.search-form__control select::-moz-placeholder, .search-form__control input[type=text]::-moz-placeholder {
  color: rgba(17, 17, 17, 0.35);
  font-weight: 700;
}
.search-form__control select::placeholder,
.search-form__control input[type=text]::placeholder {
  color: rgba(17, 17, 17, 0.35);
  font-weight: 700;
}
.search-form__control select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 56px;
  cursor: pointer;
}
.search-form__control--text::after {
  display: none;
}
.search-form__control--country::before {
  content: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.5 6C13.5 10.5 8 15.5 8 15.5C8 15.5 2.5 10.5 2.5 6C2.5 4.54131 3.07946 3.14236 4.11091 2.11091C5.14236 1.07946 6.54131 0.5 8 0.5C9.45869 0.5 10.8576 1.07946 11.8891 2.11091C12.9205 3.14236 13.5 4.54131 13.5 6Z" stroke="%23111111" stroke-linecap="round" stroke-linejoin="round"/><path d="M8 8.5C9.38071 8.5 10.5 7.38071 10.5 6C10.5 4.61929 9.38071 3.5 8 3.5C6.61929 3.5 5.5 4.61929 5.5 6C5.5 7.38071 6.61929 8.5 8 8.5Z" stroke="%23111111" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.search-form__control--lang::before {
  content: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_44_1420)"><path d="M4.5 5.5H11.5" stroke="%23111111" stroke-linecap="round" stroke-linejoin="round"/><path d="M4.5 8.5H11.5" stroke="%23111111" stroke-linecap="round" stroke-linejoin="round"/><path d="M15.5 7C15.5 3.41 12.142 0.5 8 0.5C3.858 0.5 0.5 3.41 0.5 7C0.5 10.59 3.858 13.5 8 13.5C8.525 13.5 9.037 13.452 9.532 13.363L13.5 15.5V11.409C14.738 10.25 15.5 8.704 15.5 7Z" stroke="%23111111" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_44_1420"><rect width="16" height="16" fill="white"/></clipPath></defs></svg>');
}
.search-form__control--job::before {
  content: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.5 3.5V0.5H10.5V3.5" stroke="%23111111" stroke-linecap="round" stroke-linejoin="round"/><path d="M6.5 9.5H0.5V4.5C0.5 4.23478 0.605357 3.98043 0.792893 3.79289C0.98043 3.60536 1.23478 3.5 1.5 3.5H14.5C14.7652 3.5 15.0196 3.60536 15.2071 3.79289C15.3946 3.98043 15.5 4.23478 15.5 4.5V9.5H9.5" stroke="%23111111" stroke-linecap="round" stroke-linejoin="round"/><path d="M14.5 11.5V13.5C14.5 13.7652 14.3946 14.0196 14.2071 14.2071C14.0196 14.3946 13.7652 14.5 13.5 14.5H2.5C2.23478 14.5 1.98043 14.3946 1.79289 14.2071C1.60536 14.0196 1.5 13.7652 1.5 13.5V11.5" stroke="%23111111" stroke-linecap="round" stroke-linejoin="round"/><path d="M9.5 7.5H6.5V11.5H9.5V7.5Z" stroke="%23111111" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.search-form__control--text::before {
  content: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.5 2.5H15.5" stroke="%23111111" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.5 6.5H15.5" stroke="%23111111" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.5 10.5H15.5" stroke="%23111111" stroke-linecap="round" stroke-linejoin="round"/><path d="M0.5 14.5H15.5" stroke="%23111111" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.5 11.5L4 2.5L0.5 11.5" stroke="%23111111" stroke-linecap="round" stroke-linejoin="round"/><path d="M1.66699 8.5H6.33299" stroke="%23111111" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.search-form__bottom {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: flex-end;
}
.search-form__submit {
  grid-column: 2;
  justify-self: center;
  width: 240px;
  height: 56px;
  border-radius: 6px;
  border: 0;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.search-form__submit:hover {
  background: var(--primary-hover);
}
.search-form__submit-icon {
  content: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_44_1540)"><path d="M15.707 13.293L13 10.586C13.63 9.536 14 8.311 14 7C14 3.14 10.859 0 7 0C3.141 0 0 3.14 0 7C0 10.86 3.141 14 7 14C8.312 14 9.536 13.631 10.586 13L13.293 15.707C13.488 15.902 13.744 16 14 16C14.256 16 14.512 15.902 14.707 15.707L15.707 14.707C16.098 14.316 16.098 13.684 15.707 13.293ZM7 12C4.239 12 2 9.761 2 7C2 4.239 4.239 2 7 2C9.761 2 12 4.239 12 7C12 9.761 9.761 12 7 12Z" fill="white"/></g><defs><clipPath id="clip0_44_1540"><rect width="16" height="16" fill="white"/></clipPath></defs></svg>');
}
.search-form__note {
  grid-column: 3;
  justify-self: end;
  text-align: right;
}
.search-form__count {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.search-form__count-number {
  margin-left: 4px;
  color: var(--primary);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}
.search-form__detail {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text);
}
.search-form__detail:hover {
  color: var(--navy-300);
}
.search-form__detail::after {
  position: relative;
  top: 3px;
  content: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.6875 3.0625L9.625 7L5.6875 10.9375" stroke="%23111111" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
@media (max-width: 1024px) {
  .search-form__bottom {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
  }
  .search-form__submit {
    grid-column: auto;
  }
  .search-form__note {
    grid-column: auto;
    justify-self: center;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .search-form {
    padding: 32px 24px;
  }
  .search-form__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .search-form__submit {
    width: 100%;
  }
  .search-form__count {
    line-height: 1.4;
  }
  .search-form__detail {
    justify-content: center;
  }

  .search-form__title {
    font-size: 20px;
  }

  .search-form__submit {
    font-size: 16px;
  }
}

/* =========================================================
   Quick Search
   ========================================================= */
.quick-search {
  margin-top: 32px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
}
.quick-search__title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.quick-search__icon {
  width: 21px;
  height: 21px;
  content: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_48_1246)"><path d="M20.6154 17.4471L17.0625 13.8941C17.8894 12.516 18.375 10.9082 18.375 9.1875C18.375 4.12125 14.2524 0 9.1875 0C4.12256 0 0 4.12125 0 9.1875C0 14.2537 4.12256 18.375 9.1875 18.375C10.9095 18.375 12.516 17.8907 13.8941 17.0625L17.4471 20.6154C17.703 20.8714 18.039 21 18.375 21C18.711 21 19.047 20.8714 19.3029 20.6154L20.6154 19.3029C21.1286 18.7897 21.1286 17.9603 20.6154 17.4471ZM9.1875 15.75C5.56369 15.75 2.625 12.8113 2.625 9.1875C2.625 5.56369 5.56369 2.625 9.1875 2.625C12.8113 2.625 15.75 5.56369 15.75 9.1875C15.75 12.8113 12.8113 15.75 9.1875 15.75Z" fill="%23111111"/><path d="M11.375 8.80682H9.625L10.9773 5.625H7V10.3977H8.59091V14.375L11.375 8.80682Z" fill="%23111111"/></g><defs><clipPath id="clip0_48_1246"><rect width="21" height="21" fill="white"/></clipPath></defs></svg>');
}
.quick-search__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 12px;
}
.quick-search__list .label {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s ease;
}
.quick-search__list .label:hover {
  background: #f2f2f7;
}
@media (max-width: 767px) {
  .quick-search {
    padding: 0;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .quick-search__title {
    justify-content: center;
    font-size: 18px;
  }
  .quick-search__list {
    justify-content: center;
    gap: 12px;
  }
}

/* =========================================================
   Main Layout Grid
   ========================================================= */
.layout-grid {
  max-width: var(--container);
  margin: 16px auto 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
}
.layout-grid-banner {
  grid-template-columns: 420px minmax(0, 1fr);
  padding-top: 24px;
  margin-bottom: 8px;
  margin-top: 24px;
  gap: 40px;
}
.layout-grid-banner .hero {
  padding: 0;
}
@media (max-width: 767px) {
  .layout-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
}

/* =========================================================
   Offer Box (新着 / おすすめ)
   ========================================================= */
.offer-box {
  /* margin-bottom: 56px; */
}
.offer-box__head {
  margin-bottom: 24px;
}
.offer-box__title {
  margin: 0;
  padding: 6px 0 6px 16px;
  border-left: 6px solid #000066;
  color: var(--text);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media (max-width: 767px) {
  .offer-box__head {
    margin-bottom: 24px;
  }
  .offer-box__title {
    font-size: 24px;
  }
}

.offer-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1023px) {
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.offer-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.offer-card:hover {
  background-color: #f6f6fc;
  box-shadow: 0 14px 30px rgba(16, 24, 40, 0.05);
}
.offer-card__link {
  height: 100%;
  padding: 20px 24px 8px;
  display: flex;
  flex-direction: column;
}
.offer-card__job {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.offer-card__meta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.offer-card__company {
  padding-top: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.offer-card__logo-wrap {
  width: 100px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.offer-card__logo-wrap img{
  max-width: 100%;
}

.offer-card__logo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.offer-card__company-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  white-space: normal;
  overflow: visible;
  word-break: break-word;
}
.offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f2f2f7;
  color: #344054;
  font-size: 12px;
  line-height: 1;
}
.offer-pill--salary::before {
  content: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.9375 1.75L7.4375 5.95L10.9375 1.75" stroke="%23111111" stroke-linecap="round" stroke-linejoin="round"/><path d="M7.4375 5.94995V12.25" stroke="%23111111" stroke-linecap="round" stroke-linejoin="round"/><path d="M4.6375 5.94995H10.2375" stroke="%23111111" stroke-linecap="round" stroke-linejoin="round"/><path d="M4.6375 8.75H10.2375" stroke="%23111111" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.offer-pill--place::before {
  content: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_42_654)"><path d="M11.8125 5.25C11.8125 9.1875 7 13.5625 7 13.5625C7 13.5625 2.1875 9.1875 2.1875 5.25C2.1875 3.97365 2.69453 2.74957 3.59705 1.84705C4.49957 0.94453 5.72365 0.4375 7 0.4375C8.27635 0.4375 9.50043 0.94453 10.403 1.84705C11.3055 2.74957 11.8125 3.97365 11.8125 5.25Z" stroke="%23111111" stroke-linecap="round" stroke-linejoin="round"/><path d="M7 7.4375C8.20812 7.4375 9.1875 6.45812 9.1875 5.25C9.1875 4.04188 8.20812 3.0625 7 3.0625C5.79188 3.0625 4.8125 4.04188 4.8125 5.25C4.8125 6.45812 5.79188 7.4375 7 7.4375Z" stroke="%23111111" stroke-linecap="round" stroke-linejoin="round"/></g><defs><clipPath id="clip0_42_654"><rect width="14" height="14" fill="white"/></clipPath></defs></svg>');
}
@media (max-width: 1023px) {
  .ra-banner {
    max-width: 480px;
    margin: 0 auto;
  }
}
.ra-banner__link {
  display: block;
}
.ra-banner__img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================================
   PR Text Card
   ========================================================= */
.daijob_pr {
  /* margin-top: 56px; */
  background: #f2f2f7;
  border-radius: var(--radius);
  overflow: hidden;
}
.daijob_pr__inner {
  padding: 40px;
}
.daijob_pr__inner::after {
  content: "";
  display: block;
  clear: both;
}
.daijob_pr__media {
  float: right;
  width: 244px;
  height: 244px;
  margin: 0 0 16px 16px;
}
.daijob_pr__globe {
  width: 244px;
  height: 244px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.daijob_pr__heading {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
}
.daijob_pr__heading span {
  font-size: 18px;
  display: inline-block;
}
@media (max-width: 767px) {
  .daijob_pr__inner {
    display: flex;
    flex-direction: column;
  }
  .daijob_pr__heading {
    font-size: 20px;
    order: 0;
  }
  .daijob_pr__heading span {
    display: inline;
    font-size: 20px;
  }
  .daijob_pr__media {
    order: 1;
  }
  .daijob_pr__item {
    order: 2;
  }
}
.daijob_pr__item {
  margin-top: 16px;
}
.daijob_pr__item:first-of-type {
  margin-top: 0;
}
.daijob_pr__title {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
}
.daijob_pr__title::before {
  position: relative;
  top: 2px;
  width: 20px;
  height: 20px;
}
.daijob_pr__title.pr01::before {
  content: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_48_1143)"><path d="M10 0C8.02219 0 6.08879 0.58649 4.4443 1.6853C2.79981 2.78412 1.51809 4.3459 0.761209 6.17317C0.00433281 8.00043 -0.193701 10.0111 0.192152 11.9509C0.578004 13.8907 1.53041 15.6725 2.92894 17.0711C4.32746 18.4696 6.10929 19.422 8.0491 19.8079C9.98891 20.1937 11.9996 19.9957 13.8268 19.2388C15.6541 18.4819 17.2159 17.2002 18.3147 15.5557C19.4135 13.9112 20 11.9778 20 10C19.9921 7.35027 18.936 4.81133 17.0623 2.93767C15.1887 1.06402 12.6497 0.00791363 10 0ZM10 17.5C8.51664 17.5 7.0666 17.0601 5.83323 16.236C4.59986 15.4119 3.63857 14.2406 3.07091 12.8701C2.50325 11.4997 2.35473 9.99168 2.64411 8.53682C2.9335 7.08197 3.64781 5.74559 4.6967 4.6967C5.7456 3.64781 7.08197 2.9335 8.53683 2.64411C9.99169 2.35472 11.4997 2.50325 12.8701 3.0709C14.2406 3.63856 15.4119 4.59985 16.236 5.83322C17.0601 7.06659 17.5 8.51664 17.5 10C17.4941 11.9873 16.702 13.8915 15.2967 15.2967C13.8915 16.702 11.9873 17.4941 10 17.5Z" fill="%231EB216"/><path d="M14.375 8.75H11.25V5.625C11.25 5.29348 11.1183 4.97554 10.8839 4.74112C10.6495 4.5067 10.3315 4.375 10 4.375C9.66848 4.375 9.35054 4.5067 9.11612 4.74112C8.8817 4.97554 8.75 5.29348 8.75 5.625V10C8.75 10.3315 8.8817 10.6495 9.11612 10.8839C9.35054 11.1183 9.66848 11.25 10 11.25H14.375C14.7065 11.25 15.0245 11.1183 15.2589 10.8839C15.4933 10.6495 15.625 10.3315 15.625 10C15.625 9.66848 15.4933 9.35054 15.2589 9.11612C15.0245 8.8817 14.7065 8.75 14.375 8.75Z" fill="%231EB216"/></g><defs><clipPath id="clip0_48_1143"><rect width="20" height="20" fill="white"/></clipPath></defs></svg>');
  margin-bottom: 5px;
}
.daijob_pr__title.pr02::before {
  content: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_48_1150)"><path d="M0 0V5C0 7.58185 2.00461 10 5.17677 10C5.60722 11.6618 6.86333 12.9733 8.4877 13.4918C8.265 14.6632 7.85248 16.1304 7.08405 17.5H5V20H15V17.5H12.916C12.1475 16.1304 11.735 14.6632 11.5123 13.4918C13.1367 12.9733 14.3928 11.6618 14.8232 10C17.9849 10 20 7.58973 20 5V0H0ZM2.5 5V2.5H5V7.5C3.62183 7.5 2.5 6.37878 2.5 5ZM17.5 5C17.5 6.37878 16.3782 7.5 15 7.5V2.5H17.5V5Z" fill="%231EB216"/></g><defs><clipPath id="clip0_48_1150"><rect width="20" height="20" fill="white"/></clipPath></defs></svg>');
  margin-bottom: 5px;
}
.daijob_pr__title.pr03::before {
  content: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.5 1.25H2.5C1.83696 1.25 1.20107 1.51339 0.732233 1.98223C0.263392 2.45107 0 3.08696 0 3.75L0 4.25L10 9.875L20 4.375V3.75C20 3.08696 19.7366 2.45107 19.2678 1.98223C18.7989 1.51339 18.163 1.25 17.5 1.25Z" fill="%231EB216"/><path d="M9.375 12.375L0 7.125V16.25C0 16.913 0.263392 17.5489 0.732233 18.0178C1.20107 18.4866 1.83696 18.75 2.5 18.75H17.5C18.163 18.75 18.7989 18.4866 19.2678 18.0178C19.7366 17.5489 20 16.913 20 16.25V7.125L10.625 12.375C10.428 12.4616 10.2152 12.5062 10 12.5062C9.78483 12.5062 9.572 12.4616 9.375 12.375Z" fill="%231EB216"/></svg>');
  margin-bottom: 5px;
}
.daijob_pr__title.pr04::before {
  content: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_48_1172)"><path d="M10 0C4.5 0 0 4.5 0 10C0 15.5 4.5 20 10 20C15.5 20 20 15.5 20 10C20 4.5 15.5 0 10 0ZM10 17.5C5.875 17.5 2.5 14.125 2.5 10C2.5 5.875 5.875 2.5 10 2.5C14.125 2.5 17.5 5.875 17.5 10C17.5 14.125 14.125 17.5 10 17.5Z" fill="%231EB216"/><path d="M7.5 8.75C8.19036 8.75 8.75 8.19036 8.75 7.5C8.75 6.80964 8.19036 6.25 7.5 6.25C6.80964 6.25 6.25 6.80964 6.25 7.5C6.25 8.19036 6.80964 8.75 7.5 8.75Z" fill="%231EB216"/><path d="M12.5 8.75C13.1904 8.75 13.75 8.19036 13.75 7.5C13.75 6.80964 13.1904 6.25 12.5 6.25C11.8096 6.25 11.25 6.80964 11.25 7.5C11.25 8.19036 11.8096 8.75 12.5 8.75Z" fill="%231EB216"/><path d="M12.5 10C11.75 10 11.25 10.5 11.25 11.25C11.25 12 10.75 12.5 10 12.5C9.25 12.5 8.75 12 8.75 11.25C8.75 10.5 8.25 10 7.5 10C6.75 10 6.25 10.5 6.25 11.25C6.25 13.375 7.875 15 10 15C12.125 15 13.75 13.375 13.75 11.25C13.75 10.5 13.25 10 12.5 10Z" fill="%231EB216"/></g><defs><clipPath id="clip0_48_1172"><rect width="20" height="20" fill="white"/></clipPath></defs></svg>');
  margin-bottom: 5px;
}
.daijob_pr__title.en.pr01::before {
  content: "\f072";
  color: #8dbcce;
  font: normal normal normal 20px FontAwesome;
  margin-bottom: 5px;
}
.daijob_pr__title.en.pr02::before {
  content: "\f0ac";
  color: #30b82b;
  font: normal normal normal 20px FontAwesome;
  margin-bottom: 5px;
}
.daijob_pr__title.en.pr03::before {
  content: "\f002";
  color: #fab500;
  font: normal normal normal 20px FontAwesome;
  margin-bottom: 5px;
}
.daijob_pr__text {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
}
@media (max-width: 1023px) {
  .daijob_pr__inner {
    padding: 24px;
  }
  .daijob_pr__media {
    float: none;
    width: auto;
    height: auto;
    margin: 0 0 12px;
    display: flex;
    justify-content: center;
  }
  .daijob_pr__globe {
    width: 240px;
    height: 240px;
  }
  .daijob_pr__heading {
    margin-bottom: 10px;
    font-size: 20px;
  }
  .daijob_pr__item {
    margin-top: 16px;
  }
  .daijob_pr__title {
    font-size: 15px;
  }
  .daijob_pr__text {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .daijob_pr__title {
    font-size: 18px;
  }

  .daijob_pr__text {
    font-size: 14px;
  }
}

/* =========================================================
   Side Column Cards
   ========================================================= */
.layout-grid__side,
.layout-grid__main {
  display: grid;
  gap: 56px;
  align-content: start;
}

.layout-grid-banner .layout-grid__main {
  gap: 24px;
}

/* =========================================================
   Company Feature (side slider)
   ========================================================= */
@media (min-width: 768px) {
  .company-feature {
    max-width: 320px;
  }
}
@media (max-width: 767px) {
  .company-feature {
    max-width: calc(100vw - 48px);
  }
}
.company-feature .card-section__header {
  padding: 0px;
  border-bottom: 0;
}
.company-feature .card-section__title {
  margin: 0 0 24px;
  padding: 6px 0 6px 16px;
  border-left: 6px solid #000066;
  color: var(--text);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}
.company-feature__viewport {
  position: relative;
  overflow: hidden;
  padding-bottom: 32px;
  margin: 0 auto;
}
.company-feature__viewport.swiper {
  overflow: hidden;
}
.company-feature__track.swiper-wrapper {
  align-items: stretch;
}
.company-feature__track .swiper-slide {
  flex: 0 0 100%;
  min-width: 0;
  width: 100%;
}
.company-feature__track {
  display: flex;
  align-items: stretch;
  gap: 0;
  will-change: transform;
  transition: transform 320ms ease;
}
.company-feature__slide {
  flex: 0 0 100%;
  min-width: 0;
}
.company-feature__dots .company-feature__dots-pagination,
.company-feature__dots .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
  margin: 0;
}
.company-feature__link {
  display: block;
  overflow: hidden;
  border-radius: 14px;
}
.company-feature__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 10px 22px var(--line);
  will-change: transform;
  transition: transform 320ms ease;
}
.company-feature__slide:hover .company-feature__img {
  transform: scale(1.05);
}
.company-feature__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.company-feature__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #d9d9d9;
  background: transparent;
  cursor: pointer;
}
.company-feature__dot:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.company-feature__dot.is-active {
  background: var(--primary);
  border-color: var(--primary);
}
.company-feature__dot.company-feature__dot-prev {
  width: 16px;
  height: 16px;
  border-radius: 0;
  border: 0;
  margin-right: 5px;
  position: relative;
}
.company-feature__dot.company-feature__dot-prev:hover {
  background: transparent;
  border-color: 0;
}
.company-feature__dot.company-feature__dot-prev::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 0;
  border: 0;
  border-top: 1px solid #1EB216;
  border-left: 1px solid #1EB216;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.company-feature__dot.company-feature__dot-next {
  width: 16px;
  height: 16px;
  border-radius: 0;
  border: 0;
  margin-left: 5px;
  position: relative;
  background: transparent;
}
.company-feature__dot.company-feature__dot-next:hover {
  background: transparent;
  border-color: 0;
}
.company-feature__dot.company-feature__dot-next::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 0;
  border: 0;
  border-top: 1px solid #1EB216;
  border-left: 1px solid #1EB216;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}
@media (max-width: 767px) {
  .company-feature .card-section__title {
    font-size: 24px;
  }
  .company-feature__viewport {
    padding-bottom: 32px;
  }
}

/* =========================================================
   Company Box
   ========================================================= */
.company-box__head {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.company-box__title {
  margin: 0;
  padding: 6px 0 6px 16px;
  border-left: 6px solid #000066;
  color: var(--text);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}
.company-box__count {
  margin: 0;
  line-height: 1;
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.company-box__count-number {
  color: var(--primary);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}
.company-box__count-unit {
  position: relative;
  top: -1px;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
.company-box__update {
  margin-top: 16px;
  margin-bottom: 0px;
  padding: 0px;
  font-size: 14px;
  text-align: right;
}
.company-box__see-more {
  margin-top: 16px;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 400ms ease, transform 400ms ease, max-height 400ms ease, margin 400ms ease;
  overflow: hidden;
  max-height: 100px;
}
.company-box__see-more.is-hidden {
  opacity: 0;
  display: none;
  transform: translateY(-10px);
  pointer-events: none;
  max-height: 0;
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
}
.company-box__see-more .btn:hover {
  color: #6a6969 !important;
}
.company-box__see-more .pill-btn {
  transition: background-color 200ms ease, transform 200ms ease;
}
.company-box__see-more .pill-btn:hover {
  transform: translateY(-1px);
}
.company-box__see-more .pill-btn:active {
  transform: translateY(0);
}
@media (max-width: 767px) {
  .company-box__head {
    margin-bottom: 16px;
  }
  .company-box__title {
    font-size: 24px;
  }
  .company-box__count-number {
    font-size: 30px;
  }
  .search-block {
    padding-bottom: 47px;
  }
}

.company-logo-list {
  /* padding: 8px; */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  position: relative;
}
.company-logo-list li {
  min-width: 0;
  flex: 0 0 calc((100% - 8px) / 2);
  display: flex;
  justify-content: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 400ms ease, transform 400ms ease, visibility 400ms ease;
  overflow: hidden;
  visibility: visible;
  position: relative;
}
.company-logo-list li.is-hidden {
  opacity: 0;
  transform: translateY(-10px);
  max-height: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  visibility: hidden;
  position: absolute;
  pointer-events: none;
}
.company-logo-list a {
  width: 100%;
  display: flex;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}
.company-logo-list img {
  width: auto;
  height: auto;
  aspect-ratio: 2/1;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  border-radius: 12px;
  padding: 8px;
  transition: transform 320ms ease;
}
.company-logo-list img:hover {
  transform: scale(1.5);
}
/* =========================================================
   Side Article Carousel
   ========================================================= */
.side-article-feed {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.side-article-feed .card-section__header {
  padding: 0;
  margin-bottom: 24px;
}
.side-article-feed .card-section__title {
  margin: 0;
  padding: 6px 0 6px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 6px solid #000066;
  color: var(--text);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}
.side-article-feed__sub {
  font-size: 16px;
  letter-spacing: 0;
  min-width: max-content;
}
.side-article-feed__viewport {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin: 0 auto;
  padding-bottom: 32px;
  width: 100%;
  box-sizing: border-box;
}
.side-article-feed__viewport.swiper {
  overflow: hidden;
}
@media (min-width: 768px) {
  .side-article-feed__viewport {
    max-width: 320px;
  }
}
@media (max-width: 767px) {
  .side-article-feed__viewport {
    padding: 8px 0 16px;
    padding-bottom: 32px;
    max-width: calc(100vw - 48px);
  }
}
.side-article-feed__track-wrap {
  overflow: hidden;
  border-radius: 16px;
  padding-bottom: var(--side-article-nav-h);
}
.side-article-feed__viewport .side-article-feed__track.swiper-wrapper {
  border-radius: 16px;
  padding-bottom: var(--side-article-nav-h);
  overflow: visible;
}
@media (max-width: 767px) {
  .side-article-feed__track-wrap,
  .side-article-feed__viewport .side-article-feed__track.swiper-wrapper {
    font-size: 14px;
  }
}
.side-article-feed__track {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  will-change: transform;
  transition: transform 360ms ease;
  transform: translateX(0);
  align-items: stretch;
}
.side-article-feed__track.swiper-wrapper {
  align-items: stretch;
}
.side-article-feed__viewport .swiper-slide,
.side-article-feed__track .swiper-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  height: auto;
}
.side-article-feed__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: auto;
}
.side-article-feed__dots .side-article-feed__dots-pagination,
.side-article-feed__dots .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  position: relative;
  margin: 0;
}
.side-article-feed__slide:hover {
  opacity: 0.8;
}
.side-article-feed__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.side-article-feed__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid #d0d5dd;
  background: #f2f4f7;
  cursor: pointer;
}
.side-article-feed__dot:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.side-article-feed__dot.is-active {
  background: var(--primary);
  border-color: var(--primary);
}
.side-article-feed__dot.side-article-feed__dot-prev {
  width: 16px;
  height: 16px;
  border-radius: 0;
  border: 0;
  margin-right: 5px;
  position: relative;
  background: transparent;
}
.side-article-feed__dot.side-article-feed__dot-prev:hover {
  background: transparent;
  border-color: 0;
}
.side-article-feed__dot.side-article-feed__dot-prev::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 0;
  border: 0;
  border-top: 1px solid #1EB216;
  border-left: 1px solid #1EB216;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.side-article-feed__dot.side-article-feed__dot-next {
  width: 16px;
  height: 16px;
  border-radius: 0;
  border: 0;
  margin-left: 5px;
  position: relative;
  background: transparent;
}
.side-article-feed__dot.side-article-feed__dot-next:hover {
  background: transparent;
  border-color: 0;
}
.side-article-feed__dot.side-article-feed__dot-next::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 0;
  border: 0;
  border-top: 1px solid #1EB216;
  border-left: 1px solid #1EB216;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}

/* =========================================================
   Side Article Card
   ========================================================= */
.side-article-card {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  height: 100%;
}
@media (max-width: 768px) {
  .side-article-card {
    min-height: 442px;
  }
}

.side-article-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.side-article-card__media img {
  width: 100%;
  height: 200px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.side-article-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 200px);
}
.side-article-card__meta {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.side-article-card__badge {
  height: 16px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--brand);
  font-size: 10px;
  line-height: 1;
}
.side-article-card__date {
  font-size: 14px;
  color: #999;
  letter-spacing: 0.02em;
}
.side-article-card__title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.side-article-card__excerpt {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.side-article-card__source {
  margin: 0;
  font-size: 12px;
  text-align: right;
  margin-top: auto;
}

/* =========================================================
   Side Banners
   ========================================================= */
.side-banners__inner {
  display: grid;
  gap: 24px;
}
.side-banners__item {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  line-height: 0;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
.side-banners__item img {
  width: 100%;
  height: auto;
  display: block;
}
.side-banners__item:hover {
  opacity: 0.92;
}
.side-banners__item:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* =========================================================
   Job Search Page
   ========================================================= */
.job-search-page .layout-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}
.job-search-page .layout-grid:has(.layout-grid__side) {
  grid-template-columns: minmax(0, 1fr) 300px;
}
.job-search-page .layout-grid:has(.layout-grid__side) .location .selects {
  grid-template-columns: minmax(50px, 160px) minmax(0, 280px) minmax(0, 280px);
}
.job-search-page .hero-card {
  width: 300px;
}
.job-search-page .hero-card__text {
  padding: 6px;
}
.job-search-page .hero-card .hero-card__text-cfair {
  width: 180px;
  gap: 0.25rem;
}
.job-search-page .hero-card__text-cfair .hero-card__text-title {
  width: 100%;
  text-align: center;
  padding: 0px 12px;
}
.job-search-page .hero-card__text-cfair .hero-card__text-detail {
  gap: 0;
}
.job-search-page .hero-card .hero-card__text-detail-date {
  font-size: 13px;
}
.job-search-page .hero-card .hero-card__text-detail-venue {
  font-size: 10px;
}
@media (max-width: 991px) {
  .job-search-page .layout-grid {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    gap: 40px;
  }

  .job-search-page .layout-grid:has(.layout-grid__side) .layout-grid__main {
    order: 1;
    justify-content: center;
  }

  .job-search-page .hero-card {
    width: 100% !important;
  }

  .job-search-page .hero-card__text {
    padding: 6px;
  }

  .job-search-page .hero-card .hero-card__text-cfair {
    width: 180px;
    gap: 0.25rem;
    background-color: #fff;
    border-radius: 12px;
  }

  .job-search-page .hero-card__text-cfair .hero-card__text-title {
    width: 100%;
    text-align: center;
    padding: 0px 12px;
  }

  .job-search-page .hero-card__text-cfair .hero-card__text-detail {
    gap: 0;
  }

  .job-search-page .hero-card .hero-card__text-detail-date {
    font-size: 13px;
  }

  .job-search-page .hero-card .hero-card__text-detail-venue {
    font-size: 10px;
  }

  .job-search-page .job-listing {
    margin-left: 40px;
    margin-right: 40px;
  }

  .job-search-page .salary {
    display: flex;
    flex-wrap: wrap;
  }

  .job-search-page .salary .select-currency-row {
    width: 100%;
  }
  .job-search-page .salary .select-salary-min,
  .job-search-page .salary .select-salary-max {
    width: 184px;
  }

  .job-search-page .location .selects {
    display: flex;
    flex-direction: column;
    width: 280px;
  }

  .job-search-page .layout-grid:has(.layout-grid__side) .layout-grid__side {
    justify-content: center;
    margin-bottom: 0;
  }
}

@media (min-width: 680px) and (max-width: 769px) {
  .job-search-page .hero-card {
    width: 420px;
  }

  .hero-card__text-cfair {
    width: 200px;
    gap: 0.25rem;
    top: 66.5%;
    gap: 2px;
  }

  .job-search-page .layout-grid:has(.layout-grid__side) {
    grid-template-columns: 1fr;
  }
  .job-search-page .layout-grid:has(.layout-grid__side) .layout-grid__main {
    order: 2;
  }
  .job-search-page .layout-grid:has(.layout-grid__side) .layout-grid__side {
    justify-content: center;
  }
  .job-search-page .layout-grid:has(.layout-grid__side) .search-page__inner .page-title--result {
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .job-search-page .layout-grid__side,
  .job-search-result-page .hero-card-banner {
    margin-top: 24px;
  }
  .job-search-page .job-listing {
    margin-left: 24px;
    margin-right: 24px;
  }
  .hero-card__text-cfair {
    width: 200px;
    gap: 0.25rem;
    top: 66.5%;
    gap: 2px;
    background: transparent;
    padding: 2px 10px;
  }
  .job-search-page .hero-card .hero-card__text-cfair,
  .result-main .hero-card-banner .hero-card__text-cfair {
    background: transparent !important;
  }

  .job-search-page .layout-grid {
    margin-top: 0;
  }

  .job-search-page .layout-grid:has(.layout-grid__side) .layout-grid__main {
    order: 2;
  }

  .job-search-page .career-level-search .checkline {
    flex-direction: column;
  }
}

@media (max-width: 429px) {
  html[lang="en"] .job-search-page .job-listing .job-listing__title {
    text-align: left;
  }
}

@media (max-width: 379px) {
  .job-search-page .job-listing .job-listing__title {
    font-size: 20px;
  }
}

.breadcrumb {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 0;
  font-size: 12px;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
}
.breadcrumb__item {
  display: inline;
  align-items: center;
  gap: 8px;
}
.breadcrumb__item .icon {
  line-height: 1;
  vertical-align: middle;
}
.breadcrumb__item .icon::after {
  content: url('data:image/svg+xml,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.875 2.625L8.25 6L4.875 9.375" stroke="%23AAAAAA" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.breadcrumb__item a {
  color: inherit;
}
.breadcrumb__item a:hover {
  color: var(--navy-300);
}
@media (max-width: 767px) {
  .breadcrumb {
    padding: 24px;
  }
}

.search-page__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.page-title {
  padding: 0 0 24px;
}
.page-title__text {
  margin: 0;
  padding: 6px 0 6px 16px;
  border-left: 6px solid var(--navy-500);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media (max-width: 767px) {
  .page-title {
    padding: 6px 0 12px;
  }
  .page-title__text {
    font-size: 24px;
  }
}

.search-panel {
  border-top: 1px solid var(--line);
}

/* ===== rows ===== */
.search-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}
.job-search-page .layout-grid:has(.layout-grid__side) .search-row {
  grid-template-columns: 140px minmax(0, 1fr);
}
.search-row__label {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  gap: 0.5rem;
}
.search-row__field {
  /* 追加：複製で field が増えても必ず右カラム（2列目）に積む */
  grid-column: 2;
  min-width: 0;
}
.search-row--features .search-row__label {
  padding-top: 6px;
}
@media (max-width: 767px) {
  .search-row {
    grid-template-columns: 1fr;
    padding: 24px 0;
  }
  .job-search-page .layout-grid:has(.layout-grid__side) .search-row {
    grid-template-columns: 1fr;
  }
  .search-row__field {
    grid-column: auto;
    padding: 0;
  }
  .search-row__label {
    padding-top: 0;
    font-size: 14px;
  }
}

/* ===== checkbox UI ===== */
.chk {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.chk input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.chk__ui {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.chk__text {
  font-size: 14px;
  color: #111;
  line-height: 1.4;
  white-space: nowrap;
}
.chk input:checked + .chk__ui {
  background: var(--primary);
  border-color: var(--primary);
}
.chk input:checked + .chk__ui::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  position: relative;
  top: -1px;
}
.chk--tag .chk__text {
  white-space: normal;
}

.checkline {
  padding: 0 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.checkline--mt {
  margin-top: 16px;
}
.checkline--mt.disabled .chk .chk__text{
  color: #BFBFBF;
}
.taggrid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 0 8px;
}
.taggrid:has(.chk) {
  margin-top: 16px;
}

/* ===== select / input ===== */
.select {
  width: 280px;
  max-width: 100%;
  position: relative;
}
.select select {
  width: 100%;
  height: 48px;
  border-radius: 6px;
  border: 1px solid #e4e7ec;
  background: #fff;
  padding: 0 32px 0 16px;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.select::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.textline input[type=text] {
  width: 100%;
  height: 44px;
  border-radius: 6px;
  border: 1px solid #e4e7ec;
  padding: 0 14px;
  font-size: 14px;
}
.textline input[type=text]::-moz-placeholder {
  color: #BFBFBF;
}
.textline input[type=text]::placeholder {
  color: #BFBFBF;
}

.inline-add {
  display: flex;
  align-items: center;
  gap: 16px;
}
.inline-add + .inline-add {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .inline-add .select {
    width: 100%;
  }
}

.salary {
  display: grid;
  grid-template-columns: minmax(50px, 280px) minmax(0, 184px) 20px minmax(0, 184px);
  gap: 16px;
  align-items: center;
}
.salary__sep {
  text-align: center;
}
@media (max-width: 767px) {
  .salary {
    align-items: center;
    gap: 16px 1px;
  }
  .salary > .select:nth-child(1) {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .salary > .select:nth-child(2),
  .salary > .select:nth-child(4) {
    flex: 1 1 0;
    min-width: 0;
  }
  .salary > .salary__sep {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    line-height: 1;
    margin: 0 2px;
  }
  .salary > .select {
    width: 100%;
    min-width: 0;
  }
  .salary > .select select {
    width: 100%;
    min-width: 0;
  }
  .salary > .select-currency-row .select-currency {
    width: 100%;
  }
}

.location {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.location:first-child {
  margin-top: 0;
}
.location .selects {
  display: grid;
  grid-template-columns: minmax(50px, 184px) minmax(0, 280px) minmax(0, 280px);
  gap: 16px;
}
@media (max-width: 767px) {
  .location .selects {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}
.location .select {
  width: 100%;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 14px 24px;
  border-radius: 24px;
  border: 1px solid var(--primary);
  background: #fff;
  color: var(--primary);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.pill-btn:hover {
  background: #dcfbdb;
}
.pill-btn__icon {
  font-size: 16px;
}
.pill-btn--add {
  padding: 14px 24px;
  min-width: 105px;
}
@media (max-width: 767px) {
  .pill-btn {
    gap: 6px;
    padding: 8px 12px;
  }
  .pill-btn--add {
    min-width: 90px;
  }
}

/* ===== features ===== */
.feature {
  border: 0;
  padding: 0;
  margin: 0;
  margin-bottom: 24px;
}
.feature:last-child {
  margin-bottom: 0;
}
.feature__summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.feature__summary::-webkit-details-marker {
  display: none;
}
.feature__summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid #111;
  border-bottom: 1px solid #111;
  transform: rotate(-45deg);
  margin-left: 4px;
  position: relative;
  top: -1px;
  transition: transform 0.2s ease, top 0.2s ease;
}
.feature[open] .feature__summary::after {
  transform: rotate(45deg);
  top: -2px;
}
.feature__body {
  padding: 0 8px;
  margin-top: 16px;
}
.feature__body-anim {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: height 220ms ease, opacity 180ms ease, transform 180ms ease;
  will-change: height;
}
.feature[open] > .feature__body .feature__body-anim {
  opacity: 1;
  transform: translateY(0);
}
.feature.is-closing > .feature__body .feature__body-anim {
  opacity: 0;
  transform: translateY(-6px);
}

.feature-links {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.feature-links__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #111;
}
.feature-links__item::after {
  content: "›";
  opacity: 0.5;
  margin-left: 6px;
}
@media (max-width: 767px) {
  .feature-links__item {
    font-size: 13px;
  }
}

/* ===== submit ===== */
.search-submit {
  display: flex;
  justify-content: center;
  padding: 32px 0 0;
}
.search-submit__btn {
  grid-column: 2;
  justify-self: center;
  width: 240px;
  height: 56px;
  border-radius: 6px;
  border: 0;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.search-submit__btn:hover {
  background-color: var(--primary-hover);
}
.search-submit__icon {
  content: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_44_1540)"><path d="M15.707 13.293L13 10.586C13.63 9.536 14 8.311 14 7C14 3.14 10.859 0 7 0C3.141 0 0 3.14 0 7C0 10.86 3.141 14 7 14C8.312 14 9.536 13.631 10.586 13L13.293 15.707C13.488 15.902 13.744 16 14 16C14.256 16 14.512 15.902 14.707 15.707L15.707 14.707C16.098 14.316 16.098 13.684 15.707 13.293ZM7 12C4.239 12 2 9.761 2 7C2 4.239 4.239 2 7 2C9.761 2 12 4.239 12 7C12 9.761 9.761 12 7 12Z" fill="white"/></g><defs><clipPath id="clip0_44_1540"><rect width="16" height="16" fill="white"/></clipPath></defs></svg>');
}
@media (max-width: 767px) {
  .search-submit {
    padding-top: 32px;
  }
  .search-submit__btn {
    width: 240px;
    height: 56px;
    font-size: 16px;
    padding: 20px 24px;
  }
}

/* =========================================================
   Search Result Page (search_result.html)
   ========================================================= */
.result-page {
  padding: 0 0 80px;
}
.result-page__inner {
  max-width: var(--container);
  padding: 0 24px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .job-search-result-page .result-page,
  .page-joblist-result .result-page {
    padding-bottom: 0;
  }
  .page-joblist-result .result-main .hero-card-banner {
    margin-bottom: 16px;
  }
  .page-joblist-result .page-title--result {
    padding: 24px 0 !important;
  }
}

.page-title--result {
  padding-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.page-joblist-result .page-title--result {
  padding-bottom: 8px;
}

.page-title--result .search_saved .title-en {
  width: max-content;
}

.search_saved .fa {
  margin-top: -3px;
}

@media (max-width: 767px) {
  .job-search-page .search-page__inner {
    padding: 0;
  }
}

@media (max-width: 580px) {
  .job-search-page .clearfix-search_saved {
    width: 100%;
  }
  .job-search-page .page-title--result {
    flex-direction: column;
    align-items: flex-start;
  }
  .job-search-page .page-title--result .search_saved {
    justify-content: center;
  }

  html[lang="en"] .breadcrumb__item {
    gap: 0;
  }
}

.result-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1023px) {
  .result-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.result-toolbar {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 16px;
  align-items: center;
  padding: 12px 0 12px;
}
@media (max-width: 767px) {
  .result-toolbar {
    grid-template-columns: 1fr;
  }
}

.result-sort {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 767px) {
  .result-sort {
    width: 100%;
  }
}
.result-sort .select {
  max-width: 100%;
}
.result-sort .select--sm {
  width: 100%;
}
.result-sort .select--sm select {
  height: 40px;
  font-size: 14px;
}

.select--sm {
  position: relative;
  width: 180px;
}
@media (max-width: 767px) {
  .select--sm {
    width: 100%;
  }
}
.select--sm {
  /* 並び替えアイコン */
}
.select--sm::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.7;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M0.5 2.5H15.5' stroke='%23111111' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2.5 6.5H13.5' stroke='%23111111' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.5 10.5H11.5' stroke='%23111111' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.5 14.5H9.5' stroke='%23111111' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.select--sm select {
  height: 40px;
  font-size: 14px;
  padding-left: 44px;
}

.result-meta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  font-size: 14px;
  color: #111;
}
.result-meta strong {
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
}
.result-meta__total, .result-meta__range {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .result-meta {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

.result-list {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}

/* =========================
   Job Card
   ========================= */
.job-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.job-card-wrap {
  display: grid;
  grid-template-rows: auto 1fr;
  row-gap: 8px;
}
.job-card__header {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  -moz-column-gap: 16px;
       column-gap: 16px;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 767px) {
  .job-card__header {
    -moz-column-gap: 12px;
         column-gap: 12px;
    padding: 14px 16px;
  }
}
.job-card__logo-wrap {
  width: 120px;
  height: 80px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .job-card__logo-wrap {
    width: 100px;
    height: 66px;
  }
}
.job-card__logo {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.job-card__header-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.job-card__header-info a:hover {
  color: var(--navy-300);
}

.job-card__tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}
.job-card__company {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .job-card__company {
    font-size: 16px;
  }
}
.job-card__badges {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}
.job-card__badges:empty {
  display: none;
}
.job-card__badges .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.job-card__badges .badge--new {
  background: #f9bd00;
  color: var(--text);
}
.job-card__badges .badge--hot {
  background: #F23C1D;
  color: #fff;
}
.job-card__body {
  padding: 24px;
}
.job-card__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.job-card__title a:hover {
  color: var(--navy-300);
}

.job-card__detail {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding: 0 12px;
  font-size: 14px;
}

.job-card__detail a:hover {
  color: var(--navy-300);
}

@media (max-width: 767px) {
  .job-card__detail {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.job-card__detail dl {
  margin: 0;
}
.job-card__detail dt {
  margin: 0;
  font-weight: 600;
}
.job-card__detail dd {
  margin: 0 0 15px;
}
.job-card__footer {
  background: #f2f2f7;
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
/* @media (max-width: 767px) {
  .job-card__footer {
    flex-direction: column;
    align-items: stretch;
  }
} */
.job-card__btn {
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  max-width: 100%;
  width: 160px;
  padding: 12px 16px;
  height: 38px;
}
@media (max-width: 767px) {
  .job-card__btn {
    width: 148px;
    padding: 0;
  }

  .job-card__detail dd {
    margin: 0 0 0.5rem;
  }
}
.job-card .pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 11px;
  font-size: 11px;
  line-height: 1.5;
  background: #f2f2f7;
  color: var(--text);
  font-weight: 600;
}
@media (max-width: 767px) {
  .job-card .pill {
    font-size: 10px;
  }
}
.job-card .pill--company,
.search-sidebar .pill--company {
  background: var(--primary);
  color: #fff;
}
.job-card .pill--highclass {
  background: #f4b81c;
  color: #fff;
}
.job-card .pill--highclass span {
  padding: 0 0 0 16px;
  background: url(../png/detail_icon01.png) left center no-repeat;
  font-weight: 700;
  color: #fff;
}
.job-card .pill--consultant,
.search-sidebar .pill--consultant {
  background: #22a4e9;
  color: #fff;
}
.job-card .pill--haken,
.search-sidebar .pill--haken {
  background: #ff6c3b;
  color: #fff;
}

/* ===== Pager ===== */
.pager {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.pager__btn {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--navy-500);
  background: #f2f2f7;
  transition: background 0.3s ease;
}
.pager__btn:hover {
  background: var(--navy-500);
  color: #fff;
}
.pager__btn.is-current {
  background: var(--navy-500);
  border-color: var(--navy-500);
  color: #fff;
}
.pager__btn--prev {
  content: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.25 18.75L7.5 12L14.25 5.25" stroke="%23000066" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.pager__btn--next {
  content: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.75 5.25L16.5 12L9.75 18.75" stroke="%23000066" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

/* ===== Sidebar ===== */
.search-sidebar__company-box {
  border-radius: var(--radius-sm);
}
.search-sidebar__box {
  background: #f2f2f7;
  border-radius: var(--radius-sm);
}

.search-sidebar__title {
  font-size: 16px;
}
.search-sidebar__summary {
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
  text-align: left;
}
.search-sidebar__summary dt {
  font-weight: 400;
}
.search-sidebar__summary dd {
  margin: 0;
  font-weight: 600;
}
.search-sidebar__row {
  display: flex;
  gap: 8px;
  justify-content: start;
  align-items: center;
}
.search-sidebar__toggle {
  min-width: 184px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid var(--primary);
  background: #fff;
  color: var(--primary);
  font-size: 14px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.search-sidebar__toggle:hover {
  background: #dcfbdb;
}
.search-sidebar__chev {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: translateY(-1px) rotate(45deg);
  transition: transform 0.1s ease;
}
.search-sidebar[data-open=true] .search-sidebar__chev {
  transform: translateY(2px) rotate(-45deg);
}
.search-sidebar__panel {
  margin-top: 16px;
}
.search-sidebar__panel-inner {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: height 240ms ease, opacity 180ms ease, transform 180ms ease;
  will-change: height;
}
.search-sidebar[data-open=true] .search-sidebar__panel-inner {
  opacity: 1;
  transform: translateY(0);
}

.search-panel--sidebar {
  border-top: 1px solid var(--line);
  text-align: left;
}
.search-panel--sidebar .search-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.search-panel--sidebar .search-row__label {
  display: flex;
  align-items: center;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
}
.search-row__label .icon-question-notice {
  font-size: 20px;
  color: #999;
  cursor: pointer;
}
.search-panel--sidebar .search-row__field {
  min-width: 0;
  padding: 0;
}
.search-panel--sidebar .search-row--features .search-row__label {
  padding-top: 0;
}

.search-panel--sidebar .chk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.search-panel--sidebar .chk input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.search-panel--sidebar .chk__ui {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.search-panel--sidebar .chk__text {
  font-size: 14px;
  color: #111;
  line-height: 1.4;
  white-space: nowrap;
}
.search-panel--sidebar .chk input:checked + .chk__ui {
  background: var(--primary);
  border-color: var(--primary);
}
.search-panel--sidebar .chk input:checked + .chk__ui::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  position: relative;
  top: -1px;
}
.search-panel--sidebar .chk--tag {
  margin-top: 10px;
}
.search-panel--sidebar .chk--tag .chk__text {
  white-space: normal;
}
.search-panel--sidebar .checkline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding-left: 16px;
}
.search-panel--sidebar .checkline--mt {
  margin-top: 16px;
}
.search-panel--sidebar .taggrid {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin-top: 10px;
}

.search-panel--sidebar .select {
  width: 100%;
  max-width: 100%;
  position: relative;
}
.search-panel--sidebar .select select {
  width: 100%;
  height: 48px;
  border-radius: 6px;
  border: 1px solid #e4e7ec;
  background: #fff;
  padding: 0 32px 0 16px;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.search-panel--sidebar .select::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.search-panel--sidebar .textline input[type=text] {
  width: 100%;
  height: 44px;
  border-radius: 6px;
  border: 1px solid #e4e7ec;
  padding: 0 14px;
  font-size: 14px;
}
.search-panel--sidebar .textline input[type=text]::-moz-placeholder {
  color: #BFBFBF;
}
.search-panel--sidebar .textline input[type=text]::placeholder {
  color: #BFBFBF;
}
.search-panel--sidebar .inline-add {
  display: flex;
  align-items: center;
  gap: 16px;
}
.search-panel--sidebar .inline-add + .search-panel--sidebar .inline-add {
  margin-top: 12px;
}
.search-panel--sidebar .inline-add .select {
  width: 100%;
}
.search-panel--sidebar .salary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.search-panel--sidebar .salary > .select:nth-child(1) {
  flex: 0 0 100%;
  max-width: 100%;
}
.search-panel--sidebar .salary > .select:nth-child(2),
.search-panel--sidebar .salary > .select:nth-child(4) {
  flex: 1 1 0;
  min-width: 0;
}
.search-panel--sidebar .salary > .salary__sep {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  line-height: 1;
  margin: 0 2px;
}
.search-panel--sidebar .location {
  display: flex;
  align-items: center;
  gap: 16px;
}
.search-panel--sidebar .location .selects {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.search-panel--sidebar .location .select {
  width: 100%;
}
.search-panel--sidebar .pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 44px;
  padding: 14px 24px;
  border-radius: 24px;
  border: 1px solid var(--primary);
  background: #fff;
  color: var(--primary);
  font-size: 14px;
  cursor: pointer;
}
.search-panel--sidebar .pill-btn__icon {
  font-size: 16px;
}
.search-panel--sidebar .pill-btn--add {
  padding: 0 16px;
  min-width: 88px;
}
.search-panel--sidebar .feature {
  border: 0;
  padding: 0;
  margin: 0;
}
.search-panel--sidebar .feature + .search-panel--sidebar .feature {
  margin-top: 24px;
}
.search-panel--sidebar .feature__summary {
  margin-bottom: 12px;
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.6;
  padding-left: 8px;
}
.search-panel--sidebar .feature__summary::-webkit-details-marker {
  display: none;
}
.search-panel--sidebar .feature__summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid #111;
  border-bottom: 1px solid #111;
  transform: rotate(-45deg);
  margin-left: 4px;
  position: relative;
  top: -1px;
  transition: transform 0.2s ease, top 0.2s ease;
}
.search-panel--sidebar .feature[open] .feature__summary::after {
  transform: rotate(45deg);
  top: -2px;
}
.search-panel--sidebar .feature__body {
  padding-left: 8px;
}
.search-panel--sidebar .feature__body-anim {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: height 220ms ease, opacity 180ms ease, transform 180ms ease;
  will-change: height;
}
.search-panel--sidebar .feature[open] > .feature__body .feature__body-anim {
  opacity: 1;
  transform: translateY(0);
}
.search-panel--sidebar .feature.is-closing > .feature__body .feature__body-anim {
  opacity: 0;
  transform: translateY(-6px);
}
.search-panel--sidebar .feature-links {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.search-panel--sidebar .feature-links__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #111;
}
.search-panel--sidebar .feature-links__item::after {
  content: "›";
  opacity: 0.5;
  margin-left: 6px;
}
.search-panel--sidebar {
  /* =========================
     submit（SP相当）
     ========================= */
}
.search-panel--sidebar .search-submit {
  display: flex;
  justify-content: center;
  padding: 18px 12px 0;
}
.search-panel--sidebar .search-submit__btn {
  width: 100%;
  height: 52px;
  border-radius: 6px;
  border: 0;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
}
.search-panel--sidebar .search-submit__icon {
  content: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_44_1540)"><path d="M15.707 13.293L13 10.586C13.63 9.536 14 8.311 14 7C14 3.14 10.859 0 7 0C3.141 0 0 3.14 0 7C0 10.86 3.141 14 7 14C8.312 14 9.536 13.631 10.586 13L13.293 15.707C13.488 15.902 13.744 16 14 16C14.256 16 14.512 15.902 14.707 15.707L15.707 14.707C16.098 14.316 16.098 13.684 15.707 13.293ZM7 12C4.239 12 2 9.761 2 7C2 4.239 4.239 2 7 2C9.761 2 12 4.239 12 7C12 9.761 9.761 12 7 12Z" fill="white"/></g><defs><clipPath id="clip0_44_1540"><rect width="16" height="16" fill="white"/></clipPath></defs></svg>');
}

.search-submit--sidebar {
  padding: 18px 0 0;
}
.search-submit--sidebar .search-submit__btn {
  width: 100%;
  height: 46px;
  font-size: 16px;
}

.detail-page {
  padding: 0 0 80px;
}

@media (max-width: 767px) {
  .detail-page {
    padding: 0;
  }
}

.detail-page__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.page-title--detail {
  padding-bottom: 18px;
}

/* =========================
   Job Detail
   ========================= */
.job-detail__badges {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-bottom: 10px;
}
.job-detail__main {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.job-detail__head {
  padding: 24px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 767px) {
  .job-detail__head {
    padding: 16px;
  }
}
.job-detail__logo-wrap {
  width: 160px;
  height: 107px;
  padding: 8px;
}

.job-detail__logo-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.job-detail__head-actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .job-detail__head-actions {
    justify-content: flex-end;
    width: auto;
  }
}
.job-detail__head-btn.btn--sm {
  width: 120px;
  font-size: 12px;
  border-radius: 4px;
  padding: 12px 16px;
  min-width: max-content;
}

@media (max-width: 767px) {
  .job-detail__head-actions {
    display: flex;
    flex-wrap: wrap;
  }
  .job-detail__head-btn.btn--sm {
    width: auto;
    flex: 1 1 auto;
    min-width: 120px;
    max-width: 100%;
  }
}
.job-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0;
  padding-top: 12px;
}

.job-detail__tags .pill--highclass {
  background: #f4b81c;
  color: #fff;
}
.job-detail__tags .pill--highclass span {
  padding: 0 0 0 16px;
  background: url(../png/detail_icon01.png) left center no-repeat;
  font-weight: 700;
  color: #fff;
}
.job-detail__tags .pill--consultant {
  background: #22a4e9;
  color: #fff;
}
.job-detail__tags .pill--haken {
  background: #ff6c3b;
  color: #fff;
}

@media (min-width: 768px) {
  .job-detail__tags {
    justify-content: flex-start;
  }
}
.job-detail__body {
  padding: 24px 24px 0 24px;
}
.job-detail__hero {
  display: flex;
  gap: 32px;
  align-items: start;
}

.job-detail__media img {
  object-fit: contain;
  min-height: 56px;
  max-width: none;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .job-detail__hero {
    display: grid;
    row-gap: 32px;
    grid-template-columns: 1fr;
  }
  .job-detail__media {
    margin: 0 auto;
  }
}

.job-detail__image {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.job-detail__hero-body {
  padding: 0;
}
.job-detail__title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.job-detail__meta {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.job-detail__meta-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  column-gap: 16px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.job-detail__meta-row a:hover {
  color: var(--navy-300);
}

.job-detail__meta-row:last-child {
  border-bottom: none;
}
@media (max-width: 767px) {
  .job-detail__meta-row {
    grid-template-columns: 1fr;
    row-gap: 8px;
    padding: 16px 0px;
  }
}
.job-detail__meta-row dt {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .job-detail__meta-row dt {
    text-align: center;
  }
}

.job-detail__meta-row dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .job-detail__meta-row dd {
    text-align: left;
  }
}
.job-detail__sections {
  border-top: 1px solid var(--line);
}
.job-detail__foot {
  padding: 18px 24px 22px;
  background: #f2f2f7;
  display: flex;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 767px) {
  .job-detail__foot {
    padding: 16px;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }
}
.job-detail__action-btn {
  width: 200px;
  max-width: 100%;
  height: 48px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* =========================
   Left label / right content rows
   ========================= */
.job-section {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.job-section:last-child {
  border-bottom: 0;
}
@media (max-width: 767px) {
  .job-section {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }
}
.job-section__label {
  margin: 0;
  font-weight: 600;
  width: 120px;
}

@media (max-width: 767px) {
  .job-section__label {
    width: auto;
    text-align: center;
  }
}

.job-section__body {
  line-height: 1.75;
}
.job-section__body p {
  margin: 0;
}

.job-section__body a:hover {
  color: var(--navy-300);
}

/* =========================
   職種・業種別 求人一覧
   ========================= */
.job-listing {
  max-width: var(--container);
  margin: 0 auto;
  margin-bottom: 80px;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .job-listing {
    margin: 0 24px 0px;
    padding: 24px;
  }
}
.job-listing__header {
  text-align: center;
}
.job-listing__title {
  margin: 0 0 40px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 767px) {
  .job-listing__title {
    margin-bottom: 24px;
  }
}
.job-listing__icon {
  width: 20px;
  height: 20px;
  flex: 1 0 auto;
  display: inline-block;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_588_6900)"><path d="M19.6337 16.6163L16.25 13.2325C17.0375 11.92 17.5 10.3887 17.5 8.75C17.5 3.925 13.5737 0 8.75 0C3.92625 0 0 3.925 0 8.75C0 13.575 3.92625 17.5 8.75 17.5C10.39 17.5 11.92 17.0387 13.2325 16.25L16.6163 19.6337C16.86 19.8775 17.18 20 17.5 20C17.82 20 18.14 19.8775 18.3837 19.6337L19.6337 18.3837C20.1225 17.895 20.1225 17.105 19.6337 16.6163ZM8.75 15C5.29875 15 2.5 12.2012 2.5 8.75C2.5 5.29875 5.29875 2.5 8.75 2.5C12.2012 2.5 15 5.29875 15 8.75C15 12.2012 12.2012 15 8.75 15Z" fill="%23111111"/></g><defs><clipPath id="clip0_588_6900"><rect width="20" height="20" fill="white"/></clipPath></defs></svg>');
}
@media (max-width: 767px) {
  .job-listing__icon {
    position: relative;
    top: -2px;
  }
}
.job-listing__tabs {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 767px) {
  .job-listing__tabs {
    display: none;
  }
}
.job-listing__tab {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 0;
  padding: 0 16px 12px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: #111;
  opacity: 0.75;
  line-height: 1.2;
  letter-spacing: 0.05em;
  position: relative;
}
.job-listing__tab .lg {
  font-size: 16px;
}
.job-listing__tab:hover {
  opacity: 1;
}
.job-listing__tab.is-active {
  opacity: 1;
}
.job-listing__tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--primary);
}
.job-listing__select {
  display: none;
}
@media (max-width: 767px) {
  .job-listing__select {
    display: block;
  }
  .job-listing__select .select {
    width: 100%;
  }
  .job-listing__select .select select {
    height: 46px;
    font-size: 14px;
  }
}
.job-listing__body {
  padding: 24px 16px 0;
}
@media (max-width: 767px) {
  .job-listing__body {
    padding: 24px 8px 0;
  }
}
.job-listing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 8px;
  align-items: start;
}
@media (min-width: 768px) {
  .job-listing__grid {
    grid-template-rows: repeat(var(--grid-template-rows), auto);
    grid-auto-flow: column;
  }
}
@media (max-width: 767px) {
  .job-listing__grid {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 10px;
  }
}
.job-listing__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.job-listing__item:hover .job-listing__label {
  color: var(--navy-300);
}
.job-listing__label {
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
}
@media (max-width: 767px) {
  .job-listing__label {
    font-size: 14px;
  }
}
.job-listing__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1;
  color: var(--primary);
  border: 1px solid var(--line);
  background: #fff;
}
.modal-title {
  font-size: 16px;
  font-weight: 600;
}
.popup_window {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.popup_header {
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
}
.popup_header .popup_header_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.popup_header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.modal_close {
  width: 48px;
  height: 48px;
  border: 0;
  background: #f2f2f7;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
}

.popup_button_area {
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* =========================
   job modal (accordion)
   ========================= */
.popup_header .popup_lead {
  font-size: 14px;
  line-height: 1.5;
  color: var(--primary);
}

.popup_content--job {
  padding: 0;
}

.job-accordion {
  padding: 0;
}

.job-acc {
  border-top: 1px solid var(--line);
}
.job-acc summary::-webkit-details-marker {
  display: none;
}

.job-acc__summary {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #f2f2f7;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}

.job-acc__title {
  min-width: 0;
  word-break: break-word;
}

.job-acc__chev {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
  background: center/24px 24px no-repeat url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none"><path stroke="%23111" stroke-linecap="round" stroke-linejoin="round" d="M18.75 9.75 12 16.5 5.25 9.75"/></svg>');
  transition: transform 180ms ease;
}

.job-acc[open] .job-acc__chev {
  transform: rotate(180deg);
}

.job-acc__summary[aria-expanded="true"] .job-acc__chev {
  transform: rotate(180deg);
}

.job-acc__body {
  background: #fff;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px 24px;
}

.job-acc__all {
  /* margin-bottom: 20px; */
  display: flex;
}

.job-acc__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.job-acc__col {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.job-acc__col li + li {
  margin-top: 8px;
}

.job-acc__chk {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.35;
  color: var(--text);
}
.job-acc__chk input {
  margin-top: 2px;
}
.job-acc__chk span {
  display: inline-block;
}

.help-modal h2 {
  font-size: 16px;
  font-weight: 600;
}
.help-modal h3 {
  font-size: 20px;
  font-weight: 600;
  padding: 4px 0 20px;
  border-bottom: 1px solid #333;
}
.help-modal h4 {
  font-size: 14px;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.help-modal h4 .icon_job01 {
  font-size: 13px;
  padding: 4px 16px;
  border-radius: 16px;
  background: #1eb216;
  color: #fff;
  margin-left: 10px;
}
.help-modal h4 .icon_job02 {
  font-size: 13px;
  padding: 4px 16px;
  border-radius: 16px;
  background: #1fbae6;
  color: #fff;
  margin-left: 10px;
}
.help-modal h4 .icon_job03 {
  font-size: 13px;
  padding: 4px 16px;
  border-radius: 16px;
  background: #ff6d3b;
  color: #fff;
  margin-left: 10px;
}
.help-modal p {
  font-size: 14px;
  margin-bottom: 30px;
}

.help-modal .modal-content {
  padding-bottom: 16px;
}

/* =========================
   banner job slider
   ========================= */
.job-slider {
  position: relative;
  padding: 0 40px;
}
.job-slider__viewport {
  overflow: hidden;
  margin: 0 auto;
  padding: 0 1px;
  box-sizing: border-box;
}
.job-slider__viewport.swiper {
  overflow: hidden;
}
.job-slider__track.swiper-wrapper {
  align-items: stretch;
}
.job-slider__track {
  display: flex;
  align-items: stretch;
}
.job-slider .swiper-slide.job-slide {
  width: 100%;
  max-width: 323.5px;
  flex-shrink: 0;
  height: auto;
}
.job-slide {
  width: calc((100% - 12px) / 2);
  max-width: 323.5px;
  flex-shrink: 0;
  height: auto;
}
.job-slide .offer-card {
  width: 100%;
  height: 100%;
}
.job-slide .offer-card__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.job-slide .offer-card__logo-wrap {
  width: 90px;
  height: 54px;
}
.job-slide .offer-card__meta span {
  font-size: 12px;
  font-weight: 400;
}
.job-slide .offer-card__company {
  gap: 12px;
}
.job-slide .offer-card__job {
  font-size: 14px;
  font-weight: 600;
}
.job-history-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 300;
  padding: 0 8px;
  position: relative;
}
.job-history-list .job-history-item {
  max-width: 100%;
  text-overflow: ellipsis;
  text-wrap: nowrap;
  overflow: hidden;
}
.job-history-list .job-history-item a:hover {
  color: var(--navy-300);
}
@media (max-width: 767px) {
  .job-slider {
    padding: 0;
  }
  .job-slider__viewport {
    width: calc(100% - 68px);
    margin: 0 auto;
  }
  .job-slide {
    width: 100%;
    max-width: none;
  }
  .job-side .offer-card__logo-wrap {
    width: 80px;
    height: 48px;
  }
  .job-slider__track {
    gap: 0;
  }

  /* On mobile: banner on top, job slider below */
  .layout-grid-banner {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    margin-bottom: 0;
    gap: 32px;
  }
  .layout-grid-banner .layout-grid__aside {
    order: 1;
  }
  .layout-grid-banner .layout-grid__main {
    order: 2;
  }
}
.job-slider__dots {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 1;
}
.job-slider__dots .swiper-pagination {
  position: relative;
  margin: 0;
  flex: 0 0 auto;
  pointer-events: auto;
  display: none;
}
.job-slider__dots .swiper-pagination .job-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #d9d9d9;
  background: transparent;
  margin: 0 4px;
}
.job-slider__dots .swiper-pagination .job-slider__dot::before {
  display: none;
}
.job-slider__dots .swiper-pagination .job-slider__dot.is-active,
.job-slider__dots .swiper-pagination .job-slider__dot.swiper-pagination-bullet-active {
  background: var(--primary);
  border-color: var(--primary);
}
.job-slider__dot {
  pointer-events: auto;
  height: 36px;
  width: 44px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.job-slider__dot-prev:before,
.job-slider__dot-next:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 1.5px solid var(--primary);
  border-right: 1.5px solid var(--primary);
}
.job-slider__dot-prev:before {
  transform: rotate(-135deg);
}
.job-slider__dot-next:before {
  transform: rotate(45deg);
}

/* =========================
   Job recommendations (Swiper) – same layout as related companies
   ========================= */
.job-recommendations {
  position: relative;
}
.job-recommendations__title {
  font-size: 1rem;
  font-weight: 600;
}
.job-recommendations__slider-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.job-recommendations__swiper {
  flex: 1;
  min-width: 0;
  padding: 0;
}
.job-recommendations__btn {
  position: static !important;
  width: 24px;
  height: 24px;
  min-height: 24px;
  border: none;
  background: transparent;
  color: var(--primary, #003366);
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s, opacity 0.2s;
  margin: 0;
}

.job-recommendations__btn:after {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  display: block;
}
.job-recommendations__logo-wrap {
  height: 54px;
  width: 90px;
}
.job-recommendations__logo {
  max-height: 54px;
  object-fit: contain;
  width: 90px;
}
.job-recommendations__swiper .swiper-pagination {
  position: relative;
  margin-top: 16px;
}
.job-recommendations__swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--primary, #003366);
  opacity: 0.3;
}
.job-recommendations__swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.job-recommendations__card {
  display: grid;
  gap: 8px;
  border-radius: 12px;
  padding: 12px 16px;
  border: 1px solid var(--line);
}

.job-recommendations__card div.line-clamp-1{
  word-break: break-all;
}

@media (max-width: 767px) {
  .job-recommendations__swiper {
    padding: 0;
  }
}

/* =========================
   Related companies (Swiper)
   ========================= */
.related-companies {
  position: relative;
}
.related-companies__title {
  font-size: 1rem;
  font-weight: 600;
}
.related-companies__slider-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}
.related-companies__slider-wrap .swiper-button-lock {
  display: flex;
  pointer-events: none;
  opacity: 0.5;
}
.related-companies__swiper {
  flex: 1;
  min-width: 0;
  padding: 0;
}

.related-companies__btn {
  position: static !important;
  width: 24px;
  height: 24px;
  min-height: 24px;
  border: none;
  background: transparent;
  color: var(--primary, #003366);
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s, opacity 0.2s;
}

.related-companies__btn.swiper-button-prev, .related-companies__btn.swiper-button-next{
  margin: auto;
}

.related-companies__btn:after {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  display: block;
}
.related-companies__link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 8px;
  transition: background-color 0.2s;
  border: 1px solid var(--line);
  overflow: hidden;
}
.related-companies__logo {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
  transform-origin: center center;
}
.related-companies__swiper .swiper-slide {
  width: 123px;
  height: 90px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
  transition: all 0.25s ease;
}
.related-companies__swiper .swiper-slide:hover {
  padding: 0;
}
.related-companies__swiper .swiper-pagination {
  position: relative;
  margin-top: 16px;
}
.related-companies__swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--primary, #003366);
  opacity: 0.3;
}
.related-companies__swiper .swiper-pagination-bullet-active {
  opacity: 1;
}
@media (max-width: 767px) {
  .related-companies__swiper {
    padding: 0;
  }
}

.job-slider .offer-card {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.job-slider .offer-card .offer-card__link {
  padding: 0;
}
.top-recommend-company h2 { font-size: 16px; }

@media (max-width: 375px) {
  .job-slider__viewport {
    width: calc(100% - 48px);
  }
  .job-slider__dot {
    width: 24px;
  }
}

/* =========================
   responsive
   ========================= */
@media (max-width: 767px) {
  .modal__dialog {
    width: calc(100% - 20px);
    margin: 16px auto;
  }
  .popup_content {
    max-height: 72vh;
  }
  .job-acc__cols {
    grid-template-columns: 1fr;
  }
}

.privacy-notice {
  display: block;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(17,17,17,0.85);
  color: #fff;
  font-size: 14px;
  z-index: 10;
}
.privacy-notice.hide {
  display: none;
}
.privacy-notice-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
  margin: auto;
  padding: 12px 0;
  max-width: 1072px;
}
.privacy-notice-text a {
  color: #fff;
}
.privacy-notice-button a {
  display: inline-block;
  padding: 8px 24px;
  background-color: #f9bd00;
  border-radius: 27px;
  color: #111;
  font-size: 14px;
  white-space: nowrap;
  text-decoration: none;
}
.wa .privacy-notice-button a {
  background-color: #0493da;
  color: #fff;
}
@media (max-width: 768px) {
  .privacy-notice-wrap {
    flex-direction: column;
    width: calc(100% - 48px);
    margin: 0 24px;
  }
}
.announcement-notice-top {
  max-width: var(--container);
}
.announcement-notice-top a:hover {
  color: var(--navy-300);
}
.resume_notice__line a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
}
.scout-notice-top {
  height: 44px;
  padding: 12px 20px;
  margin: 24px auto 0;
  border-radius: 24px;
  max-width: var(--container);
  font-size: 14px;
  font-weight: 300;
  color: #111111;
  background: #FFEFF3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.scout-notice-top .icon {
  position: relative;
  margin-right: 8px;
}
.scout-notice-top .icon::before {
  display: block;
  padding: 2px 6px;
  background-color: #ff1a00;
  border-radius: 50%;
  font-family: "FontAwesome";
  content: '\f0e0';
  font-size: 14px;
  color: white;
  -webkit-animation: wrench 2.5s ease infinite;
  animation: wrench 2.5s ease infinite;
}
.scout-notice-top .icon::after {
  content: '';
  position: absolute;
  display: block;
  z-index: 1;
  border-style: solid;
  border-color: transparent #ff1a00;
  border-width: 4px 0 5px 8px;
  top: 50%;
  transform: translateY(-50%);
  left: 24px;
}
.scout-notice-top p {
  padding-left: 8px;
  padding-right: 16px;
}
.scout-notice-top span.count {
  font-weight: 600;
  margin: 0 3px;
}

.scout-notice-top.alert-dismissible .btn-close {
  padding: 12px;
  box-shadow: none;
  outline: none;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}
.resume_notice {
  max-width: var(--container) !important;
}
.resume_notice__line {
  margin: 24px auto 0 !important;
}
.site-main:has(.scout-notice-top) > .hero,
.site-main:has(.resume_notice) > .hero,
.site-main:has(.announcement-notice-top) > .hero {
  padding-top: 32px;
}
.site-main:has(.scout-notice-top) .layout-grid-banner,
.site-main:has(.resume_notice) .layout-grid-banner,
.site-main:has(.announcement-notice-top) .layout-grid-banner {
  margin-top: 8px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .scout-notice-top,
  .announcement-notice-top {
    max-width: calc(100% - 80px);
  }
  .site-main:has(.scout-notice-top) .layout-grid-banner,
  .site-main:has(.resume_notice) .layout-grid-banner,
  .site-main:has(.announcement-notice-top) .layout-grid-banner{
    margin-top: 32px;
  }
}

@media (max-width: 767px) {
  .scout-notice-top,
  .announcement-notice-top {
    margin: 24px 24px 0;
    max-width: calc(100vw - 48px);
  }

  .scout-notice-top .scout-company-name {
    display: none;
  }

  .site-main:has(.scout-notice-top) .layout-grid-banner,
  .site-main:has(.resume_notice) .layout-grid-banner,
  .site-main:has(.announcement-notice-top) .layout-grid-banner {
    margin-top: 32px;
  }
}

@media (min-width: 1025px) {
  .hero-card-banner .hero-card__text-cfair {
    position: absolute;
    top: 67%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56%;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 8px;
    box-sizing: border-box;
    pointer-events: auto;
  }

  .hero-card-banner .hero-card__text-cfair .hero-card__text-detail {
    gap: 0;
  }
  .hero-card-banner .hero-card__text-cfair .hero-card__text-detail-date {
    font-size: 13px;
  }

  .hero-card-banner .hero-card__text-cfair .hero-card__text-detail-venue {
    font-size: 10px;
  }
}

/* Custom Style Bootstrap */
.custom-tooltip.show {
  opacity: 1;
}
.custom-tooltip .tooltip-inner {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 500;
  max-width: none;
}
.custom-tooltip[data-popper-placement^=top] .tooltip-arrow::before {
  border-top-color: var(--line);
}
.custom-tooltip[data-popper-placement^=top] .tooltip-arrow::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 48.5%;
  transform: translateX(-50%);
  border-width: calc(var(--bs-tooltip-arrow-height)) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.custom-tooltip[data-popper-placement^=bottom] .tooltip-arrow::before {
  border-bottom-color: var(--line);
}
.custom-tooltip[data-popper-placement^="bottom"] .tooltip-arrow::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 48.5%;
  transform: translateX(-50%);
  border-width: 0
                calc(var(--bs-tooltip-arrow-width) * 0.5)
                calc(var(--bs-tooltip-arrow-height));
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}
.custom-tooltip[data-popper-placement^=left] .tooltip-arrow::before {
  border-left-color: var(--line);
}
.custom-tooltip[data-popper-placement^="left"] .tooltip-arrow::after {
  content: "";
  position: absolute;
  left: -2.5px;
  top: 48.5%;
  transform: translateY(calc(-50%));
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) calc(var(--bs-tooltip-arrow-height));
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}
.custom-tooltip[data-popper-placement^=right] .tooltip-arrow::before {
  border-right-color: var(--line);
}
.custom-tooltip[data-popper-placement^="right"] .tooltip-arrow::after {
  content: "";
  position: absolute;
  right: -2.5px;
  top: 48.5%;
  transform: translateY(-50%);
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5)
                calc(var(--bs-tooltip-arrow-height))
                calc(var(--bs-tooltip-arrow-width) * 0.5)
                0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}
@media (min-width: 768px) and (max-width: 991px) {
  .layout-grid-banner {
    grid-template-columns: 320px 1fr !important;
  }
  .layout-grid-banner .layout-grid__main {
    width: calc(100vw - 40px - 80px - 320px);
  }
  .search-form__grid {
    grid-template-columns: 1fr 1fr;
  }
  .layout-grid {
    padding: 0 40px;
  }
  .search-block__inner {
    padding: 0 40px;
  }
  .job-slide {
    width: 100% !important;
  }
  .hero-card {
    width: 320px !important;
  }

  .site-footer__sub-list {
    display: flex;
    flex-wrap: wrap;
  }
  .site-footer__main {
    padding: 24px 24px 32px;
  }
  .breadcrumb {
    padding: 24px 40px;
  }
}

/* Hotlist */
.offer-box--hot-picks .offer-card,
.offer-box--hot-agents .offer-card {
  min-height: 112px;
}

.offer-box--hot-picks .offer-card .offer-card__link,
.offer-box--hot-agents .offer-card .offer-card__link {
  padding: 20px 20px 16px;
}

.job-search-result-page .search-sidebar[data-open="true"] .search-sidebar__box {
  position: relative;
  top: 0;
}
.job-search-result-page:not(:has(.result-list)) .search-sidebar .search-sidebar__box  {
  position: relative;
  top: 0;
}
.job-search-result-page:has(.result-list) .search-sidebar[data-open="true"] .search-sidebar__box  {
  max-height: none;
}

@media (max-width: 980px) {
  .job-search-page .offer-box--hot-picks .offer-card,
  .job-search-page .offer-box--hot-agents .offer-card {
    min-height: 0;
  }

  .job-search-page .hotpick-section {
    margin-bottom: 48px;
  }

  .job-search-result-page .search-sidebar .search-sidebar__box {
    position: relative;
    top: 0;
  }
}

@media (max-width: 767px) {
  .job-search-page .offer-box--hot-picks .offer-card,
  .job-search-page .offer-box--hot-agents .offer-card {
    min-height: 112px;
  }
}
/* End Hostlist */
