.about-chihiro-detail {
  padding: 80px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
  justify-content: center;
}

.about-chihiro-detail__container {
  max-width: var(--container-max-width);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: flex-start;
  justify-content: flex-start;
}

.about-chihiro-detail__content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.about-chihiro-detail__image {
  width: 297px;
  border-radius: var(--border-radius-sm);
  flex-shrink: 0;
  background-repeat: no-repeat;
}


.about-chihiro-detail__image img {
  width: 100%;
  border-radius: var(--border-radius-sm);
}

.about-chihiro-detail__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 0;
}

.about-chihiro-detail__header {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}

.about-chihiro-detail__icon {
  background-color: var(--color-white);
  border-radius: 33.5px;
  padding: 12px;
  width: 56px;
  height: 56px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-chihiro-detail__title {
  font-family: var(--font-family-main);
  font-size: var(--font-size-4);
  font-weight: 500;
  line-height: 48px;
  color: var(--color-main);
  letter-spacing: 3.2px;
  margin: 0;
}

.about-chihiro-detail__description {
  font-family: var(--font-family-main);
  font-size: var(--font-size-8);
  font-weight: 400;
  line-height: 28.8px;
  color: var(--color-text);
  text-align: justify;
  margin: 0;
  width: min-content;
  min-width: 100%;
}


.about-chihiro-detail__description p {
}

.about-chihiro-detail__description p:last-child {
  margin-bottom: 0;
}


@media screen and (max-width: 960px) {
  .about-chihiro-detail {
    padding: 0 0 40px;
  }
  .about-chihiro-detail__container {
    gap: 40px;
  }
  .about-chihiro-detail__content {
    flex-direction: column;
    gap: 16px;
  }
  .about-chihiro-detail__icon {
    width: 40px;
    height: 40px;
    padding: 0;
  }
  .about-chihiro-detail__icon img {
    height: 30px;
    width: 30px;
  }
  .about-chihiro-detail__title {
    font-size: var(--font-size-7);
    letter-spacing: 1.4px;
  }
  .about-chihiro-detail__image {
    width: 100%;
  }
  .about-chihiro-detail__text {
    width: 100%;
    display: contents;
  }
  .about-chihiro-detail__header {
    order: 1;
  }
  .about-chihiro-detail__image {
    order: 2;
  }
  .about-chihiro-detail__description {
    order: 3;
  }
}
