/* 検索結果 */
.u-job-archive {
  width: 95%; /* 例 */
}

.u-job-item {
  display: flex;                      /* 横並びに配置 */
  border: 1px solid #ddd;             /* 枠線 */
  border-radius: 8px;                 /* 角を丸める */
  overflow: hidden;                   /* はみ出し防止 */
  background-color: #fff;             /* 背景色を白に */
  margin: 50px 0;             /* 上下の余白 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 軽い影を追加 */
}

/* 画像部分 */
.job-info-img {
  position: relative;    /* 追加 */
  width: 400px;
  height: 300px;
  min-width: 400px;
  overflow: hidden;
}

.job-info-img img {
  width: 100%;                        /* 画像を横幅いっぱいに */
  height: 100%;                       /* 縦幅を親に合わせる */
  object-fit: cover;                  /* 画像のアスペクト比を維持 */
}

/* 画像上のタイトル */
.job-item-title {
  position: absolute;                 /* タイトルを画像上に配置 */
  bottom: 0;                          /* 下端に固定 */
  left: 0;                            /* 左端に固定 */
  width: 100%;                        /* タイトルの横幅を画像全体に */
  background-color: rgba(0, 0, 0, 0.5); /* 半透明の背景 */
  color: #fff;                        /* 文字色を白に */
  font-size: 18px;                    /* タイトル文字サイズ */
  font-weight: bold;                  /* 太字 */
  padding: 8px 16px;                  /* 内側の余白 */
  box-sizing: border-box;             /* パディングを含めて計算 */
}

/* 情報部分 */
.job-item-info {
  padding: 16px;                      /* 内側の余白 */
  display: flex;                      /* 縦方向の配置 */
  flex-direction: column;             /* 子要素を縦並びに */
  justify-content: space-between;     /* 要素間のスペースを均等に */
  width: 100%;          /* ← これで親の幅いっぱいにする */
  box-sizing: border-box; /* パディングも幅に含める */
}

/* 求人詳細ボタン */
.joblisting-morewrap {
  margin-bottom: 16px;                /* 下部に余白 */
  text-align: right;  /* 右寄せ */
}

.joblisting-morewrap a {
  display: inline-block;              /* ボタン表示 */
  padding: 8px 16px;                  /* ボタンの余白 */
  font-size: 18px;                    /* 文字サイズ */
  font-weight: bold;                  /* 太字 */
  color: #fff;                        /* 文字色を白に */
  background-color: #002f6c;          /* ボタン背景色 */
  text-decoration: none;              /* 下線を削除 */
  border-radius: 4px;                 /* 角を丸める */
  transition: background-color 0.2s ease;
}

.joblisting-morewrap a:hover {
  background-color: #ded237;          /* ホバー時の色変更 */
}

/* 詳細テーブル */
.job-info-table {
  width: 100%;                        /* テーブル幅を親に合わせる */
  border-spacing: 0;                  /* セル間の隙間をなくす */
  margin-bottom: 16px;                /* 下部に余白 */
}

.job-info-table th,
.job-info-table td {
  text-align: left;                   /* 左寄せ */
  padding: 8px 16px;                  /* セルの上下余白 */
  color: #333;                        /* 文字色 */
  border: 1px solid #ddd;            /* 枠線を追加 */
}

.job-info-table th {
  font-weight: bold;                  /* 見出しを太字に */
  background-color: #f4f4f4;          /* ヘッダーの背景色 */
}

/* セルの間隔調整 */
.job-info-table td {
  background-color: #fff;             /* データセルの背景色 */
}

/* フレーズ */
.job-item-phrase {
  font-size: 14px;                    /* 文字サイズ */
  line-height: 1.5;                   /* 行間調整 */
  display: -webkit-box;             /* flexの代わりにboxモデルを使う */
  -webkit-line-clamp: 3;            /* 最大3行でカット */
  -webkit-box-orient: vertical;     /* 縦方向にボックスを展開 */
  overflow: hidden;                 /* はみ出しを隠す */
  text-overflow: ellipsis;          /* 省略記号 */
  white-space: normal;              /* 改行を有効に */
}


/* ページネーション */
.page-navi {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.page-navi a {
  position: relative;
  padding: 4px 0;
  font-size: 16px;
  text-decoration: none;
  color: #333;
  font-weight: 400;
  transition: color 0.2s;
}

.page-navi a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: #ccc;
  transition: background-color 0.2s, height 0.2s;
}

