@charset "UTF-8";
/* CSS Document */
@import url(//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap);
@import url(//fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap);
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
#thisPage {
  line-height: 1;
}
#thisPage div, #thisPage span, #thisPage applet, #thisPage object, #thisPage iframe,
#thisPage h1, #thisPage h2, #thisPage h3, #thisPage h4, #thisPage h5, #thisPage h6, #thisPage p, #thisPage blockquote, #thisPage pre,
#thisPage a, #thisPage abbr, #thisPage acronym, #thisPage address, #thisPage big, #thisPage cite, #thisPage code,
#thisPage del, #thisPage dfn, #thisPage em, #thisPage img, #thisPage ins, #thisPage kbd, #thisPage q, #thisPage s, #thisPage samp,
#thisPage small, #thisPage strike, #thisPage strong, #thisPage sub, #thisPage sup, #thisPage tt, #thisPage var,
#thisPage b, #thisPage u, #thisPage i, #thisPage center,
#thisPage dl, #thisPage dt, #thisPage dd, #thisPage ol, #thisPage ul, #thisPage li,
#thisPage fieldset, #thisPage form, #thisPage label, #thisPage legend,
#thisPage table, #thisPage caption, #thisPage tbody, #thisPage tfoot, #thisPage thead, #thisPage tr, #thisPage th, #thisPage td,
#thisPage article, #thisPage aside, #thisPage canvas, #thisPage details, #thisPage embed,
#thisPage figure, #thisPage figcaption, #thisPage footer, #thisPage header, #thisPage hgroup,
#thisPage menu, #thisPage nav, #thisPage output, #thisPage ruby, #thisPage section, #thisPage summary,
#thisPage time, #thisPage mark, #thisPage audio, #thisPage video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
#thisPage {
  /* HTML5 display-role reset for older browsers */
}
#thisPage article, #thisPage aside, #thisPage details, #thisPage figcaption, #thisPage figure,
#thisPage footer, #thisPage header, #thisPage hgroup, #thisPage menu, #thisPage nav, #thisPage section {
  display: block;
}
#thisPage ol, #thisPage ul {
  list-style: none;
}
#thisPage blockquote, #thisPage q {
  quotes: none;
}
#thisPage blockquote:before, #thisPage blockquote:after,
#thisPage q:before, #thisPage q:after {
  content: "";
  content: none;
}
#thisPage table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --basePixel: calc(100vw / 375);
  scroll-behavior: smooth;
}
@media (min-width: 767px) {
  :root {
    --basePixel: min(1px, calc(100vw / 960));
  }
}

html, body {
  scrollbar-gutter: stable;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.hmenu_btn {
  display: block;
  width: calc(100 * var(--basePixel));
  height: calc(100 * var(--basePixel));
  position: fixed;
  z-index: 51;
  top: 0;
  right: 0;
  overflow: clip;
}
@media (min-width: 767px) {
  .hmenu_btn {
    width: calc(60 * var(--basePixel));
    height: calc(60 * var(--basePixel));
  }
}
.hmenu_btn span {
  display: block;
  width: 50%;
  height: 40%;
  position: absolute;
  top: 30%;
  left: 25%;
}
.hmenu_btn span:before, .hmenu_btn span:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transition: 0.5s all ease;
}
.hmenu_btn span:before {
  top: 0;
}
.hmenu_btn span:after {
  bottom: 0;
}
.hmenu_btn span i {
  text-indent: -9999px;
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  left: 0;
  top: calc(50% - 1px);
  transition: 0.5s all ease;
}

body.hmenu_open {
  overflow: clip;
}
body.hmenu_open .hmenu_btn span:before {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}
body.hmenu_open .hmenu_btn span:after {
  bottom: calc(50% - 1px);
  transform: rotate(45deg);
}
body.hmenu_open .hmenu_btn span i {
  transform: translateX(calc(100% + 2px));
  opacity: 0;
}

.hmenu_body {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow-x: clip;
  overflow-y: auto;
  z-index: 49;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
}
.hmenu_body ul {
  font-size: calc(32 * var(--basePixel));
  padding-top: calc(100 * var(--basePixel));
  transform: translateY(-100%);
  transition: all 0.5s ease;
  background-color: aqua;
}

body.hmenu_open .hmenu_body {
  opacity: 1;
  visibility: visible;
}
body.hmenu_open .hmenu_body ul {
  transform: translateY(0);
}

body.modal-open {
  overflow: hidden;
}

