@charset "UTF-8";
/* =========================================================
   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;
  /* 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;
}
@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;
}

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 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 10px 16px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  transition: background 0.3s ease;
}
.btn--primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--primary-hover);
}
.btn--navy {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}
.btn--navy:hover {
  background: var(--secondary-hover);
}
.btn--outline {
  background: #fff;
  border-color: #d0d5dd;
  color: var(--text);
}
.btn--ghost {
  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;
  height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  background: #f2f2f7;
  color: #111;
}
.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: 16px 24px;
  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);
}
.site-header__nav-list a {
  display: inline-flex;
  align-items: center;
  height: 44px;
  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: 14px;
}
.site-header__link-employer {
  font-size: 13px;
  color: var(--text);
  white-space: nowrap;
}
.site-header__cta {
  height: 44px;
  padding: 0 16px;
  font-size: 14px;
}
.site-header__lang {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f2f2f7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text);
}
.site-header__actions--logged-in {
  gap: 12px;
}
.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;
  /* 右寄せにしたいなら right:0; left:auto; */
  min-width: 180px;
  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 200ms ease, opacity 200ms 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;
}
.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);
  }
  .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;
    gap: 8px;
  }
  .site-header__hamburger {
    display: flex;
  }
  .site-header__sp-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 55;
    height: 100dvh;
    height: 100vh;
    background: #fff;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
    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);
  }
  .site-header__sp-resume {
    display: block;
  }
  .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));
    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: 14px;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--line);
    text-decoration: none;
    line-height: 1;
  }
  .site-header__sp-pill--ghost {
    padding: 16px 24px;
    background: #f2f2f7;
    border-color: transparent;
  }
  .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;
    color: var(--text);
    text-decoration: none;
    line-height: 1;
    border-bottom: 1px solid var(--line);
  }
  .site-header__sp-link.sub {
    padding: 14px 24px;
    font-size: 12px;
  }
  .site-header__sp-link.child {
    padding: 14px 24px 14px 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: 16px 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 {
  /* =========================
     〜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;
}
.site-footer a:hover {
  text-decoration: underline;
}
.site-footer__main {
  padding: 24px 0 32px;
}
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.site-footer__logo {
  flex: 0 0 auto;
  letter-spacing: 0.02em;
  font-size: 34px;
  line-height: 1;
}
.site-footer__logo span {
  font-size: 18px;
  margin-left: 2px;
  font-weight: 700;
}
.site-footer__nav {
  flex: 1 1 auto;
  padding-top: 8px;
}
.site-footer__nav-list {
  margin: 0 0 16px;
  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: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  line-height: 1.25;
}
.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: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
}
.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__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;
  }
  .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;
  }
  .site-footer__copy {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================================================
   Hero / Carousel
   ========================================================= */
.hero {
  padding: 24px 0;
}
.hero__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.hero__viewport {
  position: relative;
  overflow: hidden;
  padding-bottom: 44px;
}
.hero__track {
  display: flex;
  align-items: center;
  gap: 16px;
  will-change: transform;
  transition: transform 320ms ease;
}
.hero__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #d9d9d9;
  background: transparent;
  cursor: pointer;
}
.hero__dot.is-active {
  background: var(--primary);
  border-color: var(--primary);
}
@media (max-width: 767px) {
  .hero__inner {
    padding: 0 14px;
  }
}

.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);
}
.hero-card__link {
  display: block;
}
.hero-card__img {
  display: block;
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .hero-card {
    width: min(420px, 86vw);
  }
}

/* =========================================================
   Search Block
   ========================================================= */
.search-block {
  padding: 36px 0 40px;
}
.search-block__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.search-block {
  /* NOTE: 元のSPも 0 24px だったので、意味的には同一。残してOK */
}
@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: 26px;
}
.search-form__title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 24px;
  font-weight: 500;
  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: 4px;
}
.search-form__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 22px;
  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: 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: flex-end;
}
.search-form__submit {
  grid-column: 2;
  justify-self: center;
  width: 240px;
  height: 64px;
  border-radius: 6px;
  border: 0;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  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: 500;
  line-height: 1;
}
.search-form__detail {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--text);
}
.search-form__detail::after {
  position: relative;
  top: 1px;
  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;
  }
  .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;
  }
}

