.search-title2 {
  position: relative;
  display: inline-block;
  font-size: 28px;
  font-weight: bold;
  margin: 50px auto 20px;
  padding-bottom: 10px;
  color: #333;
  text-align: center;
  left: 50%;
  transform: translateX(-50%); 
}

.job-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  padding: 20px;
  margin-bottom: 24px;
  position: relative;
  width: 700px;        
  min-height: 220px;    
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 14px rgba(0,0,0,0.15);
}

.job-card-link {
  margin-top: 16px;
}

.job-image-wrapper {
  flex-shrink: 0; 
}

.job-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
}


@media (max-width: 1024px) {
  .job-image {
    width: 160px;
    height: 160px;
  }
}


@media (max-width: 768px) {
  .job-image {
    width: 150px;
    height: 180px;
  }
  .job-content {
    font-size: 0.9em;
  }
  .job-card {
    gap: 10px;
    padding: 10px;

  }	
	
}

.job-button-wrapper {
  width: 100%;      
  margin-top: 16px;
}

.job-button {
  display: block;        
  width: 100%;          
  text-align: center;
  background: #FFD11A;
  color: #fff;
  font-weight: bold;
  padding: 12px 0;
  border-radius: 6px;
  transition: background 0.2s ease;
  box-sizing: border-box; 
}

.job-button:hover {
  background: Orange;
}

.job-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  flex: 1; 
}

/* 雇用形態タグ */
.employment-tags {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.employment-tag {
  background: #fff0f0;
  color: #e63946;
  font-size: 0.75rem;
  font-weight: bold;
  border: 1px solid #e63946;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1.2;
}


/* 情報部分 */
.job-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.job-info li {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  width: 100% !important;
  min-width: 0 !important;
  display: flex;         
  align-items: center;
  margin-bottom: 3px;
}

.job-info .label {
  display: inline-block;
  min-width: 5em;          
  margin-right: 12px;      
  padding: 1px 8px;
  border-radius: 4px;
  background: #fafafa;
  border: 3px solid #ccc;
  color: #333;
  font-weight: bold;
  font-size: 0.9em;
  text-align: center;
  flex-shrink: 0;
}

.job-salary {
  color: #e63946;
  font-weight: bold;
}

.job-description {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
}


/* ページネーション */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 30px 0;
  font-size: 14px;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-block;
  padding: 8px 14px;
  text-decoration: none;
  border: none !important;
  border-radius: 5px;
  color: #333;
  background: #fff;
  transition: all 0.2s;
}

.wp-pagenavi a:hover {
  background: #ddd;
}

.wp-pagenavi .current {
  background: #FFD11A;
  border-color: #FFD11A;
  color: #fff;
  font-weight: bold;
}


@media (max-width: 768px) {
  .wp-pagenavi {
    gap: 4px;
    font-size: 13px;
  }

  .wp-pagenavi a,
  .wp-pagenavi span {
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .wp-pagenavi {
    gap: 3px;
    font-size: 12px;
  }

  .wp-pagenavi a,
  .wp-pagenavi span {
    padding: 8px 10px;
  }
}

/*求人ページ*/

.u-job-details {
  max-width: 960px; 
  margin: 0 auto;   
  padding: 0 20px;  
  background-color: #ffffff;
}

/* タイトルバー */
.title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.u-job-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: left; 
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #333;
}


/* 企業名タイトル */
.company-name-box {
  background: #fff;                 
  border: 1px solid #eee;          
  border-radius: 8px;               
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.8); 
}

.company-name {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0;
  color: #333;
}


.u-job-header-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 2rem;
}

/* 画像 */
.u-job-info-img img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0 auto 1rem;
}

/* タグ共通 */
.u-job-tags {
  max-width: 600px;
  margin: 0 auto 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.u-job-tags .tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 9999px;  
  color: #fff;
  line-height: 1;
}


.tag-employment {
  background: #e53935;
}

.tag-area {
  background: #fbc02d;
  color: #333; 
}


.tag-salary {
  background: #1e88e5;
}

.u-job-message-box {
  position: relative;
  margin: 2em 0;
  padding: 1.5em 1em 1em;
  border: solid 3px #F5B400;
  border-radius: 8px;
  background: #fff;
  color: #333;
  box-shadow: 0 3px 4px rgba(0,0,0,0.1);
}

