html,
body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

ul {
  list-style: none;
}

body {
  line-height: 1;
}

.sp {
  display: none;
}

html,
body {
  height: auto;
}

body {
  position: relative;
}

/* 背景の紫位置を変える */
body::before {
  content: "";
  position: absolute;
  z-index: -10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 138.09vw;
  background: url("../images/purple_background-PC.webp") no-repeat;
  background-position: -4.2vw 43.4vw;
  background-size: 105.2vw auto;
  pointer-events: none;
  inset: 0;
}

@media (width <= 767px) {
  body::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 543.84vw;
    background: url("../images/purple_background-SP.webp") no-repeat;
    background-position: -10vw 92.8vw;
    background-size: 164.1vw auto;
    pointer-events: none;
    inset: 0;
  }
}

@media (width <= 767px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}
.ambassador {
  width: 83.3vw;
  padding-bottom: 4.58vw;
  margin: 0 auto;
}

.ambassador__grid {
  display: grid;
  gap: 1.38vw;
  grid-template-columns: 1fr 1fr;
}

.ambassador__card {
  margin: 0;
}

.ambassador__photo {
  border-radius: 5px;
  width: 40.97vw;
  height: 26.25vw;
  object-fit: cover;
  object-position: left;
}

.ambassador__credit {
  margin-top: 1vw;
  color: #282828;
  font-size: calc(0.9vw * var(--text-scale));
  font-weight: 500;
  letter-spacing: 0.06rem;
}

.ambassador__link {
  color: #826190;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ambassador__comment {
  padding: 1.52vw 2.22vw;
  margin-bottom: 1.94vw;
  background: #fff;
  border-radius: 10px;
}

.ambassador__title {
  margin-bottom: 9px;
  color: #826190;
  font-family: Poppins, sans-serif;
  font-size: calc(1.66vw * var(--text-scale));
  font-weight: 700;
  line-height: 1.9;
}

.ambassador__txt {
  color: #000;
  font-family: Poppins, sans-serif;
  font-size: calc(1.2vw * var(--text-scale));
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.016rem;
}

@media (width <= 767px) {
  .ambassador {
    width: 89.74vw;
    padding-bottom: 14.35vw;
  }

  .ambassador__grid {
    display: flex;
    flex-direction: column;
    gap: 10vw;
    grid-template-columns: 1fr 1fr;
  }

  .ambassador__photo {
    width: 89.74vw;
    height: 50vw;
  }

  .ambassador__credit {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 3.58vw;
    font-size: 3.58vw;
    letter-spacing: 0;
  }

  .ambassador__comment {
    padding: 0;
    margin-bottom: 0;
    background: none;
    border-radius: 0;
  }

  .ambassador__title {
    margin-bottom: 3vw;
    font-size: 6.15vw;
  }

  .ambassador__txt {
    font-size: 4.1vw;
    line-height: 1.5;
    letter-spacing: 0.009rem;
  }
}

.profile {
  width: 83.3vw;
  padding-bottom: 8.8vw;
  margin: 0 auto;
}

.profile__title,
.profile__subttl {
  margin-bottom: 1.69vw;
  color: #826190;
  font-size: calc(1.66vw * var(--text-scale));
  font-weight: 700;
}

.profile__subttl {
  margin-top: 3.88vw;
}

.profile__dl,
.history {
  padding: 0;
  margin: 0;
}

.profile__row,
.history__row {
  display: grid;
  column-gap: 1.25vw;
  grid-template-columns: 9.72vw 1fr;
  padding: 1.66vw 0;
  border-bottom: 2px solid #ddd;
}

.profile__row.first__profile,
.history__row.first__profile {
  padding-top: 0;
}

.profile__dt,
.history__dt {
  position: relative;
  margin: 0;
  color: #282828;
  font-size: calc(1.2vw * var(--text-scale));
  font-weight: 700;
  line-height: 1.7;
}

.profile__dt::after,
.history__dt::after {
  content: "";
  position: absolute;
  bottom: -1.8vw;
  left: 0;
  width: 9.72vw;
  height: 2px;
  background: #826190;
}

.profile__dd,
.history__dd {
  margin: 0;
  color: #282828;
  font-size: calc(1.2vw * var(--text-scale));
  font-weight: normal;
  line-height: 1.7;
}

.history__list {
  display: flex;
  flex-direction: column;
  gap: 1.1vw;
  padding: 0;
  margin: 0;
  list-style: none;
}

.history__list li {
  position: relative;
  padding-left: 1.25vw;
  font-size: calc(1.2vw * var(--text-scale));
  line-height: 1.7;
  letter-spacing: 0.03rem;
}

.history__list li::before {
  content: "";
  position: absolute;
  top: 0.6vw;
  left: -0.01vw;
  width: 0.7vw;
  height: 0.7vw;
  background: #826190;
  transform: rotate(45deg);
}

@media (width <= 767px) {
  .profile {
    width: 89.74vw;
    padding-bottom: 23.3vw;
  }

  .profile__title,
  .profile__subttl {
    margin-bottom: 6.15vw;
    font-size: 6.15vw;
  }

  .profile__subttl {
    margin-top: 14.35vw;
  }

  .profile__row,
  .history__row {
    display: flex;
    flex-direction: column;
    gap: 3.07vw;
    grid-template-columns: 0 1fr;
    padding: 5.9vw 0;
  }

  .profile__dt,
  .history__dt {
    font-size: 4.1vw;
  }

  .profile__dt::after,
  .history__dt::after {
    content: none;
  }

  .profile__dd,
  .history__dd {
    font-size: 4.1vw;
  }

  .history__list {
    gap: 4vw;
  }

  .history__list li {
    padding-left: 4.6vw;
    line-height: 1.51;
    letter-spacing: 0.01rem;
    font-size: 4.1vw;
  }

  .history__list li::before {
    top: 2vw;
    left: 0.6vw;
    width: 2.82vw;
    height: 2.82vw;
  }
}
