@charset 'utf-8';

/* intro */
.page__profile__introGrid {
  display: flex;
  justify-content: start;
  gap: 4%;
}

.page__profile__img {
  width: 37%;
}

.page__profile__img img {
  width: 100%;
}

.page__profile__info {
  width: 59%;
}

.page__profile__name {
  font-size: 1.5rem;
  font-weight: 800;
}

.page__profile__role {
  margin-top: 1rem;
}

.page__profile__text {
  margin-top: 1rem;
}

.page__profile__text p {
  line-height: 2;
}

/* gallery */
.page__section__profileGallery {
  margin-top: 3rem;
}

#lightgallery-default {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#lightgallery-default a {
  display: inline-flex;
  width: 16%;
	margin: 0;
	padding: 0;
}

#lightgallery-default img {
  width: 100%;
}

/* career */
.page__profile__careerText {
  margin-top: 3rem;
  line-height: 2;
}

/* experience */
.page__profile__valueGrid {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}

.page__profile__article {
  width: 30%;
}

.page__profile__valueTitle {
  font-size: 1.25rem;
  font-weight: 700;
}

.page__profile__valueText {
  margin-top: 1rem;
  line-height: 1.5;
}

/* tour */
.page__profile__experienceGrid {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}

.page__profile__experience {
  width: 30%;
}

.page__profile__experience img {
  width: 100%;
}

.page__profile__experienceTitle {
  margin-top: 0.5rem;
  font-weight: 500;
}

.page__profile__experienceNote {
  container-type: inline-size;
  margin-top: 3rem;
}

.page__profile__experienceNote p {
  font-size: 1.75cqw;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .page__profile__text {
    container-type: inline-size;
  }

  .page__profile__text p {
    font-size: 3cqw;
    line-height: 1.75;
  }

  .page__profile__article {
    container-type: inline-size;
  }

  .page__profile__valueTitle {
    font-size: 6.3cqw;
  }

  .page__profile__valueText {
    font-size: 5.5cqw;
  }
}

@media screen and (max-width: 580px) {
  .page__profile__introGrid {
    display: block;
  }

  .page__profile__img {
    width: 100%;
  }

  .page__profile__info {
    width: 100%;
  }

  .page__profile__name {
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 800;
  }

  #lightgallery-default a {
    display: inline-flex;
    width: 32%;
    margin: 0;
    padding: 0;
  }

  #lightgallery-default a:nth-of-type(n + 4) {
    margin-top: 0.5rem;
  }

  .page__profile__careerText {
    margin-top: 1.5rem;
    font-size: 3cqw;
    line-height: 1.75;
  }

  .page__profile__valueGrid {
    display: block;
    margin-top: 1.5rem;
  }

  .page__profile__article {
    width: 100%;
  }

  .page__profile__article:nth-of-type(n + 2) {
    margin-top: 1.5rem;
  }

  .page__profile__valueTitle {
    font-size: 1rem;
    font-weight: 700;
  }

  .page__profile__valueText {
    margin-top: 0.5rem;
    font-size: 3cqw;
    line-height: 1.75;
  }

  .page__profile__experienceGrid {
    display: block;
    margin-top: 1.5rem;
  }

  .page__profile__experience {
    width: 100%;
  }

  .page__profile__experience:nth-of-type(n + 2) {
    margin-top: 1.5rem;
  }

  .page__profile__experience img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: bottom;
  }

  .page__profile__experienceTitle {
    margin-top: 0.25rem;
    font-size: 0.9rem;
    font-weight: 500;
  }

  .page__profile__experienceNote {
    margin-top: 2rem;
  }

  .page__profile__experienceNote p {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
  }
}