
.greeting p{
  text-align: center;
  margin-bottom: 2rem;
}
.greeting .president-name{
  text-align: center;
}
.greeting .president-name span{
  margin-right: 1rem;
  font-size: 0.8rem;
}
.profile{
  background-color: var(--bg-highlight);
}
.profile .container{
  background: #fff;
  border-radius: 20px;
  padding: 4rem 2rem;
}
.profile table{
  width: 70%;
  margin: 0 auto;
  border-spacing: 0;
  border-collapse: collapse;
}
.profile table th{
  border-bottom: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-family: var(--font-family-mincho);
  font-weight: 700;
  width: 20%;
  padding: 1rem;
  text-align: left;
}
.profile table td{
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}
@media screen and (max-width: 767px){
  .profile table{
    width: 100%;
  }
  .profile table th{
    width: 100%;
    display: block;
    text-align: center;
    border:none;
  }
  .profile table td{
    width: 100%;
    display: block;
    padding-top: 0;
  }
}