#modal-overlay {
  visibility: hidden;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  transition: all 0.5s ease;
  opacity: 0;
  pointer-events: none;
}
#modal-overlay.active {
  pointer-events: all;
  visibility: visible;
  transition: all 0.5s ease;
  opacity: 1;
}

.modal-base {
  transition: all 0.5s ease;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.modal-base.active {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}

.modalBox {
  width: 80%;
  max-width: calc(900 * var(--basePixel));
  height: 80%;
  padding: calc(40 * var(--basePixel)) calc(20 * var(--basePixel)) calc(20 * var(--basePixel));
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modalBox .modal_inner {
  overflow-y: auto;
  height: 100%;
}

.modal-close-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(40 * var(--basePixel));
  height: calc(40 * var(--basePixel));
  cursor: pointer;
}
.modal-close-inner:after, .modal-close-inner:before {
  content: "";
  display: block;
  width: 80%;
  height: 2px;
  background-color: #000000;
  position: absolute;
  top: calc(50% - 1px);
  left: 10%;
}
.modal-close-inner:before {
  transform: rotate(45deg);
}
.modal-close-inner:after {
  transform: rotate(-45deg);
}

.modal-close-outer {
  position: absolute;
  top: calc(-60 * var(--basePixel));
  right: 0;
  width: calc(40 * var(--basePixel));
  height: calc(40 * var(--basePixel));
  cursor: pointer;
  background-color: #ffffff;
}
.modal-close-outer:after, .modal-close-outer:before {
  content: "";
  display: block;
  width: 80%;
  height: 2px;
  background-color: #000000;
  position: absolute;
  top: calc(50% - 1px);
  left: 10%;
}
.modal-close-outer:before {
  transform: rotate(45deg);
}
.modal-close-outer:after {
  transform: rotate(-45deg);
}

.modal_btn {
  width: calc(300 * var(--basePixel));
  margin-left: auto;
  margin-right: auto;
  background-color: blue;
  line-height: 1;
  color: #ffffff;
  padding: 0.5em calc(10 * var(--basePixel));
  border-radius: 1000px;
  cursor: pointer;
  text-align: center;
}
@media (min-width: 767px) {
  .modal_btn {
    width: calc(150 * var(--basePixel));
  }
}

.fixbtn picture,
.fixbtn img {
  display: inline-block;
}

#thisPage {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
}
@media (min-width: 767px) {
  #thisPage {
    position: relative;
  }
}
#thisPage img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
#thisPage a {
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#thisPage a:hover, #thisPage a:active, #thisPage a:focus {
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#thisPage .container {
  padding-left: calc(15 * var(--basePixel));
  padding-right: calc(15 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage .container {
    padding-left: calc(15 * var(--basePixel));
    padding-right: calc(15 * var(--basePixel));
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}
#thisPage .container-960 {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
#thisPage .ja {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", "MS PMincho", serif;
}
#thisPage .fc_white {
  color: #ffffff;
}
#thisPage .fc_red {
  color: #c1121f;
}
#thisPage .mtv-00 {
  padding-top: 0 !important;
}
@media (min-width: 767px) {
  #thisPage .pbv-md-120 {
    padding-bottom: calc(120 * var(--basePixel)) !important;
  }
}
@media (min-width: 767px) {
  #thisPage .ptv-md-120 {
    padding-top: calc(120 * var(--basePixel)) !important;
  }
}
#thisPage .link01 {
  color: #ffffff;
  font-size: calc(22 * var(--basePixel));
  display: block;
  padding-top: calc(30 * var(--basePixel));
  padding-right: calc(30 * var(--basePixel));
  text-align: right;
  text-decoration: underline;
  position: relative;
}
@media (min-width: 767px) {
  #thisPage .link01 {
    font-size: calc(16 * var(--basePixel));
    padding-top: calc(15 * var(--basePixel));
    padding-right: calc(20 * var(--basePixel));
  }
}
#thisPage .tyusyaku {
  display: flex;
}
#thisPage .tyusyaku > *:nth-child(1) {
  flex-shrink: 0;
}
#thisPage .tyusyaku > *:nth-child(2) {
  flex-grow: 1;
}
#thisPage .fadeup > * {
  opacity: 0;
  transform: translateY(100%);
  transition: all 1s ease;
}
#thisPage .fadeup.active > * {
  opacity: 1;
  transform: translateY(0);
}
#thisPage .mv_fadeup {
  animation: mvfadeup 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes mvfadeup {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#thisPage sup {
  font-size: 70%;
  opacity: 1 !important;
}
#thisPage #mv {
  position: relative;
}
@media (min-width: 767px) {
  #thisPage #mv {
    background: url(../img/bg_md.png) repeat-x center top/auto 100%;
    z-index: 2;
  }
}
#thisPage #mv .container {
  padding: 0;
  width: 100%;
  position: relative;
}
@media (min-width: 767px) {
  #thisPage #mv .container {
    background-color: #ffffff;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 767px) and (min-width: 767px) {
  #thisPage #mv .container:before {
    position: absolute;
    content: "";
    width: calc(460.46 * var(--basePixel));
    height: calc(436.29 * var(--basePixel));
    background: url(../img/ashirai02_md.png) no-repeat 0 0/contain;
    top: 100%;
    transform: translateY(-20%) translateX(5%);
    right: 100%;
  }
}
@media (min-width: 767px) {
  #thisPage #mv .container .mv_img {
    position: relative;
  }
}
#thisPage #mv .container .mv_img img {
  width: 100%;
}
@media (min-width: 767px) {
  #thisPage #mv .container .mv_img img {
    width: auto;
  }
}
#thisPage #mv .container .note {
  display: flex;
  font-size: calc(10 * var(--basePixel));
  line-height: 1.8;
  padding: 0 calc(15 * var(--basePixel));
  position: absolute;
  top: calc(486 * var(--basePixel));
  width: 100%;
}
@media (min-width: 767px) {
  #thisPage #mv .container .note {
    top: auto;
    bottom: calc(102 * var(--basePixel));
    font-size: calc(14 * var(--basePixel));
  }
}
#thisPage #mv .txt {
  position: absolute;
  text-align: center;
  font-size: calc(14 * var(--basePixel));
  padding: 0 calc(15 * var(--basePixel));
  top: calc(30 * var(--basePixel));
  width: 100%;
}
@media (min-width: 767px) {
  #thisPage #mv .txt {
    text-align: left;
    font-size: calc(24 * var(--basePixel));
    top: calc(87 * var(--basePixel));
    left: 0;
  }
}
#thisPage #mv .txt span {
  font-size: calc(18 * var(--basePixel));
  line-height: 1.5;
}
@media (min-width: 767px) {
  #thisPage #mv .txt span {
    font-size: calc(31 * var(--basePixel));
  }
}
#thisPage #mv .img_mv_txt {
  position: absolute;
  display: block;
  padding: 0 calc(15 * var(--basePixel));
  top: calc(119 * var(--basePixel));
  left: 50%;
  transform: translateX(-50%);
  width: calc(332 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #mv .img_mv_txt {
    width: calc(671 * var(--basePixel));
    top: calc(237 * var(--basePixel));
    left: 0;
    transform: translateX(0);
  }
}
#thisPage #mv .img_mv_txt img {
  width: 100%;
}
@media (min-width: 767px) {
  #thisPage #mv .img_mv_txt img {
    width: auto;
  }
}
#thisPage #mv .link {
  font-size: calc(10 * var(--basePixel));
  padding-right: calc(15 * var(--basePixel));
  text-align: right;
  line-height: 1.5;
  position: absolute;
  width: 100%;
  bottom: 0;
}
@media (min-width: 767px) {
  #thisPage #mv .link {
    font-size: calc(16 * var(--basePixel));
    bottom: 0;
  }
}
#thisPage #mv .link a {
  padding-right: calc(10 * var(--basePixel));
  position: relative;
}
@media (min-width: 767px) {
  #thisPage #mv .link a {
    padding-right: calc(17 * var(--basePixel));
  }
}
#thisPage #mv .link a:before {
  position: absolute;
  content: "";
  width: calc(9.43 * var(--basePixel));
  aspect-ratio: 9.43/11;
  background: url(../img/icon_pdf.svg) no-repeat 0 0/contain;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (min-width: 767px) {
  #thisPage #mv .link a:before {
    width: calc(15 * var(--basePixel));
  }
}
#thisPage #mv .link a span {
  text-decoration: underline;
}
#thisPage .point {
  color: #1C9CBF;
  font-size: calc(24.6 * var(--basePixel));
  padding: 0 calc(12 * var(--basePixel));
  margin-top: calc(50 * var(--basePixel));
  position: relative;
  line-height: 1.2;
  display: inline-block;
  font-weight: 500;
}
@media (min-width: 767px) {
  #thisPage .point {
    font-size: calc(43.76 * var(--basePixel));
    padding: 0 calc(20 * var(--basePixel));
    margin-top: calc(80 * var(--basePixel));
  }
}
#thisPage .point span {
  font-size: calc(18.45 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage .point span {
    font-size: calc(32.82 * var(--basePixel));
  }
}
#thisPage .point:before, #thisPage .point:after {
  position: absolute;
  content: "";
  width: calc(2 * var(--basePixel));
  height: 60%;
  background-color: #1C9CBF;
  top: 30%;
  left: 0;
}
#thisPage .point:after {
  left: auto;
  right: 0;
}
#thisPage #sec01 {
  padding-top: calc(30 * var(--basePixel));
  padding-bottom: calc(30 * var(--basePixel));
  position: relative;
  overflow: hidden;
}
@media (min-width: 767px) {
  #thisPage #sec01 {
    padding-top: calc(120 * var(--basePixel));
    z-index: 1;
  }
}
#thisPage #sec01:after {
  position: absolute;
  content: "";
  width: calc(79 * var(--basePixel));
  height: calc(81 * var(--basePixel));
  background: url(../img/ashirai01_sm.png) no-repeat 0 0/contain;
  right: 0;
  top: 30%;
  transform: translateX(50%);
}
@media (min-width: 767px) {
  #thisPage #sec01:after {
    width: calc(274 * var(--basePixel));
    height: calc(259 * var(--basePixel));
    background-image: url(../img/ashirai01_md.png);
    top: 50%;
    right: 0;
    transform: translateX(25%);
  }
}
#thisPage #sec01 .container {
  position: relative;
}
#thisPage #sec01 h2 {
  color: #1C9CBF;
  font-size: calc(36.9 * var(--basePixel));
  font-weight: 600;
  padding-left: calc(20 * var(--basePixel));
  position: relative;
  line-height: 1.2;
}
@media (min-width: 767px) {
  #thisPage #sec01 h2 {
    padding-left: calc(25 * var(--basePixel));
    font-size: calc(60 * var(--basePixel));
  }
}
#thisPage #sec01 h2 span {
  font-size: calc(18.45 * var(--basePixel));
  font-weight: 300;
}
@media (min-width: 767px) {
  #thisPage #sec01 h2 span {
    font-size: calc(36 * var(--basePixel));
  }
}
#thisPage #sec01 h2:before {
  position: absolute;
  content: "";
  width: calc(4 * var(--basePixel));
  height: 1em;
  background-color: #1C9CBF;
  top: 0.1em;
  left: 0;
}
@media (min-width: 767px) {
  #thisPage #sec01 h2:before {
    width: calc(5 * var(--basePixel));
  }
}
#thisPage #sec01 .txt {
  font-size: calc(14.35 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #sec01 .txt {
    font-size: calc(20 * var(--basePixel));
  }
}
#thisPage #sec01 .txt span {
  font-size: calc(16.4 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #sec01 .txt span {
    font-size: calc(20 * var(--basePixel));
  }
}
#thisPage .fc_pink {
  color: #BC1571;
}
#thisPage .ls_m05em {
  letter-spacing: -0.05em;
}
#thisPage #sec02 {
  background-color: #F1FCFF;
  padding-top: calc(60 * var(--basePixel));
  position: relative;
  overflow: hidden;
}
@media (min-width: 767px) {
  #thisPage #sec02 {
    padding-top: calc(120 * var(--basePixel));
  }
}
#thisPage #sec02:before {
  position: absolute;
  content: "";
  width: calc(195 * var(--basePixel));
  aspect-ratio: 195/183;
  background: url(../img/ashirai02_sm.png) no-repeat 0 0/contain;
  top: 0;
  right: 0;
  transform: translateX(35%);
}
@media (min-width: 767px) {
  #thisPage #sec02:before {
    width: calc(461 * var(--basePixel));
    aspect-ratio: 461/437;
    background-image: url(../img/ashirai02_md.png);
    top: calc(65 * var(--basePixel));
    transform: translateX(45%);
  }
}
#thisPage #sec02 h2 {
  color: #1C9CBF;
  font-size: calc(36.9 * var(--basePixel));
  font-weight: 600;
  padding-left: calc(20 * var(--basePixel));
  position: relative;
  line-height: 1.2;
}
@media (min-width: 767px) {
  #thisPage #sec02 h2 {
    padding-left: calc(25 * var(--basePixel));
    font-size: calc(60 * var(--basePixel));
  }
}
#thisPage #sec02 h2 span {
  font-weight: 300;
}
#thisPage #sec02 h2:before {
  position: absolute;
  content: "";
  width: calc(4 * var(--basePixel));
  height: 1em;
  background-color: #1C9CBF;
  top: 0.1em;
  left: 0;
}
@media (min-width: 767px) {
  #thisPage #sec02 h2:before {
    width: calc(5 * var(--basePixel));
  }
}
#thisPage #sec02 .txt {
  font-size: calc(14.35 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #sec02 .txt {
    font-size: calc(20 * var(--basePixel));
  }
}
#thisPage #sec02 .txt span {
  font-size: calc(16.4 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #sec02 .txt span {
    font-size: calc(20 * var(--basePixel));
  }
}
#thisPage #sec02 .bg_white {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
#thisPage #sec02 .bg_white:before {
  position: absolute;
  content: "";
  width: calc(143 * var(--basePixel));
  aspect-ratio: 195/183;
  background: url(../img/ashirai02_sm.png) no-repeat 0 0/contain;
  top: 0;
  right: 0;
  transform: translateX(35%);
}
@media (min-width: 767px) {
  #thisPage #sec02 .bg_white:before {
    width: calc(461 * var(--basePixel));
    aspect-ratio: 461/437;
    background-image: url(../img/ashirai02_md.png);
    top: calc(65 * var(--basePixel));
    transform: translateX(45%);
  }
}
#thisPage #sec02 .point03_ashirai {
  position: relative;
  overflow: hidden;
}
#thisPage #sec02 .point03_ashirai:before {
  position: absolute;
  content: "";
  width: calc(143 * var(--basePixel));
  aspect-ratio: 195/183;
  background: url(../img/ashirai02_sm.png) no-repeat 0 0/contain;
  top: 0;
  right: 0;
  transform: translateX(35%);
}
@media (min-width: 767px) {
  #thisPage #sec02 .point03_ashirai:before {
    width: calc(461 * var(--basePixel));
    aspect-ratio: 461/437;
    background-image: url(../img/ashirai02_md.png);
    top: calc(65 * var(--basePixel));
    transform: translateX(45%);
  }
}
#thisPage #sec02 .graph_ttl {
  font-size: calc(18.45 * var(--basePixel));
  font-weight: 600;
}
@media (min-width: 767px) {
  #thisPage #sec02 .graph_ttl {
    font-size: calc(36 * var(--basePixel));
  }
}
#thisPage #sec02 .graph_ttl span {
  font-size: calc(13.33 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #sec02 .graph_ttl span {
    font-size: calc(20 * var(--basePixel));
  }
}
@media (min-width: 767px) {
  #thisPage #sec02 .inner {
    width: calc(840 * var(--basePixel));
    margin-left: auto;
    margin-right: auto;
  }
}
#thisPage #sec02 .t_ttl {
  background: linear-gradient(90deg, #0298C5 0%, #72C3DC 100%);
  font-size: calc(16.4 * var(--basePixel));
  width: 100%;
  height: calc(70 * var(--basePixel));
  padding: 0 calc(10 * var(--basePixel));
  align-content: center;
  border-radius: calc(20 * var(--basePixel));
  position: relative;
  line-height: 1.2;
  margin-top: calc(30 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #sec02 .t_ttl {
    font-size: calc(28 * var(--basePixel));
    margin-top: calc(80 * var(--basePixel));
  }
}
#thisPage #sec02 .t_ttl p {
  text-align: center;
  color: #ffffff;
}
#thisPage #sec02 .t_ttl p span.icon {
  width: calc(30 * var(--basePixel));
  height: calc(30 * var(--basePixel));
  border: 1px solid #ffffff;
  border-radius: 50%;
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  right: calc(10 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #sec02 .t_ttl p span.icon {
    right: calc(40 * var(--basePixel));
  }
}
#thisPage #sec02 .t_ttl p span.icon:before {
  position: absolute;
  content: "";
  width: calc(13 * var(--basePixel));
  height: calc(2 * var(--basePixel));
  background-color: #ffffff;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
