
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Noto Sans JP",sans-serif;
  color: #444444;
}

a {
  color: #5846f9;
  text-decoration: none;
}

a:hover {
  color: #8577fb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP",sans-serif;
}

.fleft{
	float: left;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #009BD9;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #7E5AAF;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# gradietion cta button
--------------------------------------------------------------*/

.cta-btn {
  text-align: end;
}
.cta-btn > .gradient-btn{
  display: inline-block;
  margin-top: 50px;
  margin-bottom: 50px;
  color:#fff;
  padding: 10px 70px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  border-radius:30px;
  text-decoration: none;
  outline: none;
  background: linear-gradient(270deg, rgba(0, 155, 217, 1)0%, rgba(126, 90, 175, 1)51%, rgba(0, 155, 217, 1)100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: all 0.3s ease-out;
}
.cta-btn > .gradient-btn:hover {
  color: #fff;
  background-position: 99% 50%;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #7E5AAF;
  border-top-color: #e7e4fe;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  /* background-image: linear-gradient(90deg, rgba(0, 155, 217, 1), rgba(126, 90, 175, 1) 80%); */
  background-color: #171717;
  /* background: linear-gradient(90deg, rgba(126, 90, 175, 1) 0%, rgba(0, 0, 0, 1) 80%); */
  padding: 12px 0;
}
/* 126, 90, 175, 1
0, 155, 217, 1 */
#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}


/* .navbar .getstarted .dl {
  background-color: #009BD9;
}

.navbar .getstarted .iq {
  background-color: #009BD9;
} */

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 10px;
  border-radius: 5px;
  color: #fff;
  /* background-image: linear-gradient(90deg, rgba(0, 155, 217, 0.5), rgba(126, 90, 175, 0.5) 80%); */
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.8);
}


.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  border-color: #fff;
  background-image: linear-gradient(90deg, rgba(0, 155, 217, 0.7), rgba(126, 90, 175, 0.7) 80%);
}

.navbar .getstarted:before,
.navbar li:hover>.getstarted:before {
  visibility: hidden;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 47, 65, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  background: url("../img/rs-hero-bg.png") center center / cover no-repeat fixed;
  padding: 10px 0;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #7E5AAF;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus
.navbar-mobile .getstarted:hover {
  margin: 15px;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #5846f9;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Sections
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  /* background: url("../img/rs-hero-bg.png") center center / cover no-repeat fixed; */
  /* background: url("../img/hero-bg-1.png") center center / cover no-repeat fixed; */
  background: url("../img/hero-bg-8.png") center center / cover no-repeat fixed;
}
#hero .container,
#hero .container-fluid {
  padding-top: 44px;
}

#hero .hero-logo{
  position: absolute;
  top: 450px;
  right: 0;
  width: 325px;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 30px;  
  letter-spacing: 5px;
  font-weight: 200;
}

#hero h2 .title-s {
  color: rgba(255, 255, 255, 0.8);
  font-size: 30px;
  margin-bottom: 20px; 
}

#hero .btn-get-started {
	width: 260px;
  padding: 10px 10px;
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 5px;
  color: #fff;
  transition: 0.3s;
  font-size: 17px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background-image: linear-gradient(90deg, rgba(0, 155, 217, 0.5), rgba(126, 90, 175, 0.5) 80%);
}

#hero .btn-get-started:hover {
  color: #fff;
  border-color: #fff;
  background-image: linear-gradient(90deg, rgba(0, 155, 217, 0.7), rgba(126, 90, 175, 0.7) 80%);
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1520px) {
  #hero {
    background-attachment: fixed;
  }
  #hero h2 {
    font-size: 35px;
    font-weight: 200; 
  }
  #hero .hero-logo{
    top: 490px;
    width: 390px;
  }
  #hero .hero-logo img{
    width: 320px;
  }
}

@media (max-width: 1620px) {
  #hero {
    background-attachment: fixed;
  }
  #hero h2 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 200;
  }
  #hero .hero-logo{
    top: 450px;
    width: 325px;
  }
  #hero .hero-logo img{
    width: 280px;
  }
}