.page-navi a:hover {
  color: #000;
}

.page-navi a:hover::after {
  background-color: #000;
  height: 2px;
}

.page-navi a.current {
  font-weight: 600;
  color: #000;
}

.page-navi a.current::after {
  background-color: #000;
  height: 2px;
}


/*求人ページ*/

.u-job-details {
  width: 80%; /* 例 */
  margin: 0 auto;
}

/* タイトルとボタンを横並びにするスタイル */
.title-bar {
  display: flex;                     /* Flexboxで横並び */
  align-items: center;               /* 縦方向の中央揃え */
  justify-content: space-between;    /* 左右に配置 */
  gap: 16px;                         /* タイトルとボタンの間隔 */
  margin-bottom: 16px;               /* 下部の余白 */
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); /* 軽い影を追加 */
  padding: 16px;                      /* 内側の余白 */
  border: 1px solid #ddd;             /* 枠線 */
  border-radius: 4px;                 /* 角を丸く */
}

/* タイトルのスタイル */
.u-job-title {
  font-size: 24px;                   /* タイトルのフォントサイズ */
  font-weight: bold;                 /* タイトルを太字に */
  color: #333;                       /* テキストカラー */
  margin: 0;                         /* タイトルの外側余白をリセット */
}

.u-job-info {
  display: flex;                      /* 横並びレイアウト */
  border: 1px solid #ddd;             /* 枠線 */
  border-radius: 4px;                 /* 角を丸く */
  overflow: hidden;                   /* はみ出しを防ぐ */
  background-color: #fff;             /* 背景を白に */
  margin: 16px 0;                     /* 上下の余白 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 軽い影を追加 */
  gap: 16px;                          /* 子要素間の隙間 */
}

/* 画像部分 */
.u-job-info-img {
  width: 400px;                       /* 画像の固定幅 */
  height: 350px;                      /* 画像の固定高さ */
  overflow: hidden;                   /* はみ出しを防ぐ */
}

.u-job-info-img img {
  width: 100%;                        /* 画像を幅いっぱいに */
  height: 100%;                       /* 高さをエリアに合わせる */
  object-fit: cover;                  /* アスペクト比を維持しつつトリミング */
}

/* テーブル部分 */
.u-job-info-table {
  flex: 1;                            /* 残りのエリアを占有 */
  width: 100%;                        /* テーブル幅を親に合わせる */
  border-collapse: collapse;          /* セルの隙間をなくす */
  padding: 16px;                      /* 内側の余白 */
  margin: 0;                          /* 外側の余白を削除 */
  table-layout: fixed;                /* 列幅を固定 */
}

/* テーブルヘッダーとデータセル */
.u-job-info-table th,
.u-job-info-table td {
  border: 1px solid #ddd;             /* 枠線を追加 */
  text-align: left;                   /* 左寄せ */
  padding: 8px 16px;                  /* セル内の余白 */
  font-size: 14px;                    /* 文字サイズ */
  color: #333;                        /* テキストカラー */
}

.u-job-info-table th {
  background-color: #f4f4f4;          /* ヘッダーの背景色 */
  font-weight: bold;                  /* 太字 */
  width: 100px;                     /* 項目名の幅を固定 */
}

.u-job-info-table td {
  background-color: #fff;             /* データセルの背景色 */
}



/* セクション全体のスタイル */
.u-job-info-des {
  margin-bottom: 32px;               /* セクション間の余白 */
  padding: 16px;                     /* 内側の余白 */
  border-radius: 8px;                /* 角丸 */
  background-color: #fff;            /* 背景色 */
}

/* セクション見出しのスタイル */
.u-job-info-title {
  font-size: 25px;                   /* フォントサイズ */
  font-weight: bold;                 /* 太字 */
  color: #0078d4;                    /* メインカラー */
  margin-bottom: 16px;               /* 見出し下部の余白 */
}

/* テーブルのスタイル */
.job-info-des-table {
  width: 100%;                       /* テーブルを親要素に合わせる */
  border-spacing: 0;                 /* セル間の隙間をなくす */
  border-collapse: collapse;         /* セル境界線を統合 */
  margin-top: 16px;                  /* 見出しとの余白 */
}

