@charset "UTF-8";

/* 共通部分------------------------------ */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: "Zen Kaku Gothic New", "Caveat", cursive, "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "メイリオ", arial, sans-serif;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
}
img {
  max-width: 100%;
}
h1 {
  width: 150px;
  height: auto;
  margin: 10px 0 0 100px;
}
h2 {
  font-size: 5rem;
  color: #00704a;
  font-weight: bold;
  font-family: "Caveat", cursive;
}
h3 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  line-height: 2rem;
}
:root {
  --darkRed: #ab5147;
  --baseGreen: #00704a;
  --lightGreen: azure;
  --lightRed: #fac0b9;
  --lighterRed: #f5f0ed;
  --lightYellow: #F9F6DE;
  --lightGray: #f0f0f0;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}
:where(textarea) {
  resize: vertical;
  resize: block;
}
:where(button, label, select, [type="submit"]) {
  cursor: pointer;
}
:where(:disabled) {
  cursor: not-allowed;
}


/* レイアウト------------------------------ */
.wrapper {
  max-width: 800px;  /* 1120 */
  margin: auto;
  padding: 0 1rem;
}
.align-center {
  text-align: center;
}
.ttl, .ttl-ja {
  margin-left: 10px;
  margin-bottom: 30px;
} 
.ttl-ja {
  font-size: 2.5rem;
}

.btn {
  position: relative;
  z-index: 1;
  width: 30%;
  height: 50px;
  border: 2px solid var(--baseGreen);
  border-radius: 5px;
  margin: 30px 20px 20px 20px;
  padding: 8px 15px;
}
.btn a {
  font-size: 1.2rem;
  align-items: center;
  color: var(--baseGreen);
}
.btn:hover{
  background-color: #eeeeee55;
}

.fadeIn {
	opacity: 0;
	transform: translateY(30px);
	transition-property: transform, opacity;
	transition-duration: 1.5s;
	transition-delay: 0s;
}
.fadeIn.is-active {
	opacity: 1;
	transform: translateY(0);
}


.arrow-right {
  margin: 15px 0 0 55px;
  width: 40px;
  height: 10px;
  border-right: 3px solid var(--baseGreen);
  border-bottom: 3px solid var(--baseGreen);
  transform: skew(45deg);
  float: right;  /* 右寄せ */
}
.overlink{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-indent: -999px;
	z-index: 2;
}


/* header------------------------------ */
/* メニュー------------------------------ */
#header {
  position: fixed;  /* 固定 */
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  height: 60px;
  padding: 10px;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(20px);  /* 曇りガラス */
  box-shadow: 0 5px 10px #eeeeee55;  /* 影 */
  z-index: 10;
}

#menu-header {
  display: flex;
  align-items: center;
  margin-right: 100px;
  gap: 26px;
}
#menu-header li a {
  font-size: 1.5rem;
  font-weight: bold;
  transition: 0.5s;
  color: #000;
}
#menu-header li a:hover {
  display: block;
  color: var(--baseGreen);
  transform: translateY(-20%);
}


/* メインビジュアル------------------------------ */
#mainvisual {
  height: 100vh;
  margin-bottom: 120px;
  position: relative;
}
#mainvisual video {
  width: 100%;
  height: 100%;
  object-fit: cover;/*縦横の大きさに寄らず  維持*/
  /* --- JavaScript --- */
  position: absolute;
  top: 9%;
}

/* メインビジュアル--キャッチ-------------- */
#mainvisual .catch {
  position: relative;
}
#mainvisual .catch-text {
  position: absolute;
  background-color: rgba( 255, 255, 255, 0.5);
  border-radius: 5px;
  z-index: 9;
  top: 65px;
  left: 150px;
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "Zen Maru Gothic";
  color: var(--baseGreen);

  clip-path: inset(0 100% 0 0);
  animation: textanimation 3s 1s forwards;
}

@keyframes textanimation {
  0% {
      clip-path: inset(0 100% 0 0);
  }

  100% {
      clip-path: inset(0);
  }
}


