@charset "UTF-8";

/* 求人情報のスタイル */
.recruit-container {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  max-width: 800px;
  margin: 20px auto;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  color: #333;
  line-height: 1.6;
}

.recruit-header {
  background-color: #fceadc; /* うどんをイメージした暖色系 */
  padding-top: 80px;
  text-align: center;
  border-bottom: 2px solid #e6b422;
}

.recruit-title {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 0 10px 0;
  color: #d35400;
}

.recruit-tagline {
  font-weight: bold;
  color: #555;
  background: #fff;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9em;
}

.recruit-body {
  padding: 20px;
}

.recruit-intro {
  margin-bottom: 30px;
}

.recruit-intro h3 {
  font-size: 1.2em;
  border-left: 5px solid #d35400;
  padding-left: 10px;
  margin-bottom: 15px;
}

.point-list {
  background-color: #f9f9f9;
  padding: 15px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.point-list ul {
  margin: 0;
  padding-left: 20px;
}

.recruit-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.recruit-table th, .recruit-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.recruit-table th {
  background-color: #f5f5f5;
  width: 30%;
  font-weight: bold;
  color: #444;
}

/* スマホ対応（レスポンシブ） */
@media (max-width: 600px) {
  .recruit-table th, .recruit-table td {
    display: block;
    width: 100%;
    box-sizing: border-box; /* 枠線を含めたサイズ計算にする */
  }
  .recruit-table th {
    border-bottom: none;
  }
}

.recruit-footer {
  background-color: #f4f4f4;
  padding: 30px 20px;
  text-align: center;
}

.contact-btn {
  display: inline-block;
  background-color: #d35400;
  color: #fff;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2em;
  margin-top: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: background-color 0.3s;
}

.contact-btn:hover {
  background-color: #b04600;
}

.tel-link {
  color: inherit;
  text-decoration: none;
  pointer-events: none; /* PCではリンク無効化 */
}

@media (max-width: 600px) {
  .tel-link {
    pointer-events: auto; /* スマホではタップ可能に */
  }
}