@charset "UTF-8";
h1 {
  margin: 0;
  padding: 0;
}
h1::after {
  display: none !important;
}

h2::before, h2::after {
  display: none !important;
}

.section-note .container .fs-14.fw-bold {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .container {
    width: calc(100% - 32px);
    margin: 0 16px;
  }
}

.lp sup {
  font-weight: normal;
}

/*テキスト*/
.fs-38 {
  font-size: 38px !important;
}

.fs-36 {
  font-size: 36px !important;
}

@media screen and (max-width: 767px) {
  .fs-36-sp {
    font-size: 36px !important;
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  .fs-20-tablet {
    font-size: 20px !important;
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  .fs-18-tablet {
    font-size: 18px !important;
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  .fs-16-tablet {
    font-size: 16px !important;
  }
}

@media screen and (max-width: 767px) {
  .fs-26-sp {
    font-size: 26px !important;
  }
}

@media screen and (max-width: 767px) {
  .fs-24-sp {
    font-size: 24px !important;
  }
}

.fw-semibold {
  font-weight: 500;
}

.text-del {
  text-decoration: line-through;
}

.text-italic {
  font-style: italic;
}

.text-upper.text-upper-custom::before, .text-upper.text-upper-custom::after {
  top: 4px;
  height: 100%;
  border-color: currentColor;
  border-width: 2px;
}
.text-upper.text-upper-custom::before {
  transform: rotate(-30deg);
}
.text-upper.text-upper-custom::after {
  transform: rotate(30deg);
}

.text-under {
  text-decoration: underline;
}

/*リスト*/
.list-note-num.star > li::before {
  content: "★";
}

/*ブレークポイント表示・非表示*/
.show-pc {
  display: none;
}
@media screen and (min-width: 950px) {
  .show-pc {
    display: block;
  }
}

.show-tablet {
  display: none;
}
@media (min-width: 768px) and (max-width: 949px) {
  .show-tablet {
    display: block;
  }
}

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

.show-pc-tablet {
  display: none;
}
@media screen and (min-width: 768px) {
  .show-pc-tablet {
    display: block;
  }
}

.show-sp-tablet {
  display: none;
}
@media screen and (max-width: 949px) {
  .show-sp-tablet {
    display: block;
  }
}

/*余白*/
@media screen and (max-width: 767px) {
  .p-0-sp {
    padding: 0 !important;
  }
}

/*角丸*/
.bd-radius-48 {
  border-radius: 48px !important;
}

.bd-radius-max {
  border-radius: 9999px !important;
}

/*幅指定*/
.w-full {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
}

div[class*=content-] {
  position: relative;
  margin-inline: auto;
}

.content-1080 {
  max-width: 1080px;
}

.content-1020 {
  max-width: 1020px;
}

.content-930 {
  max-width: 930px;
}

.content-920 {
  max-width: 920px;
}

.content-800 {
  max-width: 800px;
}

.content-720 {
  max-width: 720px;
}

.content-660 {
  max-width: 660px;
}

.content-600 {
  max-width: 600px;
}

.content-540 {
  max-width: 540px;
}

.content-480 {
  max-width: 480px;
}

.content-428 {
  max-width: 428px;
}

.content-404 {
  max-width: 404px;
}

.w-100 {
  width: 100%;
}

.lp-btn-w-420 {
  width: 100%;
  min-width: auto !important;
  max-width: 420px !important;
}

.fit {
  width: 100%;
  height: auto;
}

/*ブロック要素*/
.block {
  display: block;
}

/*CVエリア タブレット時に幅が小さくなるのを回避*/
.section.section-cv .container .cv-guide[data-max-width="764"] {
  max-width: 764px;
  width: 100%;
}

.lp .anime-fade-in {
  opacity: 0;
}
.lp .anime-fade-in.is-anime {
  opacity: 0;
  animation: kf-fadeIn-0 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
}
@keyframes kf-fadeIn-0 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.lp .anime-fade-in-left {
  opacity: 0;
}
.lp .anime-fade-in-left.is-anime {
  opacity: 0;
  animation: kf-fadeIn-1 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
}
@keyframes kf-fadeIn-1 {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.lp .anime-fade-in-right {
  opacity: 0;
}
.lp .anime-fade-in-right.is-anime {
  opacity: 0;
  animation: kf-fadeIn-2 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
}
@keyframes kf-fadeIn-2 {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.lp .anime-fade-in-up {
  opacity: 0;
}
.lp .anime-fade-in-up.is-anime {
  opacity: 0;
  animation: kf-fadeIn-3 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
}
@keyframes kf-fadeIn-3 {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .lp .anime-fade-in-up-sp {
    opacity: 0;
  }
  .lp .anime-fade-in-up-sp.is-anime {
    opacity: 0;
    animation: kf-fadeIn-3 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
  }
  @keyframes kf-fadeIn-3 {
    0% {
      opacity: 0;
      transform: translateY(80px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.lp .acc {
  position: relative;
  margin-top: -2px;
}
.lp .acc::before, .lp .acc::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100vw;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #dddddd;
}
.lp .acc::before {
  top: 0;
}
.lp .acc::after {
  bottom: 0;
}
.lp .acc.top {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .lp .acc.top {
    margin-top: 32px;
  }
}
.lp .acc .acc-trigger {
  position: relative;
  cursor: pointer;
  display: block;
  transition: 0.3s;
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
@media screen and (max-width: 767px) {
  .lp .acc .acc-trigger {
    font-size: 16px;
  }
}
.lp .acc .acc-trigger > .acc-trigger-inner {
  display: block;
  padding-top: 24px;
  padding-bottom: 24px;
  max-width: 720px;
  margin-inline: auto;
  background: url(../images/acc_open.svg) no-repeat center right/24px auto;
}
@media screen and (max-width: 767px) {
  .lp .acc .acc-trigger > .acc-trigger-inner {
    background-size: 16px auto;
    background-position: center right 16px;
  }
}
.lp .acc .acc-trigger.open > .acc-trigger-inner {
  background-image: url(../images/acc_close.svg);
}
.lp .acc .acc-trigger:hover {
  opacity: 0.65;
}
.lp .acc .acc-body {
  display: none;
  position: relative;
  z-index: 0;
  padding: 0 0 108px;
}
@media screen and (max-width: 767px) {
  .lp .acc .acc-body {
    padding-bottom: 64px;
  }
}
.lp .acc-gray {
  position: relative;
  margin-bottom: 24px;
  padding: 12px 24px;
  border-radius: 6px;
  background-color: #f6f6f6;
}
@media screen and (max-width: 767px) {
  .lp .acc-gray {
    padding: 8px 8px;
  }
}
.lp .acc-gray .acc-trigger {
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin: 0;
  padding: 12px 0;
}
@media screen and (max-width: 767px) {
  .lp .acc-gray .acc-trigger {
    padding: 10px 0;
  }
}
.lp .acc-gray .acc-trigger > .inner {
  position: relative;
  display: inline-block;
  padding-right: 40px;
  background: url(../images/acc_open_blk.svg) no-repeat center right/22px auto;
}
@media screen and (max-width: 767px) {
  .lp .acc-gray .acc-trigger > .inner {
    padding-right: 32px;
  }
}
.lp .acc-gray .acc-trigger.open > .inner {
  background-image: url(../images/acc_close_blk.svg);
}
.lp .acc-gray .acc-body {
  display: none;
  position: relative;
}
.lp .acc-gray .acc-body > .inner {
  margin: 16px auto;
  padding: 24px 24px;
  border-radius: 6px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .lp .acc-gray .acc-body > .inner {
    padding: 24px 16px;
  }
}

.swiper01 {
  position: relative;
}
@media screen and (max-width: 767px) {
  .swiper01 {
    padding: 0;
  }
}
.swiper01 .swiper-container {
  position: relative;
}
.swiper01 [class^=swiper01-button-prev],
.swiper01 [class^=swiper01-button-next] {
  display: none;
  position: absolute;
  z-index: 10;
  top: calc(50% - 64px);
  width: 40px;
  height: 40px;
  margin: auto;
  outline: none;
  background: url(../images/btn_slide.svg) no-repeat 0 0/100% auto;
}
@media screen and (max-width: 1099px) {
  .swiper01 [class^=swiper01-button-prev],
  .swiper01 [class^=swiper01-button-next] {
    display: block;
  }
}
.swiper01 [class^=swiper01-button-prev].swiper-button-disabled,
.swiper01 [class^=swiper01-button-next].swiper-button-disabled {
  opacity: 0.3;
}
.swiper01 [class^=swiper01-button-prev] {
  left: -16px;
}
.swiper01 [class^=swiper01-button-next] {
  right: -16px;
  transform: rotate(180deg);
}
.swiper01 [class^=swiper01-pagination] {
  margin-top: 24px;
  text-align: center;
}
.swiper01 [class^=swiper01-pagination] .swiper-pagination-bullet {
  position: relative;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  border-radius: 10px;
  background: #ccc;
  opacity: 1;
}
.swiper01 [class^=swiper01-pagination] .swiper-pagination-bullet::after {
  transition: 0.25s;
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 16px;
  height: 16px;
  border-radius: 16px;
  background-color: #E93817;
  opacity: 0;
}
.swiper01 [class^=swiper01-pagination] .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  opacity: 1;
}

.fixed-gnav {
  transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  position: fixed;
  z-index: 2;
  top: 20px;
  left: 0;
  right: 0;
  transform: translateY(-90px);
  padding: 0 16px;
}
.fixed-gnav.is-show {
  transform: translateY(0px);
}
.fixed-gnav.is-show .gnav {
  box-shadow: 0px 6px 4px -4px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 767px) {
  .fixed-gnav {
    display: none;
  }
}

.gnav {
  transition: 0.4s;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  height: 60px;
  margin: auto;
  border-radius: 100px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .gnav {
    display: none;
  }
}
.gnav ul {
  display: flex;
  align-items: center;
}
.gnav ul > li {
  position: relative;
  width: 33.3333%;
  height: 60px;
}
.gnav ul > li a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  font-weight: bold;
  color: #000 !important;
  text-align: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 949px) {
  .gnav ul > li a {
    font-size: 15px;
  }
}
.gnav ul > li a > .icon {
  width: 36px;
  margin-right: 12px;
}
.gnav ul > li::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  top: 10%;
  width: 1px;
  height: 80%;
  background-color: #666;
}
.gnav ul > li:last-of-type::after {
  display: none;
}

.lnav {
  position: relative;
  z-index: 0;
  max-width: 800px;
  height: 60px;
  margin: 32px auto;
}
.lnav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lnav ul[data-col="2"] > li {
  width: calc(50% - 6px);
}
@media screen and (max-width: 767px) {
  .lnav ul[data-col="2"] > li.starter a {
    padding-top: 22px;
  }
}
@media screen and (max-width: 767px) {
  .lnav ul[data-col="2"] > li.starter a .icon {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.lnav ul[data-col="2"] > li.starter a .icon::before {
  content: "";
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  margin-right: 8px;
  background: #fff url(/common_v10/images/icn-think-black.svg) no-repeat left center/100% auto;
}
@media screen and (max-width: 767px) {
  .lnav ul[data-col="2"] > li.starter a .icon::before {
    width: 26px;
    height: 26px;
    margin-right: 4px;
  }
}
@media screen and (max-width: 767px) {
  .lnav ul[data-col="2"] > li.member a {
    padding-top: 14px;
  }
}
@media screen and (max-width: 767px) {
  .lnav ul[data-col="2"] > li.member a .icon {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.lnav ul[data-col="2"] > li.member a .icon::before {
  content: "";
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  margin-right: 8px;
  background: #fff url(/common_v10/images/icn-member.svg) no-repeat left center/100% auto;
}
@media screen and (max-width: 767px) {
  .lnav ul[data-col="2"] > li.member a .icon::before {
    width: 26px;
    height: 26px;
    margin-right: 4px;
  }
}
.lnav ul > li {
  position: relative;
  width: calc(33.3333% - 6px);
  height: 70px;
  padding: 2px;
  border-radius: 12px;
  background: linear-gradient(to bottom, rgb(248, 58, 35) 0%, rgb(0, 100, 255) 100%);
}
@media screen and (max-width: 767px) {
  .lnav ul > li {
    height: 80px;
  }
  .lnav ul > li:nth-of-type(3) a {
    padding-top: 14px;
  }
}
.lnav ul > li a {
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #000 !important;
  text-align: center;
  width: 100%;
  height: 100%;
  padding-top: 12px;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .lnav ul > li a {
    font-size: 14px;
    line-height: 1.4;
    padding-top: 24px;
  }
}
.lnav ul > li a::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: calc(50% - 6px);
  bottom: 12px;
  width: 12.5px;
  height: 7px;
  background: url(../images/lnav_arrow.svg) no-repeat 0 0/100% auto;
}
@media screen and (max-width: 767px) {
  .lnav ul > li a::after {
    bottom: 8px;
  }
}

.entry-flow-tit {
  position: relative;
  margin-top: 64px;
}
.entry-flow-tit::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 25px;
  width: 100%;
  height: 2px;
}
.entry-flow-tit > .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  border-radius: 50px;
}
.entry-flow-tit > .text {
  display: block;
  font-size: 22px;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .entry-flow-tit > .text {
    font-size: 20px;
  }
}
.entry-flow-tit[data-user=starter]::after {
  background: #e93817;
}
.entry-flow-tit[data-user=starter] > .icon {
  background: #e93817 url(/common_v10/images/icn-think-white.svg) no-repeat center center/28px auto;
}
.entry-flow-tit[data-user=member]::after {
  background: #F5D200;
}
.entry-flow-tit[data-user=member] > .icon {
  background: #F5D200 url(/common_v10/images/icn-member.svg) no-repeat center center/28px auto;
}

.tab[data-custom=shinsta] {
  margin-top: 48px;
  margin-bottom: 64px;
}
.tab[data-custom=shinsta] .tab-content {
  position: relative;
  top: -2px;
  border: 2px solid #000;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .tab[data-custom=shinsta] .tab-content {
    width: calc(100% + 32px);
    margin-left: -16px;
    padding-inline: 16px;
    border-left: none;
    border-right: none;
  }
}
.tab[data-custom=shinsta] .tab-nav {
  max-width: 648px;
  justify-content: space-between;
}
.tab[data-custom=shinsta] .tab-nav li span {
  font-size: 16px;
  font-weight: bold;
  padding: 20px 0;
  border-radius: 8px 8px 0 0 !important;
  border-color: #000 !important;
  background: #d6d6d6;
}
.tab[data-custom=shinsta] .tab-nav li span::before {
  display: none !important;
}
.tab[data-custom=shinsta] .tab-nav li span.is-current {
  color: #000 !important;
  background: #fff;
}
.tab[data-custom=shinsta] .tab-nav li span.is-current::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  width: 0;
  height: 3px;
  margin-inline: auto;
  border-bottom: 3px solid;
  border-image: linear-gradient(to right, rgb(248, 58, 35) 0%, rgb(0, 100, 255) 100%);
  border-image-slice: 1;
  animation: kf-anime 0.3s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@keyframes kf-anime {
  0% {
    width: 35%;
  }
  100% {
    width: 50%;
  }
}
.tab[data-custom=shinsta] .tab-nav li span.is-current:hover {
  opacity: 1;
}

.step-wrap {
  position: relative;
  margin: 64px auto 80px;
  padding: 3px;
  border-radius: 4px;
  background: linear-gradient(to right, rgb(248, 58, 35) 0%, rgb(0, 100, 255) 100%);
}
.step-wrap::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: calc(50% - 57px);
  bottom: -72px;
  width: 114px;
  height: 48px;
  display: block;
  margin: auto;
  background: url(../images/step_next.svg) no-repeat center bottom/100% auto;
}
@media screen and (max-width: 767px) {
  .step-wrap::after {
    left: calc(50% - 40px);
    bottom: -64px;
    width: 80px;
    height: 34px;
  }
}
.step-wrap:last-of-type::after {
  display: none;
}
.step-wrap > .step {
  position: relative;
  z-index: 0;
  color: #000;
  padding: 38px 32px 40px;
}
@media screen and (max-width: 767px) {
  .step-wrap > .step {
    padding: 32px 16px 16px;
  }
}
.step-wrap > .step::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  width: calc(100% - 0px);
  height: 0;
  display: block;
  border-bottom: solid 120px #fff;
  border-left: solid 130px transparent;
}
@media screen and (max-width: 767px) {
  .step-wrap > .step::before {
    border-bottom: solid 90px #fff;
    border-left: solid 100px transparent;
  }
}
.step-wrap > .step:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 120px);
  background: #fff;
}
@media screen and (max-width: 767px) {
  .step-wrap > .step:after {
    height: calc(100% - 90px);
  }
}
.step-wrap > .step .step-label {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .step-wrap > .step .step-label {
    width: 100px;
  }
}
.step-wrap > .step h3 {
  font-size: 36px;
  line-height: 1.4;
  color: #000;
  margin: 0 0 32px;
}
@media screen and (max-width: 767px) {
  .step-wrap > .step h3 {
    font-size: 26px;
    margin-bottom: 24px;
  }
}
.step-wrap > .step .btn-white-dark {
  color: #000;
  border-color: #000;
  border-width: 2px;
}
.step-wrap > .step img[src*="images/step_"] {
  border-radius: 6px;
}
.step-wrap > .step .btn-primary {
  border-color: #d9161B;
  background-color: #d9161B;
}
.step-wrap > .step .btn-primary.entry {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
  width: auto;
  min-width: auto;
  height: 64px;
  padding: 0;
  background: #D9161B url(/common_v10/images/icn-think-white.svg) no-repeat 20px center/32px auto;
}
@media screen and (max-width: 767px) {
  .step-wrap > .step .btn-primary.entry {
    background-position: 16px center;
    background-size: 28px auto;
  }
}
.step-wrap > .step .btn-primary.entry .fs-sm {
  font-size: 12px;
  display: block;
}
.step-wrap .need {
  text-align: center;
  margin-block: 0 16px;
  padding: 8px 16px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #959595;
}
@media screen and (max-width: 767px) {
  .step-wrap .need {
    margin-top: 16px;
  }
}
.step-wrap .need .need-tit {
  font-weight: bold;
  text-align: center;
  padding: 4px 16px 12px;
  border-bottom: 1px solid #959595;
}
.step-wrap .label-dark {
  display: block;
  font-weight: 500;
  text-align: center;
  padding-block: 4px;
  border-radius: 0;
  border: none;
  background: #000;
}
.step-wrap .icn-card {
  display: inline-block;
  font-weight: 500;
  padding: 4px 0 4px 48px;
  background: url(../images/icn_card.svg) no-repeat center left/40px auto;
}
.step-wrap .icn-qst {
  font-weight: 500;
  padding: 4px 0 4px 24px;
  border-bottom: 1px solid #333;
  background: url(../images/icn_qst.svg) no-repeat center left/20px auto;
}
.step-wrap .icn-check {
  position: relative;
  min-height: 20px;
  padding: 0 0 0 28px;
  background: url(/common_v10/images/icn-text-check-primary.svg) no-repeat top left/20px auto;
}
.step-wrap .step-box-gray {
  padding: 10px 16px;
  border-radius: 6px;
  background: #f6f6f6;
}

.section-cv {
  position: relative;
  z-index: 1 !important;
}
@media screen and (max-width: 767px) {
  .section-cv .container {
    width: calc(100% - 32px);
    margin: 0 16px;
  }
}
.section-cv.dark-mode {
  background-color: #000;
}
.section-cv.dark-mode .container .new-cv-box .new-cv-board {
  color: #fff;
  background-color: #111;
}
@media screen and (max-width: 767px) {
  .section-cv.dark-mode .container .new-cv-box .new-cv-board {
    background-color: #000;
  }
}
.section-cv.dark-mode .container .new-cv-box .new-cv-board .btn-primary {
  border-color: #d9161B;
  background-color: #d9161B;
}
@media screen and (max-width: 767px) {
  .section-cv.dark-mode .container .cv-side {
    position: relative;
    z-index: 0;
    margin-top: 0;
    padding-top: 14px;
  }
  .section-cv.dark-mode .container .cv-side::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(rgb(50, 50, 50), rgba(0, 0, 0, 0));
    display: block;
  }
}
.section-cv.dark-mode .container .cv-side .cv-item {
  color: #fff;
}
.section-cv.dark-mode .container .cv-side .cv-item [class*=btn-white] {
  padding-inline: 0;
}
@media screen and (max-width: 1079px) {
  .section-cv.dark-mode .container .cv-side .cv-item [class*=btn-white],
  .section-cv.dark-mode .container .cv-side .cv-item .btn-simulation {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 949px) {
  .section-cv.dark-mode .container .cv-side .cv-item [class*=btn-white] {
    font-size: 14px;
    padding: 6px;
    min-height: auto;
  }
  .section-cv.dark-mode .container .cv-side .cv-item [class*=btn-white]::after {
    right: 16px;
  }
  .section-cv.dark-mode .container .cv-side .cv-item .btn-simulation {
    font-size: 14px;
  }
  .section-cv.dark-mode .container .cv-side .cv-item .btn-simulation span {
    padding-inline: 40px 10px;
    background-size: 28px auto;
  }
}
.section-cv.dark-mode .container .cv-side::before {
  background: #aeaeae;
  width: 1px;
}
@media screen and (min-width: 768px) {
  .section-cv.dark-mode .container .cv-guide .cv-box.new-cv-box .adjust {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    padding: 0;
    height: 64px;
  }
  .section-cv.dark-mode .container .cv-guide .cv-box.new-cv-box .adjust .fs-12 {
    line-height: 1.4;
    display: inline-block;
    vertical-align: top;
  }
}
@media screen and (max-width: 767px) {
  .section-cv.dark-mode .container .cv-guide .cv-box.new-cv-box .adjust {
    height: 136px;
  }
  .section-cv.dark-mode .container .cv-guide .cv-box.new-cv-box .adjust .fs-12 {
    position: relative;
    display: inline-block;
    line-height: 1.3;
  }
  .section-cv.dark-mode .container .cv-guide .cv-box.new-cv-box .adjust.icn-starter .fs-16-sp, .section-cv.dark-mode .container .cv-guide .cv-box.new-cv-box .adjust.btn-member .fs-16-sp {
    position: relative;
    margin-top: -8px;
  }
}
@media screen and (max-width: 1024px) {
  .section-cv.dark-mode .container .cv-guide .cv-box.new-cv-box .icn-starter:not(.btn-starterinq) {
    min-height: auto;
  }
}
@media (min-width: 768px) and (max-width: 949px) {
  .section-cv.dark-mode .container .cv-guide .cv-box.new-cv-box [class*=btn-] {
    padding-inline: 0;
    font-size: 16px;
  }
  .section-cv.dark-mode .container .cv-guide .cv-box.new-cv-box [class*=btn-]::after {
    right: 16px;
  }
  .section-cv.dark-mode .container .cv-guide .cv-box.new-cv-box .icn-member,
  .section-cv.dark-mode .container .cv-guide .cv-box.new-cv-box .icn-starter {
    background-position: 12px center;
    background-size: 28px auto;
  }
}
@media screen and (max-width: 767px) {
  .section-cv.dark-mode .container .cv-guide .new-cv-box.row.row-cs-md > .new-cv-board.col-50:first-child::after {
    width: 1px;
    background: #aeaeae;
  }
  .section-cv.dark-mode .container .cv-guide .cv-box [class*=icn-],
  .section-cv.dark-mode .container .cv-guide .cv-board [class*=icn-] {
    padding-inline: 8px;
  }
}
.section-cv[data-cv-type="2"] {
  max-width: 920px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .section-cv[data-cv-type="2"] .cv-row {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
  }
}
.section-cv[data-cv-type="2"] .cv-col {
  position: relative;
  --customer-color: #E93817;
}
@media screen and (min-width: 768px) {
  .section-cv[data-cv-type="2"] .cv-col {
    width: 50%;
  }
  .section-cv[data-cv-type="2"] .cv-col:nth-of-type(1)::after {
    content: "";
    position: absolute;
    z-index: 0;
    right: -16px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #666;
  }
}
.section-cv[data-cv-type="2"] .cv-col.member {
  --customer-color: #F5D200;
}
.section-cv[data-cv-type="2"] .cv-col.member .btn-primary {
  color: #000 !important;
  border-color: var(--customer-color);
  background: var(--customer-color);
}
.section-cv[data-cv-type="2"] .cv-col.member .btn-primary::after {
  background-image: url(/common_v10/images/icn-bullet-black.svg);
}
@media screen and (max-width: 767px) {
  .section-cv[data-cv-type="2"] .cv-col.member {
    margin-top: 32px;
  }
}
.section-cv[data-cv-type="2"] .btn-primary {
  border-radius: 9999px !important;
}
.section-cv[data-cv-type="2"] .cv-heading {
  position: relative;
  text-align: center;
}
.section-cv[data-cv-type="2"] .cv-heading::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 24px;
  width: 100%;
  height: 2px;
  background: var(--customer-color);
}
.section-cv[data-cv-type="2"] .cv-heading > .icn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--customer-color);
}
.section-cv[data-cv-type="2"] .cv-heading > .icn img {
  position: relative;
  z-index: 1;
}
.section-cv[data-cv-type="2"] .cv-heading > h3 {
  font-size: 22px;
  margin: 8px 0 24px;
  color: var(--customer-color);
}
@media screen and (max-width: 767px) {
  .section-cv[data-cv-type="2"] .cv-heading > h3 {
    font-size: 20px;
  }
}

