/* ============================================================
   ABOUT MESSAGE — 代表メッセージ
   背景: off-white (#FAFAFA)
   レイアウト: 左=写真プレースホルダー / 右=メッセージ本文
   演出: 大型クォーテーション装飾、写真にドロップシャドウ
   ============================================================ */

/* ---- Section Base ---- */
.about-message {
  position: relative;
  z-index: var(--z-content, 10);
  background: var(--c-bg-section, #FAFAFA);
  padding: 96px var(--s-gutter, 32px);
  overflow: hidden;
}

/* ---- Container ---- */
.about-message__container {
  max-width: var(--s-container, 1200px);
  margin: 0 auto;
}

/* ---- Section Header ---- */
.about-message__header {
  text-align: center;
  margin-bottom: 64px;
}

.about-message__eyebrow {
  font-family: var(--f-label, 'Inter', sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-orange, #E8672A);
  margin: 0 0 12px;
}

.about-message__title {
  font-family: var(--f-heading-ja, 'Noto Serif JP', serif);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 700;
  color: var(--c-text, #1A1A1A);
  margin: 0 0 16px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.about-message__line {
  width: 48px;
  height: 3px;
  background: var(--c-orange, #E8672A);
  border-radius: 2px;
  margin: 0 auto;
}

/* ---- Body: 1カラム中央寄せ ---- */
.about-message__body {
  display: block;
  max-width: 760px;
  margin: 0 auto;
}

/* ---- 左カラム: 写真 ---- */
.about-message__photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.about-message__photo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

/* プレースホルダーアバター */
.about-message__avatar {
  width: 200px;
  height: 240px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--c-navy, #1E3A5F) 0%, var(--c-navy-deep, #0D1B2E) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 3px solid rgba(201, 168, 76, 0.25);
  position: relative;
  overflow: hidden;
}

/* 背景装飾オーブ */
.about-message__avatar::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.18) 0%, transparent 70%);
}

.about-message__avatar-initials {
  font-family: var(--f-heading-en, 'Barlow Condensed', 'Inter', sans-serif);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  z-index: 1;
}

/* 名前・役職 */
.about-message__name {
  font-family: var(--f-heading-ja, 'Noto Serif JP', serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-text, #1A1A1A);
  letter-spacing: 0.08em;
  margin: 0 0 6px;
  text-align: center;
}

.about-message__role {
  font-family: var(--f-body, 'Noto Sans JP', sans-serif);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-text-light, #555555);
  letter-spacing: 0.06em;
  margin: 0;
  text-align: center;
}

/* ---- 右カラム: 本文 ---- */
.about-message__text-col {
  position: relative;
  padding-top: 8px;
}

/* 大型クォーテーション装飾 */
.about-message__quote-deco {
  position: absolute;
  top: -24px;
  left: -12px;
  font-family: var(--f-heading-en, 'Georgia', serif);
  font-size: 9rem;
  font-weight: 700;
  line-height: 1;
  color: var(--c-orange, #E8672A);
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* 本文段落群 */
.about-message__paragraphs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.about-message__paragraphs p {
  font-family: var(--f-body, 'Noto Sans JP', sans-serif);
  font-size: 0.97rem;
  font-weight: 400;
  color: var(--c-text, #1A1A1A);
  line-height: 2;
  margin: 0;
  letter-spacing: 0.03em;
}

/* 署名 */
.about-message__sig {
  position: relative;
  z-index: 1;
  font-family: var(--f-heading-ja, 'Noto Serif JP', serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text-light, #555555);
  line-height: 1.9;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--c-border-light, #E8E8E8);
}

/* .rv / .rv.is-visible / .rv.d1〜d6 は base.css に集約済み */

/* ---- Responsive: Tablet (768px) ---- */
@media (max-width: 768px) {
  .about-message {
    padding: 72px 20px;
  }

  .about-message__header {
    margin-bottom: 48px;
  }

  .about-message__quote-deco {
    font-size: 6rem;
    top: -16px;
    left: -6px;
  }
}

/* ---- Responsive: Mobile (480px) ---- */
@media (max-width: 480px) {
  .about-message {
    padding: 56px 16px;
  }

  .about-message__title {
    font-size: 1.2rem;
  }

  .about-message__paragraphs p {
    font-size: 0.92rem;
  }
}
