/*----------
	Reset
----------*/
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
  font-weight: inherit;
  font-size: inherit;
  font-style: inherit;
  -webkit-tap-highlight-color: transparent;
}
article, aside, details, figcaption, figure, picture, main, footer, header, hgroup, menu, nav, section {
  display: block;
  margin: 0;
}
ul, ol {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}
button {
  font-family: inherit;
}
/*----------
	vars
----------*/ :root {
  --color-base: #333;
  --color-blue: #154b94;
  --color-red: #d71718;  
  --color-fill: #fff;
}
/* ------------------------------------------------------------
	ベースレイアウト
------------------------------------------------------------ */
html {
  font-size: 10px;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
  background-color: #FFF;
  font-size: 1.8rem !important;
  font-weight: 400;
  line-height: 1.7;
  font-family: 'Noto Sans JP',Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans","Helvetica Neue",Meiryo,sans-serif;
  font-optical-sizing: auto;
  font-variation-settings: "wdth"100;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
  color: var(--color-base);
  margin: 0 0 100px;
}
.header {
  position: static;
}
footer {
  margin: 0 0 100px;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ------------------------------------------------------------
	汎用パーツ
------------------------------------------------------------ */
/* 出し分け
---------------------------------------- */
@media screen and (max-width: 767px) {
  *[pc] {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  *[sp] {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {}

/* リンク
---------------------------------------- */
.text-link {
  color: var(--color-blue) !important;
  text-decoration: underline;
}
.text-link:hover {
  opacity: 0.7;
  text-decoration: none;
}

/* テキスト
---------------------------------------- */
.text-bold {
  font-weight: 700 !important;
}
.text-center {
  text-align: center !important;
}
.text-red {
  color: var(--color-red) !important;
}

/* アニメーション
---------------------------------------- */
.js-anime-trigger {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s ease-in;
  transition-delay: 0.3s;
}
.js-anime-trigger.is-anime-completed {
  transform: translateY(0);
  opacity: 1;
}
.js-anime-delay {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s ease-in;
  transition-delay: 0.3s;
}
.js-anime-delay.is-anime-completed {
  transform: translateY(0);
  opacity: 1;
}

/* main
---------------------------------------- */
.main {
  overflow: hidden;
}

/* keyvisual
---------------------------------------- */
.keyvisual {
  background-image:url("../../img/supplement/4010/1/kv_bg.png");
  background-size: cover;
}
.keyvisual__inner {
  margin: 0 auto;
  max-height: 500px; 
  position: relative;
  background-size: contain, contain;
  background-position: right, left;
  background-repeat: no-repeat;  
}
.keyvisual__text img {
  margin: 0 auto;
}
.keyvisual__title {
  background: #000;
  text-align: center;
  padding: 30px;
  margin: 0;
}
.keyvisuall__title__inner{
  margin: 0 auto;
  max-width: 1000px; 
}
@media screen and (max-width: 1176px) {
  .keyvisual__inner {
    width: 100%;
  }
  .keyvisual__title {
    padding: 15px;
  }
  .keyvisual__title img {
    width: 100%;
  }
  .keyvisual__text {
    width: 100%;
  }
}

/* nav
---------------------------------------- */
.nav {
  margin: 100px auto;
}
.nav__title {
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 50px;
}
.nav__title span {
  color:var(--color-blue);
}
.nav__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding: 0 5%;
}
.nav-list {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 2.4rem;
  font-weight: bold;
}
.nav-list__item {
  counter-increment: feature;
  flex: 1;
}
.nav-list__link {
  padding: 30px 20px;
  position: relative;  
  z-index: 0;
  border: var(--color-blue) 5px solid;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;  
}
.nav-list__link::before {
  content: counter(feature);
  background: var(--color-blue);
  color: #fff;
  padding: 10px;
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-list__link::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 24px 24px;
  border-color: transparent transparent var(--color-blue) transparent;
  transition: all 0.3s;
}
.nav-list__link:hover {
  opacity: 0.7;
}
.nav-list__link:hover::after {
  right: 7px;
  bottom: 7px;
}
.nav-list__sub {
  font-size: 1.6rem;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .nav {
    margin: 50px auto;
  }
  .nav__inner {
    padding-left: 10vw;
    padding-right: 10vw;
  }
  .nav__title {
    font-size: 3rem;
    line-height: 1.4;
    margin: 0 0 25px;
  }
  .nav-list {
    display: block;
    font-size: 2rem;
  }
  .nav-list__item {
    width: auto;
  }
  .nav-list__item + li {
    margin-top: -4px;
  }
  .nav-list__link {
    padding: 20px 15px;
  }
  .nav-list__img {
    width: 100%;
  }
  .nav-list__sub {
    font-size: 1.4rem;
  }  
}

.supplement {
  font-size: 1.4rem;
  margin: 5px 10px 15px;
}

/* section
---------------------------------------- */
.section {
  position: relative;
  z-index: 0;
  margin: 100px 0 150px;
  background: #fff;
}
#feature01::after,
#feature02::after {
  content: "";
  background: linear-gradient(to bottom, #fff, #efefef);
  display: block;
  height: 300px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8vw), 0 100%);
  position: relative;
  bottom: 100px;
  z-index: -1;
  margin: 0px 0 -150px 0;
}
.section__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}
.section__title {
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 50px;
}
.section__subtitle {
  background-color: #fff;
  color: var(--color-base);
  display: block;
  margin: 0 auto 20px;
  padding: 0 30px;
  z-index: 1;
  font-size: 3.8rem;
  position: relative;
}
.section__title2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 100px 0 50px;
  border-left: var(--color-blue) 10px solid;
  padding: 0 0 0 20px;
}
.section__title3 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 50px;
  text-align: center;
}
.section__title3 span {
  font-weight: normal;
  font-size: 80%;
}
.section__title-sup {
  font-size: 2.6rem;
  text-align: center;
  font-weight: bold;
  margin: 50px 0 30px;
  color: var(--color-red);
}

