/* ===== MESSAGE SECTION（麻布スタイル：写真なし・引用符デコ版） ===== */

.message-section {
  background: linear-gradient(160deg, #FDFCF8 0%, #fff 60%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(184,152,106,0.12);
  border-bottom: 1px solid rgba(184,152,106,0.12);
}

/* 背景透かし文字 */
.message-section::before {
  content: 'Message';
  position: absolute;
  right: -12px; bottom: -20px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(107,143,113,0.10);
  letter-spacing: .04em;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

/* レイアウト：左デコ列＋右本文列 */
.message-layout {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 40px;
  align-items: start;
  max-width: 720px;
  margin: 0 auto;
}

/* 左デコ列 */
.message-deco-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}

/* 大きな引用符 */
.message-quote-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 120px;
  font-weight: 300;
  line-height: .7;
  color: var(--gold);
  opacity: .45;
  user-select: none;
  margin-bottom: 16px;
}

/* 縦線 */
.message-deco-line {
  width: 1px;
  flex: 1;
  min-height: 80px;
  background: linear-gradient(to bottom, rgba(184,152,106,0.35), transparent);
}

/* 本文 */
.message-body-col .section-label { margin-bottom: 4px; }
.message-body-col .section-title { margin-bottom: 28px; }

.message-text {
  font-size: 14px;
  line-height: 2.1;
  color: #555;
  margin-bottom: 20px;
  font-feature-settings: 'palt';
}

/* 署名 */
.message-sig {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(184,152,106,0.25);
}
.message-sig-place {
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--gold);
  font-family: 'Noto Sans JP', sans-serif;
}
.message-sig-role {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: .1em;
  color: var(--navy);
}

/* SP */
@media (max-width: 640px) {
  .message-layout {
    grid-template-columns: 48px 1fr;
    gap: 0 20px;
  }
  .message-quote-mark { font-size: 80px; }
}
