@charset "UTF-8";
/* ===== キャリアを知る_PC (Figma 378:1885) ===== */
/* ── Animations (from home.css) ── */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.2s;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.9s ease;
}

.fade-in.is-visible {
  opacity: 1;
}

@keyframes moving1 {
  0%, 100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
}
@keyframes moving2 {
  0%, 100% {
    transform: translateX(-6px);
  }
  50% {
    transform: translateX(6px);
  }
}
@keyframes moving3 {
  0%, 100% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.06);
  }
  65% {
    transform: scale(0.97);
  }
}
@keyframes moving4 {
  0% {
    transform: translate(4px, 0);
  }
  12.5% {
    transform: translate(2.8px, 2.8px);
  }
  25% {
    transform: translate(0, 4px);
  }
  37.5% {
    transform: translate(-2.8px, 2.8px);
  }
  50% {
    transform: translate(-4px, 0);
  }
  62.5% {
    transform: translate(-2.8px, -2.8px);
  }
  75% {
    transform: translate(0, -4px);
  }
  87.5% {
    transform: translate(2.8px, -2.8px);
  }
  100% {
    transform: translate(4px, 0);
  }
}
.moving-1 {
  animation: moving1 4s ease-in-out infinite;
  transform-origin: center center;
}

.moving-2 {
  animation: moving2 3.5s ease-in-out infinite;
}

.moving-3 {
  animation: moving3 2.5s ease-in-out infinite;
  transform-origin: center center;
}

.moving-4 {
  animation: moving4 6s linear infinite;
}

/* ── Ashirai (Decorative Elements) ── */
.ashirai-layer {
  position: absolute;
  width: var(--container-max);
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  pointer-events: none;
  z-index: var(--z-deco-back);
}

.ashirai {
  position: absolute;
  pointer-events: none;
  max-width: none;
  width: 100%;
}

@media screen and ( max-width: 767px ) {
  .ashirai-layer {
    width: 100vw;
  }
}
/* Ashirai positions (adjusted for aboutus page if needed, currently copying from home sec-planet) */
.ashirai-01 {
  left: 174px;
  top: -58px;
  width: 70px;
}

.ashirai-02 {
  right: 542px;
  top: -223px;
  width: 279px;
}

.ashirai-03 {
  left: -115px;
  top: 176px;
  width: 262px;
}

.ashirai-04 {
  left: 45px;
  top: 327px;
  width: 71px;
}

.ashirai-05 {
  right: 202px;
  top: 436px;
  width: 272px;
}

.ashirai-06 {
  right: 23px;
  top: 126px;
  width: 140px;
}

.ashirai-07 {
  right: -57px;
  top: 311px;
  width: 57px;
}

.ashirai-08 {
  right: 16px;
  top: 612px;
  width: 63px;
}

@media screen and ( max-width: 767px ) {
  .ashirai-sp-01 {
    left: 0;
    top: 0;
    width: 12.3vw;
  }
  .ashirai-sp-02 {
    right: 0;
    top: 26.7vw;
    width: 26.7vw;
  }
  .ashirai-sp-03 {
    left: 0;
    top: 108.5vw;
    width: 20vw;
  }
  .ashirai-sp-04 {
    right: 0;
    top: 173.9vw;
    width: 18.1vw;
  }
  .ashirai-sp-05 {
    left: 6.4vw;
    top: 236.3vw;
    width: 14.1vw;
  }
}
.ashirai-09 {
  left: 97px;
  top: -154px;
  width: 65px;
}

.ashirai-10 {
  left: 46px;
  top: 183px;
  width: 88px;
}

.ashirai-11 {
  left: 37px;
  top: 353px;
  width: 53px;
}

.ashirai-12 {
  left: 281px;
  top: 490px;
  width: 140px;
}

.ashirai-13 {
  right: 14px;
  top: 23px;
  width: 167px;
}

.ashirai-14 {
  right: -57px;
  top: 419px;
  width: 71px;
}

.ashirai-15 {
  right: 65px;
  top: 531px;
  width: 40px;
}