@media (max-width: 1200px) {
  #hero {
    background-attachment: fixed;
  }
  #hero .hero-logo{
    top: 420px;
    width: 325px;
  }
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }

  #hero .container,
  #hero .container-fluid {
    padding-top: 68px;
  }

  #hero .hero-logo{
    top: 480px;
    width: 295px;
  }

  #hero .animated {
    animation: none;
    width: 200px;
  }

  #hero .hero-img {
    text-align: center;
    width: 50%;
  }

  #hero .hero-logo img{
    width: 250px;
  }

}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 26px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 23px;
    line-height: 24px;
    padding-bottom: 20px;
    font-weight: 200;
  }
  
  #hero .hero-img img {
    width: 60%;
  }
  #hero .hero-logo{
    top: 490px;
    width: 255px;
  }
  #hero .hero-logo img{
    width: 220px;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero h2{
    font-size: 18px;
    letter-spacing: 2px;
  } 

  #hero .logo {
    width: 80%;
    margin-bottom: 20px;
  }

  #hero .hero-logo{
    top: 440px;
    width: 200px;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-logo img{
    width: 180px;
  }
 #hero .container,
#hero .container-fluid {
  padding-top: 0px;
} 
}

@media (max-width: 575px),
(max-height: 600px) {
  #hero {
    height: auto;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f9f8ff;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #7E5AAF;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 20px;
}

@media (max-width: 650px) {
  .section-title h2{
    font-size: 22px;
  }
  .section-title h4{
    font-size: 16px;
  }
  .section-title p {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background-image: linear-gradient(90deg, #F9F8FF, #DDE8FF 80%) ;
}

.about .box {
  padding:40px 0 0 30px;
  height: 380px;
  width: 330px;
  background: #fff;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  h4{
    font-weight: bold;
    color: #7E5AAF;
  }
}

.about .box:hover{
  transform: scale(1.05) !important;
  transition-duration: 200ms;
  transition-delay: 0ms !important;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.box.box1{
  background-image: url("../img/about/about-bg-1.svg");
}
.box.box2{
  background-image: url("../img/about/about-bg-2.svg");
}
.box.box3{
  background-image: url("../img/about/about-bg-3.svg");
}

.about .about-circle .circle-img .img{
  max-height: 480px;
  filter: drop-shadow(0px 2px 15px rgba(0, 0, 0, 0.1));
}
.about .about-square-img{
  filter: drop-shadow(0px 2px 15px rgba(0, 0, 0, 0.1));
}

.about .icon-box h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0 10px 65px;
}

.about .icon-box i {
  font-size: 48px;
  float: left;
  color: #7E5AAF;
}

.about .icon-box p {
  font-size: 16px;
  color: #848484;
  margin-left: 70px;
}

.about .icon-box .read-more{
  display: inline-flex;
  align-items:end;
  justify-content:end;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.about .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 1267px) {
  .about .box {
    height: 330px;
    width: 280px;
  }
}

@media (max-width: 650px) {
  .about .box1 {
    margin-bottom: 10px;
  }
  .about .box2 {
    margin-bottom: 10px;
  }
  .about .about-square-img{
    margin-bottom: 10px;
  }

}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials{
  background: linear-gradient(90deg, rgba(37, 197, 255, 0.1) 0%, rgba(126, 90, 175, 0.5) 80%), url("../img/footer-bg.svg") center center / cover no-repeat;
}

.testimonials .testimonial-wrap {
  display: flex;
  justify-content: center;
}

.testimonials .testimonial-item {
  /* box-sizing: content-box; */
  width:80%;
  padding: 30px;
  margin: 30px 15px;
  /* min-height: 200px; */
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  /* position: relative; */
  background: #fff;
  border-radius: 5px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 5px;
  margin-top: 10px;
  border: 6px solid #f9f8ff;
  /* position: absolute; */
  /* left: -45px; */
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item p {
  margin: 15px auto 15px auto;
}

@media (max-width: 1267px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    width: 80px;
    position: static;
    left: auto;
  }
}

@media (max-width: 650px){
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px 10px;
    margin: 10px 0;
  }
}

/*--------------------------------------------------------------
# Advantage
--------------------------------------------------------------*/
.advantage{ 
  padding-bottom: calc(10vw + 5px);  
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(90deg, #F9F8FF, #DDE8FF 80%);
}
  
.advantage::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
}
.advantage::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 10vw solid #fff;
  border-right: 100vw solid transparent;
}

.advantage .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.advantage .icon-box .ad-text{
  color: #009BD9;
}

.advantage .icon-box img{
  width: 40px;
  float: left;
  color: #5846f9;
}

.advantage .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.advantage .icon-box .text-rs {
  color: #009BD9;
}

.advantage .rs-ad-image img{
  width: 250px;
  margin: 30px 0;
}

