@charset "UTF-8";
/**
 * |==================================================================
 * | reset.scss
 * | リセット関連のスタイルはこちらに定義してください。
 * |==================================================================
 */
/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  padding: 0;
  margin: 0;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q::before,
q::after {
  content: "";
}

abbr,
acronym {
  font-variant: normal;
  border: 0;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

/* #yui3-css-stamp.cssreset{display:none} */
*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: #000;
}

a,
a:hover {
  text-decoration: none;
}

select {
  width: 100%;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  cursor: pointer;
  background: transparent;
  background-image: none;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* stylelint-disable color-hex-length */
/* stylelint-enable color-hex-length */
:root {
  --bp-size-xs: 100%;
  --bp-size-sm: 576px;
  --bp-size-md: 768px;
  --bp-size-lg: 992px;
  --bp-size-xl: 1040px;
  --bp-size-list-2-row: 989px;
  --bp-size-list-1-row: 612px;
  --bp-padding-xs: 14px;
  --bp-padding-sm: 20px;
  --bp-padding-md: 25px;
  --bp-padding-lg: 40px;
  --bp-padding-xl: 40px;
  --color-basic-color: #265a96;
  --color-point-color: #ffd41f;
  --color-base-color: #f7f8fa;
  --color-typograph-base-1: #333333;
  --color-typograph-base-2: #666666;
  --color-typograph-base-3: #999999;
  --color-typograph-heading-1: #265a96;
  --color-typograph-heading-2: #8c9eaf;
  --color-typograph-warning-1: #e35252;
  --color-stroke-1: #dadada;
  --color-stroke-2: #ededed;
}

.is-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}