/*ローダー*/
.loader,
.loader:after {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.loader {
  margin: 30px auto;
  font-size: 4px;
  position: relative;
  text-indent: -9999em;
  border-top: 4px solid rgb(235, 56, 23);
  border-right: 4px solid #000;
  border-bottom: 4px solid rgb(235, 56, 23);
  border-left: 4px solid #000;
  border-radius: 100px;
  transform: translateZ(0);
  animation: kf-load 1s infinite linear;
}

@keyframes kf-load {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bar_wrap {
  position: relative;
  margin-top: 88px;
  padding-bottom: 160px;
}

.bar_animation {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 150px;
  animation: bar_animation_kf 1.4s infinite;
  overflow: hidden;
  transition: all 0.3s;
}

.image_loaded .bar_animation {
  opacity: 1;
}

.bar_animation .bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 150px;
  background: linear-gradient(to bottom, rgb(248, 58, 35) 0%, rgb(0, 100, 255) 100%);
}

@keyframes bar_animation_kf {
  0% {
    top: 0;
    height: 0;
  }
  25% {
    top: 0;
    height: 150px;
  }
  50% {
    top: 150px;
    height: 0;
  }
  100% {
    top: 150px;
    height: 0;
  }
}
#gnav-sp {
  transition: all 0.3s;
  opacity: 0;
}
#gnav-sp.show {
  opacity: 1;
}
#gnav-sp .swiper-slide {
  display: none;
}
#gnav-sp .swiper-slide:nth-child(1) {
  display: block;
}
#gnav-sp .menu .nav-label-list {
  width: auto !important;
}
#gnav-sp .menu .nav-label-list .deactive {
  display: none;
}
#gnav-sp .tv_menu {
  width: 20%;
}
#gnav-sp .tv_menu a {
  padding-top: 2px !important;
  text-align: center;
}
#gnav-sp .tv_menu .icon {
  display: block;
  width: 45%;
  margin: 0 auto;
}
#gnav-sp .tv_menu .text {
  height: 2.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#gnav-sp .menu-swiper-sp .swiper-container {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