/* =========================================================
   Quick Search
   ========================================================= */
.quick-search {
  margin-top: 32px;
  padding: 0 32px;
  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: 20px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.quick-search__icon {
  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_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: 14px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s ease;
}
.quick-search__list .label:hover {
  background: #f2f2f7;
}
@media (max-width: 767px) {
  .quick-search {
    margin-top: 22px;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .quick-search__title {
    justify-content: center;
    font-size: 22px;
  }
  .quick-search__list {
    justify-content: center;
    gap: 12px;
  }
  .quick-search__list .label {
    padding: 14px 18px;
    font-size: 15px;
  }
}

/* =========================================================
   Main Layout Grid
   ========================================================= */
.layout-grid {
  max-width: var(--container);
  margin: 16px auto 40px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
}
@media (max-width: 767px) {
  .layout-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Offer Box (新着 / おすすめ)
   ========================================================= */
.offer-box {
  margin: 16px 0 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: 16px;
  }
  .offer-box__title {
    font-size: 20px;
  }
}

.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: 24px 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 {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.offer-card__logo-wrap {
  width: 100px;
  height: 60px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.offer-card__logo {
  width: 84px;
  height: 44px;
  -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;
}
@media (max-width: 767px) {
  .offer-card__link {
    padding: 16px 16px 8px;
  }
}

.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: 767px) {
  .offer-pill {
    padding: 7px 10px;
    font-size: 12px;
  }
}

/* =========================================================
   RA Banner
   ========================================================= */
.ra-banner {
  margin: 24px 0;
}
@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;
}
.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: 3px;
}
.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>');
}
.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>');
}
.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>');
}
.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>');
}
.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;
  }
}

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

/* =========================================================
   Company Feature (side slider)
   ========================================================= */
.company-feature .card-section__header {
  padding: 16px 16px 0;
  border-bottom: 0;
}
.company-feature .card-section__title {
  margin: 0 0 12px;
  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__main {
  padding: 12px 16px 16px;
}
.company-feature__viewport {
  position: relative;
  overflow: hidden;
  padding-bottom: 32px;
  max-width: 480px;
  margin: 0 auto;
}
.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__link {
  display: block;
}
.company-feature__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 10px 22px var(--line);
}
.company-feature__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  display: flex;
  justify-content: 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.is-active {
  background: var(--primary);
  border-color: var(--primary);
}
@media (max-width: 767px) {
  .company-feature .card-section__header {
    padding: 16px 0 0;
  }
  .company-feature .card-section__title {
    font-size: 20px;
  }
  .company-feature__main {
    padding: 8px 0 0;
  }
  .company-feature__viewport {
    padding-bottom: 22px;
  }
}

/* =========================================================
   Company Box
   ========================================================= */
.company-box {
  padding: 12px 16px 16px;
}
.company-box__head {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  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;
  padding: 0 16px 16px;
  font-size: 14px;
  text-align: right;
}
@media (max-width: 767px) {
  .company-box {
    padding: 12px 0 16px;
  }
  .company-box__head {
    margin-bottom: 12px;
  }
  .company-box__title {
    font-size: 20px;
  }
  .company-box__count-number {
    font-size: 24px;
  }
}

.company-logo-list {
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.company-logo-list li {
  min-width: 0;
  flex: 0 0 calc((100% - 8px) / 2);
  display: flex;
  justify-content: center;
}
.company-logo-list a {
  width: 100%;
  display: block;
  border-radius: 12px;
  overflow: hidden;
}
.company-logo-list img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  border-radius: 12px;
  padding: 8px;
}

/* =========================================================
   Side Article Carousel
   ========================================================= */
