@charset "UTF-8";
body {
  font-family: "Noto Sans JP", "Hiragino Sans", Hiragino Kaku Gothic ProN, YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  color: #333;
  line-height: 1.7;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

:root {
  --color-blue: #004eab;
  --color-text: #333;
  --content-width: 1000px;
}

.l-header {
  background-color: #fff;
  padding-block: 22px 19px;
}
@media screen and (min-width: 768px) {
  .l-header {
    padding-block: 20px;
  }
}

.l-header__inner {
  padding-inline: 20px;
}

.l-header__wrapper {
  max-width: 1300px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
}
@media screen and (min-width: 768px) {
  .l-header__wrapper {
    justify-content: flex-start;
    gap: 14px;
  }
}

.l-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.l-header__logo--smbc {
  width: 166px;
}
@media screen and (min-width: 768px) {
  .l-header__logo--smbc {
    width: 182px;
  }
}

.l-header__logo--capital {
  width: 107px;
}
@media screen and (min-width: 768px) {
  .l-header__logo--capital {
    width: 155px;
    padding-left: 30px;
  }
}

.l-header__cross {
  color: #333;
  font-size: 20px;
  letter-spacing: 1px;
}

.l-inner {
  width: var(--content-width);
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}

.l-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 20px;
  background-color: #005f9f;
}
@media screen and (min-width: 768px) {
  .l-footer {
    min-height: 154px;
  }
}

.l-footer__copy {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__copy {
    font-size: 14px;
  }
}

.c-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 21px 16px;
  background: linear-gradient(to right, #1e9bc5, #4ec7ef);
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-heading {
    padding: 24px 20px 22px;
    font-size: 32px;
    letter-spacing: 1.6px;
  }
}

.c-btn,
.c-btn--entry,
.c-btn--sbi,
.c-btn--sbi-outline,
.c-btn--sbi-ext,
.c-btn--outline,
.c-btn--vpoint,
.c-btn--fund-fill,
.c-btn--fund-outline {
  border-radius: 5px;
  transition: opacity 0.2s ease;
}

.c-btn--entry {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 307px;
  max-width: 450px;
  min-height: 45px;
  padding: 10px;
  background-color: #ff911c;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.7px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-btn--entry {
    width: 450px;
    min-height: 55px;
    padding: 10px 40px;
    font-size: 20px;
  }
}
@media (hover: hover) {
  .c-btn--entry:hover {
    opacity: 0.6;
  }
}
.c-btn--entry::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(50% - 123px);
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  display: none;
}
@media screen and (min-width: 768px) {
  .c-btn--entry::after {
    right: 40px;
    width: 14px;
    height: 14px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    display: block;
  }
}

.c-btn--sbi {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 45px;
  padding: 10px 12px;
  background-color: #0070bb;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.75px;
}
@media screen and (min-width: 768px) {
  .c-btn--sbi {
    min-height: 55px;
    font-size: 20px;
    letter-spacing: 1px;
  }
}
@media (hover: hover) {
  .c-btn--sbi:hover {
    opacity: 0.6;
  }
}

.c-btn--sbi-ext {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 450px;
  min-height: 45px;
  padding: 10px 40px;
  background-color: #0070bb;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.75px;
}
@media screen and (min-width: 768px) {
  .c-btn--sbi-ext {
    min-height: 55px;
    font-size: 20px;
    letter-spacing: 1px;
  }
}
@media (hover: hover) {
  .c-btn--sbi-ext:hover {
    opacity: 0.6;
  }
}

.c-btn--sbi-ext__icon {
  position: absolute;
  right: 20px;
  width: 17px;
  height: 17px;
}
@media screen and (min-width: 768px) {
  .c-btn--sbi-ext__icon {
    right: 40px;
    width: 19px;
    height: 19px;
  }
}

.c-btn--sbi-outline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 45px;
  padding: 9px 30px;
  background-color: #fff;
  border: 2px solid #0070bb;
  color: #0070bb;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.75px;
}
@media screen and (min-width: 768px) {
  .c-btn--sbi-outline {
    min-height: 55px;
    font-size: 20px;
    letter-spacing: 1px;
  }
}
@media (hover: hover) {
  .c-btn--sbi-outline:hover {
    opacity: 0.6;
  }
}

.c-btn--outline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin: 31px auto 0;
  padding: 8px 20px;
  background-color: #fff;
  border: 2px solid #125a8e;
  color: #125a8e;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-align: center;
  max-width: 305px;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .c-btn--outline {
    min-height: 54px;
    padding: 8px 40px;
    font-size: 20px;
    margin-top: 25px;
    max-width: 450px;
  }
}
@media (hover: hover) {
  .c-btn--outline:hover {
    opacity: 0.6;
  }
}

.c-btn--vpoint {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 307px;
  padding: 10px 40px;
  background-color: #057dac;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  max-width: 307px;
}
@media screen and (min-width: 768px) {
  .c-btn--vpoint {
    max-width: 450px;
    font-size: 20px;
  }
}
@media (hover: hover) {
  .c-btn--vpoint:hover {
    opacity: 0.6;
  }
}

.c-btn--fund-fill,
.c-btn--fund-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-height: 45px;
  padding: 8px 40px;
  font-size: 16px;
  letter-spacing: -0.1px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-btn--fund-fill,
  .c-btn--fund-outline {
    max-width: 450px;
    font-size: 20px;
    letter-spacing: 0.8px;
    padding-block: 8px;
  }
}
@media (hover: hover) {
  .c-btn--fund-fill:hover,
  .c-btn--fund-outline:hover {
    opacity: 0.6;
  }
}

