@charset "UTF-8";

/***********************************
証券レビュー / 証研レポート / トピックス 詳細ページ追加用CSS
***********************************/
.p-snsLink {
  --sns-color: #333;
  --sns-width: 22px;
  position: relative;
  display: flex;
  column-gap: 10px;
  width: fit-content;
  overflow: hidden;
  margin-left: auto;
}

@media screen and (max-width: 980px) {
  .p-snsLink {
    --sns-width: 22px;
    margin-bottom: 20px;
  }
}

@media print {
  .p-snsLink {
    display: none;
  }
}

.p-snsLink_list {
  display: flex;
  column-gap: 10px;
  transform: translateX(0);
  max-width: 138px;
  overflow: hidden;
  transition: all .3s ease;

  .p-snsLink.open & {
    transform: translateX(0);
    max-width: 250px;
  }
}

@media screen and (max-width: 980px) {
  .p-snsLink_list {
    max-width: 105px;
  }
}

.p-snsLink_icon {
  display: block;
  width: var(--sns-width);
  aspect-ratio: 1;
  background-color: var(--sns-color);
  mask-repeat: no-repeat;
  mask-size: cover;
  mask-position: center;

  &._printer {
    mask-image: url(/common/images/common/sns/icon_printer.svg);
  }

  &._mail {
    mask-image: url(/common/images/common/sns/icon_mail.svg);
  }

  &._x {
    mask-image: url(/common/images/common/sns/icon_x.svg);
  }

  &._fb {
    mask-image: url(/common/images/common/sns/icon_fb.svg);
  }

  &._line {
    mask-image: url(/common/images/common/sns/icon_line.svg);
  }

  &._note {
    mask-image: url(/common/images/common/sns/icon_note.svg);
  }

  &._linkedin {
    mask-image: url(/common/images/common/sns/icon_linkedin.svg);
  }
}

.p-snsLink_btn {
  width: var(--sns-width);
  aspect-ratio: 1;
  border: 1px solid var(--sns-color);
  border-radius: 50%;
  font-size: 11px;
  text-align: center;
  color: var(--sns-color);
  cursor: pointer;
}

@media screen and (max-width: 980px) {
  .p-snsLink_btn {
    font-size: 11px;
  }
}


figure.c-figure figcaption {
  margin-top: 1rem;
}

div.footnotes ol li,
div.index ol li {
  text-indent: -2em;
  padding-left: 2em;
  list-style-type: none;
}

div.frame-line {
  padding: 0em 1em 1em 1em;
  border: solid 1px;
}

div.biography dl dt {
  margin-top: 1em;
}

div.biography dl dd {
  padding-left: 1em;
}

div.boxed-note {
  margin-top: 1em;
  background-color: #eeeeee;
  border: 1px solid #666666;
  padding: 0em 1em 1em 1em;
}

div.img-small {
  max-width: 280px;
}