@charset "UTF-8";

.heading-moreworks {
    font-family: "Lora", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    text-align: center;
    letter-spacing: 0.15em;
    margin-top: 100px;
    margin-bottom: 20px;
    color: #2D9830;
}

.under-head {
    font-size: 14px;
    text-align: center;
    margin-bottom: 40px;
}

.work-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
    padding-top: 40px;
    gap: 20px;

  }

  .work-img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .work-text {
    width: 100%;
    font-size: 1rem;
    line-height: 1.6;
  }

  h3{
    font-size: 1.5rem;
    color: #2D9830;
  }

  .work-button {
    display: inline-block;
    margin-top: 1em;
    padding: 0.6em 1.2em;
    background-color: #007acc;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s;
  }

  .work-button:hover {
    background-color: #005fa3;
  }

  /* PCスタイル（768px以上） */
  @media (min-width: 768px) {
    .work-section {
      flex-direction: row;
      justify-content: center;
      align-items: flex-start;
      text-align: left;
    }

    .work-text,
    .work-img {
      width: 50%;
    }

    .work-section.reverse {
      flex-direction: row-reverse;
    }
  }
