<!-- start Simple Custom CSS and JS -->
<style type="text/css">
/* 求人バナー用CSS */
.recruit-banner-box {
  background: #fffcf5; /* 薄いベージュ背景 */
  border: 3px solid #ff9f1c; /* オレンジ枠 */
  border-radius: 12px;
  padding: 30px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.recruit-banner-content {
  flex: 1;
}
.recruit-banner-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}
.recruit-banner-title span {
  color: #ff9f1c; /* 強調オレンジ */
}
.recruit-banner-text {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
}
.recruit-banner-btn {
  display: inline-block;
  background-color: #ff9f1c;
  color: #fff !important;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(255, 159, 28, 0.3);
}
.recruit-banner-btn:hover {
  background-color: #e08e19;
  transform: translateY(-2px);
}
.recruit-banner-img {
  width: 250px;
  height: 250px;
  flex-shrink: 0;
}
.recruit-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* 丸く切り抜き */
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .recruit-banner-box {
    flex-direction: column-reverse; /* スマホでは画像を上に */
    text-align: center;
    padding: 20px;
  }
  .recruit-banner-img {
    width: 180px;
    height: 180px;
    margin-bottom: 10px;
  }
  .recruit-banner-title {
    font-size: 1.2rem;
  }
}</style>
<!-- end Simple Custom CSS and JS -->
