@charset "UTF-8";
/* あすなろLP CSS 2021.06.22 */
/*----------リセットCSS----------*
/*
  html5doctor.com Reset Stylesheet
  v1.6.1
  Last Updated: 2010-09-17
  Author: Richard Clark - http://richclarkdesign.com
  Twitter: @rich_clark
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*----------本編----------*/
body {
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  background: #E1F1BC;
}

body table td,
body table th {
  font-size: 14px;
}

.pc_show {
  display: block !important;
}
@media screen and (max-width: 998px) {
  .pc_show {
    display: none !important;
  }
}

.sp_show {
  display: none !important;
}
@media screen and (max-width: 998px) {
  .sp_show {
    display: block !important;
  }
}

/*========= 背景動画設定のCSS ===============*/
/*header設定*/
#video-container {
  position: relative;
  height: 100vh; /*高さを全画面にあわせる*/
  overflow: hidden;
}

.video_box {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#video-area {
  z-index: -1; /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  width: 100%;
}

#video {
  /*天地中央配置*/
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
  z-index: -1;
}

.spmovie {
  display: none;
}
@media screen and (max-width: 998px) {
  .spmovie {
    display: block;
  }
}

.pcmovie {
  display: block;
}
@media screen and (max-width: 998px) {
  .pcmovie {
    display: none;
  }
}

@media screen and (max-width: 896px) and (orientation: landscape) {
  #video {
    height: auto;
  }
}
/* scroll 誘導矢印 */
.next_arrow {
  position: absolute;
  left: 50%;
  bottom: 20px; /* タブバー */
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
}

.next_arrow span {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(90deg);
  animation-name: arrowDance;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.next_arrow span:after, .next_arrow span:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
}

.next_arrow span:after {
  left: 9px;
  width: 40px;
  height: 4px;
}

.next_arrow span:before {
  left: 20px;
  width: 24px;
  height: 24px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(45deg);
}

@keyframes arrowDance {
  0% {
    transform: translateY(-10px) rotate(90deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(90deg);
    opacity: 0;
  }
}
/*スマホ対応*/
img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0;
}

.spimg {
  display: none;
}
@media screen and (max-width: 998px) {
  .spimg {
    display: block;
  }
}

.pcimg {
  display: block;
}
@media screen and (max-width: 998px) {
  .pcimg {
    display: none;
  }
}

.small {
  font-size: 13px;
}

/*ナビゲーション*/
nav {
  position: fixed;
  width: 100%;
  bottom: -80px;
  background: #189790;
  transition: bottom 0.6s;
  z-index: 999;
}
@media screen and (max-width: 998px) {
  nav {
    bottom: -136px;
  }
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 1000px;
  height: 80px;
  margin: 0 auto;
}
@media screen and (max-width: 998px) {
  nav ul {
    width: 100%;
    height: 136px;
  }
}
nav ul li {
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: auto;
  height: 80px;
  font-size: 18px;
  border-style: solid;
  border-width: 0 1px 0 0;
  border-color: #3cb5af;
  overflow: hidden;
}
nav ul li:nth-child(6) {
  border-width: 0;
}
@media screen and (max-width: 998px) {
  nav ul li {
    flex-basis: 33%;
    height: 68px;
    padding: 4px 10px;
    font-size: 14px;
    line-height: 140%;
    border-width: 0 1px 1px 0;
  }
  nav ul li:nth-child(3) {
    border-width: 0 0 1px 0;
  }
  nav ul li:nth-child(4), nav ul li:nth-child(5) {
    border-width: 0 1px 0 0;
  }
}
nav ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 28px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: #fff;
  z-index: 2;
  transition: all 0.5s ease;
}
@media screen and (max-width: 998px) {
  nav ul li a {
    padding: 0;
  }
}
nav ul li .effect {
  width: 100%;
  height: 80px;
  top: -80px;
  background: #3cb5af;
  position: absolute;
  transition: all 0.5s ease;
  z-index: 1;
}
nav ul li:hover .effect {
  top: 0;
}

#page_top {
  position: fixed;
  width: 64px;
  height: 64px;
  right: 60px;
  bottom: -140px;
  z-index: 999;
}
@media screen and (max-width: 998px) {
  #page_top {
    width: 48px;
    height: 48px;
    right: 10px;
    bottom: -110px;
  }
}

#page_top a {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  text-decoration: none;
}
@media screen and (max-width: 998px) {
  #page_top a {
    width: 48px;
    height: 48px;
  }
}

