  .ut-chart-analysis {
    --ut-bg: #10141c;
    --ut-bg-soft: #161d29;
    --ut-line: rgba(201, 210, 222, .16);
    --ut-text: #eef1f6;
    --ut-muted: #aab3c0;
    --ut-gold: #d8ad59;
    --ut-blue: #6fa9e5;
    max-width: 860px;
    margin: 0 auto;
    color: var(--ut-text);
  }

  .ut-chart-hero {
    padding: 3.5rem 1.5rem 3rem;
    text-align: center;
    color: var(--ut-text);
    background:
      radial-gradient(circle at 80% 10%, rgba(70, 115, 175, .25), transparent 32%),
      radial-gradient(circle at 15% 70%, rgba(215, 166, 72, .16), transparent 30%),
      var(--ut-bg);
  }

  .ut-chart-eyebrow,
  .ut-chart-kicker,
  .ut-ranking-gate__eyebrow {
    margin: 0;
    color: var(--ut-gold);
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .15em;
  }

  .ut-chart-hero h1 {
    margin: .7rem 0;
    font-size: clamp(2rem, 6vw, 3rem);
    letter-spacing: .08em;
  }

  .ut-chart-lead {
    margin: 0;
    color: var(--ut-muted);
    line-height: 1.9;
  }

  .ut-chart-section {
    margin: 2.8rem 0;
    padding: 1.2rem;
    background: var(--ut-bg);
    border: 1px solid var(--ut-line);
  }

  .ut-chart-section__heading {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: 1.2rem;
  }

  .ut-chart-timeframe {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(216, 173, 89, .65);
    color: var(--ut-gold);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .06em;
  }

  .ut-chart-section__heading h2 {
    margin: .1rem 0 0;
    color: var(--ut-text);
    font-size: 1.45rem;
  }

  .ut-chart-bias {
    margin-left: auto;
    padding: .38rem .62rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .ut-chart-bias--bull {
    color: #edc774;
    background: rgba(216, 173, 89, .14);
  }

  .ut-chart-bias--bear {
    color: #9cc8f4;
    background: rgba(88, 151, 217, .16);
  }

  .ut-chart-bias--neutral {
    color: #d7dce5;
    background: rgba(215, 220, 229, .12);
  }

  .ut-chart-figure {
    margin: 0 0 1.4rem;
    overflow: hidden;
    border: 1px solid var(--ut-line);
    background: #080b10;
  }

  .ut-chart-figure img {
    display: block;
    width: 100%;
    height: auto;
  }

  .ut-chart-copy {
    color: #dce2ea;
    font-size: 1rem;
    line-height: 2;
  }

  .ut-chart-copy p {
    margin: 0 0 1.1rem;
  }

  .ut-chart-copy p:last-child {
    margin-bottom: 0;
  }

  .ut-chart-point {
    margin-top: 1.5rem;
    padding: 1.1rem 1.2rem;
    border-left: 3px solid;
  }

  .ut-chart-point span {
    display: block;
    margin-bottom: .35rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
  }

  .ut-chart-point strong {
    display: block;
    font-size: 1rem;
  }

  .ut-chart-point p {
    margin: .5rem 0 0;
    color: var(--ut-muted);
    font-size: .92rem;
    line-height: 1.7;
  }

  .ut-chart-point--gold {
    border-color: var(--ut-gold);
    background: rgba(216, 173, 89, .09);
  }

  .ut-chart-point--gold span {
    color: var(--ut-gold);
  }

  .ut-chart-point--blue {
    border-color: var(--ut-blue);
    background: rgba(88, 151, 217, .10);
  }

  .ut-chart-point--blue span {
    color: var(--ut-blue);
  }

  .ut-ranking-gate {
    margin: 3.5rem 0;
    padding: 2.5rem 1.25rem;
    text-align: center;
    color: var(--ut-text);
    border-top: 1px solid var(--ut-line);
    border-bottom: 1px solid var(--ut-line);
    background:
      radial-gradient(circle at 50% 0%, rgba(216, 173, 89, .13), transparent 40%),
      var(--ut-bg-soft);
  }

  .ut-ranking-gate h2 {
    margin: .55rem 0 .8rem;
    font-size: clamp(1.2rem, 4vw, 1.55rem);
  }

  .ut-ranking-gate__lead {
    margin: 0 0 1.25rem;
    color: var(--ut-muted);
    line-height: 1.8;
  }

  .ut-ranking-gate__banner {
    display: inline-block;
    line-height: 0;
    transition: transform .2s ease, opacity .2s ease;
  }

  .ut-ranking-gate__banner:hover {
    opacity: .85;
    transform: translateY(-2px);
  }

  .ut-ranking-gate__banner img {
    display: block;
    max-width: 100%;
    height: auto;
  }

  .ut-ranking-gate__note {
    margin: 1rem 0 0;
    color: var(--ut-muted);
    font-size: .88rem;
  }

  .ut-locked-content {
    animation: utFadeIn .5s ease both;
  }

  .ut-chart-section--last {
    margin-top: 0;
  }

  .ut-chart-end {
    margin: 3rem 0 1rem;
    text-align: center;
    color: var(--ut-gold);
    font-weight: 700;
    letter-spacing: .15em;
  }

  @keyframes utFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 600px) {
    .ut-chart-section {
      padding: 1rem;
    }

    .ut-chart-section__heading {
      gap: .65rem;
    }

    .ut-chart-timeframe {
      width: 2.65rem;
      height: 2.65rem;
    }

    .ut-chart-bias {
      font-size: .65rem;
    }
  }
  .ut-chart-figure img {
    cursor: zoom-in;
  }

  .ut-chart-modal {
    position: fixed;
    z-index: 99999;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(3, 6, 11, .94);
    cursor: zoom-out;
  }

  .ut-chart-modal.is-open {
    display: flex;
  }

  .ut-chart-modal__image {
    display: block;
    max-width: 96vw;
    max-height: 88vh;
    width: auto;
    height: auto;
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow: 0 20px 70px rgba(0, 0, 0, .65);
    cursor: default;
  }

  .ut-chart-modal__close {
    position: fixed;
    top: 1rem;
    right: 1.1rem;
    width: 2.7rem;
    height: 2.7rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    color: #fff;
    background: rgba(15, 20, 28, .8);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
  }

  .ut-chart-modal__hint {
    position: fixed;
    bottom: .75rem;
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: .78rem;
  }

  body.ut-chart-modal-open {
    overflow: hidden;
  }
/* 記事の背景色の変更と、サムネイルと記事とのスペースを潰す */
  #post_image {
    margin: 0;
}
#article .post_content {
    background-color: #10141C;
}
