.powerPage {
  padding: clamp(40px, 6vw, 88px) 0 clamp(40px, 6vw, 88px);
}
.powerPage_inner {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}
.powerHero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.powerHero_title {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.02em;
}
.powerHero_titleRed {
  color: #d60000;
}
.powerHero_lead {
  margin-top: clamp(28px, 4vw, 54px);
}
.powerHero_lead p {
  margin: 0;
  font-size: clamp(0.8rem, 1.5vw, 1.2rem);
  font-weight: 500;
  line-height: 2;
}
.powerHero_lead p + p {
  margin-top: 6px;
}
.powerHero_logo {
  display: flex;
  justify-content: center;
}
.powerHero_logo img {
  width: min(100%, 190px);
  height: auto;
}

.powerCardList {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 34px);
  margin: clamp(54px, 7vw, 110px) 0 0;
  padding: 0;
  list-style: none;
}
.powerCard {
  position: relative;
  min-height: clamp(250px, 23vw, 330px);
}
.powerCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #e0e8e4;
  -webkit-mask-image: url("/wp-content/uploads/2026/03/seed-shape.svg");
  mask-image: url("/wp-content/uploads/2026/03/seed-shape.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.powerCard_inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}
.powerCard_title {
  margin: 10px 0 0 0;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.powerCard_titleRed,
.powerCard_titleGreen {
  display: inline;
  font-size: clamp(2.4rem, 3vw, 4.4rem);
}
.powerCard_titleRed {
  color: #d60000;
}
.powerCard_titleGreen {
  color: #3f6f58;
}
.powerCard_desc {
  margin: clamp(14px, 0.2vw, 18px) 0 0;
  color: var(--color-green-main);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  font-weight: 500;
  line-height: 1.8;
}

.powerAnchorNav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 250px));
  justify-content: start;
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(44px, 6vw, 76px);
}
.powerAnchorNav_item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 16px 70px 16px 28px;
  border: 3px solid #3f6f58;
  border-radius: 999px;
  background: #fff;
  color: #3f6f58;
  text-align: center;
  text-decoration: none;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 800;
  line-height: 1.4;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.powerAnchorNav_item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 31px;
  width: 3px;
  height: 20px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-42%);
}
.powerAnchorNav_item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 17px;
  height: 17px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translateY(-22%) rotate(45deg);
}
.powerAnchorNav_item:hover {
  background: #3f6f58;
  color: #fff;
  transform: translateY(-3px);
}

#after-join-flow,
#training-system,
#career-up {
  scroll-margin-top: 120px;
}

@media screen and (max-width: 1100px) {
  .powerCardList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .powerPage_inner {
    width: min(100% - 22px, 1280px);
  }
  .powerHero {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .powerHero_logo {
    justify-content: center;
  }
  .powerHero_logo img {
    width: 140px;
  }
  .powerHero_title {
    font-size: clamp(1.7rem, 8vw, 2rem);
    line-height: 1.5;
  }
  .powerHero_lead {
    margin-top: 24px;
  }
  .powerHero_lead p {
    font-size: 0.98rem;
  }
  .powerCardList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    margin-top: 42px;
  }
  .powerCard {
    min-height: 160px;
  }
  .powerCard_inner {
    padding: 20px 16px;
  }
  .powerCard_titleRed,
  .powerCard_titleGreen {
    font-size: clamp(1.9rem, 7vw, 2.8rem);
  }
  .powerCard_desc {
    margin-top: 8px;
    font-size: 0.82rem;
    line-height: 1.7;
  }
  .powerAnchorNav {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 34px;
  }
  .powerAnchorNav_item {
    min-height: 62px;
    padding: 14px 56px 14px 24px;
    font-size: 1rem;
  }
  #after-join-flow,
  #training-system,
  #career-up {
    scroll-margin-top: 80px;
  }
}

.factorySlide {
  --slide-gap: clamp(16px, 2vw, 28px);
  width: 100%;
  overflow: hidden;
}
.factorySlide_track {
  display: flex;
  gap: var(--slide-gap);
  width: max-content;
  animation: factorySlideLoop 55s linear infinite;
background: #fff;
  padding: 50px 0;
}
.factorySlide_list {
  display: flex;
  gap: var(--slide-gap);
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.factorySlide_list li {
  flex: 0 0 auto;
  width: clamp(140px, 15vw, 250px);
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
}
.factorySlide_list img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes factorySlideLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - var(--slide-gap) / 2));
  }
}
@media screen and (max-width: 767px) {
  .factorySlide {
    --slide-gap: 14px;
  }
  .factorySlide_track {
    animation-duration: 42s;
  }
  .factorySlide_list li {
    width: clamp(120px, 38vw, 170px);
  }
}