.job-info-des-table th,
.job-info-des-table td {
  text-align: left;                  /* 左寄せ */
  padding: 20px 8px;                 /* セル内の余白 */
  font-size: 16px;                   /* 文字サイズ */
  border: 1px solid #ddd;            /* セルの枠線 */
}

.job-info-des-table th {
  background-color: #f9f9f9;         /* 背景色 */
  font-weight: bold;                 /* 太字 */
  color: #333;                       /* 文字色 */
  width: 200px;                     /* 項目名の幅を固定 */
}

.job-info-des-table td {
  color: #555;                       /* テキスト色 */
  line-height: 1.5;                  /* 行間調整 */
}

/* 特定の列のスタイル（福利厚生など） */
.job-info-des-table th span.inline {
  font-size: 14px;                   /* 小さめのフォント */
  color: #666;                       /* 薄めの色 */
}

/* 応募ボタンのスタイル */
.entry-btn {
  display: inline-block;             /* ボタン表示 */
  padding: 24px;                /* 内側余白 */
  font-size: 20px;                   /* フォントサイズ */
  font-weight: bold;                 /* 太字 */
  color: #fff;                       /* テキスト色 */
  background-color: #002f6c;          /* ボタン背景色 */
  text-decoration: none;             /* 下線なし */
  border-radius: 4px;                /* 角丸 */
  transition: background-color 0.2s ease;
}

.entry-btn:hover {
  background-color: #ded237;          /* ホバー時の色変更 */
}




/*company*/
.company-img {
  width: 90%;
  margin: 0 auto;
}
.company-img + .company-img {
  margin-top: 2rem;
}

/*kyujin*/
.kyujin-img {
  width: 80%;
  margin: 0 auto;
  max-width: 700px;
}
.img-status {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}


/* レイアウト */
form {
  width: 95%;
  max-width: 750px;
  margin: 0 auto;
  border: 1px solid #fafafa83;
  padding: 1rem;
}
.form-row {
  display: flex;
  align-items: center;
  padding: 10px;
}
.form-row:last-child {
  border-bottom: none;
}
.form-label p {
  display: flex;
  width: 250px;
}
.form-label label {
  font-weight: bold;
}
.form-label span {
  margin-left: 5px;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: bold;
  color: #fff;
  background-color: #ff0100;
}
.btn-submit {
  display: flex;
  justify-content: center;
}

/* フォームパーツのデザイン */

input,
textarea {
  background-color: #f2f4f5;
  border: none;
  border-radius: 3px;
  padding: 15px 20px;
  font-size: 16px;
  color: #333;
  flex-grow: 1;
}
input::placeholder,
textarea::placeholder {
  color: #999;
  font-size: 14px;
}
select {
  background-color: #f2f4f5;
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  color: #333;
  border: 1px solid #ccc; /* 枠線を追加 */
  border-radius: 3px;
}
.wpcf7-form-control.wpcf7-submit {
  cursor: pointer;
  margin-top: 30px;
  padding: 15px 45px;
  border: none;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  background-color: #002f6c;
}
.screen-reader-response {
  display: none;
}
.wpcf7-response-output {
  padding: 1rem;
  text-align: center;
  margin-top: 2rem;
}
.wpcf7-not-valid-tip {
  color: #ca0000;
}
.wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.wpcf7-form-control-wrap input[type="text"],
.wpcf7-form-control-wrap input[type="email"],
.wpcf7-form-control-wrap input[type="tel"],
.wpcf7-form-control-wrap textarea {
  width: 100%;
}

.form-row.btn-submit p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/*お役立ち情報一覧ページ*/
.u-useful-item {
  display: flex;
  flex-direction: row;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 80%;
  margin: 0 auto;
}

.u-useful-item + .u-useful-item {
  margin-top: 50px;
}

.u-useful-img {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  overflow: hidden;
  background-color: #f0f0f0;
}