/* TOP-各section------------ */
#service, 
#philosophy,
#company,
#recruit, 
#contact,
#privacy_policy,
#worker_dispatch,
#entry {
  position: relative;
  padding: 45px 0 5px 0;
}
#privacy_policy,
#worker_dispatch {
  position: relative;
  padding: 60px 0 5px 0;
}
.heading {
  font-size: 1.2rem;
  margin-left: 50px;
}
.heading-span {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 50px;
}

.service-img img,
.philosophy-img img,
.company-img img,
.recruit-img img,
.contact-img img {
  position: absolute;
  top: 28%;
  width: 300px;
  height: auto;
  right: 22%;
  border-radius: 10px;
}
.bg {
  background-color: var(--lightGreen);
}


/*--サービス------------------------------ */
.service-sec {
  margin: 50px 0;
}
.service-sec ul {
  display: flex;
  justify-content: center;
}
.service-sec li {
  display: flex;
  border-right: 1px solid #000;
  padding-right: 50px;
  padding-left: 50px;
}
.service-sec ul :last-child {
  border-right: none;
}
.service-sec li a {
  color: var(--baseGreen);
  font-weight: bold;
}

.service-sec1 {
  padding-top: 20px;
}
.service-sec1ttl,
.service-sec2ttl {
  background-color: var(--lightGreen);
  padding: 10px 0;
}
.service-sec1ttl p,
.service-sec2ttl p {
  font-size: 1.2rem;
  color: var(--baseGreen);
  font-weight: bold;
  font-style: italic;
}
.secttl {
  display: flex;
	justify-content: center;
	align-items: center;
	font-size: 26px;
	text-align: center;
}
.secttl::before,
.secttl::after{
  content: '';
	width: 3px;
	height: 40px;
	background-color: var(--baseGreen);
}
.secttl::before {
  margin-right: 30px;
	transform: rotate(-35deg)
}
.secttl::after {
  margin-left: 30px;
	transform: rotate(35deg)
}


.service-point {
  margin: 0 auto;
}
.inner-point {
  font-size: 1.2rem;
  margin: 50px 0;
}


.service-content {
  margin-bottom: 80px;
}
.service-ttl {
  background-color: var(--lightGreen);
  height: 60px;
  padding: 8px;
  font-family: "Caveat", cursive;
}
.service-ttl::before {
  content: "- ";
}
.service-ttl::after {
  content: " - ";
}
.point {
  font-size: 1.5rem;
  margin-bottom: 60px;
  color: var(--baseGreen);
}
.point-inner {
  font-size: 1.2rem;
  margin-bottom: 80px;
}
.point-inner p {
  text-align: left;
  display: inline-block;
}
.job {
  width: 40%;
  padding: 0;
  margin: auto;
}
.job-list {
  background: var(--lightGreen);
  border-bottom: 2px solid #ededed;
  border-left: 12px solid var(--baseGreen);
  margin-bottom: 5px;
  padding: 0.5em;
}

.service-job h3 {
  background-color: var(--lightGreen);
}
.service-step {
  background-color: var(--lightGreen);
  height: 60px;
  padding-top: 16px;
  font-family: "Caveat", cursive;
  border-bottom: solid 1px var(--baseGreen);
  border-top: solid 1px var(--baseGreen);
  outline: solid 5px var(--baseGreen);
}
.job-comment {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.entry-step {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(230px,1fr));
  gap:48px 30px;
  align-items: center;  /*アイテムを上下中央揃え*/
}
.step-content {
  padding: 10px;
}
.step {
  width: 150px;
  height: auto;
  align-items: center;
  margin: auto;
  
  margin-bottom: 20px;
  padding:0.5em;  /*内側の余白*/
	background: none;  /*元のボックス背景色なし*/
	border: 1px solid #ccc;  /*線の太さ・種類・色*/
	position: relative;  /*配置（基準）*/
  font-size: 1.5rem;
  font-family: "Caveat", cursive;
}
.step:after {
  background-color:#eee;/*ずらしたボックスの背景色*/
	border:none;
	content: '';
	position: absolute;/*配置（ここを動かす）*/
	top: 7px;/*上から7pxずらす*/
	left: 7px;/*左から7pxずらす*/
	width: 100%;
	height: 100%;
	z-index: -50;
}
.step-ttl p {
  font-size: 1.2rem;
  font-weight: bolder;
  margin-bottom: 10px;
}
.step-comment {
  height: 120px;
  font-size: 0.8rem;
}
.service-job .btn {
  /* position: absolute; */
  /* top: 65%; */
  /* left: 43%; */
  text-align: center;
  width: 18%;
  background: var(--baseGreen);
  color: white;
  font-weight: bold;
  font-size: 1rem;
  margin: 0 auto 0;
  padding: 8px 0;
  border-radius: 100vh;
}
.service-job .btn:hover {
  color: var(--lightRed);
}
.job-start {
  margin-bottom:  100px;
}
.job-comment {
  margin-top: 60px;
}
.comment a {
  color: var(--baseGreen);
  font-weight: bold;
}
.comment a:hover {
  color: var(--lightRed);
}


