/*モバイルファースト*/
/*sp-------------------------------------------------------------------*/

/*header*/
header{
  position: fixed;
  width: 100%;
  background-color: rgba(255,255,255,0.9);
  z-index: 999;
}

.menu_wrapper h2{
  color: black;
}

header .contact{
  background-color: #e62d4e;
  color: white;
}

.header_space{
  display: block;
  width: 100%;
  height: 100px;
  background-color: black;
}


/*main_view*/
.main_view{
  width: 100%;
  height: 600px;
  background-image: url(../../img/img-lp/lp-1/lp-1_main_view_bg-min.jpeg);
  background-position: center;
  background-size: cover;
  overflow: hidden;
  padding-top: 164px;
}

.main_view h1{
  display: block;
  background-color: white;
  color: black;
  font-weight: bold;
  margin-top: 10px;
  margin-left: 10px;
  font-size: 30px;
}

.main_view h1:nth-of-type(1){
  width: 150px;
}

.main_view h1:nth-of-type(2){
  width: 320px;
}

.main_view p{
  color: white;
  font-size: 16px;
  text-shadow: 0 0 10px #7a7a7a;
  margin-top: 25px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.8;
}

.main_view .contact{
  display: block;
  width: 220px;
  height: 80px;
  margin: 30px auto 10px ;
  background-color: white;
  color: black;
  font-size: 16px;
  font-weight: bold;
  border-radius: 40px;
  box-shadow: 0 0 20px #7a7a7a;
  border: 5px solid black;
}

.main_view .button_wrapper .link{
  width: 220px;
  height: 80px;
  margin: auto;
  font-size: 16px;
  border-radius: 40px;
  display: block;
  background-color: black;
  color: white;
  font-weight: bold;
  box-shadow: 0 0 20px #7a7a7a;
}

/*クライアント*/

.client{
  padding-top: 0;
  padding-bottom: 40px;
}

.client_wrapper{
  width: 80%;
  display: flex;
  margin: auto;
  justify-content: space-between;
}

.client_wrapper img{
  width: 100px;
  height: 120px;
  object-fit: contain;
  object-position: center;
}

.client_wrapper p{
  display: block;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  font-weight: bold;
  padding-top: 20px;
}

.client_wrapper p span{
  font-size: 20px;
  color: #bb012c
}

.client_logo_slider{
  position: relative;
  display: flex;
  width: 100vw;
  height: 80px;
  padding: 20px 0;
  overflow: hidden;
}

.client_logo_slider ul{
  padding: 0;
  display: flex;
  flex-shrink: 0;
}

.client_logo_slider ul:first-child{
  animation: slide1 60s -30s linear infinite;
}

.client_logo_slider ul:last-child{
    animation: slide2 60s linear infinite;
}

.client_logo_slider ul li{
  display: inline-block;
  width: 100px;
  height: 40px;
  margin-right: 20px;
  list-style: none;
  text-align: center;
}

.client_logo_slider ul li img{
  display: block;
  width: 100px;
  height: 40px;
  object-fit: contain;
  object-position: center;
}

