@charset "UTF-8";

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  color: #1c1c1c;
  font: 1rem normal "Noto Sans JP", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.05em;
  overflow-wrap: break-word;
  scroll-behavior: smooth;
}

input::-webkit-input-placeholder {
  color: rgba(28, 28, 28, 0.3);
}

input:-ms-input-placeholder {
  color: rgba(28, 28, 28, 0.3);
}

input::-moz-placeholder {
  color: rgba(28, 28, 28, 0.3);
}

textarea::-webkit-input-placeholder {
  color: rgba(28, 28, 28, 0.3);
}

textarea:-ms-input-placeholder {
  color: rgba(28, 28, 28, 0.3);
}

textarea::-moz-placeholder {
  color: rgba(28, 28, 28, 0.3);
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

*::-moz-selection {
  background: #EFEEEA;
}

*::selection {
  background: #EFEEEA;
}

main {
  display: block;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  display: block;
  cursor: pointer;
  opacity: 1;
  transition: 0.15s linear;
}

a:hover {
  opacity: 0.5;
  transition: .15s linear;
}

a.no-link {
  cursor: default;
}

a.no-link:hover {
  opacity: 1;
}

.button:hover {
  opacity: 0.5;
  transition: 0.15s;
}

@media screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}

@media screen and (max-width: 1100px) {
  .tab-none {
    display: none !important;
  }
}

@media screen and (min-width: 767px) {
  .pc-none {
    display: none !important;
  }
}

.mgb-21 {
  margin-bottom: 21px;
}

.mgb-60 {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .mgb-60 {
    margin-bottom: 40px;
  }
}

.mgb-64 {
  margin-bottom: 64px;
}

.fs-18 {
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .fs-18 {
    font-size: 17px;
  }
}

/*
breadcrumb

*/
.breadcrumb {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 0;
  color: #896621;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 17px 4%;
    font-size: 10px;
  }
}

.breadcrumb > .list {
  position: relative;
  width: auto;
  margin-left: 9px;
}

@media screen and (max-width: 767px) {
  .breadcrumb > .list {
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.breadcrumb > .list:first-child {
  margin-left: 0;
  padding-bottom: 2px;
}

.breadcrumb > .list:first-child:before {
  background-image: none;
  content: none;
}

.breadcrumb > .list:last-child {
  overflow: hidden;
}

.breadcrumb > .arrow {
  width: 4px;
  height: 7px;
  margin-left: 9px;
  vertical-align: middle;
}

/*
header
*/

@media screen and (max-width: 1076px) and (min-width: 768px) {
  .l-header > .title {
    width: 100px;
  }
  .l-header > .nav .btns {
    margin-left: 20px;
  }
  .l-header > .nav .btns > .btn {
    width: 90px;
    max-width: 90px;
  }
  .l-header > .nav > .lists > li {
    margin-left: 2%;
  }
}

.l-header > .nav > .lists {
  height: 70px;
}

.l-header > .nav > .lists > li {
  height: 100%;
  line-height: 70px;
}

@media screen and (min-width: 1201px) {
  .l-header > .nav > .lists > li {
    font-size: 13px;
  }
}

.l-header > .nav > .lists > li.drop {
  position: relative;
  text-align: right;
}

.l-header > .nav > .lists > li > #check {
  width: 0;
  height: 0;
  opacity: 0;
}

.l-header > .nav > .lists > li > #check:checked ~ #child {
  /* visibility: visible;
  transform: scale(1, 1);
  opacity: 1; */
  max-height: 500px;
}

.l-header > .nav > .lists > li > .trigger {
  padding-right: 15px;
}

.l-header > .nav > .lists > li > .trigger:hover {
  opacity: .5;
}

/* .l-header > .nav > .lists > li > .trigger::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 10px;
  transform: translate(0, -50%) rotate(90deg);
  background: url(../assets/images/common/arrow-right-white.png) no-repeat center/contain;
  content: "";
} */

.l-header > .nav > .lists > li > .lists-child {
  background-color: #fff;
  transition: .5s;
  color: #8C691E;
  max-height: 0;
  overflow: hidden;
}

.l-header > .nav > .lists > li > .lists-child > li {
  height: 32px;
  padding: 0 10px;
  line-height: 32px;
}

.l-header > .nav > .lists > li > .lists-child > li > a {
  display: flex;
  position: relative;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  padding-right: 15px;
  font-size: 11px;
}

.l-header > .nav > .lists > li > .lists-child > li > a::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  transform: translate(0, -50%);
  background: url(../images/common/arrow-right-red.png) no-repeat center/contain;
  content: "";
}

.l-header > .nav > .lists > li > .lists-child > li > a::before {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1;
  background-color: #EFE8DF;
  content: "";
}

.l-header > .nav > .lists > li > .lists-child > li:last-child > a::before {
  display: none;
}

.l-header .nav-sp {
  left: 0;
}

.l-header .nav-sp > .content > .list {
  padding: 18px 13px 35px;
}

.l-header .nav-sp > .content > .list > .item {
  margin-top: 0;
  padding: 18px 0 18px 18px;
}

.l-header .nav-sp > .content > .list > .item.drop-sp {
  margin-right: -13px;
  padding: 0 0 0 18px;
}

.l-header .nav-sp > .content > .list > .item.drop-sp::after {
  content: none;
}

.l-header .nav-sp > .content > .list > .item > .trigger {
  height: 50px;
  line-height: 50px;
}

.l-header .nav-sp > .content > .list > .item > .trigger::after {
  display: block;
  position: absolute;
  top: 20px;
  left: 0;
  width: 6.5px;
  height: 13px;
  transform: rotate(90deg);
  background: url(../images/common/pagenation-arrow-right.png) no-repeat 50%/contain;
  content: "";
}

.l-header .nav-sp > .content > .list > .item > .trigger.open:after {
  transform: rotate(-90deg);
}

.l-header .nav-sp > .content > .list > .item > .trigger.open + .lists-child {
  max-height: 500px;
  /* opacity: 1; */
}

.l-header .nav-sp > .content > .list > .item > .lists-child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: rgba(137, 102, 33, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: .5s;
}

.l-header .nav-sp > .content > .list > .item > .lists-child > li {
  width: 50%;
  height: 50px;
  border: 1px solid #fff;
  line-height: 50px;
}

.l-header .nav-sp > .content > .list > .item > .lists-child > li > a {
  font-size: 13px;
  text-align: center;
}

.l-header .nav-sp > .content > .list > .item > .lists-child > li.text-small a {
  font-size: 12.5px;
  letter-spacing: .5px;
}

/*
footer

*/
.l-footer > .logo {
  top: 7%;
}

@media screen and (max-width: 767px) {
  .l-footer > .logo {
    top: 33px;
  }
}

.l-footer > .main > .wrapper {
  max-width: none;
}

.l-footer > .main > .wrapper > .nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: (1fr)[4];
  grid-template-rows: repeat(4, 1fr);
  -ms-grid-columns: 164px 130px 100px;
  grid-template-columns: 164px 130px 100px;
  grid-auto-flow: column;
  max-width: 454px;
  gap: 0 30px;
}

@media screen and (max-width: 767px) {
  .l-footer > .main > .wrapper > .nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }
}

.l-footer > .main > .wrapper > .nav > .item {
  width: auto;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .l-footer > .main > .wrapper > .nav > .item {
    width: 50%;
  }
  .l-footer > .main > .wrapper > .nav > .item:last-of-type {
    height: 72px;
  }
}

/*
index

*/
.p-index > .kv > .kv_child > .text-area > .badge-area {
  display: flex;
  position: absolute;
  top: 16%;
  right: 7%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 17vw;
  height: 17vw;
  transform: rotate(10deg);
  border: 2px solid #fff;
  border-radius: 100%;
  color: #fff;
  font-size: 1.3vw;
  letter-spacing: 1px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-index > .kv > .kv_child > .text-area > .badge-area {
    top: 10%;
    width: 42vw;
    height: 42vw;
    font-size: 3vw;
  }
}

.p-index > .kv > .kv_child > .text-area > .badge-area > .top {
  padding: 1em;
  border-bottom: 2px dotted #fff;
}

.p-index > .kv > .kv_child > .text-area > .badge-area > .top > .text-lg {
  padding-left: .05em;
  font-size: 1.5em;
}

.p-index > .kv > .kv_child > .text-area > .badge-area > .bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  padding: 0 1em .5em;
}

.p-index > .kv > .kv_child > .text-area > .badge-area > .footer {
  padding-left: .05em;
  font-size: 0.55em;
}

.p-index > .kv > .kv_child > .text-area > .badge-area > .bottom .text-lg {
  padding-right: .05em;
  font-size: 3.5em;
  line-height: 1.2;
}

.p-index > .news-contents {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 34px 0 31px;
}

@media screen and (max-width: 767px) {
  .p-index > .news-contents {
    display: block;
    height: auto;
    padding: 10px 5%;
  }
}

.p-index > .news-contents > .title {
  margin-right: 2em;
  color: #8C691E;
  font-weight: 500;
  font-size: 22px;
  font-family: 'Crimson Text', sans-serif;
}

@media screen and (max-width: 767px) {
  .p-index > .news-contents > .title {
    display: none;
  }
}

.p-index > .news-contents > .item {
  flex: 1;
  overflow: hidden;
}

.p-index > .news-contents > .item > a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  height: 70px;
}

@media screen and (max-width: 767px) {
  .p-index > .news-contents > .item > a {
    flex-wrap: wrap;
    height: auto;
  }
}

.p-index > .news-contents > .item .date {
  margin-right: 1em;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 767px) {
  .p-index > .news-contents > .item .date {
    font-weight: 500;
    font-size: 12px;
  }
}

.p-index > .news-contents > .item .category {
  margin-right: 1.5em;
}

.p-index > .news-contents > .item .category > .text {
  width: 95px;
  height: 22px;
  background-color: #EFEEEA;
  color: #8C691E;
  font-weight: 700;
  font-size: 11px;
  line-height: 22px;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
}