.afterFlow {
  padding: clamp(56px, 8vw, 80px) 0;
  background: #E0E8E4;
  margin: 0 auto 50px;
}
.afterFlow_inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.afterFlow_heading {
  position: relative;
  margin: 0 0 clamp(36px, 5vw, 70px);
  padding-left: 42px;
  color: #3f6f58;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.4;
}
.afterFlow_heading::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 26px;
  height: 18px;
  background: #3f6f58;
  border-radius: 90% 0 90% 0;
  transform: rotate(18deg);
}
.afterFlow_list {
  display: grid;
  gap: clamp(34px, 50vw, 84px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.afterFlow_item {
  position: relative;
  display: grid;
  grid-template-columns: 290px 1fr;
  align-items: stretch;
  border: 2px solid currentColor;
  border-radius: 100px;
}
.afterFlow_item:not(:last-child)::before,
.afterFlow_item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 145px;
  width: 0;
  height: 0;
  transform: translateX(-50%);
}
.afterFlow_item:not(:last-child)::before {
  bottom: -36px;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid #fff;
}
.afterFlow_item:not(:last-child)::after {
  bottom: -64px;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid #3f6f58;
}
.afterFlow_item.is-beige::after,
.afterFlow_item.is-beige::before {
  display: none;
}
.afterFlow_period {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 999px;
  color: #fff;
  font-size: clamp(1.2rem, 1.3vw, 1.8rem);
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}
.afterFlow_content {
  display: flex;
  align-items: center;
  margin-left: -58px;
  padding: 22px 48px 22px 110px;
  border-radius: 0 999px 999px 0;
  background: #fff;
}
.afterFlow_main {
  color: #3f6f58;
}
.afterFlow_title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  color: currentColor;
  font-size: clamp(1.35rem, 1.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.5;
}
.afterFlow_text {
  margin: 18px 0 0;
  color: #4e2c01;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 500;
  line-height: 1.7;
}
.afterFlow_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  min-width: 34px;
  color: currentColor;
  font-size: 1.3em;
  line-height: 1;
}
.afterFlow_icon img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.afterFlow_item.is-green {
  color: #3f6f58;
}
.afterFlow_item.is-green .afterFlow_period {
  background: #3f6f58;
}
.afterFlow_item.is-green .afterFlow_content {
  color: #3f6f58;
}
.afterFlow_item.is-beige {
  color: #ded0bf;
}
.afterFlow_item.is-beige .afterFlow_period {
  background: #ded0bf;
  color: #4e2c01;
}
.afterFlow_item.is-beige .afterFlow_content {
  color: #ded0bf;
}
.afterFlow_item.is-beige .afterFlow_main,
.afterFlow_item.is-beige .afterFlow_title,
.afterFlow_item.is-beige .afterFlow_icon {
  color: #4e2c01;
}
.afterFlow_item.is-beige:not(:last-child)::after {
  border-top-color: #ded0bf;
}
@media screen and (min-width:961px) {
.afterFlow_list {
  padding: 0 200px 0 0;
  position: relative;
}
.afterFlow_list::before {
  content: "";
  background: url(/wp-content/uploads/2026/05/img_appledown.webp) no-repeat;
  width: 150px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-size: contain;
}
}
@media screen and (max-width: 960px) {
  .afterFlow_item {
    grid-template-columns: 220px 1fr;
  }
  .afterFlow_item:not(:last-child)::before,
  .afterFlow_item:not(:last-child)::after {
    left: 110px;
  }
  .afterFlow_period {
    min-height: 120px;
  }
  .afterFlow_content {
    min-height: 120px;
    margin-left: -44px;
    padding: 20px 36px 20px 88px;
  }
}
@media screen and (max-width: 767px) {
  .afterFlow_inner {
    width: min(100% - 32px, 1180px);
  }
  .afterFlow_heading {
    margin-bottom: 34px;
    padding-left: 32px;
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .afterFlow_heading::before {
    width: 20px;
    height: 14px;
  }
  .afterFlow_list {
    gap: 38px;
  }
  .afterFlow_item {
    display: block;
    border: unset;
  }
  .afterFlow_item:not(:last-child)::before,
  .afterFlow_item:not(:last-child)::after {
    left: 50%;
  }
  .afterFlow_item:not(:last-child)::before {
    bottom: -20px;
    border-left-width: 13px;
    border-right-width: 13px;
    border-top-width: 13px;
  }
  .afterFlow_item:not(:last-child)::after {
    bottom: -38px;
    border-left-width: 13px;
    border-right-width: 13px;
    border-top-width: 13px;
  }
  .afterFlow_period {
    width: min(100%, 260px);
    min-height: 52px;
    margin: 0 auto;
    padding: 16px 24px;
    font-size: 1.2rem;
  }
  .afterFlow_content {
    min-height: auto;
    margin: -20px 0 0;
    padding: 42px 22px 24px;
    border: 3px solid currentColor;
    border-radius: 28px;
    display: block;
  }
  .afterFlow_title {
    justify-content: center;
    gap: 12px;
    font-size: clamp(1.15rem, 5vw, 1.45rem);
    text-align: center;
  }
  .afterFlow_text {
    margin-top: 14px;
    font-size: 0.98rem;
    text-align: center;
  }
  .afterFlow_icon {
    width: 28px;
    min-width: 28px;
  }
  .afterFlow_icon img {
    width: 28px;
    height: 28px;
  }
}

.trainingSystem {
  padding: clamp(56px, 8vw, 60px) 0;
  margin: 0 auto 80px;
}
.trainingSystem_inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.trainingSystem_heading {
  position: relative;
  margin: 0 0 clamp(36px, 5vw, 70px);
  padding-left: 34px;
  color: #3f6f58;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.4;
}
.trainingSystem_heading::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 20px;
  height: 14px;
  background: #3f6f58;
  border-radius: 90% 0 90% 0;
  transform: rotate(18deg);
}

