.about-chihiro {
  background-image: url('../../assets/img/top/about-chihiro_bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-inline: auto;
}

.about-chihiro__contents {
  max-width: var(--container-max-width);
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}



.about-chihiro__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: var(--container-max-width);
  width: 100%;
}

.about-chihiro__heading {
  font-size: var(--font-size-3);
  letter-spacing: 0.1em;
}

.about-chihiro__images {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: flex-start;
  content-center: center;
}

.about-chihiro__image {
  width: 256px;
  height: 256px;
  border-radius: var(--border-radius-sm);
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  overflow: hidden;
}

.about-chihiro__image:nth-child(2) {
  transition-delay: 0.1s;
}


.about-chihiro__describe {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: flex-start;
}

.about-chihiro__text {
  font-family: var(--font-family-main);
  font-size: var(--font-size-8);
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-white);
  text-align: center;
  min-width: 100%;
  width: min-content;
  margin: 0;
}

.about-chihiro__text p {
  margin: 0;
}




@media screen and (max-width: 960px) {
  .about-chihiro {
    background-image: url("../../assets/img/top/about-chihiro_bg_sp.jpg");
    background-position: center bottom;
    padding: 40px 0;
  }
  .about-chihiro__heading {
    font-size: var(--font-size-5);
  }
  .about-chihiro__text {
    text-align: left;
  }
  .about-chihiro__text p {
    line-height: 1.8;
  }
  .about-chihiro__images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .about-chihiro__image {
    width: auto;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}