.p-index > .news-contents > .item .content {
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .p-index > .news-contents > .item .content {
    width: 100%;
    margin-top: 5px;
  }
}

.p-index > .news-contents > .item .content > .text {
  padding-right: 30px;
  overflow: hidden;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .p-index > .news-contents > .item .content > .text {
    padding-right: 0;
    font-size: 13px;
  }
}

.p-index > .news-contents > .more-button {
  position: relative;
  width: 200px;
  height: 40px;
  margin-left: 2em;
  padding-right: 1em;
  border: 1px solid #8C691E;
  background-color: #ffffff;
  color: #8C691E;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 40px;
  letter-spacing: .04em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-index > .news-contents > .more-button {
    width: 180px;
    height: 35px;
    margin: 10px auto;
    font-size: 12px;
    line-height: 35px;
  }
}

.p-index > .news-contents > .more-button::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 6px;
  height: 12px;
  transform: translate(0, -50%);
  background-image: url(../images/common/pagenation-arrow-right.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.p-index > .top-contents {
  background: #F1EEE9;
}

.p-index > .top-contents > .movie {
  margin: 0 auto;
  padding: 50px 34px 0 31px;
  background: #eeeae3;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .movie {
    padding: 0;
  }
}

.p-index > .top-contents > .movie > .border {
  padding: 100px 0 120px;
  border-top: 1px solid #896621;
  border-right: 1px solid #896621;
  border-left: 1px solid #896621;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .movie > .border {
    padding: 30px 5% 100px;
    border: none;
  }
}

.p-index > .top-contents > .movie > .border > .title {
  z-index: 0;
  position: relative;
  width: 100%;
  margin: 50px auto 60px;
  color: #8C691E;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .movie > .border > .title {
    margin: 80px auto 60px;
    font-size: 18px;
  }
}

.p-index > .top-contents > .movie > .border > .title::before {
  z-index: -1;
  position: absolute;
  top: -60px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  content: "MOVIE";
  color: rgba(137, 102, 33, 0.25);
  font-weight: 500;
  font-size: 100px;
  line-height: 1;
  font-family: 'Crimson Text', sans-serif;
  letter-spacing: -2px;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .movie > .border > .title::before {
    top: -30px;
    font-size: 50px;
  }
}

.p-index > .top-contents > .movie > .border .text {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
}

.p-index > .top-contents > .movie > .border .note {
  margin: 10px auto 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .movie > .border .note {
    font-size: 15px;
  }
}

.p-index > .top-contents > .about {
  margin: 0 34px 0 31px;
  padding: 120px 40px;
  border-top: none;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .about.pre {
    padding-top: 40px;
  }
}

.p-index > .top-contents > .about > .wrapper {
  display: block;
}

.p-index > .top-contents > .about > .wrapper > .title {
  z-index: 0;
  position: relative;
  width: 100%;
  margin: 50px auto 60px;
  color: #8C691E;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .about > .wrapper > .title {
    margin: 80px auto;
    font-size: 18px;
  }
}

.p-index > .top-contents > .about > .wrapper > .title::before {
  z-index: -1;
  position: absolute;
  top: -60px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  content: "OUR STRENGTHS";
  color: rgba(137, 102, 33, 0.15);
  font-weight: 500;
  font-size: 100px;
  line-height: 1;
  font-family: 'Crimson Text', sans-serif;
  letter-spacing: -2px;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .about > .wrapper > .title::before {
    top: -45px;
    font-size: 50px;
  }
}

.p-index > .top-contents > .about > .wrapper > .content {
  width: auto;
  margin: auto;
  padding-top: 0;
  text-align: center;
}

.p-index > .top-contents > .about > .wrapper > .content > .title {
  line-height: 1.5;
}

/* ↓Phase01修正箇所↓ */
.p-index > .top-contents > .about > .items {
  max-width: none;
  gap: 0 2%;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .about > .items {
    margin: 30px auto 0;
    gap: 10px;
  }
}

.p-index > .top-contents > .about > .items > .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 25vw;
  margin: 0;
  color: #222;
  font-size: 1vw;
  letter-spacing: 1px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0px 4px 21px -1px #00000014;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .about > .items > .item {
    gap: 20px;
    flex-direction: row;
    justify-content: flex-start;
    padding: 10px 20px;
    width: 100%;
  }
}

.p-index > .top-contents > .about > .items > .item .top, .p-index > .top-contents > .about > .items > .item .bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.p-index > .top-contents > .about > .items > .item .top {
  padding-block: 2.75vw 1vw;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .about > .items > .item .top {
    padding: 0;
  }
}

.p-index > .top-contents > .about > .items > .item .bottom {
  padding-bottom: 2.25vw;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .about > .items > .item .bottom {
    align-items: flex-start;
    padding-bottom: 0;
  }
}

.p-index > .top-contents > .about > .items > .item:nth-of-type(2) img {
  margin-right: 1vw;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .about > .items > .item:nth-of-type(2) img {
    margin-right: 0;
  }
}

.p-index > .top-contents > .about > .items > .item img {
  width: 6.2vw;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .about > .items > .item img {
    width: 15.5vw;
  }
}

.p-index > .top-contents > .about > .items > .item .text {
  font-weight: 500;
  font-size: 1.35vw;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .about > .items > .item .text {
    font-size: 17px;
    text-align: left;
    letter-spacing: 0;
  }
}

.p-index > .top-contents > .about > .items > .item .number {
  color: #C4B89F;
  font-size: 1vw;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .about > .items > .item .number {
    font-size: 12px;
  }
}

/* .p-index > .top-contents > .about > .items > .item .text span {
  display: block;
  background: linear-gradient(0deg, rgba(137, 102, 33, 0.1), 0%, rgba(137, 102, 33, 0.1), 40%, transparent 40%);
  font-weight: 700;
  font-size: 1.2em;
}

.p-index > .top-contents > .about > .items > .item .text strong {
  padding: 0 2px;
  font-weight: 700;
  font-size: 1.2em;
} */

/* .p-index > .top-contents > .about > .note {
  margin: 50px auto 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .about > .note {
    font-size: 15px;
  }
} */
/* ↑Phase01修正箇所↑ */

.p-index > .top-contents > .track-record > .border {
  width: calc(100% - 65px);
  margin: 0 34px 0 31px;
  padding: 0 40px 150px;
  border-right: 1px solid #896621;
  border-left: 1px solid #896621;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .track-record > .border {
    width: auto;
    margin: 0 0 80px;
    padding: 0 5%;
    border: none;
  }
}

.p-index > .top-contents > .track-record > .border > .lists {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  gap: 60px 4%;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .track-record > .border > .lists {
    flex-direction: column;
    gap: 30px 0;
  }
}

.p-index > .top-contents > .track-record > .border > .lists > .item {
  position: relative;
  width: 48%;
  color: #8C691E;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .track-record > .border > .lists > .item {
    width: 100%;
  }
}

.p-index > .top-contents > .track-record > .border > .lists > .item > .title {
  height: 55px;
  background: url(../images/funds/triangle-is-selected.png) no-repeat left 50% bottom 10px/13px;
  font-size: 22px;
}

.p-index > .top-contents > .track-record > .border > .lists > .item > .amount {
  padding: 0 .5em;
  background: #ffffff;
  font-size: 28px;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .track-record > .border > .lists > .item > .amount {
    font-size: 18px;
  }
}

.p-index > .top-contents > .track-record > .border > .lists > .item > .amount > span {
  padding-right: 5px;
  font-weight: 500;
  font-size: 2.1em;
  font-family: 'Crimson Text', sans-serif;
}

.p-index > .top-contents > .track-record > .border > .lists > .item > .note {
  margin-top: 10px;
  color: #1C1C1C;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .track-record > .border > .lists > .item > .note {
    font-size: 15px;
  }
}

.p-index > .top-contents > .fand {
  background: #EFEEEA;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .fand {
    margin-bottom: 0;
  }
}

.p-index > .top-contents > .fand > .border {
  padding: 100px 20px;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .fand > .border {
    margin: 0;
    padding: 0;
  }
}

.p-index > .top-contents > .fand > .border > .wrapper {
  padding: 0;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .fand > .border > .wrapper {
    margin-bottom: 0;
    padding: 60px 3.2% 100px;
  }
}

.p-index > .top-contents > .fand > .border > .wrapper > .title {
  width: auto;
  margin: 50px auto 60px;
  text-align: center;
}

.p-index > .top-contents > .risk {
  background: #ffffff;
}

.p-index > .top-contents > .risk > .border {
  margin: 0 34px 0 31px;
  padding: 100px 20px 145px;
  border-right: 1px solid #896621;
  border-left: 1px solid #896621;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .risk > .border {
    width: auto;
    margin: 0;
    padding: 60px 5% 100px;
    border: none;
  }
}

.p-index > .top-contents > .risk > .border > .title {
  z-index: 0;
  position: relative;
  top: 0;
  width: auto;
  margin: 50px auto 60px;
  color: #8C691E;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .risk > .border > .title {
    margin-bottom: 80px;
    font-size: 18px;
  }
}

.p-index > .top-contents > .risk > .border > .title::before {
  z-index: -1;
  position: absolute;
  top: -55px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  content: "RISK MANAGEMENT";
  color: rgba(137, 102, 33, 0.25);
  font-weight: 500;
  font-size: 90px;
  line-height: 1;
  font-family: 'Crimson Text', sans-serif;
  letter-spacing: -2px;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .risk > .border > .title::before {
    top: -45px;
    font-size: 50px;
  }
}

.p-index > .top-contents > .risk > .border > .lists {
  display: flex;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .risk > .border > .lists {
    flex-direction: column;
    gap: 50px 0;
  }
}

.p-index > .top-contents > .risk > .border > .lists > .list {
  width: calc(100% / 3);
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .risk > .border > .lists > .list {
    width: 100% !important;
    margin: 0 !important;
  }
}

