@charset "utf-8";


/* ==================================================
こんなお悩みありませんか？
================================================== */
.cntBalloon_item + .cntBalloon_item {
  margin-top: 40px;
}
.cntBalloon_textBox {
  width: 90%;
  max-width: 320px;
  text-align: center;
  padding: 20px;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #CCCCCC;
  border-radius: 20px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.08);
}
.cntBalloon_textBox + .cntBalloon_textBox {
  margin-top: 20px;
}
.cntBalloon_img {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
}
.cntBalloon_icon {
  text-align: center;
}
.cntBalloon_icon img {
  max-width: 140px;
  width: 100%;
}


/* ==================================================
人材紹介事業のポイント
================================================== */
.cntPont_item {
  position: relative;
  padding: 35px 20px 30px;
  margin-top: 35px;
  background-color: #EDF7FC;
}
.cntPont_item + .cntPont_item {
  margin-top: 45px;
}
.cntPont_item .numIcon {
  position: absolute;
  top: -35px;
  left: 0;
  right: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  border-radius: 100%;
}
.cntPont_img img {
  width: 100%;
  border-radius: 8px;
}
.cntPont_title {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin: 20px 0 10px;
  color: #007DAF;
}


/* ==================================================
人材紹介までの流れ
================================================== */
.cntScroll {
  position: relative;
  margin: 35px 0 20px 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.4s 0.1s linear;
  transition: all 0.4s 0.1s linear;
}
.cntScroll:has(.js-zoom-img.on) {
  margin-right: -20px;
  margin-left: -20px;
}
.cntScroll_inner {
  width: 100%;
}
.cntScroll_img {
  overflow-x: scroll;
  padding-bottom: 10px;
}
.cntScroll .js-zoom-img {
  width: 100%;
  -webkit-transition: all 0.8s cubic-bezier(0.75, 0, 0.15, 1);
  transition: all 0.8s cubic-bezier(0.75, 0, 0.15, 1);
  max-width: none;
}
.cntScroll .js-zoom-img.on {
  width: 800px;
}
.js-zoombtn {
  position: relative;
  width: 200px;
  display: block;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  padding: 10px 10px;
  border-radius: 50px;
  border: 2px solid #007DAF;
  background: #fff;
  color: #007DAF;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
}
.js-zoombtn::before,
.js-zoombtn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 2px;
  height: 12px;
  background: #007DAF;
  border-radius: 2.5px;
  transition: all 300ms 0s ease;
}
.js-zoombtn::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.js-zoombtn::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.js-zoombtn.on::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.js-zoombtn.on::after {
  display: none;
}