.bgImg{
  background: url(../image/recruit/main_bg.jpg) no-repeat left bottom / 42.9%, var(--blue);
}
.pageTtl{
  background: url(../image/recruit/ttl_bg.png) no-repeat center bottom;
  background-size: 100%;
}
.movie{
	width: 80%;
  max-width: 640px;
	height: auto;
	aspect-ratio: 16 / 9;
}
.btnList{
  display: flex;
  justify-content: space-between;
}
.btnList li{
  width: min(48%, 575px);
  height: 233px;
  background: #fff;
  border-radius: 20px;
}
.btnList li a{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
}
.btnList li .text{
  letter-spacing: .02em;
}
.btnList li .icon{
  width: min(17.391%, 100px);
  height: auto;
  aspect-ratio: 1 / 1;
}
.btnList li.mail .icon{
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--blue);
  border-radius: 50%;
}
.btnList li.mail svg{
  fill: #fff;
  width: min(77.5%, 77.5px);
  height: auto;
}
#sec3{
  background: url(../image/recruit/sec_bg.jpg) no-repeat center center;
  background-size: cover;
}
.meritList{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* gap: 140px 5%; */
  /* display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  grid-gap: 140px 60px; */
  margin: 150px auto 0;
}
.meritList li{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(30%, 360px);
  /* height: 175px; */
  text-align: center;
  background: #fff;
  border-radius: 20px;
  aspect-ratio: 18 / 11;
}
.meritList li:nth-child(2){
  margin-left: 5%;
  margin-right: 5%;
}
.meritList li:nth-child(5){
  margin-left: 5%;
}
.meritList li:nth-child(n+4){
  margin-top: min(calc(5% + 87px), 140px);
}
.meritList li .text{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.5em;
  font-size: 1.75rem;
  padding-top: min(20.83%, 75px);
}
.meritList li .icon{
  position: absolute;
  top: 0;
  left: 50%;
  width: min(41.6%, 150px);
  border: solid 12px #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
/*
===================================================
        sp
===================================================
*/
@media screen and (max-width: 980px) {
  .btnList{
    display: block;
  }
  .btnList li{
    width: min(100%, 345px);
    height: 116px;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
  }
  .movie{
    width: 90%;
  }
  .meritList{
    max-width: 550px;
    justify-content: space-around;
    margin-top: min(24vw, 90px);
  }
  .meritList li{
    width: min(47.5%, 250px);
    height: auto;
    border-radius: 10px;
    aspect-ratio: 5 / 3;
  }
  .meritList li:nth-child(2),
  .meritList li:nth-child(5){
    margin-left: 0;
    margin-right: 0;
  }
  .meritList li:nth-child(n+3){
    margin-top: min(20vw, 75px);
  }
  .meritList li .text{
    font-size: 1.5rem;
    padding-top: min(14.8%, 37px);
  }
  .meritList li .icon{
    width: min(30%, 75px);
    border: solid 6px #fff;
  }
}
@media screen and (max-width: 750px) {
  .bgImg{
    background: url(../image/recruit/main_bg.jpg) no-repeat left bottom / 120%, var(--blue);
  }
  .pageTtl{
    background: url(../image/recruit/ttl_bg_sp.png) no-repeat center bottom;
    background-size: contain;
  }
  #sec3{
    background: url(../image/recruit/sec_bg_sp.jpg) no-repeat center top / 100%, var(--blue);
  }
  .meritList{
    flex-direction: column;
    align-items: center;
  }
  .meritList li{
    width: min(100%, 250px);
    height: auto;
    border-radius: 10px;
  }
  .meritList li:nth-child(n+2){
    margin-top: min(20vw, 75px);
  }
}