.p-index > .top-contents > .risk > .border > .lists > .list:nth-of-type(2) {
  width: 35%;
  margin: 0 3%;
}

.p-index > .top-contents > .risk > .border > .lists > .list > .title-group {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .risk > .border > .lists > .list > .title-group {
    margin-bottom: 20px;
  }
}

.p-index > .top-contents > .risk > .border > .lists > .list > .title-group p {
  position: relative;
  padding: .5em .5em .5em 2em;
  background-color: rgba(225, 225, 225, 0.5);
  color: #8C691E;
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .risk > .border > .lists > .list > .title-group p {
    font-size: 16px;
  }
}

.p-index > .top-contents > .risk > .border > .lists > .list > .title-group p:before {
  display: block;
  position: absolute;
  top: 50%;
  left: .5em;
  width: 20px;
  height: 20px;
  transform: translate(0, -50%);
  content: "";
}

.p-index > .top-contents > .risk > .border > .lists > .list > .title-group .title {
  border-bottom: none;
  background: #EFEEEA;
}

.p-index > .top-contents > .risk > .border > .lists > .list > .title-group .title:before {
  background: url(../images/index/icon-risk.svg) no-repeat center/contain;
}

.p-index > .top-contents > .risk > .border > .lists > .list > .title-group .measures:before {
  background: url(../images/index/icon-measures.svg) no-repeat center/contain;
}

.p-index > .top-contents > .risk > .border > .lists > .list > .title-group .measures span {
  position: relative;
  padding-right: .75em;
}

.p-index > .top-contents > .risk > .border > .lists > .list > .title-group .measures span:after {
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  margin: 0 2px;
  transform: translate(0, -50%);
  border-width: 5px 0 5px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #135C0D;
  content: "";
}

.p-index > .top-contents > .risk > .border > .lists > .list > .content {
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 10%;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .risk > .border > .lists > .list > .content {
    margin-bottom: 20px;
    padding: 0 15px;
  }
}

.p-index > .top-contents > .risk > .border > .lists > .list > img {
  width: 85%;
  margin: auto;
}

.p-index > .top-contents > .voice {
  background: #F1EEE9;
}

.p-index > .top-contents > .voice > .border {
  margin: 0 34px 0 31px;
  padding: 100px 20px 145px;
  border-right: 1px solid #896621;
  border-left: 1px solid #896621;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .voice > .border {
    width: auto;
    margin: 0;
    padding: 60px 5% 100px;
    border: none;
  }
}

.p-index > .top-contents > .voice > .border > .title {
  z-index: 0;
  position: relative;
  width: auto;
  margin: 50px auto 60px;
  color: #8C691E;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .voice > .border > .title {
    font-size: 18px;
  }
}

.p-index > .top-contents > .voice > .border > .title::before {
  z-index: -1;
  position: absolute;
  top: -85px;
  left: 50%;
  transform: translateX(-50%);
  content: "VOICE";
  color: rgba(137, 102, 33, 0.15);
  font-weight: 500;
  font-size: 100px;
  font-family: 'Crimson Text', sans-serif;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .voice > .border > .title::before {
    top: -45px;
    font-size: 55px;
  }
}

.p-index > .top-contents > .voice > .border > .lists {
  display: flex;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  gap: 0 6%;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .voice > .border > .lists {
    flex-direction: column;
    gap: 50px 0;
  }
}

.p-index > .top-contents > .voice > .border > .lists > .list {
  display: flex;
  flex-direction: column;
  width: calc(100% / 3);
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .voice > .border > .lists > .list {
    width: 100%;
  }
}

.p-index > .top-contents > .voice > .border > .lists > .list > .item-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.p-index > .top-contents > .voice > .border > .lists > .list > .item-header > .thumnail {
  width: 7vw;
  max-width: 110px;
  height: 7vw;
  max-height: 110px;
  margin-bottom: 3em;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .voice > .border > .lists > .list > .item-header > .thumnail {
    width: 110px;
    height: 110px;
  }
}

.p-index > .top-contents > .voice > .border > .lists > .list > .item-header > .thumnail > img {
  height: 100%;
}

.p-index > .top-contents > .voice > .border > .lists > .list > .item-header > .data-area {
  margin-bottom: 30px;
}

.p-index > .top-contents > .voice > .border > .lists > .list > .item-header > .data-area > .data {
  margin-bottom: 10px;
  color: #8C691E;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .voice > .border > .lists > .list > .item-header > .data-area > .data {
    font-size: 18px;
  }
}

.p-index > .top-contents > .voice > .border > .lists > .list > .item-header > .data-area .investment {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 4px 10px;
  background: #EFEEEA;
}

.p-index > .top-contents > .voice > .border > .lists > .list > .item-header > .data-area .investment > .title {
  display: inline-block;
  margin-right: 1em;
  padding: 2px .5em;
  background: #8C691E;
  color: #EFEEEA;
  font-weight: 700;
  font-size: 12px;
}

.p-index > .top-contents > .voice > .border > .lists > .list > .item-header > .data-area .investment > .amount {
  color: #8C691E;
  font-size: 18px;
}

.p-index > .top-contents > .voice > .border > .lists > .list > .item-header > .data-area .investment > .amount > span {
  padding-right: 3px;
  font-weight: 500;
  font-size: 20px;
  font-family: 'Crimson Text', sans-serif;
}

.p-index > .top-contents > .voice > .border > .lists > .list > .item-body {
  position: relative;
  flex: 1;
  background: #ffffff;
}

.p-index > .top-contents > .voice > .border > .lists > .list > .item-body:before, .p-index > .top-contents > .voice > .border > .lists > .list > .item-body:after {
  display: block;
  position: absolute;
  width: 30px;
  height: 60px;
  content: "";
}

.p-index > .top-contents > .voice > .border > .lists > .list > .item-body:before {
  top: 0;
  left: 0;
  border-top: 1px solid #8C691E;
  border-left: 1px solid #8C691E;
}

.p-index > .top-contents > .voice > .border > .lists > .list > .item-body:after {
  right: 0;
  bottom: 0;
  border-right: 1px solid #8C691E;
  border-bottom: 1px solid #8C691E;
}

.p-index > .top-contents > .voice > .border > .lists > .list > .item-body > .content {
  padding: 2em;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 10%;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  text-justify: inter-ideograph;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .voice > .border > .lists > .list > .item-body > .content {
    font-size: 15px;
  }
}

.p-index > .top-contents > .seminar {
  padding-bottom: 34px;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .seminar {
    padding-bottom: 0;
  }
}

.p-index > .top-contents > .seminar > .border {
  padding: 100px 20px;
  border-bottom: 1px solid #896621;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .seminar > .border {
    margin-bottom: 0 auto;
    padding: 60px 5% 80px;
    border-bottom: none;
  }
}

.p-index > .top-contents > .seminar > .border > .title {
  top: 0;
  width: auto;
  margin: 50px auto 60px;
}

.p-index > .top-contents > .seminar > .border > .title::before {
  top: -25px;
  width: auto;
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .seminar > .border > .title::before {
    top: -15px;
    font-size: 55px;
    letter-spacing: 5%;
  }
}

.p-index > .top-contents > .seminar > .border > .item > .wrapper > .description > .item.remarks {
  height: auto;
}

.p-index > .top-contents > .seminar > .border > .item > .wrapper > .description > .item.remarks > .content {
  line-height: 1.7;
}

.p-index > .top-contents .space-end {
  padding-bottom: 34px;
  background: #F1EEE9;
}

.p-index > .top-contents .space-end > .border {
  margin: 0 34px 0 31px;
  padding-bottom: 1px;
  border-right: 1px solid #896621;
  border-bottom: 1px solid #896621;
  border-left: 1px solid #896621;
}

.p-index > .top-contents > .seminar > .border > .l-seminar__pickup {
  gap: 4%
}

@media screen and (max-width: 767px) {
  .p-index > .top-contents > .seminar > .border > .l-seminar__pickup {
    gap: 60px;
  }
}

/*
contents parts

*/
.p-static {
  position: relative;
  background-color: #EFEEEA;
}

.p-static > .wrapper {
  width: 100%;
  padding: 28px 34px 0 31px;
}

@media screen and (max-width: 767px) {
  .p-static > .wrapper {
    padding: 0;
  }
}

.p-static > .wrapper > .headline {
  padding: 144px 126px 96px 102px;
  border-top: 1px solid #896621;
  border-right: 1px solid #896621;
  border-left: 1px solid #896621;
}

@media screen and (max-width: 767px) {
  .p-static > .wrapper > .headline {
    padding: 66px 3.15% 41px;
    border: none;
  }
}

.p-static > .wrapper > .headline > .title {
  z-index: 0;
  position: relative;
  color: #8C691E;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: .06em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-static > .wrapper > .headline > .title {
    font-size: 18px;
  }
}

.p-static > .wrapper > .headline > .title:before {
  z-index: -1;
  position: absolute;
  top: -85px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  color: rgba(137, 102, 33, 0.15);
  font-weight: 500;
  font-size: 100px;
  font-family: 'Crimson Text', sans-serif;
}

@media screen and (max-width: 1100px) {
  .p-static > .wrapper > .headline > .title:before {
    font-size: 90px;
  }
}

@media screen and (max-width: 767px) {
  .p-static > .wrapper > .headline > .title:before {
    top: -40px;
    font-size: 55px;
  }
}

.p-static > .main-wrapper {
  padding: 0 34px 0 31px;
  background-color: #EFEEEA;
}

@media screen and (max-width: 767px) {
  .p-static > .main-wrapper {
    padding: 0;
  }
}

.p-static > .main-wrapper > .contents {
  padding: 126px 90px 161px;
  border-right: 1px solid #896621;
  border-bottom: 1px solid #896621;
  border-left: 1px solid #896621;
}

