@charset "UTF-8";

/* ============================================== */
/*                    共通設定                    */
/* ============================================== */
/* *,
*::before,
*::after {
  outline: 1px solid red;
} */

:root {
  --red01: #CE1B3C;
  --red02: #AF1F3A;
  --red03: #DC2626;
  --blue01: #2E4C92;
  --blue02: #0990E1;
  --blue03: #048ACF;
  --blue04: #DCEEF8;
  --yellow01: #F7EC37;
  --yellow02: #FFFF00;
  --yellow_underLine: rgba(247, 236, 55, 0.37);
  --gray01: #646464;
  --gray02: #333333;
  /* グラデーション色 */
  --gradientColor_red01: #AC1834;
  --gradientColor_red02: #B31936;
  --gradientColor_red03: #DF143A;
  --gradientColor_red04: #B71937;
  --gradientColor_red05: #EC264B;
  --gradientColor_blue01: #425B97;
  --gradientColor_blue02: #213C7D;
  --gradientColor_blue03: #4F67A1;
  /* グラデーション */
  --gradient_red01: linear-gradient(to top, var(--gradientColor_red01) 0%, var(--gradientColor_red02) 30%, var(--gradientColor_red03) 100%);
  --gradient_blue01: linear-gradient(to bottom, var(--gradientColor_blue01) 0%, var(--gradientColor_blue02) 100%);
  --gradient_red02: linear-gradient(30deg, var(--gradientColor_red01) 0%, var(--gradientColor_red04) 30%, var(--gradientColor_red03) 100%);
  --gradient_blue02: linear-gradient(30deg, var(--gradientColor_blue03) 0%, var(--gradientColor_blue02) 100%);
  --gradient_red03: linear-gradient(-70deg, var(--gradientColor_red01) 0%, var(--gradientColor_red02) 30%, var(--gradientColor_red05) 100%);
  --gradient_blue03: linear-gradient(100deg, var(--gradientColor_blue03) 0%, var(--gradientColor_blue02) 100%);
  /* フォント */
  --ff_notoSans: "Noto Sans JP", serif;
  --ff_oswald: "Oswald", sans-serif;
  --ff_plusJakartaSans: "Plus Jakarta Sans", serif;
  --ff_zenMaruGo:  "Zen Maru Gothic", serif;
}

.fc_ylw {color: var(--yellow01) !important;}  
.fc_red {color: var(--red03) !important;}
.fc_blue {color: var(--blue01) !important;}
.fz12{font-size: 12px;}
.ff_oswald {font-family: var(--ff_oswald);}

.flex {display: flex;}
.flex.col3 {gap: 16px;}
.flex.col3 li {width: calc(100% / 3);}
.align_left{text-align: left;}
.align_right{text-align: right;color: #1F1F1F;}
.wht_spc{
  /* white-space: nowrap; */
  word-break: auto-phrase;
}

* {
  color: #1F1F1F;
  font-family: var(--ff_notoSans);
  line-height: 1.5;
}

*:not(span) {
  font-size: 16px;
}

span {
  color: currentColor;
}

body,
main {
  overflow-x: hidden;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  transition: .3s;
}

a:hover {
  opacity: 0.8;
}

.inner {
  width: 100%;
  max-width: 1100px;
  padding: 0 50px;
  margin: 0 auto;
}

.pc_cont {display: block !important;}
.sp_cont {display: none !important;}

@media screen and (max-width:767px) {
  .pc_cont {
    display: none;
  }

  .sp_cont {
    display: block;
  }

  /* =========== /max-width:767px =========== */
}

/* ============================================== */
/*            スクロールアニメーション            */
/* ============================================== */
.scrollin {
  visibility: hidden;
  opacity: 0;
  transition: 1.2s;
}

.scrollin.bottom {
  transform: translateY(30px);
}

.scrollin.left {
  transform: translateX(-30px);
}

.scrollin.right {
  transform: translateX(30px);
}

.scrollin.active,
.scrollin.bottom.active,
.scrollin.left.active,
.scrollin.right.active {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (min-width:768px) {
  /* 時差アニメーション */
.flex.col3 li.scrollin.bottom.active:nth-of-type(2){transition-delay: .3s;}
.flex.col3 li.scrollin.bottom.active:nth-of-type(3){transition-delay: .6s;}

.etf .flex li.scrollin.bottom.active:nth-of-type(3){transition-delay: .3s;}
.etf .flex li.scrollin.bottom.active:nth-of-type(4){transition-delay: .6s;}
  /* =========== /min-width:768px =========== */
}


/* スライド */
.scrollin.slidein_all,
.scrollin.slidein_pc{
  opacity: 1;
  visibility: visible;
  clip-path: inset(-20% 100% -20% 0);
}
.scrollin.slidein_sp{
  opacity: 1;
  visibility: visible;
}
.scrollin.slidein_all.active,
.scrollin.slidein_pc.active{clip-path: inset(-20% 0 -20% 0);}
.scrollin.slidein_sp,
.scrollin.slidein_sp.active{clip-path: none;}

/* アニメーションディレイ */
h3 span.scrollin.slidein:nth-of-type(2){transition-delay: .6s;}
h3 span.scrollin.slidein:nth-of-type(3){transition-delay: 1.2s;}
.scrollin.slidein_all+br+.slidein_pc{transition-delay: .6s;}
.scrollin.slidein_all+br+.slidein_all{transition-delay: .6s;}

/* ============================================== */
/*                    ヘッダー                    */
/* ============================================== */
body.modal-open header{width: calc(100% - 17px);}
header {
  position: relative;
  z-index: 20;
  top: 0;
  width: 100%;
  background: #fff;
  height: 90px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .17);
}
header.is_fixed{
  position: fixed;
  top: 0;
}

header nav.flex.inner{
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  padding: 0 30px;
}
header nav.flex.inner>p{
  max-width: 160px;
}

header ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  column-gap: 30px;
}

header ul li{
  position: relative;
  text-align: center;
}
header ul li:not(:last-of-type):before{
  position: absolute;
  z-index: -1;
  inset: 17px auto auto 50%;
  content: '';
  width: min(11.25vw,175px);
  height: 1px;
  background: var(--blue03);
}

header ul li a {
  position: relative;
  z-index: 0;
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1F1F1F;
}
header ul li a img{
  display: block;
  max-width: 76px;
  margin: 0 auto;
}

header ul li a:hover {
  opacity: 1;
  /* color: #fff; */
}

header ul li a::before {
  position: absolute;
  z-index: 0;
  inset: auto -200% -1.3em -200%;
  margin: 0 auto;
  content: '';
  width: 60px;
  height: 4px;
  /* width: 80px;
  height: 9px; */
  border-radius: 2px;
  background: var(--blue03);
  /* opacity: 0.2; */
  transform: scale(0, 1);
  transform-origin: center;
  transition: .3s;
}
header ul li a span{
  opacity: .5;
  transition: 0.3s;
}

header ul li a:hover::before,
header ul li a.is-active::before {
  transform: scale(1, 1);
}

header ul li a:hover span,
header ul li a.is-active span{opacity: 1;}

/* ============================================== */
/*              楽天ヘッダー              */
/* ============================================== */
.rakuten_header{
  position: absolute;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 110px;
  padding: 0 50px;
  display: flex;
  justify-content: flex-end;
}
.rakuten_header .flex{
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  justify-content: flex-end;
  align-items: center;
}
.rakuten_header .flex p:nth-of-type(1){
  position: absolute;
  z-index: 2;
  inset: 0 -100% auto;
  margin: auto;
  display: flex;
  align-items: center;
  width: 270px;
  height: 110px;
}
.rakuten_header .flex p:nth-of-type(2){width: 250px;}

/* ============================================== */
/*              ハンバーガーメニュー              */
/* ============================================== */
.ham {
  position: absolute;
  z-index: 20;
  inset: 0 5px auto auto;
  width: 50px;
  height: 50px;
  transition: .3s;
  cursor: pointer;
}

