@charset "UTF-8";
/* assignments */
.kv.--top {
  background-image: url(/assets/images/assignment/assignment.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 10px;
}

/* rotection-message */
.protection-message__h2 {
  text-align: center;
  line-height: calc(42 / 35);
  font-size: 3.5rem;
  margin: 40px 0 40px;
  color: #ad6c43;
}
.protection-message__description {
  display: flex;
  gap: 60px;
  align-items: center;
}
.protection-message__description:nth-child(even) {
  flex-direction: row-reverse;
}
.protection-message__description + .protection-message__description {
  margin-top: 50px;
}
.protection-message__img {
  width: 50%;
}
.protection-message__reason {
  width: 50%;
}
.protection-message__h3 {
  text-align: center;
  font-size: 3rem;
  color: #ce8801;
}
.protection-message__p {
  font-size: 2rem;
}
@media (max-width: 900px) {
  .protection-message__h2 {
    font-size: 20px;
    margin: 20px 0 15px;
  }
  .protection-message__img {
    width: 100%;
  }
  .protection-message__h3 {
    font-size: 20px;
  }
  .protection-message__description {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .protection-message__description:nth-child(even) {
    flex-direction: column-reverse;
  }
  .protection-message__p {
    font-size: 1.2rem;
  }
  .protection-message__reason {
    width: 95%;
  }
}
/* rotection-message end */

/* assignment-step */

.assignment-step__h2s {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.assignment-step__h2 {
  text-align: center;
  font-size: 3.5rem;
  color: #ad6c43;
  margin: 135px 0 60px;
}
.assignment-step__img {
  width: 250px;
  margin-bottom: 40px;
}
.assignment-step__inner {
  position: relative;
}
.assignment-step__pad {
  position: absolute;
  top: 5%;
  left: 0;
  width: 100%;
  height: 90%;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 2s;
  transition-timing-function: steps(14, end);
}
.assignment-step__pad.--active {
  clip-path: inset(0 0 0% 0);
}
.assignment-step__pad img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.assignment-step__list {
  counter-reset: assignment;
  position: relative;
  z-index: 10;
  font-size: 20px;
}
.assignment-step__list li {
  counter-increment: assignment;
  background-color: rgba(255, 255, 255, 0.8);
  width: 340px;
  display: flex;
  justify-content: center;
  gap: 0.5em;
  padding: 1em 0;
  border-radius: 100vh;
  margin: auto;
}
.assignment-step__list li + li {
  margin-top: 3em;
}
.assignment-step__list li::before {
  content: "step" counter(assignment);
  font-size: 20px;
}
.assignment-step__list li:nth-of-type(6) {
  position: relative;
}
.assignment-step__family {
  position: absolute;
  /* transform: translate(207%, -87%); */
  width: 250px;
  bottom: 0;
  right: -50%;
}
@media (max-width: 900px) {
  .assignment-inner__1220 {
    width: 100%;
    max-width: calc(1160px + 24px + 24px);
    margin-inline: auto;
    padding: 0;
  }
  .assignment-step__h2 {
    font-size: 20px;
    margin: 25px 0 25px;
  }
  .assignment-step__img {
    width: 100px;
    margin-bottom: 25px;
  }
  .assignment-step__list li {
    max-width: 312px;
    width: 100%;
  }
  .assignment-step__family {
    width: 100px;
    /* transform: translate(215%, -120%); */
    right: -5%;
  }
}
/* assignment-step end */
