@charset "UTF-8";
:root {
  --color-main: #007d75;
  --color-sub: #0098ad;
  --color-sub2: #ec708a;
  --color-bg: #e5f2f1;
  --color-bg2: #f0f0f0;
  --color-dk: #666;
  --color-txt: #333333;
  --color-caption: #333333;
  --color-caption2: #323232;
  --color-red: #cc0000;
  --color-bk: #000;
  --color-wh: #fff;
  --font-base: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  --font-sub: "Roboto", sans-serif;
  --lineHeight-xs: 1.375;
  --lineHeight-s: 1.5;
  --lineHeight-m: 1.66;
  --lineHeight-l: 1.875;
  --trans-min02: all .2s ease-out;
  --headerHeight-pc: 74px;
  --headerHeight-sp: 66px;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes move-y {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes line {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes puldownOn{
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to{
    opacity: 1;
    transform: translateY(0px);
  }
}
body {
  margin: 0 auto;
  position: relative;
  font-weight: 400;
  font-size: 1rem;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  color: var(--color-txt);
  font-family: var(--font-base);
  line-height: 1;
  word-break: break-all;
  overflow-x: clip;
}
main {
  display: block;
  padding-top: var(--headerHeight-pc);
  overflow: clip;
}
main img {
  max-width: 100%;
}

.js-inview {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-out 0.2s;
}
.js-inview.is-inview-show {
  opacity: 1;
  transform: translateY(0);
}
.hp_brSp, .hp_spOnly {
  display: none;
}
.ly_wrap_m {
  width: calc(100% - 24px);
  max-width: 980px;
  margin: 0 auto;
}
.ly_wrap_m2 {
  width: calc(100% - 24px);
  max-width: 1080px;
  margin: 0 auto;
}
.ly_wrap_l {
  width: calc(100% - 24px);
  max-width: 1200px;
  margin: 0 auto;
}

#header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  box-sizing: border-box;
  background-color: #c00;
  width: 100%;
  padding: 26px 0;
}
#header .header_flex {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
#header .header_flex .logoArea img {
  width: 100%;
  height: auto;
}
#header .header_flex .logoArea img.l-logo_image {
  width: 139px;
  height: 38px;
}
#header .header_flex .header_nav .header_nav_ul {
  display: flex;
  margin-right: 40px;
}
#header .header_flex .header_nav .header_nav_inner {
  position: absolute;
  top: calc(100% + 26px);
  left: -30px;
  background: rgba(204, 2, 0, .8);
  color: #fff;
  padding: 26px 30px;
  min-width: 255px;
  line-height: 1.8;
  text-align: left;
  z-index: 1;
  display: none;
  opacity: 0;
  transform: translateY(-20px);
}
#header .header_flex .header_nav .header_nav_inner.is-active {  
  display: block;
  animation: puldownOn ease-out .2s forwards;
}
#header .header_flex .header_nav .header_nav_inner ul li + li {
  margin-top: 8px;
}
#header .header_flex .header_nav .header_nav_ul > li {
  margin-left: 35px;
  position: relative;
}
#header .header_flex .header_nav .header_nav_ul li a,
#header .header_flex .header_nav .header_nav_ul li button {
  color: #fff;
  font-size: 16px;
  padding-bottom: 0.2em;
  font-weight: 600;    
  position: relative;
}
#header .header_flex .header_nav .header_nav_ul li a:hover,
#header .header_flex .header_nav .header_nav_ul li button:hover,
#header .header_flex .header_nav .header_nav_ul .pulldown button.is-active {
  border-bottom: 2px solid #fff;
  background-position: 0% bottom;
}
#header .header_flex .header_nav .header_nav_ul .pulldown button::after {
  content: "";
  width: 10px;
  height: 5px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin-left: 6px;
  display: inline-block;
}
#Toggle {
  display: none;
}
br.brPcsm {
  display: none;
}
#footer {
  padding: 44px 25px;
  color: #474747;
  font-size: 12px;
  font-family: YuGothic, " 游ゴシック", " メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", " ヒラギノ角ゴ Pro W3", "Lucida Grande", "LucidaSans Unicode", Arial, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #fff;
}
#footer .logoArea {
  margin-bottom: 16.4px;
}
#footer .logoArea .imgsize img {
  display: block;
  margin-top: 16.4px;
  height: 22px;
}
#footer .copyright {
  margin-top: 16.4px;
}

/* .scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  padding: 0;
  display: none;
}
.scroll-top img {
  width: 100%;
  height: auto;
}
.scroll-top:hover {
  cursor: pointer;
} */

.explanation {
  padding: 40px 0 80px;
  background: #f0f0f0;
}
.explanation_caution_text {
  font-size: 0.875rem;
  line-height: var(--lineHeight-l);
  color: var(--color-dk);
}
.explanation_caution_text + .explanation_caution_text {
  margin-top: 30px;
}
.explanation_caution_text a {
  border-bottom: var(--color-dk) solid 1px;
  padding-bottom: 1.5px;
  transition: var(--trans-min02);
}
.explanation_caution_text a:hover {
  opacity: 0.8;
}
.explanation_caution_list > li {
  font-size: 0.875rem;
  line-height: var(--lineHeight-l);
  color: var(--color-dk);
  text-indent: -1em;
  padding-left: 1em;
}
.explanation_caution_list > li::before {
  content: "・";
}
.explanation_list {
  margin-top: 35px;
  margin-bottom: 30px;
}