.section__subtitle:before,
.section__subtitle:after {
  background: #ccc;
  content: "";
  height: 3px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 250px;
}
.section__subtitle:before {
  left: 0;
}
.section__subtitle:after {
  right: 0;
}
.section__text {
  font-size: 2rem;
  margin: 0 0 15px;
}
.section__subtitle .number {
  background-color: var(--color-blue);
  color: #fff;
  display: inline-block;
  font-size: 2.8rem;
  line-height: 45px;
  margin-left: 16px;
  text-align: center;
  width: 45px;
  position: relative;
  top: -4px;  
}
.section__img {
  margin: 0 auto;
  max-width: 700px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .section__inner {
    padding-left: 5vw;
    padding-right: 5vw;
  }  
  .section__title {
    font-size: 5.5rem !important;
  }
  .section__subtitle:before,
  .section__subtitle:after { 
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .section {
    margin: 50px 0 100px;
  }   
  .section__title {
    font-size: 2.3rem !important;
    margin-bottom: 25px;
  }
  .section__title3 {
    font-size: 2rem !important;
    margin: 0 0 25px;
  }
  .section__subtitle{
    font-size: 2rem;
  }
  .section__subtitle:before,
  .section__subtitle:after { 
    width: 30px;
  }
  .section__subtitle .number {
    font-size: 2rem;
    width: 30px;
    line-height: 30px;
  }
  .section__text {
    font-size: 1.6rem;
  }
  .section__title2 {
    font-size: 1.8rem;
    margin: 50px 0 25px;
  }
  #feature01::after,
  #feature02::after {
    height: 150px;
    bottom: 90px;
  }
  .section__title-sup {
    font-size: 1.8rem;
  }
}

/* イントロダクション
---------------------------------------- */
.introduction {
  background: #eee;
}
.introduction__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  padding: 25px 0;
}
.introduction__box {
  background: #fff;
  padding: 50px;
  border-radius: 50px 0;
  margin: 30px 0;
}
.introduction__title {
  background:var(--color-blue);
  color: #fff;
  padding: 10px 20px;
  font-size: 3rem;
  font-weight: bold;
  margin: 50px 0 30px;
}
.introduction__title:first-child {
  margin-top: 0;
}
.introduction__img {
  margin: 30px auto;
  max-width: 800px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .introduction__title {
    font-size: 2rem;
  }
  .introduction__inner {
    padding: 15px 0;
  }
  .introduction__box {
    margin: 0 10px 15px;
    padding: 25px;
    border-radius: 25px 0;    
  }
}