.u-job-message-title {
  position: absolute;
  top: -13px;
  left: 15px;
  display: inline-block;
  padding: 0 10px;
  background: #fff;
  color: #F5B400;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

.u-job-message-box p {
  margin: 0;
  padding: 0;
  color: #333;
}

.u-job-message {
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

.img-status {
  width: 80%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.8); 
}

/* テーブル共通スタイル */
.u-job-info-table,
.job-info-des-table {
  width: 100%;
  border-collapse: separate; 
  border-spacing: 0 12px;    
  margin-bottom: 2rem;
}


.u-job-info-table th,
.job-info-des-table th {
  background-color: #f9f9f9;
  padding: 1rem;
  text-align: left;
  width: 25%;
  vertical-align: top;
  font-weight: bold;
  border-radius: 6px 0 0 6px;   
  border: 1px solid #eee;
  box-shadow: 0 2px 4px rgba(0,0,0,0.8);
}


.u-job-info-table td,
.job-info-des-table td {
  padding: 1rem;
  vertical-align: top;
  background: #fff;
  border-radius: 0 6px 6px 0;   
  border: 1px solid #eee;
  box-shadow: 0 2px 4px rgba(0,0,0,0.8);
}


.u-job-info-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}


.com-table {
  background-color: #fafafa;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
}


.job-point {
  background-color: #fff8e1; 
  border-left: 6px solid #ffc107; 
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 8px;
}

.job-point-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ff9800;
  margin-bottom: 1rem;
}

.job-point-content {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.salary-number {
  font-size: 1.4rem;
  font-weight: bold;
  color: #e94919;
}
.job-occupation {
  font-size: 1.3rem;
  font-weight: bold;
  color: #0055aa
}
.company-name-strong {
  font-size: 1.3rem;
  font-weight: bold;
  color: #000;
}



/* 応募ボタン */
.btn-wrap {
  margin: 60px 0 40px;
  text-align: center;
}

.entry-btn.btn-c {
  position: relative;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border-radius: 0.5rem;
  background: #f5b400;
  box-shadow: 0 8px 0 #c49100;
  padding-top: 2.5rem;
  color: #fff;
  font-weight: bold;
  overflow: visible;
  transition: all 0.3s ease;
}

.entry-btn.btn-c span {
  font-size: 1.3rem;
  position: absolute;
  top: -1.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 2px solid #c49100;
  border-radius: 100vh;
  padding: 0.3rem 1rem;
  color: #c49100;
  white-space: nowrap;
  box-shadow: 0 3px 3px rgba(0,0,0,0.7);
}


.entry-btn.btn-c span:before,
.entry-btn.btn-c span:after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: "";
}

.entry-btn.btn-c span:before {
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #c49100 transparent transparent transparent;
}

.entry-btn.btn-c span:after {
  bottom: -7px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.entry-btn.btn-c .btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 3rem 1rem;
  font-size: 2rem;
  color: #fff;
}

.entry-btn.btn-c .btn-icon {
  width: 50px;
  height: auto;
  flex-shrink: 0;
}

.entry-btn.btn-c strong {
  display: inline-block;
  line-height: 1.2;
  color: #fff;
}

.entry-btn.btn-c:hover {
  transform: translateY(3px);
  background: #ffd34d;
  box-shadow: 0 2px 0 #c49100;
}

@media (max-width: 768px) {
  .entry-btn.btn-c span {
    font-size: 0.9rem;
  }
  .entry-btn.btn-c .btn-main {
    font-size: 1.6rem;
    padding: 0 2rem 0.8rem;
  }
  .entry-btn.btn-c .btn-icon {
    width: 32px;
  }
}




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

/*kyujin*/
.kyujin-img {
  width: 90%;
  margin: 0 auto;
  max-width: 900px;
}

/* レイアウト */
form {
  width: 95%;
  max-width: 750px;
  margin: 0 auto;
  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;
}

.form-containe p {
  text-align:center;
	}

.company-contact {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}

.form-card {
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  max-width: 700px;
  width: 100%;
  margin: 2rem auto;
}

.form-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}

.form-description {
  margin-bottom: 1.5rem;
}

.wpcf7-form .form-row {
  margin-bottom: 1.2rem;
}



.form-description p {
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  word-break: keep-all;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .form-description p {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 0.5rem;
  }
}

/* フォームパーツ */

.wpcf7-form .form-row {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.wpcf7-form label {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #333;
}

.wpcf7-form .required {
  color: #e63946;
  font-size: 0.9rem;
  margin-left: 0.3rem;
}

.wpcf7-form input,
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: #FFD11A;
  outline: none;
  box-shadow: 0 0 4px rgba(0,115,170,0.3);
}

.wpcf7-form input[type="submit"] {
  background: #FFD11A;
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
  transition: background 0.3s;
}

.wpcf7-form input[type="submit"]:hover {
  background: #FFD11A;
}

.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7-form select.wpcf7-form-control {
  display: block;
  width: 100% !important;
  box-sizing: border-box;
}

/* 各フォーム*/
.form-row {
  margin-bottom: 20px;
}