.ham span {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0;
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue03);
  transition: opacity .1s .3s;
}

.ham::before,
.ham::after {
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue03);
  transition:
    transform .3s,
    top .3s .3s,
    opacity .3s .3s;
}

.ham::before {
  top: 35%;
}

.ham::after {
  top: 65%;
}



/* open */
.ham.open span {
  opacity: 0;
}

.ham.open::before,
.ham.open::after {
  top: 50%;
  transition:
    top .3s,
    transform .3s .3s,
    opacity .3s .3s;
}

.ham.open::before {
  transform: translateX(-50%) rotate(-45deg);
}

.ham.open::after {
  transform: translateX(-50%) rotate(45deg);
}

/* ============================================== */
/*                 キービジュアル                 */
/* ============================================== */
.kv {
  position: relative;
  z-index: 0;
  margin-top: 110px;
  aspect-ratio: 1600 / 783;
  background: url(../img/kv_bg.jpg) no-repeat center/contain;
}

.kv h1 {
  position: absolute;
  z-index: 0;
  left: 9.5%;
  top: 50%;
  transform: translate(0, calc(-50% + 30px)) !important;
  width: 40.9375vw;
  height: auto;
}
.kv h1.scrollin.bottom.active{
  transform: translate(0, -50%) !important;
}

/* ============================================== */
/* セクション共通 */
/* ============================================== */
main>section {
  padding: 175px 0;
}

/* 見出し */
section .h2_cont{
  text-align: center;
  margin: 0 auto 90px;
}
section .h2_cont h2 {
  font-size: 56px;
  font-weight: 700;
  margin: 0 auto 35px;
}
section .h2_cont h2 img{
  display: inline-block;
  margin: 0 0 15px;
}
section .h2_cont h2 span{
  font-size: 30px;
  line-height: 1.35;
  font-weight: 600;
}
section .h2_cont p,
section .h2_cont+p{
  font-size: 20px;
  line-height: 2;
  font-weight: 600;
}

section .h2_cont+p{
  text-align: center;
  margin: 0 auto 25px;
}


/* グラフ組 */
.ttl_graph {
  color: var(--gray01);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  margin: 0 0 15px;
}

.ttl_graph+figure figcaption,
.ttl_graph+.pinch_out+figure figcaption {
  color: var(--gray01);
  font-size: 14px;
  line-height: 1.7;
  /* text-align: center; */
  margin: 25px 0 0;
}

.ttl_graph.align_left,
.ttl_graph.align_left+figure figcaption,
.ttl_graph.align_left+p+figure figcaption {
  text-align: left;
}

.ttl_graph.align_left+figure figcaption {
  margin: 10px 0 0;
}
figcaption.fz12{font-size: 12px !important;}

/* 吹き出し */
.baloon {
  position: relative;
  z-index: 0;
  width: min(100%, 840px);
  background: #fff;
  border: 2px solid #80c4e6;
  border-radius: 25px;
  margin: 105px auto 40px;
  padding: 25px 29px;
}

.baloon::before,
.baloon::after {
  position: absolute;
  z-index: 1;
  inset: auto -100% -27px -85%;
  margin: 0 auto;
  content: '';
}

.baloon::before {
  bottom: -21px;
  width: 30px;
  height: 21px;
  background: #80c4e6;
  clip-path: polygon(10% 0, 0 100%, 100% 0);
}

.baloon::after {
  bottom: -17px;
  left: -84.8%;
  width: 28px;
  height: 19px;
  background: #fff;
  /* background: #f00; */
  clip-path: polygon(10% 0, 4% 100%, 100% 0);
}