.ashirai-16 {
  right: 62px;
  top: 637px;
  width: 279px;
}

.ashirai-17 {
  left: 44px;
  top: 816px;
  width: 87px;
}

.ashirai-18 {
  left: -282px;
  top: 1015px;
  width: 429px;
}

.ashirai-19 {
  left: 142px;
  top: 1371px;
  width: 89px;
}

.ashirai-20 {
  left: 310px;
  top: 1000px;
  width: 410px;
}

.ashirai-21 {
  right: 27px;
  top: 927px;
  width: 117px;
}

.ashirai-22 {
  right: 0;
  top: 1178px;
  width: 140px;
}

/* ── Hide on PC ── */
@media (min-width: 768px) {
  .pc-none {
    display: none;
  }
}
/* ── Hide on mobile ── */
@media screen and ( max-width: 767px ) {
  .sp-none {
    display: none;
  }
}
/* ── Page Hero (ph) ── */
.ph {
  background-image: url("../images/training/hero-bg.png"), url("/planet/images/common/hero-bg-circle.png");
}

@media screen and ( max-width: 767px ) {
  .ph {
    background-image: url("../images/training/hero-bg-sp.png");
  }
  .ph__title {
    padding-left: 9.6vw;
  }
}
/* ── Intro + Venn diagram (ci) ── */
.ci {
  padding: 80px 0 60px;
  overflow: visible;
  z-index: 9;
}

.ci__inner {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
}

.ci__text {
  max-width: 572px;
}

.ci__heading {
  font-family: var(--ff-body);
  font-size: 33px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--c-text);
  margin: 0 0 40px;
}

.ci__body {
  font-family: var(--ff-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 2;
  color: var(--c-text);
  margin: 0;
  max-width: 460px;
}

/* Venn diagram */
.ci__diagram {
  position: absolute;
  top: 20px;
  right: -36px;
}

.ci__venn {
  position: relative;
  width: 560px;
  height: 446px;
}

.ci__venn-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 10%);
  font-family: var(--ff-heading);
  font-size: 34px;
  font-weight: 800;
  color: var(--c-white);
  z-index: 5;
  text-align: center;
}

.ci__venn-circle {
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: #FBB03B;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ci__venn-circle--top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.ci__venn-circle--left {
  bottom: 0;
  left: 0;
}

.ci__venn-circle--right {
  bottom: 0;
  right: 0;
}

.ci__venn-label-s {
  font-family: var(--ff-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.4;
  letter-spacing: -0.1em;
}

.ci__venn-label {
  font-family: var(--ff-heading);
  font-size: 28px;
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.4;
  margin-bottom: 4px;
}

.ci__venn-sub {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-white);
  line-height: 1.4;
  letter-spacing: -0.06em;
}

