@charset "UTF-8";
html{
  scroll-behavior: smooth;
}

/* CTA */
.job-all-cta-inner{
  display: inline-block;
  padding: 15px 30px;
  text-align: center;
  position: fixed;
  top: 150px;
  right: 20px;
  z-index: 100;
  border-radius: 25px;
  background-color: #06C755;
  box-shadow: #333 0 4px 6px;
  font-weight: bold;
  transition: transform 0.3s ease-in-out;
  animation: pulse 1.5s infinite;
  position: fixed;
  color: white;
}

.wpcf7 input,
.wpcf7 textarea {
  border: 1px solid #ccc;
  padding: 10px;
  width: 90%;
  box-sizing: border-box;
  border-radius: 4px;
}

.wpcf7{
  text-align: start;
  width: 90%;
  max-width: 600px;
  margin: 80px auto;
}



@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); } /* 最大サイズ */
  100% { transform: scale(1); }
}

.job-all-cta-inner:hover {
  color: #fff;
  transform: translateX(1px) translateY(2px);
  box-shadow: none;
  animation: none;
}
/* FV */
.job-fv-all{
  position: relative;
  width: 100vw;
  height: calc(100dvh - 100px);
}
.job-fv-all-inner{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.job-fv-all-text{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding: 60px 40px;
}

.job-fv-all-text p{
  font-size: 36px;
  font-weight: 700;
  background-color: #ffffffd7;
  letter-spacing: 0.2em;
  z-index: 1;
}

.job-fv-all-text2{
  text-align: right;
}

.job-fv-all-text-span{
  font-size: 72px;
}
.job-all-circle-box{
  display:flex;
  flex-wrap: wrap;
  gap:20px;
  justify-content: end;
}

.job-all-circle-item{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display:flex;
  justify-content: center;
  align-items: center;
  color:white;
  font-size:20px;
  font-weight: bold;
  text-align: center;
  box-shadow: #333 0 4px 6px ;
}

.job-lp .job-fv-all-back{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  z-index: 0;
}

/* read */
 .job-lp .job-all-h1{
  font-size: 36px;
  text-align: center;
  margin-bottom: 80px;
}

 .job-lp .job-read-all{
  text-align: center;
  margin: 0px auto 180px auto;
}

/* gallery　写真と文章が縦に並ぶのがカードっぽくなる */
.job-lp .job-gallery-all{
  width: 80%;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin:0 auto;
}

.job-lp .job-gallery-all-item{
  text-align: center;
  width: 300px;
}

.job-lp .job-gallery-all-item img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: #333 0 4px 6px;
  margin-bottom: 20px;
}

/* 画像と文章横並びが縦に並ぶ */

.job-lp .job-list-all{
  width: 80%;
  margin: 0 auto;
}

.job-lp .job-list-all-item{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.job-lp .job-list-all-item img{
  width: 350px;
  height: 200px;
  object-fit: cover;
}

.job-lp .job-list-all-item p{
  width: 350px;
  text-align: left;
}

/* 募集要項 */
.job-lp .job-all-table{
  width: 80%;
  margin: 0 auto;
  border-collapse: collapse;
}

.job-lp #job-all-description{
  max-width: 760px;
  margin: 0 auto 180px auto;
  text-align: left;
  line-height: 1.8;
}

.job-lp #job-all-description h2{
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* LINEボタン */
.job-lp .job-all-line{
  text-align: center;
  margin-bottom: 100px;
}
.job-all-line p{
  margin-bottom: 20px;
}
.job-lp .job-all-line a{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  border-radius: 8px;
  background-color: #06C755;
  color: #fff;
  font-weight: bold;
  line-height: 50px;
  box-shadow: #333 0 4px 6px;
  margin: 0 auto;
}
.job-lp .job-all-line a span{
  font-size: 36px;
}

.job-lp .job-all-line a:hover{
  transform: translateX(1px) translateY(2px);
  box-shadow: none;
  color: #fff;
}

/* 矢印 */
.arrow {
  position: relative;
  display: inline-block;
  width: 62px;
  height: 33px;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 2px);
  width: 4px;
  height: 45px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: 50% calc(100% - 2px);
}

.arrow::before {
  transform: rotate(45deg);
}

.arrow::after {
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {

 .job-lp .job-all-h1{
  font-size: 28px;
 } 

 
.job-all-circle-item{
  width: 100px;
  height: 100px;
  font-size: 16px;
}

.job-all-circle-box{
  gap: 0;
  justify-content: center;
}
.job-fv-all-text{
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.job-fv-all-text p{
  font-size: 24px;
  letter-spacing: 0;
}
.job-fv-all-text-span{
  font-size: 36px;
}
.job-all-cta-inner{
  top: auto;
  bottom: 0;
  right: 0;
  width: 100%;
  border-radius: 0;
  animation: none;
}

.explain{
  padding: 0 20px;
}

.job-read-all{
  padding-left: 10px;
  padding-right: 10px;
}

}