#thisPage #sec02 .t_ttl p span.icon:after {
  position: absolute;
  content: "";
  width: calc(2 * var(--basePixel));
  height: calc(13 * var(--basePixel));
  background-color: #ffffff;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
  transition: 0.5s ease;
}
#thisPage #sec02 .t_ttl.open p span.icon:after {
  opacity: 0;
}
#thisPage .note {
  font-size: calc(10 * var(--basePixel));
  display: flex;
  line-height: 1.8;
}
@media (min-width: 767px) {
  #thisPage .note {
    font-size: calc(14 * var(--basePixel));
  }
}
#thisPage #sec03 {
  background-color: #00A3C8;
  position: relative;
  overflow: hidden;
}
#thisPage #sec03:before {
  position: absolute;
  content: "";
  width: calc(230 * var(--basePixel));
  aspect-ratio: 274/259;
  background: url(../img/ashirai01_md.png) no-repeat 0 0/contain;
  top: 0;
  right: 0;
  transform: translateX(35%);
  z-index: 1;
}
@media (min-width: 767px) {
  #thisPage #sec03:before {
    width: calc(461 * var(--basePixel));
    aspect-ratio: 461/437;
    background-image: url(../img/ashirai02_md.png);
    top: calc(65 * var(--basePixel));
    transform: translateX(45%);
  }
}
#thisPage #sec03 .container {
  position: relative;
  z-index: 2;
}
#thisPage #sec03 .point {
  color: #ffffff;
  line-height: 1;
}
#thisPage #sec03 .point:before, #thisPage #sec03 .point:after {
  background-color: #ffffff;
}
#thisPage #sec03 .box_red {
  margin-top: calc(16 * var(--basePixel));
  border: 1px solid #D51717;
  background-color: #C3EAF5;
  color: #D51717;
  padding: calc(16 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #sec03 .box_red {
    margin-top: calc(17 * var(--basePixel));
    padding: calc(16 * var(--basePixel));
  }
}
#thisPage .fc_white {
  color: #ffffff;
}
#thisPage #sec04 .sec04_ttl p {
  font-size: calc(30 * var(--basePixel));
  font-weight: 600;
}
@media (min-width: 767px) {
  #thisPage #sec04 .sec04_ttl p {
    font-size: calc(60 * var(--basePixel));
  }
}
#thisPage #sec04 .sec04_ttl p span {
  font-size: calc(42 * var(--basePixel));
  color: #1C9CBF;
}
@media (min-width: 767px) {
  #thisPage #sec04 .sec04_ttl p span {
    font-size: calc(78 * var(--basePixel));
  }
}
#thisPage #sec04 .sec04_ttl p.small span {
  font-size: calc(15 * var(--basePixel));
  font-weight: 500;
  position: relative;
  padding: 0 calc(20 * var(--basePixel));
  color: #333333;
}
@media (min-width: 767px) {
  #thisPage #sec04 .sec04_ttl p.small span {
    font-size: calc(31.88 * var(--basePixel));
    padding: 0 calc(35 * var(--basePixel));
  }
}
#thisPage #sec04 .sec04_ttl p.small span:before, #thisPage #sec04 .sec04_ttl p.small span:after {
  position: absolute;
  content: "";
  width: 1px;
  height: calc(24 * var(--basePixel));
  background-color: #333333;
  top: 0;
  left: 0;
  transform: rotate(-25deg);
}
@media (min-width: 767px) {
  #thisPage #sec04 .sec04_ttl p.small span:before, #thisPage #sec04 .sec04_ttl p.small span:after {
    height: calc(40 * var(--basePixel));
    transform: rotate(-30deg);
  }
}
#thisPage #sec04 .sec04_ttl p.small span:after {
  left: auto;
  right: 0;
  transform: rotate(25deg);
}
@media (min-width: 767px) {
  #thisPage #sec04 .sec04_ttl p.small span:after {
    transform: rotate(30deg);
  }
}
#thisPage #sec04 .inner {
  margin-top: calc(20 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #sec04 .inner {
    margin-top: calc(46 * var(--basePixel));
  }
}
#thisPage #sec04 .inner .box01 .ttl {
  width: 100%;
  height: calc(62 * var(--basePixel));
  border-radius: calc(20 * var(--basePixel)) calc(20 * var(--basePixel)) 0 0;
  background: linear-gradient(180deg, #ECC448 0%, #CD9433 100%);
  color: #ffffff;
  font-size: calc(18 * var(--basePixel));
  text-align: center;
  align-content: center;
  border: 1px solid #C88E00;
  font-weight: 600;
}
@media (min-width: 767px) {
  #thisPage #sec04 .inner .box01 .ttl {
    height: calc(88 * var(--basePixel));
    font-size: calc(36 * var(--basePixel));
  }
}
#thisPage #sec04 .inner .fund_name {
  color: #C88E00;
  font-size: calc(18 * var(--basePixel));
  text-align: center;
  line-height: 1.5;
  font-weight: 600;
}
@media (min-width: 767px) {
  #thisPage #sec04 .inner .fund_name {
    font-size: calc(30 * var(--basePixel));
  }
}
#thisPage #sec04 .inner ul {
  margin-top: calc(15 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #sec04 .inner ul {
    margin-top: calc(40 * var(--basePixel));
  }
}
#thisPage #sec04 .inner ul li {
  font-size: calc(13 * var(--basePixel));
  padding-left: calc(18 * var(--basePixel));
  position: relative;
  line-height: 1.2;
}
@media (min-width: 767px) {
  #thisPage #sec04 .inner ul li {
    font-size: calc(20 * var(--basePixel));
    padding-left: calc(25 * var(--basePixel));
  }
}
#thisPage #sec04 .inner ul li:before {
  position: absolute;
  content: "";
  width: 1em;
  aspect-ratio: 1/1;
  background: url(../img/icon_check01.svg) no-repeat 0 0/contain;
  top: 0.1em;
  left: 0;
}
#thisPage #sec04 .inner ul li:last-of-type {
  margin-top: calc(13 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #sec04 .inner ul li:last-of-type {
    margin-top: calc(18 * var(--basePixel));
  }
}
@media (min-width: 767px) {
  #thisPage #sec04 .inner .d-md-flex {
    gap: calc(18.77 * var(--basePixel));
  }
}
#thisPage #sec04 .inner .box02 .ttl {
  width: 100%;
  height: calc(88 * var(--basePixel));
  border-radius: calc(20 * var(--basePixel)) calc(20 * var(--basePixel)) 0 0;
  background: linear-gradient(180deg, #1D9DC0 0%, #1A618E 100%);
  color: #ffffff;
  font-size: calc(18 * var(--basePixel));
  text-align: center;
  align-content: center;
  line-height: 1.2;
  border: 1px solid #1A618E;
  font-weight: 600;
}
@media (min-width: 767px) {
  #thisPage #sec04 .inner .box02 .ttl {
    height: calc(136 * var(--basePixel));
    font-size: calc(36 * var(--basePixel));
  }
}
#thisPage #sec04 .inner .box_txt01 {
  border-left: 1px solid #C88E00;
  border-right: 1px solid #C88E00;
  border-bottom: 1px solid #C88E00;
  border-radius: 0 0 calc(20 * var(--basePixel)) calc(20 * var(--basePixel));
  padding: calc(30 * var(--basePixel)) calc(20 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #sec04 .inner .box_txt01 {
    padding: calc(60 * var(--basePixel)) calc(100 * var(--basePixel));
  }
}
#thisPage #sec04 .inner .box_txt02 {
  border-left: 1px solid #1A618E;
  border-right: 1px solid #1A618E;
  border-bottom: 1px solid #1A618E;
  border-radius: 0 0 calc(20 * var(--basePixel)) calc(20 * var(--basePixel));
  padding: calc(30 * var(--basePixel)) calc(20 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #sec04 .inner .box_txt02 {
    padding: calc(60 * var(--basePixel)) calc(100 * var(--basePixel));
  }
}
#thisPage #sec04 .inner a {
  display: block;
  width: 100%;
  height: calc(60 * var(--basePixel));
  background-color: #C88E00;
  color: #ffffff;
  font-size: calc(16.25 * var(--basePixel));
  text-align: center;
  align-content: center;
  border-radius: 50px;
}
@media (min-width: 767px) {
  #thisPage #sec04 .inner a {
    height: calc(80.45 * var(--basePixel));
    font-size: calc(21.79 * var(--basePixel));
  }
  #thisPage #sec04 .inner a:hover {
    opacity: 0.75;
  }
}
#thisPage #sec04 .inner a span {
  padding: 0 calc(15 * var(--basePixel)) 0 calc(20 * var(--basePixel));
  position: relative;
  font-weight: 600;
}
@media (min-width: 767px) {
  #thisPage #sec04 .inner a span {
    padding: 0 calc(20 * var(--basePixel)) 0 calc(26.82 * var(--basePixel));
  }
}
#thisPage #sec04 .inner a span:before {
  position: absolute;
  content: "";
  width: calc(16 * var(--basePixel));
  aspect-ratio: 16/20;
  background: url(../img/icon_fund.svg) no-repeat 0 0/contain;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#thisPage #sec04 .inner a span:after {
  position: absolute;
  content: "";
  width: calc(10 * var(--basePixel));
  height: calc(10 * var(--basePixel));
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  right: 0;
}
#thisPage #sec04 .inner a.btn02 {
  color: #C88E00;
  border: 1px solid #C88E00;
  background-color: #ffffff;
}
#thisPage #sec04 .inner a.btn02 span:before {
  width: calc(17.5 * var(--basePixel));
  aspect-ratio: 17.5/20;
  background-image: url(../img/icon_company01.svg);
}
#thisPage #sec04 .inner a.btn02 span:after {
  border-color: #C88E00;
}
#thisPage #sec04 .inner .box_txt02 .fund_name {
  color: #1A618E;
}
#thisPage #sec04 .inner .box_txt02 ul li:before {
  background-image: url(../img/icon_check02.svg);
}
#thisPage #sec04 .inner .box_txt02 a {
  background-color: #1A618E;
}
#thisPage #sec04 .inner .box_txt02 a.btn02 {
  color: #1A618E;
  border-color: #1A618E;
  background-color: #ffffff;
}
#thisPage #sec04 .inner .box_txt02 a.btn02 span:before {
  background-image: url(../img/icon_company02.svg);
}
#thisPage #sec04 .inner .box_txt02 a.btn02 span:after {
  border-color: #1A618E;
}
#thisPage #disclaimer {
  background-color: #EFEFEF;
  margin-bottom: calc(10 * var(--basePixel));
}
#thisPage #disclaimer a {
  color: #333333;
}
#thisPage .slideToggle {
  cursor: pointer;
}
#thisPage .hidebox {
  display: none;
}
#thisPage .hidebox img {
  width: 80%;
}

