@charset "UTF-8";
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  max-height: 400px;
  overflow-y: auto;
}

.image-item {
  position: relative;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}
.image-item:hover {
  border-color: #3490dc;
}
.image-item.selected {
  border-color: #3490dc;
  background-color: rgba(52, 144, 220, 0.1);
}
.image-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 0.25rem;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem;
  font-size: 0.875rem;
}

.image-title {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 0.5rem;
  width: 80%;
  max-width: 800px;
  max-height: 80vh;
  overflow: hidden;
}

.modal-header {
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-body {
  padding: 1rem;
  max-height: 60vh;
  overflow-y: auto;
}

.modal-footer {
  padding: 1rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.close {
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
}
.close:hover {
  color: #000;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 40px 0 20px;
  margin-top: 80px;
}
footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}
footer .footer-section h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #fff;
}
footer .footer-section ul {
  list-style: none;
}
footer .footer-section ul li {
  margin-bottom: 8px;
}
footer .footer-section a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}
footer .footer-section a:hover {
  color: #4EBBD3;
}
footer .footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #555;
  font-size: 14px;
  color: #999;
}

.home-page .hero-section {
  position: relative;
  color: #fff;
  text-align: center;
  min-height: clamp(320px, 50vh, 640px);
  overflow: hidden;
}
.home-page .hero-section::before {
  content: "";
  position: absolute;
  inset: -12px;
  background: url("/work/storage/fv_t.jpg") center center/cover no-repeat;
  filter: blur(2px) saturate(115%) brightness(0.98);
  z-index: 0;
}
.home-page .hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.home-page .hero-section .container {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 10vh, 120px) 0;
}
.home-page .hero-section .hero-glass {
  display: inline-block;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.home-page .hero-section h1 {
  font-size: 26px;
  margin-bottom: 16px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.home-page .hero-section .hero-description {
  font-size: 18px;
  margin-bottom: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.home-page .section {
  margin: 60px 0;
}
.home-page .section .section-title {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-page .section .section-title::before {
  content: "";
  width: 4px;
  height: 28px;
  background-color: #4EBBD3;
}
.home-page .area-section {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .home-page .area-section {
    padding: 20px;
  }
}
.home-page .area-section .region-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.home-page .area-section .region-tabs .region-tab {
  padding: 10px 20px;
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
}
.home-page .area-section .region-tabs .region-tab:hover {
  background-color: #e8f7fa;
}
.home-page .area-section .region-tabs .region-tab.active {
  background-color: #4EBBD3;
  color: #fff;
  border-color: #4EBBD3;
}
.home-page .area-section .prefecture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}
.home-page .area-section .prefecture-grid .prefecture-link {
  display: block;
  padding: 15px;
  text-align: center;
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
}
.home-page .area-section .prefecture-grid .prefecture-link:hover {
  background-color: #E8F7FA;
  border-color: #4EBBD3;
  color: #4EBBD3;
}
.home-page .area-section .prefecture-grid.hidden {
  display: none !important;
}
.home-page .category-section {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .home-page .category-section {
    padding: 20px;
  }
}
.home-page .category-section .category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}
.home-page .category-section .category-grid .category-button {
  display: block;
  padding: 20px;
  text-align: center;
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
  font-size: 16px;
}
.home-page .category-section .category-grid .category-button:hover {
  background-color: #E8F7FA;
  border-color: #4EBBD3;
  color: #4EBBD3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.home-page .category-section .job-category-grid {
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
.home-page .category-section .job-category-grid .job-category-button {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  word-wrap: break-word;
  white-space: normal;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .home-page .category-section .job-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.home-page .agent-section {
  background-color: #E8F7FA;
  padding: 60px 40px;
  border-radius: 8px;
  text-align: center;
}
@media (max-width: 767px) {
  .home-page .agent-section {
    padding: 30px 20px;
  }
}
.home-page .agent-section .agent-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}
.home-page .agent-section .consult-button {
  display: inline-block;
  background-color: #4EBBD3;
  color: #fff;
  padding: 20px 60px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s;
  font-weight: bold;
}
.home-page .agent-section .consult-button:hover {
  background-color: #3DA8C0;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(78, 187, 211, 0.3);
}
.home-page .recommended-section {
  margin-top: 60px;
}
.home-page .recommended-section .subsection {
  margin-bottom: 50px;
}
.home-page .recommended-section .subsection .subsection-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}
.home-page .fixed-consultation {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #4EBBD3;
  color: #fff;
  padding: 15px 30px;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(78, 187, 211, 0.4);
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  z-index: 1000;
  transition: all 0.3s;
}
.home-page .fixed-consultation:hover {
  background-color: #3DA8C0;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(78, 187, 211, 0.5);
}

.home-page .hidden {
  display: none !important;
}

.home-page .home-job-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

/* Category Show Page Styles */
/* 全体のスタイル */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ヘッダー */
header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

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

.logo img {
  height: 40px;
  width: auto;
}

.logo small {
  background: #4EBBD3;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* メインコンテンツ */
main {
  padding: 20px 0;
}

/* パンくずリスト */
.breadcrumb {
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #666;
}

.breadcrumb li::after {
  content: ">";
  margin-left: 10px;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb a {
  color: #4EBBD3;
  text-decoration: none;
}

/* ページタイトル */
.page-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.area-filter {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.area-filter h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1A202C;
  margin-bottom: 20px;
}

.filter-form {
  margin-bottom: 16px;
}

.filter-row {
  display: flex;
  gap: 16px;
  align-items: end;
  flex-wrap: wrap;
}

.filter-group {
  flex: 1;
  min-width: 200px;
}

.filter-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #4A5568;
  margin-bottom: 8px;
}

.filter-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-size: 14px;
  background-color: #fff;
  color: #1A202C;
  transition: border-color 0.2s ease;
}
.filter-select:focus {
  outline: none;
  border-color: #4EBBD3;
  box-shadow: 0 0 0 3px rgba(78, 187, 211, 0.1);
}

.filter-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.filter-button {
  background-color: #4EBBD3;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.filter-button:hover {
  background-color: #3DA8C0;
}

.filter-reset {
  background-color: #F7FAFC;
  color: #4A5568;
  border: 1px solid #E2E8F0;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.filter-reset:hover {
  background-color: #EDF2F7;
  border-color: #CBD5E0;
}

.current-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: #F7FAFC;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
}

.filter-label {
  font-size: 14px;
  font-weight: 600;
  color: #4A5568;
}

.filter-tag {
  background-color: #4EBBD3;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .filter-row {
    flex-direction: column;
    gap: 12px;
  }
  .filter-group {
    min-width: auto;
  }
  .filter-actions {
    justify-content: stretch;
  }
  .filter-button,
  .filter-reset {
    flex: 1;
    text-align: center;
  }
  .current-filters {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
/* エリアフィルター */
.area-filter {
  background: white;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.area-filter h3 {
  color: #333;
  margin-bottom: 20px;
  font-size: 18px;
  border-left: 4px solid #4EBBD3;
  padding-left: 15px;
}

.prefecture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.prefecture-item {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.prefecture-item:hover {
  background: #e8f7fa;
  border-color: #4EBBD3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.prefecture-name {
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.prefecture-count {
  color: #666;
  font-size: 14px;
}

/* 市区町村グリッド */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.city-item {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.city-item:hover {
  background: #e8f7fa;
  border-color: #4EBBD3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.city-name {
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.city-count {
  color: #666;
  font-size: 14px;
}

/* 駅グリッド */
.station-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.station-item {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.station-item:hover {
  background: #e8f7fa;
  border-color: #4EBBD3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.station-name {
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.station-count {
  color: #666;
  font-size: 14px;
}

/* 求人リスト */
.job-list-header {
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.result-count {
  color: #666;
  font-size: 14px;
}

.job-list {
  display: grid;
  gap: 20px;
}

/* 求人がない場合のメッセージ */
.no-jobs-message {
  text-align: center;
  padding: 40px;
  color: #666;
  background: #fff;
  border-radius: 8px;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }
  .page-title {
    font-size: 24px;
  }
  .prefecture-grid,
  .city-grid,
  .station-grid {
    grid-template-columns: 1fr;
  }
}
.main-content {
  background-color: #fff;
  margin: 0 auto 40px;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.photo-gallery {
  margin-bottom: 40px;
}

.main-photo {
  width: 100%;
  height: 400px;
  background-color: #e0e0e0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #999;
  font-size: 18px;
  margin-bottom: 10px;
}

.photo-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.thumbnail {
  width: 100px;
  height: 100px;
  background-color: #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #999;
  font-size: 12px;
  transition: opacity 0.3s;
}
.thumbnail:hover {
  opacity: 0.8;
}
.thumbnail.active {
  border: 2px solid #4EBBD3;
}

.job-header {
  border-bottom: 2px solid #4EBBD3;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.job-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 10px;
}

.clinic-name {
  font-size: 20px;
  color: #4EBBD3;
  margin-bottom: 10px;
}

.job-meta {
  display: flex;
  gap: 20px;
  color: #666;
  font-size: 14px;
}

.job-section {
  margin-bottom: 40px;
}

.section-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: "";
  width: 4px;
  height: 24px;
  background-color: #4EBBD3;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table th,
.info-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}
.info-table th {
  width: 200px;
  background-color: #f8f9fa;
  color: #666;
  font-weight: normal;
}

.highlight-box {
  background-color: #E8F7FA;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.highlight-box h3 {
  margin-bottom: 10px;
  color: #4EBBD3;
}
.highlight-box ul {
  list-style: none;
  padding-left: 0;
}

.clinic-info {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.clinic-link {
  display: inline-block;
  margin-top: 15px;
  color: #4EBBD3;
  text-decoration: none;
  font-weight: bold;
}
.clinic-link:hover {
  text-decoration: underline;
}

.admin-comment {
  background-color: #FFF9E8;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 40px;
  border-left: 4px solid #FFC107;
}

.admin-comment-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #F57C00;
  font-weight: bold;
}

.related-jobs {
  margin-bottom: 40px;
}

.apply-section {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 40px;
}

.apply-button {
  display: inline-block;
  background-color: #4EBBD3;
  color: #fff;
  padding: 20px 60px;
  font-size: 20px;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s;
  font-weight: bold;
}
.apply-button:hover {
  background-color: #3DA8C0;
}

.detail-link {
  display: block;
  margin-top: 15px;
  color: #4EBBD3;
  text-decoration: none;
  font-size: 16px;
}
.detail-link:hover {
  text-decoration: underline;
}

.tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  background-color: #E8F7FA;
  color: #4EBBD3;
  border-radius: 15px;
  font-size: 12px;
}
.tag.hot {
  background-color: #FFE8E8;
  color: #E91E63;
}

.bottom-breadcrumbs {
  background-color: #f8f9fa;
  padding: 30px 0;
  margin-top: 40px;
}
.bottom-breadcrumbs .breadcrumb {
  padding: 16px 0;
  overflow-x: auto;
  white-space: nowrap;
  max-width: 100%;
  padding-left: 16px;
}
.bottom-breadcrumbs .breadcrumb ul {
  list-style: none;
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #666;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-left: 0;
  min-width: max-content;
}

@media (max-width: 768px) {
  #job-detail .main-content {
    background-color: #f8f9fa;
    box-shadow: none;
    padding: 0;
    margin-bottom: 20px;
  }
  .job-title {
    font-size: 24px;
  }
  .clinic-name {
    font-size: 16px;
  }
  .job-meta {
    flex-direction: column;
    gap: 10px;
  }
  .main-photo {
    height: 250px;
  }
  .thumbnail {
    width: 80px;
    height: 80px;
  }
  .section-title {
    font-size: 20px;
  }
  .info-table th,
  .info-table td {
    padding: 10px;
  }
  .info-table th {
    width: 120px;
  }
  .highlight-box,
  .clinic-info,
  .admin-comment {
    padding: 15px;
  }
  .apply-section {
    padding: 20px;
  }
  .apply-button {
    padding: 15px 40px;
    font-size: 16px;
  }
}
.page-title-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
}

.brand-logo {
  width: 60px;
  height: 60px;
  background-color: #e0e0e0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #999;
  font-size: 12px;
  flex-shrink: 0;
}

.page-title {
  font-size: 32px;
  color: #333;
  margin: 0;
}

.clinic-description {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #666;
}

.tab-section {
  margin-bottom: 40px;
}

.tab-buttons {
  display: flex;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 30px;
}

.tab-button {
  padding: 15px 30px;
  background-color: transparent;
  border: none;
  font-size: 16px;
  color: #666;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}
.tab-button:hover {
  color: #4EBBD3;
}
.tab-button.active {
  background-color: #4EBBD3;
  color: #fff;
  font-weight: bold;
}
.tab-button.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #4EBBD3;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.job-list-header {
  margin-bottom: 30px;
}

.result-count {
  font-size: 18px;
  color: #333;
}

.job-list {
  display: grid;
  gap: 20px;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 24px;
  }
  .brand-logo {
    width: 50px;
    height: 50px;
  }
  .tab-buttons {
    flex-direction: column;
  }
  .tab-button {
    padding: 12px 20px;
  }
}
.area__city-section {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.area__city-title {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}
.area__city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}
.area__city-card {
  display: block;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  background-color: #fafafa;
}
.area__city-card:hover {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.area__city-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.area__city-name {
  font-size: 16px;
  color: #333;
  margin: 0;
}
.area__city-count {
  background-color: #4EBBD3;
  color: #fff;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
}
.area__city-description {
  font-size: 14px;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .area__city-section {
    padding: 15px;
  }
  .area__city-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .area__city-card {
    padding: 12px;
  }
  .area__city-name {
    font-size: 14px;
  }
  .area__city-count {
    font-size: 11px;
    padding: 3px 6px;
  }
}
/* 駅一覧セクション */
.stations-section {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.section-description {
  color: #666;
  margin-bottom: 25px;
}

.stations-grid {
  display: grid;
  gap: 15px;
}

.station-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.station-item:hover {
  background-color: #E8F7FA;
  border-color: #4EBBD3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(78, 187, 211, 0.2);
}

.station-info {
  flex: 1;
}

.station-name {
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
}

.station-job-count {
  font-size: 14px;
  color: #666;
}

.station-arrow {
  font-size: 20px;
  color: #4EBBD3;
  font-weight: bold;
}

/* 求人一覧 */
.job-list-header {
  margin-bottom: 30px;
}

.result-count {
  font-size: 18px;
  color: #333;
}

.job-list {
  display: grid;
  gap: 20px;
}

/* 空の状態 */
.empty-state {
  text-align: center;
  padding: 40px;
  color: #666;
  background: #fff;
  border-radius: 8px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .stations-section {
    padding: 20px;
  }
  .section-title {
    font-size: 20px;
  }
  .station-item {
    padding: 15px;
  }
  .station-name {
    font-size: 16px;
  }
}
.page-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.prefecture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.prefecture-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.prefecture-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  border-color: #4EBBD3;
}

.prefecture-name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.prefecture-count {
  font-size: 14px;
  color: #666;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 24px;
  }
  .prefecture-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }
  .prefecture-card {
    padding: 15px;
  }
  .prefecture-name {
    font-size: 16px;
  }
}
/* Brand Show Page Styles */
/* ブランド一覧ページ用 */
.brand-index-container {
  padding: 40px 0;
}

.brand-index-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
  color: #333;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.brand-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #f0f0f0;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #4EBBD3;
}

.brand-card-image {
  width: 100%;
  height: 180px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  overflow: hidden;
  position: relative;
}

.brand-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand-card-content {
  padding: 24px;
}

.brand-card-name {
  font-size: 18px;
  color: #1A202C;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.brand-card-jobs {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
  font-size: 14px;
  color: #4EBBD3;
  font-weight: 600;
}

.brand-link {
  text-decoration: none;
  color: inherit;
}

/* ページタイトルラッパー */
.page-title-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  justify-content: flex-start;
}

.brand-logo {
  width: 80px;
  height: 80px;
  background-color: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #666;
  overflow: hidden;
}

.brand-logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand-logo-placeholder {
  font-size: 12px;
  color: #666;
}

/* クリニック詳細ページ用 */
.clinic-logo {
  width: 60px;
  height: 60px;
  background-color: #e0e0e0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
  flex-shrink: 0;
}

.brand-name {
  font-size: 16px;
  color: #1A202C;
  margin-top: 5px;
}

/* クリニック説明文 */
.clinic-description {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  color: #666;
  line-height: 1.6;
}

/* タブセクション */
.tab-section {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tab-buttons {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
}

.tab-button {
  flex: 1;
  padding: 15px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #666;
  transition: all 0.3s;
}

.tab-button:hover {
  background-color: #f8f9fa;
}

.tab-button.active {
  background-color: #4EBBD3;
  color: #fff;
  font-weight: bold;
  position: relative;
}

.tab-button.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #4EBBD3;
}

.tab-content {
  display: none;
  padding: 30px;
}

.tab-content.active {
  display: block;
}

/* クリニック一覧 */
.clinic-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.clinic-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #f0f0f0;
}

.clinic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #4EBBD3;
}

