/*
Theme Name: my-child-theme
Template: lightning
*/

/* ====== 求人シート 共通スタイル ====== */

.job-sheet-wrapper {
  width: 1200px;
  margin: 0 auto;
}

.job-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.job-sheet-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  background: #fff;
  table-layout: fixed;
}

.job-sheet-table th,
.job-sheet-table td {
  border: 1px solid #b5bccc;
  padding: 16px 18px;
  background: #fff;
  vertical-align: top;
  word-break: break-all;
  white-space: normal;
  font-size: 1em;
  overflow-wrap: break-word;
}

.job-sheet-table th[colspan="6"] {
  font-size: 1.25em;
  text-align: left;
  background: #eaeaea;
  font-weight: bold;
}

.job-sheet-table th {
  min-width: 112px;
  width: 130px;
}

/* 注意書き */
.job-sheet-notice {
  font-size: 0.85em !important;
  color: #888 !important;
  margin-top: 32px;
  padding: 16px 20px 8px;
  background: #f7f7f7;
  border-radius: 6px;
  border: 1px solid #ddd;
}
.job-sheet-notice ul {
  margin: 0;
  padding-left: 1.2em;
}
.job-sheet-notice li {
  margin-bottom: 6px;
  line-height: 1.7;
}

/* ===== スマホ対応 ===== */
@media screen and (max-width: 800px) {
  .job-sheet-wrapper {
    width: 100%;
    min-width: 0;
  }
  .job-sheet-table {
    min-width: 100%;
    font-size: 0.95em;
    display: block;
  }
  .job-sheet-table th,
  .job-sheet-table td {
    font-size: 0.95em;
    padding: 10px 8px;
    display: inline-block;
    width: 50%;
  }
  .job-sheet-table tr {
    display: inline;
  }
}

/* ====== ★ ここがタイトル見切れ対策の本丸!! ====== */
@media screen and (max-width: 767px) {
  .job-sheet-table .dummy-padding-row td {
    height: 70px !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
  }
}
/* 70pxはヘッダー高さ+余裕なので、タイトルがまだ見切れる場合は値を大きく調整してください */

.job-table-scroll label {
    display: inline-block;
    min-width: 49%;
}
.button_wrap {
    width: 90%;
    margin-top: 2em;
    margin-left: auto;
}
.button_wrap .clear-button {
    width: 35%;
    background-color: #666461;
    color: #fff;
    padding: 5px 10px 6px;
    font-size: min(1.2em,14px);
    font-weight: bold;
    border-style: none;
    border-radius: 6px;
}
.button_wrap .search-button {
    width: 50%;
    background-color: #e68600;
    color: #fff;
    padding: 5px 10px 6px;
    font-size: min(1.2em,14px);
    font-weight: bold;
    border-style: none;
    border-radius: 6px;
}
.button_wrap > button:hover {
    opacity: .9;
}
.button_wrap > label {
    display: block !important;
    min-width: 20px !important;
    width: 17%;
    font-weight: bolder;
    margin-left: auto;
}
.sword {
    width: 31%!important;
    min-width: 120px !important;
}
.hitnum {
    font-size: 1.25em;
    font-weight: bold;
    color: #D2042D;
}
.numbox {
    padding: 5px;
    border-bottom: 1px solid var(--vk-color-primary);
    width: 30%;
    margin: 30px 0px;
}
.page-header {
    display: none;
}
/** 検索条件表組み **/
.search_table_wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 3em;
    margin-bottom: 2em;
}
.search_table_wrap div {
    border: 1px solid #fff;
    padding: 10px;
    box-sizing: border-box;
}

.col-header {
    width: 10%;
    background-color: #eee;
    color: #333;
    text-align: center;
    font-weight: bold;
}
.col-header p {
    font-size: 0.9em;
    font-weight: normal;
}
.col-item {
    width: 40%;
    background-color: #eee;
}
.col-iteml {
    width: 90%;
    background-color: #eee;
}
/* 画面サイズ 600px 未満 */
@media (max-width: 599px) {
  /* スタイルルール */
     .col-header {
        min-width: 70px;
    }
    .col-item {
        min-width: 275px;
    }
    .col-iteml {
        min-width: 275px;
        max-width: 40%;
    }
    .button_wrap .clear-button {
        min-width: 48%;
    }
    .button_wrap > label {
        width: 50%!important;
        margin: 20px;
        margin-left: auto;
    }
    /** 一覧リスト **/
    .job_container {
        width: 95%;
    }
    .pref_label, .ser_label {
        min-width: 6em;
    }
    .date {
        width: 100%;
        text-align: right;
    }
}
@media (min-width: 600px) {
    .job_container {
    width: 45%;
}}
/** 一覧リスト **/
.job_container {
    display: flex;
    flex-wrap: wrap;
    /*margin-top: 3em;
    margin-bottom: 2em;*/
    margin: 2em 1.5em;
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
}
.job_container div {
    border: 1px solid #fff;
    padding: 10px;
    box-sizing: border-box;
}
.job_title {
    display: block;
    font-size: 1.25em;
    font-weight: bolder;
    padding: 10px 0px;
    width: 100%;
}
.job_title a {
    display: inline-block;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.comp_label, .web_label {
    width: 25%;
    background-color: #eee;
}
.comp_name, .web_url {
    width: 75%;
}
.pref_label, .ser_label {
    width: 6em;
    background-color: #eee;
}
.pref, .serial {
    width: 25%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.date {
    min-width: 20%;
    text-align: right;
    width: 100%;
}
.list_sep {
    height: 3px;
    width: 90%;
    background-color: var(--vk-color-primary);
    margin: 20px auto;
}
.job_wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;

}
/** パンくずHOME非表示**/
.breadcrumb-list__item--home {
    display: none !important;
}
