/* =============================================
   花Job - ユーザーTOP スタイルシート
   UIkit 3.x ベース
============================================= */

/* =============================================
   CSS変数（デザイントークン）
============================================= */
:root {
  --hj-color-primary: #3DBBA7;
  --hj-color-primary-dark: #2FA090;
  --hj-color-primary-light: #E8F8F5;
  --hj-color-secondary: #8CC63F;
  --hj-color-orange: #F7941D;
  --hj-color-orange-dark: #E07A00;
  --hj-color-text: #444444;
  --hj-color-text-light: #666666;
  --hj-color-text-muted: #999999;
  --hj-color-bg: #FFFFFF;
  --hj-color-bg-gray: #F5F5F5;
  --hj-color-border: #DDDDDD;
  --hj-color-border-light: #EEEEEE;
  --hj-font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  --hj-header-height: 56px;
  --hj-bottom-nav-height: 56px;
  --hj-border-radius: 8px;
  --hj-border-radius-sm: 4px;
  --hj-border-radius-lg: 12px;
  --hj-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --hj-shadow-card: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* =============================================
   リセット・ベース
============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--hj-font-family);
  font-size: 14px;
  color: var(--hj-color-text);
  background-color:#F0F4F3;
  line-height: 1.6;
  padding-bottom: calc(60px + env(safe-area-inset-bottom));
}

@media (min-width: 960px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: #6dcbe8;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.75;
  text-decoration: none;
}

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

/* =============================================
   ユーティリティ
============================================= */
.hj-mt-sm { margin-top: 8px; }
.hj-mt-md { margin-top: 16px; }
.hj-mt-lg { margin-top: 24px; }

/* =============================================
   ロゴ
============================================= */
.hj-logo {
  display: inline-flex;
  align-items: center;
}

.hj-logo img{
  height: 30px;
  display: inline-flex;
  align-items: center;
}

.hj-logo-job {
  color: #6dcbe8;
}

.hj-logo--footer .hj-logo-text {
  font-size: 22px;
}

.hj-logo-small {
  font-size: 12px;
  font-weight: 700;
  color: inherit;
}

/* =============================================
   ボタン
============================================= */
.hj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(to right, #76C1D4 0%, #8CC68F 100%);
  border-radius: 8px;
  padding: 4px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--hj-font-family);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
  line-height: 1.4;
}


.hj-btn .inner-button {
  width: 100%;
  height: 45px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background: white;
  border-radius: 5px;
  text-align: center;
  font-size: 18px;
}

.hj-btn .inner-button img {
  height: 25px;
}
.hj-btn:hover {
  opacity: 0.85;
  text-decoration: none;
}

.hj-btn--primary {
  color:#6dcbe8;
  box-shadow: 0 5px 10px -5px rgba(0,0,0,0.5)
}

.hj-btn--primary:hover {
  background-color: var(--hj-color-primary-dark);
  border-color: var(--hj-color-primary-dark);
  color: #b1e2eb;
  opacity: 1;
}

.hj-btn--orange {
  background-color: var(--hj-color-orange);
  color: #FFFFFF;
  border-color: var(--hj-color-orange);
}

.hj-btn--orange:hover {
  background-color: var(--hj-color-orange-dark);
  border-color: var(--hj-color-orange-dark);
  color: #FFFFFF;
  opacity: 1;
}

.hj-btn--outline {
  background-color: transparent;
  color: var(--hj-color-text-light);
  border-color: var(--hj-color-border);
}

.hj-btn--outline-green {
  background-color: transparent;
  color: #6dcbe8;
  border-color: #6dcbe8;
}

.hj-btn--block {
  display: flex;
  width: 100%;
}

.hj-btn--register {
  margin-top: 16px;
  padding: 12px 24px;
  font-size: 15px;
}

.hj-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(to right, #76C1D4 0%, #8CC68F 100%);
  border-radius: 50px;
  padding: 4px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--hj-font-family);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
  line-height: 1.4;
  height: 43px;
}

.hj-menu-btn .inner-button {
  width: 100%;
  height: 35px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background: white;
  border-radius: 50px;
  text-align: center;
  font-size: 14px;
  color: #6dcbe8;
}

.hj-menu-btn .inner-button img {
  height: 18px;
}

.hj-menu-btn--primary {
  color:#6dcbe8;
  box-shadow: 0 5px 10px -5px rgba(0,0,0,0.5)
}

.recruit-staff {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--hj-color-text) !important;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.15s ease;
  margin: 0;
}

.hj-menu-hanawaku-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #edde09;
  border-radius: 50px;
  padding: 4px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--hj-font-family);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
  line-height: 1.4;
  height: 43px;
  color: var(--hj-color-text);
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.5);
  margin: 8px 0;
}

.hj-menu-hanawaku-btn img {
  height: 30px;
}

.hj-menu-hanawaku-btn .hanawaku {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--hj-color-text) !important;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.15s ease;
  margin: 0;
}


.hj-menu-kopan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #1ecc69;
  border-radius: 50px;
  padding: 4px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--hj-font-family);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
  line-height: 1.4;
  height: 43px;
  color: var(--hj-color-text);
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.5);
  margin: 12px 0;
}
.hj-menu-kopan-btn img {
  height: 30px;
}

.hj-menu-kopan-btn .hanawaku {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--hj-color-text) !important;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.15s ease;
  margin: 0;
}

.hj-menu-qa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e2e2e2;
  border-radius: 50px;
  padding: 4px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--hj-font-family);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
  line-height: 1.4;
  height: 43px;
  color: var(--hj-color-text);
  margin: 0;
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.5);
}
.othersite {
  padding: 0px 20px;
}
/* =============================================
   ヘッダー
============================================= */
.hj-header {
  /*position: fixed;*/
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: #FFFFFF;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-auto-flow: column;
  transform: translateY(0);
  transition: transform 0.3s 0.3s;
}

/* 隠すためのクラス */
.hj-header .hidden {
  transform: translateY(-80px);
}

.hj-header-inner {
  background: linear-gradient(to right, #a3e1f0, #8CC68F);
}

.hj-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--hj-header-height);
  padding-left: 16px;
  padding-right: 16px;
}