#fixed-nav.is-active {
  display: none;
}

.table-uchiwake {
  border-collapse: separate;
  table-layout: auto;
}
.table-uchiwake th,
.table-uchiwake td {
  position: relative;
  font-size: 15px;
  border: none;
}
@media screen and (max-width: 767px) {
  .table-uchiwake th,
  .table-uchiwake td {
    font-size: 13px;
  }
}
.table-uchiwake th {
  color: #fff;
  background: #000;
}
.table-uchiwake td {
  background: #000;
}
.table-uchiwake tbody th,
.table-uchiwake tbody td {
  border-bottom: 1px solid #777;
}
.table-uchiwake tbody th::after,
.table-uchiwake tbody td::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  top: 8px;
  width: 1px;
  height: calc(100% - 16px);
  background: #777;
}
@media screen and (max-width: 767px) {
  .table-uchiwake tbody th,
  .table-uchiwake tbody td {
    height: 62px;
  }
}
.table-uchiwake tbody td {
  text-align: center;
}
.table-uchiwake tbody td:last-of-type::after {
  display: none;
}
.table-uchiwake thead th {
  text-align: center;
  border-top: 1px solid #777;
  border-bottom: 1px solid #777;
  background: #242424;
}
.table-uchiwake thead th:nth-of-type(2), .table-uchiwake thead th:nth-of-type(3) {
  width: 28%;
}
@media screen and (max-width: 767px) {
  .table-uchiwake thead th:nth-of-type(2) {
    width: 34%;
  }
}