.clinic-card-image {
  width: 100%;
  height: 180px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  overflow: hidden;
  position: relative;
}

.clinic-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.clinic-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.clinic-card-content {
  padding: 24px;
}

.clinic-card-name {
  font-size: 18px;
  color: #1A202C;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.clinic-card-info {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.clinic-card-jobs {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
  font-size: 14px;
  color: #4EBBD3;
  font-weight: 600;
}

/* ページネーション */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 40px 0;
}

.page-button {
  padding: 8px 12px;
  border: 1px solid #ddd;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
}

.page-button:hover {
  background-color: #f8f9fa;
}

.page-button.active {
  background-color: #4EBBD3;
  color: #fff;
  border-color: #4EBBD3;
}

.page-button.disabled {
  color: #999;
  cursor: not-allowed;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  background-color: #E8F7FA;
  color: #4EBBD3;
  border-radius: 15px;
  font-size: 12px;
}

.tag.hot {
  background-color: #FFE8E8;
  color: #E91E63;
}

/* 求人がない場合のメッセージ */
.no-jobs-message {
  text-align: center;
  padding: 2em;
  color: #888;
}

/* SEOテキスト */
.seo-text {
  background-color: #f8f9fa;
  padding: 30px 0;
  color: #666;
  font-size: 13px;
  line-height: 1.8;
}