.hj-header-logo a {
  display: flex;
  align-items: center;
}

.hj-pc-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}

.hj-pc-nav ul li a {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 500;
  padding: 4px 0;
}


.hj-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color:  #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.uk-nav-defauit>li>a:hover {
  color: #1537fb;
}


/* =============================================
   ドロワーメニュー
============================================= */
.hj-drawer.uk-offcanvas-bar {
  background-color: #FFFFFF;
  width: 300px;
  padding: 0 0 200px
}

.hj-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--hj-color-border-light);
  background-color: #FFFFFF;
}

.hj-drawer-header .uk-offcanvas-close {
  position: static;
  padding: 4px;
  color: var(--hj-color-text-light);
  border: none;
  background-color: #FFFFFF;
}

.hj-drawer-nav {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  /*border-bottom: 1px solid var(--hj-color-border-light);*/
}

.hj-drawer-nav li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  color: var(--hj-color-text);
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.15s ease;
}

.hj-drawer-nav li a:hover {
  background-color: var(--hj-color-bg-gray);
  color: #03aaf3;
}

.hj-drawer-nav-sub a {
  padding-left: 40px !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--hj-color-text-light) !important;
}

.hj-drawer-login-area {
  padding: 10px 20px;
  /*border-bottom: 1px solid var(--hj-color-border-light);*/
}

.hj-drawer-banner {
  padding: 0px 20px;
  /*border-bottom: 1px solid var(--hj-color-border-light);*/
}

.hj-drawer-section {
  padding: 16px 20px;
  /*border-bottom: 1px solid var(--hj-color-border-light);*/
}

.hj-drawer-section-title {
  padding: 12px 20px 4px;
  font-size: 12px;
  color: var(--hj-color-text-muted);
  font-weight: 500;
}

.hj-drawer-qa {
  padding: 16px 20px;
  /*border-bottom: 1px solid var(--hj-color-border-light);*/
}

.hj-qa-link {
  display: block;
  text-decoration: none;
}

.hj-qa-box {
  background-color: var(--hj-color-primary-light);
  border: 2px solid #6dcbe8;
  border-radius: var(--hj-border-radius);
  padding: 12px 16px;
  text-align: center;
}

.hj-qa-label {
  font-size: 11px;
  color: #6dcbe8;
  font-weight: 500;
}

.hj-qa-title {
  font-size: 22px;
  font-weight: 700;
  color: #6dcbe8;
  line-height: 1.2;
}

.hj-qa-sub {
  font-size: 11px;
  color: #6dcbe8;
}

.hj-drawer-footer-links {
  list-style: none;
  margin: 0;
  padding: 8px 0 24px;
}

.hj-drawer-footer-links li a {
  display: block;
  padding: 8px 20px;
  font-size: 12px;
  color: var(--hj-color-text-light);
}

/* =============================================
   レイアウト（PC 2カラム）
============================================= */
.hj-layout {
  /*display: flex;*/
  gap: 24px;
  align-items: flex-start;
  max-width: 1200px;
  padding-top: 8px;
  padding-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 959px) {
  .hj-layout {
    padding: 0;
  }
  .uk-container {
    padding-left: 0;
    padding-right: 0;
  }
}

.hj-sidebar {
  width: 230px;
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--hj-header-height) + 16px);
}

.hj-sidebar-inner {
}

.hj-sidebar-title {
  background: linear-gradient(to right, #8CC68F , #76C1D4);
  padding: 20px 10px;
}
.hj-sidebar-title {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px;
  line-height: 1.4;
}

.hj-sidebar-subtitle {
  font-size: 12px;
  font-weight: 700;
  color: var(--hj-color-text);
  margin: 0 0 8px;
  line-height: 1.4;
}

.hj-sidebar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
}

.hj-sidebar-nav > li {
  margin-bottom: 4px;
}

.hj-sidebar-nav > li > a {
  color: var(--hj-color-text);
  font-weight: 500;
}

.hj-sidebar-nav ul {
  list-style: none;
  margin: 4px 0 0 8px;
  padding: 0;
}

.hj-sidebar-nav ul li a {
  color: #6dcbe8;
  font-size: 24px;
  font-weight: bold;
  line-height: 2.2rem;
}
.hj-sidebar-nav ul li a span {
  padding-left: 10px;
  color: #444444;
  font-size: 12px;
  font-weight: 400;
}

.hj-sidebar-section {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hj-color-border-light);
}

.hj-sidebar-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.hj-sidebar-note {
  font-size: 11px;
  color: var(--hj-color-text-muted);
  margin: 8px 0 0;
  line-height: 1.4;
}

.hj-sidebar-search-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 11px;
  color: var(--hj-color-text-light);
  line-height: 1.8;
}

.hj-content {
  flex: 1;
  min-width: 0;
}

/* =============================================
   セクション共通
============================================= */
.hj-section {
  /*background-color: #FFFFFF;*/
  border-radius: 0;
  margin-bottom: 8px;
  overflow-x: clip;
  overflow-y: visible;
  padding: 40px 0;
}

@media (min-width: 960px) {
  .hj-section {
    border-radius: var(--hj-border-radius);
    margin-bottom: 12px;
  }
}

.hj-section-label {
  background-color: #6dcbe8;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  display: inline-block;
}

/* =============================================
   ファーストビュー
============================================= */
.hj-firstview {
  padding: 0;
  overflow: hidden;
}

.hj-fv-scroll-wrap {
    width: 100%;
    overflow-x: auto;
    position: relative;
    padding: 0px 8px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    height: stretch;
}

.hj-fv-card {
  width: 28.7rem;
  flex-shrink: 0;
  background-color: #FFFFFF;
  border: 1px solid var(--hj-color-border-light);
  border-radius: var(--hj-border-radius-sm);
  overflow: hidden;
  box-shadow: var(--hj-shadow-card);
  transition: box-shadow 0.2s ease;
  cursor: pointer;
}
.hj-fv-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.hj-fv-scroll-wrap .hj-job-card-body {
padding: 0 8px 8px;
height: 7rem;
}

@media (max-width: 959px) {
  .hj-fv-scroll-wrap {
    padding: 20px 0px 0px;
  }
  .hj-fv-scroll-wrap .hj-job-card {
    width: calc(100vw - 32px);
  }
}