.is-ad-shinsta,
.is-ad-shinsta-plus {
  display: none;
}

.ad-tab {
  --btn-height: 78px;
  --bd-color: #fff;
  --active-color: transparent;
  --border-thickness: 2px;
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 48px auto 48px;
}
.ad-tab.w-full {
  width: 100vw;
}
@media screen and (max-width: 767px) {
  .ad-tab {
    --btn-height: 68px;
  }
}
.ad-tab::before, .ad-tab::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  bottom: 0;
  height: var(--border-thickness);
  background-color: var(--bd-color);
}
.ad-tab::before {
  left: 0;
  width: calc((100vw - 920px) / 2 + 32px + 1px);
}
@media screen and (max-width: 920px) {
  .ad-tab::before {
    width: calc((100vw - 100%) / 2 + 32px + 1px);
  }
}
@media screen and (max-width: 767px) {
  .ad-tab::before {
    width: calc((100vw - 100%) / 2 + 16px + 1px);
  }
}
.ad-tab::after {
  right: 0;
  width: calc((100vw - 920px) / 2 + 32px + 1px);
}
@media screen and (max-width: 920px) {
  .ad-tab::after {
    width: calc((100vw - 100%) / 2 + 32px + 1px);
  }
}
@media screen and (max-width: 767px) {
  .ad-tab::after {
    width: calc((100vw - 100%) / 2 + 16px + 1px);
  }
}
.ad-tab .ad-tab-nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
  padding: 0 32px;
}
@media screen and (max-width: 767px) {
  .ad-tab .ad-tab-nav {
    padding: 0 16px;
  }
}
.ad-tab .ad-tab-nav::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: calc(50% - 13px);
  width: 26px;
  height: var(--border-thickness);
  background-color: var(--bd-color);
}
@media screen and (max-width: 767px) {
  .ad-tab .ad-tab-nav::before {
    left: calc(50% - 7px);
    width: 14px;
  }
}
.ad-tab .ad-tab-nav .ad-tab-nav-item {
  transition: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  width: calc(50% - 12px);
  height: var(--btn-height);
  margin-bottom: 0;
  padding: 0 8px;
  border: 2px solid var(--bd-color);
  border-radius: 16px 16px 0 0;
  background: transparent;
}
@media screen and (max-width: 767px) {
  .ad-tab .ad-tab-nav .ad-tab-nav-item {
    font-size: 15px;
    line-height: 1.3;
    width: calc(50% - 6px);
    border-radius: 10px 10px 0 0;
  }
}
.ad-tab .ad-tab-nav .ad-tab-nav-item .under {
  position: relative;
}
.ad-tab .ad-tab-nav .ad-tab-nav-item .under::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4px;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, #e83817, #0563fa);
  transition: 0.24s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media screen and (max-width: 767px) {
  .ad-tab .ad-tab-nav .ad-tab-nav-item .under::after {
    bottom: -6px;
  }
}
.ad-tab .ad-tab-nav .ad-tab-nav-item:focus {
  outline: none;
  background: transparent;
}
.ad-tab .ad-tab-nav .ad-tab-nav-item.current {
  position: relative;
  pointer-events: none;
  color: #fff;
  height: calc(var(--btn-height) + 16px);
  padding-block: 16px;
  border-bottom: none;
  background: var(--active-color);
}
@media screen and (max-width: 767px) {
  .ad-tab .ad-tab-nav .ad-tab-nav-item.current {
    opacity: 1 !important;
  }
}
.ad-tab .ad-tab-nav .ad-tab-nav-item.current .under::after {
  width: 100%;
}