.u-useful-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.u-useful-textwrap {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.u-useful-item-title {
  font-size: 18px;
  margin: 0 0 10px;
  color: #333;
}

.u-useful-item-title:hover {
  text-decoration: underline;
  color: #006cbf;
}

.u-useful-item-text {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
}


/*お役立ち情報記事ページ*/
.useful-single {
  padding: 2rem 1.5rem;
  background-color: #f9f9f9; /* 背景に柔らかいグレーを追加 */
}

.useful-single-title {
  font-weight: bold;
  padding-bottom: 1rem;
  color: #0056b3; /* 深みのある青に変更 */
  text-align: center; /* タイトルを中央揃え */
}

.useful-single-img img {
  width: 100%;
  max-width: 600px;
  margin-top: 2rem;
  max-height: 500px;
  display: block;
  object-fit: cover;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  box-sizing: border-box;
}

.useful-single-textwrap {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #ffffff; /* 白背景でカード風に */
  line-height: 1.8;
  color: #333; /* 読みやすい濃いグレー */
}

.useful-single-textwrap p {
  margin-bottom: 1rem; /* 各段落の間隔を広げる */
}


/*お知らせ一覧ページ*/
.u-news-contents {
  display: flex;
  flex-wrap: wrap;
}
.u-news-item {
  width: calc((100% - 40px) / 2);
  margin: 10px;
  border: 1px solid #000;
  border-radius: 0.1rem;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}
.u-news-img {
  height: 250px;
}
.u-news-textwrap {
  margin-top: 1rem;
  padding: 1rem;
}
.u-news-item-title {
  font-size: 1.1rem;
  color: #000;
}
.u-news-item-date {
  font-size: 0.9rem;
}



/*おしらせ記事ページ*/
.news-single {
  padding: 2rem 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}
.news-single-title {
  border-bottom: 2px solid #ff8c00;
  padding-bottom: 0.5rem;
  color: #000;
}

.news-single-img {
  width: 100%;
  margin-top: 2rem;
  height: 350px;
}

.news-single-textwrap {
  margin-top: 2rem;
  padding: 1.5rem;
}



/*backbtn*/
.back-btnwrap {
  text-align: center;
  margin: 4rem auto 2rem;
}
.back-btnwrap a {
  padding: 1rem 3rem;
  background-color: #284078;
  color: #fff;
}



/*company-contact*/
.company-contact {
  background-color: #fff;
}
.contact-img {
  display: block;
  width: 100%;
}



/*downloadボタン*/
.media-body,
.wpdm_icon {
  display: none;
}

.card-body {
}
.link-template-default.card.mb-2 {
  border: none;
}
.wpdm-download-link.btn.btn-primary {
  padding: 1rem 3rem;
}
.w3eden .card-body {
  padding-left: 0 !important;
}
.w3eden .ml-3,
.w3eden .mx-3 {
  margin-right: 1rem;
}
.mr-3.img-48 {
  display: none;
}
.w3eden + .w3eden .card-body {
  padding-top: 0 !important;
}

.w3eden .card {
  box-shadow: none !important;
}


/*u-cancellation*/
.u-cancellation {
  padding: 2rem 1.5rem;
  background-color: #fff;
}

.u-cancellation-contents {
  margin-top: 3rem;
}

.u-cancellation-card {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #cce0f6;
  align-items: center;
  flex-wrap: wrap;
}

.u-cancellation-card img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 8px;
  flex-shrink: 0;
}

.u-cancellation-card-text {
  flex: 1;
  min-width: 260px;
}

.u-cancellation-card-title {
  background-color: #002f6c;;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
}

.u-cancellation-btn:hover {
  background-color: #1a3faa;
}



/*u-page*/
.u-page-title {
  font-size: 1.5rem;
  border-bottom: 4px outset rgba(100, 150, 255, 0.6);
  padding-left: 1rem; /* 左に余白 */
  color: #000;
}


/*問合せアコーディオン*/
.faq-text p {
  font-size: 1rem;
  color: #555;
  margin-top: 0.5rem;
}
.accordion {
    margin: 20px 0;
}
.accordion-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}
.accordion-checkbox {
    display: none;
}
.accordion-header {
    display: block;
    background-color: #f7f7f7;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    background-color: #fff;
    transition: max-height 0.3s ease-out;
}
.accordion-content p {
    margin: 10px 0;
}
.accordion-checkbox:checked ~ .accordion-content {
    max-height: 200px; /* 適切な高さを指定 */
    padding: 15px;
}


/*contact-thanks*/
.contact-thanks-box {
  padding: 2rem 1rem;
}
.contact-thanks-box h2 {
  font-size: 1.4rem;
}

.contact-thanks-box p {
  font-size: 1.1rem;
  margin-top: 1rem;
}