/*--フィロソフィー------------------------ */
.philosophy-main {
  margin: 80px auto;
}
.inner-span {
  margin-bottom: 2rem;
}
.text-span {
  font-size: 2.5rem;
  font-weight: bold;
}
.inner-text {
  margin-left: 10%;
  margin-bottom: 60px;
  line-height: 3rem;
}
.text {
  font-size: 1.2rem;
}

/*--カンパニー------------------------------ */
.company-main {
  margin: 80px auto;
}
.inner-text2 {
  margin-left: 65%;
  margin-bottom: 100px;
  line-height: 2rem;
}

table {
  border-collapse:  collapse;  /* セルの線を重ねる */
  margin: 3px auto;
}
.table-ttl, .table-content {
  border: solid 1px #f3f3f3;  /* 枠線指定 */
  padding: 10px;  /* 余白指定 */
}
.table-ttl {
  width: 30%;
  height: 60px;
  font-weight: normal;
  background-color: #fafafa;
}
.table-content {
  width: 70%;
  padding: 0 30px;
}

iframe {
  margin-top: 50px;
  margin-left: 6%;
}

/*--リクルート------------------------------ */

/*--コンタクト------------------------------ */
.contact-comment {
  margin: 80px auto;
}


/*******************************
 * 問い合わせフォーム全体のコンテナ
 *******************************/
.contact_form_container {
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
}
/* 問い合わせフォーム全体の見出し */
.contact_form_container h3 {
  margin: auto;
  display: grid;
  place-items: center;
}
/* 問い合わせフォーム全体の見出し(英字) */
.contact_form_container h3::after {
  content: attr(data-text);
  color: var(--baseGreen);
}
/* 進行状況のナビゲーション */
.steps_navigation {
  margin: 32px auto;
  width: 100%;
  max-width: 500px;
}
/* 進行状況のナビゲーション ol */
.steps_navigation ol {
  list-style: none;
  display: flex;
}
/* 進行状況のナビゲーション li */
.steps_navigation li {
  position: relative;
  width: 100%;
  min-height: 35px;   /* 高さ */
  background: #eeeeee;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 32px;
  border-radius: 100vh;
}
/* 進行状況のナビゲーション li 右矢印 */
.steps_navigation li::after {
  position: absolute;
  content: "\e5df";
  font-family: "Material Icons";
  top: 50%;
  left: 100%;
  transform: translate(0px,-50%);
  font-size: 32px;
  color: #505050;
}
/* 進行状況のナビゲーション 最後のli */
.steps_navigation li:last-child {
  margin-right: 0;
}
/* 進行状況のナビゲーション li 最後の右矢印を非表示 */
.steps_navigation li:last-child:after {
  display: none;
}
/* 進行状況のナビゲーション ステップ完了or入力中 */
.steps_navigation li.active {
  background: var(--baseGreen);
  color: #ffffff;
}
/* 進行状況のナビゲーション ステップ完了or入力中 右矢印 */
.steps_navigation li.active::after {
  color: var(--baseGreen);
}