@media (min-width: 640px) and (max-width: 959px) {
  .hj-fv-scroll-wrap .hj-job-card {
    width: 340px;
  }
}

@media (min-width: 960px) {
.hj-fv-scroll-wrap .hj-job-card {
  width: 390px;
}
.hj-fv-scroll-wrap .hj-job-card-img {
  height: 380px;
}
}

/*キャッチコピー*/

.catch-copy {
  font-size: 20px;
  position: relative;
  text-align: center;
  margin: 0 auto 20px;
  width: fit-content;
}

.catch-copy p {
  font-weight: 400;
  color: #444;
  line-height: 1.4;
  margin: 0 40px;
}

.catch-copy .line {
  position: absolute;
  top: 30px;
  width: 60px;
  height: 2px;
  background-color: #76C1D4;
}

.catch-copy .line-right {
  left: 0;
  transform: rotate(45deg);
}

.catch-copy .line-left {
  right: 0;
  transform: rotate(-45deg);
}


/*検索部分*/
.search-section {
  padding: 0 10px 20px;
  text-align: center;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* 入力欄のラッパーとボタン配置 */
.custom-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 500px;
  padding: 4px;
}

.custom-input-wrapper .uk-input {
  border: none !important;
  height: 50px;
  padding-left: 25px;
  box-shadow: none !important;
}

/* 検索ボタン（グラデーション円） */
.custom-search-btn {
  width: 50px;
  height: 50px;
  padding: 0;
  min-width: 50px;
  background: linear-gradient(135deg, #a2e0e9 0%, #76c09a 100%) !important;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 検索カード */
.search-card {
  background: linear-gradient(to right, #76C1D4, #8CC68F);
  border-radius: 15px;
  padding: 20px 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.search-title {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  margin-bottom: 20px;
}

.search-title h2 {
  font-size: 18px;
  margin: 0;
  margin-left: 8px;
  color: #FFFFFF;
  font-weight: 700;
}

/* 検索ボタンエリア */
.search-buttons {
  display: flex;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.search-btn {
  flex: 1;
  background: none;
  border: none;
  border-right: 1px solid #ddd;
  padding: 15px 5px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.search-btn:last-child {
  border-right: none;
}

.search-btn .btn-icon {
  font-size: 24px;
  color: #76C1D4; /* アイコンの色 */
}

.search-btn span {
  font-size: 14px;
  font-weight: bold;
  color: #76C1D4;
}
.search-icon img {
  width: 25px;
}

.btn-icon img {
  width: 30px;
}

.hj-slider {
  position: relative;
  margin-top: 20px;
}

.hj-slide-item {
  position: relative;
  border: 1px solid var(--hj-color-border-light);
  border-radius: var(--hj-border-radius-sm);
  padding: 10px;
}

.hj-slide-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

@media (min-width: 960px) {
  .hj-slide-img {
    height: 280px;
  }
}

.hj-slide-content {
  padding: 10px 14px;
  background-color: #FFFFFF;
}

.hj-slide-catch {
  font-size: 13px;
  font-weight: 700;
  color: var(--hj-color-text);
  margin: 0 0 4px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hj-slide-info {
  font-size: 11px;
  color: var(--hj-color-text-light);
  margin: 0;
  line-height: 1.5;
}

.hj-dotnav {
  padding: 8px 0;
}

.uk-dotnav > * > * {
  background-color: var(--hj-color-border);
}

.uk-dotnav > .uk-active > * {
  background-color: #6dcbe8;
}

.hj-search-banner {
  padding: 12px 10px;
  /*background-color:#FFFFFF;*/
  text-align: center;
  /*border-top: 1px solid var(--hj-color-border-light);*/
}

.hj-search-banner-text {
  font-size: 12px;
  color: var(--hj-color-text-light);
  margin: 0 0 8px;
}

/* =============================================
   求人タグ
============================================= */
.tag-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 6px 10px;
  padding: 0px;
}

.tag {
  display: inline-block;
  white-space: nowrap;
  padding: 0px;
  border-radius: 3px;
  border-width: 2px;
  border-style: solid;
  font-size: 12px;
  font-weight: bold;
  background-color: #ffffff;
  line-height: 14px
}

/* ショップ（水色） */
.tag-shop {
  color: #89C3D4;
  border-color: #89C3D4;
  padding: 0 2px;
}

/* SPOT（緑） */
.tag-shop--spot {
  color: #32a43f;
  border-color: #32a43f;
}

/* SPOT ハナワク - 募集人数 */
.tag-headcount {
  color: #32a43f;
  border: 2px solid #32a43f;
  padding: 0 8px;
  font-weight: normal;
}

/* SPOT ハナワク - 募集中・締め切り */
.tag-status {
  padding: 0 8px;
  border: 2px solid;
  font-weight: normal;
}

.tag-status--open {
  color: #5e81d4;
  border-color: #5e81d4;
}

.tag-status--closed {
  color: rgb(240, 60, 105);
  border-color: rgb(240, 60, 105);
}

.hj-job-card-date_time {
  color: #32a43f;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}

.hj-job-card-location {
  color: #fff;
  background-color: #32a43f;
  padding: 4px;
  border-radius: 3px;
  font-size: 9px;
  margin: 0;
}

.hj-job-card-category {
  margin: 0;
  color: var(--hj-color-text);
}

.hj-job-card-detail {
  color: #212121;
  background-color: #e6ce0a;
  font-size: 10px;
  border-radius: 3px;
  padding: 0 7px;
  margin: 0;
  height: 22px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-top: 8px;
}

.hj-job-card-detail-icon {
  display: block;
}

/* アルバイト（オレンジ） */
.tag-parttime {
  color: #D97328;
  border-color: #D97328;
  padding: 0 2px;
}

/* 地域（グレー） */
.tag-location {
  color: #888888;
  border-color: #888888;
  padding: 0 2px;
}

/* 契約社員（緑） */
.tag-contractemp {
  color: #4bcd9b;
  border-color: #4bcd9b;
  padding: 0 2px;
}

/* ウエディング（ピンク） */
.tag-wedding {
  color: #ed43a3;
  border-color: #ed43a3;
  padding: 0 2px;
}

/* 正社員（青） */
.tag-employee {
  color: #3b6ad6;
  border-color: #3b6ad6;
  padding: 0 2px;
  ;
}

/* 葬儀（紫） */
.tag-funeral {
  color: #944bc1;
  border-color: #944bc1 ;
  padding: 0 2px;
  ;
}





/* =============================================
   仕事種別グリッド
============================================= */
.hj-job-type {
  padding: 16px 14px;
}

.hj-section-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--hj-color-text);
  margin: 0 0 12px;
  text-align: center;
  padding: 10px;
  background-color: #6dcbe8;
  color: #FFFFFF;
  border-radius: var(--hj-border-radius-sm);
}

.hj-job-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

@media (min-width: 960px) {
  .hj-job-type-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.hj-job-type-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  background-color: var(--hj-color-bg-gray);
  border-radius: var(--hj-border-radius-sm);
  border: 1px solid var(--hj-color-border-light);
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease;
  gap: 6px;
}

.hj-job-type-item:hover {
  background-color: var(--hj-color-primary-light);
  border-color: #6dcbe8;
  opacity: 1;
}

.hj-job-type-icon {
  font-size: 24px;
  line-height: 1;
}

.hj-job-type-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--hj-color-text);
  text-align: center;
  line-height: 1.3;
}

/* =============================================
   求人セクション
============================================= */
.hj-job-section {
  padding: 0 0 12px;
}

.hj-job-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
}

.hj-job-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hj-section-badge {
  display: inline-block;
  border-radius: var(--hj-border-radius-sm);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.hj-section-badge--hot {
  color: #6dcbe8;
  font-size: 38px;
}

.hj-section-badge--new {
  color: #6dcbe8;
  font-size: 38px;
}

.hj-section-badge--haken {
  color: #6dcbe8;
  font-size: 38px;
}

.hj-section-badge--spot {
  color: #edde09;
  font-size: 38px;
}

.hj-section-badge--wedding {
  color: #6dcbe8;
  font-size: 38px;
  letter-spacing: -2px;
  display: inline-block;
  transform: scale(0.9, 1);
  transform-origin: left;
}

.hj-section-badge--shop {
  color: #6dcbe8;
  font-size: 38px;
}

.hj-section-badge--funeral {
  color: #6dcbe8;
  font-size:  38px;
  letter-spacing: -2px;
  display: inline-block;
  transform: scale(0.9, 1);
  transform-origin: left;
}

.hj-section-badge--etc {
  color: #6dcbe8;
  font-size: 38px;
}

.hj-section-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--hj-color-text);
}

.hj-section-more {
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #76C1D4, #8CC68F);
  color: #fff;
  padding: 2px 8px;
  font-size: 13px;
  font-family: var(--hj-font-family);
  cursor: pointer;
  text-decoration: none;
  line-height: 1.4;
  border-radius: 50px;
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.5);
  /*border: 1px solid var(--hj-color-border-light);*/
}