/* 共通 */
.cmn_text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.77;
}
.cmn_caption_md {
  font-size: 0.875rem;
  line-height: var(--lineHeight-m);
  color: var(--color-caption);
  letter-spacing: 0;
  font-weight: 500;
}
.cmn_caption_md a {
  text-decoration: underline;
}
.cmn_caption_md a:hover {
  text-decoration: none;
}
.cmn_caption {
  font-size: 0.75rem;
  line-height: var(--lineHeight-m);
  color: var(--color-caption);
  letter-spacing: 0;
  font-weight: 500;
}
.cmn_caption_line {
  border-bottom: var(--color-caption) solid 1px;
  padding-bottom: 1.5px;
}
.cmn_captionBox {
  margin-top: 5px;
}
.cmn_h2 {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-main);
  line-height: var(--lineHeight-m);
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 55px;
  text-decoration: underline;
  text-decoration-color: inherit;
  text-decoration-thickness: 3px;
  text-underline-offset: 20px;
}
.cmn_h2.hp_txt_noline {
  margin-bottom: 50px;
}
.cmn_h2_point {
  color: #fff;
  font-weight: 500;
  font-size: 1.625rem;
  background: var(--color-main);
  padding: 2px 25px 0;
  margin-bottom: 10px;
  border-radius: 30px;
  display: block;
  width: fit-content;
  line-height: 1.5;
  font-family: var(--font-sub);
  box-shadow: 0 3px 0 #66c6cf;
}
.cmn_h3 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--color-main);
  line-height: var(--lineHeight-m);
  text-align: center;
  margin-bottom: 70px;
  text-decoration: underline;
  text-decoration-color: inherit;
  text-decoration-thickness: 3px;
  text-underline-offset: 20px;
}
.cmn_graph_title {
  font-weight: 600;
  color: #fff;
  font-size: 1.375rem;
  background: var(--color-main);
  padding: 0px 20px 4px;
  text-align: center;
  line-height: var(--lineHeight-xs);
  letter-spacing: 0.06em;
  margin: 0 auto 30px;
  width: 100%;  
  max-width: 520px;
}
.cmn_graph_fig {
  text-align: center;
}
.cmn_graph_main {
  background: #fff;
  margin: 0 auto 20px;
}
.c-box-border {
  border: 2px solid #c9c9c9;
  padding: 48px 60px;
}
.inner-block {
  box-sizing: content-box;
  margin: 0 auto;
  padding: 80px 60px;
  position: relative;
  max-width: 1200px;
}
.c-sec-attention {
  margin-bottom: 95px;
  margin-top: 80px;
}
.c-sec-attention .txt {
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  color: #666;
}
.c-list01 > li {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  padding-left: 1em;
  position: relative;
  color: #666;
}
.c-list01 > li::before {
  background: #007d75;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 8px;
  height: 8px;
}
.c-list01 > li + li {
  margin-top: 10px;
}
.cmn_catch {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: .05em;
  font-feature-settings: "palt";
}
.cmn_catch.cmn_catch--s {
  font-size: 24px;
}
.cmn_catch strong {
  color: var(--color-main);
  font-size: 28px;
}
.cmn_catch_line {
  font-size: 36px;
  position: relative;
  background-image: linear-gradient(to top, #fbc600 , #fbc600);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 8px;
  display: inline;  
  padding-bottom: 7px;
  transition: all .5s linear;
}
.cmn_catch.is-inview-show .cmn_catch_line {
  background-size: 100% 8px;
}
.cmn_r_title {
  display: block;
  min-width: min(800px, 100%);
  width: fit-content;
  min-height: 40px;
  border: var(--color-main) solid 2px;
  border-radius: 40px;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-main);  
  padding: 4px 50px 2px;
  text-align: center;
  background: #fff;
  overflow: hidden;
  margin: 50px auto 40px;
  line-height: var(--lineHeight-s);
}
.cmn_r_title--fit {
  min-width: 0;
}
.cmn_figre {
  display: block;
  border-radius: 20px;
  background: #fff;
  padding: 30px 10px;
  width: fit-content;
  margin: 0 auto;
}
.cmn_figre.cmn_figre--bg {
  background: var(--color-bg);
}
.cmn_figre .chart_btn {
  margin-bottom: 0;
}
.cmn_mt_s {
  margin-top: 20px;
}
.cmn_mt_m {
  margin-top: 40px;
}
.cmn_mt_l {
  margin-top: 60px;
}
.cmn_band {
  background: var(--color-main);
  margin-bottom: 40px;
  padding: 20px 15px 25px;
  color: #fff;
  text-align: center;
}
.cmn_band_bubble {
  text-align: center;
  background: #fff;
  color: var(--color-main);
  font-size: 1.25rem;
  letter-spacing: .08em;
  font-weight: 600;
  width: 125px;
  height: 40px;
  padding-top: 6px;
  padding-left: 12px;
  position: relative;
  font-size: 24px;
  margin-inline: auto;
  margin-bottom: 25px;
}
.cmn_band_bubble::after {
  content: "";
  width: 23px;
  height: 19px;
  display: block;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: #fff;
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  left: 0;
  margin-inline: auto;
}
.cmn_band_bubble > em {
  font-size: 30px;
  font-style: normal;
  vertical-align: -1px;
  line-height: 1;
}
.cmn_band_title {
  color: #FFF;
  text-align: center;
  font-size: 36px;
  line-height: 1.5;
  font-weight: 600;
  font-feature-settings: "palt";
  letter-spacing: .08em;
}
.cmn_band_title > strong {  
  background: linear-gradient(to top, #fbc600 8px, transparent 8px);
  display: inline;  
  padding-bottom: 7px;
}
.cmn_band .cmn_caption_md {
  color: #fff;
  margin-top: 25px;
}
.cmn_band_lead {
  margin-top: 38px;
  font-size: 24px;
  font-weight: 600;
  line-height: var(--lineHeight-l);
}
.cmn_bgArea {
  background: var(--color-bg);
  padding: 60px 0;
}
.cmn_bgArea_text {
  font-size: 22px;
  text-align: center;
  line-height: 2;
  font-weight: 600;
}
.cmn_bgArea_text > strong {
  color: var(--color-main);
}
.cmn_bgArea_wrap {  
  max-width: 1400px;
  margin-inline: auto;
  margin-top: 70px;
}

/* mv */
.mv {
  padding: 50px 0 50px;
}
.mv_wrap {
  position: relative;  
}
.mv_lead {
  display: block;
  margin: 0 auto 30px;
  max-width: 690px;
  width: 70%;
}
.mv_title {
  display: block;
  max-width: 678px;
}
.mv_logo {
  position: absolute;
  right: 0;
  top: -3px;
  max-width: 290px;
  width: 25%;
}
.mv_content {
  margin-top: 60px;
  text-align: left;
}
.mv_image {
  position: absolute;
  right: 10px;
  bottom: 18px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}
.mv_image_m {
  max-width: 218px;
}
.mv_image_p {
  max-width: 226px;
}

/* リード */
.lead_section {
  padding: 80px 0 90px;
  background: var(--color-bg);
}
.lead_bubble {
  display: flex;
  gap: 55px;
  max-width: 1025px;
  margin: 60px auto 0;
}
.lead_bubble_img {
  width: 159px;
}
.lead_bubble_main {
  flex: 1;
  background: #fff;
  border-radius: 40px;
  padding: 25px 10px 25px 15px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.lead_bubble_main::before {
  content: "";
  width: 40px;
  height: 44px;
  display: block;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin-block: auto;
  right: calc(100% - 1px);
}
.lead_bubble_text {
  color: var(--color-main);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.75;
  text-align: center;  
  font-feature-settings: "palt";
  letter-spacing: .05em;
}
.lead_catch {
  line-height: 1.7;
}
.lead_catch .cmn_catch_line {
  font-size: 36px;
}

/* アンカーメニュー */
.menu_section {
  padding: 85px 0 80px;
}
.menu_anchor {
  display: flex;
  gap: 5px;
}
.menu_anchor_item {
  flex: 1;  
  box-shadow: 0 0 15px 0 rgba(0,0,0,.2);
}
.menu_anchor_item > a {
  padding: 12px 10px 22px;
  position: relative;
  text-align: center;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 100px;
  transition: background-color .2s;
}
.menu_anchor_item > a::after {
  content: "";
  width: 20px;
  height: 13px;
  background: url(../img/icon_anchor.svg) no-repeat center/contain;
  display: block;
  position: absolute;
  bottom: 10px;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.menu_anchor_item > a:hover {
  background-color: #e5f2f1;
}
.menu_anchor_title {
  color: var(--color-main);
  line-height: 1.1;
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  width: fit-content;
}
.menu_anchor_title--s {
  color: var(--color-txt);
  font-size: 1.25rem;
}
.menu_title {
  color: var(--color-main);
  font-size: 36px;
  font-weight: 600;
  line-height: var(--lineHeight-l);
  text-align: center;
  margin-bottom: 80px;
  font-feature-settings: "palt";
  letter-spacing: .03em;
}
.menu_title > span {
  background: linear-gradient(to top, var(--color-main) 3px, transparent 3px);
  display: inline;
  padding-bottom: 16px;
}

/* ファンドの特徴 */
.point_section {
  padding: 0 0 100px;
}
.point_section.point_section--bg {
  background: var(--color-bg);
}
.point_section .cmn_bgArea {
  max-width: 1400px;
  margin-inline: auto;
  margin-top: 85px;
}

/* faq */
.faq_content {
  background-color: #FFF;
  padding: 75px 20px 55px;
  margin-top: 70px;
}
.faq_content + .faq_content{
  margin-top: 65px;
}
.faq_content .cmn_bgArea_text {
  text-align: left;
  max-width: 940px;
  margin-right: 0;
  margin-left: auto;
}
.faq_title {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  margin-bottom: 16px;
}
.faq_title_icon {
  width: 56px;
  min-width: 56px;
  height: 56px;
}
.faq_title_text {
  font-size: 1.75rem;
  color: var(--color-main);
  font-weight: 600;
  line-height: 1.5;
  padding-top: 10px;
}
.faq_content_inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
.faq_content_inner + .faq_content_inner {
  margin-top: 90px;
}
.faq_content_inner--2 {
  opacity: 0;
}
.faq_content_inner--2.is-inview-show {
  animation: move-y .4s linear forwards;
}
.faq_bnr {
  display: block;
  width: fit-content;
  margin: 60px auto 0;
  position: relative;
}
.faq_bnr::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;  
  box-shadow: inset 0 0 0 2px #007d75;
  transition: box-shadow 0.3s ease-in-out;
}
.faq_bnr:hover::before {
  box-shadow: inset 0 0 0 5px #007d75;
}
.faq_graph {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 45px;
  margin: 0 auto 40px;
}
.faq_graph_item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
.faq_graph_subTitle {
  line-height: 1.7;
  font-size: 22px;
  color: var(--color-main);
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 10px;
  text-decoration: underline;
  text-decoration-color: #fbc600;
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}
.faq_graph_subTitle span {
  text-decoration: underline;
  text-decoration-color: #fbc600;
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}
.faq_graph_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.faq_graph_title-icon {
  background-color: #666;
  color: #FFF;
  border-radius: 5px;
  padding: 3px 8px 3px;
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 500;
}
.faq_graph_title-text {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-main);
}
.faq_graph_title-circle {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: var(--color-main);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
}
.faq_graph_title-circle em {
  font-size: 1.375rem;
  font-style: normal;
  margin-top: -2px;
}
.faq_graph_content {
  margin-top: 18px;
}
.faq_content .simulation-panel {
  max-width: 530px;
  margin: 50px auto 0;
}
.faq_content .simulation-panel > .item {
  border: 2px solid var(--color-main);
}

/* graph-box */
.graph-box {
  border: 2px solid var(--color-main);
  border-radius: 30px;
  padding: 50px;
}
.graph-parent {
  position: relative;
  width: fit-content;
  margin-inline: auto;
}
.graph-achive {
  position: absolute;
  top: 0px;
  left: 0px;
    z-index: -1;
}
.graph-parent .slide-in {
  overflow: hidden;
  display: inline-block;
}
.graph-parent .slide-in_inner {
  display: inline-block;
  width: fit-content;
}
.graph-parent.is-inview-show .slide-in_inner {
  animation-name: slideTextX-100;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.graph-parent.is-inview-show .slide-in {
  animation-name: slideTextX100;
  animation-duration: 5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}


/* ツール */
.tool_section {
  background-color: #e5f2f1;
  padding: 70px 20px;
  margin: 0 auto;
}
.tool_title {
  color: var(--color-main);
  text-align: center;
  font-size: 36px;
  font-weight: 600;  
  margin-bottom: 70px;
  text-decoration: underline;
  text-decoration-color: inherit;
  text-decoration-thickness: 3px;
  text-underline-offset: 23px;
}
.tool_titleSub {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
  color: var(--color-main);
}
.simulation-panel .item {
  background: #fff;
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.simulation-panel .item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: box-shadow 0.3s ease-in-out;
}
.simulation-panel .img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  max-height: 170px;
}
.simulation-panel .img-s {
  width: 170px;
  max-height: none;
}
.simulation-panel .img img {
  max-height: 100%;
}
.simulation-panel .txt-box {
  flex-grow: 1;
  padding: 30px 15px;
  z-index: 1;
  position: relative;
}
.simulation-panel .ttl-sub {
  background: #e5f2f1;
  border-radius: 100px;
  color: #007d75;
  min-width: 340px;
  margin-inline: auto;
  width: fit-content;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  padding: 10px 20px;
  position: relative;
  text-align: center;
  font-feature-settings: "palt";
  letter-spacing: .02em;
}
.simulation-panel .ttl-sub::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 12px 0 12px;
  border-color: #e5f2f1 transparent transparent transparent;
  margin: auto;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
.simulation-panel .ttl {
  color: #007d75;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.25;
  margin-top: 30px;
}

/* simu */
.simu_attention {
  color: #e60012;
  font-weight: 600;
  text-align: center;
  margin-top: 30px;
  line-height: 1.7;
}
.simu_content {
  background: #fff;
  padding: 75px 60px 55px;
  margin-top: 60px;
}
.simu_inner {
  margin-top: 120px;
}
.simu_txt {
  font-size: 18px;
  font-weight: 600;
  color: #666;
  line-height: 2;
}
.simu_txt a {
  color: var(--color-main);
  text-decoration: underline;
}
.simu_txt a:hover {
  text-decoration: none;
}
.c-btn01.simu_btn {
  margin-block: 80px;
  height: auto;
  min-height: 100px;
  padding: 20px 50px;
  max-width: none;
  width: fit-content;
  font-size: 20px;
  margin-inline: auto;
  line-height: 1.6;
  text-align: center;
}
.c-btn01.simu_btn::before,
.c-btn01.simu_btn::after {
  display: none;
}
.simu_mv {
  background: var(--color-bg);
  min-height: 300px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.simu_mv_inner {
  position: relative;
}
.simu_mv_img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(50% + 350px);
  width: 244px;
  display: block;
}
.simu_mv_titleSub {
  background: #fff;
  width: 100%;
  max-width: 500px;
  border-radius: 50px;
  padding: 10px;
  font-size: 28px;
  font-weight: 600;
  color: var(--color-main);
  text-align: center;
  margin-bottom: 28px;
  margin-inline: auto;
}
.simu_mv_title {
  color: var(--color-main);
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
  font-size: 48px;
}
.simu_panel {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.simu_panel_item {
  background: var(--color-bg);
  border-radius: 40px;
  padding: 30px 20px;
  flex: 1;
  max-width: 300px;
  text-align: center;
  line-height: var(--lineHeight-m);
}
.simu_panel_title {
  font-weight: 600;
  line-height: 1.3;
  font-size: 20px;
  margin-bottom: 10px;
}
.simu_panel_title > span {
  font-size: 0.8em;
}
.simu_panel_text {
  font-size: 22px;
  font-weight: 600;
}
.simu_panel_text > em {
  font-size: 28px;
  font-style: normal;
}
.simu_panel_text > span {
  font-size: 0.82em;
}
.simu_caption {
  max-width: 730px;
  margin-inline: auto;
  margin-top: 25px;
}
.simu_caption a {
  text-decoration: none;
}
.simu_graph {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.simu_graph_bubble {
  border: 2px solid var(--color-main);
  background: #fff;
  border-radius: 40px;
  width: 100%;
  max-width: 240px;
  min-height: 210px;
  display: grid;
  place-content: center;
  position: relative;
}
.simu_graph_bubble::before,
.simu_graph_bubble::after {
  content: "";
  display: block;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 100%;
  width: 38px;
  height: 39px;
}
.simu_graph_bubble::before {
  background: var(--color-main);
}
.simu_graph_bubble::after {
  background: #fff;
  right: calc(100% - 4px);
}
.simu_graph_bubble p {
  color: var(--color-main);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: var(--lineHeight-xs);
}
.simu_graph_bubble p > span {
  font-size: 28px;
}


/* レポート */
.sec-home-data {
  margin-top: 100px;
  background: var(--color-bg);
  padding: 100px 15px 100px;
  
}
.sec-home-data .cmn_caption_md {
  max-width: 870px;
  margin-inline: auto;
}
.sec-home-data .box {
  background: #fff;
  margin: auto;
  padding: 55px 70px;
  max-width: 1140px;
}
.sec-home-data .box + .box {
  position: relative;
}
.sec-home-data .box + .box::before {
  background: #c9c9c9;
  content: "";
  position: absolute;
  top: 0;
  left: 70px;
  right: 70px;
  height: 1px;
}
.sec-home-data .c-list-link {
  margin-top: 20px;
}
.c-sec-sell {
    padding-top: 90px;
}
.c-sec-sell .txt {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 40px;
  color: #666;
}
.c-sec-sell .c-list-link .c-btn01 {
  line-height: 1.4;
  min-height: 80px;
  font-size: 18px;
  padding-right: 12px;
  text-align: center;
}
.c-list-type, .c-list-type-payout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 -23px -13px 0;
}
.c-list-type > li, .c-list-type-payout > li {
  background: #007d75;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
  margin: 0 23px 13px 0;
  text-align: center;
  padding: 11px 15px;
}
.c-list-type-payout > li {
  background: #e5f2f1;
  color: #007d75;
  font-size: 18px;
  padding: 11px 12px;
  min-width: 180px;
}
.c-list-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 -20px -20px 0;
}
.c-list-link > li {
  margin: 0 20px 20px 0;
}
.c-list-link > li:last-child {
  margin-right: 0;
}
.c-list-link .c-btn01 {
  font-size: 18px;
  height: 50px;
  min-width: 200px;
}
.c-btn01 {
  background: #fff;
  border: 2px solid #007d75;
  color: #007d75;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  max-width: 280px;
  height: 56px;
  transition: 0.3s ease-in-out;
  position: relative;
}

.c-btn01.green {
  background: #007d75;
  color: #fff;
}
.c-btn01.green::before {
  opacity: 0;
}
.c-btn01.green::after {
  opacity: 1;
}
.aco-btn::before, .c-btn01::before, #pagetop a::before, .aco-btn::after, .c-btn01::after, #pagetop a::after {
  background: no-repeat center center/contain;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 28px;
  width: 16px;
  height: 14px;
  -webkit-transform: rotate(0.001deg);
          transform: rotate(0.001deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.aco-btn::before, .c-btn01::before, #pagetop a::before {
  background-image: url(../img/arrow-right_green.svg);
}
.aco-btn::after, .c-btn01::after, #pagetop a::after {
  background-image: url(../img/arrow-right.svg);
  opacity: 0;
}
.c-sec-risk {
  margin: 80px auto 80px;
}
.c-sec-risk .txt {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 2;
  margin: auto;
  color: #666;
}
.c-sec-risk .txt + .txt {
  margin-top: 1.2em;
}
.c-link-txt {
  color: #007d75;
  text-decoration: underline;
}
#footer {
  border-top: #c9c9c9 solid 1px;
}