.advantage .tu{
  text-decoration-line: underline;
  text-decoration-color: #009BD9;
}

@media (max-width:650px){
  .advantage .rs-ad-image img{
    width: 200px;
    margin: 30px 0;
  }
}

/*--------------------------------------------------------------
# Usecase
--------------------------------------------------------------*/
.introducing-company{ 
  padding-bottom: calc(10vw + 5px);  
  position: relative;
  overflow: hidden;
  background: #fff;
}
  
.introducing-company::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
}
.introducing-company::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 10vw solid #f9f8ff;
  border-right: 100vw solid transparent;
}

.introducing-company .company-logo{
  width: auto;
  height: 40px;
}

.introducing-company .image-box{
  position:relative;
}

.introducing-company .case-wrapper {
  color: #7E5AAF;
}

.introducing-company .case-wrapper .company-name{
  font-size: 1.2em;
  text-align: left;
  line-height: 1.1em;
  padding: 5px 0 15px 0;
  border: none;
  box-shadow: none;
  font-weight: 500;
  color: #212121;
  letter-spacing: normal;
}
.introducing-company .case-wrapper .person{
  font-size: 0.8em;
  text-align: left;
  padding: 5px 0 0 0;
  color: #717C88;
  letter-spacing: normal;
  margin-bottom: 20px;
  line-height: 1.4em;
}

@media (max-width: 650px) {
  .introducing-company .case-wrapper{
    padding:0 20px;
  }  
  .introducing-company .company-logo{
    padding-bottom: 20px;
  } 
  .introducing-company .image-box{
    padding: 10px;
  }
  .introducing-company .case-wrapper h4{
    font-size: 20px;
  }
  .introducing-company .case-wrapper .company-name{
    font-size: 16px;
    margin: 0;
  }
}

/*------------------------------------------------*/
/*  icon   */
/*------------------------------------------------*/
.introducing-company .image-box .products-icon1{
  margin: 0px;
  position: absolute;
  top: -12px;
  left: -12px;
  z-index: 100;
  padding: 8px 20px 10px 20px;
  font-size: 1em;
  line-height: 1em;
  letter-spacing: normal;
}

.introducing-company .image-box .products-icon2{
  margin: 0px;
  position: absolute;
  top: 30px;
  left: -12px;
  z-index: 100;
  padding: 8px 20px 10px 20px;
  font-size: 1em;
  line-height: 1em;
  letter-spacing: normal;
}
.introducing-company .image-box .products-icon3{
  margin: 0px;
  position: absolute;
  top: 73px;
  left: -12px;
  z-index: 100;
  padding: 8px 20px 10px 20px;
  font-size: 1em;
  line-height: 1em;
  letter-spacing: normal;
}
.introducing-company .image-box .products-icon4{
  margin: 0px;
  position: absolute;
  top: 116px;
  left: -12px;
  z-index: 100;
  padding: 8px 20px 10px 20px;
  font-size: 1em;
  line-height: 1em;
  letter-spacing: normal;
}

.introducing-company .case-wrapper img{
  position: relative;
  box-shadow: 0 5px 30px -7px rgba(25,25,25,.8);
  overflow: hidden;
  opacity: 1;   
}

.introducing-company .case-wrapper .icon-pc {
  color:#ffbb2c;
  background-color: #f9f8ff;
}

.introducing-company .case-wrapper .icon-rs {
  color:#7E5AAF;
  background-color: #f9f8ff;
}

.introducing-company .case-wrapper .icon-vx {
  color:#009BD9;
  background-color: #f9f8ff;
}

.introducing-company .case-wrapper .icon-ac {
  color:#ff5828;
  background-color: #f9f8ff;
}



/*--------------------------------------------------------------
# Usecase_bottom
--------------------------------------------------------------*/
#Usecase_bottom{ 
  padding-bottom: calc(10vw + 5px);  
  position: relative;
  overflow: hidden;
  background: #fff;
}
  
#Usecase_bottom::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
}
#Usecase_bottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 10vw solid #f9f8ff;
  border-right: 100vw solid transparent;
}
#Usecase_bottom h3{
	color: #000000;
}
#Usecase_bottom .company-logo{
  /*width: auto;
  height: 36px;*/
}

#Usecase_bottom .image-box{
  position:relative;
}

#Usecase_bottom .case-wrapper {
  color: #7E5AAF;
}