.c-btn--fund-fill {
  background-color: #0097d5;
  border: 2px solid transparent;
  color: #fff;
  font-weight: 700;
}

.c-btn--fund-outline {
  background-color: #fff;
  border: 2px solid #0097d5;
  color: #0089c1;
  font-weight: 500;
}

.c-anchor-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 8px 24px;
  background-color: #fff;
  border: 2px solid #079dce;
  border-radius: 10px;
  color: #079dce;
  font-weight: 900;
  font-size: clamp(11px, 0.364vw + 9.636px, 14px);
  line-height: 1.38;
  letter-spacing: 0.65px;
  text-align: center;
  transition: opacity 0.2s ease;
  height: 61px;
}
@media screen and (min-width: 768px) {
  .c-anchor-btn {
    min-height: 110px;
    padding: 12px 9px 34px;
    font-size: 18px;
    line-height: 1.78;
    letter-spacing: 0.9px;
    max-height: 110px;
  }
}
@media (hover: hover) {
  .c-anchor-btn:hover {
    opacity: 0.6;
  }
}
.c-anchor-btn::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 9px solid #079dce;
}
@media screen and (min-width: 768px) {
  .c-anchor-btn::after {
    bottom: 14px;
    border-right-width: 10px;
    border-left-width: 10px;
    border-top-width: 12px;
  }
}

.c-accordion {
  width: 100%;
  max-width: 810px;
  margin-inline: auto;
}

.c-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  color: #333;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.65px;
  text-align: center;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-accordion__trigger {
    font-size: 15px;
    letter-spacing: 0.75px;
  }
}

.c-accordion__title {
  position: relative;
}
.c-accordion__title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 10px;
  height: 10px;
  margin-left: 32px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateY(calc(-50% - 3px)) rotate(45deg);
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-accordion__title::after {
    width: 11px;
    height: 11px;
    margin-left: 53px;
  }
}

.c-accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.c-accordion__inner {
  overflow: hidden;
}

.c-accordion__text {
  padding-top: 10px;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.6px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-accordion__text {
    padding-top: 20px;
    font-size: 14px;
    letter-spacing: 0.7px;
  }
}

.c-accordion.is-open .c-accordion__body {
  grid-template-rows: 1fr;
}

.c-accordion.is-open .c-accordion__title::after {
  transform: translateY(calc(-50% + 3px)) rotate(225deg);
}

.c-notes {
  margin-top: 42px;
}
@media screen and (min-width: 768px) {
  .c-notes {
    margin-top: 39px;
  }
}

.c-notes__item {
  display: flex;
  color: #333;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.7px;
  gap: 1px;
}
@media screen and (min-width: 768px) {
  .c-notes__item {
    gap: 3px;
    font-size: 14px;
    line-height: 2;
  }
}

.c-notes__item--source {
  display: block;
}

.c-notes__item:not(.c-notes__item--source)::before {
  content: "※";
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .c-notes--inset {
    margin-top: 48px;
  }
}

.c-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0e3c5d;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
  .c-arrow-link {
    font-size: 16px;
    gap: 18px;
    margin-top: 24px;
  }
}
.c-arrow-link::after {
  content: "";
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #035b8d;
}
@media screen and (min-width: 768px) {
  .c-arrow-link::after {
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 19px solid #035b8d;
  }
}
.c-arrow-link:hover {
  text-decoration: underline;
}

.c-scroll-hint {
  display: flex;
  gap: 13px;
  margin-top: 12px;
  color: #333;
  font-size: 15px;
  letter-spacing: 0.75px;
  align-items: flex-end;
  padding-left: 27px;
}
@media screen and (min-width: 950px) {
  .c-scroll-hint {
    display: none;
  }
}
.c-scroll-hint::before {
  content: "";
  flex-shrink: 0;
  width: 32px;
  height: 45px;
  background: url("../../img/icon-flick.webp") no-repeat center/contain;
}

.c-def-box {
  flex: 1 1 0;
  display: grid;
  gap: 3px;
  width: 100%;
  padding: 23px 17px;
  border: 3px solid;
  border-radius: 20px;
  text-align: left;
}
@media screen and (min-width: 1000px) {
  .c-def-box {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto 1fr;
    grid-template-areas: "title image" "body  image" ".     image";
    align-items: start;
    column-gap: 5px;
    row-gap: 10px;
    min-height: 232px;
    max-width: 500px;
    padding: 17px 22px 6px 22px;
  }
}

.c-def-box--index {
  border-color: #13a5e1;
}

.c-def-box--active {
  border-color: #01aea9;
}

.c-def-box__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: 0.9px;
}
@media screen and (min-width: 1000px) {
  .c-def-box__title {
    grid-area: title;
    font-size: 22px;
    line-height: 37px;
    letter-spacing: 1.1px;
  }
}

.c-def-box--index .c-def-box__title {
  color: #1469a7;
}

.c-def-box--active .c-def-box__title {
  color: #096f6c;
}

.c-def-box__img {
  justify-self: center;
  width: 175px;
  height: auto;
}
@media screen and (min-width: 1000px) {
  .c-def-box__img {
    grid-area: image;
    align-self: center;
    width: 197px;
    transform: translateY(-5px);
  }
}

.c-def-box__body {
  font-size: 13px;
  line-height: 26px;
  letter-spacing: 0.65px;
}
@media screen and (min-width: 1000px) {
  .c-def-box__body {
    grid-area: body;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0.8px;
  }
}

.c-graph {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .c-graph {
    margin-top: 72px;
  }
}

