:root {
  /* フォント */
  --ja: "Noto Sans JP", sans-serif;
}

/* 共通 */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ja);
}

a,
button {
  transition: all 0.3s;
}

a:hover,
button:hover {
  opacity: 0.8;
}

.onlyPC {
  display: none;
}


@media (min-width:768px) {
  .onlySP {
    display: none;
  }
  
  .onlyPC {
    display: block;
  }
}

/* ヘッダー */
.header {
  height: 114px;
  background-color: #fff;
  position: relative;
  z-index: 1;
}


.header div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header div:first-child .logo {
  height: 19px;
  width: auto;
  margin-left: 16px;
  margin-top: 10px;
}

.header div:first-child a.anchor-risk {
  padding: 12px 16px;
  background-color: #222;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.header div:nth-child(2) {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding-top: 20px;
}

.header div:nth-child(2) a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}

.header div:nth-child(2) a span {
  font-size: 1.2rem;
  font-weight: 700;
}

.header div:nth-child(2) a img {
  width: 20px;
  height: 20px;
}

@media (min-width:768px) {
  .header {
    height: 80px;
  }
  
  .header div:first-child {
    height: 100%;
  }

  .header div:first-child .logo {
    height: 28px;
    margin: 0 0 0 30px;
  }

  .header div:first-child a.anchor-risk {
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    padding: 0 47px;
  }

  .header div:nth-child(2) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    gap: 32px;
  }

  .header div:nth-child(2) a {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }

  .header div:nth-child(2) a img {
    width: 29px;
    height: 29px;
  }

  .header div:nth-child(2) a:nth-child(2) img {
    width: 26px;
    height: 26px;
  }

  .header div:nth-child(2) a span {
    font-size: 1.4rem;
  }


}

/* リードテキスト */
.lead-text {
  margin-top: 30px;
  padding: 20px 16px;
  background-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  line-height: 1.5;
  font-weight: 500;
}

.lead-text p:first-child {
  margin-bottom: 12px;
}

.lead-text span.large {
  font-size: 1.85rem;
  font-weight: 700;
}

.lead-text small {
  font-size: 1.2rem;
}

@media (min-width:768px) {
  .lead-text {
    margin-top: 80px;
    padding: 20px 28px;
  }

  .lead-text p {
    font-size: 2rem;
  }

  .lead-text span.large {
    font-size: 2.8rem;
  }

  .lead-text small {
    font-size: 1.4rem;
    margin-left: 24px;
  }
}

/* ファンドリスト */
.card-accordion .card {
  position: relative;
}

button.toggle-accordion {
  all: unset;
  cursor: pointer;
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #000;
  right: 15px;
  top: 45%;
  border: 1px solid #fff;
}

button.toggle-accordion span {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 14px;
  left: 5px;
}

button.toggle-accordion span:nth-child(2) {
  transform: rotate(90deg);
  transition: transform 0.3s;
}

button.toggle-accordion.is-open span:nth-child(2) {
  transform: rotate(180deg);
}

#top .thumbnail li.card-accordion {
  position: relative;
}

#top .thumbnail li.card-accordion a .thumb_txt {
  position: static;
  -webkit-transform: none;
  transform: none;
  width: 95%;
  position: relative;
  left: 5%;
}

#top .thumbnail li.card-accordion::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% auto;
  background-position: center bottom;
  transition: transform 0.5s linear;
  z-index: 0;
}

#top .thumbnail li.card-accordion.card-accordion-1::before {
  background-image: url('../img/top/thumbnail07.png');
}

#top .thumbnail li.card-accordion.card-accordion-2::before {
  background-image: url('../img/top/thumbnail08.png');
}

#top .thumbnail li.card-accordion.card-accordion-3::before {
  background-image: url('../img/top/thumbnail09.png');
}

#top .thumbnail li.card-accordion:hover::before{
  transform: scale(1.5);
}

.card-accordion-wrapper {
  padding: 15px;
  display: none;
}