@media screen and (max-width: 767px) {
  .p-static > .main-wrapper > .contents {
    padding: 50px 3.2% 0;
    border: none;
  }
}

.p-static .c-sub-title {
  position: relative;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #8C691E;
  font: 22px bold, Noto Sans JP, sans-serif;
  font-weight: bolder;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .p-static .c-sub-title {
    font-size: 20px;
  }
}

.p-static .c-sub-title:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  background: #8C691E;
  content: "";
}

.p-static .c-accent-title {
  position: relative;
  margin-bottom: 10px;
  padding-left: 24px;
  color: #896621;
  font: 16px bold, Noto Sans JP, sans-serif;
  font-weight: bolder;
  text-align: left;
}

.p-static .c-accent-title:before {
  position: absolute;
  top: 54%;
  left: 0;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: #896621;
  content: "";
}

.p-static .c-text {
  font-size: 15px;
  line-height: 1.8;
  &:not(:last-child){
    margin-bottom: 30px;
  }
}

.p-static .c-img-wrapper {
  width: 80%;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .p-static .c-img-wrapper {
    width: 100%;
  }
}

/* リンクバナー */
.about-link {
  display: flex;
  margin-top: 30px;
  gap: 0 2%;
}

@media screen and (max-width: 767px) {
  .about-link {
    flex-direction: column;
    margin: 30px 3.2% 0;
    gap: 15px 0;
  }
}

.about-link > li {
  display: flex;
  position: relative;
  width: calc(100% / 3);
  background: #fff;
}

@media screen and (max-width: 767px) {
  .about-link > li {
    width: 100%;
  }
}

.about-link > li:after {
  position: absolute;
  right: 8px;
  bottom: 8px;
  border-width: 0 0 18px 18px;
  border-style: solid;
  border-color: transparent transparent #8C691E transparent;
  content: "";
}

@media screen and (max-width: 767px) {
  .about-link > li:after {
    border-width: 0 0 15px 15px;
  }
}

.about-link > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 5%;
  color: #8C691E;
  font: 18px bold, Noto Sans JP, sans-serif;
  font-weight: bolder;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .about-link > li > a {
    padding: 18px;
    border: 1px solid rgba(137, 102, 33, 0.25);
    font-size: 16px;
  }
}

/* スクロール */
.scroll-wrapper {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
}

.scroll-top {
  display: block;
  position: relative;
  margin: 10px 0 0 auto;
  padding-left: 12px;
  border-bottom: 1px solid;
  color: #255398;
  font-weight: 500;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Crimson Text', sans-serif;
}

@media screen and (max-width: 767px) {
  .scroll-top {
    margin-right: auto;
    font-size: 13px;
  }
}

.scroll-top:before {
  position: absolute;
  top: 42%;
  left: 0;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-width: 0 5px 8px 5px;
  border-style: solid;
  border-color: transparent transparent #255398 transparent;
  content: "";
}

.scroll-top:hover {
  opacity: 0.5;
  transition: .15s linear;
}

@media screen and (max-width: 767px) {
  .p-introduction > .main-wrapper > .contents .scroll-area,
  .p-strengths > .main-wrapper > .contents .scroll-area,
  .p-yield > .main-wrapper > .contents .scroll-area {
    overflow-x: scroll;
    overflow-y: hidden;
  }
}

.p-introduction > .main-wrapper > .contents .scroll-area > .menu,
.p-strengths > .main-wrapper > .contents .scroll-area > .menu,
.p-yield > .main-wrapper > .contents .scroll-area > .menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  height: 83px;
  margin: 0 auto;
  gap: 0 20px;
}

@media screen and (max-width: 767px) {
  .p-introduction > .main-wrapper > .contents .scroll-area > .menu,
  .p-strengths > .main-wrapper > .contents .scroll-area > .menu,
  .p-yield > .main-wrapper > .contents .scroll-area > .menu {
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0 10px;
  }
}

.p-introduction > .main-wrapper > .contents .scroll-area > .menu > .item,
.p-strengths > .main-wrapper > .contents .scroll-area > .menu > .item,
.p-yield > .main-wrapper > .contents .scroll-area > .menu > .item {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 70px;
  padding-top: 15px;
  padding-bottom: 20px;
  background: #fff url(../images/funds/triangle.png) no-repeat left 50% bottom 0px/18.3px 18.3px;
  color: #8C691E;
  font: 16px bold, Noto Sans JP, sans-serif;
  font-weight: bolder;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
}

@media screen and (max-width: 1100px) {
  .p-introduction > .main-wrapper > .contents .scroll-area > .menu > .item,
  .p-strengths > .main-wrapper > .contents .scroll-area > .menu > .item,
  .p-yield > .main-wrapper > .contents .scroll-area > .menu > .item {
    padding-top: 11px;
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .p-introduction > .main-wrapper > .contents .scroll-area > .menu > .item,
  .p-strengths > .main-wrapper > .contents .scroll-area > .menu > .item,
  .p-yield > .main-wrapper > .contents .scroll-area > .menu > .item {
    height: 50px;
    background-position: left 50% bottom 0px;
    background-size: 14.1px 14.1px;
    font-size: 12px;
  }
}

.p-introduction > .main-wrapper > .contents .scroll-area > .menu > .item.is-selected,
.p-strengths > .main-wrapper > .contents .scroll-area > .menu > .item.is-selected,
.p-yield > .main-wrapper > .contents .scroll-area > .menu > .item.is-selected {
  height: 83px;
  padding-top: 5px;
  border-top: 5px solid #8C691E;
  background-image: url(../images/funds/triangle-is-selected.png);
}

@media screen and (max-width: 767px) {
  .p-introduction > .main-wrapper > .contents .scroll-area > .menu > .item.is-selected,
  .p-strengths > .main-wrapper > .contents .scroll-area > .menu > .item.is-selected,
  .p-yield > .main-wrapper > .contents .scroll-area > .menu > .item.is-selected {
    height: 56px;
    border-top: 3px solid #8C691E;
  }
}

/* 動画 */
.movie-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 800px;
  margin: auto;
  background: url(../images/index/thumbnail.png) no-repeat center/100%;
  cursor: pointer;
}

.movie-wrap:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 92px;
  height: 64px;
  transform: translate(-50%, -50%);
  background: url(../images/index/play.png) no-repeat center/100%;
  content: "";
  opacity: .8;
  transition: all 0.5s;
}

@media screen and (max-width: 767px) {
  .movie-wrap:before {
    width: 46px;
    height: 32px;
  }
}

.movie-wrap:hover:before {
  opacity: 1;
}

.movie-wrap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

/*
introduction

*/
.p-introduction > .wrapper > .headline > .title:before {
  content: "INTRODUCTION";
}

@media screen and (max-width: 767px) {
  .p-introduction > .wrapper > .headline > .title:before {
    font-size: 50px;
    letter-spacing: -2px;
  }
}

@media screen and (max-width: 767px) {
  .p-introduction > .main-wrapper > .contents .scroll-area > .menu {
    width: 630px;
  }
}

.p-introduction > .main-wrapper > .contents .scroll-area > .menu > .item {
  width: calc(100% / 4);
}

.p-introduction > .main-wrapper > .contents > .wrapper {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 80px 90px 100px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .p-introduction > .main-wrapper > .contents > .wrapper {
    margin: 0 auto;
    padding: 0;
  }
}

.p-introduction > .main-wrapper > .contents > .wrapper .introduction-item {
  display: none;
  width: 100%;
  max-width: "1200px";
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .p-introduction > .main-wrapper > .contents > .wrapper .introduction-item {
    padding: 38px 3.9% 70px;
  }
}

.p-introduction > .main-wrapper > .contents > .wrapper .introduction-item.is-selected {
  display: block;
}

.p-introduction > .main-wrapper > .contents > .wrapper .introduction-item#movie .c-text {
  text-align: center;
}

.p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents:not(:last-of-type) {
  margin-bottom: 80px;
  padding-bottom: 80px;
  background: url(../images/funds/border.png) no-repeat bottom/1200px 2px;
}

.p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents .about-list {
  display: inline-block;
  position: relative;
  left: 50%;
  margin-top: 30px;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents .about-list {
    display: block;
  }
}

.p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents .about-list > li {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents .about-list > li {
    margin-bottom: 20px;
  }
}

.p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents .about-list > li > span {
  display: inline-block;
  position: relative;
  width: 160px;
  font-weight: 700;
}

.p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents .about-list > li > span:after {
  position: absolute;
  right: 5px;
  content: "：";
}

@media screen and (max-width: 767px) {
  .p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents .about-list > li > span:after {
    position: static;
  }
}

@media screen and (max-width: 767px) {
  .p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents .about-list > li > span {
    display: block;
  }
}

.p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents-child {
  margin-top: 50px;
}

.p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents-child > .title {
  display: inline-block;
  position: relative;
  left: 50%;
  margin-bottom: 30px;
  padding-bottom: 4px;
  transform: translateX(-50%);
  border-bottom: 2px solid #8C691E;
  color: #8C691E;
  font: 20px bold, Noto Sans JP, sans-serif;
  font-weight: bolder;
}

@media screen and (max-width: 767px) {
  .p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents-child > .title {
    margin-bottom: 20px;
    font-size: 16px;
  }
}

.p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents .title-group {
  display: flex;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents .title-group {
    flex-direction: column;
  }
}

.p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents .title-group p {
  font-feature-settings: "palt";
  position: relative;
  flex: 1;
  padding: .5em .5em .5em 2.5em;
  background-color: #EFEEEA;
  color: #8C691E;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents .title-group p {
    font-size: 15px;
  }
}

.p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents .title-group p:before {
  display: block;
  position: absolute;
  top: 50%;
  left: 1em;
  width: 20px;
  height: 20px;
  transform: translate(0, -50%);
  content: "";
}

@media screen and (max-width: 767px) {
  .p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents .title-group p:before {
    left: .5em;
  }
}