#Usecase_bottom .case-wrapper .company-name{
  font-size: 1.2em;
  text-align: left;
  line-height: 1.1em;
  padding: 5px 0 15px 0;
  border: none;
  box-shadow: none;
  font-weight: 500;
  color: #212121;
  letter-spacing: normal;
}
#Usecase_bottom .case-wrapper .person{
  font-size: 0.8em;
  text-align: left;
  padding: 5px 0 0 0;
  color: #717C88;
  letter-spacing: normal;
  margin-bottom: 20px;
  line-height: 1.4em;
}

@media (max-width: 650px) {
  #Usecase_bottom .case-wrapper{
    padding:0 20px;
  }  
  #Usecase_bottom .company-logo{
    padding-bottom: 20px;
  } 
  #Usecase_bottom .image-box{
    padding: 10px;
  }
  #Usecase_bottom .case-wrapper h4{
    font-size: 20px;
  }
  #Usecase_bottom .case-wrapper .company-name{
    font-size: 16px;
    margin: 0;
  }
}

/*------------------------------------------------*/
/*  icon   */
/*------------------------------------------------*/
#Usecase_bottom .image-box .products-icon1{
  margin: 0px;
  position: absolute;
  top: -12px;
  left: -12px;
  z-index: 100;
  padding: 8px 20px 10px 20px;
  font-size: 1em;
  line-height: 1em;
  letter-spacing: normal;
}

#Usecase_bottom .image-box .products-icon2{
  margin: 0px;
  position: absolute;
  top: 30px;
  left: -12px;
  z-index: 100;
  padding: 8px 20px 10px 20px;
  font-size: 1em;
  line-height: 1em;
  letter-spacing: normal;
}
#Usecase_bottom .image-box .products-icon3{
  margin: 0px;
  position: absolute;
  top: 73px;
  left: -12px;
  z-index: 100;
  padding: 8px 20px 10px 20px;
  font-size: 1em;
  line-height: 1em;
  letter-spacing: normal;
}
#Usecase_bottom .image-box .products-icon4{
  margin: 0px;
  position: absolute;
  top: 116px;
  left: -12px;
  z-index: 100;
  padding: 8px 20px 10px 20px;
  font-size: 1em;
  line-height: 1em;
  letter-spacing: normal;
}

#Usecase_bottom .case-wrapper img{
  position: relative;
  box-shadow: 0 5px 30px -7px rgba(25,25,25,.8);
  overflow: hidden;
  opacity: 1;   
}

#Usecase_bottom .case-wrapper .icon-pc {
  color:#ffbb2c;
  background-color: #f9f8ff;
}

#Usecase_bottom .case-wrapper .icon-rs {
  color:#7E5AAF;
  background-color: #f9f8ff;
}

#Usecase_bottom .case-wrapper .icon-vx {
  color:#009BD9;
  background-color: #f9f8ff;
}

#Usecase_bottom .case-wrapper .icon-ac {
  color:#ff5828;
  background-color: #f9f8ff;
}




/*--------------------------------------------------------------
# Functions
--------------------------------------------------------------*/

.functions .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  border-color: #fff;
}

.functions .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.functions .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.functions .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.functions .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.functions .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.functions .icon-box h4 a {
  color: #2c4964;
  transition: ease-in-out 0.3s;
}

.functions .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.functions .iconbox-blue i {
  color: #47aeff;
}

.functions .iconbox-blue:hover .icon i {
  color: #fff;
}

.functions .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.functions .iconbox-purple i {
  color: #7E5AAF;
}

.functions .iconbox-purple:hover .icon i {
  color: #fff;
}

.functions .iconbox-purple:hover .icon path {
  fill: #7E5AAF;
}

/*--------------------------------------------------------------
# Connection
--------------------------------------------------------------*/
.connection{
  background-color: #f9f8ff;
}
.connection .connection-box {
  padding: 25px;
  transition: 0.3s;
  background-color: #fff;
  margin-top: 20px;
}

.connection .connection-box h3 {
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
}

.connection .connection-box i {
  line-height: 0;
  background: #f5f5f5;
  color: #47aeff;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
  display: inline-block;
}

.connection .connection-box .solution-img{
  display: block;
  margin: 0 auto;
}
/*--------------------------------------------------------------
# Support
--------------------------------------------------------------*/
.support .num-box{
  padding: 10px 0 10px 20px;
  background: #f9f8ff;
  border-color: #fff;
}

.support .num-box h4{
  font-size: 18px;
}