.c-graph__band {
  padding: 22px 20px 60px;
  background-color: #f4fcff;
}
@media screen and (min-width: 768px) {
  .c-graph__band {
    padding: 56px 20px 112px;
  }
}

@media screen and (min-width: 768px) {
  .c-graph__text-wrapper {
    max-width: 722px;
    margin: 0 auto;
    padding-left: 6px;
  }
}

.c-graph__band--rank {
  padding: 21px 20px 60px 21px;
}
@media screen and (min-width: 768px) {
  .c-graph__band--rank {
    padding: 32px 20px 86px;
  }
}

.c-graph__band--rank-2 {
  padding-top: 22px;
}
@media screen and (min-width: 768px) {
  .c-graph__band--rank-2 {
    padding-bottom: 60px;
    padding-top: 24px;
  }
}

.c-graph__heading {
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.2px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-graph__heading {
    line-height: 1.2;
    letter-spacing: 2px;
    text-align: center;
  }
}

.c-graph__heading--rank-2 {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .c-graph__heading--rank-2 {
    margin-top: 6px;
    padding-bottom: 10px;
  }
}

.c-graph__heading-main {
  color: #009cdc;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .c-graph__heading-main {
    font-size: 40px;
  }
}

.c-graph__heading-accent {
  color: #b42573;
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .c-graph__heading-accent {
    font-size: 48px;
    padding-left: 12px;
  }
}

.c-graph__heading--center {
  line-height: 1.3;
  text-align: center;
}

.c-graph__heading-num {
  color: #b42573;
  font-size: 36px;
  padding-left: 5px;
}
@media screen and (min-width: 768px) {
  .c-graph__heading-num {
    font-size: 63px;
    padding-left: 14px;
  }
}

.c-graph__heading-unit {
  color: #b42573;
  font-size: 20px;
  padding-left: 8px;
}
@media screen and (min-width: 768px) {
  .c-graph__heading-unit {
    font-size: 40px;
    padding-left: 13px;
  }
}

.c-graph__example {
  color: #333;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.75px;
}
@media screen and (min-width: 768px) {
  .c-graph__example {
    font-size: 20px;
  }
}

.c-graph__lead {
  margin-top: 6px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.95;
  letter-spacing: 0.7px;
}
@media screen and (min-width: 768px) {
  .c-graph__lead {
    margin-top: 19px;
    font-size: 20px;
    line-height: 2.2;
    letter-spacing: 1px;
  }
}
.c-graph__lead br {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-graph__lead br {
    display: revert;
  }
}

.c-graph__card {
  position: relative;
  width: calc(100% - 40px);
  max-width: 1040px;
  margin-inline: auto;
  margin-top: -50px;
  padding: 10px;
  background-color: #fff;
  border-radius: 20px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .c-graph__card {
    margin-top: -62px;
    padding: 20px;
  }
}

.c-graph__card--rank {
  margin-top: -37px;
}
@media screen and (min-width: 768px) {
  .c-graph__card--rank {
    margin-top: -40px;
    padding-top: 17px;
  }
}

.c-graph__title {
  position: relative;
  padding: 12px 6px;
  background-color: #005f9f;
  border-radius: 10px;
  text-align: center;
}
.c-graph__title::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-top: 18px solid #005f9f;
}
@media screen and (min-width: 768px) {
  .c-graph__title::after {
    border-right-width: 18px;
    border-left-width: 18px;
    border-top-width: 18px;
  }
}
@media screen and (min-width: 768px) {
  .c-graph__title {
    padding-top: 27px;
    padding-bottom: 28px;
  }
}

.c-graph__title-text {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: 0.9px;
}
@media screen and (min-width: 768px) {
  .c-graph__title-text {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 1.2px;
  }
}

.c-graph__fig {
  margin-top: 25px;
  text-align: center;
  margin-inline: -11px;
}
@media screen and (min-width: 768px) {
  .c-graph__fig {
    margin-top: 27px;
  }
}
.c-graph__fig img {
  display: block;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-graph__fig img {
    max-width: 800px;
  }
}

.c-graph__fig--scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.c-graph__fig-wrap {
  margin-top: 48px;
  padding-left: 20px;
}
@media screen and (min-width: 950px) {
  .c-graph__fig-wrap {
    padding-left: 0;
    margin-top: 6px;
  }
}

.c-graph__fig.c-graph__fig--inset {
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-graph__fig.c-graph__fig--inset {
    margin-top: 11px;
    max-width: 716px;
  }
}

.c-graph__result {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.58;
  letter-spacing: 0.75px;
}
@media screen and (min-width: 768px) {
  .c-graph__result {
    font-size: 18px;
    line-height: 194%;
    letter-spacing: 0.9px;
    max-width: 710px;
    margin: 20px auto 0;
  }
}
.c-graph__result .u-text-accent {
  font-size: 15px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-graph__result .u-text-accent {
    font-size: 20px;
  }
}

.c-rank-table {
  width: 960px;
  margin-inline: auto;
  border-collapse: collapse;
  table-layout: fixed;
  color: #333;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-align: left;
}

.c-rank-table__th {
  height: 60px;
  background-color: #48bbe2;
  color: #fff;
  font-weight: 700;
  vertical-align: middle;
}

.c-rank-table__th--rank {
  width: 51px;
}

.c-rank-table__th--name {
  width: 481px;
  padding-left: 25px;
  text-align: left;
}

.c-rank-table__th--company {
  width: 206px;
  padding-left: 24px;
  text-align: left;
}

.c-rank-table__th--asset {
  width: 101px;
  text-align: center;
}

.c-rank-table__th--amount {
  width: 121px;
  line-height: 1.5;
  text-align: center;
}