section {
  box-sizing: border-box;
  width: 100%;
  padding: 100px 20px;
}
@media screen and (max-width: 998px) {
  section {
    padding: 80px 20px;
  }
}

.ch01 h2,
.ch01 h3,
.ch02 h2,
.ch03 h2,
.ch04 h2 {
  margin-bottom: 40px;
}
.ch01 h2 img,
.ch01 h3 img,
.ch02 h2 img,
.ch03 h2 img,
.ch04 h2 img {
  display: block;
  width: auto;
  height: auto;
  margin: 0 auto;
}
.ch01 h2 img:nth-of-type(1),
.ch01 h3 img:nth-of-type(1),
.ch02 h2 img:nth-of-type(1),
.ch03 h2 img:nth-of-type(1),
.ch04 h2 img:nth-of-type(1) {
  display: block;
}
.ch01 h2 img:nth-of-type(2),
.ch01 h3 img:nth-of-type(2),
.ch02 h2 img:nth-of-type(2),
.ch03 h2 img:nth-of-type(2),
.ch04 h2 img:nth-of-type(2) {
  display: none;
}
@media screen and (max-width: 998px) {
  .ch01 h2 img,
  .ch01 h3 img,
  .ch02 h2 img,
  .ch03 h2 img,
  .ch04 h2 img {
    max-width: 100%;
  }
  .ch01 h2 img:nth-of-type(1),
  .ch01 h3 img:nth-of-type(1),
  .ch02 h2 img:nth-of-type(1),
  .ch03 h2 img:nth-of-type(1),
  .ch04 h2 img:nth-of-type(1) {
    display: none;
  }
  .ch01 h2 img:nth-of-type(2),
  .ch01 h3 img:nth-of-type(2),
  .ch02 h2 img:nth-of-type(2),
  .ch03 h2 img:nth-of-type(2),
  .ch04 h2 img:nth-of-type(2) {
    display: block;
  }
}

.ch01 h3 {
  margin-bottom: 12px;
}
@media screen and (max-width: 998px) {
  .ch01 h3 img {
    width: 281px;
  }
}

.ch01 .wrap {
  width: 1162px;
}

.ch02 .wrap,
.ch04 .wrap {
  width: 1000px;
}

.ch03 .wrap {
  width: 960px;
}

.ch01 .wrap,
.ch02 .wrap,
.ch03 .wrap,
.ch04 .wrap {
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 998px) {
  .ch01 .wrap,
  .ch02 .wrap,
  .ch03 .wrap,
  .ch04 .wrap {
    width: 100%;
    max-width: 100%;
  }
}

.bg-white {
  padding: 20px;
  border-radius: 20px;
  background: #FFF;
}

/*ch01*/
.ch01 {
  position: relative;
  background-color: #F6F6F6;
}
.ch01 .bg-white {
  box-shadow: 0 8px 12px 0 rgba(119, 119, 119, 0.1);
}
.ch01 .fund-purpose {
  margin: 0 0 60px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (max-width: 998px) {
  .ch01 .fund-purpose {
    margin: 0 0 40px;
    text-align: left;
    font-size: 16px;
  }
}

.ch01 h4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 88px;
  margin: 0 0 20px;
  padding: 0;
  color: #333;
  font-size: 20px;
  line-height: 160%;
}
.ch01 h4 strong {
  color: #189790;
}

span.inline-block {
  display: inline-block;
}