.p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents .title-group .title {
  background: rgba(137, 37, 31, 0.1);
}

.p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents .title-group .title:before {
  background: url(../images/index/icon-risk.svg) no-repeat center/contain;
}

.p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents .title-group .measures:before {
  background: url(../images/index/icon-measures.svg) no-repeat center/contain;
}

.p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents .title-group .measures span {
  position: relative;
  padding-right: 1em;
}

.p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents .title-group .measures span:after {
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  margin-left: 4px;
  transform: translate(0, -50%);
  border-width: 5px 0 5px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #896621;
  content: "";
}

@media screen and (max-width: 767px) {
  .p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction-contents .title-group .measures span:after {
    top: 54%;
    border-width: 4px 0 4px 6px;
  }
}

.p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction_flex_contents {
  display: flex;
  gap: 0 5%;
}

@media screen and (max-width: 767px) {
  .p-introduction > .main-wrapper > .contents > .wrapper .introduction-item .introduction_flex_contents {
    display: block;
  }
}

/*
use flow

*/
.p-flow {
  position: relative;
  background-color: #EFEEEA;
}

.p-flow > .wrapper > .headline > .title:before {
  content: "USE FLOW";
}

.p-flow > .main-wrapper > .contents .content {
  width: 100%;
  margin: 0 auto;
  padding-block: 80px 100px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .p-flow > .main-wrapper > .contents .content {
    margin: 0 auto;
    padding-block: 38px 70px;
  }
}

.p-flow > .main-wrapper > .contents .flow-image {
  display: flex;
  position: relative;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 100px;
  gap: 0 5%;
}

@media screen and (max-width: 767px) {
  .p-flow > .main-wrapper > .contents .flow-image {
    margin-bottom: 60px;
    gap: 0 3%;
  }
}

.p-flow > .main-wrapper > .contents .flow-image figure {
  position: relative;
  width: calc(100% / 5);
  margin: 0;
}

.p-flow > .main-wrapper > .contents .flow-image figure:not(:last-of-type):after {
  position: absolute;
  top: 5vw;
  right: -20%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%) rotate(-90deg);
  background: url(../images/funds/triangle-is-selected.png) no-repeat center/20px;
  content: "";
}

@media screen and (max-width: 767px) {
  .p-flow > .main-wrapper > .contents .flow-image figure:not(:last-of-type):after {
    top: 7.5vw;
    right: -15%;
    width: 10px;
    height: 10px;
    background-size: 10px;
  }
}

.p-flow > .main-wrapper > .contents .flow-image figure > figcaption {
  margin-top: 10px;
  color: #8C691E;
  font: 16px bold, Noto Sans JP, sans-serif;
  font-weight: bolder;
  letter-spacing: -.1px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-flow > .main-wrapper > .contents .flow-image figure > figcaption {
    font-weight: normal;
    font-size: 11px;
  }
}

.p-flow > .main-wrapper > .contents .flow-list {
  counter-reset: num;
}

.p-flow > .main-wrapper > .contents .flow-list-item {
  position: relative;
  margin-top: 50px;
  padding: 25px 35px;
  background: #EFEEEA;
}

.p-flow > .main-wrapper > .contents .flow-list-item:before, .p-flow > .main-wrapper > .contents .flow-list-item:after {
  position: absolute;
  left: 60px;
  width: 1px;
  background: #896621;
  content: "";
}

@media screen and (max-width: 767px) {
  .p-flow > .main-wrapper > .contents .flow-list-item:before, .p-flow > .main-wrapper > .contents .flow-list-item:after {
    left: 40px;
  }
}

.p-flow > .main-wrapper > .contents .flow-list-item:before {
  top: -50px;
  height: 100px;
}

.p-flow > .main-wrapper > .contents .flow-list-item:after {
  top: 90px;
  bottom: 0;
}

.p-flow > .main-wrapper > .contents .flow-list-item:first-of-type:before {
  content: none;
}

.p-flow > .main-wrapper > .contents .flow-list-item:last-of-type:after {
  content: none;
}

.p-flow > .main-wrapper > .contents .flow-list-item-num {
  display: block;
  z-index: 2;
  position: absolute;
  top: 30px;
  left: 20px;
  width: 80px;
  height: 80px;
  border: 1px solid #896621;
  border-radius: 50%;
  background: #fff;
  font-size: 15px;
}

@media screen and (max-width: 767px) {
  .p-flow > .main-wrapper > .contents .flow-list-item-num {
    top: 30px;
    left: 10px;
    width: 60px;
    height: 60px;
    font-size: 12px;
  }
}

.p-flow > .main-wrapper > .contents .flow-list-item-num:before, .p-flow > .main-wrapper > .contents .flow-list-item-num:after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #8C691E;
  font-weight: 500;
  font-family: 'Crimson Text', sans-serif;
}

.p-flow > .main-wrapper > .contents .flow-list-item-num:before {
  top: 15px;
  content: "STEP";
}

@media screen and (max-width: 767px) {
  .p-flow > .main-wrapper > .contents .flow-list-item-num:before {
    top: 10px;
  }
}

.p-flow > .main-wrapper > .contents .flow-list-item-num:after {
  top: 25px;
  content: counter(num, decimal-leading-zero);
  font-size: 30px;
  counter-increment: num;
}

@media screen and (max-width: 767px) {
  .p-flow > .main-wrapper > .contents .flow-list-item-num:after {
    top: 22px;
    font-size: 20px;
  }
}

.p-flow > .main-wrapper > .contents .flow-list-item-inner {
  padding-left: 90px;
}

@media screen and (max-width: 767px) {
  .p-flow > .main-wrapper > .contents .flow-list-item-inner {
    padding-left: 50px;
  }
}

.p-flow > .main-wrapper > .contents .flow-list-item .title {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 3px dotted #8C691E;
  color: #8C691E;
  font: 20px bold, Noto Sans JP, sans-serif;
  font-weight: bolder;
}

@media screen and (max-width: 767px) {
  .p-flow > .main-wrapper > .contents .flow-list-item .title {
    font-size: 16px;
  }
}

.p-flow > .main-wrapper > .contents .flow-list-item .sub-title {
  margin: 40px 0 10px;
  color: #8C691E;
  font: 15px bold, Noto Sans JP, sans-serif;
  font-weight: bolder;
}

.p-flow > .main-wrapper > .contents .flow-list-item .text {
  font-size: 15px;
  line-height: 1.8;
}

.p-flow > .main-wrapper > .contents .flow-list-item .description {
  margin: 20px 0;
  padding: 10px 20px 15px;
  background: #fff;
}

.p-flow > .main-wrapper > .contents .flow-list-item .description li {
  position: relative;
  padding: 5px 0 0 15px;
  font-size: 13px;
  line-height: 1.5;
}

.p-flow > .main-wrapper > .contents .flow-list-item .description li:before {
  position: absolute;
  top: 4px;
  left: 0;
  content: "※";
}

@media screen and (max-width: 767px) {
  .p-flow > .main-wrapper > .contents .flow-list-item .description li {
    padding: 5px 0 5px 15px;
  }
}


/*
features

*/
.p-features > .wrapper > .headline > .title:before {
    content: "FEATURES";
}

@media screen and (max-width: 1100px) {
    .p-features > .wrapper > .headline > .title:before {
        letter-spacing: -2px;
    }
}

.p-features > .main-wrapper > .contents .scroll-area > .menu > .item {
    width: calc(100% / 2);
}

.p-features > .main-wrapper > .contents > .wrapper {
    width: 100%;
    margin: 0 auto;
    padding-block: 80px 100px;
    background-color: #fff;
}

@media screen and (max-width: 1100px) {
    .p-features > .main-wrapper > .contents > .wrapper {
        padding-block: 60px 80px;
    }
}

@media screen and (max-width: 767px) {
    .p-features > .main-wrapper > .contents > .wrapper {
        margin: 0 auto;
        padding-block: 0;
    }
}

.p-features > .main-wrapper > .contents > .wrapper .features-item {
    display: none;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .p-features > .main-wrapper > .contents > .wrapper .features-item {
        padding-block: 38px 70px;
    }
}

.p-features > .main-wrapper > .contents > .wrapper .features-item.selected {
    display: block;
}

.p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents:not(:last-of-type) {
    margin-bottom: 80px;
    padding-bottom: 80px;
    background: url(../images/funds/border.png) no-repeat bottom/1200px 2px;
}

.p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison > div {
    width: 48%;
}

.p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison-issue .title {
    background: #E9E2D4;
    color: #8C691E;
}

@media screen and (max-width: 767px) {
    .p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison-issue .title {
        padding: 10px 0;
    }
}

.p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison-issue li:before, .p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison-issue li:after {
    position: absolute;
    top: -100px;
    bottom: 0;
    margin: auto;
    content: "";
}

@media screen and (max-width: 767px) {
    .p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison-issue li:before, .p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison-issue li:after {
        top: -140px;
    }
}

.p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison-issue li:before {
    right: -8%;
    width: 35px;
    height: 8px;
    background: #896621;
}

@media screen and (max-width: 767px) {
    .p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison-issue li:before {
        right: -12%;
        width: 20px;
    }
}

.p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison-issue li:after {
    right: -10%;
    width: 0;
    height: 0;
    border-width: 15px 0 15px 15px;
    border-style: solid;
    border-color: transparent transparent transparent #896621;
}

@media screen and (max-width: 767px) {
    .p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison-issue li:after {
        right: -16%;
        width: 0;
        height: 0;
        border-width: 10px 0 10px 10px;
        border-style: solid;
        border-color: transparent transparent transparent #896621;
    }
}

.p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison-solution .title {
    background: #8C691E;
    color: #E9E2D4;
}

@media screen and (max-width: 767px) {
    .p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison-solution .title {
        padding: 21.25px 0;
    }
}

.p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison .title {
    margin-bottom: 30px;
    font: 20px bold, Noto Sans JP, sans-serif;
    font-weight: bolder;
    line-height: 50px;
}