/*privacy*/
.u-privacy-contents {
  margin-top: 2rem;
}
.privacy-item {
  margin-top: 2rem;
}
.privacy-item h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.privacy-item h2 {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  color: #000;
}
.privacy-item h2::before {
  content: "";
  height: 40px;
  width: 4px;
  background-color: #000;
  margin-right: 1rem;
}
.privacy-item {
  line-height: 2;
}
.privacy-item ol,
.privacy-item ul {
  margin-top: 0.5rem;
}
.privacy-item ol > li {
  list-style: initial;
  list-style-type: decimal;
  list-style-position: inside;
}

.sec-ol {
  padding-left: 2rem;
}
.mt-1 {
  margin-top: 1rem;
}


/*company*/
body {
  font-family: "Helvetica Neue", sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #fff;
  color: #333;
  line-height: 1.8;
}

.u-company {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.u-company h2 {
  font-size: 24px;
  border-bottom: 2px solid #000;
  display: inline-block;
  margin-bottom: 30px;
}

.about-container {
  width: 100%;
}

.left {
  width: 100%;
}

.left h4 {
  font-size: 12px;
  color: #002f6c;
  text-transform: uppercase;
  margin: 40px 0 16px;
  letter-spacing: 1px;
}

.left p {
  font-size: 15px;
  margin: 12px 0;
}

.section-block {
  margin-top: 40px;
}

.info-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 16px;
}


/*記事系ページデザイン*/
.u-resume-text h2,
.useful-single-textwrap h2,
.news-single-textwrap h2 {
  font-size: 1.3rem;
  font-weight: bold;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  margin-bottom: 2rem;
  background-color: #2c3e50; /* ダークブルー */
  border-bottom: 3px solid #ecf0f1; /* 下のボーダーを明るいシルバーに */
  color: #fff;
  margin-top: 2rem;
  border-radius: 5px; /* 少し角を丸めて柔らかく */
}
.u-resume-text h3,
.useful-single-textwrap h3,
.news-single-textwrap h3 {
  font-size: 1.2rem; /* フォントサイズ */
  font-weight: bold; /* フォント太さ */
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin: 1rem 0;
  position: relative;
  border-bottom: solid 3px #ffd761; /* 線 */
  color: #000; /*フォント色*/
}

.u-resume-text hr,
.useful-single-textwrap hr,
.news-single-textwrap hr {
  margin: 2rem 0;
  border-color: gray;
}
.u-resume-text p,
.useful-single-textwrap p,
.news-single-textwrap p {
  line-height: 2;
}
.u-resume-text p strong,
.useful-single-textwrap p strong,
.news-single-textwrap p strong {
  background: linear-gradient(transparent 65%, #bd203052 0%);
  display: inline;
  padding: 0 1px 0px;
}
.u-resume-text p em,
.useful-single-textwrap p em,
.news-single-textwrap p em {
  background: linear-gradient(transparent 65%, #bd203052 0%);
  display: inline;
  padding: 0 1px 0px;
  font-weight: bold;
  font-style: normal;
}
.u-resume-text ul,
.useful-single-textwrap ul,
.news-single-textwrap ul {
  margin: 1rem 0 1rem 0.5rem;
}
.u-resume-text li,
.useful-single-textwrap li,
.news-single-textwrap li {
  font-size: 1rem; /* フォントサイズ */
  padding-left: 1.4rem;
  position: relative;
  line-height: 2;
  color: #284078; /*フォント色*/
}
.u-resume-text li + li,
.useful-single-textwrap li + li,
.news-single-textwrap li + li {
  margin-top: 0.5rem;
}
.u-resume-text li::before,
.useful-single-textwrap li::before,
.news-single-textwrap li::before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  font-size: 1rem;
  left: 0;
  top: 0.1rem;
  color: #284078;
}


/*features-lists*/
.features-lists-contents {
  display: flex;
  width: 50px;
}
.features-lists-contents a {
  width: calc((100% - 30px) / 2);
  margin: 10px;
}
.features-lists-contents a img {
  display: flex;
  width: 50px;
  object-fit: none;
}


/*サイドバーなしの場合のcss*/
.main-max-width {
  width: 100%;
}


.wpdm-download-link.download-on-click.btn.btn-primary{
  background-color:#cce0f6;!important;
  border-color:  #cce0f6;!important;
  color: #000;
}