.hj-section-desc {
  padding: 8px 14px 4px;
  font-size: 12px;
  color: var(--hj-color-text-muted);
  margin: 0;
}

/* =============================================
   求人カードスクロール
============================================= */
.hj-job-scroll-wrap {
  position: relative;
  overflow: hidden;
  /*overflow-x: auto;
  -webkit-overflow-scrolling: touch;*/
  scrollbar-width: none;
}

.hj-job-scroll-wrap::-webkit-scrollbar {
  display: none;
}
/* アイテムが1つの場合は矢印を非表示 */
.hj-job-scroll-wrap.single-item .hj-slider-arrow {
  display: none;
}

/* ========================================
   矢印ボタン
======================================== */
.hj-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: rgb(255 255 255 / 50%);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 3px;
}

.hj-slider-arrow:hover {
  background-color: #6dcbe8;
  border-color: #6dcbe8;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hj-slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.hj-slider-arrow--left {
  left: 0;
}

.hj-slider-arrow--right {
  right: 0;
}

.hj-slider-arrow svg {
  color: #333;
}

.hj-slider-arrow:hover svg {
  color: #fff;
}

/* 矢印の無効化状態 */
.hj-slider-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background-color: #f5f5f5;
}

.hj-slider-arrow:disabled:hover {
  background-color: #f5f5f5;
  transform: translateY(-50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hj-job-cards {
  display: flex;
  gap: 10px;
  width: max-content;
  position: relative;
  transition: transform 0.3s ease;
  margin: auto;
}

@media (min-width: 960px) {
  .hj-job-scroll-wrap {
    overflow-x: visible;
    padding: 4px 14px 8px;
  }

  .hj-job-cards {
    width: max-content;
    gap: 12px;
    margin: auto;
  }
}

/* アイテムが1つの場合は中央配置 */
.hj-job-cards.single-item {
  margin: 0 auto;
  justify-content: center;
}

/* アイテムが複数の場合は自動スクロール */
/*.hj-job-cards.auto-scroll {
  animation: scroll-left 30s linear infinite;
}*/

/* ホバー時にアニメーション一時停止 */
.hj-job-cards.auto-scroll:hover {
  animation-play-state: paused;
}

/* 右から左へのスクロールアニメーション */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========================================
   求人カードリンク
======================================== */
.hj-job-card-link {
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  display: block;
  transition: transform 0.3s ease;
}

.hj-job-card-link:hover {
  transform: translateY(-8px);
}

/* ========================================
   求人カード
======================================== */
.hj-job-card {
  width: 280px;
  flex-shrink: 0;
  height: 100%;
  background-color: #FFFFFF;
  border: 1px solid var(--hj-color-border-light);
  border-radius: var(--hj-border-radius-sm);
  overflow: hidden;
  box-shadow: var(--hj-shadow-card);
  transition: box-shadow 0.2s ease;
  cursor: pointer;
}

.hj-job-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hj-job-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

@media (min-width: 960px) {
  .hj-job-card {
    width: 280px;
  }
}

/* ========================================
   カード画像エリア
======================================== */
.hj-job-card-img-wrap {
  position: relative;
  overflow: hidden;
  margin: 10px;
  aspect-ratio: 3 / 2;
}

.hj-job-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  /*display: block;*/
}

.hj-job-card:hover .hj-job-card-img {
  transform: scale(1.05);
}

@media (max-width: 960px) {
  .hj-job-card-img-wrap {
    height: max-content;
}
}

.hj-job-card-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  padding: 2px 6px;
  border-radius: var(--hj-border-radius-sm);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
}