@media screen and (max-width: 1100px) {
    .p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison .title {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison .title {
        font-size: 15px;
        line-height: 1.5;
    }
}

.p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison-list li {
    position: relative;
    margin: 0 0 50px;
}

.p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison-list li:last-of-type {
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison-list li {
        margin-bottom: 20px;
    }
}

.p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison-list li > img {
    width: 120px;
    height: auto;
    margin: auto;
}

@media screen and (max-width: 767px) {
    .p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison-list li > img {
        width: 80px;
    }
}

.p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison-list li > p {
    min-height: 72px;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.6;
}

@media screen and (max-width: 1100px) {
    .p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison-list li > p {
        min-height: 100px;
    }
}

@media screen and (max-width: 767px) {
    .p-features > .main-wrapper > .contents > .wrapper .features-item .features-contents .comparison-list li > p {
        min-height: 125px;
        font-size: 13px;
        text-align: left;
    }
}

.p-features > .main-wrapper > .contents > .wrapper .features-item .features-flex-contents {
    display: flex;
    margin-top: 50px;
    gap: 0 5%;
}

@media screen and (max-width: 767px) {
    .p-features > .main-wrapper > .contents > .wrapper .features-item .features-flex-contents {
        display: block;
    }
}

.p-features > .main-wrapper > .contents > .wrapper .features-item .features-flex-contents .articles,
.p-features > .main-wrapper > .contents > .wrapper .features-item .features-flex-contents .c-img-wrapper {
    flex: 1;
}

/*
strengths

*/
.p-strengths > .wrapper > .headline > .title:before {
  content: "STRENGTHS";
}

@media screen and (max-width: 1100px) {
  .p-strengths > .wrapper > .headline > .title:before {
    letter-spacing: -2px;
  }
}

.p-strengths > .main-wrapper > .contents .scroll-area > .menu > .item {
  width: calc(100% / 2);
}

.p-strengths > .main-wrapper > .contents > .wrapper {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 80px 90px 100px;
  background-color: #fff;
}

@media screen and (max-width: 1100px) {
  .p-strengths > .main-wrapper > .contents > .wrapper {
    padding: 60px 30px 80px;
  }
}

@media screen and (max-width: 767px) {
  .p-strengths > .main-wrapper > .contents > .wrapper {
    margin: 0 auto;
    padding: 0;
  }
}

.p-strengths > .main-wrapper > .contents > .wrapper .strengths-item {
  display: none;
  width: 100%;
  max-width: "1200px";
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .p-strengths > .main-wrapper > .contents > .wrapper .strengths-item {
    padding: 38px 3.9% 70px;
  }
}

.p-strengths > .main-wrapper > .contents > .wrapper .strengths-item.is-selected {
  display: block;
}

.p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents:not(:last-of-type) {
  margin-bottom: 80px;
  padding-bottom: 80px;
  background: url(../images/funds/border.png) no-repeat bottom/1200px 2px;
}

.p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison > div {
  width: 48%;
}

.p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison-issue .title {
  background: #EFEEEA;
  color: #8C691E;
}

@media screen and (max-width: 767px) {
  .p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison-issue .title {
    padding: 10px 0;
  }
}

.p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison-issue li:before, .p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison-issue li:after {
  position: absolute;
  top: -100px;
  bottom: 0;
  margin: auto;
  content: "";
}

@media screen and (max-width: 767px) {
  .p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison-issue li:before, .p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison-issue li:after {
    top: -140px;
  }
}

.p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison-issue li:before {
  right: -8%;
  width: 35px;
  height: 8px;
  background: #896621;
}

@media screen and (max-width: 767px) {
  .p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison-issue li:before {
    right: -12%;
    width: 20px;
  }
}

.p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison-issue li:after {
  right: -10%;
  width: 0;
  height: 0;
  border-width: 15px 0 15px 15px;
  border-style: solid;
  border-color: transparent transparent transparent #896621;
}

@media screen and (max-width: 767px) {
  .p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison-issue li:after {
    right: -16%;
    width: 0;
    height: 0;
    border-width: 10px 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent transparent #896621;
  }
}

.p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison-solution .title {
  background: #8C691E;
  color: #EFEEEA;
}

@media screen and (max-width: 767px) {
  .p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison-solution .title {
    padding: 21.25px 0;
  }
}

.p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison .title {
  margin-bottom: 30px;
  font: 20px bold, Noto Sans JP, sans-serif;
  font-weight: bolder;
  line-height: 50px;
}

@media screen and (max-width: 1100px) {
  .p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison .title {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison .title {
    font-size: 15px;
    line-height: 1.5;
  }
}

.p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison-list li {
  position: relative;
  margin: 0 0 50px;
}

.p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison-list li:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison-list li {
    margin-bottom: 20px;
  }
}

.p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison-list li > img {
  width: 120px;
  height: auto;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison-list li > img {
    width: 80px;
  }
}

.p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison-list li > p {
  min-height: 72px;
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.6;
}

@media screen and (max-width: 1100px) {
  .p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison-list li > p {
    min-height: 100px;
  }
}

@media screen and (max-width: 767px) {
  .p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-contents .comparison-list li > p {
    min-height: 125px;
    font-size: 13px;
    text-align: left;
  }
}

.p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-flex-contents {
  display: flex;
  margin-top: 50px;
  gap: 0 5%;
}

@media screen and (max-width: 767px) {
  .p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-flex-contents {
    display: block;
  }
}

.p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-flex-contents .articles,
.p-strengths > .main-wrapper > .contents > .wrapper .strengths-item .strengths-flex-contents .c-img-wrapper {
  flex: 1;
}

/*
high yield

*/
.p-yield > .wrapper > .headline > .title:before {
  content: "HIGH YIELD";
}

@media screen and (max-width: 767px) {
  .p-yield > .wrapper > .headline > .title:before {
    font-size: 50px;
    letter-spacing: -2px;
  }
}

.p-yield > .main-wrapper > .contents .scroll-area > .menu > .item {
  width: calc(100% / 2);
}

.p-yield > .main-wrapper > .contents > .wrapper {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 80px 90px 100px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .p-yield > .main-wrapper > .contents > .wrapper {
    margin: 0 auto;
    padding: 0;
  }
}

.p-yield > .main-wrapper > .contents > .wrapper .yield-item {
  display: none;
  width: 100%;
  max-width: "1200px";
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .p-yield > .main-wrapper > .contents > .wrapper .yield-item {
    padding: 38px 3.9% 70px;
  }
}

.p-yield > .main-wrapper > .contents > .wrapper .yield-item.is-selected {
  display: block;
}

.p-yield > .main-wrapper > .contents > .wrapper .yield-item .yield-contents .about-list {
  display: flex;
  flex-direction: column;
  gap: 80px 0;
}

.p-yield > .main-wrapper > .contents > .wrapper .yield-item .yield-contents .about-list-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 30px 0;
}

.p-yield > .main-wrapper > .contents > .wrapper .yield-item .yield-contents .about-list-item .title {
  padding: 5px 0 8px;
  background: #8C691E;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
}

.p-yield > .main-wrapper > .contents > .wrapper .yield-item .yield-contents .about-list-item .sub-title {
  padding: 12px 30px;
  background: #8C691E;
  color: #fff;
  font-weight: 700;
  font-size: 26px;
}

@media screen and (max-width: 767px) {
  .p-yield > .main-wrapper > .contents > .wrapper .yield-item .yield-contents .about-list-item .sub-title {
    font-size: 17px;
    padding: 14px 24px;
  }
}

.p-yield > .main-wrapper > .contents > .wrapper .yield-item .yield-contents .about-list-item .case{
  padding: 0 30px;
}

@media screen and (max-width: 767px) {
  .p-yield > .main-wrapper > .contents > .wrapper .yield-item .yield-contents .about-list-item .case{
    padding: 0 15px;
  }
}

.p-yield > .main-wrapper > .contents > .wrapper .yield-item .yield-contents .about-list-item .case dt {
  margin-bottom: 23px;
  padding: 0 14px;
  color: #8C691E;
  font-weight: 700;
  font-size: 24px;
  border-left: 6px solid #8C691E;
}

@media screen and (max-width: 767px) {
  .p-yield > .main-wrapper > .contents > .wrapper .yield-item .yield-contents .about-list-item .case dt {
    font-size: 16px;
  }
}

.p-yield > .main-wrapper > .contents > .wrapper .yield-item .yield-contents .about-list-item .case dd {
  font-size: 15px;
  line-height: 180%;
  word-break: break-all;
}

@media screen and (max-width: 767px) {
  .p-yield > .main-wrapper > .contents > .wrapper .yield-item .yield-contents .about-list-item .case dd {
    font-size: 12px;
  }
}

.p-yield > .main-wrapper > .contents > .wrapper .yield-item .yield-contents .about-list-item .case dd:not(:last-child){
  margin-bottom: 40px;
}

/*
memberclass

*/
b {
    font-weight: 600;
}
.p-member-class > .wrapper > .headline > .title:before {
    content: "MEMBER CLASS";
    z-index: -1;
    position: absolute;
    top: -85px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    color: rgba(137, 102, 33, 0.15);
    font-weight: 500;
    font-size: 100px;
    font-family: 'Crimson Text', sans-serif;
}
.p-member-class > .main-wrapper > .contents .content {
    width: 100%;
    margin: 0 auto;
    padding-block: 80px 100px;
    background-color: #fff;
}
.p-member-class > .main-wrapper > .contents .member-class-contents:not(:last-of-type) {
    margin-bottom: 80px;
    padding-bottom: 80px;
    background: url(../images/memberclass/border.png) no-repeat bottom/1200px 2px;
}
.align-center {
    margin: 0 auto;
}
.p-member-class .c-img-wrapper {
    max-width: 800px;
    width: 100%;
    margin: 15px auto;
}
.member-class-contents dl {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 12px;
}
.member-class-contents table {
    width: 100%;
    font-size: 15px;
}
.member-class-contents table td {
    padding: 8px 6px;
}
.member-class-contents table td:first-child {
    width: 20%;
}
.member-class-contents table td:nth-child(2) {
    width: 50%;
}
.member-class-contents table td:nth-child(3) {
    width: 5%;
}
.member-class-contents table td:nth-child(4) {
    width: 25%;
}