.c-rank-table__row {
  background-color: #fff;
}

.c-rank-table__row--capital {
  background-color: #ebfaff;
}

.c-rank-table__row td {
  height: 55px;
  border-top: 1px solid #d6d6d6;
  vertical-align: middle;
}

.c-rank-table tbody tr:last-child td {
  border-bottom: 1px solid #d6d6d6;
}

.c-rank-table__rank {
  text-align: center;
  padding-left: 20px;
}

.c-rank-table__name {
  padding-left: 25px;
  white-space: nowrap;
}

.c-rank-table__company {
  padding-left: 24px;
  white-space: nowrap;
}

.c-rank-table__asset,
.c-rank-table__amount {
  text-align: center;
}

.c-rank-table__row--capital .c-rank-table__name,
.c-rank-table__row--capital .c-rank-table__company,
.c-rank-table__row--capital .c-rank-table__asset,
.c-rank-table__row--capital .c-rank-table__amount {
  font-weight: 700;
}

.c-rank-table__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #48bbe2;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.c-rank-table__num {
  display: block;
  transform: translate(0.5px, -1px);
}

.c-rank-table__badge--outline {
  background-color: #fff;
  border: 1px solid #0c82ab;
  color: #0c82ab;
}

.p-mv {
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-mv {
    background-color: var(--color-blue);
  }
}

.p-mv__inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mv__inner {
    height: min(35.46875vw, 681px);
    background-image: url("../../img/mv-gb.webp");
    background-position: center;
    background-size: cover;
  }
}

.p-mv__sp {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-mv__sp {
    display: none;
  }
}

.p-mv__campaign {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-mv__campaign {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    width: min(67.7083333333vw, 1300px);
    height: auto;
  }
}

.p-mv__band {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-mv__band {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: min(5.4166666667vw, 104px);
    background-color: #11356e;
  }
}

.p-anchor-nav {
  padding-block: 19px 10px;
}
@media screen and (min-width: 768px) {
  .p-anchor-nav {
    padding-block: 38px 0px;
  }
}

.p-anchor-nav__note {
  margin-top: 20px;
  padding-inline: 20px;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 768px) {
  .p-anchor-nav__note {
    margin-top: 30px;
    font-size: 16px;
    letter-spacing: 0.8px;
    text-align: center;
  }
}

.p-anchor-nav__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 1000px) {
  .p-anchor-nav__list {
    flex-wrap: nowrap;
    gap: 20px;
    max-width: 100%;
  }
}

.p-anchor-nav__item {
  flex: 0 0 calc(50% - 7px);
  max-width: none;
}
@media screen and (min-width: 1000px) {
  .p-anchor-nav__item {
    flex: 1 1 0;
    max-width: 250px;
  }
}

.p-entry {
  padding: 10px 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-entry {
    padding: 60px 20px 20px;
  }
}

.p-entry-sbi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 20px 33px;
}
@media screen and (min-width: 768px) {
  .p-entry-sbi {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    padding: 0px 20px 60px;
    gap: 20px;
  }
}

.p-entry-sbi__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  max-width: 335px;
  padding: 7px 12px 17px;
  border-radius: 5px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-entry-sbi__box {
    gap: 11px;
    max-width: 490px;
    padding: 33px 20px;
    justify-content: flex-start;
  }
}

.p-entry-sbi__lead {
  font-weight: 700;
  font-size: 14px;
  text-indent: -10px;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 768px) {
  .p-entry-sbi__lead {
    font-size: 16px;
    letter-spacing: 0.8px;
    text-indent: 0px;
  }
}

.p-entry-sbi__note {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 768px) {
  .p-entry-sbi__note {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.7px;
    margin-top: 6px;
  }
}

.p-entry-sbi__note--external {
  display: flex;
  margin-top: 3px;
  padding-left: 8px;
  padding-right: 3px;
  line-height: 2;
  letter-spacing: 0.6px;
  text-align: start;
}
.p-entry-sbi__note--external::before {
  content: "※";
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-entry-sbi__note--external {
    margin-top: -5px;
  }
}

.p-entry-sbi__note--spacer {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-entry-sbi__note--spacer {
    display: block;
    visibility: hidden;
  }
}

.p-point__message {
  width: 1200px;
  max-width: 100%;
  margin-inline: auto;
  padding: 45px 20px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-point__message {
    padding-top: 70px;
  }
}

.p-point__message-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: -0.3px;
}
@media screen and (min-width: 768px) {
  .p-point__message-text {
    font-size: 24px;
    line-height: 220%;
    letter-spacing: 1.2px;
  }
}

.p-point__message-text + .p-point__message-text {
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .p-point__message-text + .p-point__message-text {
    margin-top: 0px;
  }
}

.p-point__message-text.p-point__message-text--bottom {
  margin-top: 35px;
  line-height: 200%;
}
@media screen and (min-width: 768px) {
  .p-point__message-text.p-point__message-text--bottom {
    margin-top: 54px;
    line-height: 216%;
  }
}

.p-point__message-highlight {
  color: #b42573;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0;
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .p-point__message-highlight {
    font-size: 40px;
    margin-top: 0;
    letter-spacing: 2px;
  }
}

@media screen and (min-width: 768px) {
  .p-point__message-text.p-point__message-text--highlight {
    margin-top: 26px;
  }
}

.p-point__habit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-top: 42px;
}
@media screen and (min-width: 768px) {
  .p-point__habit {
    flex-direction: row;
    gap: 92px;
    margin-top: 61px;
  }
}