/* formタグ */
.contact_form {
  margin: 40px 0;
}
/* フォームの項目 */
.form_items {
  margin-bottom: 15px;
  display: flex;     /* 変更！ */
}
/* フォームの項目 ラベル */
.form_items .form_label {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  color: var(--baseGreen);
  width: 45%;     /* 100% 変更！ */
  margin-bottom: 15px;
}
/* フォームの項目 ラベル[必須] */
.form_items .form_label.required {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* フォームの項目 ラベル[必須] */
.form_items .form_label.required::after {
  content: "必須";
  background: var(--lightYellow);
  color: red;
  font-size: 0.7rem;
  padding: 4px 10px;
}

/*******************************
 * フォームの項目 input
 * type: text,email,tel,number
 *******************************/
.form_items input[type="text"],
.form_items input[type="email"],
.form_items input[type="tel"],
.form_items input[type="number"] {
  width: 100%;
  min-height: 18px;   /* 高さ */
  padding: 0 10px;
  font-size: 0.8rem;
  border: none;
  border-bottom: solid 2px var(--baseGreen);
  border-radius: 0;
}

/* input マウスを載せた時(hover) */
@media (hover: hover) {
  .form_items input:hover {
    background: var(--lightGray);
  }
}

/* input 入力必須 + 入力されていない時 */
.form_items :where(input[required]):empty {
  background: var(--lightYellow);
}

/* input 入力必須 + 入力されている時 */
.form_items :where(input[required]):valid {
  background: none;
}

/* input 入力中 */
.form_items input[type="text"]:focus,
.form_items input[type="email"]:focus,
.form_items input[type="tel"]:focus,
.form_items input[type="number"]:focus {
  background: var(--lighterRed);
}

/*******************************
 * フォームの項目 プレースホルダー
 *******************************/
.form_items .placeholder {
  margin-top: 10px;
  color: #505050;
}
/* プレースホルダー テキスト */
.form_items .placeholder::before {
  content: "例) " attr(data-text);
}

/*******************************
 * フォームの項目 input 電話番号
 *******************************/
.form_items {
  max-width: 100%;
}

/* selectの下矢印 */
.form_items .select_contents::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  content: "\e5c5";
  font-family: "Material Icons";
  font-size: 32px;
  color: var(--baseGreen);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

/* selectタグ 初期化 */
.form_items select {
  appearance: none;
  border-radius: 0;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  font-size: 16px;
  border: solid 2px var(--baseGreen);
}

/* select マウスを載せた時(hover) */
@media (hover: hover) {
  .form_items select:hover {
    background: var(--lightGray);
  }
}

/* select 入力必須 + 入力されていない時 */
.form_items :where(select[required]):invalid {
  background: var(--lightYellow);
}

/* select 入力必須 + 入力されている時 */
.form_items :where(select[required]):valid {
  background: none;
}

/* select 入力中 */
.form_items select:focus {
  background: var(--lighterRed);
}

/*******************************
 * フォームの項目 郵便番号 住所
 *******************************/
.form_items .address_layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  margin-bottom: 10px;
}
/* input 回答のラベル */
.form_items .address_layout .input_label {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: var(--baseGreen);
  min-width: 100px;
  grid-area: 1/1;
}

/* フォームの項目 プレースホルダー */
.form_items .address_layout .placeholder {
  grid-area: 2/2;
}
/* フォームの項目 郵便番号のレイアウト */
.form_items .post_code_layout {
  display: flex;
  align-items: center;
  gap: 20px;
}
/* フォームの項目 input 郵便番号 */
.form_items .post_code input[name="post_code"] {
  max-width: 200px;
}
/* 郵便番号から住所に変換するボタン */
.form_items .convert_address_button {
  display: inline-block;
  border: none;
  background: var(--baseGreen);
  color: #ffffff;
  border-radius: 5px;
  min-width: max-content;
}
/* 郵便番号から住所に変換するボタン アイコン */
.form_items .convert_address_button::before {
  display: block;
  content: "〒\e941\e55f";
  font-family: "Material Icons";
  padding: 3px 6px;
  font-size: 0.8rem;
}
/* 郵便番号から住所に変換するボタン クリック無効 */
.form_items .convert_address_button:disabled {
  filter: grayscale(1);
}

