#aisatsu h3 {
   color: #0066b3;
   margin: 35px 0;
   font-weight: normal;
   font-size: clamp(1.25rem, 0.75rem + 2.5vw, 2rem);
}
.content-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}
.left-content {
  width: calc( 100% - 600px );
}
.left-content img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.right-content {
  width: 600px;
  padding: 0 50px;
}
.message-text p {
  margin-bottom: 10px;
}
.message-text h4 {
  border-bottom: dotted 1px #0066b3;
  color: #0066b3 !important;
  font-size: 20px !important;
  margin: 55px 0 20px 0 !important;
  padding-bottom: 10px;
  font-weight: 500;
}
.message-text h4:first-child {
  margin: 0 0 20px 0 !important;
}
.profile {
  text-align: center;
  margin-top: 15px;
}
.profile img {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin-bottom: 7px;
}

@media (min-width: 1800px) {
  .left-content {
    width: 60%;
  }
  .left-content img {
    height: 800px;
  }
  .right-content {
    width: 40%;
  }
}
@media (max-width: 900px) {
  .content-wrap {
    flex-direction: column;
  }
  .left-content {
    width: 100%;
    margin-bottom: 35px;
  }
  .left-content img {
    height: 350px;
  }
  .right-content {
    width: 100%;
  }
}
@media (max-width: 769px) {
  .profile img {
  }
}

#about {
    margin-bottom: 100px;
}
#about dl {
    display: flex;
    flex-wrap: wrap;
}
#about dl dt {
    width: 12em;
    padding: 15px;
    border-bottom: solid 1px #ccc;
    font-weight: bold;
    color: #0066b3;
}
#about dl dd {
    width: calc( 100% - 12em );
    padding: 15px;
    border-bottom: solid 1px #ccc;
}
#about dl ol {
    display: flex;
    flex-wrap: wrap;
}
#about dl ol li {
    list-style: disc;
    margin-left: 1em;
    width: 48%;
}
#about .personimg img {
  max-width: 670px;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1100px) {
    #about dl ol li {
        width: 100%;
    }
}
@media screen and (max-width: 769px) {
    #about dl dt {
        width: 8em;
    }
    #about dl dd {
        width: calc( 100% - 8em );
    }
}
@media screen and (max-width: 600px) {
    #about dl dt {
        width: 100%;
        padding-bottom: 0;
        border-bottom: none;
    }
    #about dl dd {
        width: 100%;
    }
}