.hj-job-card-badge--new {
  background-color: #6dcbe8;
  color: #FFFFFF;
}

.hj-job-card-badge--hot {
  background-color: #FF4444;
  color: #FFFFFF;
}

.hj-job-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 10px 10px;
}

.hj-job-card-body > .hj-job-card-body-wrap:last-child {
  margin-top: auto;
}

.hj-job-card-type {
  font-size: 15px;
  font-weight: 700;
  color: var(--hj-color-text);
  margin: 0;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hj-job-card-company {
  font-size: 14px;
  color: var(--hj-color-text-light);
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1.3rem;
}

.hj-job-card-salary {
  font-size: 15px;
  font-weight: 700;
  color: var(--hj-color-text);
  margin: 0;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.5rem;
}

.hj-job-card-salary--big {
  font-size: 16px;
  color: var(--hj-color-orange);
}

.hj-job-card-date {
  font-size: 14px;
  color: var(--hj-color-text-muted);
  margin: 0;
}

.hj-job-card-body-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.section-hot .hj-job-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 300px;
  margin: 10px;
}


@media (max-width: 960px) {
.section-hot .hj-job-card-img-wrap {
  height: 258px;
}
}

/* ========================================
   ドットナビゲーション
======================================== */
.hj-dotnav-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.hj-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--hj-color-border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hj-dot.active {
  background-color: #6dcbe8
  transform scale(1.3);
}

.hj-dot:hover {
  background-color: #6dcbe8;
  opacity: 0.7;
}