/* 郵便番号から住所に変換するボタン クリック有効時 マウスを載せた時(hover) */
@media (hover: hover) {
  .form_items .convert_address_button:not(:disabled):hover {
    filter: brightness(1.2);
  }
}

/**********************************
 * フォームの項目 textarea
 * 問い合わせ内容
 **********************************/
.form_items textarea {
  width: 100%;
  padding: 10px;
  border: solid 2px var(--baseGreen);
  border-radius: 0;
}

/* textarea マウスを載せた時(hover) */
@media (hover: hover) {
  .form_items textarea:hover {
    background: var(--lightGray);
  }
}

/* textarea 入力必須 + 入力されていない時 */
.form_items :where(textarea[required]):empty {
  background: var(--lightYellow);
}
/* textarea 入力必須 + 入力されている時 */
.form_items :where(textarea[required]):valid {
  background: none;
}
/* textarea 入力中 */
.form_items textarea:focus {
  background: var(--lighterRed);
}

/**********************************
 * フォームの項目 checkbox
 * 個人情報の取り扱いの同意
 **********************************/
.form_items .consent_label {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  padding: 10px 0;
}

.coment {
  margin-left: 30%;
}
.coment a {
  color: blue;
}

/* checkbox マウスを載せた時(hover) */
@media (hover: hover) {
  .form_items .consent_label:hover {
    background: var(--lightGray);
  }
}

/**********************************
 * フォームの項目 input submit
 * フォーム送信ボタン
 **********************************/
.form_button {
  width: 100%;
  max-width: 200px;
  margin: 60px auto 0;
}
/* submitボタン */
.form_button input[type="submit"] {
  border: none;
  width: 100%;
  height: 40px;
  background: var(--baseGreen);
  color: #ffffff;
}
/* submitボタン クリック無効 */
.form_button input[type="submit"]:disabled {
  filter: grayscale(1);
}
.form_btn {
  display: block;
  text-underline-offset: 4px;
  border-bottom: solid 1px var(--baseGreen);
  color: inherit;
  margin: 40px auto;
}

/* submitボタン クリック有効時 マウスを載せた時(hover) */
@media (hover: hover) {
  .form_button input[type="submit"]:not(:disabled):hover {
    filter: brightness(1.2);
  }
}

/**********************************
 * フォームの項目 入力エラー
 * メッセージの表示
 **********************************/
.error_messages_container {
  margin: 20px 0;
  background: #fffde2;
  padding: 10px;
}
/* エラーメッセージ ul */
.error_messages_container ul {
  list-style: none;
}
/* エラーメッセージ li */
.error_messages_container li {
  display: flex;
  gap: 4px;
  margin: 10px 0;
}
/* エラーメッセージのアイコン */
.error_messages_container li::before {
  display: block;
  content: "\e000";
  font-family: "Material Icons";
  color: #f09e02;
  font-size: 24px;
}

/**********************************
 * 問い合わせ確認
 **********************************/

 /* 入力された値のコンテンツ */
 .receive_contents {
  padding: 0 10px;
}

/* お問い合わせ入力ページに戻るボタン */
.form_button a {
  display: block;
  text-underline-offset: 4px;
  border-bottom: solid 1px var(--baseGreen);
  color: inherit;
  margin: 40px auto;
}

/* お問い合わせ入力ページに戻るボタン マウスをのせた時(hover) */
@media (hover: hover) {
  .form_button a:hover {
    color: var(--darkRed);
  }
}

/**********************************
 * 問い合わせ完了のメッセージ
 **********************************/
 .message_contents {
  margin: 20px 0;
  padding: 10px 20px;
  border: dashed 1px #505050;
  min-height: 60vh;
}

.message_contents p {
  margin: 20px 0;
}



/*--プライバシーポリシー----------------- */
.privacy-main {
  margin: 80px auto;
}
.inner-ttl {
  font-size: 2rem;
  margin: 80px 0 30px 0;
}

/*--労働者派遣に関する情報-------------- */
.worker-main {
  margin: 80px auto;
}

