@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: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", 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%;
  }
}
body {
  max-width: 1920px;
  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;
}
.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_ul li {
  margin-left: 35px;
}
#header .header_flex .header_nav .header_nav_ul li a {
  color: #fff;
  font-size: 16px;
  padding-bottom: 0.2em;
  font-weight: 700;
}
#header .header_flex .header_nav .header_nav_ul li a:hover {
  border-bottom: 2px solid #fff;
  background-position: 0% bottom;
}
#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 {
  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: 700;
  color: var(--color-main);
  line-height: var(--lineHeight-m);
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 70px;
  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: 700;
  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: 700;
  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 .txt {
  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: 5px;
  height: 5px;
}
.c-list01 > li + li {
  margin-top: 18px;
}

/* mv */
.mv {
  text-align: center;
}
.mv_wrap {
  position: relative;
  padding: 60px 0 50px;
}
.mv_lead {
  display: block;
  margin: 0 auto 30px;
  max-width: 690px;
  width: 70%;
}
.mv_title {
  display: block;
  margin: 0 auto 96px;
  max-width: 672px;
  width: 70%;
}
.mv_logo {
  position: absolute;
  left: 0;
  top: 40px;
  max-width: 232px;
  width: 20%;
}
.mv_contentList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px 10px;
}
.mv_content {
  width: calc((100% - 10px) / 2);
  min-width: 450px;
}
.mv_tag {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 20px;
}
.mv_tag >li {
  display: inline-block;
  background-color: var(--color-main);
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 11px 17px;
}
.mv_tag--2 >li {
  min-width: 290px;
  letter-spacing: 5px;
}
.mv_btn {
  max-width: 500px;
  width: 100%;
  margin: 20px auto 0;
}
.mv_btn a {
  border: var(--color-main) solid 1px;
  background-color: #FFF;
  color: var(--color-main);
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  position: relative;
  transition: all .2s;
}
.mv_btn a::after {
  content: '';
  width: 16px;
  height: 14px;
  mask: url(../img/icon_arrow.svg) center / 100% no-repeat;
  background-color: var(--color-main);
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all .2s;
}
.mv_btn--d a {
  pointer-events: none;
  cursor: auto;
  background-color: #efefef;
  border-color: #efefef;
  color: #666;
}
.mv_btn--d a::after {
  background-color: #666;
}
.mv_btn a:hover {
  background-color: var(--color-main);
  color: #FFF;
}
.mv_btn a:hover::after {
  background-color: #FFF;
}
.mv_btn_caption {
  color: #666;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 10px;
  height: 0;
}
.mv_image {
  position: absolute;
  left: 0;
  bottom: 210px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.mv_image-item--1 {
  margin-left: 20px;
}
.mv_image-item--2 {
  margin-right: -30px;
}

/* アンカーメニュー */
.menu_section {
  padding: 0 0 40px;
}
.menu_title {
  background: var(--color-main);
  color: #FFF;
  text-align: center;
  padding: 20px;
  margin-bottom: 40px;
  font-size: 1.875rem;
  line-height: 1.8;
  font-weight: 700;
}
.menu_anchor {
  display: flex;
  box-shadow: 0 0 20px 0 rgba(0,0,0,.2);
  margin-top: 40px;
}
.menu_anchor_item {
  flex: 1;
}
.menu_anchor_item:not(:last-child) {
  border-right: #e0e0e0 solid 1px;
}
.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: 120px;
  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: 700;
  letter-spacing: 1px;
  position: relative;
  width: fit-content;
}
.menu_anchor_title--s {
  color: var(--color-main);
  font-size: 1.25rem;
}