/* =============================================
   シンプルセクション（WEDDING/SHOP/FUNERAL/etc）
============================================= */
.hj-job-section--simple {
  padding-bottom: 16px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
   
   /* ============================================================
      Accordion Container
      ============================================================ */
   .accordion-container {
     width: 100%;
     /* max-width: 400px;  画像の幅に合わせて調整 */
   }
   
   /* ============================================================
      Accordion Header
      ============================================================ */
   .accordion-header {
     width: 100%;
     height: 60px;
     background: linear-gradient(to right, #79c9d9 0%, #76cc9d 100%);
     border: none;
     border-radius: 8px;
     padding: 0 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     cursor: pointer;
     color: #ffffff;
     transition: border-radius 0.3s ease;
     outline: none;
   }
   
   /* 開いている時は下の角を丸めない */
   .accordion-header.active {
     border-bottom-left-radius: 0;
     border-bottom-right-radius: 0;
   }
   
   .header-left {
     display: flex;
     align-items: center;
     gap: 12px;
   }
   
   /* ロケーションアイコン（白丸背景） */
   .location-icon {
     width: 32px;
     height: 32px;
     background-color: #ffffff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #79c9d9; /* グラデーションの左側の色 */
   }
   
   .location-icon img {
     width: 21px;
     height: 25px;
   }
   
   .header-text {
     font-size: 16px;
     font-weight: 700;
     letter-spacing: 0.05em;
   }
   
   /* ============================================================
      Toggle Icon (+/-)
      ============================================================ */
   .toggle-icon {
     position: relative;
     width: 16px;
     height: 16px;
   }
   
   .icon-line {
     position: absolute;
     background-color: #ffffff;
     border-radius: 2px;
     transition: transform 0.3s ease, opacity 0.3s ease;
   }
   
   .icon-line.horizontal {
     width: 100%;
     height: 2px;
     top: 50%;
     left: 0;
     transform: translateY(-50%);
   }
   
   .icon-line.vertical {
     width: 2px;
     height: 100%;
     top: 0;
     left: 50%;
     transform: translateX(-50%);
   }
   
   /* アクティブ（開いている）状態の「ー」表示 */
   .accordion-header.active .icon-line.vertical {
     transform: translateX(-50%) rotate(90deg);
     opacity: 0;
   }
   
   /* ============================================================
      Accordion Content
      ============================================================ */
   .accordion-content {
     background-color: #ffffff;
     border: 1px solid #e0e0e0;
     border-top: none;
     border-bottom-left-radius: 8px;
     border-bottom-right-radius: 8px;
     overflow: hidden;
     max-height: 0;
     transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   }
   
   .accordion-content:not([hidden]) {
     max-height: 1000px; /* 十分な高さを確保 */
   }
   
   .content-inner {
     padding: 24px 20px;
     display: flex;
     flex-direction: column;
     gap: 20px;
   }
   
   .accordion-content2 {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .accordion-content2:not([hidden]) {
    max-height: 1000px; /* 十分な高さを確保 */
  }
  
  .content-inner {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
   /* ============================================================
      Region & Prefecture Styling
      ============================================================ */
   .region-group {
     display: flex;
     flex-direction: column;
     gap: 8px;
   }
   
   .region-title {
     font-size: 14px;
     font-weight: 700;
     color: #333333;
     margin-bottom: 0;
   }
   
   .prefecture-list {
     font-size: 13px;
     color: #666666;
     line-height: 1.8;
     letter-spacing: 0.02em;
     margin: 0;
   }
   
   .prefecture-list span {
     cursor: pointer;
   }
   
   .prefecture-list span:hover {
     color: #79c9d9;
     text-decoration: underline;
   }



/* =============================================
   会員登録バナー
============================================= */
.hj-register-section {
  padding: 5px ;
  background: linear-gradient(to right, #76C1D4 0%, #8CC68F 100%);
  border-radius: 10px;
}

.hj-register-area {
  max-width: 100%;
}

.hj-register-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #6dcbe8;
  font-weight: 700;
  margin-bottom: 12px;
}

.hj-register-box {
  background-color: #FFFFFF;
  border-radius: var(--hj-border-radius);
  padding: 16px;
}

.hj-register-title {
  font-size: 16px;
  font-weight: 700;
  color: #6dcbe8;
  margin: 0 0 10px;
}

.hj-register-text {
  font-size: 12px;
  color: var(--hj-color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   エリアセクション
============================================= */
.hj-area-section {
  padding: 16px 0px;
}

.hj-area-header {
  margin-bottom: 8px;
}

.hj-area-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
}

.hj-area-title-main {
  font-size: 38px;
  font-weight: 700;
  color: #6dcbe8;
}

.hj-area-title-sub {
  font-size: 13px;
  font-weight: 700;
  color: var(--hj-color-text);
}

.hj-area-tabs {
  margin-bottom: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.hj-area-tabs ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: max-content;
}

.hj-area-tabs ul li a {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--hj-color-text-light);
  border: 1px solid var(--hj-color-border);
  border-radius: var(--hj-border-radius-sm);
  background-color: #FFFFFF;
  white-space: nowrap;
  transition: background-color 0.15s ease;
}

.hj-area-tabs ul li.uk-active a,
.hj-area-tabs ul li a:hover {
  background-color: #6dcbe8;
  color: #FFFFFF;
  border-color: #6dcbe8;
  opacity: 1;
}

.hj-area-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 960px) {
  .hj-area-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.hj-area-block {
  border-bottom: 1px solid var(--hj-color-border-light);
  padding-bottom: 12px;
}

.hj-area-block:last-child {
  border-bottom: none;
}

.hj-area-region {
  font-size: 13px;
  font-weight: 700;
  color: var(--hj-color-text);
  margin: 0 0 8px;
  padding-bottom: 4px;
  border-bottom: 2px solid #6dcbe8;
  display: inline-block;
}

.hj-area-prefs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hj-area-prefs a {
  font-size: 12px;
  color: var(--hj-color-text-light);
  padding: 2px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.hj-area-prefs a:hover {
  color: #6dcbe8;
  border-bottom-color: #6dcbe8;
  opacity: 1;
}

.hj-area-prefs a::after {
  content: '・';
  color: var(--hj-color-border);
  margin-left: 4px;
}

.hj-area-prefs a:last-child::after {
  display: none;
}

.hanatsu {
  width: 25px;
}
/* =============================================
   フッター
============================================= */
.hj-footer {
  background-color: #eaeaea;
  border-top: 1px solid var(--hj-color-border-light);
  padding: 32px 0 24px;
  margin-top: 24px;
}

.hj-footer-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

@media (min-width: 960px) {
  .hj-footer-links {
    flex-direction: row;
    gap: 48px;
    justify-content: center;
  }
}

.hj-footer-links-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--hj-color-text);
  margin: 0 0 10px;
}

.hj-footer-links-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 48px;
}


.hj-footer-links-col ul li {
  margin-bottom: 6px;
}

.hj-footer-links-col ul li a {
  font-size: 12px;
  color: var(--hj-color-text-light);
}

.hj-footer-logo {
  text-align: center;
  margin-bottom: 12px;
}

.hj-footer-copyright {
  text-align: center;
  font-size: 11px;
  color: var(--hj-color-text-muted);
  margin: 0;
}


.hj-footer-links-col img {
  width: 100px;
}


.pagetop-btn {
  position: fixed;
  width: 52px;
  height: 52px;
  border: solid 2px #ffffff;
  border-radius: 50%;
  background: linear-gradient(to right, #76C1D4, #8CC68F);;
  cursor: pointer;
  right: 20px;
  bottom: 150px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 2px 6px rgb(93 93 93 / 49%);
}

.pagetop-btn::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-left: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%) rotate(45deg);
}


.pagetop-btn.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   ボトムナビゲーション（SP）
============================================= */
/* ============================================================
   Navigation Bar
   ============================================================ */
   .nav-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    height: 85px;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding-bottom: max(env(safe-area-inset-bottom), 10px);
  }
  
  .nav-container {
    width : 100%;
        max-width: 500px;
        display: flex;
        justify-content: space-around;
        align-items: flex-end;
        margin-bottom: 10px;
        position: fixed;
  }
  
  .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #444444;
    padding-bottom: 8px;
    cursor: pointer;
  }
  
  /* ============================================================
     Icons
     ============================================================ */
  .nav-icon-box {
    width: 28px;
    height: 28px;
    margin-bottom: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .icon-stroke {
    width: 24px;
    height: 24px;
    color: #79c9d9; /* 検討中・最近見た求人の色 */
  }
  
  .icon-fill.green {
    color: #38b48b; /* コパンの緑 */
  }
  
  .icon-fill.yellow {
    color: #fcc800; /* ハナワクの黄色 */
  }
  
  /* ============================================================
     Center Button (Login / MyPage)
     ============================================================ */
  .center-item {
    position: relative;
    z-index: 1001;
    overflow: visible;
  }
  
  .center-btn-wrapper {
    position: absolute;
    top: -55px; /* 上にはみ出す */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .center-btn-circle {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #79c9d9 0%, #76cc9d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    /* 画像にある外側のぼんやりした影を再現 */
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.9), 0 4px 15px #cbcbcb;
  }
  
  .center-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .center-icon svg {
    width: 90%;
    height: 90%;
  }
  
  /* ============================================================
     Labels & Tags
     ============================================================ */
  .nav-labels {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
  
  .label-main {
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
  }
  
  /* ログイン/マイページの中央テキストの色 */
  .label-main.highlight {
    color: #3a9ad9;
  }
  
  .label-sub {
    font-size: 9px;
    color: #888888;
    white-space: nowrap;
  }
  
  /* 下段のタグ（コパン・ハナワク） */
  .label-sub.tag {
    padding: 1px 6px;
    border-radius: 10px;
    font-weight: 700;
    color: #ffffff;
  }
  
  .label-sub.tag.green {
    background-color: #a7dab2;
    color: #666666;
    border: white;
  }
  
  .label-sub.tag.yellow {
    background-color: #edde0a;
    color: #666666;
    border: white;
  }
  
  /* ============================================================
     Animations
     ============================================================ */
  .center-btn-circle {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .center-item:active .center-btn-circle {
    transform: scale(0.92);
  }
  
  @keyframes iconIn {
    from { opacity: 0; transform: scale(0.8) rotate(-10deg); }
    to { opacity: 1; transform: scale(1) rotate(0); }
  }
  
  .center-icon {
    animation: iconIn 0.3s ease-out;
  }
/* =============================================
   モーダル
============================================= */
.hj-modal-external {
  border-radius: var(--hj-border-radius-lg);
  padding: 24px;
  max-width: 320px;
  margin: 0 auto;
}

.hj-modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--hj-color-text);
  margin: 0 0 12px;
  text-align: center;
}

.hj-modal-text {
  font-size: 13px;
  color: var(--hj-color-text-light);
  text-align: center;
  line-height: 1.7;
  margin: 0 0 30px;
}
.hj-modal-text-url {
  font-size: 13px;
  color: #4793db;
  text-align: center;
  line-height: 1.7;
}
.hj-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.hj-modal-actions .hj-btn {
  flex: 1;
  max-width: 120px;
}

.hj-modal-hanatsu {
  border-radius: var(--hj-border-radius-lg);
  padding: 32px 24px;
  max-width: 280px;
  margin: 0 auto;
  background-color: #FFFFFF;
}

.hj-modal-hanatsu-inner {
  text-align: center;
}

.hj-modal-hanatsu-logo {
  font-size: 20px;
  font-weight: 700;
  color: #6dcbe8;
  margin-bottom: 16px;
}

.hj-modal-hanatsu-text {
  font-size: 14px;
  font-weight: normal;
  color: var(--hj-color-text);
  line-height: 1.8;
  margin: 0 0 10px;
  text-align: center;
}

.hj-btn-cancel {
    align-items: center;
    justify-content: center;
    background: #d0d0d0;
    padding: 4px 20px;
    font-size: 14px;
    font-family: var(--hj-font-family);
    cursor: pointer;
    text-decoration: none;
    line-height: 1.4;
    border-radius: 50px;
    box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.5);
    border: none;
}
/* UIkit モーダル上書き */
.uk-modal-dialog {
  border-radius: var(--hj-border-radius-lg);
}

