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



/*TOPイメージ*/
.img-wrap {
	margin-top: 100px;
  height: 45vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.img-wrap img{
	height: 100%;
	object-fit: cover;
	width: 100%;
object-position: bottom;
}

.img-wrap::before,
.img-wrap::after {
  animation: 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #363636;
  content: '';
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.img-wrap::before {
  animation-name: img-wrap-before;
  inset: 0 0 50%;
}

.img-wrap::after {
  animation-name: img-wrap-after;
  inset: 50% 0 0;
}

@keyframes img-wrap-before {
  100% {
    transform: translateX(100%);
  }
}

@keyframes img-wrap-after {
  100% {
    transform: translateX(-100%);
  }
}


/*TOPイメージ*/



.container01{
	width: 80%;
	margin: 0 auto;
}


.container01 h1 {
  text-align: left;
  font-size: 3.5rem;
  line-height: 4.5rem;
  padding-top: 80px;

}
.sma{
        display: none;
    }


.text-item {
  width: fit-content;
  overflow: hidden;
  transform: translateX(-100%);
  transition: transform cubic-bezier(0.74, 0, 0.24, 0.99) 1.1s;
}

.text-item > span {
  display: block;
  transform: translateX(100%);
  transition: transform cubic-bezier(0.74, 0, 0.24, 0.99) 1.1s;
}

.is-active .text-item {
  transform: translateX(0);
}

.is-active .text-item > span {
  transform: translateX(0);
}



.container01 h2 {
	font-size: 1.3rem;
	text-align: left;
	margin-top: 20px;
}

.container01 p{
	font-size: 1rem;
	text-align: left;
	line-height: 1.5rem;
}


.underline-before {
  position: relative;
	
}

.underline-before span{
	font-size: 1.5rem;
}
.underline-before::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FFA237; 
  transition: width 1s ease-out;
}
.underline-before.is-visible::before {
  width: 100%;
}



.container02 {
  margin-top: 80px;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

.container02-01 {
  width: 25%;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  margin: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.container02-01.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.container02-01 h3 {
  font-size: 1.3rem;
}

.container02-01 p {
  text-align: center;
  font-size: 1rem;
}

.message {
  width: 80%;
  margin: 80px auto;
  text-align: left;
}

.message img {
  display: block; /* 画像をブロック要素として表示 */
  margin: 0 auto; 
	width: 60%;
}
.message h1{
	margin-top: 50px;
	text-align: center;
	font-size: 1.7rem;
}
.message h2{
	font-size: 1.5rem;
}


.message-container{
	margin: 50px auto;
}
.message-container h2{
	font-size: 1.5rem;
	margin-top: 30px;
}
.message-container p{	
	font-size: 1rem;
	line-height: 1.7rem;
	
}

/*求人条件 */
#table01{
	width: 80%;
	margin: 10px auto;
	border-collapse: collapse;
}
#table01 tr {
 border-bottom: 1px solid #999999; 
}

#table01 th,
#table01 td {
  padding: 20px 0;
  border: none;
	text-align: left;
}

#table01 th {
	font-size: 1.2rem;
  width: 30%;
	padding-left: 80px;
}
#table01 td{
	font-size: 1rem;
}

/* sp */
@media only screen and (max-width: 900px) {
	.container01 h1{
		font-size: 2.5rem;
		line-height: 3.2rem;
	}
	.sma{
        display: block;
    }
	/*アイコン*/
	.container02-01 {
		width: 50%;
	}
	.container02-01 h3{
		font-size: 1.2rem;
	}
	.container02-01 p{
		font-size: 1rem;
	}
	.message-container img{
		width: 80%;
	}
  #table01 th,
  #table01 td {
	  padding: 10px 0;
    width: 100%;
    display: block;
  }

  #table01 th {
    width: 100%;
  }

  #table01 td {
    padding-top: 0;
  }
}
.recruit-no{
	margin: 50px auto;
}
.recruit-no h1{
	font-size: 1.5rem;
	color: #fff;
}
.recruit-no h2{
	font-size: 1.5rem;
	color: #fff;
	margin-bottom: 20px;
}
.recruit-no a {
  background-color: #ffa500;
  color: #333;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 15px;
  display: inline-block; /* transformを効かせるため */
  transition: all 0.3s ease; /* なめらかな動き */
}

.recruit-no a:hover {
  background-color: #ff8c00; /* 少し濃いオレンジに */
  color: #fff; /* 文字を白に */
  transform: translateY(-3px) scale(1.05); /* 少し上に浮き上がる＋拡大 */
  box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* 影をつける */
}



.recruit-inquiry{
	margin: 50px 0;
	font-size: 1.3rem;
}
.recruit-inquiry span{
	font-size: 1rem;
}
.recruit-inquiry a{
	color: #fff;
	text-decoration: none;
	border-bottom: solid;
	text-decoration-color:#fff;
	border-width:1px;
}
.recruit-inquiry a:hover{
	color: #FFC758;
}