.seo-text a {
  color: #4EBBD3;
  text-decoration: none;
}

.seo-text a:hover {
  text-decoration: underline;
}

/* リンクスタイル */
.job-link,
.clinic-link {
  text-decoration: none;
  color: inherit;
}

.job-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PC幅でのレイアウト */
@media (min-width: 768px) {
  .job-card {
    flex-direction: row;
  }
  .job-card-image {
    width: 200px;
    height: auto;
    min-height: 100%;
  }
}
/* レスポンシブデザイン */
@media (max-width: 768px) {
  .page-title-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .job-card {
    flex-direction: column;
  }
  .job-card-image {
    width: 100%;
    height: 200px;
  }
  .clinic-list {
    grid-template-columns: 1fr;
  }
  .tab-buttons {
    flex-direction: column;
  }
  .tab-button {
    border-bottom: 1px solid #e0e0e0;
  }
}
.search-section {
  background: linear-gradient(135deg, #4EBBD3 0%, #2E8B57 100%);
  color: white;
  padding: 40px 0;
  margin-bottom: 30px;
  width: 100%;
  position: relative;
}

.search-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.search-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
}

.search-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.search-toggle-button {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.search-toggle-button:hover {
  background: white;
  color: #4EBBD3;
}
.search-toggle-button.active {
  background: white;
  color: #4EBBD3;
}

#searchFilters {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  margin-top: 30px;
  backdrop-filter: blur(10px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
#searchFilters.active {
  display: block;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.filter-label {
  color: white;
  margin-bottom: 8px;
  font-weight: bold;
}

.filter-select,
.filter-input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: white;
  color: #333;
}

.filter-unit {
  position: absolute;
  right: 8px;
  top: 45px;
  color: #666;
  font-size: 14px;
  pointer-events: none;
  line-height: 1;
}

.filter-input[type=number] {
  padding-right: 25px;
}

.filter-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 30px;
  padding: 0 20px;
}

