@charset "UTF-8";
main.career .sec-keyfigures {
  padding-bottom: 142px !important;
}
main.career .sec-keyfigures .lead {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  line-height: 2;
}
main.career .sec-keyfigures article {
  text-align: center;
  margin-top: 120px;
}
main.career .sec-keyfigures article:first-child {
  margin-top: 0px;
}
main.career .sec-keyfigures article .kye-title {
  font-size: 28px;
}
main.career .sec-keyfigures article .key-img {
  margin: 50px auto 40px;
}
main.career .sec-keyfigures article .kye-text {
  color: #999999;
}

@media screen and (max-width: 767px) {
  main.career .sec-keyfigures article .kye-title {
    font-size: 3.7333333333vw;
  }
}
.graphBox {
  padding-top: 30px;
  /* クラスが付与されたら動く設定（スクロール監視などを想定） */
}
.graphBox .graph-container {
  display: flex;
  justify-content: center;
  align-items: flex-end; /* 下揃え */
  gap: 10px; /* 棒同士の間隔 */
}
.graphBox .bar {
  width: 50px;
  height: var(--h); /* 個別の高さ */
  border-radius: 4px; /* 角丸 */
  opacity: 0.5; /* 初期状態の透明度（お好みで） */
  /* アニメーションの設定 */
  transform: scaleY(0); /* 最初は高さゼロ */
  transform-origin: bottom;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s;
  transition-delay: var(--delay);
}
.graphBox .bar.bar01 {
  background-color: #525252;
}
.graphBox .bar.bar02 {
  background-color: #696969;
}
.graphBox .bar.bar03 {
  background-color: #ababab;
}
.graphBox .bar.bar04 {
  background-color: #ffffff;
  opacity: 0.8;
}
.graphBox .graph-container.is-animated .bar {
  transform: scaleY(1);
  opacity: 1;
}

.countBox .number-display {
  color: #fff;
  font-family: "Arial Black", sans-serif; /* HUMAN MADEに近い太字 */
  margin-left: 20px;
}
.countBox .count {
  font-size: 160px; /* 画像に合わせた大きめのサイズ */
  font-family: "h1fonts", sans-serif;
  line-height: 1;
}
.countBox .unit {
  font-size: 34px;
  margin-left: 5px;
}

.genderBox {
  /* スクロール時にクラスが付与されたら表示 */
  /* 数字と％を横に並べるグループ */
}
.genderBox .circle-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.genderBox .circle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.genderBox .circle {
  position: relative; /* ラベルの基準点 */
  background-color: #fff;
  border-radius: 50%;
  color: #000;
  /* 中の数字を真ん中に寄せる */
  display: flex;
  align-items: center;
  justify-content: center;
  /* 出現アニメーション */
  transform: scale(0);
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  /* 「男性・女性」のテキストを円の中の上部に配置 */
}
.genderBox .circle .label {
  position: absolute;
  top: 20px; /* 位置は円のサイズに合わせて調整 */
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: bold;
  color: #000;
  border: 0;
}
.genderBox .circle.men {
  width: 155px;
  height: 155px;
}
.genderBox .circle.men .label {
  top: 15px;
}
.genderBox .circle.women {
  width: 170px;
  height: 170px;
}
.genderBox .circle-section.is-animated .circle {
  transform: scale(1);
}
.genderBox .number-group {
  display: flex;
  align-items: baseline; /* 数字の下端を揃える */
  margin-top: 20px; /* ラベルとの間隔を調整 */
}
.genderBox .count {
  font-size: 64px; /* 数字を大きく */
  font-weight: 900;
  line-height: 1;
  font-family: "h1fonts", sans-serif;
}
.genderBox .unit {
  font-size: 28px; /* ％を少し小さく */
  font-weight: 900;
  margin-left: 3px;
  font-family: "h1fonts", sans-serif;
}
.genderBox .separator {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
}

