@charset "UTF-8";

.about-us-top-section {
  padding: 8rem 0;
  border-bottom-right-radius: 8rem;
  border-top-left-radius: 8rem;
  margin-bottom: 10rem;

  @media screen and (max-width: 767px) {
    padding: 20px 0;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    margin-bottom: 50px;
  }
}

.about-us-top-title {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 5.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.1em;

  @media screen and (max-width: 767px) {
    font-size: 20px;
    line-height: 1.8;
    text-align: left;
  }
}

.circle-container {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  margin-top: 5.6rem;

  @media screen and (max-width: 767px) {
    column-gap: 20px;
    row-gap: 35px;
    margin-top: 30px;
  }
}

.circle-item {
  text-align: center;
}

.circle-img {
  width: 28rem;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  display: block;

  @media screen and (max-width: 767px) {
    width: 130px;
    margin-bottom: 10px;
  }
}

.circle-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circle-text-eng {
  font-family: "Urbanist";
  font-style: normal;
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 0.1em;

  @media screen and (max-width: 767px) {
    font-size: 16px;
    line-height: 1.5;
  }
}

.circle-text-jp {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 3.8rem;
  letter-spacing: 0.1em;
  width: fit-content;
  position: relative;

  /* &::after {
    content: "";
    width: 1.7rem;
    height: 1.7rem;
    background-image: url(../../img/page/about-us/arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: -2.4rem;
    top: 50%;
    transform: translateY(-50%);
  } */

  @media screen and (max-width: 767px) {
    font-size: 14px;
    line-height: 1.5;

    /* &::after {
      width: 12px;
      height: 12px;
      right: -15px;
    } */
  }
}

.about-us-content {
  margin-bottom: 5rem;

  @media screen and (max-width: 767px) {
    margin-bottom: 30px;
  }
}