.header {
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #fff;
  display: flex;
  justify-content: center;
}
.header__inner {
  width: 100%;
  max-width: 1040px;
  padding-right: 14px;
  padding-left: 14px;
}
@media screen {
  .header__inner {
    padding-right: 14px;
    padding-left: 14px;
  }
}
@media screen and (min-width: 576px) {
  .header__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media screen and (min-width: 992px) {
  .header__inner {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (min-width: 1040px) {
  .header__inner {
    padding-right: 40px;
    padding-left: 40px;
  }
}
.header__link {
  display: block;
}
.header__link--img {
  max-width: 100px;
}

.footer {
  height: 40px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F5F5F5;
  border-top: 1px solid #D1D1D6;
}

.item {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 24px;
}
.item__inner {
  width: 100%;
  max-width: 1040px;
  padding-right: 14px;
  padding-left: 14px;
}
@media screen {
  .item__inner {
    padding-right: 14px;
    padding-left: 14px;
  }
}
@media screen and (min-width: 576px) {
  .item__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 768px) {
  .item__inner {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media screen and (min-width: 992px) {
  .item__inner {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (min-width: 1040px) {
  .item__inner {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .item {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}

.card {
  position: relative;
  padding-top: 40px;
  padding-bottom: 30px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  min-height: 380px;
}
@media screen and (max-width: 768px) {
  .card {
    min-height: 344px;
    padding: 24px 24px 12px;
  }
}
.card__count {
  position: absolute;
  top: -16px;
  left: -16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: pre;
  background-color: #074098;
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  .card__count {
    top: -8px;
    left: -8px;
    width: 40px;
    height: 40px;
    font-size: 20px;
    border-radius: 20px;
  }
}

.card-list-title {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
  color: #074098;
}
@media screen and (max-width: 768px) {
  .card-list-title {
    margin-bottom: 24px;
    font-size: 32px;
  }
}
.card-list-title::before, .card-list-title::after {
  display: inline-block;
  width: 6px;
  height: 50px;
  content: "";
  background: #074098;
}
@media screen and (max-width: 768px) {
  .card-list-title::before, .card-list-title::after {
    width: 4px;
    height: 32px;
  }
}
.card-list-title::before {
  transform: rotate(-31deg);
}
.card-list-title::after {
  transform: rotate(31deg);
}

.card-title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .card-title {
    font-size: 16px;
  }
}
.card-title.flex {
  display: flex;
  align-items: end;
  justify-content: center;
}
.card-title.flex .sub-title {
  display: block;
  text-align: end;
  line-height: 1.4;
  margin-right: 8px;
  margin-bottom: 4px;
}
.card-title .vpoint {
  width: 56px;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .card-title .vpoint {
    width: 28px;
  }
}
.card-title .accent {
  font-size: 80px;
  color: #074098;
}
@media screen and (max-width: 768px) {
  .card-title .accent {
    font-size: 42px;
  }
}
.card-title .filled {
  -webkit-text-emphasis: filled;
          text-emphasis: filled;
}
.card-title.margin {
  margin-top: -16px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .card-title.margin {
    margin-top: -8px;
  }
}
.card-title.margin.logo {
  line-height: 0.8;
}

.card-contents {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .card-contents {
    flex-direction: column;
  }
}
.card-contents.margin {
  margin-top: 60px;
}
.card-contents__invest {
  display: flex;
  flex-wrap: wrap;
  gap: 38px 18px;
  padding-top: 34px;
  padding-bottom: 10px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .card-contents__invest {
    padding-top: 20px;
    margin-top: 0;
    justify-content: center;
  }
}
.card-contents__invest--one {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 16px;
  background-color: #93d29f;
  border: 1px solid #333333;
  border-radius: 6px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .card-contents__invest--one {
    font-size: 12px;
    padding: 10px 14px;
  }
}
.card-contents__invest--one::before {
  content: url("../img/icon/p.svg");
  position: absolute;
  left: 50%;
  top: -30px;
  z-index: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .card-contents__invest--one::before {
    content: "";
    display: inline-block;
    top: -24px;
    width: 32px;
    height: 12px;
    background-image: url(../img/icon/p.svg);
    background-size: cover;
  }
}
.card-contents__invest--one::after {
  content: "";
  width: calc(100% - 8px);
  height: 7px;
  position: absolute;
  left: 50%;
  bottom: -8px;
  z-index: 0;
  background-color: #ededed;
  transform: translateX(-50%);
}
.card-contents__image {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .card-contents__image {
    gap: 16px;
  }
}
.card-contents__image--img {
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .card-contents__image--img.money {
    height: 93px;
    width: 164px;
  }
  .card-contents__image--img.clock {
    width: 95px;
  }
  .card-contents__image--img.cube {
    width: 70px;
  }
}
.card-contents__supplement {
  position: absolute;
  display: flex;
  justify-content: center;
  justify-items: center;
  gap: 12px;
  padding: 16px;
  border-left: 2px solid #333333;
  border-bottom: 2px solid #333333;
  left: 67%;
}
.card-contents__supplement.invest {
  border-left: none;
  top: calc(-100% + 48px);
}
.card-contents__supplement.invest::after {
  transform: translateX(-50%) rotate(-45deg);
  top: initial;
  left: 50%;
  bottom: -7.5px;
}
@media screen and (max-width: 768px) {
  .card-contents__supplement.invest::after {
    top: -7.5px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }
}
.card-contents__supplement.left {
  left: 0;
  right: 70%;
  border-left: none;
  border-right: 2px solid #333333;
  border-bottom: 2px solid #333333;
  margin-left: 60px;
}
.card-contents__supplement.left::after {
  transform: translateY(-50%) rotate(-135deg);
  left: initial;
  right: -7.5px;
}
@media screen and (max-width: 768px) {
  .card-contents__supplement.left {
    margin-top: -16px;
    margin-bottom: 20px;
    margin-right: 118px;
    margin-left: 0;
    border-top: none;
    border-right: none;
  }
  .card-contents__supplement.left::after {
    transform: translateY(-50%) rotate(-45deg);
    top: initial;
    left: initial;
    right: initial;
    bottom: -13.5px;
  }
}
@media screen and (max-width: 768px) {
  .card-contents__supplement.right {
    margin-left: 80px;
  }
}
@media screen and (max-width: 768px) {
  .card-contents__supplement {
    margin-top: 32px;
    padding: 8px;
    gap: 8px;
    border-top: 2px solid #333333;
    border-left: none;
    border-bottom: none;
    left: 0;
    position: relative;
  }
  .card-contents__supplement.mt-24 {
    margin-top: 24px;
  }
  .card-contents__supplement.mt-42 {
    margin-top: 42px;
  }
  .card-contents__supplement.mt-46 {
    margin-top: 46px;
  }
  .card-contents__supplement.mt-56 {
    margin-top: 56px;
  }
}
.card-contents__supplement::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-left: 2px solid #333333;
  border-bottom: 2px solid #333333;
  position: absolute;
  left: -7.5px;
  top: 50%;
  background-color: #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .card-contents__supplement::after {
    top: -7.5px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }
}
@media screen and (max-width: 768px) {
  .card-contents__supplement--icon {
    margin-top: -14px;
  }
}
.card-contents__supplement--img {
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .card-contents__supplement--img {
    height: 33px;
  }
}
.card-contents__supplement--text {
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}
.card-contents__supplement--text .accent {
  color: #074098;
}
@media screen and (max-width: 768px) {
  .card-contents__supplement--text {
    font-size: 12px;
  }
}

.warning {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .warning {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.warning__text {
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .warning__text {
    font-size: 10px;
    text-align: start;
  }
}

.pr__image {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 768px) {
  .pr__image {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.pr__image--link {
  display: block;
}
.pr__image--img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.kv {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 105px 40px;
}
@media screen and (max-width: 768px) {
  .kv {
    margin: 48px 16px 84px;
    flex-direction: column;
    gap: 12px;
  }
}
.kv__text {
  margin-top: 32px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .kv__text {
    margin-top: 0;
    margin-bottom: 6px;
  }
}
.kv__text--main {
  margin-top: 40px;
  font-size: min(5vw, 71px);
  font-weight: 600;
  color: #074098;
}
@media screen and (max-width: 768px) {
  .kv__text--main {
    margin-top: 20px;
    font-size: 43px;
  }
}
.kv__text--nowrap {
  white-space: nowrap;
}
.kv__text--sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: min(2vw, 24px);
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .kv__text--sub {
    font-size: 14px;
  }
}
.kv__text--sub::before, .kv__text--sub::after {
  display: inline-block;
  width: 3px;
  height: 28px;
  content: "";
  background: #333;
}
@media screen and (max-width: 768px) {
  .kv__text--sub::before, .kv__text--sub::after {
    width: 2px;
    height: 16px;
  }
}
.kv__text--sub::before {
  transform: rotate(-31deg);
}
.kv__text--sub::after {
  transform: rotate(31deg);
}
.kv__img {
  max-width: 600px;
}
.kv__img--img {
  width: 100%;
}

.lead {
  margin: 48px 0;
}
.lead__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 34px;
  padding-left: 72px;
  padding-right: 72px;
}
@media screen and (max-width: 768px) {
  .lead__wrap {
    display: block;
    padding-left: 32px;
    padding-right: 32px;
  }
}
.lead__text {
  grid-area: 1/1/2/2;
  align-self: end;
}
.lead__text--img {
  width: 100%;
}
.lead__img {
  grid-area: 1/2/3/3;
}
@media screen and (max-width: 768px) {
  .lead__img {
    margin-top: 24px;
  }
}
.lead__img--pc {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .lead__img--pc {
    display: none;
  }
}
.lead__img--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .lead__img--sp {
    width: 100%;
    display: block;
  }
}
.lead__button {
  margin-top: 48px;
  grid-area: 2/1/3/2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  text-decoration: none !important;
  color: #fff !important;
  font-size: 22px;
  font-weight: 600;
  background-color: #004098;
  border: 1px solid #004098;
  border-radius: 25px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .lead__button {
    margin-top: 14px;
    height: 40px;
    border-radius: 20px;
    font-size: 18px;
  }
}
.lead__button::after {
  position: absolute;
  top: 50%;
  right: 22px;
  display: block;
  width: 12px;
  height: 12px;
  margin-top: 2px;
  margin-left: 2px;
  content: "";
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translateY(calc(-50% - 2px)) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .lead__button::after {
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
}

.return {
  padding: 80px 0;
  margin-bottom: 0;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .return {
    padding: 40px 0;
  }
}
.return__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  height: 50px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: bold;
  color: #203d95 !important;
  text-decoration: none !important;
  background-color: #fff;
  border: 2px solid #203d95;
  border-radius: 5px;
}
.return__button::after {
  position: absolute;
  top: 50%;
  right: 16px;
  display: block;
  width: 8px;
  height: 8px;
  margin-top: 2px;
  margin-left: 2px;
  content: "";
  border-right: 2px solid #203d95;
  border-bottom: 2px solid #203d95;
  transform: translateY(calc(-50% - 2px)) rotate(-45deg);
}

body {
  background-color: #e8eef2;
  color: #333;
  font-family: "Helvetica Neue", Arial, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}/*# sourceMappingURL=common.css.map */