.mapBox {
  /* --- ベースのリセットとコンテナ設定 --- */
  /* --- 共通パーツのアニメーション設定 --- */
  /* ==========================================
  1. PC用の設定 (769px以上)
  ========================================== */
  /* ==========================================
  2. スマホ用の設定 (768px以下)
  ========================================== */
  /* --- その他エリアのデザイン --- */
}
.mapBox .map-section {
  width: 100%;
  padding: 0px 0 60px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.mapBox .map-container {
  position: relative;
  width: 90%;
  max-width: 500px;
  height: auto;
}
@media (max-width: 768px) {
  .mapBox .map-container {
    max-width: 100%;
    width: 250px;
  }
}
.mapBox .map-base-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.8;
}
.mapBox .location-node {
  position: absolute;
  z-index: 10;
}
.mapBox .dot {
  width: 8px;
  height: 8px;
  background: #ff0000;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff0000;
  transform: scale(0);
  transition: transform 0.4s ease-out;
}
.mapBox .is-animated .dot {
  transform: scale(1);
}
.mapBox .slant-line {
  position: absolute;
  height: 1.5px;
  background: #ff0000;
  width: var(--s-len); /* 個別の長さを適用 */
  transform: scaleX(0);
  transition: transform 0.4s 0.4s;
}
.mapBox .horiz-line {
  position: absolute;
  height: 1.5px;
  background: #ff0000;
  width: 0;
  transition: width 0.4s 0.8s;
}
.mapBox .is-animated .horiz-line {
  width: var(--h-len); /* 個別の長さを適用 */
}
.mapBox .info-label {
  position: absolute;
  opacity: 0;
  color: #fff;
  transition: opacity 0.4s 1.2s, transform 0.4s 1.2s;
  white-space: nowrap;
  /* ラベルの位置も個別に調整可能にする */
  left: var(--label-x);
  right: var(--label-x-r);
  top: var(--label-y);
}
.mapBox .is-animated .info-label {
  opacity: 1;
  transform: translate(0, 0);
}
.mapBox .city-name {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 4px;
}
.mapBox .tags span {
  background: #fff;
  color: #000;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: bold;
  margin-right: 4px;
}
@media (min-width: 769px) {
  .mapBox {
    /* --- 個別パラメータの指定 --- */
    /* --- 向きの制御 --- */
  }
  .mapBox .tokyo {
    top: 372px;
    right: 172px;
    --s-len: 30px;
    --h-len: 80px;
    --label-x: 110px;
    --label-y: -30px;
  }
  .mapBox .osaka {
    top: 425px;
    left: 193px;
    --s-len: 30px;
    --h-len: 80px;
    --label-x: 110px;
    --label-y: 10px;
  }
  .mapBox .okayama {
    top: 425px;
    left: 128px;
    --s-len: 80px;
    --h-len: 80px;
    --label-x-r: 145px;
    --label-y: -68px;
  }
  .mapBox .fukuoka {
    top: 458px;
    left: 43px;
    --s-len: 30px;
    --h-len: 80px;
    --label-x-r: 110px;
    --label-y: -30px;
  }
  .mapBox .tokyo .slant-line {
    top: 4px;
    left: 4px;
    transform-origin: left;
    transform: rotate(-45deg) scaleX(0);
  }
  .mapBox .is-animated .tokyo .slant-line {
    transform: rotate(-45deg) scaleX(1);
  }
  .mapBox .tokyo .horiz-line {
    top: -17px;
    left: 25px;
  }
  .mapBox .osaka .slant-line {
    top: 4px;
    left: 4px;
    transform-origin: left;
    transform: rotate(45deg) scaleX(0);
  }
  .mapBox .is-animated .osaka .slant-line {
    transform: rotate(45deg) scaleX(1);
  }
  .mapBox .osaka .horiz-line {
    top: 25px;
    left: 25px;
  }
  .mapBox .okayama .slant-line, .mapBox .fukuoka .slant-line {
    top: 4px;
    right: 4px;
    transform-origin: right;
    transform: rotate(45deg) scaleX(0);
  }
  .mapBox .is-animated .okayama .slant-line, .mapBox .is-animated .fukuoka .slant-line {
    transform: rotate(45deg) scaleX(1);
  }
  .mapBox .okayama .horiz-line {
    top: -53px;
    right: 60px;
  }
  .mapBox .fukuoka .horiz-line {
    top: -17px;
    right: 25px;
  }
  .mapBox .okayama .info-label, .mapBox .fukuoka .info-label {
    text-align: right;
  }
}
@media (max-width: 768px) {
  .mapBox {
    /* スマホ用共通パラメータ（一括で短く調整） */
    /* --- 向きの制御 --- */
  }
  .mapBox .city-name {
    font-size: 12px;
  }
  .mapBox .location-node {
    --s-len: 30px;
    --h-len: 45px;
  }
  .mapBox .location-node.tokyo {
    --s-len: 30px;
    --h-len: 15px;
  }
  .mapBox .location-node.fukuoka {
    --s-len: 70px;
    --h-len: 50px;
  }
  .mapBox .location-node.okayama {
    --s-len: 50px;
    --h-len: 10px;
  }
  .mapBox .tokyo {
    top: 182px;
    left: 160px;
    --label-x: 35px;
    --label-y: -25px;
  }
  .mapBox .osaka {
    top: 210px;
    left: 95px;
    --label-x: 60px;
    --label-y: 15px;
  }
  .mapBox .okayama {
    top: 210px;
    left: 65px;
    --label-x-r: 25px;
    --label-y: -55px;
  }
  .mapBox .fukuoka {
    top: 230px;
    left: 20px;
    --label-x-r: -192px;
    --label-y: 44px;
  }
  .mapBox .tokyo .slant-line {
    top: 4px;
    left: 4px;
    transform-origin: left;
    transform: rotate(-45deg) scaleX(0);
  }
  .mapBox .is-animated .tokyo .slant-line {
    transform: rotate(-45deg) scaleX(1);
  }
  .mapBox .tokyo .horiz-line {
    top: -17px;
    left: 25px;
  }
  .mapBox .osaka .slant-line {
    top: 4px;
    left: 4px;
    transform-origin: left;
    transform: rotate(45deg) scaleX(0);
  }
  .mapBox .is-animated .osaka .slant-line {
    transform: rotate(45deg) scaleX(1);
  }
  .mapBox .osaka .horiz-line {
    top: 25px;
    left: 25px;
  }
  .mapBox .okayama .slant-line {
    top: 4px;
    right: 4px;
    transform-origin: right;
    transform: rotate(45deg) scaleX(0);
  }
  .mapBox .is-animated .okayama .slant-line {
    transform: rotate(90deg) scaleX(1);
  }
  .mapBox .okayama .horiz-line {
    top: -45px;
    right: 5px;
  }
  .mapBox .okayama .info-label {
    text-align: right;
  }
  .mapBox .fukuoka .slant-line {
    top: 4px;
    left: 4px;
    transform-origin: left;
    transform: rotate(45deg) scaleX(0);
  }
  .mapBox .is-animated .fukuoka .slant-line {
    transform: rotate(45deg) scaleX(1);
  }
  .mapBox .fukuoka .horiz-line {
    top: 54px;
    left: 53px;
  }
}
.mapBox .other-info-box {
  margin: 0 auto;
  display: inline-block;
  border: 1px solid #fff;
  padding: 15px 50px;
  text-align: center;
}
.mapBox .other-info-box .box-title {
  font-size: 16px;
  margin-bottom: 10px;
  color: #ccc;
}
.mapBox .other-info-box .box-content {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.mapBox .other-info-box .info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.mapBox .other-info-box .info-item .map-icon {
  height: auto; /* アスペクト比を維持 */
  display: inline-block;
  vertical-align: middle;
}
.mapBox .other-info-box .info-item .icon {
  display: dis;
  align-items: center;
  justify-content: center;
}
.mapBox .other-info-box .info-item .icon.tenpo {
  width: 30px;
}
.mapBox .other-info-box .info-item .icon.ikuji {
  width: 20px;
}
.mapBox .other-info-box .icon {
  font-size: 24px;
  opacity: 0.9;
}
@media (max-width: 480px) {
  .mapBox .other-info-box .box-content {
    display: block;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  main.company .sec-keyfigures {
    padding-bottom: 21.3333333333vw !important;
  }
  main.company .sec-keyfigures .lead {
    text-align: center;
    font-size: 4.2666666667vw;
    padding-top: 0.5333333333vw;
  }
  main.company .sec-keyfigures .lead span {
    display: inline-block;
  }
}
#wrap main section.sec-recruit {
  position: relative;
  height: 580px;
}
#wrap main section.sec-recruit .base {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 105%;
}
#wrap main section.sec-recruit .base .image {
  width: 100%;
  height: 100%;
  background: url("../img/common/bg_recruit.jpg") center center no-repeat;
  background-size: cover;
}
#wrap main section.sec-recruit .base .image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
#wrap main section.sec-recruit .cont {
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
#wrap main section.sec-recruit .cont h3 {
  font-size: 40px;
  letter-spacing: -0.01em;
  line-height: 1;
}
#wrap main section.sec-recruit .cont .lead {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 900;
  line-height: 2.1;
}
#wrap main section.sec-recruit .cont .btn-more {
  margin: 24px auto 0;
}