/* ファンドの特徴 */
.point_section {
  padding: 90px 0 50px;
  background: var(--color-bg);
}
.point_content {
  margin-bottom: 40px;
}
.point_item {
  position: relative;
}
.point_item:not(:last-child) {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: var(--color-main) solid 1px;
}
.point_flag {
  position: relative;
  text-align: center;
  margin-bottom: 16px;
  z-index: 2;
}
.point_flag::after {
  content: '';
  display: block;
  width: 20px;
  height: 18px;
  margin: -1px auto 0;
  background-color: var(--color-main);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.point_flag span {
  background-color: var(--color-main);
  color: #FFF;
  font-size: 1.25rem;
  letter-spacing: 5px;
  font-weight: 700;
  display: inline-block;
  width: 125px;
  height: 35px;
  padding-top: 6px;
}
.point_flag em {
  font-size: 1.5rem;
  font-style: normal;
}
.point_title {
  color: var(--color-main);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
.point_title--bg {
  padding: 3px 10px 0;
  margin-right: 10px;
  position: relative;
  z-index: 2;
}
.point_title--bg::after {
  content: '';
  width: 0;
  height: 100%;
  background-color: #FFF;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.point_title--bg.is-inview-show::after {
  animation: line .3s linear forwards;
}
.point_title--bg2 {
  margin-right: -10px;
  padding-right: 0;
  z-index: 3;
  position: relative;
}
.point_title--bg3.is-inview-show::after {
  animation-delay: .3s;
}
.point_text {
  font-size: 1.125rem;
  line-height: 1.77;
  font-weight: 700;
  margin-top: 20px;
}
.point_image {
  position: absolute;
}
.point_image--1 {
  width: 359px;
  top: -80px;
  right: -110px;
}
.point_image--2 {
  width: 209px;
  top: -36px;
  left: -110px;
}
.point_image--3 {
  width: 204px;
  top: -50px;
  right: -84px;
}


/* ラインナップ */
.lineup_section {
  padding: 90px 0 80px;
}
.lineup_wrap {
  max-width: 1100px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.lineup_titleList {
  display: flex;
  margin: 75px auto 10px;
}
.lineup_title {
  width: 50%;
}
.lineup_title::after {
  content: '';
  width: 28px;
  height: 24px;
  display: block;
  margin: -1px auto 0;
  background-color: var(--color-sub);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.lineup_title2::after {
  background-color: var(--color-sub2);
}
.lineup_title_inner {
  max-width: 400px;
  width: calc(100% - 40px);
  height: 50px;
  margin: 0 auto;
  border: var(--color-sub) solid 3px;
  border-radius: 10px;
  text-align: center;
  display: block;
  color: var(--color-main);
  font-weight: 700;
  font-size: 1.25rem;
  padding-top: 8px;
}
.lineup_title_inner--2 {
  border-color: var(--color-sub2);
}
.lineup_title_inner strong {
  font-size: 1.75rem;
  color: var(--color-sub);
}
.lineup_title_inner--2 strong {
  color: var(--color-sub2);
}
.lineup_title_font {
  opacity: 0;
}
.lineup_title_font.is-inview-show {
  animation: fadein .3s linear forwards;
}
.lineup_title_font--2.is-inview-show {
  animation-delay: .4s;
}
.lineup_content {
  display: flex;
}
.lineup_bg {
  margin-bottom: 35px;
  padding-bottom: 25px;
  position: relative;
  z-index: 2;
}
.lineup_bg::after {
  content: '';
  z-index: -1;
  max-width: 1100px;
  height: calc(100% - 32px);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  background: linear-gradient(90deg, #ebf7f9 0%, #ebf7f9 50%, #fdf0f3 50%, #fdf0f3 100%);
}
.lineup_image {
  text-align: center;
  max-width: 1143px;
  margin: 0 auto 15px;
  display: block;
  padding-right: 12px;
}
.lineup_item {
  width: 100%;
  max-width: calc(50% - 50px);
  text-align: center;
  background-color: #FFF;
  margin: 0 auto;
  border-radius: 20px;
  padding: 16px 20px 20px;
}
.lineup_item_title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-main);
  margin-bottom: 10px;
}
.lineup_item_link li + li {
  margin-top: 10px;
}
.lineup_item_link a {
  transition: all .2s;
}
.lineup_item_link a:hover {
  opacity: .7;
}
.lineup_item_tag {
  display: block;
  width: 160px;
  line-height: 24px;
  background-color: #00479d;
  color: #FFF;
  font-size: 1.0625rem;
  font-weight: 500;
  margin: 0 auto;
  letter-spacing: 1px;
}
.lineup_item_tag--2 {
  background-color: #00a0e9;
}
.lineup_item_tag--3 {
  background-color: #1a772f;
}
.lineup_item_tag--4 {
  background-color: #f39700;
}
.lineup_item_tag--5 {
  background-color: #c11920;
}
.lineup_item_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.lineup_item_tag2 {
  width: 64px;
  line-height: 24px;
  background-color: #00479d;
  color: #FFF;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 1px;
}
.lineup_item_tag2--2 {
  background-color: #1a772f;
}
.lineup_item_tag2--3 {
  background-color: #c11920;
}
.lineup_item_text {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: underline;
  text-underline-offset: 4px;
  line-height: 1.4;
}

/* ファンド */
.fund_section {
  padding-bottom: 90px;
}
.fund_title {
  background-color: #ebf7f9;
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}
.fund_title--2 {
  background-color: #fdf0f3;
}
.fund_title::after {
  content: '';
  width: 42px;
  height: 28px;
  background-color: #ebf7f9;
  display: block;
  position: absolute;
  bottom: -27px;
  left: 0;
  right: 0;
  margin: auto;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.fund_title--2::after {
  background-color: #fdf0f3;
}
.fund_title_inner {
  position: relative;
  padding: 14px 0;
  display: inline-block;
  font-size: 1.625rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-main);
}
.fund_title_inner strong {
  color: #00a8ba;
  font-size: 2rem;
}
.fund_title_inner--2 strong {
  color: #ec708a;
}
.fund_title_icon {
  position: absolute;
  bottom: 0;
  left: -40px;
  transform: translateX(-100%);
}
.fund_level3 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-main);
  text-align: center;
  margin-bottom: 24px;
}
.fund_level4 {
  text-align: center;
  margin: 50px auto 40px;
}
.fund_level4_inner {
  display: block;
  width: 297px;
  height: 36px;
  border: var(--color-main) solid 2px;
  border-radius: 18px;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-main);
  padding-top: 6px;
  margin: 0 auto;
}
.fund_btn {
  max-width: 635px;
  width: 100%;
  margin: 45px auto 0;
}
.fund_btn a {
  display: block;
  position: relative;
  background-color: var(--color-main);
  border: var(--color-main) solid 2px;
  color: #FFF;
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 12px 40px 10px;
  font-weight: 700;
  text-align: center;
  transition: all .2s;
}
.fund_btn a::after {
  content: '';
  width: 16px;
  height: 14px;
  mask: url(../img/icon_arrow.svg) center / 100% no-repeat;
  background-color: #FFF;
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all .2s;
}
.fund_btn a:hover {
  color: var(--color-main);
  background-color: #FFF;
}
.fund_btn a:hover::after {
  background-color: var(--color-main);
}
.fund_bnr {
  max-width: 520px;
  width: 100%;
  margin: 70px auto 0;
}
.fund_bnr a {
  display: block;
  transition: opacity .2s;
}
.fund_bnr a:hover {
  opacity: .7;
}
.fund_image2 {
  margin-top: 60px;
}

