/*=================================

common

==================================*/
* {
  box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, figure, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: #333;
}
html {
  font-size: 16px;
}
em, b, strong {
  font-style: normal;
}
body, table, input, textarea, select, option {
  font-family: 'Noto Sans JP', Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Helvetica Neue", Meiryo, sans-serif;
  font-size: 1rem;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
:focus {
  outline: 0;
}
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}
a, a:link {
  color: #000;
  text-decoration: none;
}
a:visited {
  color: #000;
}
a:hover {
  color: #000;
}
a:active {
  color: #000;
}
/*design 260414*/
header figure {
  max-width: 1280px;
  padding: 0 24px;
  margin: 0 auto;
}
body {
  background: #BFC1C5;
  position: relative;
}
section {
  background: #fff;
}
a.floatBtn {
  position: fixed;
  z-index: 999;
  background: #B98202;
  color: #fff;
  writing-mode: vertical-rl;
  top: 40%;
  transform: translateY(-50%);
  right: 0;
  font-weight: bold;
  padding: 1em;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
}
.ArrowupR_Icon {
  vertical-align: middle;
  width: fit-content;
  height: fit-content;
}
.flex {
  display: flex;
}
.column {
  flex-direction: column;
}
.bold {
  font-weight: bold;
}
header, main, footer {
  width: 100%;
  margin: 0px;
  padding: 0px;
  position: relative;
}
main {
  max-width: 1028px;
  margin: 0 auto;
}
br.sp, br.tablet, br.sp2 {
  display: none;
}
br.tabN {
  display: inline;
}
.Wrap {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 0;
}
.Center {
  justify-content: center;
  align-items: center;
}
.txt {
  font-size: 1.125rem;
  font-weight: normal;
}
header {
  background: #fff;
  box-shadow: 0 0 6px #333;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
}
header figure img {
  height: 24px;
  margin: 24px 0;
  aspect-ratio: 337 / 24;
  max-width: 337px;
}
sup {
  font-size: 0.5em;
}
.note {
  font-size: 0.75rem;
}
.markerline {
  background: linear-gradient(transparent 60%, #FFF0B5 60%, #FFF0B5 90%, transparent 90%);
}
/* ナビゲーション全体 */
.NavContainer {
  background-color: #5C93C1;
  width: 100%;
  display: flex;
  justify-content: center; /* PC時は中央寄せ */
  align-items: center;
  height: 45px;
}
.menuItems {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  grid-template-columns: repeat(1, minmax(45px, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: fit-content;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .menuItems {
    grid-template-columns: repeat(2, minmax(45px, 1fr));
  }
}
.menuItems li {
  width: 100%;
  height: 100%;
  flex: 1;
  position: relative;
}
.menuItems li::before {
  height: 80%;
  width: 1px;
  background: #fff;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.menuItems li:last-of-type::after {
  height: 80%;
  width: 1px;
  background: #fff;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.menuItems a {
  color: #fff;
  text-decoration: none;
  font-size: 0.694rem;
  display: inline-flex;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  padding: 0 0.45em;
  position: relative;
  letter-spacing: -0.02em;
}
.MenuToggle {
  display: none;
}
.MenuIcon {
  display: none;
}
@media (max-width: 1024px) {
  .NavContainer {
    justify-content: flex-end;
    height: auto;
    padding: 10px 20px;
  }
  .MenuIcon {
    cursor: pointer;
    z-index: 100;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .MenuIcon span, .MenuIcon span::before, .MenuIcon span::after {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    position: relative;
    transition: 0.3s;
  }
  .MenuIcon span::before {
    content: "";
    top: -8px;
    position: absolute;
  }
  .MenuIcon span::after {
    content: "";
    top: 8px;
    position: absolute;
  }
  /* スマホ用メニュー */
  .menuItems {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #5C93C1;
    padding: 0 0 1rem;
    text-align: center;
    /*gap: 1rem;*/
    z-index: 9999;
    max-width: inherit;
  }
  .menuItems li a > br {
    display: none;
  }
  .menuItems li {
    padding: 0.25em;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  .menuItems li:first-child {
    border-top: none;
  }
  .menuItems li::before {
    display: none;
  }
  .menuItems li a {
    font-size: 1rem;
  }
  .MenuToggle:checked ~ .menuItems {
    display: flex;
    height: auto;
    height: calc(100dvh - 45px);
  }
  .MenuToggle:checked + .MenuIcon span {
    background: transparent;
  }
  .MenuToggle:checked + .MenuIcon span::before {
    transform: rotate(45deg);
    top: 0;
  }
  .MenuToggle:checked + .MenuIcon span::after {
    transform: rotate(-45deg);
    top: 0;
  }
}
a.gotoTop {
  background: #000;
  color: #FFF;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #000;
  box-shadow: 0 1px 2px #000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  border-radius: 50%;
  position: fixed;
  right: 50px;
  bottom: 20px;
  text-align: center;
  z-index: 999;
}
a.gotoTop.show {
  display: block;
  opacity: 1;
}
a.gotoTop.show {
  opacity: 1;
  visibility: visible;
}
.txt-justify {
  text-align: justify;
  text-justify: inter-character;
  word-break: break-all;
  font-feature-settings: "palt";
}
/*KV*/
#kvBox {
  margin-top: 156px;
  width: 100%;
}
#kvBox img {
  width: 100%;
}
.mainttl {
  padding: 26px;
  background: #002060;
  position: relative;
}
.triangle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-style: solid;
  border-width: 52px 52px 0 0; /* サイズ調整 */
  border-color: #FFE88D transparent transparent transparent; /* 色 */
}
.triangle::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-style: solid;
  border-width: 0 0 52px 52px; /* サイズ調整 */
  border-color: transparent transparent #FFE88D transparent; /* 色 */
}
.mainttl h1, .mainttl h1 span {
  color: #FFE88D;
  font-size: 2.5rem;
  text-align: center;
}
.mainttl h1 span {
  font-size: 0.6em;
  display: block;
  font-weight: normal;
}
/*リード　セクション*/
#leadBox {
  background: #fff;
}
.mainleadtxt {
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 52px;
}
.mainleadtxt .small {
  font-size: 0.85em;
  color: #002060;
}
.mainleadtxt > * {
  color: #002060;
}
#leadBox h2 {
  text-align: center;
  color: #004986;
}
#leadBox .features {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}
.featuresBox {
  border: 2px solid #004986;
  position: relative;
  margin-top: 24px;
  padding: 1em 1.2em;
}
.featuresBox.triangle::before {
  border-width: 35px 35px 0 0; /* サイズ調整 */
  border-color: #004986 transparent transparent transparent; /* 色 */
}
.featuresBox.triangle::after {
  border-width: 0 0 35px 35px; /* サイズ調整 */
  border-color: transparent transparent #004986 transparent; /* 色 */
}
.featuresBox .iconWrap {
  flex: 1;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  max-height: 100px;
  padding: 16px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.featuresBox .iconWrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.featuresBox:nth-of-type(2) .iconWrap {
  padding: 10px 0;
}
.featuresBox p, .featuresBox em {
  color: #004986;
}
.featuresBox p {
  flex: 4;
  font-weight: bold;
  font-size: 1.125rem;
  margin-left: 0.5em;
}
.featuresBox .bold {
  font-size: 1.5em;
  line-height: 1.4;
}
#leadBox .note {
  color: #004986;
  text-align: center;
  margin-top: 2em;
}
#aboutBox {
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url("/fund/feature/globalresources/images/hsbc2605-aboutboxphoto.png");
  background-size: cover;
  background-position: center 43%;
  background-repeat: no-repeat;
  mask-image: linear-gradient(to bottom, transparent, black 35px);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 35px);
}
#aboutBox h2 {
  font-size: 1.375rem;
  color: #fff;
  display: inline-block;
  position: relative;
  text-align: center;
}
/*装飾*/
.decUnderline::before {
  content: "";
  background: #fff;
  display: inline-block;
  width: 30px;
  height: 2px;
  position: absolute;
  bottom: -4px;
  left: 50%;
  display: inherit;
  transform: translateX(-50%);
}
#aboutBox .Wrap {
  justify-content: center;
  align-items: center;
  padding-top: 70px;
}
#aboutBox p {
  color: #fff;
  text-align: center;
  line-height: 1.7;
  margin-top: 1.5em;
  font-size: 1.125rem;
}
#aboutBox strong {
  color: #FFE88D;
}
.flex.about-imagesWrap {
  width: 100%;
}
.flex.about-imagesWrap img {
  width: 25%;
}
.decLine {
  font-size: 1.75rem;
  color: #004986;
  line-height: 1.4;
  padding: 0.5em 0.75em 0.35em;
  border-top: 3px solid #004986;
  border-bottom: 3px solid #004986;
  display: inline-block;
  text-align: center;
  margin-bottom: 1.25em;
}
.decLine + .txt {
  text-align: center;
}
.sectionMargin {
  margin: 35px 0;
  width: 80%;
}
.sectionMargin:last-child {
  margin-bottom: 0;
}
#sec01, #sec05, .noteTxt {
  background: #FBFBFB;
}
#sec02, #sec04, #sec06, #sec08 {
  background: #fff;
}
#sec03, #sec07 {
  background: #E9F5FF;
}
#btnBox {
  background: #ECECEC;
}
h3.graphTitle {
  font-size: 1.25rem;
  text-align: center;
  display: block;
}
.date {
  font-size: 0.875rem;
  text-align: center;
  display: block;
  margin-top: 0.25em;
}
.indent {
  padding-left: 1em;
  text-indent: -1em;
}
.indent2 {
  padding-left: 1.35em;
  text-indent: -1.35em;
}
.kome::before {
  content: '\203B'
}
.sec03Box {
  gap: 1.25rem;
  width: 100%;
  max-width: 776px;
}
.sec03Box li {
  flex: 1;
  background: #fff;
  box-shadow: 0 2px 3px 0 rgba(127, 168, 203, 0.15), 0 3px 6px 2px rgba(127, 168, 203, 0.15);
  display: block;
  transform: translateY(0);
  transition: all 0.25s ease;
}
.sec03Box li:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 3px 0 rgba(127, 168, 203, 0.15), 0 8px 8px 2px rgba(127, 168, 203, 0.15);
}
.sec03BoxHeader {
  background: #002060;
  padding: 1em;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sec03BoxHeader h3 {
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
  font-size: 1rem;
}
.sec03BoxHeader .NumWrap {
  background-image: url("/fund/feature/globalresources/images/hsbc2604-sec03boxh3.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 34px;
  font-size: 0.938rem;
}
.sec03BoxHeader .num {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth"100;
  display: inline-block;
  line-height: 1;
}
.sec03Box .imgWrap {
  display: 100%;
}
.sec03Box .imgWrap.flex img {
  width: 50%;
}
.sec03Box .txt {
  padding: 1em 1.2em;
  line-height: 1.5;
  font-size: 0.875rem;
}
.sec03Box a {
  width: 100%;
  height: 100%;
}
/*資源価格の騰落率*/
.sec04Box {
  gap: 24px;
}
.sec04Box li {
  padding: 0.75rem;
  overflow: hidden;
  position: relative;
  z-index: 0;
  flex: 1;
  background-size: cover;
  background-position: center;
}
.sec04Box li:first-child {
  background-image: url("/fund/feature/globalresources/images/hsbc2604-sec04a.png");
}
.sec04Box li:nth-child(2) {
  background-image: url("/fund/feature/globalresources/images/hsbc2604-sec04b.png");
}
.sec04Box li:nth-child(3) {
  background-image: url("/fund/feature/globalresources/images/hsbc2604-sec04c.png");
}
.sec04Box li::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  backdrop-filter: blur(1px);
  z-index: -1;
  transform: scale(1.1);
  background: rgba(0, 0, 0, 0.5);
}
.sec04Box li h4 {
  color: #fff;
  position: relative;
  display: inline-block;
  text-align: center;
  margin-bottom: 1.5em;
  font-size: 1rem;
}
.sec04Box li h4::before {
  width: 10px;
  bottom: -8px;
}
.sec04Box li span, .sec04Box li p {
  color: #fff;
  font-size: 0.75rem;
}
.sec04Box + .note, #sec05 .imgWrap + .note, .sec07Box + .note {
  margin-top: 1em;
}
#sec05 .flex.imgWrap {
  width: 100%;
  gap: 24px;
  justify-content: space-between;
  margin-top: 1.5rem;
}
#sec05 .imgWrap img {
  width: calc(50% - 12px);
  height: auto;
}
.sec07Box {
  width: 80%;
  gap: 18px;
}
.sec07BoxHeader {
  width: 100%;
}
.sec07BoxHeader * {
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sec07BoxHeader .num {
  background: #5C93C1;
  font-size: 1.125rem;
  font-weight: bold;
  flex: 1;
  padding: 0.5em;
}
.sec07BoxHeader h3 {
  background: #002060;
  flex: 3;
  padding: 0.5em;
  font-size: 1.25rem;
  flex-wrap: wrap;
}
.sec07BoxHeader h3 .small {
  font-size: 0.9em;
}
.sec07BoxInner {
  background: #fff;
  min-height: 300px; /*gap: 1.5rem;*/
}
.sec07BoxInner .square {
  flex: 1;
}
.sec07BoxInner .graphWrap {
  flex: 1;
  margin: 2rem 1.5rem 1rem;
}
.sec07BoxInner.flex.reverse {
  flex-direction: row-reverse;
}
.sec07BoxInner .square li {
  z-index: 1;
  width: 90%;
  margin-bottom: 1em
}
.sec07BoxInner .square li:last-child {
  margin-bottom: 0;
}
.sec07BoxInner .square {
  width: 100%;
  height: auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1em;
  position: relative;
  z-index: 0;
  font-weight: bold;
  list-style: square;
  padding-left: 2.7em;
}
.sec07Box li .sec07BoxInner .square::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
.sec07Box li:first-child .sec07BoxInner .square::before {
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url("/fund/feature/globalresources/images/hsbc2604-sec07a.png") no-repeat center;
  background-size: auto 110%;
  background-position: 86% 36%;
  -webkit-mask-image: linear-gradient(to right, black 70%, transparent 100%);
  mask-image: linear-gradient(to right, black 70%, transparent 100%);
}
.sec07Box li:nth-child(2) .sec07BoxInner .square::before {
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url("/fund/feature/globalresources/images/hsbc2604-sec03box02.png") no-repeat center;
  background-size: auto 110%;
  -webkit-mask-image: linear-gradient(to left, black 70%, transparent 100%);
  mask-image: linear-gradient(to left, black 70%, transparent 100%);
}
.sec07Box li:nth-child(3) .sec07BoxInner .square::before {
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url("/fund/feature/globalresources/images/hsbc2604-sec07c.png") no-repeat center;
  background-size: auto 110%;
  -webkit-mask-image: linear-gradient(to right, black 70%, transparent 100%);
  mask-image: linear-gradient(to right, black 70%, transparent 100%);
}
#sec08 h2 {
  background: #004986;
  color: #fff;
  position: relative;
  padding: 1em;
  text-align: center;
  font-size: 1.75rem;
}
#sec08 .triangle::before {
  border-color: #5C93C1 transparent transparent transparent;
}
#sec08 .triangle::after {
  border-color: transparent transparent #5C93C1 transparent;
}
#sec08 h3.triangle::before {
  border-color: #fff transparent transparent transparent;
  top: 2px;
  left: 2px;
  border-width: 24px 24px 0 0;
}
#sec08 h3.triangle::after {
  border-color: transparent transparent #fff transparent;
  bottom: 2px;
  right: 2px;
  border-width: 0 0 24px 24px;
}
#sec08 h3.decUnderline {
  position: relative;
  display: inline-block;
  color: #002060;
}
#sec08 h3.decUnderline::before {
  background: #002060;
  bottom: -8px;
}
#sec08 h3 + .txt {
  text-align: center;
  margin-top: 1.5em;
  margin-bottom: 1em;
}
#sec08 .sectionMargin {
  max-width: 80%;
  margin: 0 auto;
}
#sec08 .sec08BoxA {
  width: 100%;
  gap: 24px;
  margin-bottom: 4rem;
}
#sec08 .sec08BoxA li {
  flex: 1;
  background: #002060;
  padding: 0.75rem;
}
#sec08 .sec08BoxA li * {
  color: #fff;
}
#sec08 .sec08BoxA li h4.decUnderline {
  font-size: 1rem;
  position: relative;
  display: inline-block;
}
#sec08 .sec08BoxA li h4.decUnderline::before {
  width: 24px;
  bottom: -8px;
}
#sec08 .sec08BoxA li p {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1em;
  line-height: 1;
}
#sec08 .sec08BoxA li p em {
  font-style: normal;
  font-size: 1.5em;
  line-height: 1;
}
#sec08 .hsbcDetail {
  border: 2px solid #5C93C1;
  width: 100%;
  position: relative;
  padding-bottom: 3rem;
}
#sec08 .hsbcDetail h3 {
  font-size: 1.5rem;
  background: #5C93C1;
  color: #fff;
  display: inline-block;
  padding: 0.5em 2.5em 0.35em;
  position: absolute;
  top: -1.2em;
  left: 50%;
  transform: translateX(-50%);
}
#sec08 .hsbcDetail h3 + .txt {
  margin-top: 3em;
}
#sec08 .sec08BoxB {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  width: 80%;
  margin: 0 auto;
}
#sec08 .sec08BoxB li {
  background: #F3F7FB;
  height: 100%;
  padding: 1rem;
}
#sec08 .sec08BoxB li:nth-child(-n+3) {
  grid-column: span 2;
}
#sec08 .sec08BoxB li:nth-child(n+4) {
  grid-column: span 3;
}
#sec08 .sec08BoxB li .iconWrap {
  display: contents;
  width: 30px;
  height: 30px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