.baloon p {
  position: relative;
  z-index: 0;
  color: var(--gray02);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.baloon p span {
  background: linear-gradient(to bottom, transparent 60%, var(--yellow_underLine) 60%) no-repeat center/100% 100%;
}

/* .baloon p::before {
  position: absolute;
  z-index: 0;
  inset: -50px -20px auto auto;
  content: '';
  width: 55px;
  height: 60px;
  background: url(../img/ico_check02.png) no-repeat center / contain;
} */

/* ============================================== */
/* オルカン導入 */
/* ============================================== */

.kv+section>.inner+figure {
  position: relative;
  z-index: 0;
  left: calc((min(136.6vw, 2186px) / 6) * -1);
  width: min(136.6vw, 2186px);
  margin: 0 auto 12px;
}

/* ============================================== */
/* オールカントリーについて改めておさらい */
/* ============================================== */
/* header.is_fixed+.about_allcountry{padding-top: 265px;} */
.about_allcountry{padding-bottom: 0;}
section.osarai {
  position: relative;
  z-index: 0;
  margin: 175px auto 320px;
  padding: 210px 0 0;
}

section.osarai h3 {
  display: inline;
  color: var(--blue03);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.75;
}
section.osarai h3 span{background: #fff;}
@media screen and (min-width:768px) {
  
  section.osarai h3 span:nth-of-type(1){padding-left: .2em;}
  section.osarai h3 span:nth-of-type(2){padding-right: .2em;}
  /* =========== /min-width:768px =========== */
}


/* カードセクション */
section.osarai>.inner {position: relative;}

section.osarai>.inner>div {
  position: relative;
  /* z-index: 0; */
  margin: 50px auto 0;
  padding: 80px 65px 35px;
  background: #fff;
  border-radius: 25px;
  filter: drop-shadow(0 0 30px rgba(6, 78, 114, 0.2));
  transition: 
  opacity .1s
  transform .3s
  ;
}

section.osarai section {
  position: relative;
  z-index: 0;
}

section.osarai section:not(:last-of-type) {
  margin: 0 0 75px;
}

section.osarai>.inner>div section>div {
  position: relative;
  z-index: 0;
  padding: 0 0% 0 0;
  margin: 0 0 25px;

}

section.osarai>.inner>div section>div h4 {
  position: relative;
  z-index: 0;
  color: var(--gray02);
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 25px;
  padding: 0 0 0 1.7em;
}

section.osarai>.inner>div section>div h4 span {color: var(--blue03);}

section.osarai>.inner>div section>div h4+p{
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
}

section.osarai .ttl_graph{
  color: var(--gray02);
}

/* あしらい */
section.osarai>.inner>div section>div h4::before{
  position: absolute;
  z-index: 0;
  inset: -.5em auto auto 0;
  content: '';
  width: 41px;
  height: 52px;
  background: url(../img/ico_check.png) no-repeat center bottom / contain;
}
section.osarai::before,
section.osarai::after {
  position: absolute;
  z-index: -2;
  inset: 0 -100% auto;
  content: '';
  margin: 0 auto;
}

section.osarai::before {
  top: -15vw;
  width: 160vw;
  height: 86.25vw;
  background: url(../img/bg01.png) no-repeat center / cover;
}

section.osarai::after {
  top: 25vw;
  width: 100vw;
  height: calc(100% - 10vw + 225px);
  background: var(--blue03);
  background: linear-gradient(to bottom, var(--blue03) 0%, #0489CD 85%, #00A7E5 100%);
}

section.osarai>.inner::before {
  position: absolute;
  z-index: -1;
  /* inset: max(-45.45vw, -450px) 5% auto auto; */
  inset: max(calc(-100% + 21.21vw), -210px) 5% auto auto;
  /* content: ''; */
  /* width: min(27.875vw, 445px);
  height: 41.875vw; */
  width: min(44.94vw, 445px);
  height: min(67.67vw, 670px);
  background: url(../img/bg01_02.svg) no-repeat center /contain;
}

section.osarai>.inner>figure{
  position: absolute;
  z-index: -1;
  inset: max(calc(-100% + 21.21vw), -210px) 5% auto auto;

  /* width: min(27.875vw, 445px);
  height: 41.875vw; */
  width: min(44.94vw, 445px);
  height: min(67.67vw, 670px);
  transition-delay: .8s;
}

/* ============================ */
/* STEP2 自身の投資内容をチェック！ */
/* ============================ */
section.check {
  position: relative;
  z-index: 0;
  text-align: center;
  padding: 100px 0 0;
}
section.check::before{
  position: absolute;
  z-index: -2;
  inset: -23vw -100% auto;
  margin: auto;
  content: '';
  width: 160vw;
  height: 86.25vw;
  background: url(../img/bg02_01.png) no-repeat center / cover;
}

section.check h3 {
  position: relative;
  z-index: 0;
}

section.check h3::before {
  position: absolute;
  z-index: 0;
  inset: -100% -100% auto -110%;
  margin: 0 auto;
  content: '';
}

section.check h3.h3_bg {
  color: #fff;
  background: var(--blue03);
}
section.check .ttl_graph{
  font-size: 20px;
  color: var(--gray02);
  margin: 0 0 -5px;
}

section.osarai>section>.inner>p:not(.ttl_graph) {
  color: var(--gray02);
  font-size: 30px;
  font-weight: 700;
  margin: 55px auto 0;
}

section.osarai>section>.inner>.flex.col3 {
  margin: 30px auto 140px;
}

section.osarai>section>.inner>.ttl_graph+div+figure figcaption {
  color: #646464;
  font-size: 14px;
  margin: 15px 0 0;
}

/* どういう組み合わせがいいの？ */
section.pf_compare {
  padding: 200px 0 0;
}

section.pf_compare h3.h3_hatena {
  position: absolute;
  z-index: 0;
  inset: 10% -100% auto;
  margin: 0 auto;
  font-family: var(--ff_zenMaruGo);
  font-size: 28px;
  font-weight: 700;
  color: var(--blue03);
  line-height: 1.42;
  background: none;
  text-align: center;
}

section.pf_compare h3.h3_hatena::before {
  position: absolute;
  z-index: 0;
  inset: -155% -100.5% auto -100%;
  margin: auto;
  content: '';
  width: 72px;
  height: 117px;
  background: url(../img/ico_question.svg) no-repeat center /contain;
}

section.pf_compare h3.h3_hatena+figure {
  margin: 0 auto;
  /* width: 90%; */
  padding: 0 50px;
}

section.pf_compare>div {
  position: relative;
  z-index: 0;
  bottom: -15px;
}

section.pf_compare>div::before{
  position: absolute;
  z-index: -1;
  inset: auto auto 0 0;
  margin: auto;
  content: '';
  width: 100vw;
  height: 36.768vw;
  background: url(../img/bg02_02.svg) no-repeat left calc(50% - 11px) top 50% / contain;
}

/* 自分の分散投資をチェックしてモデルポートフォリオと比較してみよう */
/* section.pf_compare>section {
  position: relative;
  z-index: 0;
  background: var(--blue03);
  padding: 160px 0 190px;
}

section.pf_compare>section>.inner {
  max-width: 700px;
}

section.pf_compare>section h4 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.625;
  margin: 0 auto 60px;
}

section.pf_compare>section h4 span {
  font-size: 29px;
}

section.pf_compare>section p {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 2.22;
  letter-spacing: 0.05em;
}
  */
/* あしらい */
/* section.pf_compare>section>figure {
  position: absolute;
  z-index: 0;
  inset: -55px -115px auto auto;
  content: '';
  width: 290px;
  height: 240px;
  mix-blend-mode: screen;
}

section.pf_compare>section::before,
section.pf_compare>section::after {
  position: absolute;
  z-index: -1;
  content: '';
}

section.pf_compare>section::before {
  inset: auto auto -35px -430px;
  width: 1240px;
  height: 305px;
  background: url(../img/bg02_01.png) no-repeat center/contain;
}

section.pf_compare>section::after {
  inset: auto -100px -100px auto;
  width: 443px;
  height: 334px;
  background: url(../img/bg02_02.png) no-repeat center/contain;
} */

/* ============================================== */
/* STEP3 分散投資の考え方 */
/* ============================================== */
section.diversification{
  background: #fff;
  padding: 175px 0 78px;
}
section.diversification .inner > figure{margin: 0 auto 110px;}
section.diversification .inner > .flex{justify-content: space-between;}
section.diversification .inner > .flex>div{width: 43%;}
section.diversification .inner > .flex>div p{
  font-size: 20px;
  font-weight: 600;
  line-height: 1.8;
  margin: 0 0 1em;
}
section.diversification .inner > .flex>figure{width: 49%;}

/* ============================================== */
/* モデルポートフォリオ紹介 */
/* ============================================== */
section.portfolio {padding: 78px 0 0;}
section.portfolio .h2_cont p:nth-of-type(2) {
  font-size: 18px;
  text-align: left;
  font-weight: 700;
  width: 70%;
  margin: .5em auto 0;
  line-height: 1.5;
}
section.portfolio .h2_cont p:nth-of-type(2)>span.fc_red{
  margin-bottom: .5em;
  display: inline-block;
  color: var(--red01) !important;
}

section.portfolio .lead_text {
  margin: 30px auto 100px;
}

/* アンカーリンク */
section.portfolio .anc_list {
  justify-content: space-between;
  flex-wrap: wrap;
}

section.portfolio .anc_list li {
  position: relative;
  z-index: 0;
  width: min(calc(50% - 30px), 470px);
}

section.portfolio .anc_list li a {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

section.portfolio .anc_list li a p {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: clamp(18px,2.26vw,26px);
  font-weight: 700;
  line-height: 1.53;
  padding: 40px 45px 50px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, .3);
  transition: .3s;
}

section.portfolio .anc_list li a p>span> span:not(.fc_ylw) {
  font-size: clamp(12px,1.6vw,18px);
}

section.portfolio .anc_list li a p img {
  max-width: clamp(65px,8.35vw,93px);
  padding-right: min(.98vw,13px);
}

section.portfolio .anc_list li:nth-of-type(1) a p {
  background: var(--gradient_red01);
  border: 6px solid #CB1818;
  text-align: center;
}

section.portfolio .anc_list li:nth-of-type(2) a p {
  background: var(--gradient_blue01);
  border: 6px solid #3557A5;
}

/* あしらい */
section.portfolio .anc_list li a::before {
  position: absolute;
  z-index: 1;
  inset: auto -100% calc(50% - 65px);
  margin: 0 auto;
  content: '';
  font-size: 18px;
  color: #fff;
  display: block;
  width: 30px;
  height: 16px;
  background: url(../img/ico_arwBottom.svg) no-repeat center / contain;
  transition: .3s;
}

/* ホバー */
section.portfolio .anc_list li a:hover{opacity: 1;}
section.portfolio .anc_list li a:hover p{box-shadow: 0 4px 1px rgba(0, 0, 0, .5);}
section.portfolio .anc_list li a:hover p,
section.portfolio .anc_list li a:hover::before{transform: translateY(5px);}

/* ============================= */
/* モデルポートフォリオ */
section.portfolio>section:nth-of-type(1) {
  margin: 200px auto 0;
}

/* 見出し */
section.portfolio>section .pf_ttl {
  padding: 80px 0 140px;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 55px),
    calc(50% + 70px) calc(100% - 55px),
    50% 100%,
    calc(50% - 70px) calc(100% - 55px),
    0 calc(100% - 55px)
  );
}

section.portfolio>section .pf_ttl * {
  color: #fff;
}

section.portfolio>section .pf_ttl p {
  position: relative;
  z-index: 0;
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  padding: 0 0.8em;
}

section.portfolio>section .pf_ttl .flex {
  display: block;
}

section.portfolio>section .pf_ttl h3 {
  display: flex;
  column-gap: 18px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

section.portfolio>section .pf_ttl h3 img {
  max-width: 165px;
}

section.portfolio>section .pf_ttl h3>span {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.33;
}

section.portfolio>section .pf_ttl h3>span>span.fc_ylw {font-size: 48px;}

/* オルカンと同じ */
section.portfolio>section:nth-of-type(1) .pf_ttl {background: var(--gradient_red02);}
.pf_allcountry .pf_kaisetsu>h4 {background: var(--gradient_red03);}

/* S&P500と同じ */
section.portfolio>section:nth-of-type(2) .pf_ttl {background: var(--gradient_blue02);}
.pf_sp500 .pf_kaisetsu>h4 {background: var(--gradient_blue03);}
.pf_sp500 .pf_kaisetsu>h4 span{font-weight: 300;}

/* 背景 */
section.portfolio .bg {padding: 130px 0 400px;
}
section.portfolio .pf_allcountry{background: #FCF6F7;}
.pf_allcountry .bg {
  background: #FCF6F7;
  margin: max(calc(-11% + 3.95vw), -55px) 0 0;
}
section.portfolio .pf_sp500{background: #F3F9FE;}
.pf_sp500 .bg {
  background: #F3F9FE;
  margin: max(calc(-11% + 3.95vw), -55px) 0 0;
}
@media screen and (min-width:768px) {
  section.portfolio>.pf_allcountry .pf_kaisetsu>div{padding: 65px 83px 70px 89px;}
}

/* かんたん解説 共通
============================================ */
.pf_kaisetsu {
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

/* 見出し */
.pf_kaisetsu>h4 {
  position: relative;
  z-index: 0;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  padding: 0.75em 0.5em 0.75em 5em;
  letter-spacing: 0.025em;
}

.pf_kaisetsu>h4 span.fc_ylw {
  position: relative;
  z-index: 1;
  font-family: var(--ff_plusJakartaSans);
  font-size: 44px;
  font-style: italic;
  margin: 0 1em 0 0;
}
.pf_kaisetsu>h4>img{
  position: absolute;
  z-index: 0;
  inset: -100% auto -100% 1em;
  margin: auto;
  max-width: 120px;
}

/* コンテンツ */
figcaption.align_right,
.pf_kaisetsu figure figcaption,
.pf_kaisetsu figure figcaption a,
.summary figure figcaption,
.summary figure figcaption a,
.disclaimer{
  font-size: 14px;
  font-weight: 300;
  margin: 8px 0 0;
}
.pf_kaisetsu figure figcaption a,
.summary figure figcaption a{
  text-decoration: underline;
}

.pf_kaisetsu:not(:first-of-type){
  margin: 110px auto 80px;
}

.pf_kaisetsu>div {
  background: #fff;
  padding: 65px 85px 70px 90px;
}
.pf_kaisetsu>div>.flex{
  justify-content: space-between;
  align-items: center;
}

.pf_kaisetsu>div>.flex>div{width: 58%;}
.pf_kaisetsu>div>.flex>div dl{
  display: flex;
  align-items: center;
  padding: 16px 25px;
  padding: 16px 11px;
  min-height: 100px;
}
.pf_kaisetsu>div>.flex>div dl:nth-of-type(1){
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%); 
  margin: 0 0 13px;
}
.pf_kaisetsu>div>.flex>div dl:nth-of-type(2){clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);}

.pf_kaisetsu>div>.flex>div dl dt{
  font-size: 20px;
  font-weight: 600;
  padding: 0 20px 0 0;
  padding: 0 10px 0 0;
  width: 30%;
  text-align: center;
}
.pf_kaisetsu>div>.flex>div dl dd{
  font-size: 18px;
  line-height: 1.7;
  padding: 0 0 0 18px;
  border-left: 1px solid var(--gray01);
  width: 100%;
  word-break: break-word;
}
.pf_kaisetsu>div>.flex>div dl:nth-of-type(2) dd{
  padding-top: 1em;
  padding-bottom: 1em;
}


.pf_kaisetsu>div>.flex>div dl dd ul{padding: 6px 0;}
.pf_kaisetsu>div>.flex>div dl dd ul li{
  position: relative;
  z-index: 0;
  display: flex;
}
.pf_kaisetsu>div>.flex>div dl dd ul li:not(:last-of-type){margin: 0 0 14px;}
.pf_kaisetsu>div>.flex>div dl dd ul li span:nth-of-type(1){

  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  width: 75px;
  height: 28px;
  text-align: center;
  margin: 0 8px 0 0;
  padding: 0.1em;
  border-radius: 41px;
}
.pf_kaisetsu>div>.flex>div dl dd ul li:nth-of-type(1) span:nth-of-type(1){background: var(--blue01);}
.pf_kaisetsu>div>.flex>div dl dd ul li:nth-of-type(2) span:nth-of-type(1){background: #ED7D31;}
.pf_kaisetsu>div>.flex>div dl dd ul li:nth-of-type(3) span:nth-of-type(1){background: #F7B41E;}

.pf_kaisetsu>div>.flex>div dl dd ul li span:nth-of-type(2){width: calc(100% - 75px);}

.pf_kaisetsu>div>.flex>figure{width: min(40%,313px);}

.pf_kaisetsu>div>.flex+.disclaimer{
  width: fit-content;
  margin-left: auto;
  margin-top: 12px;
}

.pf_kaisetsu>div>section>h5{
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
  color: #fff;
  margin: 50px 0 20px;
  padding: 0 0 0 1.5em;
  clip-path: polygon(1% 0, 100% 0%, 99% 100%, 0% 100%);
}
.pf_kaisetsu>div>section>figure:nth-of-type(1){margin: 0 0 20px;}

.pf_kaisetsu>div>section:nth-of-type(2)>h5{margin-top: 55px;}
.pf_kaisetsu>div>section:nth-of-type(2){
  position: relative;
  z-index: 0;
}
.pf_kaisetsu>div>section:nth-of-type(2)::before{
  position: absolute;
  z-index: 1;
  inset: -50px -100% auto;
  margin: auto;
  content: '';
  width: 50px;
  height: 32px;
}
.pf_kaisetsu>div>section:nth-of-type(2) ul li{
  position: relative;
  z-index: 0;
  padding: 0 0 0 0.75em;
  font-size: 18px;
}
.pf_kaisetsu>div>section:nth-of-type(2) ul li::before{
  position: absolute;
  z-index: 0;
  inset: 8px auto auto -3px;
  content: '';
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

/* まとめて解説 */
.summary{
  margin: 0 auto;
  max-width: 1000px;
  padding: 110px 0 70px;
}
.summary h4{
  max-width: 495px;
  margin: 0 auto 50px;
}
.summary h4+p{
  font-weight: 600;
  line-height: 1.625;
  text-align: center;
  max-width: 530px;
  margin: 0 auto 50px;
}


/* オルカン */
.pf_allcountry .pf_kaisetsu>div>section>h5{background: var(--red01);}
.pf_allcountry .pf_kaisetsu>div>section:nth-of-type(2)::before{background: url(../img/ico_pfArrow_red.svg) no-repeat center / contain;}
.pf_allcountry .pf_kaisetsu figure figcaption a,
.pf_allcountry .summary figure figcaption a{color: var(--red01);}
.pf_allcountry .pf_kaisetsu>div>section:nth-of-type(2) ul li::before{background: var(--red01);}
.pf_allcountry .pf_kaisetsu>div>.flex>div dl{background: #FFF0F3;}
.pf_allcountry .pf_kaisetsu>div>.flex>div dl dt{color: var(--red01);}
.pf_allcountry .summary{background: #F8E6E9;}

/* S&P500 */
.pf_sp500 .pf_kaisetsu>div>section>h5{background: var(--blue01);}
.pf_sp500 .pf_kaisetsu>div>section:nth-of-type(2)::before{background: url(../img/ico_pfArrow_blue.svg) no-repeat center / contain;}
.pf_sp500 .pf_kaisetsu figure figcaption a,
.pf_sp500 .summary figure figcaption a{color: var(--blue01);}
.pf_sp500 .pf_kaisetsu>div>section:nth-of-type(2) ul li::before{background: var(--blue01);}
.pf_sp500 .pf_kaisetsu>div>.flex>div dl{background: #ECF6FF;}
.pf_sp500 .pf_kaisetsu>div>.flex>div dl dt{color: var(--blue01);}
.pf_sp500 .summary{background: #DDECF9;}
.pf_sp500 .summary h4+p span{
  font-weight: 300;
  font-size: 13px;
}

/* ============================================== */
/* STEP5 ケーススタディ */
/* ============================================== */
section.case_study{
  position: relative;
  z-index: 0;
  padding-top: 100px;
  padding-bottom: 320px;
}
section.case_study::before{
  position: absolute;
  z-index: -1;
  inset: -22vw auto auto 0;
  content: '';
  width: 100vw;
  height: 54vw;
  background: url(../img/bg02_01.png) no-repeat center bottom / cover;
}
section.case_study .h2_cont h2{margin: 0 auto 280px;}
section.case_study .pf_kaisetsu{box-shadow: none;}

/* ケース見出し */
section.case_study>section .case_ttl{
  position: relative;
  background: #fff;
  padding: 60px 300px 40px 55px;
  border-radius: 20px;
  margin: 0 auto 80px;
  min-height: 180px;
}
section.case_study>section .case_ttl::before{
  position: absolute;
  z-index: 0;
  inset: auto -100% -34px -100%;
  margin: auto;
  content: '';
  width: 52px;
  height: 34px;
  background: #fff;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
section.case_study>section .case_ttl::after{
  position: absolute;
  z-index: 0;
  inset: auto 0 0 auto;
  content: '';

}


section.case_study>section .case_ttl h3{
  position: absolute;
  z-index: 0;
  inset: -50px auto auto 58px;
  max-width: 196px;
}
section.case_study>section .case_ttl p{
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
}

section.case_study>section .bg_kaisetu{position: relative;}
section.case_study>section .bg_kaisetu::before{
  position: absolute;
  z-index: -1;
  inset: -214% -100% -100% -100%;
  margin: auto;
  content: '';
  width: 100vw;
  height: 550px;
}


/* オルカン */
section.case_study>section.pf_allcountry .pf_kaisetsu{border: 1px solid var(--red01); margin-bottom: 400px;}
section.case_study>section.pf_allcountry .bg_kaisetu::before{background: #FFF0F3;}
section.case_study>section.pf_allcountry .case_ttl::after{
  width: 332px;
  height: 290px;
  background: url(../img/img11_01.svg) no-repeat center / contain;
}



/* S&P500 */
section.case_study>section.pf_sp500 .pf_kaisetsu{border: 1px solid var(--blue01);}
section.case_study>section.pf_sp500 .bg_kaisetu::before{
  background: #ECF6FF;
  height: 608px;
  inset: -217% -100% -100% -100%;
}
section.case_study>section.pf_sp500 .case_ttl::after{
  width: 300px;
  height: 272px;
  background: url(../img/img12_01.svg) no-repeat center / contain;
}

/* ============================================== */
/* STEP6 ETFなら追加投資 */
/* ============================================== */
section.etf{
  position: relative;
  background: var(--blue03);
  padding: 50px 0 120px;
}
section.etf::before,
section.etf::after{
  position: absolute;
  z-index: -1;
  left: 0;
  content: '';
  width: 100vw;
}
section.etf::before{
  top: -23vw;
  left: -100%;
  right: -100%;
  margin: auto;
  height: 80vw;
  width: 100vw;
  background: url(../img/bg01.png) no-repeat center / cover;
}
section.etf::after{
  z-index: 0;
  bottom: -230px;
  height: 240px;
  background: var(--blue03);
  /* clip-path: polygon(100% 0, 100% 60%, 50% 100%, 0 60%, 0 0); */
  clip-path: polygon(
    100% 0, 
    100% calc(100% - 6vw), /* 下辺の開始 */
    calc(50% + 0px) 100%, /* 三角形右側 */
    /* calc(50% - 0px) 100%, 三角形左側 */
    0 calc(100% - 6vw), /* 下辺の終了 */
    0 0
  );
}

section.etf .h2_cont h2{color: #fff;}

/* コンテンツ */
section.etf>.inner>ul.flex{
  flex-wrap: wrap;
  gap: 110px 15px;
}
section.etf>.inner>ul.flex>li{
  position: relative;
  z-index: 0;
  background: #fff;
  border-radius: 25px;
}
section.etf>.inner>ul.flex>li::before{
  position: absolute;
  z-index: 0;
  inset: -20px auto auto -10px;
  content: '';
  width: 118px;
  height: 58px;
  background: url(../img/img16_01.png) no-repeat center / contain;
}
section.etf>.inner>ul.flex>li:nth-of-type(1){
  width: 100%;
  /* padding: 50px 85px 75px 75px; */
  padding: 50px 55px 75px 75px;
}
section.etf>.inner>ul.flex>li:not(:nth-of-type(1)){
  width: calc((100% - 30px) / 3) ;
  padding: 45px 45px 40px 45px;
}

/* li 1つ目
============================= */
section.etf>.inner>ul.flex>li:nth-of-type(1)>p{
  font-size: 28px;
  font-weight: 700;
}
section.etf>.inner>ul.flex>li:nth-of-type(1)>ul>li{margin: 30px 0 0;}
section.etf>.inner>ul.flex>li:nth-of-type(1)>ul>li>*{padding-left: 22px;}
section.etf>.inner>ul.flex>li:nth-of-type(1)>ul>li>p:nth-of-type(1){
  position: relative;
  z-index: 0;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 15px;
  padding: 0 0 0 1.1em;
}
section.etf>.inner>ul.flex>li:nth-of-type(1)>ul>li>p:nth-of-type(1)::before{
  position: absolute;
  z-index: 0;
  inset: .5em auto auto 0;
  content: '';
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--blue01);
}

section.etf>.inner>ul.flex>li:nth-of-type(1)>ul>li>p:nth-of-type(1)+p{
  max-width: 760px;
  line-height: 1.625;
  margin: 0 0 25px;
}

/* 値動きを見ながら自分のタイミングで投資できる */
section.etf>.inner>ul.flex>li:nth-of-type(1)>ul>li:nth-of-type(1) figure{margin: 0 0 50px;}

/* 投資後のメンテナンスもしやすい */
section.etf>.inner>ul.flex>li:nth-of-type(1)>ul>li:nth-of-type(2)>p{margin: 0 0 30px;}
section.etf>.inner>ul.flex>li:nth-of-type(1)>ul>li:nth-of-type(2)>ul{
  justify-content: space-between;
  flex-wrap: wrap;
}

section.etf>.inner>ul.flex>li:nth-of-type(1)>ul>li:nth-of-type(2)>ul li figure{margin: 0 auto 25px;}

section.etf>.inner>ul.flex>li:nth-of-type(1)>ul>li:nth-of-type(2)>ul li:nth-of-type(1){width: min(280px,34%);}
section.etf>.inner>ul.flex>li:nth-of-type(1)>ul>li:nth-of-type(2)>ul li:nth-of-type(2){width: min(225px,27%);}
section.etf>.inner>ul.flex>li:nth-of-type(1)>ul>li:nth-of-type(2)>ul li:nth-of-type(3){width: min(176px,21%);}

section.etf>.inner>ul.flex>li:nth-of-type(1)>ul>li:nth-of-type(2)>ul li:nth-of-type(2) figure{max-width: 133px;}
section.etf>.inner>ul.flex>li:nth-of-type(1)>ul>li:nth-of-type(2)>ul li:nth-of-type(3) figure{max-width: 138px;}
section.etf>.inner>ul.flex>li:nth-of-type(1)>ul>li:nth-of-type(2)>ul li p{
  text-align: center;
  line-height: 1.625;
}

/* 矢印あしらい */
section.etf>.inner>ul.flex>li:nth-of-type(1)>ul>li:nth-of-type(2)>ul li:not(:last-of-type){
  position: relative;
  z-index: 0;
}
section.etf>.inner>ul.flex>li:nth-of-type(1)>ul>li:nth-of-type(2)>ul li:not(:last-of-type)::before{
  position: absolute;
  z-index: 0;
  inset: -150% -25% -100% auto;
  margin: auto;
  content: '';
  width: 35px;
  height: 35px;
  background: url(../img/ico_arwEtf.svg) no-repeat center / contain;
}

/* li 2つ目
============================= */
section.etf>.inner>ul.flex>li:not(:nth-of-type(1)) p{
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 28px;
}
section.etf>.inner>ul.flex>li:not(:nth-of-type(1)) p span{
  font-size: 18px;
  letter-spacing: 0.05em;
}
section.etf>.inner>ul.flex>li:not(:nth-of-type(1)) figure{margin: 0 auto;}
section.etf>.inner>ul.flex>li:nth-of-type(2) figure{max-width: 163px;}
section.etf>.inner>ul.flex>li:nth-of-type(3) figure{max-width: 120px;}
section.etf>.inner>ul.flex>li:nth-of-type(4) figure{max-width: 183px;}

/* ============================================== */
/* MYオールカントリーづくりはiFreeETFで */
/* ============================================== */
.lineup{padding:110px 0 0;}
.lineup>.bg {
  background:
    url(../img/bg04.png) no-repeat center top -8vw / 100% auto,
    #E8F7FF
  ;
  padding: 280px 0 175px;
}
.lineup .h2_cont {margin: 0 auto 85px;}
.lineup .h2_cont h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}

.lineup .h2_cont h2 * {
  display: inline;
}

.lineup .h2_cont h2 img {
  max-width: 253px;
  padding: 0 0.5em;
  margin: 0;
}

.lineup .lineup_wrapper{
  position: relative;
  z-index: 0;
  padding: 60px 50px 60px 55px;
  background: #fff;
  border-radius: 25px;
  max-width: 1100px;
  margin: 0 auto;
}
.lineup .lineup_wrapper>p{
  position: absolute;
  z-index: 0;
  inset: -20px auto auto 30px;
  max-width: 290px;
}

.lineup .lineup_wrapper section:not(:last-of-type){margin: 0 0 75px;}
.lineup .lineup_wrapper section h3{
  position: relative;
  z-index: 0;
  font-size: 40px;
  font-weight: 700;
  color: var(--blue03);
  line-height: 1.5;
  margin: 0 0 12px;
  padding: 0 0 0 2.5em;
}
.lineup .lineup_wrapper section h3::before{
  position: absolute;
  z-index: 0;
  inset: -100% auto -100% 0;
  margin: auto 0;
  content: '';
  width: 93px;
  height: 57px;
}
.lineup .lineup_wrapper section.america h3::before{
  background: url(../img/ico_america.png) no-repeat center / contain;
}
.lineup .lineup_wrapper section.indo h3::before{
  background: url(../img/ico_indo.png) no-repeat center / contain;
}
.lineup .lineup_wrapper section.japan h3::before{
  background: url(../img/ico_japan.png) no-repeat center / contain;
}

.lineup .lineup_wrapper section .lineup_item{
  padding: 28px 0;
  border-bottom: 1px solid #707070;
}
.lineup .lineup_wrapper section .lineup_item>p{
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 15px;
}
.lineup .lineup_wrapper section .lineup_item>dl{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  row-gap: 3%;
}
.lineup .lineup_wrapper section .lineup_item>dl dt{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  width: 75%;
  word-break: break-word;
}
.lineup .lineup_wrapper section .lineup_item>dl dt span:nth-of-type(1){
  display: inline-block;
  font-family: var(--ff_oswald);
  font-size: 24px;
  font-weight: 400;
  color: var(--red01);
  text-align: center;
  width: 95px;
  background: #FFE8EC;
  margin: 0 15px 0 0;
  padding: 0.1em 0.8em;
}
.lineup .lineup_wrapper section .lineup_item>dl dt span:nth-of-type(2){
  font-size: 18px;
  letter-spacing: 0;
  padding: .4em 0 0;
}
.lineup .lineup_wrapper section .lineup_item>dl dt img{
  display: inline-block;
  max-width: 162px;
  /* vertical-align: text-bottom; */
  margin: 0 10px 0 0;
}
.lineup .lineup_wrapper section .lineup_item>dl dd{
  width: 30%;
  max-width: 220px;
}
.lineup .lineup_wrapper section .lineup_item>dl dd .btn{
  width: 100%;
  color: var(--blue03);
  border: 2px solid var(--blue03);
  transform: skewX(-15deg);
  transition: 0.3s;
}
.lineup .lineup_wrapper section .lineup_item>dl dd .btn a{
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: .4em 2.5em .3em 1em;
  transform: skewX(15deg);
  transition: 0s;
}

.lineup .lineup_wrapper section .lineup_item>dl dd .btn a::before,
.lineup .lineup_wrapper section .lineup_item>dl dd .btn a::after{
  position: absolute;
  z-index: 0;
  inset: auto 1.6em 0.5em auto;
  content: '';
  width: 17px;
  height: 8px;
  transition: .3s;
}
.lineup .lineup_wrapper section .lineup_item>dl dd .btn a::before{
  background: url(../img/ico_btnArrow.svg) no-repeat center / contain;
  opacity: 1;
}
.lineup .lineup_wrapper section .lineup_item>dl dd .btn a::after{
  background: url(../img/ico_btnArrow_wht.svg) no-repeat center / contain;
  opacity: 0;
}

.lineup .lineup_wrapper section .lineup_item>dl dd .btn a:hover{opacity: 1;}
.lineup .lineup_wrapper section .lineup_item>dl dd .btn:has(a:hover){
  color: #fff;
  background: var(--blue03);
}
.lineup .lineup_wrapper section .lineup_item>dl dd .btn a:hover::before{opacity: 0;}
.lineup .lineup_wrapper section .lineup_item>dl dd .btn a:hover::after{opacity: 1;}


/* 注意事項 */
.lineup .notes{
  padding: 130px 0;
  background: #F8F8F8;
}

.lineup .notes h4{
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0.8em 0;
  color: #333;
  border-bottom: 1px solid #707070;
}
.lineup .notes h4 span{
  font-size: 14px;
  font-weight: 400;
}
.lineup .notes h4+*{
  padding: 35px 0 0;
}
.lineup .notes h4+ul li{
  position: relative;
  z-index: 0;
  font-size: 14px;
  margin: 0 0 2em;
  padding: 0 0 0 1em;
}
.lineup .notes h4+ul li,
.lineup .notes h4+p,
.lineup .notes dl dt,
.lineup .notes dl dd{ line-height: 1.85;}

.lineup .notes h4+ul li:last-of-type{margin: 0 0 1.2em;}
.lineup .notes h4+ul li::before{
  position: absolute;
  z-index: 0;
  inset: .6em auto auto -0.1em;
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gray01);
}

.lineup .notes h4 +ul+p{
  font-size: 14px;
  font-weight: 700;
}
.lineup .notes h4 +ul+p a{
  font-size: 14px;
  text-decoration: underline;
}

.lineup .notes h5{
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 1em;
}
.lineup .notes dl *,
.lineup .notes>.inner>section>p {font-size: 14px;}
.lineup .notes dl:not(:last-of-type){margin: 0 0 1.1em;}

.lineup .notes>.inner>section>section:nth-of-type(1){
  margin: 0 0 35px;
}
.lineup .notes>.inner>section>section:nth-of-type(2) dl:last-of-type dd:last-of-type{margin-top: 18px;}

.lineup .notes>.inner>section>section:nth-of-type(2) dl:last-of-type,
.lineup .notes h4 +ul+p,
.lineup .notes>.inner>section:nth-of-type(2)>h4+ul{
  padding-bottom: 110px;
}

/* ============================================== */
/*                    ページトップ                    */
/* ============================================== */
/* ====================================
コピーここから */

.etf_totop {
  position: sticky;
  bottom: 1rem;
  z-index: 7;
  margin: -5rem 1rem 0 0;
  padding-bottom: 1rem;
  display: flex;
  justify-content: flex-end;
}
/* ====================================
コピーここまで */
.etf_totop a{
  display: block;
  width: 60px;
  height: 60px;
}
/* ============================================== */
/*                    フッター                    */
/* ============================================== */
/* ====================================
コピーここから */
:root,
[data-bs-theme=light] {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #56025e;
  --bs-pink: #d63384;
  --bs-red: #da204e;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #27ae60;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #da204e;
  --bs-secondary: #56025e;
  --bs-success: #27ae60;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #da204e;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-fff: #fff;
  --bs-primary-rgb: 218, 32, 78;
  --bs-secondary-rgb: 86, 2, 94;
  --bs-success-rgb: 39, 174, 96;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 218, 32, 78;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-fff-rgb: 255, 255, 255;
  --bs-primary-text-emphasis: #570d1f;
  --bs-secondary-text-emphasis: #220126;
  --bs-success-text-emphasis: #104626;
  --bs-info-text-emphasis: #055160;
  --bs-warning-text-emphasis: #664d03;
  --bs-danger-text-emphasis: #570d1f;
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: #f8d2dc;
  --bs-secondary-bg-subtle: #ddccdf;
  --bs-success-bg-subtle: #d4efdf;
  --bs-info-bg-subtle: #cff4fc;
  --bs-warning-bg-subtle: #fff3cd;
  --bs-danger-bg-subtle: #f8d2dc;
  --bs-light-bg-subtle: #fcfcfd;
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: #f0a6b8;
  --bs-secondary-border-subtle: #bb9abf;
  --bs-success-border-subtle: #a9dfbf;
  --bs-info-border-subtle: #9eeaf9;
  --bs-warning-border-subtle: #ffe69c;
  --bs-danger-border-subtle: #f0a6b8;
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(33, 37, 41, 0.75);
  --bs-secondary-color-rgb: 33, 37, 41;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  --bs-tertiary-color-rgb: 33, 37, 41;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #da204e;
  --bs-link-color-rgb: 218, 32, 78;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #ae1a3e;
  --bs-link-hover-color-rgb: 174, 26, 62;
  --bs-code-color: #d63384;
  --bs-highlight-color: #da204e;
  --bs-highlight-bg: transparent;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(218, 32, 78, 0.25);
  --bs-form-valid-color: #27ae60;
  --bs-form-valid-border-color: #27ae60;
  --bs-form-invalid-color: #da204e;
  --bs-form-invalid-border-color: #da204e
}

[data-bs-theme=dark] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #fff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(222, 226, 230, 0.75);
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: #2b3035;
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: #e97995;
  --bs-secondary-text-emphasis: #9a679e;
  --bs-success-text-emphasis: #7dcea0;
  --bs-info-text-emphasis: #6edff6;
  --bs-warning-text-emphasis: #ffda6a;
  --bs-danger-text-emphasis: #e97995;
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: #2c0610;
  --bs-secondary-bg-subtle: #110013;
  --bs-success-bg-subtle: #082313;
  --bs-info-bg-subtle: #032830;
  --bs-warning-bg-subtle: #332701;
  --bs-danger-bg-subtle: #2c0610;
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: #83132f;
  --bs-secondary-border-subtle: #340138;
  --bs-success-border-subtle: #17683a;
  --bs-info-border-subtle: #087990;
  --bs-warning-border-subtle: #997404;
  --bs-danger-border-subtle: #83132f;
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: #e97995;
  --bs-link-hover-color: #ed94aa;
  --bs-link-color-rgb: 233, 121, 149;
  --bs-link-hover-color-rgb: 237, 148, 170;
  --bs-code-color: #e685b5;
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: #664d03;
  --bs-border-color: #495057;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: #7dcea0;
  --bs-form-valid-border-color: #7dcea0;
  --bs-form-invalid-color: #e97995;
  --bs-form-invalid-border-color: #e97995
}

@font-face {
  font-family: 'etf-icon';
  src:
    url('../font/etf-icon-v1.0/fonts/etf-icon.ttf?k1eld0') format('truetype'),
    url('../font/etf-icon-v1.0/fonts/etf-icon.woff?k1eld0') format('woff'),
    url('../font/etf-icon-v1.0/fonts/etf-icon.svg?k1eld0#etf-icon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.footer {
  background-color: #222222;
  color: #ffffff;
  padding: 47px 0 0 0;
}

.footer p {
  color: #ffffff;
}

.footer-01 {
  margin-bottom: 32px;
  letter-spacing: 0.005em;
}

.footer-01 ul {
  line-height: 1.5;
}

.footer-01 ul li a {
  display: block;
  font-weight: 600;
  position: relative;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  padding: 24px 0;
}

.footer-01 ul li a::after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 15px;
  margin: auto;
  width: 20px;
  height: 20px;
  background-image: url(../img/g_icon_img_01_20240731.svg);
  background-size: cover;
  transform: rotate(-90deg);
}

.footer-02 {
  text-align: center;
  letter-spacing: 0.01em;
}

.footer-02-inner p {
  font-weight: 600;
  font-size: 12px;
}

.footer-02-inner p+p {
  margin-top: 10px;
  font-weight: 400;
}

.footer-02-inner p span {
  padding: 0 0 0 1em;
}

.footer-copyright {
  text-align: center;
  font-size: 10px;
  line-height: 1.5;
  font-weight: 400;
  background-color: #048ACF;
  padding: 20px 0;
  letter-spacing: 0.02em;
}

.footer-copyright p {
  font-size: 10px;
}
@media screen and (max-width: 767.99px) {

  .footer-wrap {
    padding: 0 15px 20px 15px;
  }

  .footer-01 ul li {
    width: 100%;
    border-top: solid 1px rgb(255, 255, 255, 0.28);
  }

  .footer-01 ul li:last-child {
    border-bottom: solid 1px rgb(255, 255, 255, 0.28);
  }

}

@media screen and (min-width: 768px) {

  .footer {
    padding: 40px 0 0 0;
  }

  .footer-wrap {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }

  .footer-01 ul li {
    display: inline-block;
    border-right: solid 1px rgb(255, 255, 255, 0.28);
  }

  .footer-01 ul li:first-child {
    border-left: solid 1px rgb(255, 255, 255, 0.28);
  }

  .footer-01 ul li a {
    transition: all 0.4s;
    display: block;
    padding: 13px 60px 13px 32px;
  }

  .footer-01 ul li a:hover {
    color: #1265D6;
  }

  .footer-02-inner {
    margin: 40px 0;
  }

  .footer-02-inner p {
    font-size: 16px;
  }

}

@media screen and (max-width: 1100px) and (min-width: 767.99px) {
  .footer-wrap {
    padding: 0 40px;
  }

  .footer-01 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-01 ul li {
    display: block;
  }

  .footer-01 ul li:nth-child(3) {
    border-left: solid 1px rgb(255, 255, 255, 0.28);
  }

  .footer-01 ul li:nth-child(n + 3) {
    margin-top: 10px;
  }

  .footer-01 ul li a {
    font-size: 16px;
  }

  .footer-02-inner p {
    font-size: 14px;
  }
}
/* ===== / 新フッター ===== */

/*  2025/02 動画組み込み
==================================== */
.sec_movie{
  padding: 205px 0 250px;
  margin-top: -55px;
  background: #ECF8FF;
}
header.is_fixed + .sec_movie{margin-top: 0 !important;}

.sec_movie .inner{max-width: 850px;}

.sec_movie .h2_cont{
  position: relative;
  z-index: 0;
  width: fit-content;
  margin-bottom: 25px;
}

.sec_movie .h2_cont::before,
.sec_movie .h2_cont::after{
  position: absolute;
  z-index: 0;
  bottom: 0;
  content: '';
  width: 4px;
  height: 90px;
  background: var(--blue03);
}
.sec_movie .h2_cont::before{
  left: -45px;
  transform: rotate(-40deg);
}
.sec_movie .h2_cont::after{
  right: -45px;
  transform: rotate(40deg);
}

.sec_movie .h2_cont h2 {
  color: var(--blue03);
  font-size: 48px;
  line-height: 1.35;
  width: fit-content;
  margin-bottom: 0;
  font-weight: 700;
}
.sec_movie .h2_cont h2 span{
  line-height: 2;
  color: var(--gray02);
  font-weight: 700;
}

.movie_cont {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.movie_cont iframe {
  width: 100%;
  height: 100%;
}

.movie_cont iframe + p{
  color: var(--gray01);
  font-size: 14px;
  margin: .7em 0 0;
}


.about_allcountry{
  position: relative;
  z-index: 0;
  padding-top: 120px;
}
.about_allcountry::before{
  position: absolute;
  z-index: -2;
  inset: -23vw -100% auto;
  margin: auto;
  content: '';
  width: 160vw;
  height: 86.25vw;
  background: url(../img/bg02_01.png) no-repeat center / cover;
  pointer-events: none;
}

/* ページトップ、フローティングバナー */
.etf_totop:not(.movie){
  justify-content: flex-start;
  margin: -5rem 0 0 1rem;
  cursor: pointer;
}

.original_pagetop.movie{
  position: sticky;
  z-index: 20;
  width: fit-content;
  right: 0;
  bottom: 0;
  margin: -11.6rem 2rem 0 auto;
  padding: 0 0 2rem;
  transition: visibility .6s;
}
main:has(.ham.open)+.pagetop+.original_pagetop{z-index: 19;}
.original_pagetop.movie a{
  position: relative;
  z-index: 0;
  display: block;
  width: 157px;
  height: 157px;
  filter: drop-shadow( 0 0 2px#fff);
}
.original_pagetop.movie a+figure{
  position: absolute;
  z-index: 1;
  inset: 5px 5px auto auto;
  width: 35px;
  height: 35px;
  cursor: pointer;
  transition: .6s;
}

.original_pagetop.movie.fadeout{
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s;
}
.original_pagetop.movie.fadeout a+figure{
  opacity: 0;
  visibility: hidden;
}

/* KV高さ調整 */
.kv{z-index: 11;}
/* .kv .scroll{
  position: fixed;
  z-index: 11;
  inset: auto -100% -80px -100%;
  margin: auto;
  content: '';
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .3);
  color: #fff;
  font-family: var(--ff_plusJakartaSans);
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
  clip-path: inset(0 0 70px 0);
  padding: 0 0 40px;
  transition: .6s;
}
.kv .scroll::before{
  position: absolute;
  z-index: 0;
  inset: 18px -100% auto -100%;
  margin: auto;
  content: '';
  width: 20px;
  height: 15px;
  background: url(../img/ico_scroll.png) no-repeat center / contain;
  animation: scrollDown 1.5s infinite both ease-in-out;
}
@keyframes scrollDown {
  0%{transform: translateY(0);}
  50%{transform: translateY(10px);}
  100%{transform: translateY(0);}
} */

/* .kv .scroll.hidden{
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
} */

/* スクロール誘導 */

/* 楽天版のみ動画下にリンク */
.sec_movie .cv{
  background: #fff;
  border-radius: 25px;
  margin: 90px auto 0;
  padding: 45px 25px 55px;
}
.sec_movie .cv p:first-of-type{
  width: 100%;
  max-width: 325px;
  margin: 0 auto 20px;
}
.sec_movie .cv p{
  text-align: center;
  font-size: 28px;
  line-height: 1.6;
  font-weight: 700;
}

.sec_movie .cv .btn{
  width: 100%;
  max-width: 440px;
  color: #fff;
  transition: 0.3s;
  margin: 30px auto 0;
  background: #bf0000;
  border-radius: 36px;
  filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, .3));
}
.sec_movie .btn a{
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: .75em 2em .75em 1em;
  transition: 0s;
  font-size: 24px;
}

.sec_movie .btn a::after{
  position: absolute;
  z-index: 0;
  inset: auto 2.7em 1em auto;
  content: '';
  width: 20px;
  height: 10px;
  transition: .3s;
}
.sec_movie .btn a::after{
  background: url(../img/ico_btnArrow_wht.svg) no-repeat center / contain;
  opacity: 1;
}

.sec_movie .btn a:hover{opacity: 1;}
.sec_movie .btn:has(a:hover){
  filter: drop-shadow(3px 3px 1px rgba(0, 0, 0, .5));
  transform: translateY(4px);
}
.sec_movie .btn a:hover::after{transform: translateX(5px);}

/* 202503 シミュレーションページ導線設置
===================================================*/
/* シミュレーションページボタン共通 */
.ylw_sp{color: #fff;}
.simu_btn{
  width: 465px;
  height: 135px;
  margin: 0 auto;
}
.simu_btn a{
  position: relative;
  z-index: 0;
  display: block;
  color: #fff;
  background: var(--blue03);
  border-radius: 12px;
  border: 2px solid #bee1f3;
  font-size: 22px;
  font-weight: 900;
  padding: 40px 55px 25px 150px;
  filter: drop-shadow(4px 4px 7px rgba(100, 100, 100, 0.5));
}
.simu_btn a::before{
  position: absolute;
  z-index: 0;
  inset: calc(-100% + 15px) -48% -100% -100%;
  margin: auto;
  content: '';
  width: 47px;
  height: 63px;
  background: url(../img/ico_simu.svg) no-repeat center / contain;
}
.simu_btn a::after{
  position: absolute;
  z-index: 0;
  inset: -100% -100% -100% -17%;
  margin: auto;
  content: '';
  width: 13px;
  height: 31px;
  background: url(../img/ico_simu02.svg) no-repeat center / contain;
}
.simu_btn a .balloon{
  position: absolute;
  z-index: 0;
  inset: -24px -100% auto -100%;
  margin: auto;
  display: block;
  width: fit-content;
  min-width: 275px;
  color: var(--blue03);
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  padding: .55em 1em;
  border-radius: 20px;
  text-align: center;
}
.simu_btn a .balloon::before{
  position: absolute;
  z-index: 0;
  inset: auto -100% -11px -100%;
  margin: auto;
  content: '';
  width: 12px;
  height: 12px;
  background: #fff;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}

.simu_btn a span:not(.balloon){
  color: var(--yellow02);
  font-size: 24px;
}
.simu_btn a span:not(.balloon):last-of-type{font-size: 28px;}

/* シミュレーションページボタン - KV */
.kv .simu_btn{
  position: absolute;
  z-index: 0;
  inset: auto 3% 11% auto;
  width: 350px;
  height: 152px;
}
.kv .simu_btn a{
  padding: 30px 50px 20px 100px;
  font-size: 20px;
  filter: drop-shadow(4px 4px 7px rgba(255, 255, 255, 0.5));
}
.kv .simu_btn a::before{
  width: 58px;
  height: 77px;
  right: -34%;
}
.kv .simu_btn a span:last-of-type{line-height: 1.2;}


/* hover */
.simu_btn a:hover{
  opacity: 1;
  transform: translateY(10px);
  filter: drop-shadow(4px 4px 3px rgba(100, 100, 100, 0.6));
}
.kv .simu_btn a:hover{filter: drop-shadow(4px 4px 3px rgba(255, 255, 255, 0.6));}

/* STEP2と3の間*/
.sec_simu{padding: 140px 0 0;}
/* STEP5と6の間*/
section.case_study>section .bg_kaisetu + .simu_btn{margin: 140px auto 0;}

/* フローティングバナー */
.original_pagetop.movie a{
  width: 346px;
  height: 124px;
}
.original_pagetop.movie a+figure{inset: -15px 10px auto auto;}