.side-article-feed {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.side-article-feed .card-section__header {
  padding: 16px;
}
@media (max-width: 767px) {
  .side-article-feed .card-section__header {
    padding: 16px 0;
  }
}
.side-article-feed .card-section__title {
  margin: 0;
  padding: 6px 0 6px 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  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) {
  .side-article-feed .card-section__title {
    font-size: 20px;
  }
}
.side-article-feed__sub {
  font-size: 16px;
  letter-spacing: 0;
}
.side-article-feed__viewport {
  position: relative;
  padding: 8px 24px 16px;
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .side-article-feed__viewport {
    padding: 8px 0 16px;
  }
}
.side-article-feed__track-wrap {
  overflow: hidden;
  border-radius: 16px;
  padding-bottom: var(--side-article-nav-h);
}
@media (max-width: 767px) {
  .side-article-feed__track-wrap {
    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);
}
.side-article-feed__slide {
  flex: 0 0 100%;
  min-width: 0;
}
.side-article-feed__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: 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.is-active {
  background: var(--primary);
  border-color: var(--primary);
}

/* =========================================================
   Side Article Card
   ========================================================= */
.side-article-card {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}
.side-article-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.side-article-card__media img {
  width: 100%;
  height: 200px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.side-article-card__body {
  padding: 24px;
}
.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: 11px;
  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: 13px;
  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;
}

/* =========================================================
   Side Banners
   ========================================================= */
.side-banners__inner {
  padding: 12px 24px 16px;
  display: grid;
  gap: 16px;
}
@media (max-width: 767px) {
  .side-banners__inner {
    padding: 12px 0 16px;
  }
}
.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;
}
.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
   ========================================================= */
.page {
  padding-bottom: 80px;
}

.breadcrumb {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px var(--gutter);
  font-size: 12px;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
}
.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb__item:not(:last-child)::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 {
  text-decoration: underline;
}

.search-page {
  margin-bottom: 80px;
}
.search-page__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.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: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media (max-width: 767px) {
  .page-title {
    padding: 6px 0 12px;
  }
  .page-title__text {
    font-size: 20px;
  }
}

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

/* ===== rows ===== */
.search-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 32px 16px;
  margin-top: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.search-row__label {
  display: flex;
  align-items: center;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .search-row__label {
    padding-left: 12px;
  }
}
.search-row__field {
  /* 追加：複製で field が増えても必ず右カラム（2列目）に積む */
  grid-column: 2;
  min-width: 0;
  padding-right: 24px;
}
@media (max-width: 767px) {
  .search-row__field {
    /* SPは1カラムなので自動配置に戻す */
    grid-column: auto;
    padding: 0 12px;
  }
}
.search-row--features .search-row__label {
  padding-top: 6px;
}
@media (max-width: 767px) {
  .search-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }
  .search-row__label {
    padding-top: 0;
    font-size: 14px;
  }
}

/* ===== checkbox UI ===== */
.chk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  -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: 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;
}
.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 {
  margin-top: 10px;
}
.chk--tag .chk__text {
  white-space: normal;
}

.checkline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.checkline--mt {
  margin-top: 16px;
}

.taggrid {
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .taggrid {
    gap: 4px 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: 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;
}

.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: #98a2b3;
}
.textline input[type=text]::placeholder {
  color: #98a2b3;
}

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

.salary {
  display: grid;
  grid-template-columns: minmax(50px, 280px) minmax(0, 220px) 20px minmax(0, 220px);
  gap: 14px;
  align-items: center;
}
.salary__sep {
  text-align: center;
}
@media (max-width: 767px) {
  .salary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }
  .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;
  }
}