/* スクロール画像 */
.chart_btn {
  display: none;
}

/* ヘルパー */
.hp_txt_c {
  text-align: center;
}
.hp_txt_r {
  text-align: right;
}
.hp_txt_bold {
  font-weight: 600;
}
.hp_in_sp {
  display: none;
}
.hp_le_1 {
  text-indent: -1em;
  padding-left: 1em;
  display: block;
}
.hp_mt_s {
  margin-top: 25px;
}
.hp_txt_noline {
  text-decoration: none;
}
.hp_red {
  color: #e60012;
}
.ib {
  display: inline-block;
}
#pagetop {
  display: none;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}
#pagetop a {
  background: #fff;
  border: 2px solid #007d75;
  font-size: 0;
  display: block;
  width: 64px;
  height: 64px;
}

#wrapper #pagetop a::before,
#wrapper #pagetop a::after {
  transform: rotate(-90deg);
  right: 0;
  left: 0;
  width: 23px;
  height: 22px;
}


@media screen and (min-width: 951px), print {
  #header {
    height: 74px;
  }
  #header .header_flex .logoArea {
    height: 22px;
    padding-left: 40px;
    margin-right: 40px;
  }
  #header .header_flex .logoArea img.l-logo_image {
    height: 22px;
    width: 328px;
  }
}