.fund-characteristics {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
}
@media screen and (max-width: 998px) {
  .fund-characteristics {
    flex-direction: column;
    align-items: center;
  }
}
.fund-characteristics .unit {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: calc((100% - 40px) / 3);
  max-width: 372px;
  padding: 20px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 8px 12px 0 rgba(119, 119, 119, 0.1);
}
@media screen and (max-width: 998px) {
  .fund-characteristics .unit {
    width: 100%;
  }
  .fund-characteristics .unit + .unit {
    margin-top: 24px;
  }
}
.fund-characteristics .icon_area {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.fund-characteristics .icon_area img {
  display: block;
}
.fund-characteristics .icon_area .icon_img {
  width: 110px;
  height: 110px;
}
.fund-characteristics .icon_area .icon_num {
  width: 119px;
  height: 75px;
}
.fund-characteristics ul {
  padding-left: 20px;
}
.fund-characteristics ul li {
  font-size: 14px;
}
.fund-characteristics ul li + li {
  margin-top: 1em;
}
.fund-characteristics ul li strong {
  color: #333;
  font-weight: 700;
}

p {
  margin-bottom: 0;
}
p + p {
  margin-top: 1em;
}

/*---- ch02 ----*/
@media screen and (max-width: 998px) {
  .ch02 h2 img {
    width: 328px;
  }
}

.ch02 p:first-of-type, .ch02 p:nth-of-type(2) {
  text-align: center;
  margin: 0 0 40px 0;
}

.ch02 p:nth-of-type(2) {
  text-align: left;
}

/*---- ch03 ----*/
.ch03 {
  background: #fff;
}

.ch03 img {
  max-width: 100%;
}

@media screen and (max-width: 998px) {
  .ch03 h2 img {
    width: 328px;
  }
}

.ch03 a {
  color: #189790;
  text-decoration: underline;
}

.operation-person {
  position: relative;
  width: 100%;
  margin: 80px 0;
}
.operation-person::after {
  content: "";
  display: block;
  clear: both;
}
.operation-person + .operation-person::before {
  content: "";
  display: block;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  margin-bottom: 80px;
  background-color: #DDDDDD;
}
.operation-person .operation-comment {
  width: calc(100% - 300px - 20px);
  max-width: 591px;
  margin-bottom: 40px;
}
.operation-person .person_img {
  width: 300px;
  height: 327px;
}
.operation-person .person_info {
  max-width: 252px;
  line-height: 160%;
}
.operation-person .person_info .person_position {
  margin-bottom: 20px;
  font-size: 14px;
  font-style: normal;
}
.operation-person .person_info .person_name {
  color: #333;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  text-align: right;
}
.operation-person:nth-of-type(1) .operation-comment {
  float: left;
}
.operation-person:nth-of-type(1) .person_img {
  float: right;
}
.operation-person:nth-of-type(2) .operation-comment {
  float: right;
}
.operation-person:nth-of-type(2) .person_img {
  float: left;
}
.operation-person:nth-of-type(2) .person_info {
  float: right;
  text-align: left;
}
@media screen and (max-width: 998px) {
  .operation-person {
    margin: 40px 0;
  }
  .operation-person + .operation-person::before {
    margin-bottom: 40px;
  }
  .operation-person .operation-comment {
    width: 100%;
    max-width: 100%;
    margin-bottom: 24px;
  }
  .operation-person .person_img {
    margin: 0 auto 24px;
  }
  .operation-person .person_info {
    width: 100%;
    max-width: 100%;
    text-align: right;
  }
  .operation-person:nth-of-type(1) .operation-comment {
    float: none;
  }
  .operation-person:nth-of-type(1) .person_img {
    float: none;
  }
  .operation-person:nth-of-type(1) .person_info {
    float: none;
  }
  .operation-person:nth-of-type(2) .operation-comment {
    float: none;
  }
  .operation-person:nth-of-type(2) .person_img {
    float: none;
  }
  .operation-person:nth-of-type(2) .person_info {
    text-align: right;
    float: none;
  }
}

/*---- ch04 ----*/
@media screen and (max-width: 998px) {
  .ch04 h2 img {
    width: 294px;
  }
}

.ch04 h3 {
  margin: 24px 0;
  padding: 4px;
  background: #189790;
  color: #fff;
  font-weight: 700;
  line-height: 160%;
}

.ch04 .red {
  color: #e53f3f;
}

.ch04 p {
  margin-bottom: 24px;
}

.ch04 ul {
  margin: 0 11px;
  padding-left: 20px;
}
@media screen and (max-width: 998px) {
  .ch04 ul {
    margin: 0;
  }
}
.ch04 ul li + li {
  margin-top: 1em;
}
.ch04 ul.points-to-note {
  margin: 0;
}
.ch04 ul.points-to-note li + li {
  margin-top: 0;
}

.risk {
  font-size: 14px;
  margin-top: 8px;
}

/*TABLE*/
table {
  border-collapse: collapse;
  width: 100%;
  border-bottom: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
}
@media screen and (max-width: 998px) {
  table {
    border-bottom: 1px solid #dddddd;
    border-left: none;
    border-right: none;
  }
}

table th, table td {
  border: 1px solid #dddddd;
  padding: 8px 10px;
  display: table-cell;
  width: auto;
  vertical-align: middle;
}
@media screen and (max-width: 998px) {
  table th, table td {
    display: block;
  }
}

table th {
  width: 170px;
  font-weight: 400;
  background: #f6f6f6;
  border-bottom: 1px solid #dddddd;
}
@media screen and (max-width: 998px) {
  table th {
    border-bottom: none;
    width: auto;
  }
}

table td {
  background: #fff;
  border-bottom: 1px solid #dddddd;
}
@media screen and (max-width: 998px) {
  table td {
    border-bottom: none;
  }
}

table td table {
  margin: 10px 0;
}

table td table th,
table td table td {
  display: table-cell;
  width: auto;
}

/*---- logo ----*/
.logo {
  width: 250px;
  max-width: 300px;
  margin: 27px auto 0;
  background: #fff;
}
@media screen and (max-width: 998px) {
  .logo {
    width: 80%;
    margin: 10px auto 0;
  }
}

.logo a {
  display: block;
  padding: 15px 20px;
}
@media screen and (max-width: 998px) {
  .logo a {
    padding: 10px 10px;
  }
}

.logo a img {
  width: 100%;
}

/*---- footer ----*/
footer {
  margin: 0 0 100px;
  padding: 20px 0;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0;
}
@media screen and (max-width: 998px) {
  footer {
    padding: 10px 0 70px;
    font-size: 9px;
  }
}

/*---- bannerリンク ----*/
.banner {
  display: block;
  width: 100%;
  max-width: 960px;
  margin: 40px auto 0;
  opacity: 1;
  transition: all 0.2s ease-out;
}
.banner :hover {
  opacity: 0.8;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 998px) {
  .banner {
    margin: 20px auto 0;
  }
}

/*---- リンクボタン ----*/
.link_btn {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: 394px;
  margin: 80px auto 0;
  padding: 18px 59px;
  background-color: #189790;
  color: #ffffff;
  font-size: 100%;
  font-weight: bold;
  text-align: center;
  border-radius: 4px;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 998px) {
  .link_btn {
    width: 100%;
    margin: 40px auto 0;
    padding: 15px 50px;
  }
}

.link_btn::after {
  position: relative;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: rotate(45deg);
}
@media screen and (max-width: 998px) {
  .link_btn::after {
    margin-left: 8px;
  }
}

a.link_btn {
  color: #ffffff;
  text-decoration: none;
}

.link_btn:hover {
  background-color: #3cb5af;
}

/*---- 再生ボタン ----*/
.play_btn {
  position: absolute;
  z-index: 10;
  left: 70px;
  bottom: 110px;
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
}
@media screen and (max-width: 998px) {
  .play_btn {
    left: 40px;
    bottom: 100px;
  }
}

.play_btn:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #189790;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
@media screen and (max-width: 998px) {
  .play_btn:before {
    width: 60px;
    height: 60px;
  }
}

.play_btn:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #189790;
  border-radius: 50%;
  transition: all 200ms;
}
@media screen and (max-width: 998px) {
  .play_btn:after {
    width: 60px;
    height: 60px;
  }
}

