<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.investor-relation {
  display: grid;
  grid-template-columns: 80px 1fr;
  font-size: 12px;
  padding: 8px;
  border-bottom: dotted 1px #999;

  &amp;.no-comment {
    grid-template-rows: 16px;
  }

  &amp;.with-comment {
    grid-template-rows: 16px 30px;
  }

  .investor-relation-published-at {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
  }

  .investor-relation-detail {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    white-space: nowrap;
  }

  .investor-relation-comment {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    white-space: nowrap;
    line-height: 24px;
    background-color: var(--gray-light0);
    margin-top: 6px;
    padding: 0px 6px;
  }

  .icon i {
    width: 20px;
    text-align: center;
  }
}</pre></body></html>