/* ------------------------------------ */
/* エントリー-------------------------- */
.entry {
  background-color: var(--lightGreen);
  padding-bottom: 30px;
}
.entry_form_container {
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
}
.entry_form {
  background-color: #ffffff;
  border-radius: 0.5%;
  padding: 18px;
}
.row {
  display: flex;
  justify-content: flex-start;
}
.col-sm-1, .col-sm-4, .form-control, .form-select {
  margin: 6px 8px 6px 0;
  padding-top: 10px;
}
.col-sm-3 {
  width: 26%;
  margin: 6px 0;
}
.col-sm-4 {
  width: 48%;
}

.badge {
  color: red;
  font-size: 12px;
}
.form-control, .form-select {
  border: solid 0.6px #ced4da;
  padding: 5px;
  min-height: 18px;
}
.w-25 {
  width: 70px;
}
.entry_sex, .entry_consent {
  margin-right: 30px;
}
.entry_consent_check {
  margin-right: 30px;
  padding-top: 6px;
}
input[type="radio"],input[type="checkbox"]{
  position: relative;
  top: 2px;
  margin-right: 2px; /*追加*/
}



/* footer------------------------------ */
hr {
  background-color: rgba(0,0,0,.1);
	border: none;
	box-shadow: 0 1px 0 rgba(255,255,255,1);
	height: 1px;
}
.footer-nav {
  background-color: var(--baseGreen);
}
#footer .footer-img {
  padding: 10px 0;
}
#footer .footer-img img {
  width: 150px;
  height: auto;
}
#menu-footer {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 10px;
  background-color: var(--baseGreen);
}
#menu-footer li {
  display: flex;
}
.menu-item a {
  color: #fff;
}
.menu-item a:hover {
  color: #eeeeee55;
}

#footer .copy-right {
  font-size: 0.8rem;
  color: #fff;
}


.test {
  height: 100vh;
  position: relative;
}
.test1 {
  margin-top: 200px;
}
.test img {
  width: 100%;
  height: 100%;
  object-fit: cover;/*縦横の大きさに寄らず  維持*/
  /* --- JavaScript --- */
  position: absolute;
  top: 15%;
  transition: 2.5s;
  opacity: 0;
}
.test img.show {
  opacity: 1;
}