@media screen and (max-width: 1200px) and (min-width: 1051px) {
  #header .header_flex .header_nav .header_nav_ul li a,
  #header .header_flex .header_nav .header_nav_ul li button {
    font-size: 14px;
    font-weight: 600;
  }
}

@media screen and (max-width: 1050px) and (min-width: 951px) {
  #header .header_flex .header_nav .header_nav_ul li {
    margin-left: 13px;
  }
  #header .header_flex .header_nav .header_nav_ul li a,
  #header .header_flex .header_nav .header_nav_ul li button {
    font-size: 12px;
  }
}

@media only screen and (max-width: 1024px) {
  .simulation-panel .img {
    width: 130px;
    padding-left:10px;
  }
  .simulation-panel .txt-box {
    max-width: 320px;
    width: fit-content;
    flex-grow: 0;
    padding: 30px 10px;
  }
  .simulation-panel .ttl-sub {
    font-size: 16px;    
    min-width: 260px;    
    padding: 10px 15px;
  }
  .simulation-panel .ttl {
    font-size: 26px;
  }
  .sec-home-data {
    margin-top: 70px;
    padding: 70px 15px;
  }
  .sec-home-data .box {
    padding: 30px 15px;
  }
  .sec-home-data .box + .box::before {
    left: 15px;
    right: 15px;
  }

  .aco-btn::before, .c-btn01::before, #pagetop a::before, .aco-btn::after, .c-btn01::after, #pagetop a::after {
    right: 19px;
    width: 10px;
    height: 9px;
  }
  .c-btn01 {
    border-width: 1px;
    font-size: 16px;
    height: 50px;
  }
  .c-list-type > li, .c-list-type-payout > li {
    font-size: 14px;
    margin: 0 10px 10px 0;
    padding: 5px 12px;
  }  
  .c-list-type-payout {
    margin: 0;
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
  }
  .c-list-type-payout > li {
    margin: 0;
    font-size: 12px;    
    width: calc(50% - 5px);
    min-width: 0;
  }
  .c-list-type-payout > li:first-child {
    width: 100%;
  }
  .c-list-link {
    margin: 0 -10px -10px 0;
    justify-content: start;
  }
  .c-list-link > li {
    margin: 0 10px 10px 0;
    width: calc(50% - 10px);
  }
  .c-sec-sell .c-list-link > li:first-child {
    width: 100%;
  }
  .c-sec-sell .c-list-link > li:first-child .c-btn01 {
    margin: auto;    
    width: calc(50% - 10px);
  }
  .c-list-link .c-btn01 {
    font-size: 14px;
    height: 40px;
    min-width: 1px;
    max-width: 100%;
  }
  .c-sec-sell .c-list-link .c-btn01 {
    padding-right: 16px;
  }
  .c-list-link .c-btn01::before, .c-list-link .c-btn01::after {
    right: 6px;
  }
  #pagetop a {
    border-width: 1px;
    width: 50px;
    height: 50px;
  }
}