.location {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.location:first-child {
  margin-top: 0;
}
.location .selects {
  width: 100%;
  display: flex;
  gap: 12px;
}
@media (max-width: 767px) {
  .location .selects {
    flex-direction: column;
  }
}
.location .select {
  width: 100%;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  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;
}
@media (max-width: 767px) {
  .pill-btn {
    gap: 6px;
  }
}
.pill-btn__icon {
  font-size: 16px;
}
.pill-btn--add {
  padding: 0 16px;
  min-width: 100px;
}
@media (max-width: 767px) {
  .pill-btn--add {
    min-width: 88px;
  }
}

/* ===== features ===== */
.feature {
  border: 0;
  padding: 0;
  margin: 0;
}
.feature + .feature {
  margin-top: 24px;
}
.feature__summary {
  margin-bottom: 12px;
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.6;
}
@media (max-width: 767px) {
  .feature__summary {
    padding-left: 8px;
  }
}
.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-left: 16px;
}
@media (max-width: 767px) {
  .feature__body {
    padding-left: 8px;
  }
}
.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: 26px 0 0;
}
.search-submit__btn {
  grid-column: 2;
  justify-self: center;
  width: 240px;
  height: 64px;
  border-radius: 6px;
  border: 0;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  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: 18px;
  }
  .search-submit__btn {
    width: 100%;
    height: 52px;
    font-size: 16px;
  }
}

/* =========================================================
   Search Result Page (search_result.html)
   ========================================================= */
.result-page {
  padding: 0 0 80px;
}
.result-page__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

.result-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  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 24px;
}
@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='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 7h16' stroke='%23111' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M4 12h12' stroke='%23111' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M4 17h8' stroke='%23111' stroke-width='2' stroke-linecap='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: 12px;
  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;
    gap: 8px;
  }
}

.result-list {
  display: grid;
  gap: 40px;
  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: 10px;
}
.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;
  padding: 8px;
  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__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__detail {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding: 0 12px;
  font-size: 14px;
}
@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 12px;
}
.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 {
  height: 48px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  max-width: 100%;
  width: 160px;
}
@media (max-width: 767px) {
  .job-card__btn {
    width: 100%;
  }
}
.job-card .pill {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  background: #f2f2f7;
  color: #111;
}
.job-card .pill--company {
  background: var(--primary);
  color: #fff;
}
.job-card .pill--consultant {
  background: #22a4e9;
  color: #fff;
}
.job-card .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 {
  position: sticky;
  top: 96px;
}
@media (max-width: 1023px) {
  .search-sidebar {
    position: static;
    margin-top: 40px;
  }
}
.search-sidebar__box {
  background: #f2f2f7;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.search-sidebar__title {
  font-size: 16px;
}
.search-sidebar__summary {
  margin: 0 0 14px;
  display: grid;
  gap: 8px;
  font-size: 14px;
  text-align: left;
}
.search-sidebar__summary dt {
  font-size: 12px;
}
.search-sidebar__summary dd {
  margin: 0;
  font-weight: 700;
}
.search-sidebar__row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 8px;
  align-items: baseline;
}
.search-sidebar__toggle {
  width: 184px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid var(--primary);
  background: #fff;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  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: 14px;
}
.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: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.search-panel--sidebar .search-row__label {
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 700;
}
.search-panel--sidebar .search-row__field {
  min-width: 0;
  padding: 0 12px;
}
.search-panel--sidebar .search-row--features .search-row__label {
  padding-top: 0;
}
.search-panel--sidebar {
  /* =========================
     checkbox UI（SP相当）
     ========================= */
}
.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;
}
.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 / input（SP相当）
     ========================= */
}
.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: #98a2b3;
}
.search-panel--sidebar .textline input[type=text]::placeholder {
  color: #98a2b3;
}
.search-panel--sidebar .inline-add {
  display: flex;
  align-items: center;
  gap: 12px;
}
.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: 40px;
  padding: 0 16px;
  border-radius: 999px;
  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 {
  /* =========================
     features（SP相当）
     ========================= */
}
.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;
}
.detail-page__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.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);
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  grid-template-areas: "logo company actions" "logo tags tags";
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 16px;
  align-items: stretch;
}
@media (max-width: 767px) {
  .job-detail__head {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "logo" "company" "actions" "tags";
    padding: 24px 16px;
  }
}
.job-detail__logo-wrap {
  grid-area: logo;
  width: 160px;
  height: 112px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .job-detail__logo-wrap {
    width: 160px;
    height: 112px;
    margin: 0 auto;
  }
}
.job-detail__logo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.job-detail__company {
  grid-area: company;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  align-self: center;
  justify-self: start;
}
@media (max-width: 767px) {
  .job-detail__company {
    text-align: left;
  }
}
.job-detail__head-actions {
  grid-area: actions;
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  align-self: start;
  justify-self: end;
}
@media (max-width: 767px) {
  .job-detail__head-actions {
    justify-self: center;
    gap: 8px;
  }
}
.job-detail__head-btn.btn--sm {
  width: 120px;
  height: 36px;
  padding: 12px 16px;
  font-size: 12px;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .job-detail__head-btn.btn--sm {
    width: auto;
    padding: 12px;
  }
}
.job-detail__tags {
  grid-area: tags;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: start;
  justify-content: flex-start;
  margin: 0;
}
@media (max-width: 767px) {
  .job-detail__tags {
    justify-content: center;
  }
}
.job-detail__body {
  padding: 24px;
}
.job-detail__hero {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  -moz-column-gap: 32px;
       column-gap: 32px;
  align-items: start;
}
@media (max-width: 767px) {
  .job-detail__hero {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
}
.job-detail__media {
  border-radius: 12px;
  overflow: hidden;
}
.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);
  -moz-column-gap: 32px;
       column-gap: 32px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.job-detail__meta-row:last-child {
  border-bottom: none;
}
@media (max-width: 767px) {
  .job-detail__meta-row {
    grid-template-columns: 1fr;
    row-gap: 10px;
    padding: 18px 0;
    text-align: center;
  }
}
.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;
    align-items: stretch;
  }
}
.job-detail__action-btn {
  width: 240px;
  max-width: 100%;
  height: 52px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .job-detail__action-btn {
    width: 100%;
  }
}

