@media (768px <= width) {
  .about__inner {
    display: grid;
    grid-template-columns: 61rem 35rem;
    justify-content: space-between;
  }
}
.about__label {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.44;
}
@media (768px <= width) {
  .about__label {
    font-size: 2.4rem;
  }
}
.about__text {
  line-height: 1.44;
  margin-top: calc(16 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .about__text {
    font-size: 1.6rem;
    margin-top: 1.6rem;
  }
}
.about__photo {
  margin-top: calc(40 / var(--spSize) * 100vw);
  text-align: center;
}
@media (768px <= width) {
  .about__photo {
    margin-top: 0;
  }
}
.about__name {
  line-height: 1.44;
  margin-top: calc(8 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  .about__name {
    margin-top: 0.8rem;
    font-size: 1.6rem;
  }
}

@media (768px <= width) {
  .outline__contents dl,
  .display__contents dl {
    display: grid;
    grid-template-columns: 17.6rem auto;
  }
}
.outline__contents dt,
.outline__contents dd,
.display__contents dt,
.display__contents dd {
  line-height: 144%;
}
@media (768px <= width) {
  .outline__contents dt,
  .outline__contents dd,
  .display__contents dt,
  .display__contents dd {
    font-size: 1.6rem;
  }
}
.outline__contents dt,
.display__contents dt {
  font-weight: 700;
  padding-top: 2rem;
}
@media (768px <= width) {
  .outline__contents dt,
  .display__contents dt {
    padding: 1.5rem 0;
    position: relative;
    border-bottom: 1px solid var(--clr-line);
  }
  .outline__contents dt::after,
  .display__contents dt::after {
    content: "";
    width: 12rem;
    height: 2px;
    background-color: var(--clr-main);
    position: absolute;
    left: 0;
    bottom: -1px;
  }
}
.outline__contents dd,
.display__contents dd {
  border-bottom: 1px solid var(--clr-line);
  position: relative;
  padding-top: 0.5rem;
  padding-bottom: 1.5rem;
}
@media (768px <= width) {
  .outline__contents dd,
  .display__contents dd {
    padding: 1.5rem 0;
  }
}
.outline__contents dd::after,
.display__contents dd::after {
  content: "";
  width: 12rem;
  height: 2px;
  background-color: var(--clr-main);
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media (768px <= width) {
  .outline__contents dd::after,
  .display__contents dd::after {
    content: none;
  }
}