/* faq */
.faq_section {
  max-width: 1400px;
  margin: 0 auto;
}
.faq_section_bg {
  background-color: #e5f2f1;
  padding: 75px 30px 100px;
}
.faq_content {
  background-color: #FFF;
  padding: 60px 20px 75px;
}
.faq_content + .faq_content{
  margin-top: 65px;
}
.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.625rem;
  color: var(--color-main);
  font-weight: 700;
  line-height: 1.5;
  padding-top: 10px;
}
.faq_level4 {
  text-align: center;
  margin: 50px auto 40px;
}
.faq_level4_inner {
  display: inline-block;
  min-width: 297px;
  min-height: 36px;
  border: var(--color-main) solid 2px;
  border-radius: 50px;
  font-size: 1.375rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-main);
  padding: 4px 20px 2px;
  margin: 0 auto;
}
.faq_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 45px;
  margin: 0 auto 40px;
}
.faq_list_item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
.faq_list_head {
  min-height: 76px;
  padding: 6px 20px 6px 85px;
  text-align: center;
  background-color: #00479d;
  color: #FFF;
  border-radius: 10px 10px 0 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq_list_item--2 .faq_list_head {
  background-color: #1a772f;
}
.faq_list_item--3 .faq_list_head {
  background-color: #c11920;
}
.faq_list_icon {
  position: absolute;
  left: 12px;
  top: -5px;
  width: 85px;
}
.faq_list_text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1px;
}
.faq_list_content {
  border: #00479d solid 2px;
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 20px 24px;
}
.faq_list_item--2 .faq_list_content {
  border-color: #1a772f;
}
.faq_list_item--3 .faq_list_content {
  border-color: #c11920;
}
.faq_list_list li {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 700;
  letter-spacing: .5px;
  padding-left: 1em;
  text-indent: -1em;  
}
.faq_list_list li + li {
  margin-top: 10px;
}
.faq_list_list li::first-letter {
  color: #00479d;
}
.faq_list_item--2 .faq_list_list li::first-letter {
  color: #1a772f;
}
.faq_list_item--3 .faq_list_list li::first-letter {
  color: #c11920;
}
.faq_content_inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
.faq_content_inner--2 {
  opacity: 0;
}
.faq_content_inner--2.is-inview-show {
  animation: move-y .4s linear forwards;
}
.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.5;
  font-size: 1rem;
  color: var(--color-main);
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 10px;
}
.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: 700;
  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: 700;
}
.faq_graph_title-circle em {
  font-size: 1.375rem;
  font-style: normal;
  margin-top: -2px;
}
.faq_graph_content {
  margin-top: 18px;
}
.faq_attention {
  border: var(--color-dk) solid 1px;
  padding: 24px;
  margin-top: 90px;
}
.faq_attention_text {
  line-height: 1.7;
  font-size: 0.875rem;
  font-weight: 500;
}


