/* LESS Document */
/*+++++++++++++++++++++++++++++++++++++++++++
  exampleArea
+++++++++++++++++++++++++++++++++++++++++++ */
.exampleArea {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 82px;
  padding: 0 85px;
  margin: 0 0 64px;
}
@media (width <= 1400px) {
  .exampleArea {
    padding: 0 10px;
  }
}
@media (width <= 1023px) {
  .exampleArea {
    gap: 50px;
  }
}
@media (width <= 767px) {
  .exampleArea {
    flex-direction: column;
  }
}
.exampleArea_person {
  width: 350px;
  text-align: center;
}
@media (width <= 1023px) {
  .exampleArea_person {
    width: 280px;
    align-self: center;
  }
}
.exampleArea_person_name {
  margin: 0 0 20px;
  font-size: 12.8rem;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  line-height: 1.2;
  color: #1F296A;
}
@media (width <= 767px) {
  .exampleArea_person_name {
    font-size: 12vw;
  }
}
.exampleArea_person_name::after {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  margin: 0 auto;
  background: #AF1C40;
}
.exampleArea_person_age {
  font-size: 2.4rem;
  font-weight: bold;
}
@media (width <= 767px) {
  .exampleArea_person_age {
    font-size: 4.8vw;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
  careerPlanContainer
+++++++++++++++++++++++++++++++++++++++++++ */
.scroll-container {
  flex: 1;
  position: relative;
}
.careerPlanContainer {
  display: grid;
  padding: 0 0 0 2px;
  position: relative;
}
@media (width <= 767px) {
  .careerPlanContainer {
    margin-left: 40px;
  }
}
.careerPlanContainer.js-active_after .careerPlanContainer_arrow {
  animation: arrowAnime 1s ease-out forwards;
}
.careerPlanContainer.js-active_after .careerPlanContainer_arrow::after {
  animation: opacity 2s ease-out forwards;
}
.careerPlanContainer_height {
  visibility: hidden;
  pointer-events: none;
}
.careerPlanContainer_item {
  grid-area: 1 / 1;
  width: 100%;
  min-height: 136px;
  padding: 24px;
  background: #FFF;
  counter-increment: careerNum;
  box-shadow: 0 0 22px rgba(0, 0, 0, 0.05);
  border-right: #AF1C40 5px solid;
  position: relative;
}
.careerPlanContainer_item:nth-of-type(odd) {
  border-right-color: #1F296A;
}
.careerPlanContainer_item:nth-of-type(odd)::before {
  background: #1F296A;
}
.careerPlanContainer_item:nth-of-type(odd) dl dt .year {
  color: #1F296A;
}
.careerPlanContainer_item:nth-of-type(2)::after {
  content: '';
  display: block;
  width: 2px;
  height: 50%;
  background: #FFF;
  position: absolute;
  top: 0;
  left: -2px;
  z-index: 1;
}
.careerPlanContainer_item::before {
  content: '0' counter(careerNum);
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  color: #FFF;
  font-family: "Rubik", sans-serif;
  font-size: 3.6rem;
  font-weight: bold;
  background: #AF1C40;
  clip-path: polygon(50% 0, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  position: absolute;
  left: -46px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}
.careerPlanContainer_item dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0;
  align-items: stretch;
  height: 100%;
}
@media (width <= 767px) {
  .careerPlanContainer_item dl {
    flex-direction: column;
    margin-left: 30px;
  }
}
.careerPlanContainer_item dl dt {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: center;
  flex-direction: column;
  min-width: 240px;
  padding: 0 20px 0 62px;
  font-weight: bold;
  font-size: 4rem;
  line-height: 1.2;
  border-right: #D0D0D0 1px solid;
}
@media (width <= 1023px) {
  .careerPlanContainer_item dl dt {
    min-width: 200px;
    padding: 0 10px 0 30px;
  }
}
@media (width <= 767px) {
  .careerPlanContainer_item dl dt {
    padding: 0 0 20px;
    font-size: 8vw;
    border-right: none;
    border-bottom: #D0D0D0 1px solid;
  }
}
.careerPlanContainer_item dl dt .year {
  display: block;
  margin: 0 0 5px;
  color: #AF1C40;
  font-size: 2.4rem;
}
@media (width <= 767px) {
  .careerPlanContainer_item dl dt .year {
    font-size: 4.8vw;
  }
}
.careerPlanContainer_item dl dd {
  flex: 1;
  align-self: center;
  padding: 0 0 0 36px;
  font-size: 2rem;
}
@media (width <= 767px) {
  .careerPlanContainer_item dl dd {
    width: 100%;
    padding: 20px 0 0;
    font-size: 3.8vw;
  }
}
.careerPlanContainer_arrow {
  display: block;
  width: 2px;
  height: 0;
  background: #1F296A;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}
.careerPlanContainer_arrow::after {
  content: '\f078';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1;
  color: #1F296A;
  position: absolute;
  bottom: -5px;
  left: -7px;
  z-index: 1;
  opacity: 0;
}
@keyframes arrowAnime {
  to {
    height: calc(100% + 32px);
  }
}
@keyframes opacity {
  to {
    opacity: 1;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
  comment
+++++++++++++++++++++++++++++++++++++++++++ */
.exampleArea:has(.js-active_after) + .comment {
  animation: opacity 0.5s 1s forwards;
}
.comment {
  padding: 0 85px;
  opacity: 0;
}
@media (width <= 1400px) {
  .comment {
    padding: 0 10px;
  }
}
.comment_inner {
  padding: 15px 105px 35px;
  background: #FFF;
  border-left: #AF1C40 7px solid;
  border-right: #AF1C40 7px solid;
  position: relative;
}
@media (width <= 767px) {
  .comment_inner {
    padding: 60px 30px;
  }
}
.comment_inner::before,
.comment_inner::after {
  font-family: "Fragment Mono", monospace;
  font-size: 12.8rem;
  color: #AF1C40;
  line-height: 1;
  position: absolute;
}
.comment_inner::before {
  content: '“';
  top: -2px;
  left: 16px;
}
.comment_inner::after {
  content: '”';
  bottom: -64px;
  right: 16px;
}
.comment_inner h3 {
  margin: 0 0 15px;
  padding: 0;
  font-size: 4rem;
}
@media (width <= 767px) {
  .comment_inner h3 {
    font-size: 8vw;
  }
}
.comment_inner h3::before,
.comment_inner h3::after {
  content: none;
}
.comment_inner p {
  font-size: 2.4rem;
}
@media (width <= 767px) {
  .comment_inner p {
    font-size: 4.8vw;
  }
}