/* Large background circle behind the 3 circles */
.ci__venn::before {
  content: "";
  position: absolute;
  width: 339px;
  height: 339px;
  border-radius: 50%;
  border: 18px solid #FF5795;
  background: #FFB6D1;
  top: 85px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

@media screen and ( max-width: 767px ) {
  .ci {
    padding: 10.7vw 0 13.3vw;
  }
  .ci__inner {
    padding: 0 6.4vw;
  }
  .ci__text {
    max-width: inherit;
  }
  .ci__heading {
    font-size: 6.4vw;
    margin: 0 0 8vw;
  }
  .ci__body {
    font-size: 4.3vw;
    line-height: 1.8;
    max-width: inherit;
  }
  /* Venn diagram */
  .ci__diagram {
    position: static;
    margin-top: 1.3vw;
  }
  .ci__venn {
    width: 87.2vw;
    height: 83.5vw;
  }
  .ci__venn-center {
    top: 40vw;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6.4vw;
  }
  .ci__venn-circle {
    width: 36vw;
    height: 36vw;
  }
  .ci__venn-label-s {
    font-size: 3.5vw;
  }
  .ci__venn-label {
    font-size: 4.8vw;
    margin-bottom: 1.6vw;
  }
  .ci__venn-sub {
    font-size: 2.9vw;
  }
  /* Large background circle behind the 3 circles */
  .ci__venn::before {
    width: 52.8vw;
    height: 52.8vw;
    border-width: 3.7vw;
    top: 16.5vw;
  }
}
/* ── 人材の育成 (ct) ── */
.ct {
  padding: 0 0;
  overflow: visible;
}

.ct__inner {
  margin: 120px 0 0;
  padding: 0 0 128px;
  background: var(--c-bg);
  position: relative;
}
.ct__inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 120px;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNDQwIiBoZWlnaHQ9IjIxMCIgdmlld0JveD0iMCAwIDE0NDAgMjEwIiBmaWxsPSJub25lIj48cGF0aCBkPSJNMTQ0MCAyMTBIMEwyLjc0NjY3ZS0xMCA3OC4wMTczQzE4OS4zMiAzNi41MDczIDQzMS4zMyAwLjU5NzI5NiA3MTMgMC4wMDcyOTYzM0MxMDAwLjk1IC0wLjU5MjcwNCAxMjQ3LjkxIDM1Ljg5NzMgMTQ0MCA3OC4wMDczVjIxMFoiIGZpbGw9IiNGRkZGRUYiLz48L3N2Zz4=") no-repeat center top;
  background-size: cover;
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
}

.ct__title-block {
  text-align: center;
  margin-bottom: 60px;
}

.ct__title {
  font-family: var(--ff-body);
  font-size: 40px;
  font-weight: 500;
  color: var(--c-text);
  margin: 0;
}

/* Stage row */
.ct__stage {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.ct__badge {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #F5E889;
  color: var(--c-text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  position: absolute;
  left: 58px;
  top: -55px;
}

.ct__badge-text {
  font-family: var(--ff-body);
  font-size: 30px;
  font-weight: 500;
  color: var(--c-text);
  text-align: center;
  line-height: 1.4;
}

.ct__card-deco {
  width: 66px;
  height: 57px;
  position: absolute;
  top: -57px;
  right: 180px;
}

/* Card */
.ct__card {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(48, 48, 48, 0.3);
}

.ct__card-header {
  background: var(--c-title);
  padding: 20px 0;
  text-align: center;
}

.ct__card-header-text {
  font-family: var(--ff-body);
  font-size: 28px;
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: 0.2em;
}

/* 2-col body (入社1・2年) */
.ct__card-body--2col {
  display: flex;
  padding: 60px 98px;
  gap: 0;
}

.ct__col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ct__col-label {
  display: inline-block;
  background: var(--c-title);
  color: var(--c-white);
  font-family: var(--ff-body);
  font-size: 20px;
  font-weight: 500;
  padding: 6px 40px;
  border-radius: 18px;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.2;
  letter-spacing: 0.2em;
}

.ct__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 58px;
  padding: 0 16px;
}

.ct__list li {
  min-width: 50%;
  position: relative;
  padding-left: 22px;
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--c-text);
  letter-spacing: -0.02em;
}

.ct__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-text);
}

.ct__col-img {
  border-radius: 10px;
  overflow: hidden;
  margin-top: auto;
}

.ct__col-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ct__divider {
  width: 2px;
  background-image: radial-gradient(circle, rgba(48, 48, 48, 0.5) 1px, transparent 1px);
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 2px 6px;
  align-self: stretch;
  margin: 0 25px;
}

/* 3-col body (3年目以降) */
.ct__card-body--3col {
  display: flex;
  padding: 60px 100px;
  gap: 0;
}

.ct__col3 {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 12px;
  text-align: center;
}

.ct__col3-label {
  display: inline-block;
  background: var(--c-title);
  color: var(--c-white);
  font-family: var(--ff-body);
  font-size: 20px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 18px;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.ct__col3-desc {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--c-text);
  margin: 0 0 20px;
  text-align: left;
}

.ct__col3-step {
  background: var(--c-footer-bg);
  border-radius: 5px;
  padding: 12px 8px;
  margin-bottom: 16px;
}

