/* work */
.work {
  padding: 80px 0;
}
.work .cont {
  font-size: 18px;
  line-height: 2;
  text-align: center;
}

/* skill-up */
.skill-up {
  padding: 0 0 80px;
}
.skill-up__title {
  margin-bottom: 10px;
  color: #ff8c8c;
  font-size: 28px;
  text-align: center;
}
.skill-up__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.skill-up__card.row2 {
  width: calc(50% - 2.5vw);
}
.skill-up__card.row2 h3 {
  font-size: 22px;
}
.skill-up__card.row3 {
  width: calc(33.3333333333% - 10px);
}
.skill-up__card.row3 h3 {
  font-size: 20px;
}
.skill-up__card-row2 {
  display: flex;
  gap: 5vw;
  margin-bottom: 80px;
}
.skill-up__card-row3 {
  display: flex;
  gap: 15px;
}

/* w-flow */
.w-flow {
  padding: 0 0 80px;
}
.w-flow ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 22px;
  font-family: "Noto Sans JP", sans-serif;
}
.w-flow li {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 20px;
  background-color: #fff6ee;
  border-radius: 10px;
}
.w-flow li p:first-of-type {
  width: 160px;
  color: #ff8c8c;
  font-weight: 700;
}
.w-flow li p:last-of-type {
  flex: 1;
}

/* staff */
.staff {
  padding: 80px 0;
  background-color: #f7f7f7;
}
.staff__card {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
.staff__card .img {
  width: 254px;
}
.staff__card .cont {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.staff__card .cont .name small {
  font-size: 14px;
}
.staff__card .cont .name h2 {
  font-size: 26px;
}
.staff__card .cont .brock h3 {
  font-size: 20px;
}
.staff__card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* qa */
.qa {
  padding: 40px 0 80px;
}
.qa__card {
  position: relative;
  margin-bottom: 15px;
  padding: 25px 10px 25px 15px;
  background-color: #fff;
  border: solid 1px #ff8c8c;
  border-radius: 10px;
  line-height: 1.3;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
}
.qa__card h3 {
  position: relative;
  padding-left: 60px;
  padding-right: 50px;
  font-size: 18px;
}
.qa__card h3::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  padding-bottom: 5px;
  background-color: #ff8c8c;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}
.qa__card p {
  position: relative;
  display: none;
  margin-top: 20px;
  padding-left: 60px;
  padding-right: 70px;
  font-size: 18px;
  line-height: 1.5;
}
.qa__card p::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  padding-bottom: 5px;
  border: solid 1px #ff8c8c;
  border-radius: 50%;
  color: #ff8c8c;
  font-size: 22px;
  font-weight: 700;
}
.qa__card p strong {
  font-weight: 700;
}
.qa__card .arrow {
  position: absolute;
  top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 30px;
  width: 25px;
  height: 25px;
  padding: 10px;
}
.qa__card .arrow span {
  position: absolute;
  width: 25px;
  height: 1px;
  background-color: #ff8c8c;
  transition: transform 0.1s;
}
.qa__card .arrow .arrow02 {
  transform: rotate(90deg);
}
.qa__card .arrow.accordion-open .arrow02 {
  transform: rotate(0deg);
}

@media screen and (max-width: 768px) {
  /* work sp */
  .work {
    padding: 50px 0;
  }
  .work .cont {
    font-size: 14px;
  }
  /* skill-up sp */
  .skill-up {
    padding: 0 0 50px;
  }
  .skill-up__title {
    font-size: 18px;
  }
  .skill-up__card.row2 {
    width: 100%;
  }
  .skill-up__card.row2 h3 {
    font-size: 18px;
  }
  .skill-up__card.row3 {
    width: 100%;
  }
  .skill-up__card.row3 h3 {
    font-size: 16px;
  }
  .skill-up__card-row2 {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
  }
  .skill-up__card-row3 {
    flex-direction: column;
    gap: 30px;
  }
  .skill-up__card p {
    font-size: 14px;
  }
  /* w-flow sp */
  .w-flow {
    padding: 0 0 50px;
  }
  .w-flow ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 16px;
  }
  .w-flow li {
    gap: 15px;
    padding: 20px 5px;
    font-size: 14px;
  }
  .w-flow li p:first-of-type {
    width: 100px;
  }
  /* staff sp */
  .staff {
    padding: 50px 0;
  }
  .staff__card {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .staff__card .img {
    width: 100%;
  }
  .staff__card .cont .name small {
    font-size: 12px;
  }
  .staff__card .cont .name h2 {
    font-size: 23px;
  }
  .staff__card .cont .brock h3 {
    font-size: 16px;
  }
  .staff__card .cont .brock p {
    font-size: 14px;
  }
  .staff__card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  /* qa sp */
  .qa {
    padding: 50px 0;
  }
  .qa__card {
    padding: 15px 10px;
  }
  .qa__card h3 {
    padding-left: 45px;
    padding-right: 40px;
    font-size: 16px;
  }
  .qa__card h3::before {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .qa__card p {
    padding-left: 45px;
    padding-right: 40px;
    font-size: 14px;
  }
  .qa__card p::before {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .qa__card .arrow {
    top: 15px;
    right: 20px;
    width: 20px;
    height: 20px;
  }
  .qa__card .arrow span {
    width: 20px;
  }
}