/* ------------------------------------
// lead
------------------------------------ */
.lead {
  font-size: clamp(2.4rem, 2.2vw, 3.2rem);
  font-family: "Zen Old Mincho", serif;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 5rem;
}
.lead span {
  position: relative;
}
.lead span::after {
  content: "";
  width: 100%;
  height: 2px;
  border-bottom: 2px dotted #83AD28;
  position: absolute;
  left: 0;
  bottom: -2px;
}

.message {
  max-width: 900px;
  margin: 0 auto;
}
.message p + p {
  margin-top: 2em;
}

@media screen and (max-width: 768px) {
  .lead {
    font-size: clamp(2rem, 2.2vw, 3.2rem);
    line-height: 1.6;
    margin-bottom: 3rem;
  }
}
/* ------------------------------------
// .profile
------------------------------------ */
.profile {
  margin-top: 10rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 4.2vw, 6rem);
  position: relative;
  align-items: start;
}

.photo {
  position: sticky;
  align-self: self-start;
  top: 0;
}
.photo .portrait {
  margin-bottom: 1.5rem;
}
.photo dl {
  text-align: center;
}
.photo dl .name {
  font-weight: bold;
}
.photo dl .kana {
  font-size: clamp(1.2rem, 1vw, 1.4rem);
}

.data section {
  background: #FFF;
  border-radius: 20px;
  padding: 3rem clamp(3rem, 4.2vw, 6rem);
}
.data section + section {
  margin-top: 5rem;
}
.data section h2 {
  background: #B9AB73;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-align: center;
  color: #FFF;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(2rem, 1.7vw, 2.4rem);
  margin-bottom: 2rem;
}

.history {
  display: grid;
  gap: 0.5rem;
}
.history li {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 2rem;
}
.history li:first-child span {
  grid-column: 1/3;
}

.list {
  display: grid;
  gap: 0.5rem;
}
.list li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
}
.list li:before {
  content: "";
  align-self: center;
  width: 8px;
  aspect-ratio: 1;
  display: block;
  background: #978B4D;
  border-radius: 50vh;
}

@media screen and (max-width: 768px) {
  .profile {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .photo {
    position: relative;
  }
  .photo .portrait {
    max-width: 300px;
    margin: 0 auto 1rem;
  }
  .photo dl .kana {
    font-size: clamp(1rem, 1vw, 1.4rem);
  }
  .data section {
    border-radius: 10px;
    padding: 2rem 2rem;
  }
  .data section + section {
    margin-top: 3rem;
  }
  .data section h2 {
    border-radius: 5px;
    padding: 0.5rem 1rem;
  }
  .list li {
    grid-template-columns: 1rem 1fr;
  }
  .list li:before {
    width: 6px;
  }
}