@charset "UTF-8";
/* ==========================================
   採用コラム
   ========================================== */
/* レイアウト */
.column-layout {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 120px;
  background: #FFFAF1;
  gap: 50px;
}
@media (max-width: 768px) {
  .column-layout {
    flex-direction: column;
    padding: 40px 20px 80px;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .post-type-archive-recruit_column .column-sidebar {
    order: -1;
  }
}

.column-main {
  flex: 1;
  min-width: 0;
}

/* イントロ */
.column-intro {
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
  margin: 0 0 40px;
}

/* 記事一覧 */
.column-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.column-article {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  margin-bottom: 16px;
  background: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  color: #333333;
  transition: box-shadow 0.3s;
}
.column-article:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.column-article__thumb {
  flex-shrink: 0;
  width: 160px;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
}
.column-article__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 480px) {
  .column-article__thumb {
    width: 100px;
    height: 72px;
  }
}
.column-article__content {
  flex: 1;
  min-width: 0;
}
.column-article__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.5;
  color: #333333;
}
@media (max-width: 480px) {
  .column-article__title {
    font-size: 16px;
  }
}
.column-article__excerpt {
  font-size: 13px;
  line-height: 1.8;
  color: #666666;
  margin: 0 0 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.column-article__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.column-article__date {
  font-size: 13px;
  color: #666666;
}
.column-article__category {
  display: inline-block;
  font-size: 11px;
  color: #e67e3c;
  border: 1px solid #e67e3c;
  border-radius: 3px;
  padding: 2px 8px;
  line-height: 1.4;
}
.column-article__arrow {
  flex-shrink: 0;
  width: 20px;
  height: 14px;
}
.column-article__arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.column-no-posts {
  font-size: 14px;
  color: #666666;
  padding: 40px 0;
}

/* ページネーション */
.column-pagination {
  margin-top: 40px;
}
.column-pagination__list {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.column-pagination__item a,
.column-pagination__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  color: #333333;
  text-decoration: none;
  transition: all 0.3s;
}
.column-pagination__item a:hover {
  background: #e67e3c;
  border-color: #e67e3c;
  color: #ffffff;
}
.column-pagination__item .current {
  background: #e67e3c;
  border-color: #e67e3c;
  color: #ffffff;
}

/* サイドバー */
.column-sidebar {
  width: 260px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .column-sidebar {
    width: 100%;
  }
}
.column-sidebar__section {
  margin-bottom: 40px;
}
.column-sidebar__section:last-child {
  margin-bottom: 0;
}
.column-sidebar__title {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 20px;
}
.column-sidebar__year {
  margin-bottom: 20px;
}
.column-sidebar__select {
  width: 100%;
  padding: 10px 40px 10px 14px;
  font-size: 14px;
  color: #333333;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #ffffff;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23e67e3c" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}
.column-sidebar__select:focus {
  outline: none;
  border-color: #e67e3c;
}
.column-sidebar__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.column-sidebar__cat-btn {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  color: #333333;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #ffffff;
  text-decoration: none;
  transition: all 0.3s;
}
.column-sidebar__cat-btn:hover {
  border-color: #e67e3c;
  color: #e67e3c;
}
.column-sidebar__cat-btn.is-active {
  background: #e67e3c;
  border-color: #e67e3c;
  color: #ffffff;
}

/* 個別記事 */
.column-single__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.column-single__title {
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 30px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .column-single__title {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .column-single__title {
    font-size: 20px;
  }
}
.column-single__thumb {
  margin: 0 0 30px;
  border-radius: 8px;
  overflow: hidden;
}
.column-single__thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.column-single__content {
  font-size: 15px;
  line-height: 2;
  color: #333333;
}
.column-single__content p {
  margin: 0 0 20px;
}
.column-single__content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e67e3c;
}
.column-single__content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 12px;
}
.column-single__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}
.column-single__content ul, .column-single__content ol {
  margin: 0 0 20px;
  padding-left: 24px;
}
.column-single__content li {
  margin-bottom: 8px;
}
.column-single__content a {
  color: #e67e3c;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.column-single__content a:hover {
  opacity: 0.7;
}

