@charset "UTF-8";
/* CSS Document */

/*h2全体の見出し*/
h2{
	text-align: center;
  color: #6f5436;
  margin-bottom: 15px;
}

/* メインビジュアル */
.top-img {
  margin-top: 5%;
  height: 50vh;
  background-image: url("../img/recruit-img/DSC07759.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  position: relative;
}

.top-img h1 {
  font-size: 4rem;
  font-weight: 500;
  position: absolute;
  bottom: 20px;
  right: 5%;
  color: #fff;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* 黒い影を追加 */
}

.top-img span {
  font-size: 2rem;
}

@media screen and (max-width: 700px) {
  .top-img h1 {
    font-size: 3rem;
    line-height: 2rem;
  }
  .top-img span {
    font-size: 1.5rem;
  }
}

.section-01 {
  margin: 0 auto;
  background-image: url("../img/alexander-wende-Hzkp3JPUxVY-unsplash.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 50px;
  overflow: hidden; /* 擬似要素はみ出し防止 */
}

/* 白いフィルター */
.section-01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7); /* 70%白フィルター */
  z-index: 0;
}

/* フィルターの上にコンテンツを出す */
.section-01 > * {
  position: relative;
  z-index: 1;
}

.section-01text img {
  height: 80px;
  display: block;
  margin: 0 auto 20px; /* 横中央＋下に余白 */
}

.section-01text {
  max-width: 850px;
  justify-content: center;
  margin: 20px auto;
}

.section-01text h1 {
  text-align: center;
  color: #C1B29F;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

.section-01text span {
  font-size: 1rem;
}

/* 共通部分 */
.skill-up,
.section-03 {
  width: 80%;
  margin: 100px auto;
}
/*ふわっと動き*/
.section-02 li {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-02 li.show {
  opacity: 1;
  transform: translateY(0);
}

.section-02 li img {
  display: block;       
  margin: 0 auto 10px;  
  width: 120px;         
  height: auto;
  background-color: #fff;
  border-radius: 50%;
  padding: 20px;
}

/* スキルアップ・福利厚生（section-02） */
.section-02 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  justify-content: space-between;
}

.section-02 li {
  width: 30%;
  min-width: 300px;
  background-color: #fad09e;
  padding: 25px 20px;
  box-sizing: border-box;
  border-radius: 15px;
}



.section-02 p {
  line-height: 1.5rem;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
  .section-02 ul {
    justify-content: center;
  }

  .section-02 li {
    width: 90%;
  }
}

.section-02-text {
  margin-top: 50px;
}
.section-02-text h2 {
  font-size: 1.5rem;
}

/* 背景動画を含むコンテナ */
.background-move {
  position: relative;
  width: 100%;
  overflow: visible; /* ← 必要に応じて */
  z-index: 0;
  min-height: 100vh; /* ← 必ず最低高さを与える */
  
}


/* 背景動画 */
.background-move video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  max-height: 100vh; /* 追加：画面高を超えないように */
  object-fit: cover; /* 使用していない場合でも確認用 */
  z-index: 0;
  display: block;
}

/* 中身（schedule～tel-no）を動画の上に表示 */
.background-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 50px 0 0px; /* ← 下方向の余白を増やす */
}

/* 背景色を打ち消す（必要に応じて） */
.section-04,
.contact {
  background-color: transparent;
}

/* 1日のスケジュール */

