.profileHeader {
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    flex-direction: column;
  }
}
.profileHeader__left {
  width: 390px;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.profileHeader__right {
  @media screen and (max-width: 750px){
    margin-top: 20px;
  }
}
.profileHeader__title {
  display: flex;
  flex-direction: column;
  .en {
    font-size: 15px;
    font-family: var(--font-en);
  }
  .ja {
    font-size: 23px;
    font-weight: bold;
    margin-top: 1em;
    color: var(--color-blue);
  }
}
.profileHeader__table {
  margin-top: 15px;
  font-size: 14px;
  th {
    padding: 0.7em 1em 0.7em 0;
    white-space: nowrap;
  }
  td {
    padding: 0.7em 0;
  }
}
.profileJoin {
  margin-top: 60px;
  border-radius: 15px;
  background: url(../img/profile/bg_profile.png) no-repeat center / cover;
  padding: 40px;
}
.profileJoin__list {
  font-size: 14px;
  margin-top: 20px;
  li {
    text-indent: -1em;
    margin-left: 1em;
    &:before {
      content: "●";
      color: var(--color-blue);
      font-size: 7px;
      position: relative;
      top: -3px;
    }
    + li {
      margin-top: 0.2em;
    }
  }
}
.profileWrite {
  margin-top: 80px;
}
.profileWrite__list {
  font-size: 14px;
  margin-top: 20px;
  li {
    + li {
      margin-top: 0.6em;
    }
  }
}