.form-label {
  font-weight: bold;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.form-label label {
  margin-right: 8px;
}

.form-label span {
  background-color: #ff5f5f;
  color: #fff;
  font-size: 12px;
  padding: 2px 2px;
  border-radius: 4px;
}



/* 入力フィールド */
input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

/* テキストエリア */
textarea {
  resize: vertical;
}

/* 送信ボタン */
.btn-submit {
  text-align: center;
  margin-top: 30px;
}

.submit {
  background-color: #FFD11A;
  color: white;
  font-size: 16px;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
}



/* reCAPTCHA 表記 */
.rec-text {
  font-size: 12px;
  margin-top: 20px;
  text-align: center;
  line-height: 1.6;
}

.rec-text {
  font-size: 12px;
  margin-top: 20px;
  text-align: center;
  line-height: 1.6;
}

.rec-text p {
  margin: 0;
  display: inline-block;
}


/* 確認画面 */
.company-contact .wpcf7-form.init {
  max-width: 750px;
  margin: 2rem auto;
  background: #fff;
  padding: 1.5rem 2rem;
}

.company-contact .wpcf7-form.init .form-row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.company-contact .wpcf7-form.init .form-label {
  flex: 0 0 50px;
  font-weight: bold;
  color: #333;
  margin: 0;
  line-height: 1.6;
  text-align: left;
}

.company-contact .wpcf7-form.init .form-value {
  flex: 1;
  color: #555;
  padding-left: 10px;
  line-height: 1.6;
  text-align: left;
}


.company-contact .wpcf7-form.init .btn-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.company-contact .wpcf7-form.init .wpcf7-spinner {
  display: inline-block;
  margin: 0;
  position: relative;
  top: 0;
}


.company-contact .wpcf7-form.init .btn-submit input[type="submit"] {
  width: auto !important;   
  padding: 0.8rem 2rem;
  border-radius: 6px;
  display: inline-block;
}



/*お役立ち情報一覧ページ*/
.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: #000; 
  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: #696969;
  color: #fff;
}





/*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*/
.merit {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.merit-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.merit-block.reverse {
  flex-direction: row-reverse;
}


.merit-image {
  flex: 1 1 300px;
  width: 100%;
  object-fit: cover;
  height: auto;


  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}


.merit-image.show {
  opacity: 1;
  transform: translateY(0);
}

.merit-text {
  flex: 1 1 400px;
  padding: 20px;
}

.merit-number {
  display: inline-block;
  color: #dbb412;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
  text-transform: uppercase;
}

p {
  font-size: 15px;
  line-height: 1.8;
}

strong {
  font-weight: bold;
  color: #dbb412;
}


.timeline {
  width: 90%;
  max-width: 800px;
  margin: 40px auto;
  position: relative;
  padding-left: 40px;
  border-left: 4px solid #fff3c2;
}

.step {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.icon {
  min-width: 60px;
  min-height: 60px;
  border-radius: 50%;
  background-color: #fff;
  border: 4px solid #ffd11a;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
  position: absolute;
  left: -40px;
  top: 0;
}

.icon-1 {
  background-image: url('https://img.icons8.com/ios-filled/50/000000/secured-letter.png');
}

.icon-2 {
  background-image: url('https://img.icons8.com/ios-filled/50/000000/conference-call.png');
}

.icon-3 {
  background-image: url('https://img.icons8.com/ios-filled/50/000000/document.png');
}

.icon-4 {
  background-image: url('https://img.icons8.com/ios-filled/50/000000/phone.png');
}

.icon-5 {
  background-image: url('https://img.icons8.com/ios-filled/50/000000/checked--v1.png');
}

.content {
  margin-left: 60px;
  background: #f9f9f9;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.content h3 span {
  color: #ffd11a;
  font-weight: bold;
  margin-right: 10px;
}

.content p {
  font-size: 0.95em;
  color: #333;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 16px;
  background: white;
  color: #ffd11a;
  border: 1px solid #ffd11a;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background 0.3s;
}

.btn:hover {
  background: #ffd11a;
  color: white;
}







/*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;
}


/*contact-thanks*/
.contact-thanks-box {
  padding: 1rem;
}
/* 完了画面の h2 専用スタイル */
.contact-thanks-box h2 {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  margin: 2rem 0;          /* 上下の余白をゆったり */
  display: block;          /* inline-block を解除 */
}
.contact-thanks-box p {
  line-height: 1.8;
}


/*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;
}


/*記事系ページデザイン*/
.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;
  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;
}

/*求人掲載page*/

.image-flow {
  max-width: 1200px;
  margin: 0 auto;
}

.image-item {
  display: flex;
  justify-content: center;   
  margin: 80px 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.image-item.left {
  justify-content: flex-start;  
}

.image-item.right {
  justify-content: flex-end;    
}

.image-item img {
  width: 100%;
  max-width: 2000px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.image-item.show {
  opacity: 1;
  transform: translateY(0);
}
