/* SES CTA — 色彩設計（補色・寒暖・分割補色）
   主役 H≈14° #e84003（オレンジレッド）
   補色 H≈194° ティール — 締め・キッカー・細線・フォーカスで「唸る」緊張感
   分割補色域を低彩度化したスレート — 本文・罫線（単色黒を避ける）
   類似色のピーチ — 暖色サーフェス
   背景はややクールホワイト — 寒暖対比でボタンが浮く */

:root {
  /* ── 主色（アナログス拡張でグラデ用） ── */
  --accent: #e84003;
  --accent-hover: #ff5a1f;
  --accent-deep: #a82c00;
  --accent-ink: #5c1a00;
  --accent-soft: rgba(232, 64, 3, 0.1);
  --accent-border: rgba(232, 64, 3, 0.4);
  --accent-border-strong: rgba(232, 64, 3, 0.64);

  /* ── 補色（+180° 付近）ティール ── */
  --comp: #0a6b70;
  --comp-deep: #06484c;
  --comp-soft: rgba(10, 107, 112, 0.08);
  --comp-glow: rgba(10, 107, 112, 0.14);
  --comp-border: rgba(10, 107, 112, 0.2);
  --comp-border-strong: rgba(10, 107, 112, 0.32);

  /* ── 分割補色を落としたブルーグレー（タイポ・罫線） ── */
  --text: #1b2529;
  --text-muted: #4a6670;
  --text-kicker: #3d5c62;
  --line: rgba(27, 37, 41, 0.07);
  --line-strong: rgba(27, 37, 41, 0.11);

  /* ── サーフェス：クールベース × ピーチ（類似色） ── */
  --bg: #f7fafb;
  --bg-subtle: #eef3f5;
  --bg-warm: #fff6f1;
  --bg-card: #ffffff;

  /* 記事埋め込み：外枠色・訴求チップ（薄オレンジ） */
  --embed-frame: #0d384c;
  --embed-feature-chip-bg: #fff0e6;
  --embed-feature-chip-bg-deep: #ffe8d9;

  /* ── チップ：補色の線 + 主色アイコンの土台を中間トーンに ── */
  --chip-bg: #f2f7f7;
  --chip-border: rgba(10, 107, 112, 0.14);

  /* ── CTA：主色グロー + わずかな補色リム（プロの二重光） ── */
  --btn-shadow: 0 1px 0 rgba(255, 255, 255, 0.36) inset,
    0 0 0 1px rgba(255, 255, 255, 0.22), 0 2px 4px rgba(0, 0, 0, 0.07),
    0 6px 22px rgba(232, 64, 3, 0.38), 0 0 40px rgba(232, 64, 3, 0.2),
    0 0 60px rgba(10, 107, 112, 0.05);
  --btn-shadow-hover: 0 1px 0 rgba(255, 255, 255, 0.42) inset,
    0 0 0 1px rgba(255, 255, 255, 0.28), 0 4px 8px rgba(0, 0, 0, 0.09),
    0 10px 34px rgba(232, 64, 3, 0.48), 0 0 52px rgba(232, 64, 3, 0.26),
    0 0 72px rgba(10, 107, 112, 0.07);

  --font-display: "Shippori Mincho B1", "Hiragino Mincho ProN", serif;
  --font-body: "Zen Kaku Gothic New", "Hiragino Sans", sans-serif;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.ses-cta {
  font-family: var(--font-body);
  color: var(--text);
  background: radial-gradient(
      ellipse 80% 55% at 88% 8%,
      rgba(10, 107, 112, 0.045),
      transparent 50%
    ),
    radial-gradient(
      ellipse 95% 70% at 50% 0%,
      rgba(232, 64, 3, 0.06),
      transparent 55%
    ),
    linear-gradient(165deg, var(--bg) 0%, var(--bg-subtle) 55%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
}

/* 記事内CTA：本文カラム幅に収まる（100vw ブリードなし）／白背景／外枠 #0d384c／中央揃え */
.ses-cta--embed {
  margin-top: clamp(0.45rem, 1.5vw, 0.85rem);
  margin-bottom: clamp(1rem, 3vw, 1.65rem);
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  width: 100%;
  padding: 0;
  border: 2px solid var(--embed-frame);
  border-radius: 0;
  box-shadow: none;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* 枠の上辺と一体になるヘッダー帯 */
.ses-cta__embed-cap {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0;
  padding: clamp(0.45rem, 1.25vw, 0.68rem) clamp(0.75rem, 3vw, 1.25rem);
  background: var(--embed-frame);
  color: #fff;
  text-align: center;
}

.ses-cta__embed-cap-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.3125rem, 3.36vw, 1.575rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

/* SWELL 等：.entry-content h2 の巨大化・余白・下線を打ち消す（テーマより後に読み込ませるか !important） */
.ses-cta.ses-cta--embed .ses-cta__embed-cap {
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

.ses-cta.ses-cta--embed h2.ses-cta__embed-cap-title,
.ses-cta--embed .ses-cta__embed-cap .ses-cta__embed-cap-title {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  background: none !important;
  background-color: transparent !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1rem, 2.5vw, 1.35rem) !important;
  font-weight: 800 !important;
  font-style: normal !important;
  letter-spacing: 0.04em !important;
  line-height: 1.35 !important;
  color: #fff !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) !important;
  text-align: center !important;
}

.ses-cta.ses-cta--embed h2.ses-cta__embed-cap-title::before,
.ses-cta.ses-cta--embed h2.ses-cta__embed-cap-title::after,
.ses-cta--embed .ses-cta__embed-cap-title::before,
.ses-cta--embed .ses-cta__embed-cap-title::after {
  display: none !important;
  content: none !important;
}

.ses-cta--embed .ses-cta__grid-bg {
  opacity: 0.35;
  background-image: linear-gradient(
      90deg,
      rgba(13, 56, 76, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(rgba(13, 56, 76, 0.04) 1px, transparent 1px);
}

.ses-cta--embed .ses-cta__inner {
  border: none;
  border-radius: 0;
  padding: clamp(0.55rem, 1.8vw, 0.95rem) clamp(1rem, 5vw, 2.5rem)
    clamp(1.15rem, 3.5vw, 1.85rem);
  background: transparent;
  box-shadow: none;
  max-width: min(960px, 100%);
  margin: 0 auto;
  text-align: center;
}

.ses-cta--embed .ses-cta__header {
  padding-bottom: 0;
  margin-bottom: clamp(0.5rem, 1.6vw, 0.8rem);
  border-bottom: none;
  background-image: none;
}

.ses-cta--embed .ses-cta__header--banner {
  display: flex;
  justify-content: center;
}

.ses-cta--embed .ses-cta__banner {
  background: transparent;
}

.ses-cta__value-line {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.35vw, 1.2rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: var(--text);
  text-align: center;
}

.ses-cta--embed .ses-cta__value-line {
  margin: 0 auto clamp(0.7rem, 2vw, 1.05rem);
  max-width: 36em;
  color: #000;
}

.ses-cta--embed .ses-cta__chips {
  margin: 0 auto 1rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  flex-wrap: nowrap;
  gap: clamp(0.28rem, 1vw, 0.5rem);
  justify-content: center;
}

.ses-cta--embed .ses-cta__chip {
  flex: 1 1 0;
  min-width: 0;
  justify-content: center;
  border: none;
  background: linear-gradient(
    165deg,
    var(--embed-feature-chip-bg) 0%,
    var(--embed-feature-chip-bg-deep) 100%
  );
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
  /* 横3つ1行のまま、広い幅で大きめ（最大より一歩小さめ） */
  font-size: clamp(0.72rem, 2.65vw, 1.28rem);
  font-weight: 700;
  padding: clamp(0.45rem, 1.2vw, 0.68rem) clamp(0.3rem, 1vw, 0.55rem);
  gap: clamp(0.25rem, 0.8vw, 0.45rem);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.ses-cta--embed .ses-cta__chip svg {
  width: clamp(16px, 3.4vw, 22px);
  height: clamp(16px, 3.4vw, 22px);
  min-width: clamp(16px, 3.4vw, 22px);
  flex-shrink: 0;
}

/* 指の left% はボタン列と同じ幅の箱を基準にする（inner の横 padding によるズレを防ぐ） */
.ses-cta__actions-wrap {
  position: relative;
  z-index: 8;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
}

.ses-cta--embed .ses-cta__actions {
  padding: 0.5rem 0 3rem;
  border: none;
  border-radius: 0;
  background: transparent;
  gap: clamp(0.65rem, 2vw, 1rem);
  margin: 0;
  max-width: 100%;
}

.ses-cta--embed .ses-cta__btn {
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--btn-shadow);
}

.ses-cta--embed .ses-cta__btn:hover {
  box-shadow: var(--btn-shadow-hover);
}

.ses-cta--embed .ses-cta__btn-icon {
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.ses-cta__grid-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: linear-gradient(
      90deg,
      rgba(10, 107, 112, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(rgba(232, 64, 3, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.ses-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

/* 右下：注記は指より奥 → z-index 5、ボタン欄 8、指 9、ロゴ 10（.ses-cta__inner 基準） */
.ses-cta__logo-note {
  position: absolute;
  right: clamp(0.35rem, 1.5vw, 0.85rem);
  bottom: calc(
    clamp(0.35rem, 1.5vw, 0.85rem) + clamp(26px, 6.5vw, 38px) + 0.2rem
  );
  z-index: 5;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.5625rem, 1.35vw, 0.6875rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #888;
  text-align: right;
  white-space: nowrap;
}

.ses-cta__logo {
  position: absolute;
  top: auto;
  bottom: clamp(0.35rem, 1.5vw, 0.85rem);
  right: clamp(0.35rem, 1.5vw, 0.85rem);
  z-index: 10;
  line-height: 0;
}

.ses-cta__logo img {
  display: block;
  height: auto;
  width: auto;
  max-height: clamp(26px, 6.5vw, 38px);
  max-width: min(160px, 40vw);
}

.ses-cta__logo:focus-visible {
  outline: 2px solid var(--comp);
  outline-offset: 4px;
  border-radius: 4px;
}

.ses-cta__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header row（従来2カラム）／バナー1枚 */
.ses-cta__header {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: end;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.ses-cta__header--banner {
  display: block;
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.ses-cta__banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  /* 画像が透過のときだけ見える。黒は付けない（誤って全面が黒く見える原因になる） */
  background: var(--bg-card);
}

@media (max-width: 640px) {
  .ses-cta__header:not(.ses-cta__header--banner) {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    margin-top: 2.5rem;
  }

  .ses-cta__logo img {
    max-height: 22px;
    max-width: min(140px, 55vw);
  }
}

/* Benefit chips */
.ses-cta__chips {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-start;
}

@media (max-width: 640px) {
  .ses-cta:not(.ses-cta--embed) .ses-cta__chips {
    justify-content: center;
  }
}

.ses-cta__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  background: var(--chip-bg);
  border: 1px solid var(--chip-border);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.ses-cta__chip svg {
  flex-shrink: 0;
  color: var(--accent);
}

/* 3 CTA buttons — キラキラ（シャイン＋グロー） */
@keyframes ses-cta-btn-shine {
  0%,
  8% {
    transform: translate3d(-130%, 0, 0) skewX(-20deg);
    opacity: 0;
  }
  12% {
    opacity: 0.85;
  }
  28%,
  100% {
    transform: translate3d(200%, 0, 0) skewX(-20deg);
    opacity: 0;
  }
}

@keyframes ses-cta-btn-glow-pulse {
  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(232, 64, 3, 0.3))
      drop-shadow(0 0 20px rgba(10, 107, 112, 0.06));
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(232, 64, 3, 0.44))
      drop-shadow(0 0 28px rgba(10, 107, 112, 0.09));
  }
}

@media (prefers-reduced-motion: reduce) {
  .ses-cta__btn::after,
  .ses-cta__actions,
  .ses-cta__finger,
  .ses-cta__actions > .ses-cta__btn:nth-child(-n + 3) {
    animation: none !important;
  }
}

/* 指が左に傾く瞬間に同期した「ポチッ」（周期＝指と同じ 8.64s） */
@keyframes ses-cta-btn-tap-sync-1 {
  0%,
  22.181% {
    transform: translateY(0) scale(1);
    filter: brightness(1);
    box-shadow: var(--btn-shadow);
  }
  22.222% {
    transform: translateY(5px) scale(0.96);
    filter: brightness(0.88) saturate(0.96);
    box-shadow: inset 0 5px 14px rgba(0, 0, 0, 0.28), var(--btn-shadow);
  }
  22.847% {
    transform: translateY(5px) scale(0.96);
    filter: brightness(0.88) saturate(0.96);
    box-shadow: inset 0 5px 14px rgba(0, 0, 0, 0.28), var(--btn-shadow);
  }
  23.403%,
  100% {
    transform: translateY(0) scale(1);
    filter: brightness(1);
    box-shadow: var(--btn-shadow);
  }
}

@keyframes ses-cta-btn-tap-sync-2 {
  0%,
  55.514% {
    transform: translateY(0) scale(1);
    filter: brightness(1);
    box-shadow: var(--btn-shadow);
  }
  55.556% {
    transform: translateY(5px) scale(0.96);
    filter: brightness(0.88) saturate(0.96);
    box-shadow: inset 0 5px 14px rgba(0, 0, 0, 0.28), var(--btn-shadow);
  }
  56.181% {
    transform: translateY(5px) scale(0.96);
    filter: brightness(0.88) saturate(0.96);
    box-shadow: inset 0 5px 14px rgba(0, 0, 0, 0.28), var(--btn-shadow);
  }
  56.736%,
  100% {
    transform: translateY(0) scale(1);
    filter: brightness(1);
    box-shadow: var(--btn-shadow);
  }
}

@keyframes ses-cta-btn-tap-sync-3 {
  0%,
  88.847% {
    transform: translateY(0) scale(1);
    filter: brightness(1);
    box-shadow: var(--btn-shadow);
  }
  88.889% {
    transform: translateY(5px) scale(0.96);
    filter: brightness(0.88) saturate(0.96);
    box-shadow: inset 0 5px 14px rgba(0, 0, 0, 0.28), var(--btn-shadow);
  }
  89.514% {
    transform: translateY(5px) scale(0.96);
    filter: brightness(0.88) saturate(0.96);
    box-shadow: inset 0 5px 14px rgba(0, 0, 0, 0.28), var(--btn-shadow);
  }
  90.069%,
  100% {
    transform: translateY(0) scale(1);
    filter: brightness(1);
    box-shadow: var(--btn-shadow);
  }
}

/* 指マーク：左へ戻ったあとの長い静止をカット（旧0〜72%を100%に圧縮、8.64s でループ） */
@keyframes ses-cta-finger-tour {
  0%,
  20.833% {
    left: calc(33.333% - 44px);
    bottom: 26px;
    transform: rotate(-3deg);
  }
  22.222% {
    left: calc(33.333% - 44px);
    bottom: 26px;
    transform: rotate(-18deg);
  }
  23.611% {
    left: calc(33.333% - 44px);
    bottom: 26px;
    transform: rotate(12deg);
  }
  25%,
  27.778% {
    left: calc(33.333% - 44px);
    bottom: 26px;
    transform: rotate(-3deg);
  }
  33.333%,
  54.167% {
    left: calc(66.666% - 44px);
    bottom: 26px;
    transform: rotate(-3deg);
  }
  55.556% {
    left: calc(66.666% - 44px);
    bottom: 26px;
    transform: rotate(-18deg);
  }
  56.944% {
    left: calc(66.666% - 44px);
    bottom: 26px;
    transform: rotate(12deg);
  }
  58.333%,
  61.111% {
    left: calc(66.666% - 44px);
    bottom: 26px;
    transform: rotate(-3deg);
  }
  66.667%,
  87.5% {
    left: calc(100% - 48px);
    bottom: 26px;
    transform: rotate(-3deg);
  }
  88.889% {
    left: calc(100% - 48px);
    bottom: 26px;
    transform: rotate(-18deg);
  }
  90.278% {
    left: calc(100% - 48px);
    bottom: 26px;
    transform: rotate(12deg);
  }
  91.667%,
  94.444% {
    left: calc(100% - 48px);
    bottom: 26px;
    transform: rotate(-3deg);
  }
  100% {
    left: calc(33.333% - 44px);
    bottom: 26px;
    transform: rotate(-3deg);
  }
}

.ses-cta__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.45rem, 1.5vw, 1.1rem);
  animation: ses-cta-btn-glow-pulse 4s ease-in-out infinite;
  position: relative;
  padding-bottom: 3rem;
}

.ses-cta__finger {
  position: absolute;
  width: 52px;
  height: auto;
  left: calc(33.333% - 44px);
  bottom: 26px;
  transform: rotate(-3deg);
  transform-origin: 88% 92%;
  pointer-events: none;
  z-index: 9;
  animation: ses-cta-finger-tour 8.64s ease-in-out infinite;
}

/* 常に横3つ。狭い幅は余白・文字だけ詰める */
@media (max-width: 520px) {
  .ses-cta__actions {
    gap: 0.35rem;
  }

  .ses-cta__btn {
    padding: 0.88rem 0.4rem 0.95rem;
    min-height: 104px;
    gap: 0.45rem;
  }

  .ses-cta__btn-icon {
    width: 36px;
    height: 36px;
  }

  .ses-cta__btn-icon svg {
    width: 20px;
    height: 20px;
  }

  .ses-cta__btn-label {
    font-size: 0.78rem;
    letter-spacing: 0.03em;
  }
}

.ses-cta__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 120px;
  padding: 1.1rem 1rem 1.12rem;
  text-decoration: none;
  color: #fff;
  text-align: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    155deg,
    #ffc4a8 0%,
    #ff7a38 11%,
    var(--accent-hover) 30%,
    var(--accent) 50%,
    var(--accent-deep) 76%,
    var(--accent-ink) 100%
  );
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--btn-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.ses-cta__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.38) 0%,
    rgba(255, 255, 255, 0.08) 28%,
    transparent 52%
  );
  pointer-events: none;
}

.ses-cta__btn::after {
  content: "";
  position: absolute;
  top: -20%;
  left: 0;
  width: 55%;
  height: 140%;
  z-index: 1;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0) 65%,
    transparent 100%
  );
  pointer-events: none;
  animation: ses-cta-btn-shine 3.8s ease-in-out infinite;
}

.ses-cta__btn:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.06) saturate(1.05);
  box-shadow: var(--btn-shadow-hover);
}

/* 指の左傾きと同タイミングで該当ボタンだけポチッ（img 指は4番目なので 1〜3 がボタン） */
.ses-cta__actions > .ses-cta__btn:nth-child(1) {
  animation: ses-cta-btn-tap-sync-1 8.64s ease-in-out infinite;
}

.ses-cta__actions > .ses-cta__btn:nth-child(2) {
  animation: ses-cta-btn-tap-sync-2 8.64s ease-in-out infinite;
}

.ses-cta__actions > .ses-cta__btn:nth-child(3) {
  animation: ses-cta-btn-tap-sync-3 8.64s ease-in-out infinite;
}

.ses-cta__actions > .ses-cta__btn:nth-child(-n + 3) {
  transition-property: box-shadow, filter;
}

.ses-cta__btn:focus-visible {
  outline: 3px solid var(--comp);
  outline-offset: 3px;
}

.ses-cta__btn-icon {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.28),
    rgba(0, 0, 0, 0.15)
  );
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset;
}

.ses-cta__btn-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ses-cta__btn-label {
  position: relative;
  z-index: 2;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
