@charset "UTF-8";

/* ============================================================
   message.css
   店長メッセージ　ページ専用スタイル
   voice.css とは異なり、Q&A形式ではなく「手紙・メッセージ」形式で構成
   共通パーツは common.css / global-menu.css を参照
============================================================ */

.message-page { padding: 60px 0 100px; }

/* ページタイトル */
.message-eyebrow {
  text-align: center;
  font-family: var(--font-mincho);   /* v17：ゴシック→明朝 */
  font-style: normal;              /* v17：斜体をやめた */
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  color: var(--color-mauve-light);  /* v17：#0065B0 → #18BFD7 */
  margin: 0 0 4px;                 /* v17：h1との間隔を 8px→4px に */
}
.message-page-title {
  text-align: center;
  font-family: var(--font-mincho);
  font-size: 1.8rem;
  font-weight: 400;   /* v17：PCを一段階太く（300→400）。SPは768px以下で700に上書き */
  color: var(--text-heading);
  margin: 0 0 18px;
  letter-spacing: 0.08em;
}
.message-page-lead {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.9;
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  /* v17：SPのページタイトルを統一（明朝700 / 27px / 字間0.04em）。
     font-family は上のベース宣言（var(--font-mincho)）を継承。
     1rem＝18px なので 1.5rem＝27px。ウェイトは 300/500 → 700 に上げる。 */
  .message-page-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
}

/* ページ内ジャンプナビ
   v19：塗りつぶしの楕円 → 丸い顔写真＋その下に「統括店長／名前」の2行。
   写真は下の .message-closing-face と同じ images/message/*.jpg を流用しているので、
   ダウンロードは1回で済む（2箇所で同じURLを参照している）。 */
.message-jump-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 70px;
}
.message-jump-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 148px;
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.35;
  text-align: center;
  color: var(--text-heading);
  text-decoration: none;
  transition: transform 0.2s ease, color 0.25s ease;
}
.message-jump-face {
  display: block;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-champagne);   /* 読み込み前のプレースホルダ */
  border: 3px solid #fff;
  box-shadow: 0 3px 12px rgba(34, 34, 34, 0.14);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.message-jump-nav a:hover { transform: translateY(-3px); color: var(--color-blue-ink); }
.message-jump-nav a:hover .message-jump-face {
  border-color: var(--color-mauve);
  box-shadow: 0 6px 18px rgba(34, 34, 34, 0.2);
}
/* 1行目＝役職（小さめ）、2行目＝名前（太字） */
.message-jump-role {
  display: block;
  font-weight: 500;
  font-size: 0.83rem;
  color: var(--text-light);
}

/* ============================================================
   店長プロフィール（1名分）
============================================================ */
.message-profile {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 20px;
  padding: 44px 44px 40px;
  margin-bottom: 60px;
  scroll-margin-top: 90px;
  box-shadow: 0 6px 24px rgba(34, 34, 34, 0.06);
  overflow: hidden;
}
.message-profile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
}
/* v19：2人とも --gradient-blue に統一。accent1/2 のクラスはHTML側に残してある
   （また色を分けたくなった時のフック） */
.message-profile-accent1::before,
.message-profile-accent2::before { background: var(--gradient-blue); }

/* ヘッダー（動画＋プロフィール情報） */
.message-profile-header {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}
.message-video-wrap {
  position: relative;
  border-radius: 4px;   /* トップの店長メッセージと同じ角度に揃える */
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.message-video-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.message-video-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* 再生ボタン（サイト共通デザイン） */
/* 動画サムネの再生ボタン（案A：下部ラベルバー・一目で動画とわかる） */
.play-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  transform: none;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(34, 34, 34, 0.6);
  border: none;
  border-radius: 0;
  cursor: pointer;
  z-index: 10;
  transition: background 0.25s ease;
}
.play-btn:hover { background: rgba(34, 34, 34, 0.8); opacity: 1; }

/* 白丸＋モーヴ三角の再生アイコン */
.play-btn-ico {
  position: relative;
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
}
.play-btn-ico::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-width: 5px 0 5px 9px;
  border-style: solid;
  border-color: transparent transparent transparent var(--color-pink-bright);
}
.play-btn-txt {
  color: #fff;
  font-family: var(--font-gothic);
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}
.play-btn-time {
  margin-left: 8px;
  font-weight: 400;
  opacity: 0.88;
}

