* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .p-page_content__inner {
    max-width: 900px!important;
    width: 90%;
    padding: 0!important;
  }
  
  html {
      scroll-behavior: smooth;
    }
  
    a {
      transition: all 0.3s ease;
    }
    a:hover {
      opacity: 0.5;
    }
  
    .breadcrumb {
      background-color: #ebedeb;
      padding: 5px 0 10px;
    }

    h1 {
        margin: 0!important;
    }

/* ここまでLP共通 */


/* 全体 */
.recruit {
    max-width: 900px;
    margin: 0 auto;
  line-height: 1.6;
  background-color: #ebedeb;
  color: #333;
  padding-top: 50px;
}

/* ページタイトル */
.recruit h1 {
  font-family: "Yu Gothic", "游ゴシック", sans-serif!important;
  font-weight: 600;
  text-align: center;
  font-size: 2rem;
  color: #2c3e50;
}

/* 各職種カード */
.job-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  padding: 25px;
  margin: 30px auto;
  transition: transform 0.2s;
}

.job-card:hover {
  transform: translateY(-5px);
}

/* 職種タイトル */
.job-card h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #5aa7ee;
  font-family: "Yu Gothic", "游ゴシック", sans-serif;
  font-weight: 600;
}

/* 小見出し */
.job-card h3 {
  font-size: 1rem;
  margin-top: 15px;
  margin-bottom: 8px;
  color: #34495e;
    font-family: "Yu Gothic", "游ゴシック", sans-serif;
  font-weight: 600;
}

.job-card p {
  margin-bottom: 15px;
}


/* 箇条書き */
.job-card ul {
  margin-left: 15px;
  margin-bottom: 30px;
  list-style: none; /* デフォルトの丸を消す */
}

.job-card li {
  margin-bottom: 5px;
}

.job-card ul li::before {
  content: "- "; /* 先頭にハイフンを追加 */
  color: #333;
  font-weight: bold; /* 好みで調整 */
}

/* テーブル */
.work_info {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.work_info th,
.work_info td {
  border: 1px solid #ddd;
  padding: 10px;
  vertical-align: top;
}

.work_info th {
  background-color: #f0f0f0;
  width: 150px;
  text-align: left;
}

.work_info td {
  background-color: #fff;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .job-card {
    padding: 15px;
  }
  .job-card h3 {
  font-size: 1.2rem;
  }
  .work_info th, .work_info td {
    font-size: 0.9rem;
  }
}