.ct__col3-step p {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--c-text);
  margin: 0;
}

.ct__col3-img {
  border-radius: 10px;
  overflow: hidden;
  margin-top: auto;
}

.ct__col3-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Arrow between stages */
.ct__arrow {
  text-align: center;
  margin: 50px 0 45px;
}

.ct__arrow svg {
  display: inline-block;
}

@media screen and ( max-width: 767px ) {
  .ct__inner {
    margin: 15.7vw 0 0;
    padding: 4vw 6.4vw 26.7vw;
  }
  .ct__inner::before {
    width: 100vw;
    height: 15.7vw;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNzUiIGhlaWdodD0iNTkiIHZpZXdCb3g9IjAgMCAzNzUgNTkiIGZpbGw9Im5vbmUiPiA8cGF0aCBkPSJNNDg4IDU5TC0xMTIgNTguOTk5OUMtMzIuMzA0MSAyNy4zMjE4IDY3Ljc3OTIgMC42OTg0MjMgMTgzLjQxNyAwLjAxMzcxNzdDMzAzLjExMyAtMC43MDExOTIgNDA2LjQyMSAyNi41NzY3IDQ4OCA1OVoiIGZpbGw9IiNGRkZGRUYiLz48L3N2Zz4=");
    top: -15.7vw;
  }
  .ct__title-block {
    margin-bottom: 13.3vw;
  }
  .ct__title {
    font-size: 6.4vw;
  }
  /* Stage row */
  .ct__badge {
    width: 21.3vw;
    height: 21.3vw;
    left: 0;
    top: -12vw;
  }
  .ct__badge-text {
    font-size: 4.3vw;
  }
  .ct__card-deco {
    display: none;
  }
  /* Card */
  .ct__card {
    border-radius: 6.4vw;
  }
  .ct__card-header {
    padding: 5.3vw;
  }
  .ct__card-header-text {
    font-size: 5.6vw;
    letter-spacing: 0;
  }
  /* 2-col body (入社1・2年) */
  .ct__card-body--2col {
    flex-direction: column;
    padding: 10.7vw 5.3vw;
  }
  .ct__col:nth-of-type(n+2) {
    margin-top: 10.7vw;
  }
  .ct__col-label {
    font-size: 4.8vw;
    padding: 1.3vw 2.7vw;
    border-radius: 9.6vw;
    margin-bottom: 8vw;
  }
  .ct__list {
    flex-direction: column;
    margin: 0 0 8vw;
    padding: 0;
  }
  .ct__list li {
    min-width: auto;
    padding-left: 5.9vw;
    font-size: 4.3vw;
    letter-spacing: 0;
  }
  .ct__list li::before {
    top: 1.9vw;
    width: 3.7vw;
    height: 3.7vw;
  }
  .ct__col-img {
    border-radius: 2.7vw;
  }
  .ct__divider {
    display: none;
  }
  /* 3-col body (3年目以降) */
  .ct__card-body--3col {
    flex-direction: column;
    padding: 10.7vw 5.3vw;
  }
  .ct__col3 {
    padding: 0;
  }
  .ct__col3:nth-of-type(n+2) {
    margin-top: 10.7vw;
  }
  .ct__col3-label {
    font-size: 4.8vw;
    padding: 1.3vw 2.7vw;
    border-radius: 9.6vw;
    margin-bottom: 8vw;
  }
  .ct__col3-desc {
    font-size: 4.3vw;
    margin: 0 0 8vw;
  }
  .ct__col3-step {
    border-radius: 1.3vw;
    padding: 3.2vw 2.1vw;
    margin-bottom: 8vw;
  }
  .ct__col3-step p {
    font-size: 4.3vw;
  }
  .ct__col3-img {
    border-radius: 2.7vw;
  }
  /* Arrow between stages */
  .ct__arrow {
    margin: 10.7vw auto 12vw;
    width: 25.3vw;
    height: 8vw;
  }
  .ct__arrow svg {
    width: 100%;
    height: auto;
  }
}