/* MV下slide　*/
.scrollContent-container {
  overflow: hidden;
  width: 100%;
}

.scrollContent-track {
  animation: clip-path-Y 1.5s forwards ease 2s;
  clip-path: inset(50% 0);
  display: flex;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}

.scrollContent {
  display: flex;
  padding: 1.5rem 0;
}

.scrollContent-item {
  margin-right: 1rem;
}

.scrollContent-item-img {
  user-select: none;
}

.careerpathMV {
  align-content: space-between;
  background: url(../img/bg_careerpath_mv_pc.png) no-repeat center top / cover;
  display: flex;
  flex-wrap: wrap;
  height: 580px;
  justify-content: center;
  width: 100%;
}

.careerpathMV-slideTop .scrollContent,
.careerpathMV-slideBottom .scrollContent {
  padding: 0;
}

@keyframes opacity {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes clip-path-Y {
  from {
    clip-path: inset(50% 0);
  }

  to {
    clip-path: inset(0 0);
  }
}

@keyframes clip-path-X {
  from {
    clip-path: inset(0 50%);
  }

  to {
    clip-path: inset(0 0);
  }
}

.careerpathMV-ttl {
  color: #252525;
  font-size: 5.5rem;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.6;
  text-align: center;
}

.careerpathMV-ttl-sub {
  display: block;
  font-size: 3.5rem;
}

.careerpathMV-ttl strong {
  animation: opacity 2s forwards ease-in-out .5s;
  background-color: #0ca692;
  color: #fff;
  display: inline-block;
  letter-spacing: .2em;
  line-height: 1;
  margin: 0 .2em;
  opacity: 0;
  padding: .5rem .25em 1rem .45em;
}

.careerpath .sectionCatch {
  background-color: #0ca692;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 6rem;
  padding: 3.5rem 0;
  text-align: center;
}

.careerpath .sectionTtl {
  background: linear-gradient(120deg, #366bc2 44%, #0ca692 56%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.careerpath .sectionTtl-sub {
  background: linear-gradient(120deg, #366bc2 44%, #0ca692 56%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-size: 4rem;
}

.careeapathList {
  align-items: flex-end;
  display: flex;
  /*min-height: 795px;*/
  min-height: 535px;
  justify-content: space-between;
  margin: 2.5rem auto 0;
  width: 1200px;
}

.careeapathList-item {
  position: relative;
  width: 19.5%;
}

.careeapathList-item-hdr {
  align-items: center;
  background: linear-gradient(0, #73cdc1, #0ca692);
  border-radius: 2rem 2rem 0 0;
  color: #fff;
  display: flex;
  font-size: 3rem;
  font-weight: 700;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: height .5s;
  will-change: height;
  z-index: 2;
}

.careeapathList.hidden .careeapathList-item .careeapathList-item-hdr {
  height: 0;
}

.careeapathList-item:nth-of-type(1) .careeapathList-item-hdr {
  height: 7rem;
}

.careeapathList-item:nth-of-type(2) .careeapathList-item-hdr {
  height: 12rem;
}

.careeapathList-item:nth-of-type(3) .careeapathList-item-hdr {
  height: 17rem;
}

.careeapathList-item:nth-of-type(4) .careeapathList-item-hdr {
  height: 22rem;
}

.careeapathList-item:nth-of-type(5) .careeapathList-item-hdr {
  height: 27rem;
}

.careeapathList-item-hdr .num {
  font-size: 5rem;
}

.careeapathList-dtl-wrapper {
  background-color: #f5f5f5;
  border: 1px solid #0ca692;
  border-radius: 0 0 2rem 2rem;
  font-size: 1.8rem;
  padding: 3.5rem 0 7.5rem;
  position: relative;
  z-index: 2;
}

.careeapathList-dtl {
  margin: 0 auto;
  width: fit-content;
}

.careeapathList-dtl-item {
  font-weight: 500;
  line-height: 1.6;
  width: fit-content;
}

.careeapathList-dtl-item::before {
  content: "・";
  margin-left: -1em;
}

.careeapathList-dtl-item:nth-of-type(2) {
  margin-bottom: 1.8em;
}

.careeapathList-item-pictogram {
  left: 50%;
  overflow: hidden;
  position: absolute;
  top: 0;
  transform: translate(-50%, -100%);
  width: 100%;
  z-index: 1;
}

.careeapathList-item-pictogram-fukidashi {
  align-items: center;
  background: no-repeat 0 0 / contain;
  color: #0ca692;
  display: flex;
  font-size: 1.4rem;
  height: 87px;
  padding: .2rem 0 1.6rem;
  transform: scale(1);
  transform-origin: 50% 100%;
  transition: transform .3s ease-in;
  width: 230px;
}

.careeapathList-item:nth-of-type(1) .careeapathList-item-pictogram-fukidashi {
  background-image: url(../img/img_careerpath_pictogram-01_fukidashi_pc.svg);
  transition-delay: .3s;
}

.careeapathList-item:nth-of-type(2) .careeapathList-item-pictogram-fukidashi {
  background-image: url(../img/img_careerpath_pictogram-02_fukidashi_pc.svg);
  transition-delay: .5s;
}

.careeapathList-item:nth-of-type(3) .careeapathList-item-pictogram-fukidashi {
  background-image: url(../img/img_careerpath_pictogram-03_fukidashi_pc.svg);
  transition-delay: .7s;
}

.careeapathList-item:nth-of-type(4) .careeapathList-item-pictogram-fukidashi {
  background-image: url(../img/img_careerpath_pictogram-04_fukidashi_pc.svg);
  transition-delay: .9s;
}

.careeapathList-item:nth-of-type(5) .careeapathList-item-pictogram-fukidashi {
  background-image: url(../img/img_careerpath_pictogram-05_fukidashi_pc.svg);
  transition-delay: 1.1s;
}

.hidden .careeapathList-item-pictogram-fukidashi {
  transform: scale(0);
}

.careeapathList-item-pictogram-fukidashi-txt {
  font-weight: 700;
  letter-spacing: -.05em;
  margin: 0 auto;
  width: 95%;
}

.careeapathList-item-pictogram img {
  display: block;
  margin: 0 auto;
  transform: rotate(0);
  transform-origin: 0 100%;
  transition: transform .4s ease-in-out;
}

.careeapathList-item:nth-of-type(1) .careeapathList-item-hdr,
.careeapathList-item:nth-of-type(1) .careeapathList-item-pictogram img {
  transition-delay: 0s;
}

.careeapathList-item:nth-of-type(2) .careeapathList-item-hdr,
.careeapathList-item:nth-of-type(2) .careeapathList-item-pictogram img {
  transition-delay: .2s;
}

.careeapathList-item:nth-of-type(3) .careeapathList-item-hdr,
.careeapathList-item:nth-of-type(3) .careeapathList-item-pictogram img {
  transition-delay: .4s;
}

.careeapathList-item:nth-of-type(4) .careeapathList-item-hdr,
.careeapathList-item:nth-of-type(4) .careeapathList-item-pictogram img {
  transition-delay: .6s;
}

.careeapathList-item:nth-of-type(5) .careeapathList-item-hdr,
.careeapathList-item:nth-of-type(5) .careeapathList-item-pictogram img {
  transition-delay: .8s;
}

.hidden .careeapathList-item-pictogram img {
  transform: rotate(90deg);
}

.careeapath-border {
  display: block;
  /*margin: 2rem auto 0;*/
  margin: 0 auto 0;
  width: 1200px;
}

.careeapath-border.hidden {
  clip-path: polygon(50% 0, 50% 0, 50% 13.47%, 50% 13.47%);
}

.careeapath-border:not(.hidden) {
  animation: careeapath-border 1s forwards ease-in;
}

@keyframes careeapath-border {
  0% {
    clip-path: polygon(50% 0, 50% 0, 50% 13.47%, 50% 13.47%);
  }

  40%,
  70% {
    clip-path: polygon(0 0, 100% 0, 100% 13.47%, 0 13.47%);
  }

  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.careerpath-categoryHdr {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 1200px;
}

.item-training {
  --item-col: #009fa3;
}

.item-development {
  --item-col: #3b3b93;
}

.item-disseminate {
  --item-col: #d33f5e;
}

.careerpath-categoryHdr-item {
  background-color: var(--item-col);
  border-radius: 2rem 2rem 0 0;
  color: #fff;
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
  width: 390px;
}

.careerpath-employees {
  background-color: #e0e0e0;
  border-radius: 0 0 2rem 2rem;
  display: grid;
  gap: 50px 10px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  padding: 60px 10px;
  width: 1200px;
}

.careerpath-employeeHdr {
  align-items: center;
  background-color: var(--item-col);
  border-radius: 1rem 1rem 0 0;
  color: #fff;
  display: flex;
  font-size: 2rem;
  font-weight: 700;
  height: 5rem;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.careerpath-employee-content {
  background-color: #fff;
  align-items: center;
  border-radius: 0 0 1rem 1rem;
  display: flex;
  flex-wrap: wrap;
  padding: 1rem;
}

.careerpath-employeePhoto img {
  border-radius: 1rem;
}

.careerpath-employeeCareer {
  line-height: 1.2;
  margin-left: .8rem;
}

.careerpath-employeeCareer-item {
  position: relative;
}

.careerpath-employeeCareer-item:not(:last-of-type) {
  padding-bottom: 1rem;
}

.careerpath-employeeCareer-item:not(:last-of-type)::before {
  border-left: 3px dotted var(--item-col);
  content: "";
  display: block;
  font-size: 1.6rem;
  height: 100%;
  left: .5em;
  position: absolute;
  transform: translateX(-50%);
  top: .5em;
}

.careerpath-employeeCareer-hdr {
  color: var(--item-col);
  font-size: 1.6rem;
}

.careerpath-employeeCareer-hdr::before {
  content: "●";
}

.careerpath-employeeCareer-txt {
  font-size: 1.6rem;
  letter-spacing: -.01em;
  margin-left: 1em;
}

/* ↓ .careerpath-employeeが4個の場合 ↓ */
.fourItems .careerpath-employeeCareer-item:not(:last-of-type) {
  padding-bottom: 0;
}

.fourItems .careerpath-employeeCareer-hdr {
  font-size: 1.5rem;
}

.fourItems .careerpath-employeeCareer-txt {
  font-size: 1.4rem;
}