.fixbtn {
  text-align: center;
  position: sticky;
  background-color: #ffffff;
  bottom: 0;
  left: 0;
  z-index: 10;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
  height: calc(120 * var(--basePixel));
  align-content: center;
}
@media (min-width: 767px) {
  .fixbtn {
    padding: calc(20 * var(--basePixel)) calc(15 * var(--basePixel));
  }
}
.fixbtn .d-flex {
  width: 100%;
  gap: 0;
}
@media (min-width: 767px) {
  .fixbtn .d-flex {
    gap: 0 calc(20 * var(--basePixel));
    justify-content: center;
  }
}
.fixbtn .d-flex img {
  width: 100%;
}
.fixbtn .d-flex > a {
  width: 50%;
}
@media (min-width: 767px) {
  .fixbtn .d-flex > a {
    width: calc(470 * var(--basePixel));
  }
}
.fixbtn a {
  transition: opacity 0.5s ease;
}
.fixbtn a:hover {
  opacity: 0.75;
}
.fixbtn .fix_txt {
  width: calc(297 * var(--basePixel));
}
@media (min-width: 767px) {
  .fixbtn .fix_txt {
    width: calc(386 * var(--basePixel));
  }
}

.str-pagetop {
  bottom: calc(120 * var(--basePixel));
}
@media (min-width: 767px) {
  .str-pagetop {
    bottom: 0;
  }
}

