@charset "UTF-8";
/**
 * 本SCSS変数定義ファイルは legacy 用です。
 * メールに影響するため編集禁止
 */
/**
 * 本SCSS変数定義ファイルは legacy 用です。
 * メールに影響するため編集禁止
 */
.pin {
  position: relative;
  top: -2px;
}

.pin__button {
  display: inline-block;
  height: 22px;
  color: #646464;
}

.pin__button:focus, .pin__button:hover, .pin__button:active {
  color: rgba(100, 100, 100, 0.8);
  background-color: transparent;
  transform: scale(1.1);
  text-decoration: none;
}

.pin__button--pin {
  display: inline-block;
}

.pin__button--unpin {
  display: none;
  color: #9b9b9b;
}

.pin__button--unpin:focus, .pin__button--unpin:hover, .pin__button--unpin:active {
  color: rgba(155, 155, 155, 0.8);
}

.pin__text {
  line-height: 1;
  font-size: 12px;
}

.pin__number {
  font-size: 12px;
  line-height: 1;
  font-weight: bold;
  color: #646464;
  vertical-align: bottom;
  margin-left: -4px;
}

.pin.pin--pinned .pin__button--pin {
  display: none;
}

.pin.pin--pinned .pin__button--unpin {
  display: inline-block;
}

.pin.pin--pinned .pin__number {
  color: #9b9b9b;
}

/**
 * 本SCSS変数定義ファイルは legacy 用です。
 * メールに影響するため編集禁止
 */
.share {
  display: inline-block;
  padding: 0;
  text-align: right;
  margin: 0;
}

.share__button {
  display: inline-block;
  color: #646464 !important;
  line-height: 20px;
  font-size: 18px;
  margin: 0 6px 0 0;
  text-align: center;
  background: transparent;
}

.share__button:last-child {
  margin: 0;
}

.share__button:hover, .share__button:active, .share__button:focus {
  opacity: 0.8;
  text-decoration: none;
}

.share__button > i {
  vertical-align: middle;
  margin-left: 1px;
}

.share__button__text {
  font-size: 14px;
  line-height: 20px;
}

.share__button--reverse > i {
  transform: scale(-1, 1);
}

/**
 * 本SCSS変数定義ファイルは legacy 用です。
 * メールに影響するため編集禁止
 */
/**
# スタイルの指定方法について

## 色

従来通り `$tf-color-x` を利用しますが、中身は CSS Variables に書き換わっています。
色の定義が見たい場合は、 `_app.globals.scss` を確認してください。

`$tf-text-color` 等のエイリアスを使っても構いません。使っていない定義は将来的に整理する予定です。

## フォント

特にデザインで特別なフォント指定がない限り、フォントのまま変更する必要はありません。
デフォルトでは、"HiraginoSans-W3"、boldでは、"HiraginoSans-W6"が使われるようにマッピングしてあります。
W3、W6以外の太さで、例えばW4を使う場合は、 `font-wight` プロパティで500を指定してください（数字3桁にして+100）。

font-weightとのマッピング（100小さいのは、W3を `normal` に、W6を `bold` に対応したいため）
W0 → 100
W1 → 200
W2 → 300
W3 → 400
...
W8 → 900

※ W9 を利用する場合は別途、検討する
**/
/**
# スタイルの指定方法について

## 色

従来通り `$tf-color-x` を利用しますが、中身は CSS Variables に書き換わっています。
色の定義が見たい場合は、 `_app.globals.scss` を確認してください。

`$tf-text-color` 等のエイリアスを使っても構いません。使っていない定義は将来的に整理する予定です。

## フォント

特にデザインで特別なフォント指定がない限り、フォントのまま変更する必要はありません。
デフォルトでは、"HiraginoSans-W3"、boldでは、"HiraginoSans-W6"が使われるようにマッピングしてあります。
W3、W6以外の太さで、例えばW4を使う場合は、 `font-wight` プロパティで500を指定してください（数字3桁にして+100）。

font-weightとのマッピング（100小さいのは、W3を `normal` に、W6を `bold` に対応したいため）
W0 → 100
W1 → 200
W2 → 300
W3 → 400
...
W8 → 900

※ W9 を利用する場合は別途、検討する
**/
/**
  * ハイライトやタイムラインのヘッダーのボーダー
  */
