@charset "UTF-8";
@keyframes bottom-top {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes top-bottom {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes big-small {
  0% {
    opacity: 0;
    transform: scale(1.25);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input,
select,
textarea {
  box-sizing: border-box;
}

html {
  /* Sets a specific default `font-size` for user with `rem` type scales.*/
  font-size: 100%;
  /* Changes the default tap highlight to be completely transparent in iOS.*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  color: #000;
  line-height: 1.6;
  background: #fff;
  font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, sans-serif;
  font-weight: 400;
}

strong {
  font-weight: bold;
}

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

a {
  text-decoration: none;
  color: #000;
}
a:hover {
  opacity: 0.8;
}

.blue {
  color: #0086d1;
}

.alpha {
  font-family: "Lato", sans-serif;
}

.contain {
  width: 1100px;
  min-width: 1100px;
  margin: 0 auto;
}

.wrapper {
  min-width: 1100px;
}

.sp,
.sp370 {
  display: none;
}

.btn {
  text-align: center;
}
.btn a {
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 59px;
  transition: 0.3s;
  transition-property: background, border;
  position: relative;
  display: inline-block;
  /*&:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: '';
    background: $color-white;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
  }*/
}
.btn a:hover {
  border: 1px solid #0064be;
  background: #0064be;
  opacity: 1;
  /*&:before {
      transform-origin: left top;
      transform: scale(1, 1);
    }*/
}

.btn_gray,
.btn_black {
  text-align: center;
}

.btn_gray a,
.btn_black a {
  /*padding: 16px 154px;*/
  width: 400px;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  transition: 0.3s;
  transition-property: background, border;
  position: relative;
  /*&:before {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        content: '';
        transform-origin: right top;
        transform: scale(0, 1);
        transition: transform .3s;
      }*/
}

.btn_gray a:hover,
.btn_black a:hover {
  border: 1px solid #0064be;
  background: #0064be;
  opacity: 1;
  /*&:before {
          transform-origin: left top;
          transform: scale(1, 1);
        }*/
}

.btn_gray {
  margin-top: 60px;
}
.btn_gray a {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.btn_gray a:before {
  background: rgba(0, 0, 0, 0.2);
}
.btn_gray a:hover {
  color: #fff;
}

.btn_black a {
  border: 1px solid #000;
}
.btn_black a:before {
  background: #000;
}
.btn_black a:hover {
  color: #fff;
}

.btn_entry {
  text-align: center;
  margin-top: 60px;
}
.btn_entry a {
  /*background-color: $color-primary;
  color: $color-white;*/
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  width: 500px;
  height: 54px;
  line-height: 54px;
  transition: 0.3s linear;
  transition-property: background, color, border;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  /*&:before {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: '';
    transition: .3s linear;
  }*/
  height: 70px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.btn_entry a:hover {
  opacity: 1;
  background-color: #0064be;
  border: 1px solid #0064be;
  color: #fff;
  /*&:before {
    left: 0;
    background-color: $color-second-primary;
  }*/
}

@media screen and (max-width: 768px) {
  .btn_entry a {
    width: 92.68%;
    height: 50px;
    line-height: 50px;
    display: block;
    font-size: 0.8125rem;
    margin: 0 3.66%;
  }
}
.btn_submit {
  text-align: center;
}
.btn_submit button {
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 500;
  /*background-color: $color-primary;
  color: $color-white;*/
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  width: 500px;
  height: 54px;
  line-height: 54px;
  transition: 0.3s linear;
  transition-property: background, color, border;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  /*&:before {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: '';
    transition: .3s linear;
  }*/
  height: 76px;
  line-height: 76px;
}
.btn_submit button:hover {
  opacity: 1;
  background-color: #0064be;
  border: 1px solid #0064be;
  color: #fff;
  /*&:before {
    left: 0;
    background-color: $color-second-primary;
  }*/
}
.btn_submit button:disabled {
  cursor: not-allowed;
  background: #dedede;
  border: 1px solid #dedede;
  color: #9c9c9c;
}
.btn_submit button:disabled:hover {
  border: 1px solid #dedede;
  color: #9c9c9c;
  /*&:before {
          left: -100%;
        }*/
}

@media screen and (max-width: 768px) {
  .btn_submit button {
    width: 92.68%;
    height: 50px;
    line-height: 50px;
    display: block;
    font-size: 0.8125rem;
    margin: 0 3.66%;
  }
}
.header {
  padding: 0 15px 0 30px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  transition: background 0.5s ease;
  min-width: 1100px;
}
.header.hidden {
  background: none;
  transition: background 0.5s ease;
}
.header.hidden .gNav_sub {
  background: none;
  top: 82px;
  left: 0;
  padding: 0;
}
.header nav {
  display: flex;
}
.header .logo {
  margin: 15px auto 15px 0;
}

.gNav {
  display: flex;
  align-items: center;
  /* &_contact {
    a {
      background: $color-primary;
      color: $color-white;
      font-size: 1.625rem;;
      padding: 10px 17px;
      &:hover {
        color: $color-white;
      }
    }
  } */
}
.gNav.sp {
  display: none;
}
.gNav li {
  font-size: 0.9375rem;
  font-weight: 500;
  height: 89px;
  display: flex;
  align-items: center;
}
.gNav li:not(:last-of-type) {
  margin-right: 40px;
}
.gNav li.current {
  color: #0086d1;
}
.gNav li.current a {
  color: #0086d1;
}
.gNav li.current .gNav_sub a {
  color: #000;
}
.gNav li.current .gNav_sub a:hover {
  color: #0086d1;
}
.gNav a {
  display: block;
  transition: 0.5s;
}
.gNav a:hover {
  color: #0086d1;
}

.gNav_main {
  position: relative;
}

.gNav_sub {
  display: none;
  position: absolute;
  top: 89px;
  left: -30px;
  width: 240px;
  background: #fff;
  padding: 20px 0 20px 30px;
}
.gNav_sub li {
  height: inherit;
}
.gNav_sub li + li {
  margin-top: 1.25em;
}

.link {
  background: url(../img/common/bg_link.png) center center/cover no-repeat;
  padding: 69px 0;
}
.link ul {
  display: flex;
  justify-content: space-between;
}
.link li {
  width: 535px;
}
.link li a {
  display: block;
  border: 1px solid #fff;
  color: #fff;
  padding: 26px 0;
  transition: 0.3s;
  position: relative;
  text-align: center;
}
.link li a:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: #fff;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.link li a:hover {
  color: #000;
  opacity: 0.99;
}
.link li a:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.link li a:hover .link_arrow {
  background: #000;
}
.link li a:hover .link_arrow:before {
  background: #000;
}

.link_arrow {
  top: 50%;
  right: 31px;
  position: relative;
  height: 1px;
  background: #fff;
  width: 37px;
  display: inline-block;
  margin-left: 0.4rem;
  transition: all 0.2s;
  position: absolute;
  display: block;
}
.link_arrow:before {
  content: "";
  position: absolute;
  top: -3px;
  right: -2px;
  width: 12px;
  height: 1px;
  background: #fff;
  transform: rotate(30deg);
}

.footer {
  background: url(../img/common/bg_footer.png) center center/cover no-repeat;
}

.footer_top {
  padding: 64px 0;
}
.footer_top .contain {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_list {
  display: flex;
  line-height: 2.6;
}

.footer_list-main {
  margin-right: 64px;
}
.footer_list-main.last {
  margin-right: 0;
}
.footer_list-main > li {
  font-size: 0.8125rem;
  position: relative;
  padding-left: 12px;
}
.footer_list-main > li a {
  color: #fff;
}
.footer_list-main > li a:before {
  content: "";
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  width: 8px;
  top: 16px;
  left: 0;
  position: absolute;
}

.footer_list-sub {
  margin-left: 1em;
}
.footer_list-sub > li a:before {
  display: none;
}

.footer_bottom {
  background: #f8f8f8;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer_copy {
  color: #aaaaaa;
  font-size: 0.8125rem;
  font-family: "Lato", sans-serif;
  margin-right: 34px;
}

.footer_totop a {
  background: #bfbfbf;
  padding: 30px 26px 20px;
  display: block;
}

.footer_totop-icon {
  left: 3px;
  width: 15px;
  height: 15px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg);
  display: block;
}

_:-ms-lang(x)::-ms-backdrop,
.footer_list-main > li:before {
  top: 15px;
}

#key {
  position: relative;
  height: 834px;
  overflow: hidden;
  background: #f8f8f8;
}
#key:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background: url(../img/index/key.jpg) center bottom/cover no-repeat;
  transform: scale(1.25);
  opacity: 0;
}

.key_info {
  text-align: center;
  padding: 304px 0 0 0;
}

.key_ttl {
  text-align: center;
  display: inline-block;
  margin: 0 auto 83px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation-delay: 1s;
  /*font-size: 3.75rem;
    font-weight: 700;
    font-family: $font-family-lato;
    background: $color-white-opacity-light;
    padding: 10px 35px;
    letter-spacing: .25em;
    .blue {
      font-family: $font-family-primary;
      letter-spacing: 0em;
      font-size: 1em;
    }*/
}

.key_catch {
  text-align: center;
  display: inline-block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation-delay: 1.5s;
  /*background: $color-white-opacity-light;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 26px 40px;
    letter-spacing: .14em;
    line-height: 2;
    .blue {
      font-size: 1.333em;
      letter-spacing: 0;
    }*/
}

#key.is-show:after {
  animation-name: big-small;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
#key.is-show .key_ttl,
#key.is-show .key_catch {
  animation-name: fadein;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.content_ttl {
  letter-spacing: 0.12em;
  font-size: 2.75rem;
  margin: 88px 0 12px;
  text-align: center;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  background: -webkit-linear-gradient(0deg, #006dc2, #009ada);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.content_ttl-jp {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  margin: -10px 0 40px;
  text-align: center;
}
.content_ttl-jp + .content_catch {
  font-weight: 400;
}

.content_ttl-wrapper {
  text-align: center;
}

.content_catch {
  font-size: 1.125rem;
  text-align: center;
  margin: -10px 0 42px;
  font-weight: 500;
}
.content_catch .blue {
  font-size: 1.333em;
}

.content_subttl {
  color: #fff;
  font-size: 2.125rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 55px;
  /*display: inline-block;*/
  letter-spacing: 0.1em;
}
.content_subttl .alpha {
  font-size: 1.125rem;
  letter-spacing: 0.12em;
}

.content_leftttl {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}

.content_leftttl-text {
  display: flex;
  align-items: baseline;
}

.content_leftttl-icon {
  margin-right: 25px;
  margin-bottom: 16px;
}

.content_leftttl-ttl {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  background: -webkit-linear-gradient(0deg, #006dc2, #009ada);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 11px;
}

.content_leftttl-sub {
  font-weight: 500;
}

.content_waku {
  background: #f8f8f8;
  padding: 40px 30px;
  position: relative;
  /*&-inner {
      &:before, &:after {
        content:'';
        width: 10px;
        height: 10px;
        position: absolute;
        display: inline-block;
      }
      &:before {
        border-left: solid 2px $color-primary;
        border-bottom: solid 2px $color-primary;
        bottom:0;
        left: 0;
      }
      &:after {
        border-right: solid 2px $color-primary;
        border-top: solid 2px $color-primary;
        top:0;
        right: 0;
      }
    }
    &:before, &:after {
      content:'';
      width: 10px;
      height: 10px;
      position: absolute;
      display: inline-block;
    }
    &:before {
      border-left: solid 2px $color-primary;
      border-top: solid 2px $color-primary;
      top:0;
      left: 0;
    }
    &:after {
      border-right: solid 2px $color-primary;
      border-bottom: solid 2px $color-primary;
      bottom:0;
      right: 0;
    }*/
}

.content_waku-catch {
  text-align: center;
  font-weight: 500;
  line-height: 2;
  font-size: 1.125rem;
}

_:-ms-lang(x)::-ms-backdrop,
.content_ttl {
  color: #006dc2;
}

.mission {
  background: url(../img/index/bg_mission.jpg) center center/cover no-repeat;
  opacity: 0;
}
.mission.is-show {
  animation: fadein 0.8s ease-in-out forwards;
}

.mission_info {
  /*margin-top: -40px;*/
  padding: 80px 0 90px;
}

.mission_info-text {
  color: #fff;
  /*font-size: 1.0625rem;*/
  text-align: center;
  line-height: 2.5;
  margin-bottom: 40px;
  position: relative;
}

.mission_info .btn a {
  font-size: 1.0625rem;
  padding: 16px 75px;
}

.index .news,
.index .fund {
  opacity: 0;
}
.index .news.is-show,
.index .fund.is-show {
  animation: fadein 0.8s ease-in-out forwards;
}

/*.fund_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fund_info-left, .fund_info-right {
  position: relative;
  width: 50%;
  text-align: center;
  overflow: hidden;
}

.fund_info-left a, .fund_info-right a {
  padding: 158px 0 155px;
  display: block;
}

.fund_info-left a:after, .fund_info-right a:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  -webkit-transition: all .6s ease-out;
  transition: all .6s ease-out;
}

.fund_info-left a:hover, .fund_info-right a:hover {
  opacity: 1;
}

.fund_info-left a:hover:after, .fund_info-right a:hover:after {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.fund_info-left a:hover .btn, .fund_info-right a:hover .btn {
  */ /*color: $color-black;*/ /*
opacity: 1;
background: #0064be;
border: 1px solid #0064be;

*/ /*&:before {
         transform-origin: left top;
         transform: scale(1, 1);
       }*/ /*
}

.fund_info-left a:after {
  background: url(../img/index/bg_fund01.jpg) center (center / cover) no-repeat;
}

.fund_info-right a:after {
  background: url(../img/index/bg_fund02.jpg) center (center / cover) no-repeat;
}

.fund_info {
  .content_subttl {
    position: relative;
    z-index: 2;
  }

  .btn {
    position: relative;
    z-index: 2;
    text-align: inherit;
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 59px;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transition-property: background, border;
    transition-property: background, border;
    position: relative;

  */ /*&:before {
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   z-index: -1;
   content: '';
   background: $color-white;
   transform-origin: right top;
   transform: scale(0, 1);
   transition: transform .3s;
 }*/ /*
  }
}*/
.fund_info {
  display: flex;
}
.fund_info-left, .fund_info-right, .fund_info_item {
  position: relative;
  width: 50%;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .fund_info-left, .fund_info-right, .fund_info_item {
    width: 100%;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 768px) {
  .fund_info-left:last-child, .fund_info-right:last-child, .fund_info_item:last-child {
    margin-bottom: 0;
  }
}
.fund_info-left a, .fund_info-right a, .fund_info_item a {
  padding: 158px 0 155px;
  display: block;
}
@media screen and (max-width: 768px) {
  .fund_info-left a, .fund_info-right a, .fund_info_item a {
    padding: 72px 0;
  }
}
.fund_info-left a:after, .fund_info-right a:after, .fund_info_item a:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  transition: all 0.6s ease-out;
}
.fund_info-left a:hover, .fund_info-right a:hover, .fund_info_item a:hover {
  opacity: 1;
}
.fund_info-left a:hover:after, .fund_info-right a:hover:after, .fund_info_item a:hover:after {
  transform: scale(1.05);
}
.fund_info-left a:hover .btn, .fund_info-right a:hover .btn, .fund_info_item a:hover .btn {
  /*color: $color-black;*/
  opacity: 1;
  background: #0064be;
  border: 1px solid #0064be;
  /*&:before {
    transform-origin: left top;
    transform: scale(1, 1);
  }*/
}
.fund_info-left a:after {
  background: url(../img/index/bg_fund01.jpg) center center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .fund_info-left a:after {
    background-image: url(../img/index/bg_fund01_sp.jpg);
  }
}
.fund_info-center a:after {
  background: url(../img/index/bg_fund02.jpg) center center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .fund_info-center a:after {
    background-image: url(../img/index/bg_fund02_sp.jpg);
  }
}
.fund_info-right a:after {
  background: url(../img/index/bg_fund03.jpg) center center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .fund_info-right a:after {
    background-image: url(../img/index/bg_fund03_sp.jpg);
  }
}
.fund_info .content_subttl {
  font-size: 35px;
  line-height: 46px;
  letter-spacing: 0.14em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .fund_info .content_subttl {
    font-size: 22px;
    line-height: 28px;
  }
}
.fund_info .btn {
  position: relative;
  z-index: 2;
  text-align: inherit;
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 59px;
  transition: 0.3s;
  transition-property: background, border;
  position: relative;
  /*&:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: '';
    background: $color-white;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
  }*/
}

.news {
  /*background: $color-bg-gray;*/
  padding: 90px 0;
}
.news .content_ttl {
  margin: 0 0 12px;
}

.news_item {
  margin-bottom: 10px;
  display: block;
}

.news_item-meta {
  display: flex;
}

.news_item dl {
  background: #f8f8f8;
  display: flex;
  padding: 32px 20px;
  position: relative;
  /*box-shadow: 2.65px 4.24px 12px 0px rgba(0, 0, 0, 0.03);*/
}
.news_item dt {
  /*color: $color-second-primary;*/
  font-size: 0.875rem;
  margin-right: 20px;
  font-family: "Lato", sans-serif;
  width: 72px;
}

.news_icon {
  font-size: 0.75rem;
  color: #fff;
  width: 120px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  margin-right: 20px;
}

.news_icon-toushi {
  background: #0086d1;
}

.news_icon-release {
  background: #7fcc56;
}

.news_text {
  width: 760px;
}
.news_text i {
  margin-left: 0.4rem;
  color: #c9c9c9;
}

.news_arrow {
  top: 50%;
  right: 31px;
  position: relative;
  height: 1px;
  background: #9fa0a0;
  width: 37px;
  display: inline-block;
  margin-left: 0.4rem;
  transition: all 0.2s;
  position: absolute;
  display: block;
}
.news_arrow:before {
  content: "";
  position: absolute;
  top: -3px;
  right: -2px;
  width: 12px;
  height: 1px;
  background: #9fa0a0;
  transform: rotate(30deg);
}

#target {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
#target li {
  width: 25%;
  text-align: center;
  border-right: 1px solid #c9c9c9;
}
#target li:first-of-type {
  border-left: 1px solid #c9c9c9;
}
#target li a {
  display: block;
  color: #333;
  font-size: 0.875rem;
  cursor: pointer;
}
#target li.active a {
  color: #0086d1;
}

#pager {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
#pager li {
  background: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #666;
  border: 1px solid #c9c9c9;
  cursor: pointer;
  transition: 0.3s;
}
#pager li.active {
  background: #0086d1;
  border: 1px solid #0086d1;
  color: #fff;
}
#pager li + li {
  margin-left: 13px;
}
#pager li.point {
  width: 20px;
  background: inherit;
  border: none;
  cursor: inherit;
}
#pager li.point:hover {
  border: none;
}
#pager li:hover {
  border: 1px solid #0064be;
  background: #0064be;
  color: #fff;
}