.modal_btn {
  width: 100%;
  height: calc(45.8 * var(--basePixel));
  background: linear-gradient(90deg, #0298C5 0%, #72C3DC 100%);
  border-radius: 100px;
  text-align: center;
  align-content: center;
  position: relative;
  font-size: calc(16.4 * var(--basePixel));
  font-weight: 700;
  color: #ffffff;
}
.modal_btn:before {
  position: absolute;
  content: "";
  width: calc(30 * var(--basePixel));
  height: calc(30 * var(--basePixel));
  background: url(../img/icon_exp.svg) no-repeat center/contain;
  top: 50%;
  transform: translateY(-50%);
  right: calc(20 * var(--basePixel));
}

.modalBox {
  height: auto;
}
.modalBox .modal_inner .sec02_modal_img08 img {
  width: 200vw;
  max-width: none;
}
/* uni-note */
.uni-note {
  width: 100%;
  padding: 0 calc(15 * var(--basePixel)) !important;
  top: calc(508 * var(--basePixel));
  position: absolute;
}
.uni-note__item {
  display: flex;
  gap: 5px;
  font-size: 10px !important;
  margin-top: 5px !important;
  line-height: 1.8 !important;
}
.uni-note__item:first-child {
  margin-top: 0;
}
.ac_kouhaitou-link:hover {
  text-decoration: underline !important;
}
@media (min-width: 767px) {
  .uni-note {
    top: auto;
    bottom: calc(70 * var(--basePixel));
  }
  .uni-note__item {
    font-size: 14px !important;
  }
}
/*# sourceMappingURL=style.css.map */