@media screen and (max-width: 767px) {
  #wrap main section.sec-recruit {
    height: 113.3333333333vw;
    padding-top: 9.8666666667vw;
  }
  #wrap main section.sec-recruit .base .image {
    background: url("../img/common/bg_recruit_sp.jpg") top center no-repeat;
    background-size: cover;
  }
  #wrap main section.sec-recruit .cont h3 {
    font-size: 8.5333333333vw;
    letter-spacing: -0.02em;
  }
  #wrap main section.sec-recruit .cont .lead {
    margin-top: 4vw;
    font-size: 3.2vw;
    line-height: 2.05;
  }
  #wrap main section.sec-recruit .cont .btn-more {
    margin: 8.5333333333vw auto 0;
  }
}
main.career .sec-faq .lead {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  line-height: 2;
}

main.career .sec-faq .faq-box {
  max-width: 800px;
  width: 100%;
  margin: 30px auto 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 3px 1px 0px rgba(0, 0, 0, 0.07);
  box-sizing: border-box;
  padding: 24px 48px;
}
main.career .sec-faq .faq-box dl dt, main.career .sec-faq .faq-box dl dd {
  display: block;
  box-sizing: border-box;
  padding: 16px 0 16px 50px;
  position: relative;
}
main.career .sec-faq .faq-box dl dt::before, main.career .sec-faq .faq-box dl dd::before {
  content: "Q";
  position: absolute;
  left: 0;
  font-size: 20px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  text-align: center;
  line-height: 28px;
  border: solid 2px #000;
}
main.career .sec-faq .faq-box dl dt {
  border-bottom: dashed 2px #ababab;
  font-size: 18px;
}
main.career .sec-faq .faq-box dl dt::before {
  content: "Q";
  color: #fff;
  background: #000;
}
main.career .sec-faq .faq-box dl dd::before {
  content: "A";
}