.support .num-box h4:first-letter {
  font-size: 1.2em;
  color: #009BD9;
  padding-right: 10px;
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #5846f9;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing{
  background: url("../img/pricing-bg.svg") center center/ cover no-repeat fixed;
}

.pricing .box {
  padding: 20px;
  list-style: disc;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .tp-box {
  background: transparent !important;
}

.pricing .p-rs{
  color: #7E5AAF;
}

.pricing .p-box{
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.pricing .p-title {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  background: #7E5AAF;
}

.pricing .p-sub-title {
  font-weight: 400;
  font-size: 16px;
  font-weight: 600;
  color: #2c4964;
}
.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #5846f9;
  font-size: 18px;
  padding-right: 4px;
}

/*--------------------------------------------------------------
# partner
--------------------------------------------------------------*/
.partner{
  background: url("../img/pricing-bg.svg") center center/ cover no-repeat fixed;
}
.partner .box {
  padding: 20px;
  list-style: disc;
  text-align: center;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.partnerbox {
  padding: 20px 30px 0px;
  border-radius: 70px;
  position: relative;
  overflow: hidden;
  border: solid 1px #000000;
  background-color: #FFFFFF;
}
.partner .tp-box {
  background: transparent !important;
}
.partner .p-rs{
  color: #7E5AAF;
}

.partner h3{
  color: #000000;
  font-weight: 700;
  text-align: left;
}
.partner ul {
  padding: 0;
  list-style: none;
  color: #444444;
  line-height: 20px;
  font-size: 14px;
}
.partner ul li {
  padding-bottom: 16px;
}
.partner ul i {
  color: #5846f9;
  font-size: 18px;
  padding-right: 4px;
}
.partner p strong{
  font-weight: 700;
}

.partner .headline{
  color: #7E5AAE;
  font-weight: 700;
  font-size: 30px;
}
.partner .rtitle {
  font-size: 22px;
  color: #000000;
}


/* パートナー　*/
.partner .p-box{
  text-align: center;
  background: #fff;
  border: solid #0A7EE8;
  border-radius: 60px;
  padding: 60px 40px;
}
.partner .p-title {
  text-align: center;
  color: #0A7EE8;
  font-size: 1.5em;
}
.partner .p-sub-title {
  font-weight: 400;
  font-size: 16px;
  font-weight: 600;
  color: #2c4964;
}

/*　メリット　*/
.partner .m-box{
  text-align: left;
  background: #fff;
  border: solid #0A7EE8;
  padding: 20px 20px;
	vertical-align: middle;
}
.partner .m-title {
  text-align: left;
  color: #000000;
  font-size: 1.5em;
}
.partner .m-box p{
	font-size: 1.1em;
}
.partner .m-box .number{
  width: 70px;
  height: 70px;
  margin-right: 15px;
  margin-bottom: 5px;
  padding-top: 9px;
  background-color: #905CA2;
  border-radius: 50%;
  text-align: center;
  box-sizing: border-box;
  font-weight: bold;	
	color: #FFFFFF;
	font-size: 2em;
}
/*　さらに　サポート支援　*/
.partner .m-box .also{
  width: 90px;
  height: 90px;
  background-color: #009BD9;
  border-radius: 50%;
  text-align: center;
  /*box-sizing: border-box;*/
  font-weight: bold;	
	color: #FFFFFF;
	font-size: 1.5em;
	padding-top: 26px;
}
.partner .m-box .alsotitle{
	margin-top: 26px;
	padding-left: 30px;
	vertical-align: middle;
	color: #000000;
}
.partner .m-box .also_support{
	margin: 0px;
	height: 30px;
	color: #000000;
	font-size: 1.3em;
	vertical-align: middle;
}

.partner i {
    line-height: 0;
    background: #E2EAFF;
    color: #535353;
    padding: 4px;
    margin-right: 10px;
    font-size: 24px;
    border-radius: 3px;
    transition: 0.3s;
    display: inline-block;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f2f6f9;
  min-height: 40px;
  margin-top: 85px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 56px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  font-size: 14px;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3c6387;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: url("../img/footer-bg.svg") center center / cover no-repeat;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  position: relative;
}

#footer .comsq-logo{
  width:180px;
}

#footer .comsq-name{
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
  display: inline-block;
}

#footer .comsq-name:hover {
  text-decoration: underline;
  color: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

#footer .footer-top .footer-contact p {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Noto Sans JP",sans-serif;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: underline;
  color: #fff;
}

#footer .copyright-wrap {
  border-top: 1px solid #8577fb;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #fff;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
}