/* 常時表示 */
.trainingBase {
  border: 3px solid #3f6f58;
  border-radius: 8px;
  overflow: hidden;
  background: #3f6f58;
  max-width: 960px;
  margin: 0 auto 80px;
}
.trainingBase_head {
  padding: 18px 24px;
  background: #3f6f58;
  text-align: center;
  position: relative;
}
.trainingBase_head::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  top: 10px;
  background: #fff;
}
.trainingBase_head::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 10px;
  background: #fff;
}
.trainingBase_title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 800;
  line-height: 1.5;
}
.trainingBase_intro {
  margin: 0 16px 16px;
  padding: 22px 26px;
  border-radius: 6px;
  background: #f5f5f3;
}
.trainingBase_intro p {
  margin: 0;
  font-weight: 500;
  line-height: 2;
}
.trainingBase_body {
  padding: 40px 74px 28px;
  background: #fff;
  border-radius: 0 0 4px 4px;
}
.trainingBase_item + .trainingBase_item {
  margin-top: 26px;
}
.trainingBase_month {
  color: #5b8a72;
  font-weight: 700;
  line-height: 1.5;
}
.trainingBase_itemTitle {
  margin: 0;
  color: #3f6f58;
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  font-weight: 800;
  line-height: 1.5;
}
.trainingBase_text {
  margin: 10px 0 0;
  color: #4e2c01;
  font-weight: 500;
  line-height: 2;
}
.trainingBase_photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 0 25px;
}
.trainingBase_photos img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* 下4つ */
.trainingGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px 22px;
  margin-top: 34px;
}
.trainingCard {
  border: 3px solid currentColor;
  border-radius: 8px;
  background: #fff;
  color: #3f6f58;
}
.trainingCard--red {
  color: #d60000;
background: #d60000;
}
.trainingCard--green {
  color: #3f6f58;
background: #3f6f58;
}
.trainingCard_head {
  padding: 16px 22px;
  background: currentColor;
  text-align: center;
  position: relative;
}
.trainingCard_head::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  top: 10px;
  background: #fff;
}
.trainingCard_head::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 10px;
  background: #fff;
}
.trainingCard_title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.15rem, 1.3vw, 1.5rem);
  font-weight: 600;
  line-height: 1.5;
}
.trainingCard_intro {
  margin: 0 12px -40px;
  padding: 18px 20px 25px;
  border-radius: 6px;
  background: #f5f5f3;
}
.trainingCard_intro p {
  margin: 0;
  color: #4e2c01;
  font-weight: 500;
  line-height: 2;
}
.trainingCard_toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: -8px auto 0;
  border: none;
  border-radius: 50%;
  background: currentColor;
  cursor: pointer;
  z-index: 2;
  bottom: -20px;
  border: solid 2px #fff;
}
.trainingCard_toggle span,
.trainingCard_toggle span::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
}
.trainingCard_toggle span::before {
  transform: rotate(90deg);
  right: 0;
  height: 3.5px;
}
.trainingCard.is-open .trainingCard_toggle span::before {
  opacity: 0;
}
.trainingCard_body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  background: #fff;
  border-radius: 0 0 4px 4px;
}
.trainingCard.is-open .trainingCard_body {
  grid-template-rows: 1fr;
}
.trainingCard_content {
  min-height: 0;
  overflow: hidden;
  padding: 0 22px;
  gap: 10px;
  display: grid;
}
.trainingCard.is-open .trainingCard_content {
  padding: 58px 22px 44px;
}
.trainingCard_block + .trainingCard_block {
  margin-top: 22px;
}
.trainingCard_block h4 {
  margin: 0;
  color: #3f6f58;
  font-size: clamp(1.1rem, 1.6vw, 1.55rem);
  font-weight: 800;
  line-height: 1.5;
}
.trainingCard--red .trainingCard_block h4,
.trainingCard--red .trainingCard_note p:first-child {
  color: #3f6f58;
}
.trainingCard_block p {
  margin: 10px 0 0;
  font-weight: 500;
  line-height: 2;
  color: var(--color-brown);
}
.trainingCard_image {
  max-width: 450px;
  margin: 14px auto;
}
.trainingCard_image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.trainingCard_note {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 6px;
  background: #f5f5f3;
}
.trainingCard_note p {
  margin: 0;
  font-weight: 500;
  line-height: 1.9;
  text-align: center;
  color: var(--color-brown);
}
.trainingCard_note p.green_col {
  color: var(--color-green-sub);
}
.trainingCard_note p + p {
  margin-top: 8px;
}
.trainingGrid {
  align-items: start;
}
.trainingCard {
  align-self: start;
  cursor: pointer;
}

