@charset "UTF-8";
/* CSS Document */
.recruit{
	padding-bottom: 100px;
}
.top-img {
	 margin-top: 50px;
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
  }

  .background-image {
       width: 100%;
    height: 100%;
    object-fit: cover;
     object-position: 40% center; /* 左側の20%を基準に */
  }

  .wave-overlay {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 50vh; /* 画像の高さに一致 */
  }



.recruit-top{
	
	margin: 0 auto;
	padding: 50px 50px 0 ;
}
.recruit-top h1{
	font-size: 2rem;
}
.recruit-top h2{
	color: #F19EC2;
	font-size: 1.3rem;
	font-weight: bold;
	text-align: center;
}
.recruit-top p{
	text-align: left;
	font-size: 1.2rem;
	max-width: 870px;
	width: 90%;
	margin: 0 auto;
	
	
}


.recruit-top-list{
	max-width: 900px;
	margin: 0 auto;
}
.recruit-top h3{
	text-align: left;
	padding: 10px 20px;
	color:  #F19EC2;
	border-bottom: solid  #F19EC2 2px; 
}
.recruit-top ul {
	max-width: 800px;
  list-style: none;
  text-align: left;     
  margin: 0 auto;       
  font-size: 1.3rem;
    
  padding: 0;
	
}

.recruit-top li {
  margin-bottom: 1em;    /* 行間スペースが欲しい場合 */
}

/*❎職場体験（写真右側配置）*/

.taiken {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1100px; /* カード全体の最大幅 */
  width: 90%;
  margin: 60px auto 100px;
  background-color: #fff; /* カード背景色 */
  padding: 50px; /* カード内側の余白 */
  border-radius: 20px; /* カードの角丸 */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* 柔らかい影 */
  box-sizing: border-box;
}

/* 左側：テキストコンテンツエリア */
.taiken-content {
  flex: 1;
  text-align: center;
}

.taiken h3 {
  font-size: 1.4rem;
  color: #333;
  border-bottom: 2px solid #F19EC2;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.taiken span {
  font-size: 1.6rem;
  font-weight: bold;
  color: #F19EC2;
}

.taiken p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin: 0 auto;
}

/* お問い合わせボタンエリア */
.taiken-btn {
  margin-top: 40px;
}

.taiken-btn a {
  display: inline-block;
  background-color: #F19EC2;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 15px 40px;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
}

.taiken-btn a:hover {
  background-color: #EBF2C5;
  color: #333;
  transform: translateY(-3px);
}

.taiken-btn p {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 15px;
}

/* 右側：写真エリア */
.taiken-img {
  width: 300px; /* 写真の横幅 */
  flex-shrink: 0;
}

.taiken-img img {
  width: 100%;
  height: auto;
  border-radius: 15px; /* 写真の角丸 */
  display: block;
  object-fit: cover;
}

/* スマホ対応 */
@media screen and (max-width: 850px) {
  .taiken {
    flex-direction: column-reverse; /* スマホでは写真を上に配置 */
    padding: 30px 20px;
    gap: 30px;
  }
  
  .taiken-img {
    width: 100%;
    max-width: 300px;
  }

  .taiken-content {
    padding: 0;
  }

  .taiken h3 {
    font-size: 1.2rem;
  }

  .taiken span {
    font-size: 1.4rem;
  }


}

/* ❎通常のテーブルスタイル */

.table{
	background-color: rgba(255,255,255,0.60);
	padding: 50px 0;
	margin-bottom: 50px;
}
#table01 {
  width: 80%;
	margin: 50px auto 20px;
  border-collapse: collapse;
	
}
#table01 span{
	font-size: 1rem;
	color: #F19EC2;
	line-height: 1.2rem;
}
#table01 tr {
  border-bottom: 1px solid #b5b1b1;
}

#table01 th,
#table01 td {
  padding: 24px 15px;
  border: none;
  text-align: left;
　font-size: 1rem;
	line-height: 1.8rem;
}

#table01 th {
  width: 30%;
	font-size: 1.8rem;
}
#table01 td {
	font-size: 1rem;
}


/*職種ボタン*/

.job-link a{
	text-decoration: none;
	color: #fff;
	background-color: #F19EC2;
	padding: 10px 15px;
	border-radius: 15px;
	transition: background-color 0.3s ease, color 0.3s ease;
	display: inline-block; /* PCでは横並び */
	margin-right: 10px;    /* 横並びのときの隙間 */
	max-width: 200px;
}