.ad-tab-end {
  width: 100%;
  height: 3px;
  background: var(--bd-color);
}

.lp {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

.dark-mode {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-bottom: 80px;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .dark-mode {
    padding-bottom: 48px;
  }
}
.dark-mode a {
  color: #fff;
}
.dark-mode h2 {
  font-size: 44px;
  line-height: 1.2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .dark-mode h2 {
    font-size: 30px;
  }
}
.dark-mode .tit-balloon {
  font-size: 38px;
  max-width: 780px;
  margin: auto;
}
@media screen and (max-width: 799px) {
  .dark-mode .tit-balloon {
    font-size: 36px;
  }
}
.dark-mode .tit-balloon span {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-bottom: 24px;
  border-bottom: 2px solid #fff;
}
@media screen and (max-width: 767px) {
  .dark-mode .tit-balloon span {
    padding-bottom: 16px;
  }
}
.dark-mode .tit-balloon span::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: calc(50% - 7.75px);
  bottom: -14px;
  width: 15.5px;
  height: 14px;
  background: url(../images/tit_line_balloon.svg) no-repeat center bottom/100% auto;
}

.light-mode {
  position: relative;
  z-index: 0;
  color: #000;
  background-color: #f0f0f0;
}
.light-mode h2 {
  font-size: 44px;
}
@media screen and (max-width: 767px) {
  .light-mode h2 {
    font-size: 30px;
  }
}

