.message {
  background-color: var(--bg) !important;
}
.message__box {
  max-width: var(--content-width-narrow);
  margin: auto;
}
.message__img {
  width: 24%;
  float: left;
  margin-right: 64px;
  margin-bottom: 40px;
}
.message__img img {
  border-radius: 16px;
  margin-bottom: 16px;
}
.message__img-text {
  text-align: center;
}
.message__img-text span {
  font-size: 1.25rem;
  line-height: 1.2;
}
.message__img-text rt {
  font-size: .75rem;
  margin-bottom: 4px;
}
.message__text p + p {
  margin-top: 1.6em;
}
.office {
  background-color: var(--white) !important;
}
.office__box {
  border-top: 1px solid var(--main);
}
.office__item {
  display: flex;
  border-bottom: 1px solid var(--main);
  padding: 32px 0;
}
.office__item-head {
  width: 10em;
  font-weight: var(--bold);
  margin-right: .5em;
}
.office__item-content {
  width: calc(100% - 10.5em);
}
.office__item-content small {
  font-size: 0.875rem;
  letter-spacing: 0;
}
.office__item-map {
  height: 300px;
  margin-top: 8px;
}
.srp {
  display: block;
  width: 80px;
  margin-top: 8px;
}

@media (max-width: 1023px) {
  .message__box { display: flex; flex-direction: column; row-gap: 24px;}
  .message__img {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    column-gap: 5%;
    float: none;
    margin: 0 5%;
  }
  .message__img-text { font-size: .875rem;}
  .message__img-text small { margin-bottom: 8px;}
  .office__item { display: block; padding: 16px 0;}
  .office__item-head { width: 100%; margin-bottom: 4px;}
  .office__item-content { width: 100%;}
}