/* =============================================
   UIkit 上書き
============================================= */
.uk-container {
  max-width: 1200px;
  padding-left: 16px;
  padding-right: 16px;
}

/* スライドショー ドットナビ */
.uk-slideshow-nav.uk-dotnav {
  padding: 8px 0;
}

/* =============================================
   PC レスポンシブ（960px以上）
============================================= */
@media (min-width: 960px) {
  body {
    font-size: 15px;
    background-color: #F0F4F3;
  }

  .hj-header-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .sidebar-icon img {
   width: 45px;
  }

.search-section {
    width: 60%;
    margin: auto;
  }

  .hj-drawer-login-area {
     padding: 0;
     border-bottom: none;
}
.hj-menu-btn .inner-button {
  font-size: 14px;
}
.hj-drawer-banner {
    padding: 10px 0;
}
  .accordion-container {
    width: 56%;
    margin: auto;
  }

  .hj-register-area {
    margin: auto;
  }

  .hj-layout {
    padding-top: 20px;
    padding-bottom: 60px;
  }

  .hj-section {
    margin-bottom: 16px;
    border-radius: 10px;
    /* border-bottom: 1px solid var(--hj-color-border-light); */
    /* padding-bottom: 30px; */
  }

  .hj-job-section-header {
    padding: 16px 20px 10px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
  }

  .hj-job-scroll-wrap {
    padding: 4px 20px 8px;
  }

  .hj-job-type {
    padding: 20px;
  }

  .hj-section-heading {
    font-size: 16px;
  }

  .hj-firstview {
    border-radius: var(--hj-border-radius-lg);
    overflow: hidden;
  }

  .hj-search-banner {
    padding: 30px 12px 30px;
    align-items: center;
    gap: 16px;
    margin: auto;
    /*width: 60%;*/
  }

  .hj-search-banner-text {
    margin: 0;
    white-space: nowrap;
  }

  .hj-section-more {
    padding: 4px 20px;
    font-size: 14px;
}

  .hj-search-banner .hj-btn--block {
    width: auto;
    flex: 1;
  }

  .hj-register-section {
    width: 56%;
    margin: auto;
  }

  .hj-area-section {
    padding: 24px;
  }

.hj-area-title {
  padding: 16px 20px 10px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 20px;
}

.hj-register-text {
  font-size: 14px;
}

.hj-area-prefs a {
  font-size: 14px;
}

  .hj-footer {
    padding: 40px 0 0;
    background-color: #eeeeee;
  }

  .hj-footer-links-title {
    font-size: 16px;
  }
  .hj-footer-links-col ul li a {
    font-size: 14px;
  }
}

/* =============================================
   タブレット（640px〜959px）
============================================= */
@media (min-width: 640px) and (max-width: 959px) {
  .hj-job-type-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .hj-job-cards {
    gap: 12px;
  }

  .hj-job-card {
    width: 280px;
    padding: 10px;
  }
}

/* =============================================
   スライダーナビゲーション（カード下）
============================================= */
.hj-slider-nav {
  margin-top: 10px;
  padding: 4px 15px;
  justify-content: space-between !important;
}

.hj-job-section .uk-slider-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.hj-job-section .uk-slider-items {
  align-items: stretch;
}

.hj-job-section .uk-slider-items:has(> li:only-child) {
  justify-content: center;
}

.hj-job-section .uk-slider-items:has(> li:only-child) > li {
  width: 280px !important;
}

.hj-job-section .uk-slider-items.hj-slider-items--centered {
  justify-content: center;
}

@media (max-width: 330px) {
  #section-spot .uk-slider-items > li {
    width: 100vw !important;
  }
  .catch-copy {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .catch-copy p {
    font-size: 18px;
  }
}

@media (max-width: 374px) {
  .hj-job-section-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .hj-section-name {
    margin-left: 0 !important;
    padding-left: 5px;
  }
  .recruit-staff {
    font-size: 12px;
  }
  .hj-slider-nav .uk-dotnav {
    margin-left: -9px;
  }
  .hj-slider-nav .uk-dotnav > * {
    padding-left: 9px;
  }
  .hj-slider-nav .uk-dotnav > * > * {
    width: 8px;
    height: 8px;
  }
}