.plus-icon {
  text-align: center;
  margin: 24px auto;
}
@media screen and (max-width: 767px) {
  .plus-icon {
    width: 42px;
    height: 42px;
    margin: 16px auto;
  }
}

.lp-label-gray {
  display: inline-block;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  padding: 4px 18px;
  color: #000;
  border-radius: 6px;
  background: #e2e2e2;
}
@media screen and (max-width: 767px) {
  .lp-label-gray {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .mv {
    width: calc(100% + 32px);
    margin-left: -16px;
  }
}
.mv img {
  border-radius: 48px;
}
@media screen and (max-width: 767px) {
  .mv img {
    border-radius: 0;
  }
}

.bg-grad-1 {
  position: absolute;
  z-index: -1;
  left: -260px;
  top: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(#490001 0%, transparent 50%);
}
@media screen and (max-width: 767px) {
  .bg-grad-1 {
    left: -220px;
    top: 30px;
    width: 480px;
    height: 480px;
  }
}

.bg-grad-2 {
  position: absolute;
  z-index: -1;
  right: -350px;
  top: -200px;
  width: 750px;
  height: 750px;
  background: radial-gradient(#00327b 0%, transparent 50%);
}
@media screen and (max-width: 767px) {
  .bg-grad-2 {
    right: -220px;
    top: -250px;
    width: 500px;
    height: 500px;
  }
}

a.lp-link-self,
a.lp-link-self-sm,
a.lp-link-anchor,
a.lp-link-anchor-sm,
span.lp-link-anchor-sm {
  color: #fff !important;
  font-weight: bold;
}
a.lp-link-self::after,
a.lp-link-self-sm::after,
a.lp-link-anchor::after,
a.lp-link-anchor-sm::after,
span.lp-link-anchor-sm::after {
  content: "";
  position: relative;
  top: -1px;
  display: inline-block;
  vertical-align: middle;
  width: 26px;
  height: 26px;
  margin-left: 8px;
  background: url(../images/icon_arrow.svg) no-repeat center right/100% auto;
}
@media screen and (max-width: 767px) {
  a.lp-link-self::after,
  a.lp-link-self-sm::after,
  a.lp-link-anchor::after,
  a.lp-link-anchor-sm::after,
  span.lp-link-anchor-sm::after {
    width: 24px;
    height: 24px;
  }
}
a.lp-link-self.color-black,
a.lp-link-self-sm.color-black,
a.lp-link-anchor.color-black,
a.lp-link-anchor-sm.color-black,
span.lp-link-anchor-sm.color-black {
  color: #000 !important;
}
a.lp-link-self.color-black::after,
a.lp-link-self-sm.color-black::after,
a.lp-link-anchor.color-black::after,
a.lp-link-anchor-sm.color-black::after,
span.lp-link-anchor-sm.color-black::after {
  background-image: url(../images/icon_arrow_blk.svg);
}

a.lp-link-self-sm::after {
  width: 20px;
  height: 20px;
  margin-left: 6px;
}
@media screen and (max-width: 767px) {
  a.lp-link-self-sm::after {
    width: 18px;
    height: 18px;
  }
}

a.lp-link-anchor::after,
a.lp-link-anchor-sm::after,
span.lp-link-anchor-sm::after {
  transform: rotate(90deg);
}
a.lp-link-anchor.reverse::after,
a.lp-link-anchor-sm.reverse::after,
span.lp-link-anchor-sm.reverse::after {
  transform: rotate(-90deg);
}

a.lp-link-anchor-sm::after,
span.lp-link-anchor-sm::after {
  width: 20px;
  height: 20px;
}

.skew-label {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 44px;
  margin: 0 auto 16px;
}
.skew-label::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  transform: skew(-14deg);
  background-color: #fff;
  color: #000;
  font-size: 26px;
  font-weight: bold;
}
.skew-label::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 6px 0 6px;
  border-color: #fff transparent transparent transparent;
}
.skew-label .text-grad {
  font-size: 20px;
  font-weight: bold;
  padding: 2px 0;
  background: linear-gradient(to right, rgb(248, 58, 35) 0%, rgb(0, 100, 255) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.text-grad {
  font-size: 20px;
  font-weight: bold;
  padding: 2px 0;
  background: linear-gradient(to right, rgb(248, 58, 35) 0%, rgb(0, 100, 255) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.charm {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .charm {
    display: block;
  }
}

.charm-item {
  position: relative;
  z-index: 0;
  text-align: center;
  width: calc(50% - 12px);
  margin-top: 48px;
  padding: 64px 16px;
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 767px) {
  .charm-item {
    width: calc(100% + 12px);
    margin-left: -6px;
    padding: 8px 0 24px;
  }
  .charm-item:nth-of-type(1)::before {
    left: 12px;
  }
  .charm-item:nth-of-type(2)::before {
    left: -12px;
  }
}
.charm-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(100deg, rgba(70, 70, 70, 0.6) 0%, rgba(70, 70, 70, 0) 100%);
  transform: skewY(-8deg);
}
.charm-item h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 12px;
}
@media screen and (max-width: 949px) {
  .charm-item h3 {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .charm-item h3 {
    margin-top: 20px;
  }
}
.charm-item:nth-of-type(2) {
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .charm-item:nth-of-type(2) {
    margin-top: 48px;
  }
}
@media screen and (max-width: 767px) {
  .charm-item .mw-190-sp {
    max-width: 190px;
  }
}

.bar-skew-grad {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  margin: 32px auto 0;
  padding: 14px 0;
}
@media screen and (max-width: 949px) {
  .bar-skew-grad {
    padding: 12px 0;
  }
}
@media screen and (max-width: 767px) {
  .bar-skew-grad {
    width: 85%;
    max-width: 332px;
    padding: 10px 0;
  }
}
.bar-skew-grad::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(248, 58, 35) 0%, rgb(0, 100, 255) 100%);
  transform: skewX(-12deg);
}
.bar-skew-grad.bar-w-400 {
  max-width: 352px;
}
@media screen and (max-width: 949px) {
  .bar-skew-grad.bar-w-400 {
    max-width: 292px;
  }
}
.bar-skew-grad > .inner-1::before, .bar-skew-grad > .inner-1::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  width: 4px;
  height: 100%;
  transform: skewX(-12deg);
}
.bar-skew-grad > .inner-1::before {
  left: -8px;
  background: rgb(248, 58, 35);
}
.bar-skew-grad > .inner-1::after {
  right: -8px;
  background: rgb(0, 100, 255);
}
.bar-skew-grad > .inner-1 > .inner-2::before, .bar-skew-grad > .inner-1 > .inner-2::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  width: 3px;
  height: 100%;
  transform: skewX(-12deg);
}
.bar-skew-grad > .inner-1 > .inner-2::before {
  left: -15px;
  background: rgb(248, 58, 35);
}
.bar-skew-grad > .inner-1 > .inner-2::after {
  right: -15px;
  background: rgb(0, 100, 255);
}

