/* ページ用　２カラム */
.top-column-flex {
  align-items: center;
}
.top-column-flex .box-text .main-text {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.top-column-flex .box-text .main-text::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-main);
  display: block;
}
.top-column-flex .box-text ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.top-column-flex .box-text ul li {
  font-size: 0.9rem;
  color: var(--color-main);
}

@media only screen and (max-width: 767px) {
  .top-column-flex .box-text ul li {
    font-size: 0.8rem;
  }
}

/* メッセージカラム */
.message-flex {
  display: flex;
  gap: 40px;
}
.message-flex .item-image {
  width: 40%;
  height: 100%;
  aspect-ratio: 420 / 360;
}
.message-flex .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.message-flex .item-text {
  width: 60%;
}
.message-flex .item-text p {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-main);
  line-height: 1.8;
}

@media only screen and (max-width: 1080px) {
  .message-flex {
    gap: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .message-flex {
    flex-direction: column;
  }
  .message-flex .item-image {
    width: 100%;
  }
  .message-flex .item-text {
    width: 100%;
  }
  .message-flex .item-text p {
    font-size: 0.8rem;
  }
}