@media screen and (max-width: 1280px) {
    .p-static > .wrapper > .headline {
        padding: 144px 15px 96px 15px;
    }
}
@media screen and (max-width: 1024px) {
    .member-class-contents dl {
        flex-direction: column;
        gap: 5px;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 767px) {
    .p-static > .wrapper > .headline {
        padding: 66px 3.15% 41px;
    }
    .p-member-class > .main-wrapper > .contents .content {
        padding-block: 38px 70px;
    }
    .p-member-class > .main-wrapper > .contents .member-class-contents:not(:last-of-type) {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    .p-member-class > .wrapper > .headline > .title:before {
        top: -40px;
        font-size: clamp(15px, 12vw, 55px);
    }
}

/* pc header */
.l-wrapper {
  padding-top: 0px;
}
.l-header {
  padding-left: 2%;
  border-radius: 5px;
  width: 94%;
  left: 3%;
  top: 20px;
  transition: transform 0.3s ease;
}
.l-header.hide {
  transform: translateY(-150%);
}
.l-header .title svg path { fill: #fff; }
.l-header>.nav>.lists>li {
  font-size: 14px;
  margin-left: 2%;
}
.l-header>.nav>.lists>li:last-child {
  margin-right: 2%;
}
.l-header > .nav > .lists > li > .lists-child > li {
  height: 47px;
  line-height: 47px;
}
.l-header > .nav > .lists > li > .lists-child > li > a {
  font-size: 14px;
}
.btn-primary {
  font-size: 14px;
  margin-left: 10px;
  line-height: 50px;
}
.btn-secondary {
  font-size: 14px;
  line-height: 50px;
}
.btn-primary span {
  border: 1px solid #fff;
  padding: 8px 20px;
  background: #fff;
  border-radius: 2px;
  color: #8C691E;
  border-radius: 30px;
  position: relative;
}
.btn-primary span.register:before {
  content: "";
  position: relative;
  display: inline-block;
  left: -2px;
  top: 4px;
  width: 20px;
  height: 20px;
  background: url(../images/common/user_add.svg) no-repeat center / contain;
}
.btn-primary span.mypage:before {
  content: "";
  position: relative;
  display: inline-block;
  left: -2px;
  top: 4px;
  width: 20px;
  height: 20px;
  background: url(../images/common/user.svg) no-repeat center / contain;
}
.btn-secondary span {
  border: 1px solid #fff;
  padding: 8px 20px;
  border-radius: 2px;
  border-radius: 30px;
  position: relative;
}
.btn-primary span.mypage {
  padding: 8px 26px 8px 13px;
}
.btn-secondary span.notice {
  padding: 8px 30px;
}
.btn-secondary span.login:before {
  content: "";
  position: relative;
  display: inline-block;
  left: -2px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: url(../images/common/lock_open.svg) no-repeat center / contain;
}
.btn-primary .icon,
.c-btn.mypage .icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
  border-radius: 10px;
  top: 4px;
  left: -25px;
  padding: 0px;
  background-color: #fff;
  border: 1px solid #fff;
}
.c-btn.mypage .icon{
  top: 0;
  left: 5px;
}
.btn-primary .icon::before,
.c-btn.mypage .icon::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 4px;
  width: 10px;
  height: 1px;
  background-color: #8C691E;
  transform: translateY(-50%);
}
.btn-primary .icon::after,
.c-btn.mypage .icon::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 4px;
  width: 10px;
  height: 1px;
  background-color: #8C691E;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.btn-primary .icon.rotate::after,
.c-btn.mypage .icon.rotate::after {
  transform: translateY(-50%) rotate(180deg);
}
.trigger {
  position: relative;
  padding-left: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.trigger .icon {
  background-color: #fff;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
  border-radius: 10px;
  left: 5px;
}
.trigger .icon::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 5px;
  width: 10px;
  height: 1px;
  background-color: #664815;
  transform: translateY(-50%);
}
.trigger .icon::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 5px;
  width: 10px;
  height: 1px;
  background-color: #664815;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  transition: transform 0.3s ease;
}
input[type="checkbox"]:checked + .trigger .icon::after {
  transform: translateY(-50%) rotate(180deg);
}
.auth-links-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
  margin-right: 0;
  padding-left: 20px;
  border-left: 1px solid #886628;
  height: 50px !important;
}
.auth-links {
  display: flex;
  position: relative;
}
.auth-links.not-registerd .btn-secondary {
  margin-left: 16px;
}
.auth-lists-child {
  transition: .5s;
  margin-top: 5px;
  background: #fff;
  position: absolute;
  top: 53px;
  left: 10px;
  color: #8C691E;
  max-height: 0;
  overflow: hidden;
  width: 200px;
}
.auth-lists-child.open {
  max-height: 500px;
  padding-bottom: 20px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.075);
}
.auth-lists-child > li {
  height: 47px;
  padding: 0 10px;
  line-height: 47px;
}
.auth-lists-child > li > a {
  display: flex;
  position: relative;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  padding-right: 15px;
  font-size: 14px;
}
.auth-lists-child > li {
  height: 40px;
  line-height: 40px;
}
.auth-lists-child > li.logout{
  margin-top: 20px;
}
.auth-lists-child > li.logout > a {
  text-align: center;
  justify-content: center;
  border: 1px solid;
  width: 180px;
  margin: 20px auto 0 auto;
  padding-right: 0;
  height: 40px;
}
.auth-lists-child > li.logout > a:after {
  display: none;
}
.auth-lists-child > li > a:before {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1;
  background-color: #EFE8DF;
  content: "";
}
.auth-lists-child > li:last-child > a:before {
  display: none;
}
.auth-lists-child > li > a:after {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  transform: translate(0, -50%);
  background: url(../images/common/arrow-right-red.png) no-repeat center / contain;
  content: "";
}
input[type="checkbox"]:checked + label + .lists-child {
  display: block;
}
/* .p-introduction,
.p-flow,
.p-strengths,
.p-yield,
.p-member-class,
.p-funds,
.p-faq,
.p-ir,
.p-seminar,
.p-news,
.p-column {
  padding-top: 85px;
  background-color: #EFEEEA;
} */
/* .p-preceding,
.p-signup,
.p-signup-v2,
.p-terms {
  padding-top: 85px;
} */
.p-funds-top {
  padding-top: 100px;
}
.p-funds-top .line-banner, .p-users .line-banner {
  width: 40%;
}
.notice-link { position: relative; }
.notice-link.notify::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 67px;
  width: 8px;
  height: 8px;
  background-color: #DD0000;
  border-radius: 50%;
}