.card-accordion-content-inner {
  background-color: #000;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 10px;
  position: relative;
  z-index: 1;

}

.card-accordion-2 .card-accordion-content-inner,
.card-accordion-3 .card-accordion-content-inner {
  background-color: #fff;
  color: #222;
}


#top .thumbnail li.card-accordion a::before,
#top .thumbnail li.card-accordion a::after {
    content: unset;
}

#top .thumbnail li.card-accordion .card-accordion-content-inner a {
  /* border-bottom: 1px solid #000; */
  text-decoration: underline;
  text-underline-offset: 3px;
  width: fit-content;
  /* line-height: 1.2; */
}

/* #top .thumbnail li.card-accordion.card-accordion-1 .card-accordion-content-inner a {
  border-bottom: 1px solid #fff;
} */

#top .thumbnail li.card-accordion .card-accordion-content-inner a:not(:first-child) {
  margin-top: 6px;
}

#top .thumbnail li.card-accordion .card-accordion-content-inner .external-link::after {
  content: '';
  width: 14px;
  height: 10px;
  background-image: url('../img/top/icon_external_link.svg');
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  transform: none;
  right: unset;
  bottom: 3px;
}

#top .thumbnail li.card-accordion.card-accordion-1 .card-accordion-content-inner .external-link::after {
  background-image: url('../img/top/icon_external_link_white.svg');
}

.thumbnail-hr {
  border-color: #333;
}

@media (min-width:768px) {
  #top .thumbnail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: start;
  }

  .card-accordion-content-inner {
    font-size: 1.6rem;
    padding: 16px 10px;
  }

  #top .thumbnail li.card-accordion .card-accordion-content-inner .external-link::after {
    width: 18px;
    height: 14px;
    bottom: 3px;
  }

  #top .thumbnail li.card-accordion .card-accordion-content-inner a:not(:first-child) {
    margin-top: 10px;
  }
}


/* Disclaimer */
.disclaimer {
  background-color: #f5f5f5;
  padding: 40px 0 15px;
  font-size: 1.2rem;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
}

.disclaimer .color-red {
  color: #dd1b1b;
}
.disclaimer .bold {
  font-weight: 700;
}

.disclaimer h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

.disclaimer h4 {
  font-weight: 700;
}

.disclaimer-content {
  margin-top: 30px;
}


.disclaimer-ttl-01 {
    position: relative;
    margin: 0 0 16px 0;
}
.disclaimer-ttl-01:before {
    position: absolute;
    top: 12px;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    background: #222222;
    z-index: 1;
}
.disclaimer-ttl-01-inner {
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 700;
}
.disclaimer-ttl-01-inner > span {
    display: inline-block;
    padding: 0 15px 0 0;
    background: #F5F5F5;
    position: relative;
    z-index: 2;
}
.disclaimer-list-01 > li {
    position: relative;
    padding: 0 0 0 1.5em;
}
.disclaimer-list-01 > li:before {
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 9px;
    height: 9px;
    content: "";
    background: #222222;
}

.disclaimer-list-01 > li + li {
    margin-top: 12px;
}

.disclaimer-list-01 > li.disclaimer-list-01-red {
    color: #DD1B1B;
    font-weight: bold;
}

.disclaimer-list-01 > li.disclaimer-list-01-red:before {
    background: #DD1B1B;
}

@media(min-width:768px) {
  .disclaimer {
    padding: 60px 0 80px;
    font-size: 1.4rem;
  }

  .disclaimer h2 {
    font-size: 2rem;
  }

  .disclaimer h3 {
    font-size: 1.6rem;
  }

  .disclaimer-content {
    margin-top: 40px;
  }

  .disclaimer-ttl-01 {
      margin: 0 0 20px 0;
  }

  .disclaimer-list-01 > li {
      position: relative;
      padding: 0 0 0 1.5em;
  }
  .disclaimer-list-01 > li:before {
      width: 11px;
      height: 11px;
  }
}