/* ツール */
.tool_section {
  background-color: #e5f2f1;
  padding: 70px 20px;
  margin: 120px auto;
}
.tool_section .item {
  background: #fff;
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.tool_section .item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: box-shadow 0.3s ease-in-out;
}
.tool_section .img {
  display: flex;
  align-items: center;
  width: 130px;
  flex-shrink: 0;
}
.tool_section .txt-box {
  flex-grow: 1;
  padding: 20px 15px;
}
.tool_section .ttl-sub {
  background: #e5f2f1;
  border-radius: 100px;
  color: #007d75;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.25;
  padding: 10px 30px;
  position: relative;
  text-align: center;
}
.tool_section .ttl-sub::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 6px 0 6px;
  border-color: #e5f2f1 transparent transparent transparent;
  margin: auto;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
.tool_section .ttl {
  color: #007d75;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.25;
  margin-top: 15px;
}

/* レポート */
.sec-home-data {
  margin-top: 140px;
}
.sec-home-data .box {
  background: #fff;
  margin: auto;
  padding: 40px 70px;
  max-width: 1000px;
}
.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-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: 16px;
  padding: 11px 12px;
}
.c-list-type-payout {
  margin-top: 20px;
}
.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 .c-btn01 {
  font-size: 16px;
  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;
}
.sec-home-risk {
  max-width: 1000px;
  margin: 100px auto 0;
}
.sec-home-risk .txt {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 2;
  margin: auto;
  max-width: 1000px;
  color: #666;
}
.sec-home-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: 700;
}
.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;
}
.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 {
    margin-left: 20px;
  }
  #header .header_flex .header_nav .header_nav_ul li a {
    font-size: 14px;
    font-weight: 700;
  }
}