@media only screen and (min-width: 1025px) {
  .aco-btn:hover::before, .c-btn01:hover::before, #pagetop a:hover::before {
    opacity: 0;
  }
  .aco-btn:hover::after, .c-btn01:hover::after, #pagetop a:hover::after {
    opacity: 1;
  }
  a:hover .aco-btn::before, a:hover .c-btn01::before, a:hover #pagetop a::before, #pagetop a:hover a::before {
    opacity: 0;
  }
  a:hover .aco-btn::after, a:hover .c-btn01::after, a:hover #pagetop a::after, #pagetop a:hover a::after {
    opacity: 1;
  }
  #pagetop a {
    transition: all .2s;
  }
  #pagetop a:hover {
    background: #007d75;
  }
  .c-btn01:hover {
    background: #007d75;
    color: #fff;
  }
  a:hover .c-btn01 {
    background: #007d75;
    color: #fff;
  }
  .c-btn01.green:hover {
    background: #fff;
    color: #007d75;
  }
  .c-btn01.green:hover::before {
    opacity: 1;
  }
  .c-btn01.green:hover::after {
    opacity: 0;
  }
  a:hover .c-btn01.green {
    background: #fff;
    color: #007d75;
  }
  a:hover .c-btn01.green::before {
    opacity: 1;
  }
  a:hover .c-btn01.green::after {
    opacity: 0;
  }
  .c-link:hover {
    color: #007d75;
    text-decoration: none;
  }
  .c-link-txt:hover {
    text-decoration: none;
  }
  .c-list-link .c-btn01::before, .c-list-link .c-btn01::after {
    right: 14px;
    width: 15px;
    height: 14px;
  }
  .c-sec-sell .c-list-link .c-btn01::before, .c-sec-sell .c-list-link .c-btn01::after {
    right: 9px;
  }
  .sec-home-data .c-list-type > li {
    font-size: 16px;
    padding: 11px 34px;
  }
  .sec-home-data .c-list-type--2 > li {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media only screen and (min-width: 768px) {
  .sec-simulation-menu .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .simulation-panel {
    width: calc(50% - 20px);
    margin: auto;
  }
  .sec-simulation-menu .simulation-panel:nth-child(n+3) {
    margin-top: 40px;
  }
  .simulation-panel .txt-box {
    text-align: center;
    max-width: 380px;
  }
  .simulation-panel .item {
    justify-content: flex-end;
  }
  .tool_section .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1100px;
    margin-inline: auto;
    margin-top: 50px;
  }
  .simulation-panel:nth-child(2) .ttl-sub {    
    min-width: 300px;
  }
  .simulation-panel .txt-box {
    text-align: center;
  }
  .simulation-panel .item:hover::before {
    box-shadow: inset 0 0 0 3px #007d75;
  }
}

