/* 採用情報ページ用のスタイル */




.main_visual.recruit_main_visual {
    position: relative;
    width: 100%;
    height: calc(100vh - 90px);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 4% 8%; /* service.htmlと同じパディング */
}

/* PC版での高さ統一（service.htmlと完全に統一） */
@media (min-width: 769px) {
    .main_visual.recruit_main_visual {
        height: 600px;
        padding-left: 5%;
        padding-bottom: 0;
        align-items: flex-end;
    }
}

/* スマホ版での高さ統一（service.htmlと完全に統一） */
@media (max-width: 768px) {
    .main_visual.recruit_main_visual {
        height: calc(100vh - 90px);
        padding: 0 0 8% !important;
    }
}

.recruit_page_title {
    text-align: center;
    padding: 10px 0 0 0; /* service.htmlと同じ余白に統一 */
    background-color: #fff;
}

/* メインビジュアルタイトル（service.htmlと統一） */
.main_visual_heading {
    text-align: center;
    font-size: 3.5rem;
    font-weight: bold;
    color: #0C0C70;
    margin-bottom: 0;
}

.recruit_subtitle {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 40px;
  position: relative;
}

.recruit_subtitle::before {
  content: '';
  width: 8px;
  height: 30px;
  background-color: #e04040;
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
}

.recruit_message_section {
  padding: 80px 0; /* 他のページと統一 */
  background-color: #f7f7f7;
}

.recruit_inner {
  max-width: 1200px; /* company.htmlと同じ幅に変更 */
  margin: 0 auto;
  padding: 0 1rem;
}

.section_heading {
  font-size: 2rem;
  color: #0C0C70;
  font-weight: bold;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 20px;
  text-align: left;
}

.section_heading .red_bar {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 30px;
  background-color: #e04040;
}

.message_content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.message_text {
  flex: 1;
}

.message_text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.message_text p:last-child {
  margin-bottom: 0;
}

.message_image {
  flex-shrink: 0;
  width: 400px;
}

.message_image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.recruit_job_section {
  padding: 4rem 0;
  background-color: #fff;
}

.recruit_job_section:nth-of-type(even) {
  background-color: #f7f7f7;
}

.job_table_wrapper {
  overflow-x: auto;
  margin-top: 40px;
}

.job_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.job_table th,
.job_table td {
  padding: 15px;
  border: 1px solid #ddd;
  text-align: left;
}

.job_table th {
  width: 25%;
  background: #f7f7f7;
  font-weight: bold;
  color: #333;
}

.recruit-button {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.recruit-button:hover {
    background-color: #0056b3;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .recruit_page_title {
        padding: 20px 0 0 0; /* service.htmlと同じスマホ版余白 */
    }

    /* モバイル版メインビジュアルタイトル */
    .main_visual_heading {
        font-size: 2.5rem;
    }

    .recruit_subtitle {
        font-size: 1.5rem;
    }

    .recruit_message_section {
        padding: 2rem 0;
    }

    .message_content {
        flex-direction: column;
        gap: 20px;
    }

    .message_image {
        width: 100%;
    }

    .recruit_job_section {
        padding: 2rem 0;
    }

    .job_table_wrapper {
        margin-top: 20px;
    }

    .job_table th,
    .job_table td {
        padding: 10px;
    }

    .job_table th {
        width: 30%;
    }
}

.section_wrapper {
  padding: 80px 0; /* 上下余白を追加（index.htmlと統一） */
} 