@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.message-top {
  background: #f9fafb;
  padding: 50px 20px;
  text-align: center;
}
.message-top h1 {
  font-size: 2.25rem;
  margin-bottom: 12px;
  color: #111827;
}

/* ===== Message ===== */
.message {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}
.message h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: #333;
}
.message__profile {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
}
.message__profile img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  /* 丸く表示 */
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.message__profile .message__name {
  font-weight: bold;
  font-size: 1rem;
  color: #374151;
}
.message__profile .message__name span {
  margin-right: 15px;
}
.message__text {
  margin-top: 30px;
}
.message__text p {
  margin-bottom: 1.2em;
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
}

/* ===== Responsive ===== */
@media (max-width: 750px) {
  .message h2 {
    font-size: 1.6rem;
  }
  .message__profile {
    flex-direction: column;
    /* スマホでは縦に並べる */
    gap: 12px;
  }
  .message__profile img {
    width: 80px;
    height: 80px;
  }
}/*# sourceMappingURL=message.css.map */