/* sp版----------------------------- */
/* --------------------------------- */
@media (max-width: 860px) {

/* 共通部分------------------------- */
  body {
    font-size: 70%;
  }
  h1 {
    width: 70px;
    margin: 5px 0 0 20px;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  /* レイアウト---------------------- */
  .wrapper {
    max-width: none;
    margin: 0 2%;
  }
  .ttl, .ttl-ja {
    margin-bottom: 40px;
  }
  .ttl-ja {
    font-size: 1.5rem;
  }

  .btn {
    width: 150px;
    height: 30px;
    margin: 20px 10px;
    padding: 5px 0 0 10px;
  }
  .btn a {
    font-size: 0.8rem;
  }
  .arrow-right {
    margin: 5px 10px 0 0;
  }
  
  
  

  /* header-------------------------- */
  /* メニュー------------------------ */
  #header {
    display: block;
    height: 70px;
  }
  #menu-header {
    margin-left: 15px;
    margin-right: 2px;
    gap: 0;
  }
  #menu-header li {
    margin-right: 1rem;
  } 
  #menu-header li a {
    font-size: 0.8rem;
  }

  /* メインビジュアル---------------- */
  #mainvisual {
    height: 30vh;
    margin-bottom: 60px;
  }
  #mainvisual video {
    top: 26%;
  }
  /* メインビジュアル--キャッチ------ */
  #mainvisual .catch-text {
    font-size: 1.3rem;
    top: 80px;
    left: 10px;
  }
  /* TOP-各section------------ */
  .top-space {
    margin-top: 55px;
  }
  #service, 
  #philosophy,
  #company,
  #recruit, 
  #contact,
  #privacy_policy,
  #worker_dispatch,
  #entry {
    padding: 30px 0 10px 0;
  }
  .heading {
    font-size: 0.8rem;
    margin-left: 20px;
  }
  .heading-span {
    font-size: 1.2rem;
    font-weight: bold;
    margin-left: 20px;
  }
  .service-img img,
  .philosophy-img img,
  .company-img img,
  .recruit-img img,
  .contact-img img {
    top: 10%;
    width: 120px;
    height: auto;
    right: 10%;
  }

  /* サービス------------------------ */
  .service-sec {
    margin: 20px auto;
  }
  .service-sec nav ul li {
    padding: 3px 10px;
  }
  .service-sec nav ul li a {
    font-size: 0.8rem;
  }
  .service-sec1ttl p,
  .service-sec2ttl p {
    font-size: 1rem;
  }
  .secttl::before,
  .secttl::after{
    width: 2px;
    height: 30px;
  }
  .service-ttl {
    height: 40px;
    padding: 5px;
  }

  .inner-point {
    font-size: 0.8rem;
    margin: 10px auto;
  }
  .point {
    font-size: 0.7rem;
    margin-bottom: 20px;
  }
  .point-inner {
    font-size: 0.7rem;
    margin-bottom: 30px;
  }
  .point-inner3 {
    margin: 0 3% 30px 3%;
  }
  .job {
    width: 60%;
  }
  .job-comment {
    font-size: 1rem;
    margin: 10px auto;
  }
  .entry-step {
    gap: 10px;
  }
  .step-content {
    margin-bottom: 20px;
  }
  .step {
    width: 80px;
    margin: auto;
    margin-bottom: 10px;
    font-size: 0.8rem;
  }
  .step-ttl p {
    font-size: 0.8rem;
  }
  .step-comment {
    height: 32px;
    font-size: 0.6rem;
  }
  .service-job .btn {
    /* top: 38%; */
    /* left: 36%; */
    width: 28%;
    font-size: 0.6rem;
  }
  .comment {
    font-size: 0.6rem;
  }


  /* フィロソフィー------------------- */
  .philosophy-main {
    margin: 30px auto;
  }
  .inner-span {
    margin-bottom: 1.2rem;
  }
  .text-span {
    font-size: 1.5rem;
  }
  .inner-text {
    margin-left: 5.2%;
    line-height: 1.3rem;
    margin-bottom: 30px;
  }
  .text {
    font-size: 0.6rem;
  }

  /* カンパニー---------------------- */
  table {
    font-size: 0.7rem;
  }
  .text {
    font-size: 0.7rem;
  }
  .company-main {
    margin: 30px auto;
  }
  .inner-text2 {
    margin-left: 60%;
    margin-bottom: 50px;
    line-height: 1.2rem;
  }

  .table-ttl, .table-content {
    padding: 1px;  /* 余白指定 */
  }
  .table-ttl {
    height: 22px;
  }
  .table-content {
    padding: 0 10px;
  }

  iframe {
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
    height: auto;
  }
  
  /*--リクルート--------------------- */

  /*--コンタクト----------------------- */
  .contact-comment {
      margin: 20px 0 10px 0;
  }
  .contact_form_container {
    padding: 30px;
  }
  .form_items .form_label {
    font-size: 0.6rem;
    width: 60%;
  }
  .form_items .form_label.required::after {
    font-size: 0.4rem;
  }
  .form_items .address_layout .input_label {
    min-width: 80px;
  }


  /*--プライバシーポリシー-------------- */
  .privacy-main {
    margin: 30px auto;
  }
  .inner-ttl {
    font-size: 1rem;
    margin: 30px 0 10px 0;
  }

  /*--労働者派遣に関する情報------------ */
  .worker-main {
    margin: 30px auto;
  }

  /*--エントリー------------ */
 
  .entry {
    padding-bottom: 20px;
  }
  .row {
    display: block;
  }
  .badge {
    font-size: 0.6rem;
  }
  .entry_form_container {
    padding: 10px 20px;
  }



  /* footer---------------------------- */
  #footer .footer-img {
    padding: 10px 0;
  }
  #footer .footer-img img {
    width: 80px;
  }
  #footer .footer-nav, #footer .footer-nav2 {
    margin-bottom: 5px;
  }
  #footer .copy-right {
    font-size: 0.5rem;
  }








}