@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 {
    font-size: 12px;
  }
}

@media only screen and (max-width: 1024px) {
  .tool_section {
    margin: 70px auto;
  }
  .tool_section .img {
    margin-left: -15px;
    width: 100px;
  }
  .sec-home-data {
    margin-top: 70px;
  }
  .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 > li {
    font-size: 12px;
  }
  .c-list-link {
    margin: 0 -10px -10px 0;
  }
  .c-list-link > li {
    margin: 0 10px 10px 0;
    width: calc(50% - 10px);
  }
  .c-list-link .c-btn01 {
    font-size: 14px;
    height: 40px;
    min-width: 1px;
    max-width: 100%;
  }
  .c-list-link .c-btn01::before, .c-list-link .c-btn01::after {
    right: 9px;
  }
  .sec-home-risk .txt {
    font-size: 16px;
  }
  .sec-home-risk .txt + .txt {
    margin-top: 0.9em;
  }
  .sec-home-risk {
    margin-top: 70px;
  }

  #pagetop a {
    border-width: 1px;
    width: 50px;
    height: 50px;
  }
}

@media only screen and (max-width: 768px) {
  .tool_section .list > li:not(:first-child) {
    margin-top: 20px;
  }
  .tool_section .txt-box {
    padding: 20px 15px 15px 10px;
  }
}
@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;
  }
  .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 (max-width: 500px) {
  .tool_section .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .tool_section .list > li {
    width: calc(50% - 40px);
  }
  .tool_section .list > li:nth-child(n+3) {
    margin-top: 40px;
  }
  .tool_section .txt-box {
    text-align: center;
  }
} */

@media only screen and (max-width: 1240px) {
  .mv_title {
    margin-bottom: 50px;
  }
  .mv_logo {
    position: static;
    max-width: 100%;
    width: 380px;
    margin: 0 auto -60px;
    padding-right: 200px;
  }
  .mv_image {
    position: static;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
  }
  .mv_image-item--1 {
    margin-left: 0;
  }

}

@media only screen and (min-width: 769px) {
  .sec-simulation-menu .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .sec-simulation-menu .list > li {
    width: calc(50% - 40px);
  }
  .sec-simulation-menu .list > li:nth-child(n+3) {
    margin-top: 40px;
  }
  .sec-simulation-menu .txt-box {
    text-align: center;
  }

  .tool_section .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
  }
  .tool_section .list > li:nth-child(n+3) {
    margin-top: 40px;
  }
  .tool_section .txt-box {
    text-align: center;
  }
  .tool_section .item:hover::before {
    box-shadow: inset 0 0 0 3px #007d75;
  }
}

@media only screen and (max-width: 1200px) {
  .tool_section .ttl-sub {
    font-size: 11px;
  }
  .tool_section .ttl {
    font-size: 22px;
    text-align: left;
  }
}


@media only screen and (max-width: 1200px) and (max-width: 768px) {
  .tool_section .ttl-sub {
    font-size: 10px;
    padding: 5px 10px;
    width: 100%;
  }
  .tool_section .ttl {
    font-size: 26px;
  }
}

@media only screen and (max-width: 768px) and (max-width: 374px) {
  .tool_section .txt-box {
    padding: 5.3333333333vw 4vw 4vw 2.6666666667vw;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1380px) {
  .tool_section .list > li {
    width: calc(50% - 10px);
  }
  .tool_section .list > li:nth-child(n+3) {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 1200px) and (max-width: 768px) and (max-width: 374px) {
  .tool_section .ttl {
    font-size: 6.6666666667vw;
  }
}

@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 {
    font-size: 16px;
    color: #474747;
  }
  #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;
  }
  .point_image--2 {
    width: 120px;
    left: 0;
  }
  .point_image--3 {
    width: 120px;
    right: 0;
  }
}