/* SP */
@media screen and (max-width: 767px) {
  .trainingSystem_inner {
    width: min(100% - 32px, 1180px);
  }
  .trainingSystem_heading {
    margin-bottom: 30px;
    padding-left: 28px;
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .trainingSystem_heading::before {
    width: 18px;
    height: 12px;
  }
  .trainingBase_intro {
    margin: 12px;
    padding: 18px 16px;
  }
  .trainingBase_body {
    padding: 30px 16px 22px;
  }
  .trainingBase_photos {
    gap: 14px;
  }
  .trainingGrid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
  }
  .trainingCard_intro {
    padding: 16px 14px;
  }
  .trainingCard_content {
    padding: 0 16px;
  }
  .trainingCard.is-open .trainingCard_content {
    padding: 46px 16px 30px;
  }
.trainingCard {
  margin: 10px 0 15px;
}
}

.careerUp {
  padding: clamp(56px, 8vw, 80px) 0;
  background: #fff;
  max-width: calc(100% - 5%);
  margin: 0 auto 100px;
  border-radius: 8px;
}
.careerUp_inner {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}
.careerUp_heading {
  position: relative;
  margin: 0 0 clamp(32px, 5vw, 64px);
  padding-left: 40px;
  color: #3f6f58;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.4;
}
.careerUp_heading::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 24px;
  height: 16px;
  background: #3f6f58;
  border-radius: 90% 0 90% 0;
  transform: rotate(18deg);
}
.careerUp_lead {
  margin: 0 0 clamp(80px, 10vw, 150px);
  line-height: 2;
}
.careerStepList {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
}
.careerStep {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: var(--step-height);
  padding: clamp(48px, 5vw, 72px) clamp(18px, 2vw, 34px) clamp(28px, 3vw, 42px);
  background: var(--step-color);
  border-radius: 999px 999px 0 0;
  text-align: center;
opacity: 0.9;
}
.careerStep--01 {
  --step-height: 260px;
  --step-color: #b8dac8;
}
.careerStep--02 {
  --step-height: 360px;
  --step-color: #89b29b;
}
.careerStep--03 {
  --step-height: 460px;
  --step-color: #70aa77;
}
.careerStep--04 {
  --step-height: 560px;
  --step-color: #3f9d6f;
}
.careerStep--05 {
  --step-height: 660px;
  --step-color: #1f7f4e;
}
.careerStep_growth {
  position: absolute;
  left: 50%;
  bottom: calc(100% - 28px);
  width:clamp(106px, 18vw, 126px);
  height: auto;
  object-fit: contain;
  transform: translateX(-50%) translateY(28px) scaleY(0.78) scaleX(0.96);
  transform-origin: center bottom;
  opacity: 0;
}
.careerStep_growth.is-show {
  animation: careerGrowthIn 1.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.careerStep--01 .careerStep_growth.is-show {
  animation-delay: 0.1s;
}
.careerStep--02 .careerStep_growth.is-show {
  animation-delay: 0.35s;
}
.careerStep--03 .careerStep_growth.is-show {
  animation-delay: 0.6s;
}
.careerStep--04 .careerStep_growth.is-show {
  animation-delay: 0.85s;
}
.careerStep--05 .careerStep_growth.is-show {
  animation-delay: 1.1s;
}
@keyframes careerGrowthIn {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(34px) scaleY(0.72) scaleX(1.02);
  }
  55% {
    opacity: 1;
    transform: translateX(-50%) translateY(-8px) scaleY(1.08) scaleX(0.98);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scaleY(1) scaleX(1);
  }
}
.careerStep_label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(130px, 20vw, 200px);
  min-height: clamp(56px, 10vw, 78px);
  padding: 10px 20px;
  border-radius: 999px;
  background: #fff;
  color: #3f6f58;
  font-size: clamp(1.25rem, 1.6vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  -webkit-mask: url('/wp-content/uploads/2026/03/shape.svg') no-repeat center / contain;
  mask: url('/wp-content/uploads/2026/03/shape.svg') no-repeat center / contain;
}
.careerStep_text {
  margin: clamp(20px, 3vw, 36px) 0 0;
  color: #fff;
  font-size: clamp(1.35rem, 1.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.35;
}
.careerStep--01 .careerStep_text {
  color: #3f6f58;
}
.careerUp_message {
  width: min(480px, 48vw);
  margin: -130px 150px 0 auto;
  padding: 22px 40px;
  border-radius: 999px;
  background: #ded0bfe8;
  position: relative;
  z-index: 2;
}
.careerUp_message p {
  margin: 0;
  color: #4e2c01;
  font-weight: 800;
  line-height: 1.7;
}
.careerUp_note {
  margin: clamp(28px, 4vw, 48px) 0 0;

  font-weight: 400;
  line-height: 1.8;
text-align: right;
}
.careerUp_bottomText {
  margin: clamp(48px, 7vw, 88px) 0 0;
  color: #4e2c01;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.7;
  text-align: center;
}
.careerUp_bottomText .col_txt {
  color: #3f6f58;
}
@media screen and (max-width: 960px) {
  .careerStepList {
    display: grid;
    grid-template-columns: 1fr;
    gap: 52px;
    overflow: visible;
    padding-top: 40px;
  }
  .careerStep {
    display: grid;
    grid-template-columns: 122px 1fr;
    align-items: center;
    min-height: auto;
    padding: 28px 24px;
    border-radius: 32px;
    text-align: left;
  }
  .careerStep--01,
  .careerStep--02,
  .careerStep--03,
  .careerStep--04,
  .careerStep--05 {
    --step-height: auto;
  }
  .careerStep_growth {
    position: absolute;
    top: -36px;
    left: 46px;
    bottom: auto;
    width: 64px;
    transform: translateX(-50%) translateY(24px) scaleY(0.78) scaleX(0.96);
  }
  .careerStep_label {
    grid-column: 1;
    grid-row: 1 / span 2;
    min-width: 74px;
    min-height: 74px;
    padding: 10px;
    border-radius: 50%;
    font-size: 1rem;
    text-align: center;
  }
  .careerStep_text {
    grid-column: 2;
    margin: 0;
    padding-left: 18px;
    font-size: clamp(1.25rem, 5vw, 1.65rem);
    line-height: 1.45;
  }
  .careerUp_message {
    width: 100%;
    margin: 28px 0 0;
  }
.careerUp_lead {
  margin: 0 0 clamp(40px, 10vw, 80px);
}
}
@media screen and (max-width: 767px) {
  .careerStepList {
    gap: 54px;
    padding-top: 44px;
  }
  .careerStep {
    grid-template-columns: 112px 1fr;
    padding: 16px 20px;
    border-radius: 100px;
  }
 .careerStep_growth {
    top: -54px;
    left: 61px;
    width: 68px;
  }
  .careerStep_label {
    min-width: 66px;
    min-height: 66px;
    font-size: 0.95rem;
    line-height: 1.2;
  }
  .careerStep_text {
    padding-left: 14px;
    font-size: clamp(1.15rem, 5.4vw, 1.5rem);
  }
  .careerUp_note {
    text-align: left;
  }
  .careerUp_bottomText {
    text-align: left;
  }
}