/* 一覧に戻る */
.column-back {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}
.column-back__link {
  font-size: 14px;
  color: #e67e3c;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}
.column-back__link:hover {
  opacity: 0.7;
}

/* ==========================================
   本文テーブル（ブロックエディタ core/table）
   ========================================== */
/* ベース（全テーブル共通の枠線・余白） */
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.wp-block-table th,
.wp-block-table td {
  border: 1px solid #e0e0e0;
  padding: 12px 16px;
  text-align: left;
  line-height: 1.8;
  vertical-align: top;
}

/* スタイルプリセット（is-style-*）
   base: ヘッダー行の塗り（濃色＋白文字） / tint: 1列目・ゼブラの淡色 */
/* ① ヘッダー行（1行目）の色 */
.wp-block-table.is-style-header-green thead tr th,
.wp-block-table.is-style-header-green thead tr td {
  background: #006637;
  color: #ffffff;
  font-weight: 700;
  border-color: #006637;
}
.wp-block-table.is-style-header-green:not(:has(thead)) tr:first-child th,
.wp-block-table.is-style-header-green:not(:has(thead)) tr:first-child td {
  background: #006637;
  color: #ffffff;
  font-weight: 700;
  border-color: #006637;
}

/* ② 1列目の色 */
.wp-block-table.is-style-firstcol-green tr th:first-child,
.wp-block-table.is-style-firstcol-green tr td:first-child {
  background: #e3f0e8;
  font-weight: 700;
}

/* ③ ゼブラ（奇数行が交互に色付く） */
.wp-block-table.is-style-zebra-green tbody tr:nth-child(odd) th,
.wp-block-table.is-style-zebra-green tbody tr:nth-child(odd) td {
  background: #e3f0e8;
}

/* ① ヘッダー行（1行目）の色 */
.wp-block-table.is-style-header-orange thead tr th,
.wp-block-table.is-style-header-orange thead tr td {
  background: #e67e3c;
  color: #ffffff;
  font-weight: 700;
  border-color: #e67e3c;
}
.wp-block-table.is-style-header-orange:not(:has(thead)) tr:first-child th,
.wp-block-table.is-style-header-orange:not(:has(thead)) tr:first-child td {
  background: #e67e3c;
  color: #ffffff;
  font-weight: 700;
  border-color: #e67e3c;
}

/* ② 1列目の色 */
.wp-block-table.is-style-firstcol-orange tr th:first-child,
.wp-block-table.is-style-firstcol-orange tr td:first-child {
  background: #fcecdf;
  font-weight: 700;
}

/* ③ ゼブラ（奇数行が交互に色付く） */
.wp-block-table.is-style-zebra-orange tbody tr:nth-child(odd) th,
.wp-block-table.is-style-zebra-orange tbody tr:nth-child(odd) td {
  background: #fcecdf;
}

/* ① ヘッダー行（1行目）の色 */
.wp-block-table.is-style-header-blue thead tr th,
.wp-block-table.is-style-header-blue thead tr td {
  background: #2f6f9f;
  color: #ffffff;
  font-weight: 700;
  border-color: #2f6f9f;
}
.wp-block-table.is-style-header-blue:not(:has(thead)) tr:first-child th,
.wp-block-table.is-style-header-blue:not(:has(thead)) tr:first-child td {
  background: #2f6f9f;
  color: #ffffff;
  font-weight: 700;
  border-color: #2f6f9f;
}

/* ② 1列目の色 */
.wp-block-table.is-style-firstcol-blue tr th:first-child,
.wp-block-table.is-style-firstcol-blue tr td:first-child {
  background: #e7eff5;
  font-weight: 700;
}

/* ③ ゼブラ（奇数行が交互に色付く） */
.wp-block-table.is-style-zebra-blue tbody tr:nth-child(odd) th,
.wp-block-table.is-style-zebra-blue tbody tr:nth-child(odd) td {
  background: #e7eff5;
}

/* ① ヘッダー行（1行目）の色 */
.wp-block-table.is-style-header-gray thead tr th,
.wp-block-table.is-style-header-gray thead tr td {
  background: #5f6b76;
  color: #ffffff;
  font-weight: 700;
  border-color: #5f6b76;
}
.wp-block-table.is-style-header-gray:not(:has(thead)) tr:first-child th,
.wp-block-table.is-style-header-gray:not(:has(thead)) tr:first-child td {
  background: #5f6b76;
  color: #ffffff;
  font-weight: 700;
  border-color: #5f6b76;
}

/* ② 1列目の色 */
.wp-block-table.is-style-firstcol-gray tr th:first-child,
.wp-block-table.is-style-firstcol-gray tr td:first-child {
  background: #eef0f2;
  font-weight: 700;
}

/* ③ ゼブラ（奇数行が交互に色付く） */
.wp-block-table.is-style-zebra-gray tbody tr:nth-child(odd) th,
.wp-block-table.is-style-zebra-gray tbody tr:nth-child(odd) td {
  background: #eef0f2;
}

/* ① ヘッダー行（1行目）の色 */
.wp-block-table.is-style-header-pink thead tr th,
.wp-block-table.is-style-header-pink thead tr td {
  background: #c85f7c;
  color: #ffffff;
  font-weight: 700;
  border-color: #c85f7c;
}
.wp-block-table.is-style-header-pink:not(:has(thead)) tr:first-child th,
.wp-block-table.is-style-header-pink:not(:has(thead)) tr:first-child td {
  background: #c85f7c;
  color: #ffffff;
  font-weight: 700;
  border-color: #c85f7c;
}

/* ② 1列目の色 */
.wp-block-table.is-style-firstcol-pink tr th:first-child,
.wp-block-table.is-style-firstcol-pink tr td:first-child {
  background: #fae7ed;
  font-weight: 700;
}

/* ③ ゼブラ（奇数行が交互に色付く） */
.wp-block-table.is-style-zebra-pink tbody tr:nth-child(odd) th,
.wp-block-table.is-style-zebra-pink tbody tr:nth-child(odd) td {
  background: #fae7ed;
}
