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

.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;
}
.recruit-top h1{
	font-size: 2rem;
}
.recruit-top h2{
	color: #F19EC2;
	font-size: 1.3rem;
	font-weight: bold;
	text-align: center;
}
.recruit-top p{
	font-size: 1.2rem;
	max-width: 870px;
	width: 90%;
	margin: 0 auto;
	text-align: center;
	
}

.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;    /* 行間スペースが欲しい場合 */
}



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

.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;
}

/* スマホ対応: 画面幅が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;
}
.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;
}
.staff-comment h1{
	font-size: 2rem;
	color: #F19EC2;
}
.staff-comment-00{
	display: flex;
	flex-wrap: wrap;
	margin:50px auto 100px;
	width: 80%;
}
.staff-comment-01,.staff-comment-02{
	background-color: #fff;
	border-radius: 20px;
	width: 45%;
	gap:10px;
	margin: 0 auto;
	padding-bottom: 20px;
}
.staff-comment-01 img,.staff-comment-02 img{
	width: 40%;
}

.staff-comment-01 p,.staff-comment-02 p{
	width: 90%;
	text-align: left;
	margin: 0 auto;
	font-size: 1rem;
	font-weight: 200;
	line-height: 2rem;
	color: #333;
}
.staff-comment-01 p:last-child,.staff-comment-02 p:last-child{
	padding-top: 20px;
	text-align: right;
}
@media only screen and (max-width: 1000px) {
	.staff-comment-01,.staff-comment-02{
	width: 90%;
		margin-bottom: 50px;
	
}
}