.p-point__habit-text {
  order: 2;
  color: #096f6c;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
  .p-point__habit-text {
    order: 0;
    font-size: 32px;
    padding-top: 64px;
    letter-spacing: 1.4px;
  }
}

.p-point__habit-img {
  order: 1;
  max-width: 300px;
}
@media screen and (min-width: 768px) {
  .p-point__habit-img {
    order: 0;
    max-width: 400px;
  }
}

.p-point__management {
  margin-top: 39px;
}
@media screen and (min-width: 768px) {
  .p-point__management {
    margin-top: 70px;
  }
}

.p-point__management-band {
  padding: 30px 20px;
  background-color: #f4fffa;
}
@media screen and (min-width: 768px) {
  .p-point__management-band {
    padding: 40px 20px 39px;
  }
}

.p-point__management-lead {
  margin-inline: auto;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
  .p-point__management-lead {
    font-size: 18px;
    line-height: 246%;
    padding-left: 77px;
    max-width: 885px;
  }
}

.p-point__management-lead-strong {
  color: #1469a7;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .p-point__management-lead-strong {
    font-size: 26px;
  }
}

.p-point__management-inner {
  max-width: 960px;
  width: 100%;
  margin-inline: auto;
  padding: 45px 20px 51px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-point__management-inner {
    padding-top: 58px;
    padding-bottom: 104px;
    max-width: 1040px;
  }
}

.p-point__management-defs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  max-width: 500px;
}
@media screen and (min-width: 1000px) {
  .p-point__management-defs {
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    width: min(1040px, 100vw - 40px);
    max-width: none;
    margin-left: 50%;
    margin-right: 0;
    transform: translateX(-50%);
  }
}

.p-point__management-ref {
  display: flex;
  width: fit-content;
  margin-top: 22px;
  margin-right: auto;
  margin-left: auto;
  text-align: start;
}
@media screen and (min-width: 768px) {
  .p-point__management-ref {
    padding-left: 0;
  }
}

.p-fund__intro {
  max-width: 100%;
  margin-inline: auto;
  padding: 47px 20px 0;
}
@media screen and (min-width: 768px) {
  .p-fund__intro {
    max-width: 767px;
    padding-top: 70px;
  }
}

.p-fund__intro-heading {
  color: #1469a7;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.8px;
}
@media screen and (min-width: 768px) {
  .p-fund__intro-heading {
    letter-spacing: 1.4px;
    font-size: 26px;
  }
}

.p-fund__intro-text {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: -0.2px;
}
@media screen and (min-width: 768px) {
  .p-fund__intro-text {
    font-size: 18px;
    margin-top: 20px;
    letter-spacing: 0.9px;
  }
}

.p-fund__target {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-fund__target {
    margin-top: 72px;
  }
}

.p-fund__target-band {
  padding: 33px 20px 29px 20px;
  background-color: #f4fffa;
}
@media screen and (min-width: 768px) {
  .p-fund__target-band {
    padding: 28px 20px 40px;
  }
}

@media screen and (min-width: 768px) {
  .p-fund__target-band-wrapper {
    max-width: 735px;
    margin: 0 auto;
  }
}

.p-fund__target-heading {
  color: #096f6c;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.1px;
}
@media screen and (min-width: 768px) {
  .p-fund__target-heading {
    font-size: 41px;
    letter-spacing: 1px;
  }
}

.p-fund__target-text {
  margin-top: 4px;
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: 1.8px;
}
@media screen and (min-width: 768px) {
  .p-fund__target-text {
    margin-top: 7px;
    font-size: 18px;
    line-height: 2.2;
    letter-spacing: 0.9px;
  }
}

.p-fund__target-inner {
  width: 1040px;
  max-width: 100%;
  margin-inline: auto;
  margin-top: 28px;
  padding: 0px 0px 0 20px;
}
@media screen and (min-width: 768px) {
  .p-fund__target-inner {
    margin-top: 40px;
    padding: 0px 20px 0 20px;
    max-width: 976px;
    width: 100%;
  }
}

.p-fund__table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.p-fund__table {
  width: 755px;
  max-width: none;
  margin-inline: auto;
  border-collapse: collapse;
  table-layout: fixed;
}
@media screen and (min-width: 768px) {
  .p-fund__table {
    width: 935px;
  }
}
.p-fund__table th,
.p-fund__table td {
  padding-left: 20px;
  border: 1px solid #c4d3d3;
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0.65px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .p-fund__table th,
  .p-fund__table td {
    font-size: 14px;
    letter-spacing: 0.7px;
    padding-left: 41px;
  }
}
.p-fund__table thead th {
  height: 56px;
  background-color: #f7fafb;
  color: #1c4948;
  font-weight: 500;
}
.p-fund__table tbody th,
.p-fund__table tbody td {
  height: 68px;
}

.p-fund__table-corner,
.p-fund__table tbody th {
  width: 245px;
  background-color: #f7fdff;
  color: #096f6c;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-fund__table-corner,
  .p-fund__table tbody th {
    width: 305px;
  }
}

.p-fund__table thead th:not(.p-fund__table-corner) {
  width: 170px;
}
@media screen and (min-width: 768px) {
  .p-fund__table thead th:not(.p-fund__table-corner) {
    width: 210px;
  }
}

.p-fund__table thead th:not(.p-fund__table-corner),
.p-fund__table tbody td {
  padding-left: 0;
  text-align: center;
}

.p-fund__table-note {
  display: flex;
  gap: 4px;
  margin-top: 45px;
  font-size: 14px;
  letter-spacing: -1.5px;
  line-height: 1.7;
  padding-right: 20px;
}
.p-fund__table-note::before {
  content: "※";
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-fund__table-note {
    margin-top: 22px;
    letter-spacing: 0.7px;
  }
}