.comments {
  margin-bottom: 8px;
  position: relative;
}

.comments .comments-header {
  position: absolute;
  top: -24px;
  margin: 0;
  padding: 4px 12px;
  border-bottom: none;
  height: 24px;
  line-height: 16px;
  background-color: var(--tf-color-2);
  font-size: 11px;
  font-weight: bold;
}

.comments .comment-list {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

.comments .comment-list .comment-listitem {
  margin-bottom: 1px;
}

.comments a {
  text-decoration: none !important;
}

.comment {
  position: relative;
  background: var(--tf-color-2);
  padding: 8px;
  border-top: 1px solid #d7d7d766;
}

.comment .comment-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.compact .comment .comment-container {
  padding-right: 0;
}

.comment .comment-container > .avatar {
  margin-top: 4px;
}

.comment .comment-container > .avatar .avatar-icon {
  display: block;
  width: 32px;
  height: 32px;
  max-width: none;
}

.comment .comment-container > .arrow-mark {
  flex-basis: 32px;
  align-self: center;
  text-align: center;
}

.comment .content {
  flex-grow: 1;
  margin: 4px　8px;
  margin-left: 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.comment .content .content-header {
  display: flex;
  align-items: center;
  margin: 0 0 4px;
}

.comment .content .content-header .author-name {
  display: flex;
  align-items: center;
  text-align: left;
  flex: 1 0 auto;
  overflow-x: hidden;
}

.comment .content .content-header .author-name .display-name {
  font-size: 12px;
  color: var(--tf-color-15);
  font-weight: bold;
  display: inline-block;
}

.comment .content .content-header .author-name .username {
  font-size: 12px;
  color: var(--tf-color-entry-text-secondary);
  display: inline-block;
  margin: 0 0 0 4px;
}

.comment .content .content-header .updated-at {
  font-size: 10px;
  color: var(--tf-color-entry-text-secondary);
  flex: 0 0 auto;
  text-align: right;
}

.comment .content .content-header .action-button {
  height: 14px;
  width: 20px;
  flex: 0 0 20px;
  color: #333;
  font-size: 1.4rem;
  margin-top: 1px;
}

.comment .content .comment-body {
  font-family: HiraKakuPro-W3, -apple-system, "Helvetica Neue", Roboto, sans-serif;
  color: var(--tf-color-6);
  min-width: 0;
  text-align: left;
  font-size: 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.comment .content .comment-body > p {
  margin: 0;
}

.comment .comment .reactions .buttons-container {
  border-top: 1px solid var(--tf-color-55);
}

.comment .comment .reactions .buttons button {
  height: 24px;
}

.comment .comment .reactions .buttons button ion-icon {
  font-size: 1.4rem;
}

.comment.compact .content .body p, .comment.compact-more .content .body p {
  line-height: 16px;
  height: 16px;
  overflow: hidden;
}

.comment .replies-container {
  margin: 8px 0 0px 29px;
}

.comment .replies-container .replies {
  list-style-type: none;
  padding: 0;
  border-left: 3px solid #ebebeb;
}

.comment .replies-container .replies .reply {
  padding: 4px 0 4px 6px;
}

.comment .replies-container .replies .reply .avatar-icon {
  width: 24px !important;
  height: 24px !important;
}

.article.container {
  max-width: 768px;
  background-color: var(--tf-color-2);
  margin-top: 12px;
}

.article.container .article-header {
  overflow: hidden;
  margin: 20px 0 10px;
  border-bottom: 1px solid var(--tf-color-2);
  padding-bottom: 4px;
}

.article.container .page-nav {
  float: left;
  margin: -2px 0 0 -4px;
}

.article.container .page-nav > a {
  display: block;
  color: var(--tf-color-51);
}

.article.container .page-nav > a:hover {
  text-decoration: none;
}

.article.container .page-nav > a:focus {
  text-decoration: none;
}

.article.container .page-nav > a:active {
  text-decoration: none;
}

.article.container .page-nav > a .material-icons {
  display: block;
  font-size: 30px;
}

.article.container .page-title {
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 0.1em;
  padding: 0;
  border: none;
  overflow: hidden;
}

.article.container .page-title a {
  color: var(--tf-color-15);
}

.article.container .page-title a:hover, .article.container .page-title a:active, .article.container .page-title a:focus {
  color: rgba(var(--tf-color-15), 0.8);
  text-decoration: none;
}

.article.container .entry-thumbnail {
  float: left;
  margin: 0 10px 0 0;
  width: 140px;
  height: 105px;
}

.article.container .entry-description {
  margin: 10px 0;
  color: var(--tf-color-15);
}

.article.container .entry-header-meta {
  width: 100%;
  display: block;
  overflow: hidden;
  font-size: 14px;
  color: var(--tf-color-51);
}

.article.container .entry-header-meta a {
  color: var(--tf-color-51);
}

.article.container .timestamp {
  clear: both;
  display: block;
  text-align: right;
}

.article.container .entry-related-channels {
  text-align: right;
  font-size: 14px;
  color: var(--tf-color-15);
}

.article.container .entry-related-channels .entry-related-channel {
  text-decoration: underline;
  margin-right: 0.2em;
  color: var(--tf-color-16);
}

.article.container .entry-related-channels .entry-related-channel:last-child {
  margin-right: 0;
}

.article.container .entry-meta {
  overflow: hidden;
  margin: 2px 0;
}

.article.container .entry-meta .share {
  float: right;
  margin-top: 1px;
}

@media (max-width: 768px) {
  .article.container .entry-meta {
    z-index: 999;
    position: fixed;
    left: 0;
    bottom: -1px;
    width: 100%;
    background: var(--tf-color-2);
    padding: 10px 15px;
    height: 50px;
    margin-top: 0;
  }
}

.article.container .entry {
  font-size: 16px;
  letter-spacing: 1px;
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  padding-bottom: 8px;
}

.article.container .entry .entry-url {
  margin: 0 0 1em;
  font-size: 14px;
  text-align: center;
}

.article.container .entry .entry-url > a {
  color: #383838;
  font-family: Roboto, "Helvetica Neue", sans-serif;
}

.article.container .entry.collapsed .entry-more-read {
  display: block;
  margin-top: 0;
  clear: both;
  text-align: center;
  font-family: Roboto, "Helvetica Neue", sans-serif;
  position: relative;
}

.article.container .entry.collapsed .entry-more-read .material-icons {
  font-size: 14px;
  vertical-align: top;
  padding-top: 2px;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 50px;
  }
  body .footer {
    display: none;
  }
}

.pin {
  float: right;
  margin-right: 24px;
}

.pin__button {
  border: none;
  padding: 2px 8px 3px 4px;
  height: auto;
}

.pin__button:focus, .pin__button:hover, .pin__button:active {
  transform: none;
  opacity: 0.8;
}

.pin__button:focus.pin__button--pin, .pin__button:hover.pin__button--pin, .pin__button:active.pin__button--pin {
  color: var(--tf-color-51) !important;
}

.pin__button:focus.pin__button--unpin, .pin__button:hover.pin__button--unpin, .pin__button:active.pin__button--unpin {
  color: #eb2142 !important;
}

.pin__button .material-icons {
  vertical-align: middle;
}

.pin__number {
  display: inline-block;
  vertical-align: top;
  padding-top: 10px;
  color: var(--tf-color-51);
}

.pin__text {
  margin-left: 4px;
  color: var(--tf-color-51);
  vertical-align: middle;
}

.techfeed-rank {
  display: inline-block;
  margin: 0 0 0.5em 0;
}

.rank {
  border: 1px solid var(--tf-color-51);
  padding: 3px 5px 1px;
  border-radius: 3px;
  font-size: 10px;
  color: var(--tf-color-51);
  line-height: 1;
  padding-bottom: 3px;
  color: var(--tf-color-51);
}

.rank__type {
  display: inline-block;
  margin: 0 4px 0 0;
}

.rank__type--S {
  font-weight: bold;
}

.rank__type--A {
  font-weight: bold;
}

.rank__text {
  display: inline-block;
  font-size: 10px;
}

.comments {
  margin: 20px 0;
}

.article-content {
  text-align: left;
}

.article-content .tf-recruitment .entry-title::after {
  display: none;
}

.article-content .tf-recruitment .entry-title-text {
  font-size: 16px;
  text-decoration: underline;
}

.article-content .tf-recruitment .accordion-content {
  display: none;
}

/*# sourceMappingURL=index.css.map */
