@charset "utf-8";
/* --------------------------------------------------
  html
-------------------------------------------------- */
html, body {
  height: 100%;
  font-size: 22px;
  line-height: 1.7; /* デフォルトの行間を少し広めに設定 */
  letter-spacing: 0.02em;
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Segoe UI', sans-serif;
  margin: 0; /* ページの余白をゼロに */
  padding: 0; /* ページの余白をゼロに */
}
/* 画面幅が1000px以上の場合、文字サイズを少し小さく */
@media screen and (min-width: 1000px) {
  html, body {
    font-size: 18px; /* デスクトップ用に少し小さめに設定 */
    line-height: 1.8; /* 読みやすさを保つため行間は固定 */
  }
}
/* 小さい画面（スマートフォン向け）の調整 */
@media screen and (max-width: 600px) {
  html, body {
    font-size: 16px; /* モバイル用に文字を小さくして、情報量を増やす */
    line-height: 1.5; /* 行間を少し詰めて見やすく */
  }
}
a, a:visited, a:hover, a:focus {
  text-decoration: none;
  color: inherit; /* リンクのデフォルト色を継承する */
  outline: none;
}
/* --------------------------------------------------
	img切り替え
-------------------------------------------------- */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/* --------------------------------------------------
	リンク調整
-------------------------------------------------- */
#link01 {
  margin-top: -50px;
  padding-top: 50px;
}
@media only screen and (min-width: 1000px) {
  #link01 {
    margin-top: -50px;
    padding-top: 50px;
  }
}
/* --------------------------------------------------
	float
-------------------------------------------------- */
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.img-left {
  float: left;
  margin: 20px;
}
/* --------------------------------------------------
	margin
-------------------------------------------------- */
.ma_top_10 {
  margin-top: 10px;
}
.ma_top_20 {
  margin-top: 20px;
}
.ma_top_30 {
  margin-top: 30px;
}
.ma_top_40 {
  margin-top: 40px;
}
.ma_top_50 {
  margin-top: 50px;
}
.ma_bottom_10 {
  margin-bottom: 10px;
}
.ma_bottom_20 {
  margin-bottom: 20px;
}
.ma_bottom_30 {
  margin-bottom: 30px;
}
.ma_bottom_40 {
  margin-bottom: 40px;
}
.ma_bottom_50 {
  margin-bottom: 50px;
}
.ma_left_10 {
  margin-left: 10px;
}
.ma_left_20 {
  margin-left: 20px;
}
.ma_left_30 {
  margin-left: 30px;
}
.ma_left_40 {
  margin-left: 40px;
}
.ma_left_50 {
  margin-left: 50px;
}
/* --------------------------------------------------
	font_size
-------------------------------------------------- */
.fs_ttl {
  font-size: 1.4em;
  line-height: 170%;
  font-weight: 400;
  letter-spacing: em;
}
@media screen and (min-width : 960px) {
  .fs_ttl {
    font-size: 2em;
    line-height: 170%;
    font-weight: bold;
    letter-spacing: 0em;
  }
}
.fs_ttl2 {
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 0.5em;
}
@media screen and (max-width : 1000px) {
  .fs_ttl2 {
    font-size: 20px;
    line-height: 170%;
    letter-spacing: 0.5em;
  }
}
/* --------------------------------------------------
	font_color
-------------------------------------------------- */
.red {
  color: #C00;
}
.pink {
  color: #F69;
  font-weight: bold;
}
.blue {
  color: #99ccff;
  font-weight: bold;
}
.white {
  color: #FFF;
  font-weight: bold;
}
.yellow {
  color: #FAFA03;
  font-weight: bold;
}
.green {
  color: #28AA32;
  font-weight: bold;
}
/* --------------------------------------------------
	bg_color
-------------------------------------------------- */
.bg_red {
  background-color: #118cd2;
  color: #FFF;
}
.bg_red a {
  color: #FC0;
}
.bg_blue {
  background-color: #99ccff;
}
.bg_white {
  background-color: #fff;
}
/* --------------------------------------------------
	main_image
-------------------------------------------------- */
.flex_box {
  background-color: #ffffff;
}
@media screen and (min-width : 1000px) {
  .flex_box {
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
}
.flex_item2 {
  width: 100%;
  padding: 40px;
  color: #222; /* 文字色 */
}
@media screen and (min-width : 1000px) {
  .flex_item2 {
    width: 33%;
    padding: 20px;
    color: #222; /* 文字色 */
  }
}
.flex_item2:nth-child(1) {
  background-color: #CCCCCC; /* 背景色指定 */
}
.flex_item2:nth-child(2) {
  background-color: #e5e5e5; /* 背景色指定 */
}
.flex_item2:nth-child(3) {
  background-color: #CCCCCC; /* 背景色指定 */
}
/* --------------------------------------------------
	ttl
-------------------------------------------------- */
.ttl {
  width: 100%;
  margin: 0 auto;
  margin-top: 5%;
  margin-bottom: 5%;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  color: #111;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic Medium", "Meiryo", sans-serif;
  background-color: #fff;
  border-bottom: 5px solid #E2421F;
}
.ttl2 {
  width: 100%;
  margin: 3rem auto;
  padding: 15px 0;
  text-align: center;
  color: #333;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic Medium", "Meiryo", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 2px;
  border-top: 0px solid rgba(0, 0, 0, 0.2);
  border-bottom: 0px solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1000px) {
  .ttl2 {
    font-size: 2.2rem; /* 任意の大きさに調整 */
    margin-bottom: 5px;
  }
}
/* --------------------------------------------------
	hr
-------------------------------------------------- */
hr {
  height: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0;
  border: 0;
  border-top: 1px dashed #ccc;
}
/* --------------------------------------------------
	wrapper
-------------------------------------------------- */
/* --------------------------------------------------
	box
-------------------------------------------------- */
.inner_box {
  margin: 0 auto;
  width: 1000px;
}
.box {
  width: 100%;
  margin: 0 auto;
  padding: 2%;
}
.box_gray {
  width: 100%;
  margin: 0 auto;
  padding: 2%;
  background-color: #f9f8f7;
}
.box_orange {
  width: 100%;
  margin: 0 auto;
  padding: 2%;
  background-color: #FDE8D6;
}
@media screen and (max-width: 1000px) {
  .inner_box {
    width: 100%;
  }
}
/* --------------------------------------------------
	footer
-------------------------------------------------- */
/* フッター全体 */
#footer {
  background-color: #f9f8f7;
  color: #333;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px 5%;
  max-width: 100%;
  margin: 0 auto;
  gap: 30px;
}
/* フッター各項目 */
.footer_item {
  flex: 1 1 22%;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
}
/* ロゴのスタイル */
.footer_item.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  box-shadow: none;
  padding: 0;
}
/* 見出し */
.footer_item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #444;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}
/* リストのスタイル */
.footer_item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer_item ul li {
  margin-bottom: 1px;
}
/* リンクのスタイル */
.footer_item a {
  text-decoration: none;
  color: #666;
  display: inline-block;
  transition: color 0.2s ease;
  font-size: 13px;
}
.footer_item a:hover {
  color: #0056b3;
}
/* テキスト */
.footer_item p {
  font-size: 12px;
  color: #555;
  margin: 5px 0;
}
/* 1000px以下のとき */
@media screen and (max-width: 1000px) {
  #footer {
    flex-direction: column;
    align-items: center;
    padding: 20px 10%;
  }
  .footer_item {
    width: 100%;
    text-align: left;
  }
  .footer_item h3 {
    border-bottom: none;
  }
  .footer_item ul li {
    margin-bottom: 12px;
  }
  .footer_item a {
    font-size: 16px;
  }
}
.copy {
  background-color: #222;
  text-align: center;
  font-size: 14px;
  color: #FFF;
  padding-top: 2%;
  padding-bottom: 2%;
}
/* --------------------------------------------------
	レイアウト
-------------------------------------------------- */
.layout {
  background-color: #fff;
  color: #222222;
  padding-top: 0%;
  padding-bottom: 3%;
  width: 100%;
}
@media screen and (min-width : 1000px) {
  .layout {
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
}
.item {
  width: 100%;
  padding: 20px;
  background-color: #f5f5f5;
}
@media screen and (min-width : 1000px) {
  .item {
    width: 460px;
  }
}
.vision {
  background-color: #fff;
  color: #222222;
  padding-top: 0%;
  padding-bottom: 3%;
  width: 100%;
}
@media screen and (min-width : 1000px) {
  .vision {
    display: flex;
    align-items: stretch;
    justify-content: center;
  }
}
.item2 {
  width: 100%;
  padding: 20px;
  background-color: #fff;
}
@media screen and (min-width : 1000px) {
  .item2 {
    width: 700px;
  }
}
.item3 {
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #fff;
}
@media screen and (min-width : 1000px) {
  .item3 {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 260px;
  }
}
/* --------------------------------------------------
	page-top
-------------------------------------------------- */
#page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  font-size: 100%;
  z-index: 9999; /* 最前面に表示 */
}
#page-top a {
  background: #E2421F;
  text-decoration: none;
  color: #fff;
  width: 50px;
  padding: 10px 0;
  text-align: center;
  display: block;
  border-radius: 5px;
}
#page-top a:hover {
  text-decoration: none;
  background: #Ef421F;
}
/* --------------------------------------------------
	取引先一覧
-------------------------------------------------- */
.parent {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.child {
  margin: 0 auto;
  padding: 0.5%;
}
.child img {
  width: 60px;
}
@media screen and (min-width : 1000px) {
  .parent {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .child {
    margin: 0;
    padding: 0.2%;
  }
  .child img {
    width: 166px;
  }
}
/* --------------------------------------------------
	動き
-------------------------------------------------- */
.sa {
  opacity: 0;
  transition: all .5s ease;
}
.sa.show {
  opacity: 1;
  transform: none;
}
.sa--lr {
  transform: translate(-100px, 0);
}
.sa--rl {
  transform: translate(100px, 0);
}
.sa--up {
  transform: translate(0, 100px);
}
.sa--down {
  transform: translate(0, -100px);
}
/* --------------------------------------------------
	ログインページ
-------------------------------------------------- */
/* --------------------------------------------------
	会員ログインページ
-------------------------------------------------- */
/* --------------------------------------------------
	取引先部分
-------------------------------------------------- */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px; /* 各アイテムの間にスペース */
}
.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 150px; /* テキスト用の最小高さを確保 */
  border: 1px solid #ccc; /* 薄いグレーの枠を追加 */
  border-radius: 10px; /* 角を丸める */
  padding: 10px; /* ボックス内に余白を追加 */
  background-color: #fff;
}
.gallery-item img {
  max-width: 100%;
  height: auto; /* 高さは自動で調整 */
  object-fit: contain; /* 比率を保ちながらコンテナにフィット */
  object-position: center;
  border: none; /* 画像の枠を削除 */
  padding: 0; /* 余計なパディングを削除 */
  margin: 0; /* 余計なマージンを削除 */
  display: block; /* 画像がインライン要素の場合、余白が発生することがあるのでblockに */
}
.gallery-item p {
  margin-top: 8px;
  font-size: 10px;
  color: #333;
  word-wrap: break-word; /* 長いテキストが改行されるようにする */
}
/* 画面幅が1200px以下の場合に3列に変更 */
@media (max-width: 1200px) {
  .gallery-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* 画面幅が600px以下の場合に1列に変更し、余白を調整 */
@media (max-width: 600px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item {
    min-height: 200px; /* 小さな画面でもテキスト用のスペースを確保 */
  }
}
/*--------------------------------------------------
転職支援サービスお申し込みフォーム
--------------------------------------------------*/
.custom-form-container {
  width: auto; /* 必要なら幅を制限 */
  max-width: 100%; /* 必要に応じて親要素の幅を制限 */
  margin: 0 auto;
  padding: 40px 10%;
  background-color: #f9f8f7;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 50px;
}
.custom-form-container2 {
  width: auto; /* 必要なら幅を制限 */
  max-width: 100%; /* 必要に応じて親要素の幅を制限 */
  margin: 0 auto;
  padding: 40px 10%;
  border-radius: 8px;
  margin-bottom: 50px;
}
.custom-form-container a {
  color: #E2421F;
}
.custom-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.custom-form label {
  font-weight: bold;
  margin-right: 10px;
}
.custom-form div, .custom-form .custom-date-group, .custom-form .custom-radio-group {
  align-items: center;
  gap: 10px;
}
.custom-form input, .custom-form select {
  flex: 1; /* フォーム要素が適切に伸縮するよう設定 */
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  margin-bottom: 10px;
}
.custom-radio-group label {
  display: flex;
  align-items: center;
}
.custom-radio-group input {
  margin-right: 5px;
}
.custom-date-group select {
  width: auto; /* 日付用の選択ボックスを適切なサイズにする */
}
.custom-form select {
  appearance: none; /* ブラウザデフォルトのスタイルをリセット */
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 15px;
  padding-right: 35px; /* 矢印分のスペースを確保 */
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  background-color: white; /* 一貫性を持たせる */
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 width%3D%2210%22 height%3D%226%22 viewBox%3D%220 0 10 6%22%3E%3Cpath fill%3D%22%23333%22 d%3D%22M5 6L0 0h10z%22/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
  color: #333;
}
.custom-form select:focus {
  outline: none;
  border-color: #E2421F;
  box-shadow: 0 0 5px rgba(128, 0, 32, 0.5);
}
.custom-form textarea {
  flex: 1; /* フォーム要素が適切に伸縮するよう設定 */
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  resize: vertical; /* サイズ変更を縦方向のみに制限 */
}
/* ボタン内のテキストを中央に配置 */
button[type="submit"], button[type="button"], button[type="reset"] {
  width: 100%;
  padding: 15px;
  background-color: #E2421F;
  color: white;
  font-size: 20px;
  border: none;
  border-radius: 90px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-align: center; /* テキストを中央揃え */
  box-sizing: border-box; /* パディングを含めてボックスのサイズを調整 */
}
/* ボタンがホバーしたときの色変更 */
button[type="submit"]:hover, button[type="button"]:hover, button[type="reset"]:hover {
  background-color: #E2421F;
}
/* 画面幅が1000px以下の時のレイアウト調整 */
@media (max-width: 1000px) {
  .custom-form-container {
    padding: 20px 5%;
  }
  .custom-form-container2 {
    padding: 20px 5%;
  }
  .custom-form {
    gap: 10px;
  }
  .custom-form div, .custom-form .custom-date-group, .custom-form .custom-radio-group {
    flex-direction: column;
    align-items: flex-start;
  }
  /* 郵便番号部分のフォームだけ横並びを維持 */
  .zipcode-container {
    flex-wrap: nowrap; /* 横並びを維持 */
  }
}
.link {
  display: inline-block;
  white-space: nowrap;
}
.form-label {
  font-size: 1.2em; /* 少し大きめの文字サイズ */
  font-weight: bold; /* 太字にしてタイトルっぽく */
  margin-bottom: 0.5em; /* ラベルと入力フィールドの間に余白を追加 */
}
.form-label::before {
  content: ""; /* 空の内容を疑似要素として挿入 */
  display: inline-block; /* インラインブロックで四角形を作成 */
  background-color: #E2421F; /* 四角の色 */
  width: 8px; /* 四角の幅 */
  height: 16px; /* 四角の高さ */
  margin-right: 0.5em; /* 四角とテキストの間に余白を追加 */
}
/* --------------------------------------------------
	ボタンの横並び
-------------------------------------------------- */
/* ボタンを横並びにするための設定 */
.button-container {
  display: flex;
  gap: 30px; /* ボタン間に隙間を作る */
  justify-content: center; /* ボタンを中央に配置 */
  margin-bottom: 20px;
  margin-top: 20px;
  padding: 20px;
}
.button-container button {
  width: 100%; /* 幅を100%にすることで、元のサイズと同じにします */
  padding: 30px; /* 先ほどのボタンと同じサイズに調整 */
  background-color: #E2421F;
  color: white;
  font-size: 18px; /* 文字サイズも合わせる */
  font-weight: 700;
  border: none;
  border-radius: 90px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-align: center;
  box-sizing: border-box; /* パディングを含めてボックスサイズを調整 */
  align-items: center;
  gap: 12px; /* アイコンとテキストの間隔を広げる */
}
.button-container button:hover {
  background-color: #E2421F; /* ホバー時の色変更 */
}
/* 画面幅が1000px以下の時にレイアウトを縦並びに変更 */
@media (max-width: 1000px) {
  .button-container {
    flex-direction: column; /* ボタンを縦に並べる */
    gap: 20px; /* ボタン間の間隔を調整 */
    justify-content: flex-start; /* 上から配置する */
  }
  .button-container button {
    width: auto; /* ボタン幅を元のサイズに戻す */
    padding: 15px;
  }
}
.button-container i {
  font-size: 28px;
}
button {
  outline: none;
}
button:focus {
  outline: none;
  box-shadow: none; /* フォーカス時の青い枠を消す */
}
/* --------------------------------------------------
	認証コード入力ページ
-------------------------------------------------- */
.code-inputs {
  gap: 8px; /* 入力欄間の間隔 */
  width: auto; /* 横幅の制限 */
  margin-bottom: 15px;
}
.code-input {
  width: 48px;
  height: 56px;
  font-size: 28px;
  line-height: 56px; /* 高さと同じにして上下中央に */
  padding: 0;
  text-align: center;
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
  border: 2px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box; /* paddingとborderを含める */
}

/* --------------------------------------------------
	マイページ
-------------------------------------------------- */
/* コンテナ全体のスタイル */
.mypage-container {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2em;
  background-color: #f9f8f7;
  border: 1px solid #ddd;
  border-radius: 8px;
}
/* 行のスタイル */
.mypage-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5em;
  padding-bottom: 1em;
}
/* タイトル部分 */
.mypage-title {
  font-weight: 600;
  font-size: 14px;
  color: #444;
  width: 20%; /* 横幅1000px以上で30% */
  flex-shrink: 0; /* 横幅が縮まないように設定 */
  flex-basis: 20%; /* 横幅の基準値を明確に設定 */
  text-align: left;
  border-right: 2px solid #ddd;
  padding-right: 1em;
}
/* 内容部分 */
.mypage-content {
  flex-grow: 1; /* 残りのスペースを埋める */
  padding-left: 1em;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
/* レスポンシブ対応 */
@media (max-width: 1000px) {
  .mypage-row {
    flex-direction: column;
    margin-bottom: 0.8em;
    padding: 0.8em; /* 内側の余白を追加 */
    background-color: #f9f8f7; /* 背景色を少し明るく */
    border-radius: 4px; /* 角を丸くする */
  }
  .mypage-title {
    width: 100%; /* 横幅を全幅に変更 */
    flex-basis: auto;
    border-right: none;
    padding-right: 0;
    font-size: 15px;
    text-align: center;
    margin-bottom: 0.5em;
    border-bottom: 1px solid #ccc; /* タイトルと内容の区切り線を追加 */
    padding-bottom: 0.5em;
  }
  .mypage-content {
    padding-left: 0;
    margin-top: 0.5em;
    text-align: left;
  }
}
/* ----------------------------------------
    会社概要部分
------------------------------------------*/
.company-info {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin: 20px 0;
  display: table;
  width: 100%;
  table-layout: fixed;
}
/* 各行にボーダーを追加（画面幅1000px以上） */
@media (min-width: 1000px) {
  .info-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #ddd; /* 各行の区切りにボーダーを追加 */
    align-items: center;
  }
}
/* 画面幅1000px以下の場合のスタイル */
@media (max-width: 1000px) {
  .company-info {
    padding: 15px;
  }
  .info-row {
    display: block;
    margin-bottom: 15px;
  }
  .label {
    display: block;
    width: 100%;
    margin-bottom: 5px;
    color: #333;
    background-color: #f7f7f7; /* グレー背景は変えず */
    padding: 5px;
  }
  .info-row span {
    display: block;
    width: 100%;
  }
}
/* ラベル部分のスタイル */
.label {
  font-weight: bold;
  display: inline-block;
  padding-right: 10px;
  width: 30%; /* ラベル部分の幅を調整 */
  color: #222222;
  background-color: #fff; /* 薄いグレーの背景色 */
  padding: 5px;
}
.info-row span {
  display: inline-block;
  padding: 5px 0;
  color: #666;
}
.info-row a {
  color: #007bff;
  text-decoration: none;
}
.info-row a:hover {
  text-decoration: underline;
}
.info-row ul {
  margin: 0;
  padding-left: 0px;
}
.info-row ul li {
  margin-bottom: 0px;
  color: #666;
}
/* --------------------------------------------------
	転職サポート部分
-------------------------------------------------- */
.custom-box-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}
.custom-box {
  background: #f9f8f7;
  color: #333;
  font-weight: 600;
  text-align: left;
  padding: 20px;
  border-radius: 15px;
  font-size: 0.9em;
  border: solid 1px #f9f8f7;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 150px;
}
.custom-box::before {
  content: '';
  margin-right: 15px;
  font-size: 2em;
  color: #E2A71F; /* オレンジ色 */
}
.custom-box:nth-child(1)::before {
  content: '\f0a0'; /* 上昇グラフ */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.custom-box:nth-child(2)::before {
  content: '\f0c0'; /* ドア */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.custom-box:nth-child(3)::before {
  content: '\f155'; /* お金 */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.custom-box:nth-child(4)::before {
  content: '\f005'; /* 星 */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.custom-box:nth-child(5)::before {
  content: '\f0ac'; /* 地球 */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.custom-box:nth-child(6)::before {
  content: '\f2b9'; /* ユーザー（シンプル） */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
@media screen and (max-width: 1000px) {
  .custom-box-container {
    grid-template-columns: 1fr;
  }
  .custom-box {
    text-align: left;
    padding: 10px;
    font-size: 1em;
    justify-content: flex-start;
    min-height: 100px;
  }
}
.responsive-text {
  color: #E2421F; /* オレンジ */
  font-weight: bold; /* 太字 */
  text-align: center; /* 中央揃え */
  white-space: nowrap; /* 改行を防ぐ */
  font-size: clamp(16px, 4vw, 30px); /* 最小16px, 最大32px */
  line-height: 1.5; /* 行間を調整 */
  width: fit-content; /* コンテンツ幅に合わせる */
  margin: 0 auto; /* 中央配置 */
  margin-top: 50px;
  margin-bottom: 30px;
  max-width: 90vw; /* 画面の90%を超えないようにする */
  display: block;
}
@media screen and (max-width: 1000px) {
  .responsive-text {
    font-size: 3.8vw; /* 画面幅に応じて縮小 */
  }
}
.sub-text {
  font-size: clamp(16px, 2.5vw, 18px); /* 少し小さめのサイズ */
  line-height: 2; /* 行間調整 */
  width: fit-content; /* コンテンツ幅に合わせる */
  margin: 10px auto 0; /* 上に少し余白を追加 */
  padding-left: 1%;
  padding-right: 1%;
  padding-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .sub-text {
    font-size: 1.1em; /* 少し小さめのサイズ */
    line-height: 1.5; /* 行間調整 */
    width: fit-content; /* コンテンツ幅に合わせる */
    padding-left: 2%;
    padding-right: 2%;
    padding-bottom: 50px;
  }
}
.custom-image-text-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 20px;
  border-radius: 15px; /* 角丸を追加 */
  overflow: hidden; /* 画像やテキストが角丸をはみ出さないように */
}
.custom-image {
  width: 50%;
  height: auto;
}
.custom-sub-text {
  width: 45%;
  font-size: 1em;
  line-height: 1.5;
}
/* スクリーン幅が1000px以下の場合 */
@media (max-width: 1000px) {
  .custom-image-text-box {
    flex-direction: column;
    align-items: center;
  }
  .custom-image {
    width: 100%;
    margin-bottom: 20px;
  }
  .custom-sub-text {
    width: 100%;
    text-align: left !important;
  }
}
/* --------------------------------------------------
	人材サービスラインアップ部分
-------------------------------------------------- */
.circle-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1000px;
  padding: 20px;
}
.circle {
  width: 160px;
  height: 160px;
  background-color: #fff;
  border: 3px solid #E2421F;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  padding: 20px;
  box-sizing: border-box;
}
.circle i {
  font-size: 30px;
  margin-bottom: 10px;
}

@media (min-width: 1000px) {
  .circle-container {
    flex-direction: row;
	  gap: 30px;
  }
}
@media (max-width: 999px) {
  .circle-container {
    flex-direction: row;
    justify-content: space-around;
  }
  .circle {
    width: 160px;
    height: 160px;
  }
  .circle:nth-child(4) {
    align-self: flex-start;
  }
}
/* --------------------------------------------------
	主なサービス対象職種部分
-------------------------------------------------- */
.recruitment-section {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.box3 {
  background: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  width: calc(33.33% - 20px);
  border-radius: 10px;
}
.heading {
  background: #E2421F;
  color: #fff;
  text-align: center;
  font-size: 1.4em;
  padding: 10px;
  margin: -20px -20px 20px -20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media (max-width: 1000px) {
  .recruitment-section {
    flex-direction: column;
    align-items: center;
  }
  .box3 {
    width: 100%;
  }
}
/* --------------------------------------------------
	主なサービス対象企業部分
-------------------------------------------------- */
.custom-list-wrapper_4 {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.custom-list-item_4 {
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 50px;
  padding: 20px;
  margin-bottom: 10px;
  font-size: 16px;
  text-align: left;
}
/* --------------------------------------------------
	スライダー
-------------------------------------------------- */
.s-inner {
  position: relative;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10rem;
}
.l-section .s-inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
[class*=swiper]:focus {
  outline: none;
}
.slide-media, .thumb-media {
  position: relative;
  overflow: hidden;
}
.slide-media img, .thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.swiper-button-prev, .swiper-button-next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.swiper-button-prev::before, .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}
.swiper-button-prev::after, .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid var(--color-gray);
  border-width: 3px 3px 0 0;
}
.swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}
.card05 {
  overflow: hidden;
}
.card05 .swiper {
  overflow: visible;
}
.card05 .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.card05 .swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.card05 .slide {
  overflow: hidden;
  width: 10rem;
  border-radius: 4px;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}
.card05 .slide-media {
  padding-top: 60%;
}
.card05 .slide-media img {
  height: 80%;
  -webkit-transform: translateY(-16px);
  transform: translateY(-16px);
}
.slide-media img, .thumb-media img {
  object-fit: contain;
}
@media only screen and (max-width: 1024px) {
  html {
    -webkit-text-size-adjust: 100%;
  }
  .s-inner {
    padding: 0 4rem;
  }
  .pc {
    display: none !important;
  }
}
@media only screen and (max-width: 599px) {
  html {
    font-size: 50%;
  }
  .pc-tab {
    display: none !important;
  }
  .card05 .slide {
    width: 16rem;
  }
}
@media only screen and (min-width: 1025px) {
  .tab-sp {
    display: none !important;
  }
  .swiper-button-prev::before, .swiper-button-next::before {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .card05 .slide {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .card05 .slide img {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
}
@media only screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
/*-----------------------------------------
３つの理由
-----------------------------------------*/
.grit-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
}
.grit-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: 30%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.grit-card-number {
  position: absolute;
  top: -50px;
  font-size: 3.5em;
  font-weight: 200;
  color: #E2421F;
}
.grit-card-title {
  font-weight: 400;
  font-size: 2em;
  margin-top: 50px; /* 数字とタイトルの間隔を広げる */
}
.grit-card img {
  width: 100%;
  object-fit: cover;
  margin: 10px 0;
}
.grit-card p {
  text-align: left;
}
@media (max-width: 1000px) {
  .grit-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }
  .grit-card {
    width: 80%;
    min-width: auto;
  }
}
/*-----------------------------------------
FAQ
-----------------------------------------*/
.faq-item {
  margin-bottom: 10px;
  border: 1px solid #eeeeee;
  border-radius: 5px;
  overflow: hidden;
}
.faq-toggle {
  background-color: #fff;
  color: #333;
  border: none;
  padding: 12px;
  width: 100%;
  text-align: left;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* 文字を左寄せ */
  box-sizing: border-box;
}
.faq-toggle:hover {
  background-color: #E2421F;
  color: #fff;
}
.faq-label-q {
  color: #E2421F;
  font-weight: bold;
  font-size: 20px;
  margin-right: 8px;
}
.faq-toggle span {
  display: flex;
  align-items: center;
  text-align: left; /* 確実に左寄せ */
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 12px;
  background-color: #f9f9f9;
  font-size: 18px;
  display: block;
  transition: max-height 0.3s ease-out;
}
.faq-label-a {
  color: #555;
  font-weight: bold;
  font-size: 20px;
  margin-right: 8px;
}
/* アコーディオンが開いたときのスタイル */
.faq-item.active .faq-content {
  max-height: 200px;
  padding: 12px;
}
@media (max-width: 1000px) {
  .faq-toggle {
    font-size: 16px;
    padding: 10px;
  }
  .faq-label-q, .faq-label-a {
    font-size: 18px;
  }
  .faq-content {
    font-size: 16px;
    padding: 0 12px;
  }
}
/*-----------------------------------------
アクセント
-----------------------------------------*/
.accent-tag {
  background-color: #E2A71F;
  color: white;
  padding: 0.1em 0.8em;
  border-radius: 4px; /* 少しだけ丸みをつける */
  display: inline-block;
  font-weight: bold; /* 文字を強調 */
}
.accent-tag2 {
  background-color: #E2421F;
  color: white;
  padding: 0.1em 0.8em;
  border-radius: 4px; /* 少しだけ丸みをつける */
  display: inline-block;
  font-weight: bold; /* 文字を強調 */
}
.accent-marker {
  background: linear-gradient(transparent 60%, #F6D45F 60%);
}
/*-----------------------------------------
転職活動の流れ
-----------------------------------------*/
.flow-container_custom {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1000px;
  margin: auto;
  position: relative;
}
.step-container_custom {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.step-card_custom {
  background: #f9f8f7;
  border-radius: 8px;
  padding: 20px;
  width: 180px;
  text-align: center;
  position: relative;
  box-shadow: none; /* 影を削除 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px; /* 高さを統一 */
}
.step-card_custom h2 {
  margin: 0;
  font-size: 13px; /* Stepを小さく */
  font-weight: 500; /* 細くしました */
  color: #E2421F;
}
.step-card_custom h3 {
  margin: 10px 0;
  font-size: 1em; /* 番号を大きく */
  font-weight: 500; /* 番号部分を少し太く */
  color: #333;
}
.step-card_custom img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 10px 0;
}
.step-description_custom {
  font-size: 16px;
  text-align: left;
  color: #333;
  margin-top: 15px; /* 隙間を広げました */
  max-width: 180px;
}
/* 矢印のデザイン */
.arrow_custom {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #E2A71F;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%); /* カード基準で中央配置 */
  margin-left: 10px; /* カードと矢印の間隔を開けました */
}
.flow-container_custom > div:last-child .arrow_custom {
  display: none;
}
/* 1000px以下のレスポンシブ対応 */
@media (max-width: 1000px) {
  .flow-container_custom {
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
  }
  .step-description_custom {
    max-width: 100%;
    text-align: center;
	  padding-left: 5%;
	  padding-right: 5%;
  }
  .arrow_custom {
    border-top: 10px solid #E2421F;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: none;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    margin: 10px 0;
  }
  /* カードの幅を広げる */
  .step-card_custom {
    width: 80%; /* ここで幅を広げます */
  }
  .step-card_custom h3 {
    margin: 10px 0;
    font-size: 2em; /* 番号を大きく */
    font-weight: 500; /* 番号部分を少し太く */
    color: #333;
  }
}
/* --------------------------------------------------
	実績（転職成功ストーリー）
-------------------------------------------------- */
.achievements-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.achievements-card {
  display: flex;
  background: #f9f8f7;
  width: 100%;
  max-width: 480px;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ===== 左側（画像＋年齢性別） ===== */
.achievements-img-wrap {
  width: 40%;
  text-align: center;
  position: relative;
}

.achievements-card-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.achievements-person {
  font-size: 12px;
  color: #222;
  font-weight: 700;       /* 太字 */
  letter-spacing: 0.05em;
  margin-top: 6px;
}

/* ===== 右側コンテンツ部分 ===== */
.achievements-card-content {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-left: 1px solid #ccc;
}

/* 上段（元の職種＋年収） */
.achievements-card-top {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-bottom: 2px solid #333;
  padding-bottom: 5px;
}

.achievements-card-top span {
  display: block;
  font-size: 22px;
  font-weight: bold;
  margin-top: 5px;
}

/* 下段（転職後の年収） */
.achievements-card-bottom {
  background: #E2A71F;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  padding: 16px 20px;     /* 上下ややコンパクト */
  position: relative;
  border-radius: 4px;
}

/* ▼ 職種 */
.job-title {
  font-size: 14px;
  display: block;
  margin-bottom: 3px;     /* 下余白を詰める */
  line-height: 1.2;
}

/* ▼ 年収部分 */
.achievements-card-bottom span.amount {
  font-size: 36px;
}

.achievements-card-bottom .salary-label,
.achievements-card-bottom .unit {
  font-size: 18px;
}

/* ▼ 上の矢印装飾 */
.achievements-card-bottom::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #E2A71F;
}

/* ===== レスポンシブ ===== */
@media (max-width: 1000px) {
  .achievements-card {
    flex-direction: column;
    max-width: 100%;
  }

  .achievements-img-wrap {
    width: 100%;
  }

  .achievements-card-img {
    width: 100%;
    height: auto;
  }

  .achievements-person {
    font-size: 13px;
  }

  .achievements-card-content {
    width: 100%;
    border-left: none;
    border-top: 1px solid #ccc;
    padding: 20px;
  }

  .achievements-card-top {
    font-size: 15px;
  }

  .achievements-card-top span {
    font-size: 20px;
  }

  .achievements-card-bottom {
    font-size: 20px;
    padding: 14px 16px;
  }

  .achievements-card-bottom span.amount {
    font-size: 32px;
  }
}

/* --------------------------------------------------
	個人のお客様はこちら
-------------------------------------------------- */
.notice-link {
  display: block;
  width: 100%;
  background-color: #f9f8f7;
  text-align: center;
  padding: 10px 0;
  font-size: 12px;
  color: #E2421F;
  text-decoration: none;
}
.notice-link:hover {
  text-decoration: underline;
}
/* --------------------------------------------------
	サービスページ２
-------------------------------------------------- */
.service-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}
.service-box {
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  margin-bottom: 20px;
}
.service-top-box {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  padding-bottom: 40px;
}
.service-top-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 10px;
}
.service-top-item img {
  max-width: 15%;
  border-radius: 5px;
  margin-right: 10px;
}
.service-text {
  max-width: 90%;
  text-align: left;
}
.service-text p {
  font-size: 18px; /* 文字サイズを18pxに設定 */
}
.service-arrow {
  font-size: 80px;
  color: #E2421F;
  -webkit-text-stroke: 3px #ffffff; /* 文字のアウトラインの太さ */
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-shadow: none; /* テキストの影を削除 */
}
.service-bottom-box {
  background-color: #E2421F;
  padding-top: 40px;
  text-align: justify; /* 文字をボックスの幅いっぱいに広げる */
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.6em;
}
.service-bottom-box p {
  font-size: 20px;
  font-weight: bold;
  margin: 5px 0;
  width: 100%; /* 文字がボックス幅いっぱいに広がるように設定 */
}
/* 画面幅が1000px以下の時に文字サイズを小さくする */
@media (max-width: 1000px) {
  .service-bottom-box p {
    font-size: 16px; /* スマホなどで文字サイズを小さく */
  }
}
@media (max-width: 600px) {
  .service-top-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .service-top-item img {
    max-width: 50%;
    margin-bottom: 10px;
    margin-right: 0;
  }
  .service-text {
    max-width: 100%;
    text-align: center;
  }
}