.bar-skew-wht {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: #000;
  width: calc(100% - 48px);
  margin: 32px auto 0;
  padding: 10px 12px;
}
@media screen and (max-width: 767px) {
  .bar-skew-wht {
    padding: 6px 8px;
  }
}
.bar-skew-wht::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: skewX(-12deg);
}
.bar-skew-wht.bar-w-600 {
  width: 552px;
}
@media screen and (max-width: 767px) {
  .bar-skew-wht.bar-w-600 {
    width: calc(100% - 48px);
  }
}
.bar-skew-wht > .inner-1::before, .bar-skew-wht > .inner-1::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #fff;
  transform: skewX(-12deg);
}
.bar-skew-wht > .inner-1::before {
  left: -8px;
}
.bar-skew-wht > .inner-1::after {
  right: -8px;
}
.bar-skew-wht > .inner-1 > .inner-2::before, .bar-skew-wht > .inner-1 > .inner-2::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #fff;
  transform: skewX(-12deg);
}
.bar-skew-wht > .inner-1 > .inner-2::before {
  left: -15px;
}
.bar-skew-wht > .inner-1 > .inner-2::after {
  right: -15px;
}

.lp-card {
  position: relative;
  z-index: 0;
  color: #000;
  background-color: #fff;
}
.lp-card .lp-card-body {
  position: relative;
  padding: 24px 16px 0;
}
.lp-card .lp-card-body > h3 {
  margin: 0 0 12px;
  color: #000;
}
@media screen and (max-width: 767px) {
  .lp-card .lp-card-body > h3 {
    font-size: 26px;
  }
}
.lp-card .lp-card-body sup {
  font-size: 12px;
  top: -14px;
}
.lp-card .lp-card-img {
  position: relative;
  z-index: -1;
  margin-top: -32px;
}
.lp-card .lp-card-img img {
  width: 100%;
  height: auto;
}

.lp-marker {
  border-bottom: 3px solid;
  border-image: linear-gradient(to right, rgb(248, 58, 35) 0%, rgb(0, 100, 255) 100%);
  border-image-slice: 1;
}