@media only screen and (max-width: 1240px) {
  .mv_title {
    margin-bottom: 50px;
    text-align: center;    
    width: 70%;
    margin: 0 auto;
  }
  .mv_logo {
    position: static;
    max-width: 100%;
    width: 580px;
    margin: 40px auto -40px;
    padding-left: 400px;
  }
  .mv_image {
    position: static;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
  }
  .mv_image-item--1 {
    margin-left: 0;
  }
  .simulation-panel:nth-child(2) .ttl-sub {    
    min-width: 230px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1380px) {
  .tool_section .list {
    gap: 20px;
  }
  .simulation-panel {
    width: calc(50% - 10px);
    min-width: 400px;
    margin-bottom: 10px;
  }
  .simulation-panel:nth-child(n+3) {
    margin-top: 20px;
  }
}

@media screen and (max-width: 950px) {
  #header {
    padding: 14px 0;
  }
  #header .header_flex {
    min-width: inherit;
  }
  #header .header_flex .logoArea {
    height: 38px;
    padding-left: 26px;
  }
  #header .header_flex .header_nav {
    display: block;
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    transform: translateY(-100%);
    transition: all 0.6s;
  }
  #header .header_flex .header_nav.active {
    transform: translateY(0%);
    top: 100%;
  }
  #header .header_flex .header_nav.non-active {
    display: none;
  }
  #header .header_flex .header_nav .header_nav_ul {
    flex-wrap: wrap;
    padding: 4% 0;
  }
  #header .header_flex .header_nav .header_nav_ul li {
    width: 100%;
    text-align: left;
    padding: min(4%, 16px) 0;
    margin-left: 4%;
  }
  #header .header_flex .header_nav .header_nav_ul li a,
  #header .header_flex .header_nav .header_nav_ul li button {
    font-size: 16px;
    color: #474747;
  }
  #header .header_flex .header_nav .header_nav_ul .pulldown button::after {
    background: #000;
  }
  #header .header_flex .header_nav .header_nav_inner {
    background: #fff;
    position: static;
    padding: 10px;
    padding-bottom: 0;
  }
  #header .header_flex .header_nav .header_nav_inner ul li + li {
    margin-top: 0;
  }
  #header .header_flex .header_nav .header_nav_inner li {
    padding: 8px 0;
  }
  #Toggle {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5%;
    width: 7%;
    height: 30%;
    cursor: pointer;
    z-index: 100;
    max-width: 27px;
  }
  #Toggle span {
    display: block;
    position: absolute;
    width: 100%;
    border-bottom: solid 2px #fff;
    transition: 0.35s ease-in-out;
    left: 0;
  }
  #Toggle span:nth-child(1) {
    top: 0;
  }
  #Toggle span:nth-child(2) {
    top: 50%;
  }
  #Toggle span:nth-child(3) {
    top: 100%;
  }
  #Toggle.active span:nth-child(1) {
    top: 50%;
    left: 0;
    transform: rotate(-45deg);
  }
  #Toggle.active span:nth-child(2),
  #Toggle.active span:nth-child(3) {
    top: 50%;
    transform: rotate(45deg);
  }
  main {
    padding-top: var(--headerHeight-sp);
  }

  .cmn_h3 {
    text-underline-offset: 10px;
    font-size: 1.625rem;
  }

  .menu_anchor_title {
    font-size: 1.5rem;
  }
  .menu_anchor_title--s {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 767px) {
  .simulation-panel .txt-box {
    padding: 5.3333333333vw 4vw 4vw 2.6666666667vw;
  }
  .simulation-panel:not(:first-child) {
    margin-top: 20px;
  }
  .simulation-panel .txt-box {
    padding: 20px 15px 15px 10px;
  }
  .c-sec-sell {
    padding-top: 70px;
  }
  .c-sec-sell .txt {
    font-size: 16px;
  }
  .c-sec-sell .c-list-link .c-btn01 {
    font-size: 16px;
  }
  body {
    min-width: 0;
  }
  main {
    padding-top: var(--headerHeight-sp);
  }
  #footer .logoArea .imgsize img {
    height: 17px;
  }
  #pagetop {
    right: 20px;
    bottom: 20px;
  }
  .scroll-top {
    width: 40px;
    height: 40px;
    right: 12px;
  }
  .scroll-top > img {
    width: 100%;
    height: auto;
  }
  .explanation {
    padding: 40px 0 40px;
  }
  .explanation_caution_text {
    font-size: 0.75rem;
  }
  .explanation_caution_text + .explanation_caution_text {
    margin-top: 25px;
  }
  .explanation_caution_list > li {
    font-size: 0.75rem;
  }
  .explanation_list {
    margin-top: 25px;
    margin-bottom: 20px;
  }
  .c-sec-risk .txt {
    font-size: 14px;
  }
  .c-sec-risk .txt + .txt {
    margin-top: 0.9em;
  }
  .c-sec-risk {
    margin: 70px 0;
  }

  /* 共通 */
  .cmn_graph_title {
    font-size: 1rem;
    width: calc(100% - 40px);
    padding: 3px 10px 5px;
  }
  .cmn_h2_point {
    font-size: 1.25rem;
  }
  .cmn_text {
    font-size: 1rem;
  }
  .cmn_h2 {
    font-size: 22px;
    margin-bottom: 30px;
    text-underline-offset: 10px;
    text-decoration-thickness: 2px;
    line-height: 1.8;
  }
  .cmn_h2.hp_txt_noline {
    margin-bottom: 40px;
  }
  .cmn_h3 {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-underline-offset: 10px;
    text-decoration-thickness: 2px;
  }
  .cmn_figre {
    max-width: 100%;
  }
  .inner-block {
    padding: 60px 20px;
  }
  .c-box-border {
    padding: 22px 15px;
  }
  .c-sec-attention {
    margin-bottom: 70px;
    margin-top: 70px;
  }
  .c-sec-attention .txt {
    font-size: 14px;
  }
  .c-list01 > li {
    font-size: 14px
  }
  .cmn_caption_md {
    font-size: 12px;
  }
  .cmn_catch {
    font-size: 20px;
    line-height: 1.8;
  }
  .cmn_catch.cmn_catch--s {
    font-size: 18px;
  }
  .cmn_catch strong {
    font-size: 20px;
  }
  .cmn_catch_line {
    font-size: 22px;
    background-size: 0 4px;
    padding-bottom: 4px;    
    background-size: 0% 4px;
  }
  .cmn_catch.is-inview-show .cmn_catch_line {
    background-size: 100% 4px;
  }
  .cmn_r_title {
    font-size: 18px;
    min-height: 36px;
    /* max-width: calc(100% - 30px); */
    margin: 40px auto 25px;
    padding-top: 6px;
    min-width: 0;
    padding-inline: 17px;
    line-height: 1.2;    
    width: 100%;
    /* font-size: 1.25rem; */
    border-width: 1px;
  }
  .cmn_mt_s {
    margin-top: 10px;
  }
  .cmn_mt_m {
    margin-top: 20px;
  }
  .cmn_mt_l {
    margin-top: 40px;
  }
  .cmn_band_title {
    font-size: 22px;
    line-height: 1.9;
  }
  .cmn_band_title > strong {
    background: linear-gradient(to top, #fbc600 4px, transparent 4px);
    display: inline;
    padding-bottom: 4px;
  }
  .cmn_band_bubble {
    font-size: 1.125rem;
    width: 80px;
    height: 29px;
    padding-top: 3px;
    padding-left: 6px;
  }
  .cmn_band_bubble > em {
    font-size: 22px;
    vertical-align: 0;
  }
  .cmn_band_bubble::after {
    width: 16px;
    height: 14px;
  }
  .cmn_band_lead {
    font-size: 18px;
    margin-top: 30px;
    text-align: left;
  }
  .cmn_band .cmn_caption_md {
    margin-top: 20px;
  }
  .cmn_bgArea {
    background: var(--color-bg);
    padding: 40px 0;
  }
  .cmn_bgArea_text {
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
  }
  .cmn_bgArea_text--lead {
    text-align: center;
    font-size: 18px;
  }
  .cmn_bgArea_wrap {
    width: calc(100% - 25px);
    margin-top: 40px;
  }

  /* mv */
  .mv {
    padding: 30px 0 50px;
  }
  .mv_lead {
    margin: 0 auto 20px;
    min-width: 232px;
    width: 80%;
  }
  .mv_title {
    display: block;
    margin: 0 auto 0px;
    max-width: 336px;
    width: 96%;
  }
  .mv_logo {
    min-width: 170px;
    width: 38%;
    max-width: 177px;
    margin: 18px 7px -60px auto;
    padding: 0;
  }
  .mv_image {
    margin-top: 40px;
    gap: 2px;    
    margin-right: 17vw;
    margin-left: 3vw;
  }
  .mv_content {
    margin-top: 40px;
  }
  .mv .cmn_caption_md {
    font-size: 12px;
  }

  /* リード */
  .lead_section {
    padding: 50px 0 50px;
  }
  .lead_bubble {
    align-items: center;
    gap: 35px;    
    margin: 40px auto 0;
    flex-direction: column-reverse;
  }
  .lead_bubble_img {
    width: 30%;
    max-width: 130px;
  }
  .lead_bubble_main {
    border-radius: 20px;
    padding: 17px 20px;
    min-height: 0;
  }
  .lead_bubble_main::before {
    width: 30px;
    height: 22px;
    top: calc(100% - 1px);
    bottom: auto;
    right: 0;
    left: 0;
    margin: auto;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
  }
  .lead_bubble_text {
    font-size:18px;
  }
  .lead_catch {
    line-height: 1.7;
  }
  .lead_catch .cmn_catch_line {
    font-size: 25px;
  }
  .lead_section .cmn_figre {
    padding-block: 10px 3px;
  }

  /* アンカーメニュー */
  .menu_section {
    padding: 40px 0 40px;
  }
  .menu_anchor {
    box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
    gap: 0;
  }
  .menu_anchor_item {
    flex: 1;
    box-shadow: none;
  }
  .menu_anchor_item:not(:last-child) {
    border-right: #e0e0e0 solid 1px;
  }
  .menu_anchor_item > a {
    padding: 15px 10px 25px;
    min-height: 0px;
  }
  .menu_anchor_item > a::after {
    bottom: 5px;
    width: 15px;
  }
  .menu_anchor_title {
    font-size: 20px;
    margin: 0;
  }
  .menu_anchor_title--s {
    font-size: 1.125rem;
  }
  .menu_title {
    font-size: 26px;
    margin-bottom: 30px;
    line-height: 2.2;
  }
  .menu_title > span {
    background: linear-gradient(to top, var(--color-main) 2px, transparent 2px);
    padding-bottom: 6px;
  }

  /* ファンドの特徴 */
  .point_section {
    padding: 0 0 60px;
  }
  .point_scroll_img {
    width: 600px;
    max-width: none;
  }
  .point_scroll {
    overflow-x: scroll;
    overflow-y: hidden;
  }


  /* faq */
  .faq_title {
    gap: 10px;
  }
  .faq_content {
    padding: 25px 15px 30px;
    margin-top: 40px;
  }
  .faq_content .cmn_bgArea_text {
    margin-left: 40px;
  }
  .faq_content .cmn_r_title {
    width: 100%;
    max-width: 100%;
    font-feature-settings: "palt";
    letter-spacing: .05em;
    margin-top: 30px;
    font-size: 16px;
  }
  .faq_content .cmn_figre {
    padding-block: 15px;
  }
  .faq_title_icon {
    width: 36px;
    min-width: 36px;
    height: 36px;
  }
  .faq_title_text {
    font-size: 20px;
    padding-top: 4px;
    font-feature-settings: "palt";
    letter-spacing: .05em;
  }
  .faq_content_inner + .faq_content_inner {
    margin-top: 50px;
  }
  .faq_bnr {
    margin-top: 30px;
  }
  .faq_graph {
    display: block;
  }
  .faq_graph_item {
    display: block;
  }
  .faq_graph_item + .faq_graph_item {
    margin-top: 40px;
  }
  .faq_graph_subTitle {
    font-size: 1rem;
    letter-spacing: .5px;    
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }
  .faq_graph_subTitle > span {
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }
  .faq_graph_title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .faq_graph_title-icon {
    background-color: #666;
    color: #FFF;
    border-radius: 5px;
    padding: 3px 8px 3px;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 500;
  }
  .faq_graph_title-text {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-main);
  }
  .faq_graph_title-circle {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: var(--color-main);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
  }
  .faq_graph_title-circle em {
    font-size: 1.375rem;
    font-style: normal;
    margin-top: -2px;
  }
  .faq_graph_content {
    margin-top: 18px;
  }
  .faq_graph_image {
    max-width: 500px;
    margin: 0 auto;
  }
  .faq_graph_image img {
    width: 100%;
    height: auto;
  }

  /* graph-box */
  .graph-box {
    border-radius: 20px;
    padding: 30px 20px;
  }
  .graph-parent {
    position: relative;
    margin-inline: auto;
    overflow-x: scroll;
    overflow-y: hidden;
    width: 100%;
  }
  .graph-achive {
    display: none;
  }
  .graph-parent img {
    width: 660px;
    max-width: 660px;
  }
  .graph-parent.is-inview-show .slide-in_inner {
    animation: none;
    opacity: 1;
  }
  .graph-parent.is-inview-show .slide-in {
    animation: none;
    opacity: 1;
  }
  .has-scroll img {
    padding-bottom: 20px;
  }
  .has-scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
  .has-scroll::-webkit-scrollbar-track {
    background-color: #eee;
    border-radius: 100px;
  }
  .has-scroll::-webkit-scrollbar-thumb {
    background-color: #007d75;
    border-radius: 100px;
  }
  .tool_section {
    margin: 0 auto;
  }
  .tool_titleSub {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  .tool_title {
    font-size: 26px;
    text-underline-offset: 10px;
    text-decoration-thickness: 2px;
    margin-bottom: 50px;
  }
  .tool_section .list {
    margin-top: 30px;
  }
  .simulation-panel .item {
    justify-content: center;
    gap: 5px;
  }
  .simulation-panel .ttl-sub {
    font-size: 14px;
    min-width: 0;
  }
  .simulation-panel:nth-child(2) .ttl-sub {
    min-width: 0;
  }
  .simulation-panel .ttl {
    font-size: 22px;
    margin-top: 20px;
    text-align: center;
  }
  .simulation-panel .ttl-sub::after {
    border-width: 15px 8px 0 8px;
  }
  .simulation-panel .img {
    position: static;
    padding-left: 0;
    margin: 0;
    max-width: 150px;
    width: 30%;
    flex-shrink: unset;
    padding-left: 10px;
  }
  .simulation-panel .txt-box {
    flex-grow: 1;
    width: auto;
    width: 60%;
  }

  .simu_content {
    padding: 40px 15px 30px;
    margin-top: 40px;
  }
  .simu_inner {
    margin-top: 80px;
  }
  .simu_txt {
    font-size: 16px;
  }
  .c-btn01.simu_btn {
    margin-block: 50px;
    font-size: 18px;
    padding: 15px 20px;
  }
  .simu_mv {
    background: var(--color-bg);
    min-height: 145px;
    padding: 40px 20px 55px;
    position: relative;
    display: block;
  }
  .simu_mv.simu_mv--hasBubble {
    padding-top: 20px;
  }
  .simu_mv_inner {
    position: static;
    width: auto;
    margin: 0;
  }
  .simu_mv_img {
    left: auto;
    right: 20px;
    width: 110px;
    top: auto;
    transform: none;
    bottom: 0;
  }
  .simu_mv_titleSub {
    width: auto;
    background: #fff;
    font-weight: bold;
    letter-spacing: 0.07em;
    z-index: 1;
    position: relative;
    border-radius: 9px;
    margin: 0 15px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    line-height: 1.58;
    padding: 10px;
    text-align: left;
    max-width: none;
  }
  .simu_mv_title {
    font-size: max(24px,6.6666666667vw);
    z-index: 1;
    position: relative;
    text-align: left;    
    letter-spacing: 0.08em;
  }
  .simu_panel {
    gap: 20px;
    flex-direction: column;
    width: fit-content;
    margin-inline: auto;
  }
  .simu_panel_item {
    border-radius: 30px;
    padding: 25px 20px;
  }
  .simu_panel_title {
    font-size: 18px;
  }
  .simu_panel_text {
    font-size: 20px;
  }
  .simu_panel_text > em {
    font-size: 26px;
  }
  .simu_graph {
    flex-direction: column;
    gap: 35px;
  }
  .simu_graph_bubble {
    min-height: 0;
    padding: 20px;
    border-radius: 26px;
  }
  .simu_graph_bubble::before, 
  .simu_graph_bubble::after {
    right: 0;
    left: 0;
    bottom: 100%;
    top: auto;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
    width: 25px;
    height: 25px;
  }
  .simu_graph_bubble::after {
    bottom: calc(100% - 4px);
  }
  .simu_graph_bubble p {
    font-size: 18px;
  }
  .simu_graph_bubble p > span {
    font-size: 22px;
  }

  /* ヘルパー */
  .hp_brPc {
    display: none;
  }
  .hp_brSp {
    display: inline;
  }
  .hp_pcOnly {
    display: none;
  }
  .hp_spOnly {
    display: block;
  }
  .hp_spNone {
    display: none;
  }
  .hp_txt_c_sp {
    text-align: center;
  }
  .hp_txt_l_sp {
    text-align: left;
  }
  .hp_in_sp {
    display: inline;
  }
}