@media screen and (max-width: 767px) {
  main.career .sec-faq .lead {
    text-align: center;
    font-size: 4.2666666667vw;
    padding-top: 0.5333333333vw;
  }
  main.career .sec-faq .lead span {
    display: inline-block;
  }
  main.career .sec-faq .faq-box {
    width: 96%;
    padding: 14px 24px;
  }
}
main.career .sec-job h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 8px;
}
main.career .sec-job article {
  width: 792px;
  margin: 64px auto 0;
  border-radius: 15px;
  overflow: hidden;
}
main.career .sec-job article ul {
  padding-left: 8px;
}
main.career .sec-job article ul li {
  display: block;
  border-left: 4px solid #000000;
  box-sizing: border-box;
  padding: 8px 0 8px 7px;
  padding-left: 8px;
  margin-top: 16px;
  line-height: 1.8em;
}
main.career .sec-job article ul li:first-child {
  margin-top: 0;
}
main.career .sec-job article ul li .job {
  font-weight: bold;
}
main.career .sec-job article ul li .location {
  color: #666;
}
main.career .sec-job article ul li .btn-job a {
  display: inline-block;
  text-decoration: none;
  background: #000;
  color: #fff;
  padding: 4px 16px;
  margin-top: 4px;
  border: solid 1px #000;
  line-height: 1em;
  transition-duration: 0.2s;
}
main.career .sec-job article ul li .btn-job a:hover {
  color: #000;
  background: #fff;
}

@media screen and (max-width: 767px) {
  main.career .sec-job h3 {
    text-align: center;
    font-size: 4.2666666667vw;
    padding-top: 0.5333333333vw;
  }
  main.career .sec-job article {
    margin: 8.5333333333vw auto 0;
    width: 100%;
  }
}/*# sourceMappingURL=career.css.map */