.lp-box {
  position: relative;
  color: #000;
  border-radius: 16px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .lp-box {
    border-radius: 8px;
  }
}
.lp-box a {
  color: #406FAF;
}
.lp-box > .lp-box-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin: 0;
  padding: 24px 16px;
  border-radius: 16px 16px 0 0;
  background: #e2e2e2;
}
@media screen and (max-width: 767px) {
  .lp-box > .lp-box-header {
    font-size: 16px;
    padding: 16px 8px;
    border-radius: 8px 8px 0 0;
  }
}
.lp-box > .lp-box-header .inline {
  position: relative;
  display: inline-block;
}
.lp-box > .lp-box-header .inline .label {
  position: absolute;
  z-index: 1;
  left: -108px;
  top: -38px;
}
@media screen and (max-width: 767px) {
  .lp-box > .lp-box-header .inline .label {
    width: 60px;
    left: -68px;
    top: -30px;
  }
}
.lp-box > .lp-box-body {
  padding: 32px 16px 16px;
}
@media screen and (max-width: 767px) {
  .lp-box > .lp-box-body {
    padding-top: 24px;
  }
}

.lp-box-dark {
  position: relative;
  color: #fff;
  padding: 32px 20px 48px;
  background: #333;
}
@media screen and (max-width: 767px) {
  .lp-box-dark {
    width: calc(100% + 32px);
    margin-left: -16px;
    padding-inline: 16px;
  }
}
.lp-box-dark.balloon-l::before, .lp-box-dark.balloon-r::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 30px 20px;
  border-color: transparent transparent #333 transparent;
}
@media screen and (max-width: 767px) {
  .lp-box-dark.balloon-l::before, .lp-box-dark.balloon-r::before {
    top: -26px;
    border-width: 0 18px 26px 18px;
  }
}
.lp-box-dark.balloon-l::before {
  left: calc(50% - 20px);
}
.lp-box-dark.balloon-r::before {
  right: calc(50% - 20px);
}

.lp-btn[data-color=grad] {
  position: relative;
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  color: #fff !important;
  max-width: 480px;
  margin-inline: auto;
  padding: 20px 16px;
  border-radius: 100px;
  background: linear-gradient(to right, rgb(248, 58, 35) 0%, rgb(0, 100, 255) 100%);
}
.lp-btn[data-color=grad]::after {
  content: "";
  position: absolute;
  right: 24px;
  top: calc(50% - 9px);
  width: 10px;
  height: 18px;
  background: url(../images/btn_arrow.svg) no-repeat center right/100% auto;
}
@media screen and (max-width: 767px) {
  .lp-btn[data-color=grad]::after {
    right: 20px;
    top: calc(50% - 7px);
    width: 8px;
    height: 14px;
  }
}

.lp-btn[data-color=wht] {
  position: relative;
  display: block;
  text-align: center;
  font-weight: bold;
  color: #000 !important;
  width: 100%;
  margin: auto;
  padding: 16px 16px;
  max-width: 500px;
  border-radius: 100px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .lp-btn[data-color=wht] {
    padding: 12px 12px;
  }
}
.lp-btn[data-color=wht]::after {
  content: "";
  position: absolute;
  right: 24px;
  top: calc(50% - 9px);
  width: 10px;
  height: 18px;
  background: url(../images/btn_arrow_blk.svg) no-repeat center right/100% auto;
}
@media screen and (max-width: 767px) {
  .lp-btn[data-color=wht]::after {
    right: 20px;
    top: calc(50% - 7px);
    width: 8px;
    height: 14px;
  }
}
.lp-btn[data-color=wht] .lp-btn-row {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .lp [class^=btn-]::after,
  .lp [class*=" btn-"]::after {
    right: 16px;
  }
}

.sec-container {
  position: relative;
  z-index: 0;
  padding: 48px 16px;
  box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .sec-container {
    padding: 32px 16px;
  }
}
.sec-container .sec-item {
  margin: 48px auto;
}

.content-body {
  padding: 32px 0;
}

.sec-container.grad.is-anime::before {
  opacity: 0;
  background: linear-gradient(to right, rgb(248, 58, 35) 0%, rgb(0, 100, 255) 100%);
  animation: kf-show 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s forwards;
}
@keyframes kf-show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.sec-container.grad.is-anime::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
.sec-container.grad.is-anime::before, .sec-container.grad.is-anime::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  z-index: -1;
}
.sec-container.grad > .grad-arrow {
  padding-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .sec-container.grad > .grad-arrow {
    padding-bottom: 30px;
  }
}
.sec-container.grad > .grad-arrow::before, .sec-container.grad > .grad-arrow::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  width: 50%;
  height: 40px;
  background: #000;
}
@media screen and (max-width: 767px) {
  .sec-container.grad > .grad-arrow::before, .sec-container.grad > .grad-arrow::after {
    height: 30px;
  }
}
.sec-container.grad > .grad-arrow::before {
  left: -12px;
  transform: skewX(-30deg);
}
@media screen and (max-width: 767px) {
  .sec-container.grad > .grad-arrow::before {
    left: -9px;
  }
}
.sec-container.grad > .grad-arrow::after {
  right: -12px;
  transform: skewX(30deg);
}
@media screen and (max-width: 767px) {
  .sec-container.grad > .grad-arrow::after {
    right: -9px;
  }
}

.grad-bottom::before {
  background: linear-gradient(to right, rgb(248, 58, 35) 0%, rgb(0, 100, 255) 100%);
}
.grad-bottom::after {
  background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.grad-bottom::before, .grad-bottom::after {
  content: "";
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  height: 400px;
  z-index: -1;
  opacity: 0;
  animation: kf-show 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s forwards;
}
@keyframes kf-show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.banner {
  /*
  margin-top: 88px;

  */
  margin-top: 96px;
  margin-bottom: -44px;
}
@media screen and (max-width: 767px) {
  .banner {
    margin-top: 84px;
  }
}

.bnr-shinsta-plus {
  position: relative;
  text-align: center;
  max-width: 500px;
  margin: 24px auto 8px;
  padding: 0 16px 16px;
  border: 2px solid #fff;
  background: linear-gradient(to top, #262626, #000000);
}
.bnr-shinsta-plus .bnr-shinsta-plus-heading {
  position: relative;
  z-index: 1;
  top: -16px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 4px;
  padding: 0 12px;
  background-color: #000;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .bnr-shinsta-plus .bnr-shinsta-plus-heading {
    top: -14px;
    font-size: 16px;
  }
}
.bnr-shinsta-plus .lp-link-anchor-sm {
  transition: 0.3s;
}
.bnr-shinsta-plus a {
  display: block;
}
.bnr-shinsta-plus a:hover {
  opacity: 1;
}
.bnr-shinsta-plus a:hover .lp-link-anchor-sm {
  opacity: 0.7 !important;
}