/* =========================
   Left label / right content rows
   ========================= */
.job-section {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
@media (max-width: 767px) {
  .job-section {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 0;
  }
}
.job-section__label {
  margin: 0;
  font-weight: 600;
}
@media (max-width: 767px) {
  .job-section__label {
    text-align: center;
  }
}
.job-section__body {
  line-height: 1.75;
}
.job-section__body p {
  margin: 0;
}

/* =========================
   職種・業種別 求人一覧
   ========================= */
.job-listing {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .job-listing {
    margin: 0 24px;
    padding: 32px 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 {
    font-size: 20px;
    gap: 12px;
    margin-bottom: 24px;
  }
}
.job-listing__icon {
  width: 20px;
  height: 20px;
  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: 14px;
  font-weight: 700;
  color: #111;
  opacity: 0.75;
  line-height: 1.2;
  letter-spacing: 0.05em;
  position: relative;
}
.job-listing__tab .lg {
  font-size: 20px;
}
.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: 12px;
  align-items: start;
}
@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: baseline;
  justify-content: flex-start;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
}
.job-listing__item:hover {
  text-decoration: underline;
}
.job-listing__label {
  font-size: 14px;
  line-height: 1.5;
}
@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: 2px;
  font-size: 14px;
  line-height: 1;
  color: var(--primary);
  border: 1px solid var(--line);
  background: #fff;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}
.modal.is-open {
  display: block;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.modal__dialog {
  position: relative;
  z-index: 1;
  max-width: 980px;
  width: min(980px, 100% - 32px);
  margin: 40px auto;
}

.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);
}
.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_content {
  padding: 16px 20px;
  max-height: min(70vh, 860px);
  overflow: auto;
}

.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;
}

.popup_content--job {
  padding: 0;
}

.job-accordion {
  padding: 0;
}

.job-acc {
  border-top: 1px solid var(--line);
}
.job-acc:first-child {
  border-top: 0;
}
.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: 16px;
  line-height: 1.2;
}

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

.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__body {
  background: #fff;
  padding: 16px 24px;
}

.job-acc__all {
  margin-bottom: 10px;
}

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

.job-acc__col {
  list-style: none;
  margin: 0;
  padding: 0;
}
.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;
}

/* =========================
   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;
  }
}
/*# sourceMappingURL=style.css.map */