@media (min-width: 640px) and (max-width: 959px) {
  .catch-copy {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

.hj-slider-nav--spot .hj-slidenav-btn {
  background: #edde09;
}

.hj-slider-nav--spot .uk-dotnav > li.uk-active > a {
  background: #edde09;
}

.hj-slidenav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(to right, #76c1d4, #8cc68f);
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hj-slidenav-btn svg {
  stroke: #fff !important;
  fill: none !important;
  width: 14px;
  height: 14px;
}

.hj-slidenav-btn * {
  color: #fff !important;
  stroke: #fff !important;
}

.hj-slidenav-btn:hover {
  opacity: 0.85;
}

.hj-slider-nav .uk-dotnav > li > a {
  border: none;
}

/* =============================================
   アニメーション
============================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hj-section {
  animation: fadeInUp 0.3s ease forwards;
}
/* =============================================
   スクロールバー（WebKit）
============================================= */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--hj-color-bg-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--hj-color-border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--hj-color-text-muted);
}

/* ========================================
   Search Modal
======================================== */
.hj-search-modal {
  width: min(920px, calc(100vw - 32px));
  border-radius: 24px;
  padding: 32px 24px;
  box-sizing: border-box;
}

.hj-search-modal--detail {
  width: min(1040px, calc(100vw - 24px));
}

.hj-search-modal-header {
  margin-bottom: 24px;
}

.hj-search-modal-title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: #39bfc6;
}

.hj-search-modal-lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #666666;
}

.hj-search-modal-body {
  margin-top: 20px;
}

.hj-modal-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

/* アコーディオン内は768px以上でも2カラム（モーダルのグリッドは変更なし） */
.accordion-content .hj-modal-chip-grid,
.accordion-content2 .hj-modal-chip-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 639px) {
  .accordion-content .hj-modal-chip-grid,
  .accordion-content2 .hj-modal-chip-grid {
    grid-template-columns: 1fr;
  }
}

.hj-modal-chip-choice {
  display: block;
  width: 100%;
  margin: 0;
  cursor: pointer;
}

.hj-modal-chip-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hj-modal-chip {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 14px;
  border: 1px solid #39bfc6;
  border-radius: 999px;
  background: #ffffff;
  color: #39bfc6;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="checkbox"]:checked + .hj-modal-chip {
  background: #4DC8B4;
  border-color: #4DC8B4;
  color: #fff;
  box-shadow: 0 3px 8px rgba(77, 200, 180, .25);
}

.hj-modal-chip:hover {
  border-color: #4DC8B4;
  color: #4DC8B4;
  text-decoration: none;
}

.hj-chip-search-form {
  margin: 0;
}

.hj-chip-search-actions {
  margin-top: 20px;
  text-align: center;
}

.hj-modal-area-accordion {
  margin: 0;
}

.hj-modal-area-accordion > li {
  border-bottom: 1px solid #eef1f1;
  padding: 10px 0;
}

.hj-modal-area-accordion .uk-accordion-title {
  font-size: 15px;
  font-weight: 700;
  color: #333;
}

.hj-modal-area-accordion .uk-accordion-content {
  margin-top: 12px;
}

.accordion-content .content-inner,
.accordion-content2 .content-inner {
  max-height: min(70vh, 640px);
  overflow-y: auto;
  padding-right: 6px;
  overscroll-behavior: contain;
}

.accordion-content .hj-chip-search-actions,
.accordion-content2 .hj-chip-search-actions {
  position: sticky;
  bottom: 0;
  z-index: 5;
  background: #fff;
  padding: 14px 0 4px;
  box-shadow: 0 -10px 16px rgba(255, 255, 255, .95);
}

.accordion-content .content-inner::-webkit-scrollbar,
.accordion-content2 .content-inner::-webkit-scrollbar {
  width: 8px;
}

.accordion-content .content-inner::-webkit-scrollbar-thumb,
.accordion-content2 .content-inner::-webkit-scrollbar-thumb {
  background: #cfd8d8;
  border-radius: 999px;
}

@media (max-width: 640px) {
  .accordion-content .content-inner,
  .accordion-content2 .content-inner {
    max-height: 60vh;
  }
}

.hj-detail-form {
  margin-top: 8px;
}

.hj-detail-block + .hj-detail-block {
  margin-top: 32px;
}

.hj-detail-heading {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #222222;
}

.hj-detail-accordion {
  margin: 0;
}

.hj-detail-accordion > li {
  margin-top: 10px;
}

.hj-detail-accordion > li:first-child {
  margin-top: 0;
}

.hj-detail-accordion .uk-accordion-title {
  padding: 14px 16px;
  border: 1px solid #e3e7ea;
  border-radius: 14px;
  background: #f8fbfc;
  color: #222222;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.hj-detail-accordion .uk-accordion-content {
  padding: 14px 4px 4px;
}

.hj-check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 20px;
}

.hj-check-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #333333;
  cursor: pointer;
}

.hj-check-item input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

.hj-detail-actions {
  margin-top: 36px;
  text-align: center;
}

.hj-detail-submit {
  min-width: 280px;
  border-radius: 999px;
  color: #ffffff;
  border: none;
}

/* 閉じるボタンの位置を少し内側に */
.hj-search-modal .uk-modal-close-default {
  top: 18px;
  right: 18px;
}

/* tablet */
@media (max-width: 959px) {
  .hj-search-modal {
    padding: 28px 18px;
  }

  .hj-search-modal-title {
    font-size: 24px;
  }

  .hj-modal-chip-grid,
  .hj-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* sp */
@media (max-width: 639px) {
  .hj-search-modal {
    width: calc(100vw - 16px);
    padding: 22px 14px;
    border-radius: 18px;
  }

  .hj-search-modal--detail {
    width: calc(100vw - 16px);
  }

  .hj-search-modal-title {
    font-size: 22px;
  }

  .hj-modal-chip-grid,
  .hj-check-grid {
    grid-template-columns: 1fr;
  }

  .hj-modal-chip {
    min-height: 48px;
    font-size: 14px;
  }

  .hj-detail-heading {
    font-size: 18px;
  }

  .hj-detail-submit {
    width: 100%;
    min-width: 0;
  }
}

