.training-cont {
  & h1 {
    max-width: 900px;
    margin-inline: auto;
    margin-bottom: 100px;
    font-size: 56px;
    text-align: center;
    line-height: 1.3;
  }
  & p {
    line-height: 1.8;
  }
}

.training-link {
  margin-bottom: 60px;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  justify-content: center;
  & li a {
    background-color: #f7d726;
    color: #000;
    display: block;
    padding: 10px 40px 10px 30px;
    position: relative;
    border-radius: 30px;
    transition: .4s;
    &:hover {
      opacity: .5;
      text-decoration: none;
    }
    &::after {
      content: '';
      position: absolute;
      top: -3px;
      bottom: 0;
      right: 27px;
      width: 9px;
      height: 9px;
      margin: auto;
      border-top: 2px solid #000;
      border-right: 2px solid #000;
      transform: rotate(135deg);
      box-sizing: border-box;
    }
  }
}

.training_wrap {
  margin-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 0 8px #e3e2e2;
  padding: 40px;
  position: relative;
  & .training_head {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 40px;
    padding-bottom: 24px;
    position: relative;
    &::first-letter {
      color: #FF6A30;
      font-family: "Zen Maru Gothic", sans-serif;
      font-size: 48px;
    }
    &::after {
      content: "";
      background-color: #FFE44F;
      height: 2px;
      width: 70%;
      position: absolute;
      bottom: 0;
      left: 0;
    }
    & span {
      font-size: 20px;
      @media screen and (max-width: 600px) {
        display: block;
      }
    }
  }
  & h3 {
    background-color: #FFE44F;
    font-size: 18px;
    padding: 10px 20px;
    margin-bottom: 20px;
  }
  & p img {
    max-width: 600px;
    display: block;
    margin: 0 auto 20px;
    width: 100%;
  }
  & p:last-child {
    margin-bottom: 0;
  }
}

.last_txt {
  margin-bottom: 100px;
}