.play_btn:hover:after {
  background-color: rgb(17.0057142857, 106.9942857143, 102.0342857143);
}

.play_btn span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  transform: translate(-35%, -50%);
}
@media screen and (max-width: 998px) {
  .play_btn span {
    border-left: 18px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    transform: translate(-25%, -50%);
  }
}

.play_btn.stop span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  border: none;
}

.play_btn.stop span:before {
  content: "";
  display: block;
  width: 4px;
  height: 40px;
  margin-right: 16px;
  background: #fff;
}
@media screen and (max-width: 998px) {
  .play_btn.stop span:before {
    width: 3px;
    height: 26px;
    margin-right: 12px;
  }
}

.play_btn.stop span:after {
  content: "";
  display: block;
  width: 4px;
  height: 40px;
  background: #fff;
}
@media screen and (max-width: 998px) {
  .play_btn.stop span:after {
    width: 3px;
    height: 26px;
  }
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
/*-- text-indent --*/
.textindent_1em {
  margin: 0 !important;
  padding-left: 1em;
  text-indent: -1em;
}

.textindent_1em li {
  margin-bottom: 4px !important;
  padding-left: 0 !important;
}

.textindent_1em li::before {
  content: none !important;
}

/*-- text-align --*/
.align_l {
  text-align: left !important;
}

.align_r {
  text-align: right !important;
}

.align_c {
  text-align: center !important;
}/*# sourceMappingURL=main.css.map */