/* グラフ
---------------------------------------- */
.chart {
  margin: 30px 0;
  padding: 80px 100px;
}
.chart__title {
  font-size: 3.6rem !important;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 25px;
  text-align: center;
  display: flex;
  flex-flow: column;
}
.chart__title span {
  font-size: 2rem;
  background: var(--color-blue);
  color: #fff;
  display: block;
  padding: 5px 20px;
  margin: 10px auto 0;
}
.chart__caption {
  color: #777;
  font-size: 1.6rem;
  margin-bottom: 50px;
  text-align: center;
}
.chart__period {
  text-align: center;
  margin: 0 0 50px;
}
.chart__img--col2 {
  display: flex;
  gap: 20px;
  margin: 0 0 30px;
}
.chart__img--col2 img {
  width: calc(50% - 10px);
}
.chart--nasdaq100 {
  background: linear-gradient(to right, #45394B, #62799A);
  position: relative;
  z-index: 0;
  color: #fff;
}
.chart__box {
  width: 100%;
  height: 500px;
}
.chart__source {
  font-size: 1.4rem;
  margin: 30px 0;
}
.chart--shadow {
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}
.chart--border {
  border: #ccc 1px solid;
}


@media screen and (max-width: 1024px) {
  .chart {
    padding: 50px;
    margin-top: 25px;
  }
  .chart__title {
    font-size: 3rem !important;
  }  
}
@media screen and (max-width: 767px) {
  .chart {
    padding: 15px;
    margin-top: 25px;
  }
  .chart__title {
    font-size: 2rem !important;
    margin-bottom: 5px;
  }
  .chart__title span {
    font-size: 1.2rem;
    padding: 5px 10px;
  }
  .chart__period {
    font-size: 1.4rem;
    margin: 0 0 25px;
  }
  .chart__img--col2 {
    flex-wrap: wrap;
  }
  .chart__img--col2 img {
    width: 100%;
  }
  .chart__box {
    height: 300px;
  }
}

/* 注記
---------------------------------------- */
.notice-list {
  font-size: 1.4rem;
  margin: 50px 0 0;
  padding: 0;
}
.notice-list__item {
  padding-left: 1.5em;
  line-height: 1.5;
  position: relative;
}
.notice-list__item:before {
  position: absolute;
  top: 0;
  left: 0;
}
.notice-list--asterisk .notice-list__item:before {
  content: "※";
  margin-right: 0.5em;
}
.notice-list--asterisk2 > .notice-list__item {
  counter-reset: list;
  counter-increment: title;
  padding-left: 2em;
}
.notice-list--asterisk2 > .notice-list__item:before {
  content: "※"counter(title);
}
@media screen and (max-width: 767px) {
  .notice-list {
    font-size: 1.2rem;
  }
}

/* ファミリーファンド
---------------------------------------- */
.family {
  border: #ccc 1px solid;
  background: #f9f9f9;
  padding: 80px 100px;
  margin: 50px 0;
}
@media screen and (max-width: 1024px) {
  .family {
    padding: 40px;
    margin: 25px 0;
  }
}
@media screen and (max-width: 767px) {
  .family {
    padding: 20px;
    margin: 25px 0;
  }
}

/* table
---------------------------------------- */
.table {
  font-size: 2rem;
  width: 100%;
  margin: 0 0 15px 0;
  display: table;
  line-height: 1.5;
}
.table th {
  border: #ccc 1px solid;
  padding: 15px;
  text-align: left;
}
.table thead th {
  background: var(--color-blue);
  color: #fff;
}
.table tbody th {
  background: #eee;
}
.table td {
  border: #ccc 1px solid;  
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .table {
    font-size: 1.4rem;
  }
}


/* 購入ボタン
---------------------------------------- */
.cart { 
  background: #ddd;
  text-align: center;
  padding: 15px 50px;
  position: fixed;
  z-index: 1;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
}
.cart__wrapper {
  display: flex;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.cart__btn {
  background-color: var(--color-blue);
  border: 2px solid var(--color-blue);
  color: #fff;
  display: block;
  font-size: 1.8rem;
  line-height: 66px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all 0.1s;
  width: 100%;
  max-width :400px;
}
.cart__btn::before,
.cart__btn::after {
  content: "";
  position: absolute;
  top: 50%;
}
.cart__btn:before {
  background-color: #fff;
  border-radius: 50%;
  height: 20px;
  right: 20px;
  transform: translateY(-50%);
  width: 20px;
  z-index: 0;  
}
.cart__btn:after {
  border-top: 2px solid var(--color-blue);
  border-right: 2px solid var(--color-blue);
  height: 5px;
  transform: translateY(-50%) rotate(45deg);
  right: 28px;
  width: 5px;
  z-index: 1;  
}
.cart__btn:hover {
  background-color: #fff;
  color: var(--color-blue);
}
.cart__btn:hover:before {
  background: var(--color-blue);
}
.cart__btn:hover:after {
  border-color: #fff;
}
.cart__btn--s {
  line-height: 50px;
}
.cart2 { 
  background: #eee;
  text-align: center;
  padding: 30px;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
}
.cart2__message {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 15px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .cart {
    padding: 10px;
  }
  .cart2 {
    padding: 10px;
  }
  .cart__btn:before {
    right: 10px;
  }
  .cart__btn:after {
    right: 18px;
  }
}
@media screen and (max-width: 767px) {

  .cart__wrapper {
    gap: 10px;
  }
  .cart__text{
    font-size: 1.8rem;
  }
  .cart__btn {
    line-height: 1.6;
    font-size: 1.4rem;
    padding: 7px 25px 7px 0;
  }
  .cart__btn:before {
    right: 5px;
  }
  .cart__btn:after {
    right: 13px;
  }
  .cart2__message {
    font-size: 1.6rem;
    text-align: left;
  }
}


/* ファンド紹介
---------------------------------------- */
.fund-list {
  display: flex;
  gap: 30px;
}
.fund-list__link:hover .fund-list__img {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {

  .fund-list {
    flex-wrap: wrap;
    gap: 15px;
  }
}

/* 留意事項・注意事項
---------------------------------------- */

.attention{
  padding: 10px 0 100px;
  color: #666;
}
.attention__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}
.attention__title {
  font-size: 4rem !important;
  margin: 100px 0 50px;
}
.attention__title2 {
  font-size: 3rem !important;
  border-left: #666 10px solid;
  padding: 0 0 0 15px;
  margin: 80px 0 30px;
}
.attention__text {
  font-size: 1.6rem;
  margin: 0 0 15px;
}
.attention__text2 {
  font-size: 1.4rem;
  border: #ccc 1px solid;
  background: #fff;
  padding: 10px;
  margin: 0 0 15px;  
}
.circle-list {
  font-size: 1.4rem;
  margin: 50px 0 0;
}
.circle-list__item {
  font-size: 1.6rem;
  padding-left: 1.5em;
  text-indent: -1.5em;
  line-height: 1.5;
}
.circle-list__item:before {
  content: "・";
  margin-right: 0.5em;
}
@media screen and (max-width: 1024px) {
  .attention__inner {
    padding-left: 5.333vw;
    padding-right: 5.333vw;
  }
}
@media screen and (max-width: 767px) {
  .attention {
    padding: 10px 0 50px;
  }
  .attention__title {
    font-size: 3rem !important;
    margin: 50px 0 25px;
  }
  .attention__title2 {
    font-size: 2rem !important;
    margin: 40px 0 15px;
  }
  .circle-list {
    margin: 25px 0 0;
    font-size: 1.2rem;
  }
}

/* 会社情報
---------------------------------------- */

.company {
  background: #ccc;
  padding: 20px 0;
  font-size: 1.6rem;
}
.company__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}
.company__text {
  font-size: 1.6rem;
  margin: 0 0 15px;
}
@media screen and (max-width: 1024px) {
  .company {
    font-size: 1.5rem;    
    padding: 15px 0;
  }  
  .company__inner {
    padding-left: 5.333vw;
    padding-right: 5.333vw;
  }
}