.job-link a:hover{
	background-color: #EBF2C5;
	color: #333;
}

@media only screen and (max-width: 1100px){
	.job-link a{
		display: block;        /* スマホでは縦並び */
		margin-bottom: 10px;   /* 下に余白 */
		margin-right: 0;       /* 横並び用の余白をリセット */
	}
}


/* スマホ対応: 画面幅が800px以下の場合 */
@media only screen and (max-width: 800px) {
  #table01 tr {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  #table01 th,
  #table01 td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
}


/*ハロワリンクボタン*/

.recruit-button{
	max-width: 80%;
	margin:50px auto;
	padding-right: 100px;
}
.button006 a {
    background: #FBE1E1;border-radius: 15px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-left:auto;
    max-width: 400px;
	width: 80%;
    padding: 10px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	font-size: 1rem;
	margin-top: 10px;

}
.button006 a:before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    right: -2em;
    transform: translateY(calc(-50% - 2px)) rotate(30deg);
    width: 12px;
    height: 2px;
    background-color: #B8D200;
    transition: 0.3s;
}
.button006 a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -2em;
    transform: translateY(-50%);
    width: 60px;
    height: 2px;
    background-color: #B8D200;
    transition: 0.3s;
}
.button006 a:hover:before, .button006 a:hover:after {
    right: -2.5em;
}
.button006 a:hover {
    background: #EBF2C5;
    color: #333;
}


/*ハロワリンクボタン*/
.button{
	width: 80%;
	margin: 80px auto;
	
}
.button a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: auto;
    max-width: 250px;
    padding: 10px 25px;
    font-family: "Noto Sans Japanese";
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.8;
    transition: 0.3s ease-in-out;
    background: #F19EC2;
    border-radius: 9999px;
    border-bottom: solid 2px rgba(153, 153, 153, 0); /* 初期状態で透明なボーダー */
}

.button a:hover {
    border-bottom-color: rgba(153, 153, 153, 1); /* ホバー時にボーダーを表示 */
    transform: translateY(3px);
}

/*❎スタッフコメント*/
.staff-comment {
  margin: 100px auto;
  text-align: center;
}

.staff-comment h1 {
  font-size: 2rem;
  color: #F19EC2;
  margin-bottom: 30px;
}

.staff-comment-00 {
  display: flex;
  flex-wrap: wrap;
  /* 横に3つ並んだ時に両端を揃える */
  justify-content: space-between; 
  margin: 50px auto 100px;
  width: 90%; 
  gap: 40px 0; 
	max-width: 1300px;
}

/* 共通のボックスデザイン */
.staff-box {
  background-color: #fff;
  border-radius: 20px;
  width: 31%; 
  padding: 30px 20px 20px;
  box-sizing: border-box;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  /* 高さの異なるテキストが入っても箱の高さが揃うように設定 */
  display: flex;
  flex-direction: column;
}

.staff-box img {
  width: 50%; 
  max-width: 150px;
  display: block;
  margin: 0 auto 20px;
}

.staff-box p {
  width: 100%;
  text-align: left;
  margin: 0 0 auto; 
  font-size: 0.95rem; 
  font-weight: 200;
  line-height: 1.8rem;
  color: #333;
}

/* 役職名部分 */
.staff-box p:last-child {
  padding-top: 20px;
  text-align: right;
  font-weight: bold;
  margin-top: auto; /* 箱の底に固定 */
}

/* レスポンシブ対応 */
@media screen and (max-width: 1100px) {
  .staff-comment-00 {
    width: 95%;
  }
  
  .staff-box {
    width: 48%; /* タブレットサイズでは2列 */
  }
}

@media screen and (max-width: 768px) {
  .staff-box {
    width: 100%; /* スマホでは1列 */
    margin-bottom: 20px;
  }
}

/*❎コメントカード動き用*/

.staff-box {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.staff-box.show {
  opacity: 1 !important; 
  transform: translateY(0) !important;
}

/* 3. 遅延設定（PC時のみ有効） */
@media screen and (min-width: 1101px) {
  .staff-box:nth-child(3n+2) { transition-delay: 0.2s; } /* 2列目 */
  .staff-box:nth-child(3n)   { transition-delay: 0.4s; } /* 3列目 */
}

/* スマホ時は遅延をリセット */
@media screen and (max-width: 1100px) {
  .staff-box { transition-delay: 0s !important; }
}