@charset "UTF-8";
/* cost/risk - ret table */
.fiduciary_fund_table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}
.fiduciary_fund_table th,
.fiduciary_fund_table td {
  padding: 2px 8px;
  border: 1px solid #dde0e5;
  text-align: inherit;
}
.fiduciary_fund_table th {
  background: #eee;
}
.fiduciary_fund_table .cost {
  background-color: #dceaf7;
}
.fiduciary_fund_table .risk {
  background-color: #ffedcc;
}

/* fund list table */
.fiduciary_table_box {
  max-width: 100%;
  margin-top: 32px;
}
.fiduciary_table_box > table {
  table-layout: fixed;
  min-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.fiduciary_table_box th,
.fiduciary_table_box td {
  padding: 0.6em 0.8em;
  border: 1px solid #dde0e5;
  text-align: inherit;
}
.fiduciary_table_box tr:nth-child(1) th {
  background-color: rgba(200, 225, 235, 0.2);/* #f4f9fb */
  text-align: center;
}
.fiduciary_table_box tr:nth-child(n+2) th {
  background-color: rgba(220, 220, 220, 0.2);/* #f9f9f9 */
  font-weight: bold;
  text-align: center;
}
.fiduciary_table_box th:nth-child(1) {
  width: 80px;
}
.fiduciary_table_box th:nth-child(3),
.fiduciary_table_box th:nth-child(4),
.fiduciary_table_box th:nth-child(5) {
  width: 130px;
}
.fiduciary_table_box td:nth-child(3),
.fiduciary_table_box td:nth-child(4),
.fiduciary_table_box td:nth-child(5) {
  text-align: right;
}

.m-box__body {
  margin-top: 48px;
  margin-bottom: 64px;
}
.flex_wrap {
}
.flex_item {
}
@media (max-width: 767.98px) {
  .m-box__body {
    padding: 32px 24px;
  }
  .flex_wrap {
  }
  .flex_item {
    width: 296px;
    margin: 0 auto 10px;
    text-align: center;
  }
  .flex_item img {
    width: 280px;
  }
  .flex_item  + .flex_item {
    width: 100%;
    margin: 16px auto 0;
    text-align: left;
  }
}
@media (min-width: 778px) {
  .m-box__body {
    padding: 32px;
  }
  .flex_wrap {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .flex_item {
    width: 312px;
  }
  .flex_item img {
    width: 100%;
  }
  .flex_item  + .flex_item {
    width: calc(100% - 344px);
    line-height: 1.75;
  }
}

.hdi_category {
  display: flex;
  justify-content: space-between;
}
.hdi_category > span {
  display: block;
  text-align: center;
  line-height: 44px;
  border-radius: 8px;
  font-weight: bold;
  height: 44px;
  color: #af881b;
  font-size: 14px;
  border: solid 1px #af881b;
  background-color: #fff;
  border-radius: 8px;
}
@media (max-width: 767.98px) {
  .hdi_category > span {
    width: 140px;
    margin-top: 16px;
  }
}
@media (min-width: 778px) {
  .hdi_category > span {
    width: 144px;
    margin-top: 24px;
  }
}
@media (max-width: 767.98px) {
  .fiduciary_table_box {
    max-width: 100%;
    overflow-x: auto;
    background: linear-gradient(to left, rgba(0,0,0,0), rgba(0,0,0,0.2)) left, linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.2)) right;
    background-size: 15px 100%;
    background-attachment: scroll;
    background-repeat: no-repeat;
  }
  .fiduciary_table_box > table {
    background: linear-gradient(to left, rgba(255,255,255,0), #fff 20px) left, linear-gradient(to right, rgba(255,255,255,0), #fff 20px) right;
    background-size: 30px 100%;
    background-attachment: local;
    background-repeat: no-repeat;
  }
  .fiduciary_table_box th,
  .fiduciary_table_box td {
    border: 1px solid #dde0e5;
    /* white-space: nowrap; */
    word-break: keep-all;
  }
}

/* chart arrow */

/* Scatter Plot Chart Arrow */


.scatterplot_chart {
  position: relative;
  margin: 0;
  padding: 0 0 1.8em 2em;
}

.scatterplot_chart .direction {
  position: absolute;
  display: flex;
  font-size: 14px;
  text-align: center;
}

.scatterplot_chart .arrow {
  position: relative;
  flex-grow: 1;
  background-color: currentColor;
  line-height: 1;
  text-align: center;
}
.scatterplot_chart.cost .arrow {
  color: rgb(79, 150, 214);
}
.scatterplot_chart.risk .arrow {
  color: rgb(255, 165, 0);
}
.scatterplot_chart .arrow::before,
.scatterplot_chart .arrow::after {
  position: absolute;
  border: 1.3em solid transparent;
  content: "";
}

.scatterplot_chart .axis-y {
  top: 1em;
  bottom: 1.8em;
  left: 0;
  flex-direction: column;
  width: 2.6em;
}
.scatterplot_chart .axis-y .arrow {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  margin: 1.5em auto;
}
.scatterplot_chart .axis-y .arrow::before {
  top: 1px;
  left: 50%;
  transform: translate(-50%,-100%);
  border-bottom-color: currentColor;
}
.scatterplot_chart .axis-y .arrow::after {
  bottom: 1px;
  left: 50%;
  transform: translate(-50%,100%);
  border-top-color: currentColor;
}

.scatterplot_chart .axis-x {
  bottom: 0;
  right: 0;
  left: 2.6em;
  align-items: center;
  height: 2.6em;
}
.scatterplot_chart .axis-x .arrow {
  line-height: 1.5em;
  margin: auto 1.5em;
}
.scatterplot_chart .axis-x .arrow::before {
  top: 50%;
  left: 1px;
  transform: translate(-100%,-50%);
  border-right-color: currentColor;
}
.scatterplot_chart .axis-x .arrow::after {
  top: 50%;
  right: 1px;
  transform: translate(100%,-50%);
  border-left-color: currentColor;
}
