/* 求人詳細ページ専用スタイル */

/* パンくずリスト */
.breadcrumb-wrapper {
  background-color: #f9fafb;
  padding: 15px 0;
  margin-top: 0; /* 以前の76pxを削除 */
}

.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: #3D3D3D;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #AC0700;
}

.section-content img{
  max-width:100%;
}

/* 求人詳細セクション */
.job-detail-section {
  padding: 50px 0;
}

/* 求人ヘッダー */
.job-detail-header {
  margin-bottom: 30px;
  position: relative;
}

.job-type-badge {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}

.job-type-badge.full-time {
  background-color: rgba(172, 7, 0, 0.1);
  color: #AC0700;
}

.job-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #3D3D3D;
}

.company-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.company-logo {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 15px;
  border: 1px solid #eee;
}

.company-details {
  flex: 1;
}

.company-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #3D3D3D;
}

.company-location {
  font-size: 14px;
  color: #3D3D3D;
  margin-bottom: 0;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.meta-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #3D3D3D;
}

.meta-item i {
  margin-right: 5px;
  color: #AC0700;
}

/* 求人概要 */
.job-detail-summary {
  background-color: #f9fafb;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
}

.summary-item {
  margin-bottom: 20px;
}

.summary-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #3D3D3D;
  display: flex;
  align-items: center;
}

.summary-item h3 i {
  margin-right: 8px;
  color: #AC0700;
}

.summary-item p {
  margin-bottom: 0;
  color: #3D3D3D;
}

/* 求人詳細コンテンツ */
.job-detail-content {
  margin-bottom: 40px;
}

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

.section-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #3D3D3D;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.section-content {
  color: #3D3D3D;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.feature-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.feature-list li i {
  color: #AC0700;
  margin-right: 10px;
  margin-top: 4px;
}

.job-location-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 応募ボタン（モバイル用） */
.apply-button-mobile {
  position: sticky;
  bottom: 0;
  background-color: #FFFFFF;
  padding: 15px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  margin: 30px -15px 0;
}

/* 関連求人 */
.related-jobs {
  margin-top: 50px;
}

.related-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #3D3D3D;
}

/* サイドバー */
.job-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.sidebar-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #3D3D3D;
}

.apply-card {
  background-color: #f9fafb;
  border-left: 4px solid #AC0700;
}

.company-sidebar-info .company-logo {
  width: 80px;
  height: 80px;
}

.company-description {
  font-size: 14px;
  color: #3D3D3D;
  margin-bottom: 15px;
}

.company-meta {
  margin-bottom: 15px;
}

.company-meta .meta-item {
  margin-bottom: 8px;
}

/* 応募フォーム */
.application-form .form-label {
  font-weight: 500;
}

.application-form .required {
  color: #AC0700;
  margin-left: 3px;
}

/* レスポンシブ対応 */
@media (max-width: 991.98px) {
  .job-sidebar {
    position: static;
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .job-title {
    font-size: 26px;
  }

  .job-meta {
    flex-direction: column;
    gap: 10px;
  }

  .apply-button-mobile {
    display: block;
  }
}