.p-fund__cards {
  width: 1340px;
  max-width: 100%;
  margin: 42px auto 43px;
  padding-inline: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-fund__cards {
    margin-block: 70px 66px;
    gap: 40px;
  }
}

.p-fund__card {
  border: 3px solid;
  border-radius: 20px;
}

.p-fund__card--1 {
  border-color: #13a5e1;
}

.p-fund__card--2 {
  border-color: #08b2d0;
}

.p-fund__card--3 {
  border-color: #01aea9;
}

.p-fund__card-inner {
  padding: 26px 20px 26px;
}
@media screen and (min-width: 768px) {
  .p-fund__card-inner {
    padding: 40px;
  }
}
@media screen and (min-width: 1081px) {
  .p-fund__card-inner {
    padding: 57px 105px 54px 105px;
  }
}

@media screen and (min-width: 768px) {
  .p-fund__card-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
  }
}
@media screen and (min-width: 1081px) {
  .p-fund__card-wrapper {
    gap: 123px;
  }
}

.p-fund__card-cover {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-fund__card-cover {
    display: block;
    max-width: 260px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.25);
    align-self: center;
    height: fit-content;
  }
}
@media screen and (min-width: 1081px) {
  .p-fund__card-cover {
    max-width: 336px;
  }
}
.p-fund__card-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.p-fund__card-body {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-fund__card-body {
    width: 591px;
    max-width: 100%;
  }
}

.p-fund__card-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.9px;
}
@media screen and (min-width: 768px) {
  .p-fund__card-name {
    font-size: 24px;
    letter-spacing: 1.2px;
  }
}
@media screen and (min-width: 1200px) {
  .p-fund__card-name {
    white-space: nowrap;
  }
}

.p-fund__card-badge {
  margin-top: 11px;
  color: #b42573;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.85px;
}
@media screen and (min-width: 768px) {
  .p-fund__card-badge {
    margin-top: 34px;
    font-size: 20px;
    letter-spacing: 1px;
  }
}

.p-fund__card-desc {
  margin-top: 18px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.7px;
  text-align: start;
  padding-inline: 11px;
}
@media screen and (min-width: 768px) {
  .p-fund__card-desc {
    margin-top: 11px;
    font-size: 18px;
    letter-spacing: 0.9px;
    padding-inline: 0;
  }
}

.p-fund__card-desc--sub {
  display: flex;
  margin-top: 20px;
}

.p-fund__card-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-fund__card-btns {
    align-items: flex-start;
    gap: 34px;
    margin-top: 36px;
  }
}

@media screen and (min-width: 768px) {
  .p-fund__card .c-btn--fund-fill,
  .p-fund__card .c-btn--fund-outline {
    margin: 0 auto;
  }
}

.p-fund__card-btn-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-fund__card-btn-group {
    gap: 18px;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .p-fund__card-btn-group--world {
    margin-top: 45px;
  }
}

@media screen and (min-width: 768px) {
  .p-fund__card-btn-group--america {
    margin-top: 36px;
  }
}

.p-fund__card-btn-note {
  display: flex;
  gap: 0px;
  width: 100%;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.6px;
}
.p-fund__card-btn-note::before {
  content: "※";
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-fund__card-btn-note {
    max-width: 450px;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.7px;
    justify-content: center;
    gap: 4px;
  }
}

.p-fund__more-wrap {
  padding-inline: 20px;
  margin-bottom: 53px;
}
@media screen and (min-width: 768px) {
  .p-fund__more-wrap {
    margin-bottom: 103px;
  }
}

.p-fund__more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  padding: 16px 13px 25px;
  border: 2px solid #d7d7d7;
  border-radius: 5px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-fund__more {
    gap: 23px;
    padding-top: 34px;
    padding-bottom: 45px;
  }
}

.p-fund__more-lead {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-indent: -7px;
}
@media screen and (min-width: 768px) {
  .p-fund__more-lead {
    font-size: 16px;
    letter-spacing: 0.8px;
    text-indent: 0;
  }
}

.p-fund__more-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-fund__more-btn {
    gap: 26px;
  }
}

.p-fund__more-note {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 768px) {
  .p-fund__more-note {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.7px;
  }
}

.p-campaign {
  width: 1000px;
  max-width: 100%;
  margin-inline: auto;
  padding: 42px 20px 46px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-campaign {
    padding-top: 70px;
    padding-bottom: 110px;
    gap: 45px;
  }
}

.p-campaign__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .p-campaign__item {
    flex-direction: row;
  }
}

.p-campaign__label {
  flex-shrink: 0;
  width: auto;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.75px;
}
@media screen and (min-width: 768px) {
  .p-campaign__label {
    width: 250px;
    margin-bottom: 0;
    font-size: 18px;
    letter-spacing: 0.9px;
  }
}

.p-campaign__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.7px;
}
@media screen and (min-width: 768px) {
  .p-campaign__body {
    font-size: 16px;
    letter-spacing: 0.8px;
    gap: 30px;
  }
}

