@charset "utf-8";

.about-message {
  margin-bottom: 120px;
  @media screen and (max-width: 600px) {
    margin-bottom: 80px;
  }
}

.about-message_detail {
  display: flex;
  gap: 30px 130px;

  @media screen and (max-width: 800px) {
    flex-direction: column;
    align-items: center;
  }

  .message-image {
    width: 38%;

    @media screen and (max-width: 800px) {
      max-width: 350px;
      width: 100%;
    }
    @media screen and (max-width: 600px) {
      max-width: 250px;
    }
  }

  .messsage-text {
    flex: 1;

    @media screen and (max-width: 800px) {
      width: fit-content;
    }

    p {
      font-size: 18px;
      line-height: 2;
    }
  }
}

.order1 {
  order: 1;

  @media screen and (max-width: 800px) {
    order: 2;
  }
}
.order2 {
  order: 2;
  @media screen and (max-width: 800px) {
    order: 1;
  }
}

.about-concept {
  display: flex;
  flex-direction: column;
  row-gap: 100px;

  @media screen and (max-width: 600px) {
    row-gap: 60px;
  }

  .about-concept_box {
    padding: 65px 70px;
    background-color: var(--color-bg2);
    display: flex;
    gap: 20px 60px;
    border-radius: 20px;

    @media screen and (max-width: 800px) {
      padding: 45px 50px;
      flex-direction: column;
    }

    @media screen and (max-width: 600px) {
      padding: 25px 30px;
    }
  }
  .about-concept_detail {
    flex: 1;

    @media screen and (max-width: 800px) {
      width: 100%;
    }

    .concept-sub-title {
      position: relative;
      display: flex;
      align-items: center;
      column-gap: 20px;
      margin-bottom: 15px;
      &::before {
        content: "";
        background-color: #000;
        height: 1px;
        width: 150px;
        display: block;
        @media screen and (max-width: 600px) {
          width: 50px;
        }
      }
    }
    .concept-title {
      font-size: 24px;
      font-weight: 500;
      line-height: 1.8;
      margin-bottom: 10px;
      @media screen and (max-width: 600px) {
        font-size: 20px;
      }
    }
    p:not(.concept-sub-title) {
      line-height: 1.8;
      font-size: 18px;

      @media screen and (max-width: 600px) {
        font-size: 16px;
      }
    }
  }
  .concept-image {
    width: 40%;

    @media screen and (max-width: 800px) {
      width: 100%;
      max-width: 350px;
      margin-inline: auto;
    }

    img {
      border-radius: 20px;
    }
  }
}