.fade-schedule {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-schedule.fade-in {
  opacity: 1;
  transform: translateY(0);
}


.schedule h4 {
  margin-top: 100px;
  text-align: center;
  font-size: 1.5rem;
  color: #f39800;
}
.schedule p {
  text-align: center;
  font-size: 0.9rem;
}

.timeline {
  position: relative;
  list-style: none;
  margin: 50px auto;
  width: 90%;
	max-width: 1000px;
  border-left: 3px solid #f39800;
}
.timeline ul {
  display: block;
}
.timeline li {
  width: 100%;
  position: relative;
  margin-bottom: 40px;
  margin-left: 4px;
  background: #fdf9f4;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 20px 40px; /* ← 背景が縦ラインを隠さない */
}

/* 丸の位置：liにpaddingを持たせた分、li内で調整 */
.timeline li::before {
  content: "";
  position: absolute;
  top: 1.2em;
  left: -14px; /* ← timelineのborderと丸のサイズに合わせて絶対位置指定 */
  width: 14px;
  height: 14px;
  background: #f39800;
  border: 2px solid #fff;
  border-radius: 50%;
  z-index: 2;
}

.timeline .time {
  display: block;
  font-weight: bold;
  color: #f39800;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.timeline .content {
  font-size: 1rem;
  line-height: 1.6;
}





/* スマホ調整：レイアウト崩さず丸も揃える */
@media (max-width: 700px) {
  .timeline li {
    padding-left: 30px; /* ← 左を少し狭める */
  }

  .timeline li::before {
    left: -9px; /* ← ライン中央に丸が乗るよう調整 */
  }
}

/* 雇用形態・待遇（section-03） */

.recruit-content {
  margin: 20px 0;
}

.recruit-content h2 {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.recruit-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 1rem;
  color: #333;
  background-color: #fff;
}

.recruit-table th,
.recruit-table td {
  border: 1px solid #f6ae54;
  padding: 10px 15px;
  vertical-align: top;
}

.recruit-table th {
  background-color: #f6ae54;
  color: #fff;
  font-weight: normal;
  text-align: left;
}

.recruit-table td {
  background-color: #fff;
}

.recruit-table td span {
  font-size: 1rem;
  color: #f28c28;
}


/* ハロワ */

.hellowork {
  margin-top:10px;
  text-align: right;
  width: 98%;
}

.hellowork a {
  display: inline-flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s ease, transform 0.3s ease;
  font-size: 1rem;
}

/* 矢印のスタイル */
.hellowork a .arrow {
  margin-left: 20px;
  font-size: 1.2em;
  display: inline-block;
}

/* 円のSVGを矢印の周りに配置 */
.hellowork a svg.circle {
  position: absolute;
  right: -11px; /* 矢印と重ねる位置を調整 */
  width: 40px;
  height: 40px;
  transform: rotate(-90deg); /* 上から時計回りにアニメーション */
  pointer-events: none; /* クリックの邪魔をしない */
}

/* 円アニメーションの初期設定 */
.hellowork a svg.circle circle {
  stroke-dasharray: 113; /* 円周長（2πr ≈ 113） */
  stroke-dashoffset: 113; /* 最初は全て非表示 */
  transition: stroke-dashoffset 1s ease;
  stroke:  #F18B00;
}

/* スクロールで表示されたときのアニメーション */
.hellowork a.show svg.circle circle {
  stroke-dashoffset: 0; /* 円が時計回りに描画される */
}

/* ホバー時のテキスト色変更 */
.hellowork a:hover {
  color: #f18b00;
}



/* メッセージ */

.section-04 {
  background-color: #fad09e;
  padding: 60px 0;
}

.section-04 h1 {
  width: 90%;
	text-align: center;
  margin: 0 auto;
  font-size: 1.8rem;
  color: #37210E;
  z-index: 2;
}

.section-04 h2 {
  width: 90%;
  margin: 0px auto 50px;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  z-index: 1;
}

.message {
  margin: 50px auto 20px;
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
}
.message-01{
	width: 45%;
  min-width: 400px;
}
.message-02 {
  
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 15px;
  box-sizing: border-box; /* パディング込みで幅調整 */
}

.message img {
 width: 70%;
  display: block;
  margin: 0 auto;

}

.message-01 h3 {
  margin: 10px 0;
}

/* 最初は非表示・下にずらす */
.message-01 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* スクロールで表示されたらクラスが付与される */
.message-01.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 950px) {
  .message {
    width: 90%;
  }
  .message-01 {
    width: 100%;
    min-width: 200px;
  }
}



/* お問い合わせエリア全体 */
.contact {
  position: relative; /* 擬似要素を絶対配置するため */
  text-align: center;
  margin: 0px auto;
  padding: 50px 0;
  background-size: cover;
  background-position: center;
  z-index: 1; /* 子要素より下に配置 */
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7); /* 白の透過フィルター */
  z-index: -1; /* 背景より上、コンテンツより下 */
}



/* お問い合わせフォーム */

.Form {
  width: 70%;
  margin: 50px auto;
  position: relative;
  z-index: 1; /* フォームを前面に表示 */
}

.Form-Item {
  text-align: left;
  margin-top: 20px;
}

.Form-Item-Label {
  font-size: 1.2rem;
}

.Form-Item label {
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
  cursor: pointer;
  padding: 5px 10px; /* クリック範囲を広げる */
}

.Form-Item input[type="radio"] {
  margin-right: 5px;
  cursor: pointer;
}

.Form-Item-Input,
.Form-Item-Textarea {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 10px;
}

.Form-Item-Textarea {
  min-height: 150px;
}

.Form-Item span {
  color: #F18B00;
  font-size: 1rem;
}

.Form-Btn {
  background: #F18B00;
  color: #fff;
  font-weight: bold;
  padding: 15px 20px; /* ボタンのクリック範囲を広げる */
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 20px;
}

.Form-Btn:hover {
  background: #FFC27F;
}

/* 電話での問い合わせ */
.tel-no {
  margin: 80px auto 100px;
  position: relative;
  z-index: 2;
	text-align: center;
}

.tel-no a {
  margin: 50px auto 0px;
  text-decoration: none;
  color: #F18B00;
  padding: 20px 30px;
  font-size: 2rem;
}