/*---------------------------------------------
investment_trust_note
---------------------------------------------*/
.investment_trust_note{
font-size:90%;
color:#4e4e4e;
padding-left: 0em;
text-indent: -1.3em;
position: relative;
z-index: 10;
max-width: 1045px;
margin: 30px auto 0;
padding: 0 14px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between; }

/*---------------------------------------------
テーマタイトル
---------------------------------------------*/
.title_t {
  position: relative;
  background: #005698;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  padding: 2px 2em 2px 10px;/*右の三角形分を開ける*/
}
.title_t::after {
  position: absolute;
  content: '';
  right: 0px;
  bottom: 0px;
  border: none;
  border-right: 2em solid #fff;/*三角形を設定*/
  border-top: 2em solid transparent;
}

@media only screen and (max-width: 768px) {
  .title_t {
    font-size: 18px;
  }
}

.line {
display: flex;
align-items: center;
}

.line::after {
content: "";
height:2px;
flex-grow: 1;
background-color:#005698;
}

.line:after {
margin-left: 10px;
}

/*---------------------------------------------
ポイントタイトル
---------------------------------------------*/
.title_p {
  position: relative;
  background: #f0832c;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  padding: 2px 2em 2px 10px;/*右の三角形分を開ける*/
  margin-bottom: 0;
}
.title_p::after {
  position: absolute;
  content: '';
  right: 0px;
  bottom: 0px;
  border: none;
  border-right: 2em solid #fff;/*三角形を設定*/
  border-top: 2em solid transparent;
}

@media only screen and (max-width: 768px) {
  .title_p {
    font-size: 18px;
  }
}

.r-box {
  border: 2px solid #f0832c;
  border-radius: 5px;
  padding: 2em 1em 1em 1em;
  margin-top: -1em;
}

/*---------------------------------------------
上付き文字指定
---------------------------------------------*/
sup {
vertical-align: super;
font-size:small;
}