@media only screen and (max-width: 600px) {
  /* スクロール画像 */
  .scroll_x_wrap {
    position: relative;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .scroll_x_wrap .sp_scrolling {
    width: 100%;
  }
  .scroll_x_wrap .scroll_x_overlay {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.7;
  }
  .scroll_x_wrap .scroll_x_btn {
    content: "";
    font-size: 1rem;
    font-weight: bold;
    display: inline-block;
    position: absolute;
    left: calc(50% - 2.6667vw);
    top: calc(50% - 0.5em);
  }
  .scroll_x_wrap .scroll_x_btn span {
    display: table-cell;
    width: 100%;
    height: 100%;
    color: #fff;
    vertical-align: middle;
  }
  .scroll_x_wrap .scroll_x_btn:before {
    content: "";
    position: absolute;
    left: -29.3333vw;
    top: -5.3333vw;
    width: 39.0667vw;
    height: 15.7333vw;
    background: url(../img/icon_swipe.png) no-repeat center center;
    background-size: contain;
  }
  .scroll_x_wrap .scroll_x_btn:before {
    animation-name: swipe;
    animation-duration: 1s;
    animation-delay: 0s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }
  .scroll_x_wrap::-webkit-scrollbar {
    height: 5px;
  }
  .scroll_x_wrap::-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  .scroll_x_wrap::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
  .scroll_x_wrap figure {
    text-align: center;
  }
  .chart_btn {
    position: relative;
    max-width: 300px;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 30px;
    background: var(--color-wh);
    color: var(--color-main);
    border: 2px solid var(--color-main);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
  }
  .chart_btn::before,
  .chart_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 2px;
    height: 14px;
    background: var(--color-main);
    transition: all 300ms 0s ease;
  }
  .chart_btn::before {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .chart_btn::after {
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  .chart_btn.on::before {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .chart_btn.on::after {
    display: none;
  }
  .chart-img {
    width: 100%;
    transition: all 0.8s cubic-bezier(0.75, 0, 0.15, 1);
    max-width: none;
  }
  .chart-img.on {
    width: 600px;
  }
  .img_scroll {
    margin: 0;
    margin-right: -12px;
  }
  .img_scroll img {
    padding-right: 12px;
  }
}