/* sp header */
@media screen and (max-width: 1380px) {
  .nav .lists.sp-none {
    display: none !important;
  }
  /* .register-btn, .toggle-btn {
    display: block !important;
  } */
  .l-header {
    background-color: transparent;
    position: absolute;
  }
  .l-header.colored {
    background-color: transparent;
  }
  .l-header>.title {
    margin-left: 0;
  }
  .l-header .title svg path { fill: #896621; }
  .l-header.is-index .title svg path { fill: #fff; }
  .l-header .toggle-btn {
    width: 42px;
    height: 42px;
    z-index: 3;
    position: fixed;
    /* background: transparent !important; */
  }
  .l-header .toggle-btn>.toggle-ic {
    position: relative;
    width: 42px;
    height: 42px;
    margin: 0;
    background-color: #8C691E;
    border-radius: 30px;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.25);
  }
  .l-header .toggle-btn>.toggle-ic>span {
    height: 2px;
  }
  .l-header .toggle-btn>.toggle-ic>span {
    left: 11px;
    width: 20px;
  }
  .l-header .toggle-btn>.toggle-ic>span:first-child {
    top: 14px;
  }
  .l-header .toggle-btn>.toggle-ic>span:nth-child(2) {
    width: 20px;
    top: 20px;
  }
  .l-header .toggle-btn>.toggle-ic>span:nth-child(3) {
    top: 26px;
  }
  .l-header .toggle-btn.is-open>.toggle-ic>span:nth-child(3) {
    top: 28px;
  }
  .l-header .toggle-btn.is-open>.toggle-ic>span:first-child {
    top: 20px;
  }
  .l-header .toggle-btn.is-open>.toggle-ic>span:nth-child(3) {
    top: 20px;
  }
  .l-header .register-btn {
    border-radius: 30px;
    width: 128px;
    height: 42px;
    line-height: 42px;
    margin-right: 55px;
    background: #fff;
    color: #8C691E;
    font-size: 12px;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.25);
    position: fixed;
  }
  .l-header .register-btn span {
    position: relative;
  }
  .l-header .register-btn span:before {
    content: "";
    position: relative;
    display: inline-block;
    left: -2px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: url(../images/common/user_add.svg) no-repeat center / contain;
  }
  .l-header.open>.overlay-sp {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    left: -15px;
    top: -20px;
    z-index: 1;

    position: fixed;
    left: 0;
    top: 0;
  }
  .l-header>.nav-sp {
    left: 2.5%;
    top: 20px;
    z-index: 2;
    width: 95%;
    background: #fff;

    left: 5%;
    top: 35px;
    width: 90%;
    position: fixed;
  }
  .l-header .nav-sp > .content > .list > .item > .trigger::after {
    display: none;
  }
  .l-header>.nav-sp>.content {
    overflow-y: scroll;
  }
  .l-header>.nav-sp>.content>.list {
    padding-bottom: 16px;
  }
  .l-header>.nav-sp>.content>.list>.item:after {
    right: 0;
    left: auto;
  }
  .l-header .nav-sp > .content > .list > .item {
    padding: 0;
    border-bottom: 1px solid #EFE8DF;
  }
  .l-header .nav-sp > .content > .list > .item > a {
    padding: 18px 0;
  }
  .l-header .nav-sp > .content > .list > .item.drop-sp {
    padding: 0;
    margin-right: 0;
  }
  .trigger {
    padding-left: 0;
  }
  .l-header>.nav-sp>.content>.list>.item:first-child {
    border-top: 1px solid #EFE8DF;
  }
  .l-header>.nav-sp>.content>.list>.item.drop-sp .icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    border-radius: 10px;
    top: 16px;
    right: -6px;
    padding: 0px;
    background-color: #664815;
    border: 1px solid #664815;
  }
  .l-header>.nav-sp>.content>.list>.item.drop-sp .icon:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 4px;
    width: 10px;
    height: 1px;
    background-color: #fff;
    transform: translateY(-50%);
  }
  .l-header>.nav-sp>.content>.list>.item.drop-sp .icon:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 4px;
    width: 10px;
    height: 1px;
    background-color: #fff;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  .l-header>.nav-sp>.content>.list>.item.drop-sp .icon.rotate:after {
    transform: translateY(-50%) rotate(180deg);
  }
  .l-header .nav-sp > .content > .list > .item > .trigger.open + .lists-child {
    height: auto;
    background-color: transparent;
  }
  .l-header .nav-sp > .content > .list > .item > .lists-child {
    display: block;
    background-color: transparent;
  }
  .l-header .nav-sp > .content > .list > .item > .lists-child > li {
    width: calc(100% - 16px);
    margin-left: 16px;
    border: none;
    border-bottom: 1px solid #EFE8DF;
    line-height: 49px;
    position: relative;
  }
  .l-header .nav-sp > .content > .list > .item > .lists-child > li:after {
    position: absolute;
    display: block;
    content: "";
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 5.7px;
    height: 12px;
    background: url(../images/common/pagenation-arrow-right.png) no-repeat 50% / contain;
  }
  .l-header .nav-sp > .content > .list > .item > .lists-child > li:last-child {
    border-bottom: none;
    line-height: 50px;
  }
  .l-header .nav-sp > .content > .list > .item > .lists-child > li > a {
    background-color: #fff;
    text-align: left;
  }
  .link-box {
    padding: 0px 13px 35px;
  }
  .login-link, .logout-link {
    font-size: 14px;
    color: #8C691E;
    border: 1px solid #8C691E;
    text-align: center;
    padding: 16px 0;
    margin-bottom: 16px;
  }
  .register-link {
    font-size: 14px;
    color: #8C691E;
    text-align: center;
  }
  .l-header .nav-mypage__wrapper {
    z-index: 2;
    width: 95%;
    left: 2.5%;
    top: 20px;
  }
  .l-header .nav-mypage {
    background-color: #fff;
  }
  .l-header .nav-mypage>.content>.list>.item {
    padding-left: 0;
    margin-top: 0;
    border-bottom: 1px solid #EFE8DF;
  }
  .l-header .nav-mypage>.content>.list>.item:after {
    left: auto;
    right: 0;
  }
  .l-header .nav-mypage>.content>.list>.item>a {
    padding: 18px 0;
  }
  .l-header .nav-mypage>.content>.list>.item:first-child {
    border-top: 1px solid #EFE8DF;
  }
  .btn-primary-sp {
    font-size: 12px;
    margin-left: 10px;
    line-height: 50px;
  }
  .btn-primary-sp span {
    border: 1px solid #fff;
    padding: 10px 32px 10px 10px;
    background: #fff;
    border-radius: 30px;
    color: #8C691E;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.25);
    position: relative;
  }
  .btn-primary-sp span.mypage:before {
    content: "";
    position: relative;
    display: inline-block;
    left: -2px;
    top: 4px;
    width: 20px;
    height: 20px;
    background: url(../images/common/user.svg) no-repeat center / contain;
  }
  .btn-primary-sp .icon {
    background-color: #fff;
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
    border-radius: 10px;
    top: 4px;
    left: -28px;
    padding: 0px;
    background-color: #664815;
    border: 1px solid #664815;
    box-shadow: none;
  }
  .btn-primary-sp .icon::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 4px;
    width: 10px;
    height: 1px;
    background-color: #fff;
    transform: translateY(-50%);
  }
  .btn-primary-sp .icon::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 4px;
    width: 10px;
    height: 1px;
    background-color: #fff;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  .btn-primary-sp .icon.rotate::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .auth-links-sp {
    display: flex;
    position: fixed;
    margin-right: 35px;
    display: block !important;
  }
  .toggle-btn-sp {
    display: block !important;
  }
  .auth-lists-child {
    top: 40px;
    left: 1px;
  }
  .auth-lists-child.open {
    width: 200px;
    opacity: 1;
    max-height: 500px;
    padding-bottom: 20px;
  }
  .auth-lists-child-sp > li.logout {
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
  }
  .auth-lists-child-sp > li.logout > a {
    display: block;
    padding: 0;
    width: 160px;
    margin: 20px auto;
    font-size: 11px;
  }
  .auth-lists-child-sp > li.logout > a:after {
    display: none;
  }
  .auth-lists-child-sp > li > a {
    display: flex;
    position: relative;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    padding-right: 15px;
    font-size: 14px;
  }
  .auth-lists-child-sp > li > a:before {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1;
    background-color: #EFE8DF;
    content: "";
  }
  .auth-lists-child-sp > li:last-child > a:before {
    display: none;
  }
  .auth-lists-child-sp > li > a:after {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 10px;
    height: 10px;
    transform: translate(0, -50%);
    background: url(../images/common/arrow-right-red.png) no-repeat center / contain;
    content: "";
  }

  /* .p-introduction,
  .p-flow,
  .p-strengths,
  .p-yield,
  .p-member-class,
  .p-funds,
  .p-faq,
  .p-ir,
  .p-seminar,
  .p-news,
  .p-column {
    padding-top: 75px;
  } */
  /* .p-preceding,
  .p-signup,
  .p-signup-v2,
  .p-terms {
    padding-top: 85px;
  } */
  .p-funds-top {
    padding-top: 90px;
  }
  .p-funds-top .line-banner, .p-users .line-banner {
    width: 100%;
  }
}

/* cta */
.cta-box {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  z-index: 1;
  max-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  display: block;
}
.cta-box.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cta-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: black;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}
.cta-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .09em;
}
.cta-text {
  font-size: 12px;
  margin: 0 0 12px;
  letter-spacing: .05em;
}
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #A17B36, #CFA532);
  color: #fff;
  text-decoration: none;
  text-align: center;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  line-height: 50px;
  height: 50px;
  letter-spacing: .03em;
}
.cta-button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .cta-box {
    max-width: 232px;
  }
  .cta-close {
    width: 32px;
    height: 32px;
    font-size: 24px;
    line-height: 32px;
  }
}

/* alert */
.alert-btn{
  background-color: #fff;
  border: 3px solid #DD0000;
  border-radius: 50%;
  box-shadow: 0px 4px 4px 0px #00000040;
  color: #DD0000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .alert-btn{
    height: 47px;
    width: 47px;
    left: 14px;
  }
}
.alert-btn .icon{
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .alert-btn .icon{
    font-size: 34px;
  }
}
.alert-count{
  background: #DD0000;
  border-radius: 50%;
  box-shadow: 0px 1px 1px 0px #0000002E;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  height: 24px;
  width: 24px;
  position: absolute;
  top: -5px;
  right: -10px;
}
@media screen and (max-width: 767px) {
  .alert-count{
    height: 19px;
    width: 19px;
    right: -5px;
  }
}
.alert-list{
  padding-inline: 50px;
  max-height: 85vh;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .alert-list{
    padding-inline: 18px;
  }
}
.alert-list > li:not(:last-child){
  border-bottom: 1px solid #D5D5D5;
}
.alert-list a{
  color: #DD0000;
  display: block;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.12em;
  padding-block: 40px;
  padding-right: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .alert-list a{
    font-size: 15px;
    letter-spacing: 0;
    padding-block: 20px;
    padding-right: 18px;
  }
}
.alert-list a::after{
  content: '\e5e1';
  color: #DD0000;
  font-size: 24px;
  font-family: 'Material Symbols Outlined';
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .alert-list a::after{
    font-size: 18px;
  }
}
/* modal */
.modal{
  background: #000000A6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, scale 0s 0.5s;
  opacity: 0;
  scale: 0;
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.modal.show {
  transition: opacity 0.5s;
  opacity: 1;
  scale: 1;
}
.modal-dialog{
  background: #FFFDF7;
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px #00000040;
  width: 80%;
  position: relative;
}
.modal.dialog {
  background-color: #fff;
  border: none;
  width: 90%;
}
.modal.dialog[open] {
  opacity: 1;
  scale: 1;
  transform: scale(1);
  transition: all 0.3s ease;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .modal-dialog{
    width: 95%;
  }
  .modal.dialog[open] {
    width: 90% !important;
  }
}
.modal-small{
  background-color: #F5F5F5;
  border-radius: 7px;
  min-width: 500px;
  width: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .modal-small{
    min-width: 95%;
    width: 95%;
  }
}
.modal-inner{
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .modal-inner{
    padding: 30px 20px;
  }
}
.modal-inner .button{
  margin-top: 20px;
}
.modal-close{
  color: #fff;
  line-height: 1;
  position: absolute;
  top: -40px;
  right: 0;
}
.modal-close span{
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .modal-close span{
    font-size: 30px;
  }
}

.modal-title{
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .modal-title{
    font-size: 14px;
  }
}
.modal-text{
  font-size: 16px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .modal-title{
    font-size: 12px;
  }
}
.modal-list{
  line-height: 2;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 10px;
}