.p-campaign__text {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.p-campaign__num-list {
  counter-reset: campaign-num;
}

.p-campaign__num {
  display: flex;
  counter-increment: campaign-num;
  gap: 5px;
}
.p-campaign__num::before {
  content: counter(campaign-num) "．";
  flex-shrink: 0;
  text-indent: 3px;
}

@media screen and (min-width: 768px) {
  .p-campaign__num--3 {
    margin-top: 10px;
  }
}

.p-campaign__bullet {
  padding-left: 14px;
  text-indent: -14px;
}
@media screen and (min-width: 768px) {
  .p-campaign__bullet {
    padding-left: 16px;
    text-indent: -16px;
  }
}

.p-campaign__note {
  display: flex;
  font-size: 12px;
  padding-bottom: 10px;
}
.p-campaign__note::before {
  content: "※";
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-campaign__note {
    font-size: 14px;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-campaign__note-2 {
    margin-top: 12px;
  }
}

.p-campaign__benefit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .p-campaign__benefit {
    gap: 10px;
  }
}

@media screen and (min-width: 768px) {
  .p-campaign__benefit--fund {
    margin-top: -5px;
    gap: 0;
  }
}

.p-campaign__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 13px 6px 10px;
  background-color: #ffebbe;
  border-radius: 4px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.8px;
}

.p-campaign__chip--1 {
  background: #ffebbe;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .p-campaign__chip--1 {
    margin-bottom: -2px;
  }
}

.p-campaign__chip--2 {
  background: #ffdfc7;
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .p-campaign__chip--2 {
    margin-bottom: -5px;
  }
}

.p-campaign__chip--fund {
  margin-bottom: 10px;
  background: transparent;
}

.p-campaign__anno--2 {
  margin-bottom: 5px;
}

@media screen and (min-width: 768px) {
  .campaign__item--bene {
    margin-top: 3px;
  }
}

.p-campaign__label--bene {
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .p-campaign__item--timing {
    margin-top: 8px;
  }
}

.p-campaign__label--timing {
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .p-campaign__benefit-2--timing {
    margin-top: 10px;
  }
}

.p-flow {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .p-flow {
    gap: 80px;
  }
}

.p-flow__wrapper {
  padding: 40px 20px 0;
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-flow__wrapper {
    padding-top: 70px;
  }
}

.p-flow__step-box {
  display: grid;
  padding: 8px 8px;
  background-color: #fff;
  border: 2px solid #d6d6d6;
  border-radius: 10px;
  min-height: 184px;
}
@media screen and (min-width: 768px) {
  .p-flow__step-box {
    flex: 1;
    min-height: 136px;
    padding: 16px 26px;
  }
}

@media screen and (min-width: 768px) {
  .p-flow__step--3 {
    margin-top: -10px;
  }
}

.p-flow__note {
  color: #333;
  font-family: "Noto Sans JP", "Hiragino Sans", Hiragino Kaku Gothic ProN, YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 2; /* 200% */
  letter-spacing: 0.7px;
  display: flex;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-flow__note {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.8px;
  }
}
.p-flow__note::before {
  content: "※";
}

.p-flow__row {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-flow__row {
    gap: 34px;
    flex-direction: row;
  }
}

.p-flow__row--3 {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-flow__row--3 {
    margin-top: -12px;
  }
}

.p-flow__num {
  flex-shrink: 0;
  display: flex;
  width: auto;
  color: #b42573;
}
@media screen and (min-width: 768px) {
  .p-flow__num {
    width: 150px;
    align-items: center;
  }
}

.p-flow__num--3 {
  margin-top: -10px;
}
@media screen and (min-width: 768px) {
  .p-flow__num--3 {
    margin-top: 0;
  }
}

.p-flow__num-label {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.2px;
  padding-top: 18px;
}
@media screen and (min-width: 768px) {
  .p-flow__num-label {
    padding-top: 0px;
  }
}

.p-flow__num-value {
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 3.2px;
  padding-left: 4px;
}
@media screen and (min-width: 768px) {
  .p-flow__num-value {
    padding-left: 6px;
    padding-top: 0px;
  }
}

.p-flow__box {
  flex: none;
  display: flex;
  align-items: center;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  margin-block: auto;
  text-indent: 4px;
}
@media screen and (min-width: 768px) {
  .p-flow__box {
    flex: 1;
    font-size: 24px;
    letter-spacing: 1.2px;
  }
}

@media screen and (min-width: 768px) {
  .p-flow__box--3 {
    font-size: 23px;
    letter-spacing: 2.1px;
  }
}

.p-flow__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px auto 0;
}
@media screen and (min-width: 768px) {
  .p-flow__action {
    margin: 36px auto 0;
    padding-left: 0px;
    padding-right: 0px;
    max-width: 450px;
  }
}

