@charset "utf-8";

.greeting {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 1.5em;
}

.shacho {
  text-align: center;
  align-self: center;
}
.shacho img {
  width: 250px;
}

.greet-honbun span {
  display: inline-block;
}


@media (max-width: 700px){
  
  .greeting {
    flex-direction: column-reverse;
    justify-content: space-around;
  }
}
