/* =========================
  募集要項テーブル 共通
========================= */
.recruit-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2% 0 10% 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-radius: 10px;
  overflow: hidden;
}

/* 見出し（caption） */
.caption {
	margin-top: 5%;
  color: #2c5caa;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.02em;
}
.caption {
  writing-mode: horizontal-tb; /* 念のため明示 */
  white-space: nowrap;         /* 自動改行させない */
}


/* =========================
  項目名（th）
  シックな青の微グラデ
========================= */
.recruit-table th {
  width: 26%;
  padding: 14px 16px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  vertical-align: top;
  text-align: left;

  /* 微グラデ（ほぼ単色に見える） */
  background: linear-gradient(
    to bottom,
    #2c5caa 0%,
    #2b59a4 50%,
    #2a569d 100%
  );

  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid rgba(255,255,255,0.15);
}

/* 内容（td） */
.recruit-table td {
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #222;
  vertical-align: top;
  border-bottom: 1px solid #e5e7eb;
}

/* 最終行の罫線削除 */
.recruit-table tr:last-child th,
.recruit-table tr:last-child td {
  border-bottom: none;
}

/* =========================
  リスト・補足文
========================= */
.recruit-list {
  margin: 6px 0 0;
  padding-left: 18px;
}

.recruit-list li {
  margin-bottom: 6px;
}

.recruit-note {
  margin-top: 8px;
  font-size: 13px;
  color: #555;
}

/* =========================
  SP表示（768px以下）
  カード型レイアウト
========================= */
@media screen and (max-width: 768px) {

  .recruit-table {
    box-shadow: none;
    border-radius: 0;
  }

.caption {
    font-size: 18px;
  }

  .recruit-table,
  .recruit-table tbody,
  .recruit-table tr {
    display: block;
    width: 100%;
  }

  .recruit-table tr {
    background: #ffffff;
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
	border: 1px solid #2d5ba6;
  }

  .recruit-table th,
  .recruit-table td {
    display: block;
    width: 100%;
    border-bottom: none;
  }

  .recruit-table th {
    padding: 12px 14px;
    font-size: 14px;
    border-right: none;
  }

  .recruit-table td {
    padding: 14px;
    font-size: 14px;
    line-height: 1.7;
  }
}
/*
===============================================================================
■ footer
===============================================================================
*/
footer {
  font-size: 1.2rem;
  text-align: center;
  padding: 1rem 0;
}
footer .top_btn a {
  display: block;
  width: 20px;
  margin: 0 auto 1rem;
}
@media only screen and (max-width: 560px) {
  footer {
    padding: 1rem 0 10rem;
  }
}
article{
	width: 1100px;
	margin: 0 auto;
	padding: 2%;
}
.job_detail_title{
	text-align: left;
    margin-top: 10px;
	font-size: 1.8rem;
    letter-spacing: .16em;
}
.job_detail_sub{
	font-family: "AzoSans-Regular";
    font-size: 1rem;
    color: #7fb7ff;
    letter-spacing: .1em;
    text-transform: uppercase;
	text-align: left;
    margin-top: 10px;
}
.job_detail_image img{
	max-width: 100%;
	height: auto;
	margin: 10px 0;
}
@media screen and (max-width: 1200px) {
  /* 1200px以下の画面幅で適用されるCSS */
article{
	width: 94%;
}
}
.heading-37{
	margin: 0 auto;
	color: #2d5ba6;
	text-align: center;
	font-size: 1.6rem;
    margin-bottom: 30px;
}
.heading-37 {
    position: relative;
    padding: .5em 1em;
    color: #333333;
}

.heading-37::before,
.heading-37::after {
    display: inline-block;
    position: absolute;
    width: 10px;
    height: 100%;
    border: 3px solid #2589d0;
    box-sizing: border-box;
    content: '';
}

.heading-37::before {
    top: 0;
    left: 0;
    border-right: none;
}

.heading-37::after {
    bottom: 0;
    right: 0;
    border-left: none;
}