@charset "UTF-8";
/***********************************
証券レビュー / 証研レポート / トピックス 詳細ページ用CSS
***********************************/

/***** 固定項目CSS *****/
.p-publicAuthor {
  margin-left: 25px;
  font-size: 1.8rem;
}
@media screen and (max-width: 980px) {
  .p-publicAuthor {
    margin-left: 0;
    font-size: 1.6rem;
  }
}

.p-publicButton {
  margin-top: 40px;
  text-align: center;
}

.p-publicButton_link {
  padding: 15px 20px 18px;
  border: 1px solid #99999a;
  border-radius: 6px;
  font-size: 1.8rem;
  background-color: #fff;
}
@media screen and (max-width: 980px) {
  .p-publicButton_link {
    padding: 10px 12px 13px;
    font-size: 1.6rem;
  }
}
.p-publicButton_link::before {
  display: inline-block;
  width: 24px;
  height: 26px;
  margin-right: 10px;
  background: url("/common/images/common/icon_pdf.png") no-repeat;
  background-size: cover;
  vertical-align: middle;
  content: "";
}
@media screen and (max-width: 980px) {
  .p-publicButton_link::before {
    width: 20px;
    height: 22px;
  }
}

.p-publicShare {
  display: flex;
  margin-top: 75px;
  padding: 15px 0;
  border-top: 1px solid #020202;
}
@media screen and (max-width: 767px) {
  .p-publicShare {
    display: block;
    margin-top: 50px;
    padding: 20px 0;
  }
}

.p-publicSns {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 240px;
  padding: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-publicSns {
    justify-content: center;
    max-width: 100%;
  }
}

.p-publicSns_item {
  margin: 0 5px;
}
@media screen and (max-width: 767px) {
  .p-publicSns_item {
    margin: 0 10px;
  }
}

.p-publicOtherWrap {
  margin-top: 60px;
  padding: 28px 28px 50px;
  border: 1px solid #99999a;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .p-publicOtherWrap {
    margin-top: 30px;
    padding: 20px;
  }
}

.p-publicOther_title {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-publicOther_title {
    font-size: 1.6rem;
  }
}

.p-publicOther_item {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .p-publicOther_item {
    margin-top: 8px;
  }
}

.p-publicOther_link {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-publicOther_link {
    font-size: 1.6rem;
  }
}
.p-publicOther_link:hover {
  color: #e50012;
}

/***** 印刷用CSS *****/
@media print {
  .l-header,
  .l-main_sidebar,
  .l-footer {
    display: none;
  }
  .l-main {
    padding-top: 0;
  }
  .p-pageHeader-publication {
    background-image: none;
    padding: 50px 0 50px 20px;
    height: auto;
  }
  .l-main_body {
    margin-bottom: 60px;
  }
  .l-main_contents {
    max-width: 100%;
  }
  .p-publicShare {
    display: none;
  }
}

/***** HTMLブロック用CSS (全文HTML) *****/
.p-htmlBlock {
  margin-top: 30px;
}

.p-htmlBlock.p-reportText {
  margin-top: 0;
}

.p-htmlBlock > *:first-child {
  margin-top: 0;
}

/* HEADING */
.p-htmlBlock h1 {
  margin-top: 1em;
  font-size: 24px;
  font-weight: 400;
}
@media screen and (width <= 768px) {
  .p-htmlBlock h1 {
    font-size: max(6.4vw, 24px);
  }
}

.p-htmlBlock h2 {
  margin-top: 1.5em;
  font-size: 22px;
  font-weight: 400;
}
@media screen and (width <= 768px) {
  .p-htmlBlock h2 {
    font-size: max(5.33vw, 20px);
  }
}

.p-htmlBlock h3 {
  font-size: 20px;
  font-weight: 400;
  margin-top: 1em;
}
@media screen and (width <= 768px) {
  .p-htmlBlock h3 {
    font-size: max(4.8vw, 18px);
  }
}

.p-htmlBlock h4 {
  font-size: 18px;
  font-weight: 400;
  margin-top: 1em;
}
@media screen and (width <= 768px) {
  .p-htmlBlock h4 {
    font-size: max(4.27vw, 16px);
  }
}

.p-htmlBlock h5 {
  font-size: 16px;
  font-weight: 400;
  margin-top: 1em;
}
@media screen and (width <= 768px) {
  .p-htmlBlock h5 {
    font-size: max(3.73vw, 14px);
  }
}

/* 画像 */
.p-htmlBlock p img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
}

.p-htmlBlock p img.img-left {
  float: left;
  margin-right: 2em;
}

.p-htmlBlock p img.img-right {
  float: right;
  margin-left: 2em;
}

.p-htmlBlock p:has(img)::after {
  content: "";
  display: block;
  clear: both;
}


/* 段落・文字 */
.p-htmlBlock p {
  line-height: 1.8;
  margin-top: 1em;
}

.p-htmlBlock strong {
  font-weight: 700;
}

.p-htmlBlock em {
  font-style: italic;
}

.p-htmlBlock s {
  text-decoration: line-through;
}

/* 線 */
.p-htmlBlock hr {
  border: 1px solid #CCC;
  border-bottom: none;
  margin: 2em 0;
}

/* リスト */
.p-htmlBlock ul {
  margin-top: 1em;
  list-style: none;
}
.p-htmlBlock ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.p-htmlBlock ul li::before {
  content: "・";
}

.p-htmlBlock ol {
  margin-top: 1em;
  list-style: decimal;
}
.p-htmlBlock ol li {
  list-style: decimal;
  margin-left: 1.5em;
  padding-left: 0.5em;
}
.p-htmlBlock ol li::marker {
  color: #555;
}

/* 引用 */
.p-htmlBlock blockquote p {
  background-color: #eee;
  padding: 1em;
  border-radius: 8px;
}

/* リンク */
.p-htmlBlock a {
  color: #242424;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: all .3s;
}

.p-htmlBlock a:hover {
  color: #e50012;
}

