
html{
  background: #18004F repeat-y;
  background-size: 100%;
  scroll-behavior: smooth;
}
body {
  background: #18004F repeat-y;
  font-family: "Montserrat","Noto Sans JP","Helvetica Neue",Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-style: normal;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  width: 100%;
  height: 100%;
  margin: 0px!important;
  padding: 0px 0 0!important;
  letter-spacing: 0.08em;
}

@keyframes gradietion_animation{
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
body::after {
  z-index: 0;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  background-color:hsla(226,14%,37%,.5);
  background-image:
  radial-gradient(at 100% 98%, hsla(168,59%,55%,1) 0px, transparent 50%),
  radial-gradient(at 1% 1%, hsla(249,25%,65%,1) 0px, transparent 50%);
  background-size: 200% 200%;
  animation: gradietion_animation 9s ease infinite;
}
a {
  text-decoration: none!important;
}
a:hover {
  color: #06cdb8!important;
  opacity: 1!important;
}
a.main_color {
  color: #06cdb8!important;
}
.attention_color {
  color:#EB5B5B;
}
.btn_main:hover {
  color: #fff!important;
}
header {
  height: 80px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}
.container, .container-fluid {
  padding: 0;
}
h1 {
  line-height: 0;
  margin: 0;
}
.navbar-toggler-icon {
  background-image:url(../img/icon_menu.png);
}
button[aria-expanded="true"] .navbar-toggler-icon{
  background-image:url(../img/icon_close.png);
}
.logo {
  width: 182px;
  height: 32px;
}
header .btn_area {
  width: 336px;
  white-space: nowrap
}
header nav.navbar {
  max-width: 1720px;
  width: 100%;
  background: #000;
  opacity: 0.8;
  padding: 10px 40px;
  border-radius: 8px;
  margin: 30px auto;
}
header nav.navbar .navbar-nav{
  width: 100%;
  justify-content: space-around;
}
.navbar-nav a{
  font-size: 16px;
  line-height: 40px;
  text-align: left;
  color: #fff;
  white-space: nowrap
}
nav .navbar-nav .nav-link.active, nav .navbar-nav .nav-link.show {
  color: #06cdb8;
}
section {
  width: 875px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.wrapper {
  position: relative;
  z-index: 10;
  background: url(../img/bg_circle.png) no-repeat top center;
  background-position-y: -180px;
}
section.kv {
  max-width: 100%;
  width: auto;
  margin-top: 90px;
}
section.plan .w1414px {
  max-width: 1414px;
  margin: 0 auto;
}
section.benefit,section.plan {
  width: 100%;
  padding: 0;
}
section.benefit .w1720px {
  max-width: 1480px;
  margin: 0 auto;
}
section.benefit .w1720px .scroll,section.plan .w1414px .scroll  {
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
	overflow: scroll;
}
h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 50px;
}
h3 {
  font-weight: normal;
  font-size: 32px;
  line-height: 80px;
  text-align: center;
  color: #06cdb8;
  margin-bottom: 90px;
}
h4.head_line {
  color: #06cdb8;
  font-size: 16px;
  align-items: center;
  display: flex;
  margin-bottom: 60px;
}
h4.head_line.w {
  color: #fff;
}
h4.head_line::before,
h4.head_line::after {
  background-color: #06cdb8;
  content: "";
  flex-grow: 1;
  height: 1px;
}
h4.head_line.w::before,
h4.head_line.w::after {
  background-color: #fff;
}
h4.head_line::before {
  margin-right: 15px; 
}
h4.head_line::after {
  margin-left: 15px;
}
.pc_only {
  display: block;
}  
.sp_only {
  display: none;
}
small {
  font-size: 10px;
  margin-right: 5px;
}
.small {
  font-size: 12px!important;
}
.kv img {
  width: 80px;
  height: 80px;
}
.kv .fadeUpTrigger {
  width: 1050px;
  margin: 65px auto 70px;
}
.kv .fadeUpTrigger img{
  width: 1050px;
  height: 820px;
} 
/* fade */
.fadeUp{
  animation: fade_up 1s ease forwards; 
  opacity:0;
}
@keyframes fade_up{
  from {
    opacity: 0;
  transform: translateY(150px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
.fadeIn{
  opacity:0;
  animation: fade_in 1.2s ease forwards; 
}
@keyframes fade_in{
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInSlow{
  opacity:0;
  animation: fade_slow 1.6s ease forwards; 
}
@keyframes fade_slow{
  0%{
    opacity: 0;
    transform: translateY(40px);
    }
  50%{
    opacity: 0;
    transform: translateY(40px);
  }
  100%{
    opacity: 100;
    transform: translateY(0px);
    }
}
.fadeInLeft{
  opacity:0;
  animation: fade_left 1s ease forwards; 
}
@keyframes fade_left{
  0%{
    opacity: 0;
    transform: translateX(-150px);
    }
  100%{
    opacity: 100;
    transform: translateX(0px);
    }
}
.fadeOut {
  animation: fade_out 1s ease infinite; 
}
@keyframes fade_out{
  0%{
    opacity: 100;
    }
  100%{
    opacity: 0;
    visibility: hidden;
    }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger,.fadeInTrigger,.fadeLeftTrigger{
    opacity: 0;
}
.animation {
  width: 100%;
  height: 300px;
  z-index: -1;
  position: relative;
  background: url(../img/text_animation.png) repeat-x 90%;
  opacity: .3;
  background-position-y: 0%;
  background-size: 200%;
  margin: -350px auto 0;
  animation-timing-function:ease;
  animation: scroll-text  15s linear infinite;
}
@keyframes scroll-text {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -7204px 0;
    }
}
.kv p.lead_01 {
  font-size: 20px;
  margin-bottom: 90px;
}
.kv .lead_02 {
  margin: 30px auto 140px;
  font-weight: bold;
  font-size: 40px;
  line-height: 2;
  text-align: center;
}
em {
  color: #06CDB8;
  font-style: normal;
}
.btn_border{
  display: inline-block;
  width: 256px;
  padding: 20px 30px; 
  background: transparent;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  color: #06cdb8;
  border: 1px solid #06cdb8;
  border-radius: 50px;
  margin-left: 15px;
}
.btn_main {
  display: inline-block;
  width: 256px;
  padding: 20px 30px; 
  border-radius: 50px;
  background: #06cdb8;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  color: #fff;
  margin-left: 15px;
}
.btn_s {
  width: 160px;
  padding: 11px 0;
  font-size: 16px;
}
.btn_s:hover,.btn_main:hover,.btn_border:hover { 
  opacity: .7!important;
}
.ml-50 {
  margin-left: 50px;
}
.mr-20 {
  margin-right: 20px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-30 {
  margin-top: 30px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-120 {
    margin-bottom: 120px;
}
.mb-320 {
  margin-bottom: 160px;
}
.mb-35 {
  margin-bottom: 35px;
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-400 {
  margin-bottom: 200px;
}
.w-49 {
  width: 49%;
  display: flex;
  align-items: stretch;
}
.vertical_text {
  writing-mode: vertical-rl;
}
.box {
  background-color: rgb(120 72 236 /.2);
  width: 100%;
  padding: 30px 40px 40px;
  border-radius: 8px;
  text-align: left;
}
.box h4 {
  font-weight: bold;
  font-size: 20px;
  line-height: 36px;
}
.box p {
  font-size: 14px;
  line-height: 22px;
}
.flow .box {
  padding: 40px 50px;
}
.box_round {
  border-radius: 100px;
  font-size: 14px;
  line-height: 22px;
  border: 1px solid #fff;
  padding: 20px 50px;
  margin-bottom: 25px;
  text-align: left;
  width: 560px;
}
.box_round {
  border-radius: 40px;
  font-size: 14px;
  line-height: 22px;
  border: 1px solid #fff;
  padding: 20px 50px;
  margin-bottom: 25px;
  margin-left: 15px;
  text-align: left;
  width: 560px;
}
.box_round_w {
  border-radius: 40px;
  font-size: 16px;
  line-height: 24px;
  background-color: #fff;
  color:#0C0B26;
  padding: 20px 50px;
  margin-bottom: 25px;
  margin-right: 15px;
  text-align: left;
  width: 560px;
}
.box_title {
  width: 100px;
  height: 240px;
  border-radius: 0px 8px 8px 0px;
  background: transparent;
  text-align: center;
  font-size: 16px;
}
.benefit .line .box_title{
  border: 1px solid #fff;
}
.line .line_arrow:nth-child(3) {
  width: 440px;
}
.line .line_arrow:nth-child(5) {
  border: none;
}
.line .line_arrow:nth-child(5)::after{
  content: none;
  border: none;
}
.grad .box:nth-child(3),.basic .box:nth-child(3) {
  margin-right: 180px;
}
.line_arrow	{
  width: 280px;
  margin-right: 30px;
  padding: 0 0 0 30px;
  display: flex;
  align-items: center;
  text-align: left;
  position: relative;
  flex-shrink: 0; 
}
.benefit .line_arrow  {
  /* width: 336px; */
  height: 240px;
  margin-right: 30px;
  padding: 0 0 0 30px;
  display: flex;
  align-items: center;
  background: transparent;
}
.line_arrow::after	{
  content: "";
  background: url(../img/la_r.png);
  width: 11px;
  height: 240px;
  position: absolute;
  right: -5px;
}
.benefit .box_title {
  min-width: 100px;
  margin-bottom: 45px;
  padding: 0 35px;
  margin-right: 30px;
}
.benefit .box_title img {
  width: 50px;
  height: 50px;
  margin-bottom: 5px;
}
.benefit .box {
  background-color: rgb(120 72 236 / .2);
  width: 280px;
  height: 300px;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  margin: 0 20px 0 0;
  padding: 20px 0 0;
  position: relative;
  flex-shrink: 0;
}
.benefit .box .bg {
  padding: 20px;
  height: 100%;
  border-radius: 0 0 8px 8px;
}
.benefit .line span{
	font-size: 29px;
}
.benefit .line h4{
	font-size: 20px;
  font-weight: bold;
}
.benefit .line .dotted {
  height: 930px;
  border-radius: 8px;
  border: 2px dotted #fff;
  text-align: center;
  padding: 50px;
  z-index: 10;
  position: absolute;
  top: 0;
  right: 20px;
} 

.benefit .grad .box_title {
  background-image: linear-gradient(126deg, #7848EC,  #3C28AD);
  font-size: 20px;
  font-weight: bold;
  padding: 0 20px;
  height: 300px;
  margin-right: 30px;
}
.benefit .grad .box {
  border-top: 8px solid #7848EC;
}
.benefit .box p.point {
  line-height: 0;
  color: #06CDB8;
}
.benefit .grad ul {
  padding-left: 15px;
  color: #06CDB8;
  margin-top: -5px;
}
.benefit .grad li {
  list-style-image: url(../img/icon_check.svg);
}
.benefit .basic .box_title {
  background-color: #ACA3C1;
  font-size: 20px;
  font-weight: bold;
  padding: 0 40px;
  height: 300px;
  margin-right: 30px;
}
.benefit .box .circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.benefit .box .circle .small{
  font-size: 8px;
}
.benefit .grad .box .circle {
  color: #0C0B26;
  background-color: #06cdb8;
}
.benefit .basic .box .circle {
  color: #0C0B26;
  background-color: #ACA3C1;
}
.benefit .basic .box {
  border-top: 8px solid #ACA3C1;
}
.benefit .box p:first-child{
  height: 120px;
  line-height: 1.4;
}
.benefit .box p.problem {
  line-height: 0;
  color: #ACA3C1;
}
.benefit .basic ul {
    padding-left: 15px;
    color: #ACA3C1;
}
.benefit .basic li {
  list-style-image: url(../img/icon_check_prob.svg);
}
/*feature*/

.media img{
  width: 175px;
  height: 175px;
}
.feature .box img{
  width: 404px;
  height: 344px;
  margin: 40px 10px 0 60px;
}
.feature .w-49 .box img{
  width: 48px;
  height: 48px;
  margin: 0;
}
.case img {
  width: 80px;
  height: 80px;
}

.flow img {
  width: 82px;
  height: 72px;
}
.flow span,.flow h4 {
  color: #06cdb8;
}
img.arrow {
  width: 30px;
  height: 15px;
}
/* cr */
.carousel-indicators {
  bottom: -40px;
}
.carousel-indicators li{
  width: 15px;
  list-style: none;
  position: relative;
}
.carousel-indicators li::after{
  content: "";
  border: 1px solid #06cdb8;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.carousel-indicators li.active::after{
  background:#06cdb8;
}
.plan .box{
  width: 336px!important;
  padding: 8px 0 0;
  margin-right: 30px;
  color: #0C0B26;
}
.plan .box.min,.plan .box.min .btn_main {
  background-color: #acacac;
}
.plan .box.basic{
  background-color: #06CDB8;
}
.plan .box.pro,.plan .box.pro .btn_main{
  background-color: #7848EC;
}
.plan .box.un,.plan .box.un .btn_main{
  background-color: #3C29AD;
  margin-right: 0;
}
.plan .box .w{
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  text-align: center;
  padding: 8px 20px;
}
.plan .box strong{
  font-size: 28px;
}
.plan .box dt{
  border-top: 1px solid #606060;
  color: #606060;
  width: 50%;
  font-size: 14px;
  font-weight: normal;
  padding: 25px 0 20px;
  text-align: left;
  line-height: 0;
}
.plan .box dd{
  border-top: 1px solid #606060;
  width: 50%;
  padding: 25px 0 20px;
  font-weight: bold;
  text-align: left;
  line-height: 0;
}
.plan h4 {
  margin: 50px auto 30px;
  font-size: 29px;
}
.plan .min h4 {
  color: #ACACAC;
}
.plan .basic h4 {
  color: #06CDB8;
}
.plan .pro h4 {
  color: #7848EC;
}
.plan .un h4 {
  color: #3C29AD;
}
.plan .btn_main {
  width: 280px;
  height: 60px;
  line-height: 1;
  margin: 0 0 60px 0;
}
.support .d-flex{
  background-color: #fff;
  padding: 50px 40px;
  border-radius: 8px;
}
.support img {
  width: 56px;
  height: 56px;
  margin: 20px 50px 0 0;
}
.support h3 {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  margin: 0;
}
.support p {
  font-size: 16px;
  color: #606060;
}
.faq .ans {
  display: none;
}
.ques {
  position: relative;
  padding: 40px;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid #ACA3C1;
  text-align: left;
}
.ques .arrow {
  position: absolute;
  right: 40px;
  top: 60px;
  width: 16px;
  height: 8px;
}
.ques.close .arrow {
  transform:rotate(180deg);
}
.ans {
  font-size: 14px;
  padding: 40px 0 0;
  text-align: left;
  font-weight: normal;
}
footer {
  background:#0C0B26;
  text-align: center;
  padding: 60px 0 50px;
  position: relative;
  z-index: 1;
}
footer img {
  width: 267px;
  height: 89px;
}
footer h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 30px 0 0 60px;
}

@media screen and (max-width: 768px) {
  html{
    background: #18004F url(../img/bg_grad_sp.png) repeat-y;
    background-size: 100%;
  }
  body {
    background-position-y: -300px;
  }
  .wrapper {
    background-size: 650px auto;
    background-position-y: 0px;
  }
  .pc_only, .hide {
    display: none;
  }  
  .sp_only {
    display: block;
  }
  header nav.navbar {
    padding: 10px 20px;
    max-width: none;
    width: auto;
    margin: 30px 20px;
  }
  nav.navbar li.nav-item {
    border-bottom: .5px solid #fff;
    padding: 5px 2px;
  }
  header .btn_area {
    white-space: normal;
    width: 100%;
  }
  header .btn_area a{
    margin: 20px 0 0;
    width: 100%;
  }
  header p.small {
    font-size: 10px;
  }
  .logo {
    width: 122px;
    height: 22px;
  }
  section {
    padding: 0 25px;
    max-width: 100%!important;
  }
  section.kv {
    margin-top: 55px;
    padding: 0;
  }
  .flex_sp {
    flex-direction: column!important;
    align-items: center;
    margin-left: auto;
    margin-right: auto ;
  }
  .flex_sp a {
    margin-bottom: 15px;
  }
  h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }
  h3 {
    font-size: 20px;
    margin-bottom: 45px;
  }

  .kv img {
    width: 56px;
    height: 56px;
  }
  .kv h2 {
    font-size: 36px;
  }
  .btn_main, .btn_border {
    padding: 15px 30px;
    font-size: 15px;
    margin-left: 0;
  }
  .btn_border {
    margin-right: 15px;
  }
  .w-49 {
    width: 100%;
  }
  .mb-40 {
    margin-bottom: 30px;
  }
  .mb-120 {
      margin-bottom: 90px;
  }
  .mb-320 {
    margin-bottom: 60px;
  }
  .mb-400 {
    margin-bottom: 100px;
  }
  
  .kv p.lead_01 {
    font-size: 14px;
    margin-bottom: 60px;
  }
  .kv .lead_02 {
    font-size: 20px;
    margin-bottom: 60px;
  }
  .kv .fadeUpTrigger {
    width: 100%;
    margin: 65px auto 0px;
  }
  .kv .fadeUpTrigger img {
    width: 95%;
    height: auto;
  }
  .kv .fadeUpTrigger p {
    margin-left: 20px;
  }
  .animation {
    background-size: 400%;
    margin: -100px auto 0;
    height: 200px;
    animation: scroll-text  30s linear infinite;
  }
  .kv .lead_02 {
    margin: 0px auto 100px;
  }
  .line .box_title,.benefit .line_arrow {
    height: 160px;
  }
  .benefit .box_title {
    min-width: 50px !important;
    padding: 15px !important;
    font-size: 12px;
    margin-bottom: 20px;
  }
  .benefit .line_arrow::after { 
    height: 200px;
    top: -40px;
  }
  .benefit .grad .box_title, .benefit .basic .box_title {
    font-size: 12px;
  }
  .benefit .box_title img {
    width: 20px;
    height: 20px;
  }
  .benefit .box  {
    padding: 0;
  }
  .benefit .line .dotted {
    height: 800px;
  }
  .feature .box  {
    padding-left: 20px;
    padding-right: 20px;
  }
  .feature .box img {
    width: 95%;
    height: auto;
    margin: 40px auto 0;
  }
  .media img {
    width: 33%;
    height: 33%;
  }
  .box_round ,.box_round_w {
    width: 100%;
    padding: 20px;
  }
  .case img {
    width: 40px;
    height: 40px;
  }
  .flow span, .flow h4 {
    font-size: 16px;
  }
  .flow .ml-50{
    margin: -35px 0 0 0;
    width: 100%;
  }
  .flow .box {
    padding: 40px 25px;
  }
  .flow .box img {
    width: 64px;
    height: auto;
  }
  .flow .box .d-flex.align-items-center {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: flex-start!important;
  }
  section.plan {
    padding: 0 20px;
  }
  .plan .box{
    width: 100%!important;
    margin-right: 0;
  }
  .plan .scroll,.benefit .scroll  {
    overflow-x: scroll;
  }
  .plan .scroll .box{
    margin-right: 20px;
  }
  .plan .btn_main {
    padding: 15px 20px;
    height: auto;
  }
  .support .d-flex {
    flex-direction: column;
    align-items: center;
  }
  .support img {
    width: 36px;
    height: 36px;
    margin: 0;
  }
  .support h3 {
    text-align: center;
  }
  .ques {
    font-size: 16px;
    padding: 30px 0;
  }
  .ques .arrow {
    right: 0px;
    top: 40px;
  }
  footer img {
    width: auto;
    height: 59px;
  }
  footer .d-flex {
    flex-direction: column;
    align-items: center;
  }
  footer h2 {
    font-size: 20px;
    margin: 30px 0 0 0px;
  }
  .btn_area.sp_only {
    opacity: 0;
    position: fixed;
    bottom: 0;
    padding: 15px 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    background: rgb(0 0 0 / .8);
    justify-content: center;
  }
  .is-hidden {
    opacity: 0;
    visibility: hidden;
  }
}