.detail {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.detail_meta {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

.detail_meta-release {
  background: #7fcc56;
}

.detail_meta-toushi {
  background: #0064be;
}

.detail_meta dt {
  color: #fff;
  margin-right: 20px;
  width: 160px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.detail_meta dd {
  font-family: "Lato", sans-serif;
  /*color: $color-second-primary;*/
}

.detail_ttl {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.detail_text {
  line-height: 2;
  margin-bottom: 1.6em;
}
.detail_text + .border_ttl {
  margin-top: 80px;
}

.detail_text-contact {
  color: #0064be;
}

.detail .indent {
  text-indent: -1em;
  padding-left: 1em;
}

.detail_border {
  border: none;
  border-top: 1px solid #c9c9c9;
  margin: 40px 0 1.6em;
}
.detail_border + .detail_text {
  margin-top: 40px;
}

.detail .btn_gray {
  padding-top: 54px;
  margin: 0 0 116px;
}

.release_img {
  margin-bottom: 28px;
}

.release_img2 {
  margin-bottom: 28px;
  text-align: center;
}

.investee_logo {
  margin-bottom: 60px;
  text-align: center;
}

.investee .defTable {
  margin-bottom: 80px;
}

.defTable {
  width: 100%;
}
.defTable tr {
  border-bottom: 4px solid #fff;
}
.defTable th {
  background: #a5b0b9;
  color: #fff;
  font-weight: 500;
  width: 210px;
  text-align: center;
  padding: 20px 28px;
  border-right: 4px solid #fff;
  vertical-align: middle;
}
.defTable td {
  background: #f8f8f8;
  width: 886px;
  padding: 20px 28px;
}

.subcon_ttl {
  background: url(../img/common/bg_ttl.png) center center/cover no-repeat;
  color: #fff;
}

.subcon_ttl-alpha {
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  /*font-family: 'Bebas Neue', cursive;
      font-size: 4rem;
      font-weight: 500;
      letter-spacing: .1em;*/
  padding: 74px 0 10px;
}

.subcon_ttl-jp {
  text-align: center;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding-bottom: 64px;
}

.subcon_phottl {
  color: #fff;
}

.subcon_phottl-alpha {
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  /*font-family: 'Bebas Neue', cursive;
      font-size: 4rem;
      font-weight: 500;
      letter-spacing: .1em;*/
  padding: 111px 0 10px;
}

.subcon_phottl-jp {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  padding-bottom: 126px;
  letter-spacing: 0.1em;
}

.subcon_catch {
  background: -webkit-linear-gradient(0deg, #006dc2, #009ada);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.5rem;
  text-align: center;
  font-weight: 500;
  margin-bottom: 42px;
  display: inline-block;
  letter-spacing: 0.1em;
}

.subcon_catch-wrapper {
  text-align: center;
}

.subcon_text {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
}
.subcon_text.grad {
  background: -webkit-linear-gradient(0deg, #006dc2, #009ada);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem;
  margin-bottom: 60px;
  margin-top: -30px;
}

_:-ms-lang(x)::-ms-backdrop,
.subcon_catch,
_:-ms-lang(x)::-ms-backdrop,
.subcon_text.grad {
  color: #006dc2;
}

.breadcrumb {
  border-bottom: 1px solid #eaeaea;
  color: #9fa0a0;
  font-size: 0.875rem;
  padding: 15px 60px;
  margin-bottom: 90px;
}
.breadcrumb.nonmargin {
  margin-bottom: 0;
}
.breadcrumb i {
  font-size: 1.125rem;
}
.breadcrumb a {
  color: #9fa0a0;
}
.breadcrumb ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb li + li:before {
  content: "＞";
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}

_:-ms-lang(x)::-ms-backdrop,
.breadcrumb {
  padding: 15px 60px 10px;
}

_:-ms-lang(x)::-ms-backdrop,
.breadcrumb i {
  margin-bottom: 10px;
}

.wedo .subcon_phottl {
  background: url(../img/fund/index/bg_ttl.jpg) center center/cover no-repeat;
}
.wedo .subcon_img {
  background: url(../img/fund/index/img01.jpg) center center/cover no-repeat;
  height: 300px;
  margin-top: 58px;
}

.wedo_info {
  margin-bottom: -30px;
}

.wedo_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.wedo_item {
  width: 535px;
  background: #f4f5f7;
  position: relative;
  margin-bottom: 30px;
  opacity: 0;
}
.wedo_item.is-show {
  animation: bottom-top 0.6s ease-in-out forwards;
}

.wedo_item-num {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #006cc2 0%, #0099d9 50%, transparent 0);
  width: 120px;
  height: 120px;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 1.875rem;
  padding: 8px 0 0 15px;
  font-weight: 700;
}

.wedo_item-ttl {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0086d1;
  text-align: center;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.wedo_item-ttl:before {
  position: absolute;
  content: "";
  left: calc(50% - 30px);
  bottom: 2px;
  width: 60px;
  height: 2px;
  background: #c9c9c9;
}

.wedo_item-text {
  /*padding: 30px 37px;*/
  padding: 30px 25px;
  font-size: 0.9375rem;
  line-height: 1.8;
}

.wedo .fund {
  margin-bottom: 90px;
}

.hybrid .subcon_phottl {
  background: url(../img/fund/hybrid/bg_ttl.jpg) center center/cover no-repeat;
}
.hybrid .subcon_catch {
  font-family: "Lato", sans-serif;
  letter-spacing: 0.15em;
}

.hybrid_sec {
  /*padding-bottom: 80px;
    border-bottom: 1px solid $color-gray-lieghter;*/
}
.hybrid_sec.noborder {
  border-bottom: none;
}

.hybrid_img {
  text-align: center;
}

.hybrid_img01 {
  margin-top: 90px;
}

.hybrid_img02 {
  margin: 60px 0 70px;
}

.hybrid_img03 {
  margin: 30px 0 50px;
}

.hybrid_img04 {
  position: relative;
  z-index: 4;
  margin-bottom: -34px;
  opacity: 0;
}
.hybrid_img04.is-show {
  animation: top-bottom 0.6s ease-in-out forwards;
}

.hybrid_img05 {
  position: relative;
  z-index: 3;
  opacity: 0;
}
.hybrid_img05.is-show {
  animation: top-bottom 0.6s ease-in-out forwards;
}

.hybrid_img06 {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  margin-bottom: 20px;
  opacity: 0;
}
.hybrid_img06.is-show {
  animation: top-bottom 0.6s ease-in-out forwards;
}

.hybrid_img07 {
  position: relative;
  z-index: 1;
  opacity: 0;
}
.hybrid_img07.is-show {
  animation: top-bottom 0.6s ease-in-out forwards;
}

.hybrid_comment {
  max-width: 780px;
  margin: 25px auto 0;
  position: relative;
  padding-left: 1.2em;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.55);
}
.hybrid_comment:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.hybrid_scheme {
  width: 535px;
  padding: 40px 25px;
}

.hybrid_scheme-outer {
  display: flex;
  justify-content: space-between;
}

.hybrid_scheme-ttl {
  color: #0086d1;
  text-align: center;
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 1.125rem;
}

.hybrid_scheme-text {
  margin: 0 22px;
}

.hybrid_scheme table {
  width: 486px;
}
.hybrid_scheme th,
.hybrid_scheme td {
  padding: 3px 0;
}
.hybrid_scheme th {
  width: 3em;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.55);
  text-align: left;
}

.sky .subcon_phottl {
  background: url(../img/fund/sky/bg_ttl.jpg) center center/cover no-repeat;
}
.sky .subcon_phottl-alpha {
  font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, sans-serif;
  letter-spacing: 0.2em;
}

.sky_sec {
  /*padding-bottom: 80px;
    border-bottom: 1px solid $color-gray-lieghter;*/
}
.sky_sec.noborder {
  border-bottom: none;
}

.sky_img {
  text-align: center;
}

.sky_img01 {
  margin-top: 70px;
  opacity: 0;
}
.sky_img01.is-show {
  animation: top-bottom 0.6s ease-in-out forwards;
}

.sky_img02 {
  margin-top: 70px;
  margin-left: 20px;
  opacity: 0;
}
.sky_img02.is-show {
  animation: top-bottom 0.6s ease-in-out forwards;
}

.sky_img03 {
  margin-bottom: -56px;
  opacity: 0;
}
.sky_img03.is-show {
  animation: top-bottom 0.6s ease-in-out forwards;
}

.sky_img04,
.sky_img05 {
  opacity: 0;
}
.sky_img04.is-show,
.sky_img05.is-show {
  animation: top-bottom 0.6s ease-in-out forwards;
}

.sky_img06 {
  margin-bottom: 50px;
  margin-left: 13px;
}

.sky_img-outer {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
}

.sky_target {
  background: #f8f8f8;
  padding: 40px;
  margin: 0 100px;
}
.sky_target dl {
  border-bottom: 1px solid #c9c9c9;
  padding: 20px 0;
  display: flex;
}
.sky_target dl:first-of-type {
  border-top: 1px solid #c9c9c9;
}
.sky_target dl dt {
  padding: 0 30px;
  width: 240px;
}
.sky_target dl dd {
  padding: 0 30px 0 0;
}

.jng .subcon_phottl {
  background: url(../img/fund/jng/bg_ttl.jpg) center center/cover no-repeat;
}
.jng .subcon_catch {
  font-family: "Lato", sans-serif;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  .jng .subcon_catch {
    line-height: 1.2;
  }
}
@media screen and (max-width: 768px) {
  .jng .subcon_text {
    line-height: 30px;
  }
}
@media screen and (max-width: 768px) {
  .jng .content_waku-catch {
    line-height: 1.75;
    font-feature-settings: "palt";
  }
}
@media screen and (max-width: 768px) {
  .jng .defTable td {
    font-size: 13px;
  }
}
.jng_sec {
  /*padding-bottom: 80px;
  border-bottom: 1px solid $color-gray-lieghter;*/
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .jng_sec {
    margin-bottom: 60px;
  }
}
.jng_sec:last-child {
  margin-bottom: 0;
}
.jng_sec.noborder {
  border-bottom: none;
}
.jng_sec + hr {
  margin: 120px 0;
}
@media screen and (max-width: 768px) {
  .jng_sec + hr {
    margin: 60px 0;
  }
}
.jng_sec .content_ttl:first-child {
  margin-top: 0;
}
.jng_img {
  text-align: center;
}
.jng_img01 {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .jng_img01 {
    margin-top: 45px;
  }
}
.jng_img02 {
  margin: 60px 0 70px;
}
.jng_img03 {
  margin: 30px 0 50px;
}
.jng_img04 {
  position: relative;
  z-index: 4;
  margin-bottom: -34px;
  opacity: 0;
}
.jng_img04.is-show {
  animation: top-bottom 0.6s ease-in-out forwards;
}
.jng_img05 {
  position: relative;
  z-index: 3;
  opacity: 0;
}
.jng_img05.is-show {
  animation: top-bottom 0.6s ease-in-out forwards;
}
.jng_img06 {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  margin-bottom: 20px;
  opacity: 0;
}
.jng_img06.is-show {
  animation: top-bottom 0.6s ease-in-out forwards;
}
.jng_img07 {
  position: relative;
  z-index: 1;
  opacity: 0;
}
.jng_img07.is-show {
  animation: top-bottom 0.6s ease-in-out forwards;
}
.jng_comment {
  max-width: 780px;
  margin: 25px auto 0;
  position: relative;
  padding-left: 1.2em;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.55);
}
.jng_comment:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.jng_scheme {
  width: 535px;
  padding: 40px 25px;
}
.jng_scheme-outer {
  display: flex;
  justify-content: space-between;
}
.jng_scheme-ttl {
  color: #0086d1;
  text-align: center;
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 1.125rem;
}
.jng_scheme-text {
  margin: 0 22px;
}
.jng_scheme table {
  width: 486px;
}
.jng_scheme th,
.jng_scheme td {
  padding: 3px 0;
}
.jng_scheme th {
  width: 3em;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.55);
  text-align: left;
}
.jng .overview .defTable {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .jng .overview .defTable {
    margin-bottom: 40px;
  }
}
.jng .overview_list img {
  display: block;
}
.jng .footer_above_links {
  padding: 70px 0;
  background: url(../img/fund/jng/footer_above_links_bg.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .jng .footer_above_links {
    padding: 35px 0;
  }
}
.jng .footer_above_links_lsit {
  display: flex;
  margin: -15px;
}
@media screen and (max-width: 768px) {
  .jng .footer_above_links_lsit {
    margin: -7px;
  }
}
.jng .footer_above_links_lsit_item {
  width: 50%;
  padding: 15px;
}
@media screen and (max-width: 768px) {
  .jng .footer_above_links_lsit_item {
    padding: 7px;
  }
}
.jng .footer_above_links_lsit_item_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  border: 1px solid #fff;
  background: url(../img/fund/jng/footer_above_links_arw.png) center right 30px/37px no-repeat;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .jng .footer_above_links_lsit_item_inner {
    height: 50px;
    background-position: center right 15px;
    background-size: 18px;
    font-size: 13px;
  }
}
.jng .footer {
  background: #fff;
}
@media screen and (max-width: 768px) {
  .jng .footer_list-main {
    border-color: rgba(0, 0, 0, 0.1);
  }
}
.jng .footer_list-main > li {
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .jng .footer_list-main > li {
    border-color: rgba(0, 0, 0, 0.1);
  }
}
.jng .footer_list-main > li a {
  color: #666;
}
.jng .footer_list-main > li a:before {
  border-top: 1px solid #666;
}
.jng .footer_bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.overview {
  /*background: $color-bg-gray;*/
  padding: 0 0 120px;
  /*.borderB_ttl {
    padding-top: 60px;
  }*/
}
.overview .contain {
  background: #fff;
  /*padding-bottom: 80px;*/
}
.overview .defTable {
  margin: 0 40px 60px;
  width: calc(100% - 80px);
}

.overview_list {
  display: flex;
  margin-inline: 40px;
  justify-content: left;
  flex-wrap: wrap;
  gap: 24px 40px;
}
.overview_list a {
  display: block;
  cursor: pointer;
}

.overview_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.overview_info-name {
  font-size: 1.875rem;
  font-weight: 500;
  border-bottom: 1px solid #c9c9c9;
  padding-bottom: 34px;
}

.overview_info dl {
  display: flex;
  padding: 24px 10px;
  border-bottom: 1px solid #c9c9c9;
}
.overview_info dt {
  width: 19.557195572%;
  font-weight: 500;
}
.overview_info dd {
  width: 80.442804428%;
  color: #333;
  line-height: 2;
}

.overview_right {
  width: 55.306122449%;
  text-align: left;
}

.overview_left {
  width: 41.4285714286%;
}

.company .subcon_phottl {
  background: url(../img/company/bg_ttl.jpg) center center/cover no-repeat;
}

.message {
  /*padding-top: 94px;*/
}

.message_info {
  /*display: flex;
    justify-content: space-between;*/
  margin: 44px 0 120px;
}

.message_text {
  /*width: 550px;*/
  width: 940px;
  line-height: 2.2;
  margin: 0 auto;
}
.message_text p {
  margin-bottom: 1.5em;
}

.message_sign {
  text-align: right;
}

.message_sign-name {
  /*font-size: 1.6em;
      margin-left: $icon-margin;*/
  width: 220px;
  margin-bottom: -14px;
}

.comp {
  background: #f8f8f8;
  padding: 0 0 120px;
}

.comp_table {
  width: 100%;
}

.comp tr {
  border-top: 1px solid #c9c9c9;
}
.comp tr:last-of-type {
  border-bottom: 1px solid #c9c9c9;
}
.comp th,
.comp td {
  padding: 30px 40px;
}
.comp th {
  text-align: left;
  font-weight: 500;
  width: 20%;
}

.access {
  padding: 0 0 120px;
}
.access iframe {
  height: 350px;
}

.access_address {
  margin: 62px 0 50px;
  font-size: 0.9375rem;
}

.access_info {
  display: flex;
  font-size: 0.9375rem;
}

.access_info-item {
  width: 50%;
  line-height: 2.4;
}

.access_info dt {
  font-weight: 500;
  display: flex;
  align-items: center;
}
.access_info dt i {
  color: #0086d1;
  font-size: 1.125rem;
  margin-right: 0.4rem;
}

.team .subcon_phottl {
  background: url(../img/team/bg_ttl.jpg) center center/cover no-repeat;
}
.team .subcon_catch {
  font-size: 2.25rem;
  margin-bottom: 60px;
}

.team_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 60px;
  border-bottom: 1px solid #c9c9c9;
}
.team_list:before {
  content: "";
  display: block;
  width: 23%;
  order: 1;
}
.team_list:nth-of-type(2) {
  border-bottom: none;
}
.team_list:after {
  content: "";
  display: block;
  /*width: calc(253/1100*100%);*/
  width: 4.8181818182%;
  order: 1;
}

.team_list-item {
  margin-bottom: 50px;
  text-align: center;
}

.team_list-img {
  margin-bottom: 26px;
}

.team_list-partner {
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
}

.team_list-name {
  font-size: 1.625rem;
  font-weight: 500;
  color: #333;
}

.team_list-alpha {
  color: #9fa0a0;
}

.team_list-company {
  font-weight: 500;
  color: #333;
}

.team_noimageList-item {
  margin-bottom: 40px;
}
.team_noimageList-item:last-of-type {
  margin-bottom: 120px;
}
.team_noimageList-item dl {
  display: flex;
  align-items: center;
}

.team_noimageList .team_list-partner {
  margin-left: 13px;
  margin-bottom: 0;
}
.team_noimageList .team_list-name,
.team_noimageList .team_list-alpha,
.team_noimageList .team_list-company {
  margin-left: 20px;
}

.remodal {
  padding: 60px;
}

.remodal-close {
  color: #0086d1;
  width: 60px;
  height: 60px;
  left: inherit;
  right: 0;
}
.remodal-close:hover {
  color: #05489b;
}
.remodal-close:before {
  font-size: 50px;
  line-height: 60px;
  width: 60px;
}

.recruit {
  margin: 0 0 120px;
}
.recruit td a {
  color: #0086d1;
  text-decoration: underline;
}

.contact {
  margin-bottom: 120px;
}
.contact .required {
  background: #e60012;
  color: #fff;
  font-size: 0.875rem;
  padding: 0 8px 2px;
  border-radius: 11px;
}

.contact_attend {
  margin-bottom: 60px;
  /*color: $color-dark;
    text-align: center;*/
}
.contact_attend .required {
  margin-right: 0.4rem;
}

.contact_address {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.form_table {
  width: 100%;
  /*.mail {
      width: 615px;
    }*/
}
.form_table .required {
  margin-left: 0.4rem;
  margin-left: 0;
}
.form_table tr {
  /*border-bottom: 11px solid $color-white;*/
  border-bottom: 4px solid #fff;
}
.form_table tr:last-of-type {
  border-bottom: none;
}
.form_table th {
  background: #a5b0b9;
  color: #fff;
  border-right: 4px solid #fff;
  text-align: left;
  /*width: calc(338/1100*100%);
    line-height: 1.2;*/
  padding: 24px 19px;
  vertical-align: middle;
  width: 22.5454545455%;
  line-height: 1.4;
  text-align: center;
  font-weight: 500;
}
.form_table td {
  background: #f8f8f8;
  /*width: calc(758/1100*100%);*/
  width: 77.0909090909%;
  padding: 15px 30px;
  vertical-align: middle;
}
.form_table input {
  font-size: 1rem;
  border: 1px solid #c9c9c9;
  padding: 14px 10px;
  width: 100%;
}
.form_table textarea {
  font-size: 1rem;
  border: 1px solid #c9c9c9;
  padding: 14px 10px;
  width: 100%;
  height: 210px;
  font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, sans-serif;
}
.form_table .hyphen {
  margin: 0 5px 0 8px;
}
.form_table .post {
  width: 200px;
}
.form_table .post1 {
  margin-left: 0.4rem;
}
.form_table + .contact_attend {
  margin-top: 40px;
  margin-bottom: 40px;
}

.form_checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.form_checkbox-text {
  display: flex;
  align-items: center;
}
.form_checkbox-text:before {
  content: "";
  display: block;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  border: 1px solid #9fa0a0;
  border-radius: 5px;
}

.form_checkbox input[type=checkbox] {
  width: inherit;
  position: relative;
  display: none;
}
.form_checkbox input[type=checkbox]:checked + .form_checkbox-text:before {
  background: #0086d1;
  border: 1px solid #0086d1;
}
.form_checkbox input[type=checkbox]:checked + .form_checkbox-text:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 11px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}
.form_checkbox + .form_checkbox {
  margin-left: 40px;
}

.form_supplementary {
  font-size: 0.8em;
  font-weight: 400;
}

.form_attend {
  /*color: $color-gray-lieght;*/
  font-size: 0.9375rem;
  margin: 0 0 1em;
  /* margin-left: $icon-margin; */
}

.form_attend-ttl {
  font-size: 1.25rem;
  font-weight: 500;
  color: #0086d1;
  margin: 1em 0 0.5em;
}

.form_attend-list {
  font-size: 0.9375rem;
  list-style: disc;
  margin-left: 1.5em;
}

.form_attend-area {
  padding: 0 30px;
}
.form_attend-area .btn_entry {
  margin: 30px 0 15px 22px;
}
.form_attend-area .btn_entry a {
  margin: 0;
}
.form_attend-area .btn_entry a:hover {
  background: #0086d1;
  border: 1px solid #0086d1;
}

.form_agree {
  margin: 40px 0;
}
.form_agree a {
  color: #0086d1;
  text-decoration: underline;
}

.form_agree-input {
  position: relative;
  display: none;
}
.form_agree-input:checked + .form_agree-parts:before {
  background: #fa8a08;
  border: 1px solid #fa8a08;
}
.form_agree-input:checked + .form_agree-parts:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 423px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

.form_agree-parts {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form_agree-parts:before {
  cursor: pointer;
  content: "";
  display: block;
  margin-right: 20px;
  width: 30px;
  height: 30px;
  border: 1px solid #9fa0a0;
  border-radius: 5px;
}

_:-ms-lang(x)::-ms-backdrop,
.form_table th {
  width: 248px;
}

_:-ms-lang(x)::-ms-backdrop,
.form_table td {
  width: 848px;
}

.border_ttl {
  border-bottom: 2px solid #c9c9c9;
  position: relative;
  font-size: 1.25rem;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.border_ttl:after {
  position: absolute;
  content: "";
  display: block;
  border-bottom: 2px solid #0086d1;
  left: 0;
  bottom: -2px;
  width: 300px;
}

.borderR_ttl {
  font-size: 1.25rem;
  color: #0086d1;
  font-weight: 500;
  display: inline-block;
  background: #fff;
  padding-right: 1em;
  position: relative;
}

.borderR_ttl-wrapper {
  position: relative;
  margin-bottom: 50px;
}
.borderR_ttl-wrapper:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #c9c9c9;
}

.borderB_ttl {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 500;
  position: relative;
  padding: 80px 0 0;
  margin-bottom: 60px;
}
.borderB_ttl:before {
  position: absolute;
  content: "";
  bottom: -15px;
  left: 0;
  right: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #05489b 0%, #05489b 49%, #0086d1 50%, #0086d1 100%);
  margin: 0 auto;
}

.ttl_center {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  padding: 40px 0 0;
  margin-bottom: 40px;
}

.primary {
  padding-bottom: 120px;
}

.primary_catch {
  margin-bottom: 44px;
}

.primary_info {
  margin-bottom: 40px;
}

.primary_info-list {
  list-style: disc;
  margin-left: 1.5em;
}

.sitemap {
  padding-bottom: 120px;
}

.sitemap_list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 54px;
  line-height: 2.6;
}
.sitemap_list li {
  margin-right: 60px;
  font-size: 1.125rem;
}
.sitemap_list a {
  color: #333;
}
.sitemap_list a:before {
  content: "\f0da";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #0086d1;
  margin-right: 17px;
}

span.annotation {
  text-align: center;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  span.annotation {
    font-size: 12px;
  }
}
.err404 {
  padding-bottom: 120px;
  display: block;
}

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 1100px;
  }
}
/* デフォルト：1380px以上用（PC用）の記述 */
@media screen and (max-width: 1379px) {
  /* 1379px以下用（PC用）の記述 */
}
/* 1080px以上用（PC用）の記述 */
@media screen and (max-width: 1079px) {
  /* 1079px以下用（タブレット用）の記述 */
}
/* 980px以上用（PC用）の記述 */
@media screen and (max-width: 979px) {
  /* 979px以下用（タブレット用）の記述 */
}
@media screen and (max-width: 768px) {
  /* 768px以下用（タブレット／スマートフォン用）の記述 */
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .contain {
    width: 92%;
    min-width: inherit;
  }
  .wrapper {
    min-width: inherit;
  }
  .btn_gray {
    margin: 30px 0 0;
  }
  .btn_gray a {
    font-size: 0.8125rem;
    /*padding: 16px 10px;*/
    width: 92.68%;
    height: 50px;
    line-height: 50px;
    margin: 0 3.66%;
    display: block;
  }
  .btn_black a {
    font-size: 0.8125rem;
    /*padding: 16px 10px;*/
    width: 92.68%;
    height: 50px;
    line-height: 50px;
    margin: 0 3.66%;
    display: block;
  }
  .btn_entry {
    margin-top: 20px;
  }
  .btn_entry a {
    height: 60px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 0.875rem;
  }
  .btn_submit button {
    font-size: 0.875rem;
    height: 64px;
    line-height: 64px;
  }
  .gNav {
    display: none;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 11vw 4% 20px;
    z-index: 999;
    height: 100%;
    overflow-y: auto;
  }
  .gNav li {
    font-size: 0.9375rem;
    text-align: center;
    height: auto;
    display: block;
  }
  .gNav li:not(:last-of-type) {
    margin-right: 0;
  }
  .gNav li.current {
    color: #000;
  }
  .gNav li.current a {
    color: #000;
  }
  .gNav li.gNav_contact {
    margin-top: 20px;
  }
  .gNav a {
    padding: 20px 0;
    border-bottom: 1px solid #c9c9c9;
  }
  .gNav_contact i {
    margin-right: 0.4rem;
  }
  .gNav_contact a {
    border-bottom: none;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0086d1;
    color: #fff;
    padding: 10px 17px;
  }
  .gNav_contact a i {
    font-size: 1.59375rem;
  }
  .header {
    padding: 15px;
    width: 100%;
    min-width: inherit;
  }
  .header .logo {
    width: 55.4666666667%;
    margin: 0 auto 0 0;
  }
  .header.active {
    background: #fff;
  }
  .header.active #navToggle span:nth-of-type(1) {
    top: 7px;
    transform: rotate(45deg);
  }
  .header.active #navToggle span:nth-of-type(2) {
    top: 7px;
    width: 0;
    left: 50%;
  }
  .header.active #navToggle span:nth-of-type(3) {
    top: 7px;
    transform: rotate(-45deg);
  }
  .header nav {
    align-items: center;
  }
  #navToggle {
    /*position: absolute;
    top: 24px;
    right: 15px;*/
    height: 14px;
  }
  #navToggle > div {
    position: relative;
    width: 20px;
  }
  #navToggle span {
    width: 100%;
    height: 1px;
    left: 0;
    display: block;
    background: #73818c;
    position: absolute;
    transition: transform 0.6s ease-in-out, top 0.5s ease;
  }
  #navToggle span:nth-of-type(1) {
    top: 0;
  }
  #navToggle span:nth-of-type(2) {
    top: 6px;
  }
  #navToggle span:nth-of-type(3) {
    top: 12px;
  }
  #key {
    height: inherit;
  }
  #key:after {
    background: url(../img/index/key_sp.jpg) center top/100% no-repeat;
  }
  .key_info {
    padding: 41.73vw 0 28vw 0;
  }
  .key_ttl {
    width: 93.8666666667%;
    margin: 0 auto 15.2vw;
    /*line-height: 1.2;
      font-size: 1.75rem;
      padding: 10px 0;
      .blue {
        letter-spacing: -0.05em;
        font-size: 1.15em;
      }*/
  }
  .key_catch {
    width: 88%;
    margin-bottom: 7.6%;
    /*font-size: 0.875rem;
      line-height: 1.8;
      padding: 15px;
      .blue {
        font-size: 1.2em;
        letter-spacing: -.05em;
        line-height: 1;
      }*/
  }
  #key.is-show {
    /*.key {
      &_ttl {
        &-outer {
          animation-name: bgwidth-ttl-sp;
          animation-duration: 1s;
          animation-timing-function: linear;
          animation-fill-mode: forwards;
        }
      }
      &_catch {
        &-outer {
          animation-name: bgwidth-catch-sp;
          animation-duration: 1s;
          animation-timing-function: linear;
          animation-fill-mode: forwards;
        }
      }
    }*/
  }
  .content_ttl {
    font-size: 1.5625rem;
    margin: 42px 0 6px;
  }
  .content_ttl-jp {
    margin: -5px 0 30px;
    font-size: 0.9375rem;
  }
  .content_catch {
    font-size: 0.9375rem;
    margin: -10px 0 40px;
  }
  .content_subttl {
    font-size: 1.40625rem;
    margin-bottom: 25px;
  }
  .content_subttl .alpha {
    font-size: 0.8125rem;
  }
  .content_leftttl {
    align-items: stretch;
    margin-bottom: 30px;
  }
  .content_leftttl-text {
    display: block;
  }
  .content_leftttl-icon {
    width: 25px;
    margin-right: 10px;
    line-height: 1;
  }
  .content_leftttl-ttl {
    font-size: 1.40625rem;
    margin-right: 11px;
    line-height: 1.2;
  }
  .content_leftttl-sub {
    font-size: 0.9375rem;
  }
  .content_waku {
    padding: 30px 20px;
    /* &-inner {
        &:before, &:after {
          width: 7px;
          height: 7px;
        }
      }
      &:before, &:after {
        width: 7px;
        height: 7px;
      } */
  }
  .content_waku-catch {
    font-size: 0.875rem;
    text-align: left;
  }
  .content_waku li + li {
    margin-top: 1em;
  }
  .mission {
    background: url(../img/index/bg_mission_sp.jpg) center center/cover no-repeat;
  }
  .mission_info {
    margin-top: 0;
    padding: 12vw 0;
  }
  .mission_info-text {
    font-size: 0.875rem;
    line-height: 2;
    margin: 0 5% 30px;
    text-align: left;
  }
  .mission_info .btn a {
    font-size: 0.8125rem;
    padding: 16px 0;
    display: block;
    margin: 0 3%;
  }
  .fund_info {
    display: block;
    width: 100%;
  }
  .fund_info-left,
  .fund_info-right {
    text-align: center;
    width: 100%;
  }
  .fund_info-left a,
  .fund_info-right a {
    padding: 22% 0 19.0666666667%;
  }
  .fund_info-left {
    margin-bottom: 4px;
  }
  .fund_info-left:after {
    background: url(../img/index/bg_fund01_sp.jpg) center center/100% no-repeat;
  }
  .fund_info-right:after {
    background: url(../img/index/bg_fund02_sp.jpg) center center/100% no-repeat;
  }
  .fund_info .btn {
    text-align: center;
    margin: 0 6.66%;
    padding: 12px 44px;
  }
  .fund_info .btn a {
    display: block;
    padding: 12px 0;
  }
  .news {
    padding: 50px 0;
  }
  .news .content_ttl {
    margin: 0 0 6px;
  }
  .news_item-meta {
    margin: 0 0 0.3em;
  }
  .news_item dl {
    display: block;
    padding: 15px;
  }
  .news_item dt {
    font-size: 0.75rem;
    margin-right: 10px;
    width: inherit;
  }
  .news_icon {
    font-size: 0.75rem;
    width: 105px;
    height: 20px;
    line-height: 20px;
  }
  .news_text {
    width: 86%;
    font-size: 0.8125rem;
  }
  .news_arrow {
    right: 15px;
    width: 25px;
  }
  .link {
    background: url(../img/common/bg_link_sp.png) center center/100% no-repeat;
    padding: 24px 0;
  }
  .link li {
    width: 47.8260869565%;
  }
  .link li a {
    padding: 16px 0 16px 15px;
    font-size: 0.8125rem;
    text-align: left;
  }
  .link_arrow {
    right: 15px;
    width: 18px;
  }
  #target {
    margin-bottom: 20px;
  }
  #target li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33%;
  }
  #target li a {
    font-size: 0.75rem;
  }
  .detail_meta {
    margin-bottom: 23px;
  }
  .detail_meta dt {
    font-size: 0.75rem;
    width: 105px;
    height: 20px;
    line-height: 20px;
  }
  .detail_meta dd {
    font-size: 0.75rem;
  }
  .detail_ttl {
    font-size: 1.125rem;
    margin-bottom: 23px;
  }
  .detail_text {
    font-size: 0.8125rem;
    margin-bottom: 2.5em;
  }
  .detail_text.MB {
    margin-bottom: 0;
  }
  .detail_text + .border_ttl {
    margin-top: 40px;
  }
  .detail_border {
    margin-top: 30px;
    margin-bottom: 0;
  }
  .detail_border + .detail_text {
    margin-top: 30px;
  }
  .detail .btn_gray {
    padding-top: 30px;
    margin: 0 0 50px;
  }
  .detail .btn_gray a {
    margin: 0 3.66%;
  }
  .investee_logo {
    margin-bottom: 34px;
  }
  .investee_logo img {
    max-height: 95px;
    width: auto;
  }
  .investee_logo15 img {
    height: 66px;
  }
  .investee .defTable {
    margin-bottom: 40px;
  }
  .defTable th,
  .defTable td {
    width: 100%;
    display: block;
  }
  .defTable th {
    border-right: none;
    border-bottom: 2px solid #fff;
    padding: 8px;
    font-size: 0.875rem;
  }
  .defTable td {
    padding: 16px 10px;
    font-size: 0.875rem;
  }
  .subcon_ttl {
    background: url(../img/common/bg_ttl_sp.png) center center/100% no-repeat;
  }
  .subcon_ttl-alpha {
    font-size: 1.5625rem;
    /*font-size: 2.125rem;*/
    padding: 10vw 0 3vw;
    line-height: 1;
  }
  .subcon_ttl-jp {
    font-size: 0.8125rem;
    padding-bottom: 10vw;
    line-height: 1;
    letter-spacing: 0.1em;
  }
  .subcon_phottl-alpha {
    font-size: 1.5625rem;
    /*font-size: 2.125rem;*/
    padding: 13vw 0 3vw;
    line-height: 1;
  }
  .subcon_phottl-jp {
    font-size: 0.8125rem;
    padding-bottom: 13vw;
    line-height: 1;
    letter-spacing: 0.1em;
  }
  .subcon_catch {
    font-size: 1.25rem;
    margin-bottom: 25px;
  }
  .subcon_text {
    font-size: 0.875rem;
    text-align: left;
    line-height: 1.8;
  }
  .subcon_text.grad {
    font-size: 1.09375rem;
    margin-top: -10px;
    margin-bottom: 40px;
    text-align: center;
  }
  .breadcrumb {
    padding: 10px 3%;
    font-size: 0.6875rem;
    max-width: 2000px;
    margin-bottom: 40px;
  }
  .breadcrumb i {
    font-size: 0.8125rem;
  }
  .breadcrumb ul {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    overflow-scrolling: touch;
    overflow: auto;
    white-space: nowrap;
  }
  _:-ms-lang(x)::-ms-backdrop,
  .breadcrumb {
    padding: 10px 3% 8px;
  }
  _:-ms-lang(x)::-ms-backdrop,
  .breadcrumb i {
    margin-bottom: 6px;
  }
  .wedo .subcon_phottl {
    background: url(../img/fund/index/bg_ttl_sp.jpg) center center/100% no-repeat;
  }
  .wedo .subcon_img {
    background: url(../img/fund/index/img01_sp.jpg) center center/100% no-repeat;
    height: inherit;
    padding-top: 40%;
    margin-top: 50px;
  }
  .wedo_info {
    margin-bottom: -15px;
  }
  .wedo_list {
    display: block;
  }
  .wedo_item {
    width: 100%;
    margin-bottom: 15px;
  }
  .wedo_item-num {
    width: 75px;
    height: 75px;
    font-size: 1.25rem;
    padding: 3px 0 0 10px;
  }
  .wedo_item-ttl {
    font-size: 1.09375rem;
    height: 25vw;
  }
  .wedo_item-ttl:before {
    width: 35px;
    left: calc(50% - 17px);
  }
  .wedo_item-text {
    padding: 20px 3.66% 30px;
  }
  .wedo .fund {
    margin-bottom: 50px;
  }
  .hybrid_sec {
    /*padding-bottom: 50px;*/
  }
  .hybrid_img01 {
    margin-top: 40px;
  }
  .hybrid_img02 {
    margin: 25px 0 30px;
  }
  .hybrid_img03 {
    margin: 25px 0 30px;
    margin-bottom: -31px;
  }
  .hybrid_img04 {
    margin-bottom: -8px;
  }
  .hybrid_img06 {
    width: 94.2028985507%;
    margin: 2px auto 20px;
  }
  .hybrid_comment {
    font-size: 0.75rem;
    margin: 12px auto 0;
  }
  .hybrid_scheme {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
  .hybrid_scheme-outer {
    display: block;
  }
  .hybrid_scheme-ttl {
    font-size: 1rem;
  }
  .hybrid_scheme-text {
    margin: 0;
    font-size: 0.9375rem;
  }
  .hybrid_scheme-img {
    margin-bottom: 30px;
  }
  .hybrid_scheme table {
    width: 100%;
  }
  .hybrid_scheme th {
    font-size: 0.6875rem;
  }
  .hybrid_scheme td {
    font-size: 0.8125rem;
  }
  .hybrid .content_catch {
    font-feature-settings: "palt";
  }
  .sky .subcon_phottl {
    background: url(../img/fund/sky/bg_ttl_sp.jpg) center center/100% no-repeat;
  }
  .sky .subcon_phottl-alpha {
    font-feature-settings: "palt";
  }
  .sky_sec {
    /*padding-bottom: 50px;*/
  }
  .sky_img01 {
    width: 82.6086956522%;
    margin-top: 0;
  }
  .sky_img02 {
    margin-top: 30px;
    margin-left: 0;
    margin-bottom: -93vw;
  }
  .sky_img03 {
    margin-bottom: -21px;
  }
  .sky_img04 {
    width: 94.2028985507%;
    margin: 0 auto;
  }
  .sky_img06 {
    margin-bottom: 40px;
    margin-left: -5px;
  }
  .sky_img-outer {
    display: block;
  }
  .sky_target {
    background: #f8f8f8;
    padding: 30px 5%;
    margin: 0;
  }
  .sky_target dl {
    border-bottom: 1px solid #c9c9c9;
    padding: 16px 10px;
    display: block;
  }
  .sky_target dl dt,
  .sky_target dl dd {
    text-align: center;
    padding: 0;
  }
  .sky_target dl dt {
    width: 100%;
    margin-bottom: 10px;
    font-size: 0.9375rem;
  }
  .sky_target dl dd {
    font-size: 0.9375rem;
  }
  .sky .content_catch {
    font-feature-settings: "palt";
  }
  .overview {
    padding: 0 0 50px;
  }
  .overview .contain {
    /*padding-bottom: 30px;*/
  }
  .overview .borderB_ttl {
    padding-top: 40px;
  }
  .overview .defTable {
    margin: 0 3.66% 30px;
    width: 92.68%;
  }
  .overview_list {
    display: block;
    margin: 0 30px;
    line-height: 0;
  }
  .overview_list li {
    margin-bottom: 15px;
  }
  .overview_list li:nth-of-type(n + 1) {
    margin-left: 0;
  }
  .overview_info {
    display: block;
  }
  .overview_info-name {
    font-size: 1.09375rem;
    text-align: center;
    padding-bottom: 25px;
  }
  .overview_info dl {
    display: block;
  }
  .overview_info dt,
  .overview_info dd {
    width: 100%;
  }
  .overview_info dt {
    font-size: 0.9375rem;
    text-align: center;
    margin-bottom: 10px;
  }
  .overview_info dd {
    font-size: 0.8125rem;
  }
  .overview_info-url dd {
    text-align: center;
  }
  .overview_left {
    width: calc(100% - 64px);
    margin: 0 auto;
  }
  .overview_right {
    width: 100%;
  }
  .company .subcon_phottl {
    background: url(../img/company/bg_ttl_sp.jpg) center center/100% no-repeat;
  }
  .message {
    /*padding-top: 47px;*/
  }
  .message_info {
    display: block;
    margin: 0 0 40px;
  }
  .message_img {
    width: 72.4637681159%;
    margin: 0 auto 25px;
  }
  .message_text {
    width: inherit;
    font-size: 0.8125rem;
  }
  .message_text p {
    margin: 0 1.5em 1.5em;
  }
  .message_sign {
    font-size: 0.75rem;
  }
  .message_sign-name {
    font-size: 1.6em;
    width: 120px;
    margin-bottom: -5px;
  }
  .comp {
    padding: 0 0 50px;
  }
  .comp th,
  .comp td {
    display: block;
    width: 100%;
    text-align: center;
  }
  .comp th {
    padding: 20px 10px;
    font-size: 0.9375rem;
  }
  .comp td {
    padding: 0 10px 20px;
    font-size: 0.8125rem;
  }
  .access {
    padding: 0 0 50px;
  }
  .access iframe {
    height: 250px;
  }
  .access_address {
    margin: 30px 0;
    font-size: 0.8125rem;
  }
  .access_info {
    display: block;
    font-size: 0.8125rem;
  }
  .access_info-item {
    width: 100%;
    line-height: 1.6;
  }
  .access_info-item + .access_info-item {
    margin-top: 30px;
  }
  .access_info dt {
    font-size: 0.875rem;
    margin-bottom: 10px;
  }
  .access_info dt i {
    font-size: 0.9375rem;
  }
  .team .subcon_phottl {
    background: url(../img/team/bg_ttl_sp.jpg) center center/cover no-repeat;
  }
  .team .subcon_catch {
    font-size: 1.25rem;
    margin-bottom: 25px;
  }
  .team_list {
    margin-bottom: 30px;
    display: block;
  }
  .team_list2colum {
    border-bottom: none;
  }
  .team_list-item {
    margin-bottom: 30px;
    width: 100%;
  }
  .team_list-img {
    margin-bottom: 12px;
    height: 220px;
    overflow: hidden;
  }
  .team_list-partner {
    font-size: 0.875rem;
    margin-bottom: 2px;
  }
  .team_list-name {
    font-size: 1.25rem;
  }
  .team_list-alpha {
    font-size: 0.6875rem;
  }
  .team_noimageList-item {
    margin-bottom: 30px;
  }
  .team_noimageList-item:not(:last-of-type) {
    padding-bottom: 30px;
    border-bottom: 1px solid #c9c9c9;
  }
  .team_noimageList-item:last-of-type {
    margin-bottom: 60px;
  }
  .team_noimageList-item dl {
    flex-wrap: wrap;
  }
  .team_noimageList .team_list-partner {
    margin-left: 0;
  }
  .team_noimageList .team_list-name,
  .team_noimageList .team_list-alpha {
    margin-left: 20px;
  }
  .team_noimageList .team_list-company {
    margin-left: 0;
    width: 100%;
    font-size: 0.75rem;
  }
  .remodal {
    padding: 45px 15px;
  }
  .recruit {
    margin: 0 0 50px;
  }
  .contact {
    margin-bottom: 50px;
  }
  .contact .required {
    font-size: 0.6875rem;
  }
  .contact_attend {
    margin-bottom: 42px;
    /*font-size: 0.8125rem;
      text-align: left;*/
  }
  .contact_address {
    flex-wrap: wrap;
  }
  .form_table {
    /*.mail {
        width: 100%;
      }*/
  }
  .form_table tr {
    border-bottom: 4px solid #fff;
  }
  .form_table th,
  .form_table td {
    width: 100%;
    display: block;
  }
  .form_table th {
    /*padding: 20px 10px 10px;*/
    padding: 8px;
    font-size: 0.875rem;
    border-right: 0;
    line-height: 1.6;
  }
  .form_table td {
    /*padding: 0 10px 10px;*/
    padding: 16px 10px;
  }
  .form_table input {
    font-size: 0.875rem;
    width: 100%;
  }
  .form_table textarea {
    font-size: 0.875rem;
    width: 100%;
    height: 133px;
  }
  .form_table .hyphen {
    margin: 0 0px 0 3px;
  }
  .form_table .post {
    width: 150px;
  }
  .form_table + .contact_attend {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 0.875rem;
  }
  .form_checkbox {
    display: block;
  }
  .form_checkbox + .form_checkbox {
    margin-left: 0;
    margin-top: 10px;
  }
  .form_attend {
    font-size: 0.8125rem;
    margin: 0 0 1em 0;
    display: block;
    width: 100%;
  }
  .form_attend-ttl {
    font-size: 1rem;
    margin: 0.5em 0;
  }
  .form_attend-area {
    padding: 0;
  }
  .form_attend-area .btn_entry {
    margin: 20px 0 0 0;
  }
  .form_attend-area .btn_entry a {
    margin: 0 auto;
  }
  .form_attend-list {
    font-size: 0.8125rem;
    width: calc(100% - 1.5em);
  }
  .form_agree {
    margin: 30px 3.66%;
    font-size: 0.8125rem;
  }
  .form_agree-input:checked + .form_agree-parts:after {
    left: calc(50% - 100px);
  }
  .form_agree-parts {
    /*justify-content: flex-start;*/
  }
  .form_agree-parts:before {
    margin-right: 10px;
  }
  .form_agree-inner {
    /*width: calc(100% - 40px);*/
  }
  .border_ttl {
    font-size: 0.875rem;
  }
  .border_ttl:after {
    width: 125px;
  }
  .borderR_ttl {
    font-size: 0.9375rem;
  }
  .borderR_ttl-wrapper {
    margin-bottom: 30px;
  }
  .borderB_ttl {
    font-size: 1.25rem;
    padding: 40px 0 0;
    margin-bottom: 40px;
  }
  .borderB_ttl:before {
    width: 25px;
  }
  .ttl_center {
    font-size: 1.125rem;
    padding: 10px 0 0;
    margin-bottom: 20px;
  }
  .primary {
    padding-bottom: 50px;
  }
  .primary_catch,
  .primary_info {
    font-size: 0.8125rem;
    margin-bottom: 24px;
  }
  .sitemap {
    padding-bottom: 23px;
  }
  .sitemap_list {
    display: block;
    margin: 0 3.66% 27px;
  }
  .sitemap_list li {
    margin-right: 0;
    font-size: 0.8125rem;
  }
  .err404 {
    padding-bottom: 50px;
  }
  .footer {
    background: url(../img/common/bg_footer_sp.png) center center/cover no-repeat;
  }
  .footer_top {
    padding: 30px 0 0;
  }
  .footer_top .contain {
    display: block;
  }
  .footer_logo {
    width: 60.2898550725%;
    margin: 0 auto 27px;
  }
  .footer_list-main {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    margin-right: 0;
    padding-bottom: 25px;
  }
  .footer_list-main > li {
    font-size: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    width: 100%;
  }
  .footer_list-main > li a {
    display: block;
    padding: 10px 3.66%;
  }
  .footer_list-main > li a:before {
    top: 50%;
    left: 3%;
  }
  .footer_bottom {
    background: #fff;
  }
  .footer_copy {
    margin-left: 3%;
    margin-right: auto;
    font-size: 0.6875rem;
  }
  .footer_totop {
    margin: 3% 3% 3% 0;
  }
  .footer_totop a {
    padding: 20px 17px 13px;
  }
}
@media screen and (max-width: 370px) {
  /* 370px以下用（タブレット／スマートフォン用）の記述 */
  .hybrid .subcon_phottl-alpha,
  .sky .subcon_phottl-alpha {
    padding: 8vw 0 3vw;
    line-height: 1.3;
  }
  .hybrid .subcon_phottl-jp,
  .sky .subcon_phottl-jp {
    padding-bottom: 8vw;
  }
  .sp370 {
    display: block;
  }
}
@media screen and (max-width: 350px) {
  /* 350px以下用（スマートフォン用）の記述 */
  /*#key {
    background: url(../img/index/key_sp.jpg) center top/125% no-repeat;
  }*/
  .key_catch-outer {
    height: 180px;
  }
  .wedo_item-ttl {
    font-size: 1rem;
  }
  .wedo_item01 .wedo_item-ttl {
    letter-spacing: -0.05em;
  }
}
/* SNS利用規約(約款)追加_250903 */
.primary_info-list-num li {
  position: relative;
  list-style-type: none;
  margin-left: 1.5em;
}
.primary_info-list-num li::before {
  position: absolute;
  right: calc(100% + 0.5rem);
  content: "(" counter(list-item) ")";
}

.primary_info-list-decimal li {
  list-style-type: decimal;
  margin-left: 1.5em;
}
.primary_info-list-decimal li::before {
  display: none;
}