.p-flow__action--2 {
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (min-width: 768px) {
  .p-flow__action--2 {
    padding-left: 0;
    padding-right: 0px;
  }
}

.p-flow__link {
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .p-flow__link {
    margin-top: 24px;
    gap: 11px;
  }
}
@media screen and (min-width: 768px) {
  .p-flow__link::after {
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid #1e9bc5;
  }
}

.p-flow__detail {
  margin-top: 40px;
  padding-left: 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.9px;
}
@media screen and (min-width: 768px) {
  .p-flow__detail {
    margin-top: 70px;
    font-size: 18px;
    width: fit-content;
    margin-inline: auto;
  }
}

.p-flow__detail-list {
  counter-reset: flow-detail;
}

.p-flow__detail-item {
  display: flex;
  counter-increment: flow-detail;
}
.p-flow__detail-item::before {
  content: counter(flow-detail) "．";
  flex-shrink: 0;
}

.p-caution {
  margin-top: 50px;
  padding-block: 30px 18px;
  background-color: #f4fcff;
}
@media screen and (min-width: 768px) {
  .p-caution {
    margin-top: 57px;
    padding-block: 90px 53px;
  }
}

.p-caution__inner {
  width: 1000px;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}

.p-caution__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-caution__icon {
  flex-shrink: 0;
  width: 23px;
}
@media screen and (min-width: 768px) {
  .p-caution__icon {
    width: 40px;
  }
}

.p-caution__title {
  color: #333;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.9px;
}
@media screen and (min-width: 768px) {
  .p-caution__title {
    letter-spacing: 2px;
    font-size: 24px;
    letter-spacing: 2px;
  }
}

.p-caution__notes {
  display: flex;
  flex-direction: column;
  gap: 47px;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-caution__notes {
    gap: 50px;
    margin-top: 39px;
  }
}

.p-caution__pagetop {
  width: 1920px;
  max-width: 100%;
  margin: 60px auto 0;
  padding-right: 20px;
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .p-caution__pagetop {
    margin-top: 25px;
    padding-right: 50px;
  }
}

.p-caution__note-block--broker {
  margin-bottom: 12px;
}

.p-caution__note-block-heading {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.7px;
}
@media screen and (min-width: 768px) {
  .p-caution__note-block-heading {
    font-size: 20px;
  }
}

.p-caution__note-block-heading--plain {
  font-weight: 400;
  margin-top: -6px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-caution__note-block-heading--plain {
    margin-top: 0;
    font-size: 20px;
  }
}

.p-caution__note-block-heading--plain-2 {
  margin-top: -33px;
}
@media screen and (min-width: 768px) {
  .p-caution__note-block-heading--plain-2 {
    margin-top: -43px;
  }
}

.p-caution__note-block-body {
  margin-top: 12px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.7px;
}
@media screen and (min-width: 768px) {
  .p-caution__note-block-body {
    margin-top: 20px;
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}

.p-caution__note-block-text {
  display: flex;
  letter-spacing: 0.6px;
  line-height: 200%;
  font-size: 12px;
}
.p-caution__note-block-text::before {
  content: "※";
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-caution__note-block-text {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}

.p-caution__note-block-text + .p-caution__note-block-text {
  margin-top: 13px;
}
@media screen and (min-width: 768px) {
  .p-caution__note-block-text + .p-caution__note-block-text {
    margin-top: 20px;
  }
}

.p-caution__note-block-text--6::before,
.p-caution__note-block-text--12::before {
  content: none;
}

.p-caution__note-block-text + .p-caution__note-block-text--6,
.p-caution__note-block-text + .p-caution__note-block-text--12 {
  margin-top: 0;
  padding-left: 14px;
}

.p-caution__note-block-link {
  display: flex;
  margin-top: 10px;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .p-caution__note-block-link {
    padding-left: 0;
    margin-top: 13px;
    letter-spacing: 0.8px;
    font-size: 16px;
  }
}
.p-caution__note-block-link::after {
  content: "";
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #035b8d;
}
@media screen and (min-width: 768px) {
  .p-caution__note-block-link::after {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 11px solid #035b8d;
  }
}

.p-caution__note-block-link--law {
  margin-top: 35px;
}
@media screen and (min-width: 768px) {
  .p-caution__note-block-link--law {
    margin-top: 22px;
  }
}

.p-caution__defs {
  font-size: 12px;
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .p-caution__defs {
    font-size: 16px;
    margin-bottom: 0;
  }
}

.p-caution__defs-row {
  display: flex;
  align-items: flex-start;
}

.p-caution__defs-label {
  flex-shrink: 0;
  width: 74px;
  font-weight: 400;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-caution__defs-label {
    width: 85px;
  }
}

.p-caution__defs-value {
  flex: 1;
}

.p-caution__note-block-link-note {
  margin-top: 1px;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.7px;
}
@media screen and (min-width: 768px) {
  .p-caution__note-block-link-note {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
}

.p-caution__pagetop-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 75px;
  aspect-ratio: 1/1;
  background-color: rgba(228, 246, 255, 0.8);
  border: 1px solid #125a8e;
  border-radius: 10px;
  color: #0a3554;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.7px;
  text-align: center;
  transition: opacity 0.2s ease;
  margin-top: -57px;
}
@media screen and (min-width: 768px) {
  .p-caution__pagetop-btn {
    gap: 6px;
    width: 100px;
    font-size: 14px;
    margin-top: 0;
  }
}
@media (hover: hover) {
  .p-caution__pagetop-btn:hover {
    opacity: 0.6;
  }
}

.p-caution__pagetop-icon {
  width: 14px;
  height: 14px;
  margin-bottom: 2px;
  border-top: 3px solid #0a3554;
  border-left: 3px solid #0a3554;
  transform: rotate(45deg);
}

.p-caution__note-block-text.p-caution__note-block-text--9 {
  margin-top: 9px;
}
@media screen and (min-width: 768px) {
  .p-caution__note-block-text.p-caution__note-block-text--9 {
    margin-top: 15px;
  }
}

.p-caution__note-block--last {
  margin-top: -8px;
}
@media screen and (min-width: 768px) {
  .p-caution__note-block--last {
    margin-top: 32px;
  }
}

.u-text-accent {
  color: #b42573;
}

.u-text-accent-lg {
  color: #b42573;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .u-text-accent-lg {
    font-size: 22px;
    letter-spacing: 1px;
  }
}

.u-hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-hidden-sp {
    display: revert;
  }
}

@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none;
  }
}

.u-nowrap {
  white-space: nowrap;
}

.u-hidden-under-lg {
  display: none;
}
@media screen and (min-width: 1000px) {
  .u-hidden-under-lg {
    display: revert;
  }
}

.u-mt-6 {
  margin-top: -6px;
}
@media screen and (min-width: 768px) {
  .u-mt-6 {
    margin-top: 0;
  }
}

.u-tracking-en {
  margin-inline: 0.2em;
  letter-spacing: 1px;
}