@keyframes slide1 {
    0% {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes slide2 {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(-200%);
    }
}

/*intro*/
.intro{
  padding-top: 0;
  width: 100%;
  background-color: #f3fef9;
}

.intro .img_wrapper{
  display: none;
}

.intro_title .text_wrapper{
  width: 90%;
  padding-top: 80px;
  margin: auto;
}

.intro_title .text_wrapper img{
  display: block;
  width: 200px;
  height: 200px;
  margin: 40px auto;
  object-fit: contain;
  object-position: center;
}

.intro_title .text_wrapper h3{
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 3px;
  margin-bottom: 40px;
  text-align: center;
}

.intro_title .text_wrapper p{
  font-size: 16px;
  line-height: 2;
  text-align: center;
}

.intro_content_wrapper{
  width: 100%;
  display: block;
}

.intro_content{
  width: 300px;
  margin: 80px auto 0;
}

.intro_content .text_wrapper h4{
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.intro_content .text_wrapper p{
  height: auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.intro_content img{
  display: block;
  margin: 40px auto;
  width: 120px;
  height: 120px;
  object-fit: contain;
  object-position: center;
}

/*サービス*/

.service{
  padding-top: 0;
}

.service_contents_wrapper{
  width: 100%;
  margin: auto;
}

.service_contents{
  display: flex;
  flex-wrap: wrap;
  width: 320px;
  border-radius: 20px;
  box-shadow: 0 0 10px #d2d2d2;
  padding: 30px;
  margin: 0 auto 30px;;

}

.service_contents span::before{
  content: "STEP";
  position: absolute;
  margin-top: -60px;
  padding-left: 4px;
  font-size: 16px;
  color: #006835;
}

.service_contents span{
  position: relative;
  width: 80px;
  height: 80px;
  margin-top: 40px;
  background-color: #006835;
  border-radius: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  margin-right: 20px;
  text-align: center;
  line-height: 75px;
}

.service_contents img{
  width: 120px;
  height: 120px;
  object-fit: contain;
  object-position: center;
  margin-top: 20px;
  margin-right: 0;
  margin-left: 40px;
}

.service_contents h3{
  font-size: 24px;
  margin-top: 60px;
  margin-bottom: 20px;
}

.service_contents .text_wrapper{
  width: 360px;
}

.service_contents p{
  font-size: 16px;
  padding-bottom: 20px;
  line-height: 1.8;
}

.service_contents .contact{
  display: block;
  position: relative;
  width: 220px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 16px;
  border: 1px solid;
  text-decoration: none;
  color: black;
  margin-top: 30px;
}

.service_contents .contact::after{
    content: '';
    display: inline-block;
    border-style: solid;
    border-width: 8px;
    border-color: transparent black black transparent;
    display: inline-block;
    width: 0;
    height: 0;
    position: absolute;
    top: 40px;
    right: 2px;
}

.service_contents h5{
  position: relative;
  margin: 0 0 0 auto;
  display: block;
  width: 180px;
  font-size: 16px;
  font-weight: normal;
  padding: 20px 20px 10px 20px;
  border-bottom: 1px solid;
}

.service_contents h5::after{
  position: absolute;
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  border-top: 1px solid;
  right: -4px;
  bottom: 10px;
  transform: rotate(45deg);
}

.service_contents_plus span::before{
  content: "";
  color: #0f6185;
}

.service_contents_plus span{
  background-color: #0f6185;
}
.service_contents_plus a{
  color: black;
  text-decoration: none;
}

/*特徴*/

.feature{
  padding-top: 0;
}

.feature_contents{
  width: 90%;
  min-width: 320px;
  height: auto;
  margin-bottom: 60px;
  box-shadow: 0 0 10px #d2d2d2;
  padding: 80px 20px 60px;
}

.feature_contents_left{
  border-radius: 0 40px 40px 0;
  margin-left: 0;
  margin-right: auto;
}

.feature_contents_right{
  border-radius: 40px 0 0 40px;
  margin-left: auto;
  margin-right: 0;
}

.feature_contents .img_wrapper img{
  display: none;
}

.feature_contents .text_wrapper{
  width: 250px;
  margin: auto;
}

.feature_contents .text_wrapper h3{
  font-size: 20px;
  line-height: 1.8;
}

.feature_contents .text_wrapper img{
  display: block;
  margin: 40px auto;
  width: 160px;
  height: 160px;
}

.feature_contents .text_wrapper p{
  line-height: 1.8;
  padding-bottom: 10px;
  font-size: 16px;
}

/*video*/

.video{
  padding-bottom: 0;
}

.video h2{
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}

.video_wrapper{
  width: 240px;
  margin: 40px auto;
}

.video_contents{
  background-color: black;
  width: 240px;
  height: 360px;
  margin-bottom: 40px;
}

.vsc-controller{
  display: none;
}

/*faq*/

.faq{
  padding-bottom: 0;
  margin-bottom: 0;
}

.faq_title{
  text-align: center;
  font-size: 20px;
  margin: 80px auto 20px;
}

.faq_contents{
  padding: 10px 10px 30px;
  border-radius: 20px;
  font-size: 18px;
  width: 320px;
  margin: 40px auto;
  background-color: #fafafa;
}

.faq_contents h4{
  font-size: 18px;
  color: black;
  text-align: left;
  line-height: 1.8;
  padding-bottom: 20px;
}

.faq_contents h4 span{
  color: red;
  margin-right: 8px;
}

.faq_contents p{
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
  text-align: left;
}

.faq_contents p span{
  color: blue;
  margin-right: 8px;
}

/*sp終わり*/

/*pc----------------------------------------------------------------*/
@media only screen and (min-width: 840px){

.br_sp{
  display: none;
}


/*共通部分*/
section{
  padding-bottom: 60px;
}

.section_title{
  padding-top: 120px;
  margin-bottom: 90px;
}


.section_title h2{
  font-size: 60px;
  letter-spacing: 12px;
  text-indent: 12px;
}

.section_title span{
  font-size: 16px;
  margin-top: 10px;
}

.bg_wrapper{
  padding: 60px 0;
}

/*main_view*/
.main_view{
  height: 720px;
  padding-top: 215px;
}

.main_view h1{
  font-size: 52px;
  margin-top: 20px;
  margin-left: 15%;
}

.main_view h1:nth-of-type(1){
  width: 280px;
}

.main_view h1:nth-of-type(2){
  width: 560px;
}

.main_view p{
  font-size: 20px;
  margin-top: 60px;
  margin-left: 15%;
  text-align: left;
}

.main_view .button_wrapper{
  display: flex;
  width: 540px;
  margin: 40px auto 0 15%;
  justify-content: space-between;

}

.main_view .button_wrapper .contact{
  width: 240px;
  height: 80px;
  margin: 0;
  font-size: 18px;
  border-radius: 40px;
}

.main_view .button_wrapper .link{
  width: 240px;
  height: 80px;
  font-size: 18px;
  border-radius: 40px;
}

/*クライアント*/
.client{
  padding-bottom: 0;
  margin-bottom: 20px;
}

.client_wrapper{
  width: 620px;
  padding: 20px 0 0;
}

.client_wrapper img{
  width: 140px;
  height: 140px;
}

.client_wrapper p{
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 1px;
}

.client_wrapper p span{
  font-size: 32px;
}

.client_logo_slider{
  position: relative;
  display: flex;
  width: 100vw;
  height: 160px;
  padding: 40px 0;
  overflow: hidden;
}

.client_logo_slider ul{
  padding: 0;
  display: flex;
  flex-shrink: 0;
}

.client_logo_slider ul:first-child{
  animation: slide1 60s -30s linear infinite;
}

.client_logo_slider ul:last-child{
    animation: slide2 60s linear infinite;
}

.client_logo_slider ul li{
  display: inline-block;
  width: 200px;
  height: 80px;
  margin-right: 40px;
  list-style: none;
  text-align: center;
}

.client_logo_slider ul li img{
  display: block;
  width: 200px;
  height: 80px;
  object-fit: contain;
  object-position: center;
}

@keyframes slide1 {
    0% {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes slide2 {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(-200%);
    }
}

/*intro*/

.intro{
  width: 100%;
  background-color: #f3fef9;
}

.intro_title{
  width: 900px;
  display: flex;
  margin: auto;
}

.intro .img_wrapper{
  display: block;
  width: 50%;
  margin-top: 140px;
  padding-right: 80px;
}

.intro .img_wrapper img{
  display: block;
  margin-left: auto;
  width: 320px;
  height: 320px;
  object-fit: contain;
  object-position: center;
}

.intro_title .text_wrapper{
  width: 50%;
  margin: 0;
  margin-top: 200px;
  padding-top: 0;
}

.intro_title .text_wrapper img{
  display: none;
}

.intro_title .text_wrapper h3{
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 3px;
  margin-bottom: 40px;
  text-align: left;
}

.intro_title .text_wrapper p{
  font-size: 16px;
  line-height: 2;
  text-align: left;
}

.intro_content_wrapper{
  width: 850px;
  display: flex;
  justify-content: space-around;
  margin: 120px auto 60px;
}

.intro_content{
  width: 250px;
  margin: auto;
}

.intro_content .text_wrapper h4{
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
}

.intro_content .text_wrapper p{
  height: 120px;
  text-align: center;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 20px;
}

.intro_content img{
  display: block;
  margin: 40px auto;
  width: 160px;
  height: 160px;
  object-fit: contain;
  object-position: center;
}


/*サービス*/

.service_contents_wrapper{
  width: 800px;
  margin: auto;
}

.service_contents{
  display: flex;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 10px #d2d2d2;
  padding: 30px 50px 60px;
  margin: 0 0 40px;

}

.service_contents span::before{
  content: "STEP";
  position: absolute;
  margin-top: -60px;
  padding-left: 4px;
  font-size: 16px;
  color: #006835;
}

.service_contents span{
  position: relative;
  width: 80px;
  height: 80px;
  margin-top: 40px;
  background-color: #006835;
  border-radius: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  margin-right: 20px;
  text-align: center;
  line-height: 75px;
}

.service_contents img{
  width: 160px;
  height: 160px;
  object-fit: contain;
  object-position: center;
  margin-top: 20px;
  margin-right: 80px;
  margin-left: 0;
}

.service_contents h3{
  font-size: 26px;
  margin-top: 60px;
  margin-bottom: 20px;
}

.service_contents .text_wrapper{
  width: 360px;
}

.service_contents p{
  font-size: 16px;
  padding-bottom: 20px;
  line-height: 1.8;
}

.service_contents .contact{
  display: block;
  position: relative;
  width: 220px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 16px;
  border: 1px solid;
  text-decoration: none;
  color: black;
  margin-top: 30px;
}

.service_contents .contact::after{
    content: '';
    display: inline-block;
    border-style: solid;
    border-width: 8px;
    border-color: transparent black black transparent;
    display: inline-block;
    width: 0;
    height: 0;
    position: absolute;
    top: 40px;
    right: 2px;
}

.service_contents h5{
  position: relative;
  margin: 0 0 0 auto;
  display: block;
  width: 180px;
  font-size: 16px;
  font-weight: normal;
  padding: 20px 20px 10px 20px;
  border-bottom: 1px solid;
}

.service_contents h5::after{
  position: absolute;
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  border-top: 1px solid;
  right: -4px;
  bottom: 10px;
  transform: rotate(45deg);
}

.service_contents_plus span::before{
  content: "";
  color: #0f6185;
}

.service_contents_plus span{
  background-color: #0f6185;
}
.service_contents_plus a{
  color: black;
  text-decoration: none;
}

/*特徴*/

.feature_contents{
  display: flex;
  width: 80%;
  min-width: 800px;
  height: 400px;
  margin-bottom: 60px;
  box-shadow: 0 0 10px #d2d2d2;
  padding-top: 80px;
  padding-bottom: 80px
}

.feature_contents_left{
  border-radius: 0 40px 40px 0;
  padding-right: 80px;
  padding-left: 10px;
  margin-left: 0;
  margin-right: auto;
}

.feature_contents_right{
  border-radius: 40px 0 0 40px;
  padding-left: 80px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: 0;
}

.feature_contents .img_wrapper{
  width: 200px;
  height: 200px;
}

.feature_contents .img_wrapper img{
  display: block;
  width: 200px;
  height: 200px;
}

.feature_contents .text_wrapper{
  width: 500px;
}

.feature_contents .text_wrapper h3{
  font-size: 24px;
}

.feature_contents .text_wrapper img{
  display: none;
}

.feature_contents .text_wrapper p{
  margin-top: 30px;
  line-height: 1.8;
  padding-bottom: 30px;
  font-size: 16px;
}

.feature_contents_left .img_wrapper{
  margin-left: auto;
  margin-right: 80px;
}

.feature_contents_right .img_wrapper{
  margin-left: 80px;
  margin-right: auto;
}

.feature_contents_left .text_wrapper{
  margin-left: auto;
  margin-right: auto;
}

.feature_contents_right .text_wrapper{
  margin-left: auto;
  margin-right: auto;
}


/*video*/

.video{
  padding-bottom: 0;
}

.video h2{
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 80px;
}

.video_wrapper{
  display: flex;
  width: 800px;
  margin: 40px auto;
  justify-content: space-between;
  flex-wrap: wrap;
}

.video_contents{
  width: 300px;
  height: 400px;
  margin-bottom: 60px;
}

/*faq*/

.faq_title{
  text-align: center;
  font-size: 24px;
  margin: 80px auto 20px;
}

.faq_contents{
  padding: 20px 20px 40px;
  border-radius: 40px;
  font-size: 20px;
  width: 720px;
  margin: 0 auto 40px;
}

.faq_contents h4{
  font-size: 20px;
}

.faq_contents h4 span{
  margin-right: 10px;
}

.faq_contents p{
  font-size: 18px;
}

.faq_contents p span{
  margin-right: 10px;
}
}
/*pc終わり*/