@media screen and (max-width: 767px) {
  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;
  }

  /* 共通 */
  .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: 1.75rem;
    margin-bottom: 50px;
    text-underline-offset: 10px;
  }
  .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;
  }
  .inner-block {
    padding: 60px 20px;
  }
  .c-box-border {
    padding: 22px 15px;
  }
  .c-sec-attention .txt {
    font-size: 0.875rem;
  }
  .c-list01 > li {
    font-size: 0.875rem;
  }

  /* mv */
  .mv_wrap {
    padding: 25px 0 85px;
  }
  .mv_lead {
    margin: 0 auto 20px;
    min-width: 232px;
    width: 80%;
  }
  .mv_title {
    display: block;
    margin: 0 auto 40px;
    max-width: 336px;
    width: 96%;
  }
  .mv_logo {
    min-width: 140px;
    width: 45%;
    margin: 0 0 -60px 10px;
    padding: 0;
  }
  .mv_contentList {
    display: block;
  }
  .mv_content {
    width: 100%;
    min-width: 100%;
  }
  .mv_content + .mv_content {
    margin-top: 30px;
  }
  .mv_tag {
    gap: 6px;
  }
  .mv_tag >li {
    font-size: 0.875rem;
    padding: 8px 6px;
  }
  .mv_tag--2 >li {
    min-width: 160px;
    letter-spacing: 1px;
  }
  .mv_btn {
    margin: 15px auto 0;
  }
  .mv_btn a {
    font-size: 1rem;
    padding: 10px 30px;
    min-height: 50px;
  }
  .mv_btn a::after {
    width: 13px;
    height: 11px;
  }
  .mv_btn_caption {
    font-size: 1rem;
  }
  .mv_image {
    gap: 10px;
  }
  .mv_image-item--2 {
    margin-right: 0;
  }

  /* アンカーメニュー */
  .menu_section {
    padding: 0 0 50px;
  }
  .menu_title {
    padding: 30px 10px;
    margin-bottom: 30px;
    font-size: 1.125rem;
  }
  .menu_anchor {
    display: block;
    box-shadow: 0 0 20px 0 rgba(0,0,0,.2);
    margin-top: 40px;
  }
  .menu_anchor_item {
    flex: 1;
  }
  .menu_anchor_item:not(:last-child) {
    border-right: none;
    border-bottom: #e0e0e0 solid 1px;
  }
  .menu_anchor_item > a {
    padding: 12px 10px 12px;
    min-height: 90px;
  }
  .menu_anchor_item > a::after {
    bottom: 0;
    top: 0;
    right: 30px;
    left: auto;
    margin: auto;
  }
  .menu_anchor_title {
    font-size: 1.4375rem;
    margin: 0;
  }
  .menu_anchor_title--s {
    font-size: 1.125rem;
  }


  /* ファンドの特徴 */
  .point_section {
    padding: 45px 0 70px;
  }
  .point_content {
    margin-bottom: 30px;
  }
  .point_item {
    position: relative;
  }
  .point_item:not(:last-child) {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: var(--color-main) solid 1px;
  }
  .point_flag::after {
    width: 16px;
    height: 14px;
  }
  .point_flag span {
    font-size: 1.125rem;
    letter-spacing: 3px;
    width: 80px;
    height: 29px;
    padding-top: 3px;
  }
  .point_flag em {
    font-size: 1.375rem;
  }
  .point_title {
    font-size: 1.5rem;
  }
  .point_title--bg2 {
    margin-right: 0;
    padding-right: 10px;
  }
  .point_text {
    font-size: 1rem;
    margin-top: 20px;
  }
  .point_image {
    position: absolute;
  }
  .point_image--1 {
    width: 211px;
    top: -36px;
    right: -5px;
  }
  .point_image--2 {
    width: 104px;
    top: -48px;
    left: 0;
  }
  .point_image--3 {
    width: 104px;
    top: -45px;
    right: 0;
  }

  /* ラインナップ */
  .lineup_section {
    padding: 50px 0 80px;
  }
  .lineup_titleList {
    margin: 40px auto 2px;
    width: 100%;
    justify-content: space-between;
  }
  .lineup_title::after {
    width: 15px;
    height: 12px;
  }
  .lineup_title_inner {
    max-width: 100%;
    width: calc(100% - 10px);
    height: 38px;
    margin: 0;
    font-size:0.9375rem;
    padding-top: 6px;
    letter-spacing: -1px;
  }
  .lineup_title_inner strong {
    font-size: 1.25rem;
  }
  .lineup_title_inner--2 {
    margin-left: auto;
  }
  .lineup_content {
    width: 100%;
    justify-content: space-between;
  }
  .lineup_bg {
    margin-bottom: 35px;
    padding: 25px 15px;
    position: relative;
    z-index: 2;
  }
  .lineup_bg::after {
    height: 100%;
  }
  .lineup_image {
    padding-right: 0;
  }
  .lineup_item {
    max-width: calc(50% - 10px);
    margin: 0;
    padding: 20px 8px 20px;
    display: flex;
    flex-direction: column;
  }
  .lineup_item_title {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
  .lineup_item_link {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .lineup_item_link li + li:has(.lineup_item_tag) {
    margin-top: 26px;
  }
  .lineup_item_tag {
    max-width: 120px;
    width: 100%;
    line-height: 22px;
    font-size: 1rem;
  }
  .lineup_item_box {
    align-items: flex-start;
  }
  .lineup_item_tag2 {
    width: 46px;
    min-width: 46px;
    line-height: 20px;
    font-size: 0.8125rem;
  }
  .lineup_item_text {
    font-size: 0.875rem;
    text-align: left;
  }

  /* ファンド */
  .fund_section {
    padding-bottom: 50px;
  }
  .fund_title_inner {
    padding: 50px 0 14px;
    font-size: 1.375rem;
  }
  .fund_title_inner strong {
    font-size: 1.75rem;
  }
  .fund_title_icon {
    bottom: auto;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-50%);
    width: 90px;
  }
  .fund_level3 {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
  .fund_level4 {
    margin: 30px auto 25px;
  }
  .fund_level4_inner {
    width: 100%;
    font-size: 1.25rem;
  }
  .fund_btn {
    max-width: 300px;
    margin: 24px auto 0;
  }
  .fund_btn a {
    font-size: 1rem;
  }
  .fund_bnr {
    margin: 40px auto;
  }
  .fund_image2 {
    margin-top: 30px;
  }

  /* faq */
  .faq_section_bg {
    padding: 45px 0 50px;
  }
  .faq_content {
    padding: 30px 10px 40px;
  }
  .faq_title_icon {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }
  .faq_title_text {
    font-size: 1.3125rem;
    padding-top: 6px;
  }
  .faq_level4 {
    margin: 40px auto 30px;
  }
  .faq_level4_inner {
    min-width: 100%;
    width: 100%;
    font-size: 1.25rem;
  }
  .faq_list {
    display: block;
    margin: 0 auto 30px;
  }
  .faq_list_item + .faq_list_item {
    margin-top: 40px;
  }
  .faq_list_head {
    min-height: 38px;
    height: 100%;
    padding: 6px 20px 6px 60px;
  }
  .faq_list_icon {
    position: absolute;
    left: 6px;
    top: auto;
    bottom: -8px;
    width: 65px;
  }
  .faq_list_text {
    font-size: 1.125rem;
    letter-spacing: .5px;
  }
  .faq_list_content {
    padding: 20px 15px;
  }
  .faq_list_list li {
    font-size: 0.9375rem;
  }
  .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;
  }
  .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: 700;
    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: 700;
  }
  .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;
  }
  .faq_attention {
    margin-top: 40px;
  }
  .faq_attention_text {
    font-size: 0.750rem;
  }


  /* スクロール画像 */
  .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: 700;
    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;
  }

  /* ヘルパー */
  .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;
  }
}