/* 旧・顔避け左寄せ修飾はバーでは不要（無効化） */
.play-btn-left {
  left: 0;
  right: 0;
}

.message-role {
  font-family: var(--font-gothic);
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0 0 6px;
}
.message-name {
  font-family: var(--font-mincho);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text-main);
  margin: 0 0 10px;
}
.message-store {
  font-family: var(--font-gothic);
  font-size: 0.89rem;
  color: var(--color-blue-ink);
  font-weight: 700;
  line-height: 1.7;
  margin: 0 0 6px;
}
.message-tenure {
  display: inline-block;
  font-family: var(--font-gothic);
  font-size: 0.78rem;
  padding: 3px 14px;
  margin: 0;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--border-tag);
  color: var(--text-light);
}

/* ポイント（大切にしていることなど・シンプルな帯） */
.message-points {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 10px;
}
.message-points li {
  background: var(--color-champagne);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.6;
}
.message-point-label {
  display: inline-block;
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--color-blue-ink);
  margin-right: 10px;
}
.message-point-label::after { content: '｜'; margin-left: 10px; color: var(--border-color); }

/* 店長キャッチコピー（各店長メッセージの見出し・プロフィール直下） */
.message-catch {
  font-family: var(--font-mincho);
  font-size: 1.32rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--color-blue-ink);
  text-align: center;
  margin: 0 0 32px;
}

/* ============================================================
   本文（メッセージ本文・手紙形式）
============================================================ */
.message-body {
  font-family: var(--font-mincho);
}
.message-body p {
  font-size: 1.0rem;
  line-height: 2.1;
  color: var(--text-main);
  margin: 0 0 26px;
}
.message-body p:last-child { margin-bottom: 0; }

/* 結びの一文（強調） */
.message-closing {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--color-champagne);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px 28px !important;
  font-weight: 700;
  color: var(--color-blue-ink) !important;
}
.message-closing-face {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(34, 34, 34, 0.15);
}
.message-closing-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.message-closing-text { flex: 1; margin: 0; }

/* ============================================================
   店舗写真ギャラリー
============================================================ */
.message-shop-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0 0 32px;
}
.message-shop-gallery figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-champagne);
}
.message-shop-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.message-shop-gallery figcaption {
  padding: 8px 12px 10px;
  font-family: var(--font-gothic);
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* CTA */
.message-cta {
  margin-top: 32px;
  text-align: center;
}
.message-cta-btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 0.9rem;
  transition: opacity 0.2s ease;
  border-radius: 999px;
  background: var(--gradient-blue);
  color: #fff;
  border: 0;
}
.message-cta-btn:hover { opacity: 0.8; }

/* ページ下部CTA */
.message-bottom-cta {
  text-align: center;
  padding: 50px 20px;
  background: var(--color-pink-pale);
  border-radius: 16px;
}
.message-bottom-cta-text {
  font-family: var(--font-gothic);
  font-size: 1.0rem;
  color: var(--text-main);
  margin: 0 0 22px;
}
.message-bottom-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ============================================================
   レスポンシブ
============================================================ */
@media screen and (max-width: 768px) {
  .message-profile { padding: 24px 20px; border-radius: 16px; }
  .message-profile-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .message-name { font-size: 1.35rem; }
  .message-catch { font-size: 1.1rem; line-height: 1.6; margin-bottom: 24px; }
  .message-body p { font-size: 0.93rem; line-height: 1.95; }
  .message-closing { flex-direction: column; align-items: center; text-align: center; }
  .message-shop-gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
}
@media screen and (max-width: 480px) {
  /* v19：楕円ボタン時代は縦積みにしていたが、丸写真2つなら横並びで収まる。
     320px端末でも 30vw×2＋gap24＋左右padding が余裕で入る。 */
  .message-jump-nav { gap: 24px; }
  .message-jump-nav a { width: 34vw; max-width: 148px; font-size: 0.92rem; }
  .message-jump-face { width: 30vw; height: 30vw; max-width: 118px; max-height: 118px; }
  .message-jump-role { font-size: 0.78rem; }
}


/* PCヘッダーが2段になり約120pxになったため、アンカー着地位置を40px下げる（SPは従来どおり） */
@media screen and (min-width: 769px) {
  .message-profile { scroll-margin-top: 105px; }
}