.search-button {
  background: #FF6B6B;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background 0.3s ease;
  margin-bottom: 10px;
}
.search-button:hover {
  background: #FF5252;
}

.reset-button {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reset-button:hover {
  background: white;
  color: #4EBBD3;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (max-width: 768px) {
  .search-section {
    padding: 30px 0;
  }
  .search-title {
    font-size: 2em;
  }
  .search-subtitle {
    font-size: 1em;
  }
  .search-toggle-button {
    padding: 10px 20px;
    font-size: 14px;
  }
  #searchFilters {
    padding: 20px;
  }
  .filter-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.job-list-header {
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.result-count {
  color: #666;
  font-size: 14px;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-detail-heading {
  font-size: 20px;
  color: #333;
  margin: 30px 0 15px 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.category-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #4EBBD3;
}

.category-link {
  display: block;
  padding: 24px;
  text-decoration: none;
  color: inherit;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.category-title {
  font-size: 20px;
  font-weight: 700;
  color: #1A202C;
  line-height: 1.4;
  margin: 0;
}

.category-count {
  background-color: #E6F3F7;
  color: #4EBBD3;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.category-description {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.category-action {
  display: flex;
  align-items: center;
  color: #4EBBD3;
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.category-card:hover .arrow-icon {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .category-link {
    padding: 20px;
  }
  .category-title {
    font-size: 18px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  flex: 1;
}

header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 16px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.logo a:hover {
  opacity: 0.8;
}
.logo img {
  height: 32px;
  width: auto;
}
.logo small {
  font-size: 18px;
  font-weight: normal;
  color: #333;
  line-height: 1;
  padding-bottom: 2px;
}

.burger-menu {
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}
.burger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.mobile-menu.active {
  right: 0;
}

.mobile-nav {
  padding: 80px 20px 20px;
}
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav li {
  border-bottom: 1px solid #e0e0e0;
}
.mobile-nav a {
  display: block;
  padding: 16px 0;
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.2s;
}
.mobile-nav a:hover {
  color: #4EBBD3;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

main {
  padding: 24px 0;
}

.page-home main {
  padding: 0;
}

.breadcrumb {
  padding: 24px 0;
  overflow-x: auto;
  white-space: nowrap;
  max-width: 100%;
  padding-left: 16px;
}
.breadcrumb ul {
  list-style: none;
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: #666;
  flex-wrap: nowrap;
  justify-content: flex-start;
  margin-left: 0;
  min-width: max-content;
}
.breadcrumb li::after {
  content: ">";
  margin-left: 8px;
}
.breadcrumb li:last-child::after {
  content: "";
}
.breadcrumb a {
  color: #4EBBD3;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  #job-detail .breadcrumb {
    background-color: #f8f9fa;
    box-shadow: none;
    padding: 18px 0;
    padding-left: 0;
  }
}
.page-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 5px;
}

.brand-logo {
  width: 60px;
  height: 60px;
  background-color: #e0e0e0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
  flex-shrink: 0;
}

.page-title {
  font-size: 32px;
  color: #333;
  margin: 0;
}

.clinic-description {
  background-color: #f8f9fa;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 24px;
  line-height: 1.8;
  color: #666;
}

.tab-section {
  margin-bottom: 48px;
}

.tab-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 32px;
}

.tab-button {
  padding: 16px 32px;
  background-color: transparent;
  border: none;
  font-size: 16px;
  color: #666;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.tab-button:hover {
  color: #4EBBD3;
}
.tab-button.active {
  color: #fff;
  font-weight: bold;
}
.tab-button.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #4EBBD3;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.job-list-header {
  margin-bottom: 32px;
}

.result-count {
  font-size: 18px;
  color: #333;
}

.job-list {
  display: grid;
  gap: 24px;
}

.job-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.job-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (min-width: 1024px) {
  .job-item {
    flex-direction: row;
  }
}

.job-image {
  width: 100%;
  height: 200px;
  background-color: #e0e0e0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}
@media (min-width: 1024px) {
  .job-image {
    width: 200px;
    height: auto;
    min-height: 100%;
  }
}

.job-content {
  padding: 24px;
  flex: 1;
}

.job-title {
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
}

.clinic-name {
  font-size: 14px;
  color: #4EBBD3;
  margin-bottom: 8px;
}

.job-salary {
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.salary-label {
  font-size: 12px;
  color: #666;
}

.salary-amount {
  font-size: 16px;
  color: #F57C00;
  font-weight: 700;
}

.job-details {
  display: flex;
  gap: 24px;
  margin-top: 8px;
  margin-bottom: 8px;
  color: #666;
  font-size: 14px;
}

.job-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  padding: 4px 8px;
  background-color: #E8F7FA;
  color: #4EBBD3;
  border-radius: 15px;
  font-size: 12px;
}
.tag.hot {
  background-color: #ffe8e8;
  color: #E91E63;
}

.job-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  text-decoration: none;
  color: inherit;
}
.job-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.job-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.job-card-image {
  width: 100%;
  height: 200px;
  background-color: #e0e0e0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  overflow: hidden;
  position: relative;
}
.job-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.job-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.job-card-title {
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
  font-weight: 700;
}

.job-card-clinic {
  font-size: 14px;
  color: #4EBBD3;
  margin-bottom: 8px;
}

.job-card-salary {
  display: flex;
  gap: 15px;
  align-items: baseline;
  margin-bottom: 10px;
}

.salary-label {
  font-size: 12px;
  color: #666;
}

.salary-amount {
  font-size: 16px;
  color: #F57C00;
  font-weight: bold;
}

.job-card-details {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  margin-bottom: 10px;
  color: #666;
  font-size: 14px;
}

.job-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .job-card {
    flex-direction: row;
  }
  .job-card-image {
    width: 200px;
    height: auto;
    min-height: 100%;
  }
}
.clinic-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.clinic-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
  overflow: hidden;
  cursor: pointer;
}
.clinic-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.clinic-card-image {
  width: 100%;
  height: 180px;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

.clinic-card-content {
  padding: 24px;
}

.clinic-card-name {
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 700;
}

.clinic-card-info {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.clinic-card-jobs {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
  font-size: 14px;
  color: #4EBBD3;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 48px 0;
}

.page-button {
  padding: 8px 8px;
  border: 1px solid #ddd;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.page-button:hover {
  background-color: #f8f9fa;
}
.page-button.active {
  background-color: #4EBBD3;
  color: #fff;
  border-color: #4EBBD3;
}
.page-button.disabled {
  color: #999;
  cursor: not-allowed;
}

.fixed-consultation {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background-color: #4EBBD3;
  color: #fff;
  padding: 16px 32px;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(78, 187, 211, 0.4);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  z-index: 1000;
  transition: all 0.3s ease;
}
.fixed-consultation:hover {
  background-color: #3DA8C0;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(78, 187, 211, 0.5);
}

footer {
  background-color: #333;
  color: #fff;
  padding: 48px 0 24px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  margin-bottom: 32px;
}

.footer-section h3 {
  font-size: 16px;
  margin-bottom: 16px;
  color: #fff;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}
.footer-section a:hover {
  color: #4EBBD3;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #555;
  font-size: 14px;
  color: #999;
}

.seo-text {
  background-color: #f8f9fa;
  padding: 32px 0;
  color: #666;
  font-size: 13px;
  line-height: 1.8;
}
.seo-text a {
  color: #4EBBD3;
  text-decoration: none;
}
.seo-text a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  min-width: 100px;
}
.btn--primary {
  background-color: #4EBBD3;
  color: #fff;
}
.btn--primary:hover {
  background-color: #3DA8C0;
}
.btn--secondary {
  background-color: #F57C00;
  color: #fff;
}
.btn--secondary:hover {
  background-color: #E65100;
}
.btn--danger {
  background-color: #E91E63;
  color: #fff;
}
.btn--danger:hover {
  background-color: #C2185B;
}

.card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
  padding: 16px;
  margin-bottom: 16px;
}
.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.card.bg-success {
  background-color: rgba(56, 193, 114, 0.1);
  border: 1px solid #38c172;
  color: #2d9d5b;
}
.card.bg-danger {
  background-color: rgba(233, 30, 99, 0.1);
  border: 1px solid #E91E63;
  color: #C2185B;
}

.category-list {
  margin-bottom: 2em;
}
.category-list h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.7em;
}
.category-list ul {
  list-style: none;
  padding: 0;
}
.category-list li {
  margin-bottom: 0.7em;
}
.category-list span {
  font-weight: bold;
}
.category-list ul ul {
  margin-left: 1.5em;
  list-style: disc;
}
.category-list ul ul li {
  margin-bottom: 0.2em;
}
.category-list a {
  color: #4EBBD3;
  text-decoration: none;
}
.category-list a:hover {
  text-decoration: underline;
}

/* ページ内リンク */
.internal-links {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.internal-link {
  background-color: #f8f9fa;
  color: #4EBBD3;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s;
}

.internal-link:hover {
  background-color: #E8F7FA;
  border-color: #4EBBD3;
}

/* 下部リンク群 */
.bottom-links {
  background-color: #f8f9fa;
  padding: 40px 0;
  margin-top: 60px;
}

.link-section {
  margin-bottom: 30px;
}

.link-section h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.link-list a {
  color: #4EBBD3;
  text-decoration: none;
  font-size: 14px;
  padding: 5px 0;
}

.link-list a:hover {
  text-decoration: underline;
}