#sec08 .sec08BoxB li .iconWrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#sec08 .sec08BoxB li p {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  margin-top: 0.35em;
}
#sec08 .sec08BoxB li p em {
  color: #5C93C1;
  font-size: 1.6em;
  font-style: normal;
}
#sec08 .sec08BoxB li ul li {
  justify-content: center;
  padding: 0;
}
#sec08 .sec08BoxB li ul {
  gap: 10px;
}
#sec08 .sec08BoxB li ul li .title {
  font-size: 0.813rem;
  color: #004986;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  margin-bottom: 0.25em;
  margin-top: 0.5em;
}
#sec08 .sec08BoxB li ul li .rankWrap {
  background-image: url("/fund/feature/globalresources/images/hsbc2604-sec08-icon04.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 76px;
  height: 72px;
  text-align: center;
}
#sec08 .sec08BoxB li ul li .rank {
  font-size: 1.5rem;
  color: #5C93C1;
  font-weight: bold;
  display: inline-block;
  line-height: 1;
  transform: translateY(-4px);
}
#sec08 .sec08BoxB li:last-child p {
  font-size: 1.125rem;
}
#sec08 .sec08BoxB li:last-child p .bold {
  font-size: 1.27em;
  display: inline-block;
}
#sec08 .sec08BoxB li:last-child span {
  color: #5C93C1;
  font-weight: bold;
  font-size: 2.25rem;
  text-align: center;
}
#sec08 .sec08BoxB li:last-child span b {
  font-size: 1.4em;
}
#sec08 .sec08BoxB li:nth-child(4), #sec08 .sec08BoxB li:nth-child(5) {
  position: relative;
}
#sec08 .sec08BoxB li:nth-child(4)::before {
  border-width: 28px 28px 0 0;
  border-color: #9BC2E2 transparent transparent transparent;
}
#sec08 .sec08BoxB li:nth-child(4)::after {
  border-width: 0 0 28px 28px;
  border-color: transparent transparent #9BC2E2 transparent;
}
#sec08 .sec08BoxB li:nth-child(5)::before {
  border-width: 28px 28px 0 0;
  border-color: #9BC2E2 transparent transparent transparent;
}
#sec08 .sec08BoxB li:nth-child(5)::after {
  border-width: 0 0 28px 28px;
  border-color: transparent transparent #9BC2E2 transparent;
}
#sec08 .sec08BoxB + .note {
  width: 80%;
  margin: 0 auto;
  margin-top: 1em;
}
#btnBox a {
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
  background: #B98202;
  box-shadow: 0 4px 2px 0 rgba(0, 0, 0, .15);
  padding: 1.2em 2.5em;
  text-align: center;
  width: 100%;
  max-width: 400px;
  transform: translateY(0);
  transition: all 0.25s ease;
}
#btnBox a:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .15), 0 6px 5px 0 rgba(0, 0, 0, .1);
}
#btnBox a .ArrowupR_Icon {
  vertical-align: middle;
  margin-left: 0.25em;
}
.noteTxt .sectionMargin {
  max-width: 80%;
  margin: 0 auto;
  font-size: 0.75rem;
}
.noteTxt b {
  display: block;
  font-weight: bold;
}
.noteTxt > div > p, .noteTxt > div > div {
  margin-bottom: 2rem;
}
.noteTxt > div > p:last-child {
  margin-bottom: 0;
}
section.noteTxt p {
  width: 100%
}
.graphWrap {
  margin: 1.5rem 0;
}
#sec01_B .date + div.flex {
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}
#sec01_B .graphWrap {
  width: 100%;
}
#sec01_B .graphWrap h4 {
  text-align: center;
}
/*グラフ*/
.c-graph__title {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 24px;
  text-align: center;
}
/* アスペクト比を維持 キャンバス*/
.c-graph__canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
}
/* 各レイヤー */
.c-graph__layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}
.c-graph.is-inview .c-graph__layer {
  animation-duration: var(--duration, 0.8s);
  animation-fill-mode: forwards;
  animation-timing-function: var(--easing, cubic-bezier(0.25, 1, 0.5, 1));
  animation-delay: calc((var(--step, 1) * 0.3s) + var(--delay-add, 0s));
}
.c-graph.is-inview .c-graph__layer[data-anim="fade-in"] {
  animation-name: animFadeIn;
}
@keyframes animFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.c-graph__layer[data-anim="mask-ltr"] {
  clip-path: inset(0 var(--mask-start, 100%) 0 0);
}
.c-graph.is-inview .c-graph__layer[data-anim="mask-ltr"] {
  animation-name: animMaskLTR;
}
@keyframes animMaskLTR {
  from {
    clip-path: inset(0 var(--mask-start, 100%) 0 0);
    opacity: 1;
  }
  to {
    clip-path: inset(0 var(--mask-end, 0%) 0 0);
    opacity: 1;
  }
}
.c-graph__layer[data-anim="mask-btt"] {
  clip-path: inset(100% 0 0 0);
  opacity: 1;
}
.c-graph.is-inview .c-graph__layer[data-anim="mask-btt"] {
  animation-name: animMaskBTT;
}
@keyframes animMaskBTT {
  from {
    clip-path: inset(100% 0 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
.c-graph.is-inview .c-graph__layer[data-anim="float-up"] {
  animation-name: animFloatUp;
}
@keyframes animFloatUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@property --pie-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.c-graph__layer[data-anim="pie-reveal"] {
  opacity: 1;
  -webkit-mask-image: conic-gradient(from 0deg at 50% 50%, #000 var(--pie-angle, 0deg), transparent 0);
  mask-image: conic-gradient(from 0deg at 50% 50%, #000 var(--pie-angle, 0deg), transparent 0);
}

.c-graph.is-inview .c-graph__layer[data-anim="pie-reveal"] {
  animation-name: animPieReveal;
  animation-timing-function: linear;
}

@keyframes animPieReveal {
  from {
    --pie-angle: 0deg;
  }
  to {
    --pie-angle: 360deg;
  }
}
/* --- Accessibility --- */
/*視差効果を減らす */
@media (prefers-reduced-motion: reduce) {
  .c-graph__layer {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: inset(0 0 0 0) !important;
  }
}
/*調整*/
/*01*/
.c-graph__canvas.graph_01 {
  aspect-ratio: 248 / 96;
}
.graph_01 .c-graph__layer:nth-child(1) {
  z-index: 1;
}
.graph_01 .c-graph__layer:nth-child(2) {
  z-index: 2;
}
.graph_01 .c-graph__layer:nth-child(3) {
  z-index: 0;
}
.graph_01 .c-graph__layer:nth-child(4) {
  z-index: 3;
}
.graph_01 .c-graph__layer:nth-child(5) {
  z-index: 0;
}
.graph_01 .c-graph__layer:nth-child(6) {
  z-index: 1;
}
/*02*/
#sec01_B .c-graph__canvas {
  aspect-ratio: 22 / 15;
  margin-top: 0.5rem;
}
/*03*/
.c-graph__canvas.graph_03 {
  aspect-ratio: 150 / 71;
}
.graph_03 .c-graph__layer:nth-child(1) {
  z-index: 1;
}
.graph_03 .c-graph__layer:nth-child(2) {
  z-index: 2;
}
.graph_03 .c-graph__layer:nth-child(3) {
  z-index: 3;
}
.graph_03 .c-graph__layer:nth-child(4) {
  z-index: 0;
}
.graph_03 .c-graph__layer:nth-child(5) {
  z-index: 2;
}
/*04*/
.c-graph__canvas.graph_04 {
  aspect-ratio: 187 / 101;
}
/*05*/
.c-graph__canvas.graph_05 {
  aspect-ratio: 375 / 182;
}
.graph_05 .c-graph__layer:nth-child(1) {
  z-index: 1;
}
.graph_05 .c-graph__layer:nth-child(2) {
  z-index: 2;
}
.graph_05 .c-graph__layer:nth-child(3) {
  z-index: 2;
}
.graph_05 .c-graph__layer:nth-child(4) {
  z-index: 2;
}
.graph_05 .c-graph__layer:nth-child(5) {
  z-index: 2;
}
.graph_05 .c-graph__layer:nth-child(6) {
  z-index: 2;
}
/*06*/
.c-graph__canvas.graph_06 {
  aspect-ratio: 1568 / 993;
}
.graph_06 .c-graph__layer:nth-child(1) {
  z-index: 1;
}
.graph_06 .c-graph__layer:nth-child(2) {
  z-index: 2;
}
.graph_06 .c-graph__layer:nth-child(3) {
  z-index: 3;
}
.graph_06 .c-graph__layer:nth-child(4) {
  z-index: 3;
}
.graph_06 .c-graph__layer:nth-child(5) {
  z-index: 2;
}
.graph_06 .c-graph__layer:nth-child(6) {
  z-index: 3;
}
.graph_06 .c-graph__layer:nth-child(7) {
  z-index: 3;
}
.graph_06 .c-graph__layer:nth-child(8) {
  z-index: 2;
}
.graph_06 .c-graph__layer:nth-child(9) {
  z-index: 3;
}
.graph_06 .c-graph__layer:nth-child(10) {
  z-index: 3;
}
/*07*/
.sec07BoxInner h4 {
  text-align: center;
}
.c-graph__canvas.graph_07 {
  aspect-ratio: 99 / 61;
}
#sec06 h3.graphTitle {
  display: flex;
  flex-direction: column;
  width: max-content;
  text-align: left;
  align-items: flex-start;
  margin: 0 auto;
}
#sec06 h3.graphTitle span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #sec06 h3.graphTitle {
    width: 100%;
  }
  #sec06 h3.graphTitle span {
    display: inline-block;
    white-space: pre-wrap;
    margin-right: auto;
  }
  main {
    max-width: calc(100% - 24px);
  }
  br.sp {
    display: inline;
  }
  br.tabN {
    display: none;
  }
  header figure {
    height: 66px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  header figure img {
    max-width: 200px;
    ;
    height: auto;
    margin: auto 16px;
  }
  .NavContainer {
    padding: 10px 16px;
    height: 45px;
  }
  .Wrap {
    max-width: 100%;
    padding: clamp(2.1rem, 6.25vw, 3rem) 16px;
  }
  /*sp-column*/
  .sec03Box, .sec04Box, .sec07BoxHeader, .featuresBox, #sec01_B .date + div.flex {
    flex-direction: column;
  }
  .sec07BoxInner, .sec07BoxInner.flex.reverse {
    flex-direction: column-reverse;
  }
  /*  #kvBox {
    margin-top: 110px;
  }*/
  .mainttl h1, .mainttl h1 span {
    font-size: clamp(1.4rem, 4.167vw, 2rem)
  }
  .mainttl h1 span {
    font-size: clamp(1.05rem, 3.125vw, 1.5rem)
  }
  .mainttl {
    padding: clamp(1.05rem, 3.125vw, 1.5rem);
  }
  .mainttl.triangle::before, #sec08 .triangle::before {
    border-width: clamp(2.1rem, 6.25vw, 3rem) clamp(2.1rem, 6.25vw, 3rem) 0 0;
  }
  .mainttl.triangle::after, #sec08 .triangle::after {
    border-width: 0 0 clamp(2.1rem, 6.25vw, 3rem) clamp(2.1rem, 6.25vw, 3rem);
  }
  .mainleadtxt {
    font-size: clamp(1.225rem, 3.646vw, 1.75rem);
    margin-bottom: clamp(2.1rem, 6.25vw, 3rem);
  }
  #leadBox h2 {
    font-size: clamp(1.05rem, 3.125vw, 1.5rem);
  }
  .featuresBox p {
    margin-left: 0;
    text-align: center;
  }
  .decLine {
    font-size: clamp(1.25rem, 3.125vw, 1.5rem);
    border-top: 2px solid #004986;
    border-bottom: 2px solid #004986;
    padding: 0.5em 0.75em 0.25em;
  }
  .sec03BoxHeader h3 > br {
    display: none;
  }
  .sec03Box .imgWrap img {
    width: 100%
  }
  .sec03Box {
    max-width: 80%;
  }
  .sec03Box li {
    min-width: 272px;
  }
  /*sp-fontsize*/
  .featuresBox, #aboutBox p, .txt {
    font-size: 1rem;
  }
  h3.graphTitle, .sec03BoxHeader h3, .sec07BoxHeader h3, #sec08 .sec08BoxA li p, #sec08 .sec08BoxB li p {
    font-size: 1.125rem;
  }
  .sec07BoxHeader h3 .small, .sec07BoxHeader .num {
    font-size: 0.875rem;
  }
  .featuresBox .bold, .sec08BoxA li p em, #sec08 .sec08BoxB li p em {
    font-size: 1.35em;
  }
  /*gap*/
  .sec04Box, #sec05 .flex.imgWrap, .sec07Box {
    gap: 1.125rem;
  }
  #sec05 .imgWrap img {
    width: calc(50% - 9px);
  }
  .sec07BoxInner .graphWrap {
    margin: 1.5rem;
  }
  .sec07BoxInner .square {
    padding: 1.5em;
    min-height: 250px;
  }
  .sec07Box ul {
    overflow: hidden;
  }
  .sec07Box li:first-child .sec07BoxInner .square::before, .sec07Box li:nth-child(2) .sec07BoxInner .square::before, .sec07Box li:nth-child(3) .sec07BoxInner .square::before {
    background-size: 100%;
    background-position: center;
    width: 101%;
    -webkit-mask-image: linear-gradient(to top, black 70%, transparent 100%);
    mask-image: linear-gradient(to top, black 70%, transparent 100%);
  }
  .sec07Box li:nth-child(2) .sec07BoxInner .square::before, .sec07Box li:nth-child(3) .sec07BoxInner .square::before {
    background-size: auto;
  }
  #sec08 h3.decUnderline {
    text-align: center;
  }
  #sec08 .sec08BoxA {
    gap: 0.75rem;
    text-align: center;
  }
  #sec08 .sec08BoxA li h4.decUnderline, #sec08 .sec08BoxA li p {
    min-height: 2em;
    line-height: 1.4;
  }
  #sec08 .hsbcDetail h3 {
    font-size: clamp(1.125rem, 2.604vw, 1.25rem);
    white-space: nowrap;
  }
  #sec08 h2 {
    font-size: clamp(1.25rem, 3.646vw, 1.75rem)
  }
  #sec08 .sec08BoxB li ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  #sec08 .sec08BoxB li {
    height: auto;
  }
  #sec08 .sec08BoxB li:last-child p {
    font-size: 1rem;
  }
  #sec08 .sec08BoxB li:nth-child(n+4) {
    grid-column: span 6;
  }
  .menuItems li a {
    font-size: 0.938rem;
    min-height: 2.5em;
  }
  a.gotoTop {
    right: 24px;
    bottom: 24px;
  }
  a.gotoTop.show {
    opacity: 0.5;
  }
  .featuresBox.triangle::before {
    border-width: clamp(1.225rem, 3.646vw, 1.75rem) clamp(1.225rem, 3.646vw, 1.75rem) 0 0;
  }
  .featuresBox.triangle::after {
    border-width: 0 0 clamp(1.225rem, 3.646vw, 1.75rem) clamp(1.225rem, 3.646vw, 1.75rem);
  }
  #sec08 h3.triangle::before {
    border-width: clamp(0.875rem, 2.604vw, 1.25rem) clamp(0.875rem, 2.604vw, 1.25rem) 0 0;
  }
  #sec08 h3.triangle::after {
    border-width: 0 0 clamp(0.875rem, 2.604vw, 1.25rem) clamp(0.875rem, 2.604vw, 1.25rem);
  }
  .sec03BoxHeader .NumWrap {
    width: 50px;
    height: 40px;
  }
}
@media screen and (max-width: 425px) {
  br.sp2 {
    display: inline;
  }
  #leadBox .features, .sectionMargin, .sec03Box, .sec07Box, #sec08 .sectionMargin, .noteTxt .sectionMargin {
    width: 100%;
    max-width: 100%;
  }
  #sec08 .sec08BoxB {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  #sec08 .sec08BoxB li:nth-child(-n+3) {
    grid-column: span 6;
  }
  #sec08 .sec08BoxA {
    flex-direction: column;
  }
  #sec08 .sec08BoxA li h4.decUnderline, #sec08 .sec08BoxA li p {
    min-height: auto;
  }
  .sec07Box li:first-child .sec07BoxInner .square::before {
    background-size: auto 115%;
  }
  .sec07Box li:nth-child(2) .sec07BoxInner .square::before, .sec07Box li:nth-child(3) .sec07BoxInner .square::before {
    background-size: auto;
  }
  #sec08 .hsbcDetail h3 {
    text-align: center;
  }
  #sec08 .hsbcDetail h3 + .txt {
    margin-left: 1em;
    margin-right: 1em;
    margin-top: 5em;
  }
  #sec08 .sec08BoxB {
    width: calc(100% - 24px)
  }
  .featuresBox .iconWrap {
    max-height: 150px;
    padding: 24px;
  }
  .featuresBox:nth-of-type(2) .iconWrap {
    padding: 16px;
  }
  #sec05 .flex.imgWrap {
    gap: 8px;
  }
  #sec05 .imgWrap img {
    width: calc(50% - 4px);
  }
  .sec07BoxInner .graphWrap {
    margin: 1.2rem 1rem 1rem;
  }
  .sec07BoxHeader h3 {
    text-align: center;
  }
}
@media screen and (max-width: 370px) {
  .sec07Box li:first-child .sec07BoxInner .square::before {
    background-size: auto 100%;
  }
}
@media screen and (min-width: 425px) and (max-width: 768px) {
  br.tablet {
    display: inline;
  }
}
/*260421修正*/
.footer {
  flex-shrink: 0;
  margin-top: auto;
  width: 100%;
  color: #fff;
  background: #BFC1C5;
}
.footer .footer-links {
  display: flex;
  flex-flow: column wrap;
  margin-right: 16px;
  padding: unset;
  text-align: left
}
.footer .footer-links .footer-link {
  display: inline-flex;
  padding-bottom: 8px
}
.footer .footer-links .footer-link .link {
  line-height: 1.5
}
.product-footer {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.product-footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 32px;
  column-gap: 32px;
  row-gap: 16px;
}
.product-footer .footer-container .footer-item {
  line-height: 1.5
}
.product-footer .footer-container .footer-item .link {
  display: flex;
  align-items: center;
  gap: 0 4px
}
.product-footer .footer-container .footer-item .link i {
  height: 1.4rem
}
.corporate-footer {
  background: transparent;
}
.corporate-footer .footer-container .footer-items {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  font-size: 1.2rem
}
.corporate-footer .footer-container .footer-items p {
  word-break: break-all;
  white-space: break-spaces
}
.corporate-footer .footer-container .footer-page-top {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  width: 160px;
  height: 40px;
  padding: 10px;
  font-weight: 700;
  color: #fff;
  border: 1px solid #ffffff
}
.corporate-footer .footer-container .footer-page-top:hover {
  opacity: .6
}
@media screen and (min-width: 769px) {
  .footer .global-footer .footer-items {
    max-width: 1232px;
    padding: 24px 0
  }
  .footer .global-footer .footer-item {
    width: 228px;
    text-align: left;
    -moz-column-break-inside: avoid;
    break-inside: avoid-column
  }
  .footer .footer-container {
    max-width: 1028px;
    padding: 16px 24px;
    margin: 0 auto;
    background: #092987;
    color: #fff
  }
}
@media screen and (max-width: 768.9px) {
  .footer {
    min-width: 320px;
    max-width: 768.9px
  }
  .footer .global-footer .footer-items {
    min-width: 320px;
    max-width: 768.9px;
    box-sizing: border-box
  }
  .footer .corporate-footer {
    padding: 16px
  }
  .footer .corporate-footer .footer-container {
    flex-direction: column-reverse
  }
  .footer .corporate-footer .footer-container .footer-page-top {
    width: 100%
  }
}
footer p {
  color: #fff;
  font-size: 12px;
}


/* ------------------------------------------------------------
調整
------------------------------------------------------------ */
.box-header {
background: #fff;
box-shadow: 0 0 6px #FFFFFF;
position: inherit;
}
.apply-cta-header {
font-size: 1.8rem;
}
.apply-cta-button.button {
height: 70px;
}
.apply-cta-button.button {
font-size: 2.1rem;
line-height: 28px;
}
.apply-cta-button>span {
font-size: 1.5rem;
}
.theme-list-asterisk {
font-size: 1.4rem;
}
.box-title {
text-align: left;
}
.footer-nav>li {
color: #fff;
}
.footer-nav > li a {
color: #fff;
}
.footer-nav > li a:visited {
color: #fff;
}
.footer-hdg, .footer-txt, .footer-corporate {
color: #000;
}
@media only screen and (min-width: 751px) {
.sp {
display: none !important;
}
}
@media only screen and (max-width: 750px) {
.pc {
display: none !important;
}
}

