@charset "utf-8";
/* CSS Document */

/*------------------------------
.hero 
------------------------------*/
body {
  padding-top: 80px;
}
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
  background: #000;
}
.hero_cover {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: url('/img/hero_poster.webp') no-repeat center center;
  background-size: cover;
}
#hero_movie {
  pointer-events: none;
  position: absolute; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
}
#hero_movie iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero_play_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: pointer;
}
.hero_play_btn a{
  opacity: .7;
}
.hero_play_btn a:hover{
  opacity: 1;
}

.hero_scroll {
  position: absolute;
  bottom: 0;
  right: 60px;
  z-index: 10;
}
/*------------------------------
共通
------------------------------*/
.fadeUpOnScroll {
  opacity: 0;                  /* 初期は透明 */
  transform: translateY(20px); /* 少し下から上にスライド */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fadeUpOnScroll.on {
  opacity: 1;
  transform: translateY(0);
}
/* 遅延をCSSで管理 */
.fadeUpContainer.on .fadeUpOnScroll:nth-child(1) { transition-delay: 0s; }
.fadeUpContainer.on .fadeUpOnScroll:nth-child(2) { transition-delay: 0.2s; }
.fadeUpContainer.on .fadeUpOnScroll:nth-child(3) { transition-delay: 0.4s; }
.fadeUpContainer.on .fadeUpOnScroll:nth-child(4) { transition-delay: 0.6s; }
.fadeUpContainer.on .fadeUpOnScroll:nth-child(5) { transition-delay: 0.8s; }

h2{
  color: #FFF;
  text-align: center;
  font-family: Roboto;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 45px;
}
h2 span{
  font-family: "Noto Sans JP";
  font-size: 42px;
  letter-spacing: 4.2px;
}
.slick-dots li button::before {
  color: #FFFFFF;
}
.slick-dots li.slick-active button::before {
  color: #CB97DE;
}

/*------------------------------
メインキャッチ
------------------------------*/
/* 背景・構造はそのまま */
.catchcopy {
  background: url(/img/catchcopy_bg.png) no-repeat bottom #333;
  padding: 0 0 390px;
  position: relative;
}
@media screen and (max-width: 1630px) {
  .catchcopy {
    width: 1630px;
    margin: 0 auto;
  }
}
/* 内部ラップをフェード対象 */
.catchcopy .catchcopy_inner {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
  text-align: center;
  opacity: 0;
}


/* 親が on になったらフェードイン */
.catchcopy.on .catchcopy_inner {
  animation: fadeIn 0.6s ease-out forwards;
}

/* 文字画像・固定位置 */
.catchcopy .reveal {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  display: inline-block;
}

/* 上段文字 */
.catchcopy .img01 { 
  top:50px; 
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20; /* 常に最前面 */
}
/* 下段文字 */
.catchcopy .img02 {
  bottom: 30%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  opacity: 0; /* 初期は透明 */
  transition: opacity 0.4s ease-out;
}
/* ×画像 */
.catchcopy .reveal-cross {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0; /* 上段文字の下に表示 */
}
.catchcopy .reveal-cross img {
  opacity: 0;
  transition: opacity 1s ease-out; /* scale は使わずフェードインのみ */
  display: block;
}
/* マスク */
.catchcopy .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  transform: translateX(0);
  animation-fill-mode: forwards;
}
/* 下段マスク */
.catchcopy .img02 .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  transform: translateX(0);
  opacity: 0; /* 初期は透明 */
  animation-fill-mode: forwards;
}
/* マスクアニメーション（上段・下段共通） */
@keyframes maskSlide {
  0% {
    transform: translateX(0);
    opacity: 1; /* マスクは最初見えて文字を隠す */
  }
  100% {
    transform: translateX(100%); /* 左から右にスライドして文字を見せる */
    opacity: 1;
  }
}

/* 下段文字フェードイン用 */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
/* 実行タイミング */
/* 元々のアニメーションを on 依存に変更 */
.catchcopy.on .img01 .mask {
  animation: maskSlide 0.6s forwards ease-out 0s;
}

.catchcopy.on .reveal-cross img {
  animation: opacityFade 0.6s forwards ease-out 0.8s;
}

.catchcopy.on .img02 .mask {
  animation: maskSlide 0.6s forwards ease-out 1.1s;
}

.catchcopy.on .img02 {
  animation: fadeIn 0.6s forwards ease-out 1.1s;
}
/* ×フェードイン用 */
@keyframes opacityFade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}


/*------------------------------
catchcopy_img01〜05 その場フェードイン
------------------------------*/
.catchcopy_img01,
.catchcopy_img02,
.catchcopy_img03,
.catchcopy_img04,
.catchcopy_img05 {
  opacity: 0;
  position: absolute;
  transform: translateY(30px);
}

.catchcopy .catchcopy_img01 { top: 5%; right: 4%; }
.catchcopy .catchcopy_img02 { top: 18%; left: 9%; }
.catchcopy .catchcopy_img03 { top: 24%; right: 14%; }
.catchcopy .catchcopy_img04 { bottom: 10%; left: 13%; }
.catchcopy .catchcopy_img05 { bottom: 7%; left: 41%; }

/*------------------------------
アニメーションキー
------------------------------*/
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px); /* 下にずらす */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* 元の位置へ */
  }
}

/*------------------------------
発火時アニメーション
------------------------------*/
.catchcopy.on .img01 .mask {
  animation: maskSlide 0.6s forwards ease-out 0s;
}

.catchcopy.on .img02 .mask {
  animation: maskSlide 0.6s forwards ease-out 1.1s;
}

/* 写真の順番フェードインは JS で制御 */
.catchcopy.on .catchcopy_img01 { animation: fadeInUp 0.6s forwards 1.5s; }
.catchcopy.on .catchcopy_img02 { animation: fadeInUp 0.6s forwards 1.8s; }
.catchcopy.on .catchcopy_img03 { animation: fadeInUp 0.6s forwards 2.1s; }
.catchcopy.on .catchcopy_img04 { animation: fadeInUp 0.6s forwards 2.4s; }
.catchcopy.on .catchcopy_img05 { animation: fadeInUp 0.6s forwards 2.7s; }


.catchcopy .text_area {
  width: 400px;
  position: absolute;
  right: 24%;
  top: 54%;
}
.catchcopy .text_area p{
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
  margin: 0 0 30px;
}
.catchcopy .text_area p span{
  color: #D19CE4;
  font-size: 22px;
  font-weight: 700;
}

.fadeOnScroll {
  opacity: 0;          /* 最初は非表示 */
  transform: translateY(20px); /* 少し下から上に動かす演出 */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fadeOnScroll.on {
  opacity: 1;
  transform: translateY(0);
}

/*------------------------------
.logo_scroll
------------------------------*/
.logo_scroll {
  overflow: hidden;
  width: 100%;
}

.scroll_inner {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

.scroll_inner img {
  height: auto;
  width: auto;
  display: block;
}


@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/*------------------------------
.features
------------------------------*/
.features{
  background: url(/img/features_bg.png) no-repeat;
  background-size: cover;
  padding: 100px 0;
}
.features ul {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto 65px;;
  display: flex;
  justify-content: space-between;
}
.features ul li{
  width:47%;
  background:url("/img/features_list_bg.png") no-repeat #fff;
  background-size: 100%;
  padding: 30px;
}
.features ul li h3{
  color: #662F7A;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  padding: 20px 0 30px;
}
.features ul li h3 span{
  font-size: 32px;
}
.features ul li p{
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 15px;
  line-height: 180%;
  padding: 0 4px;
}
.features ul li img{
  max-width: 580px;
  width: 100%;
  height:auto;
}

.features .movie{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 25px;
  position: relative;
}
.features .movie iframe{
  background: #fff;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}
/* 黒の半透明オーバーレイ */
/*.features .movie .overlay {
  position: absolute;
  inset: 0; 
  background: rgba(0, 0, 0, 0.5); 
  z-index: 1;
}*/
/* サムネイル */
.features .movie .thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.features .movie .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 120px;   /* ボタンサイズ */
  cursor: pointer;
  z-index: 2;
}
.features .movie_btxt {
  text-align: center;
  color: #fff;
  margin: 0 0 50px;
  font-size: 18px;
  font-weight: 700;
}
.features .features_btn{
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/*------------------------------
.teacher
------------------------------*/
.teacher{
  background: url(/img/teacher_bg.png) no-repeat;
  background-size: cover;
  padding: 100px 0;
}
.teacher .slick {
  width: 100%;
  margin: 0 auto;
  max-width: 1270px;
}
.teacher .teacher_inner {
  width: 100%;
}
.teacher .teacher_inner p{
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  margin: 0 0 55px;
}
.teacher .slick-slide img {
  width: 100%;
}
.teacher .slick_list img.sp{
  display: none !important;
}

.teacher .slick-dots {
  display: none !important;
}

.teacher .slick_prev,
.teacher .slick_next {
  position: absolute;
  top: 40px;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transform: translateY(-50%);
}
.teacher .slick_prev{
  position: absolute;
  top: 50%;
  left: -50px;
  cursor: pointer;
}
.teacher .slick_next{
  position: absolute;
  top: 50%;
  right: -50px;
  cursor: pointer;
}

.teacher .slick_prev:before,
.teacher .slick_next:before{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border-top: 8px solid #fff;
  border-right: 8px solid #fff;
  opacity: 1;
  content: '';
}
.teacher .slick_prev:before {
  transform: translate(-25%, -50%) rotate(-135deg);
}

.teacher .slick_next:before {
  transform: translate(-75%, -50%) rotate(45deg);
}

.teacher .teacher_btn{
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.slick-slider .slick-list {
  padding: 0 0 10px;
}



@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/*------------------------------
.process
------------------------------*/
.process {
  background: url(/img/process_bg.png) no-repeat bottom;
  background-size: cover;
  padding: 100px 0;
}
.process  h2{
  color:#333;
}
.process  h2 span{
  color: #662F7A;
}
.process  > p {
  text-align: center;
  color: #fff;
  padding: 55px 0 0;
  line-height: 180%;
}
.process ul {
  display: flex;
  justify-content: center;
  width: 95%;
  margin: 0 auto;
  overflow-x: visible;
  padding: 20px 0;
}
.process ul li img {
  width: 100%; 
}


/*------------------------------
.plan
------------------------------*/
.plan {
  background: url(/img/plan_bg.png) no-repeat;
  background-size: cover;
  padding: 100px 0;
}
.plan > p {
  text-align: center;
  color: #fff;
  padding: 55px 0 0;
  line-height: 200%;
}
.plan .slick-slide {
  margin: 0 15px;
}
.plan .slick-slide img.sp{
  display: none !important;
} 

/*------------------------------
.reason
------------------------------*/
.reason {
  background: url(/img/reason_bg.png) no-repeat;
  background-size: cover;
  padding: 100px 0;
}
.reason h2 {
  font-size: 32px;
}
h2 span {
  display: inline-block;
  letter-spacing: 4.2px;
  margin: 0 0 10px;
}
.reason h2 span:nth-of-type(1) {
  font-size: 24px;
  font-family: Roboto;
  letter-spacing: 0;
  margin: 0 0 15px;
  display: inline-block;
}
.reason_inner {
  max-width: 1015px;
  margin: 0 auto;
  width: 100%;
}
.reason_inner img.pc {
  max-width: 1021px;
  width: 100%;
}

.reason_inner img.sp {
  display: none !important;
}
/*.reason ul {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.reason ul li{
  width: 480px;
  background: url("/img/reason_list_bg.png") no-repeat #fff;
  background-size: 100%;
  border-radius: 0 0 16px 0;
  margin:0 0 30px;
  height: 490px;
}
.reason ul li:nth-of-type(2){
  margin: 90px 0 0;
}
.reason ul li:nth-of-type(3){
  margin: -60px 0 0;
}
.reason ul li:nth-of-type(4){
  margin: 30px 0 0;
}

.reason ul li h3{
  color: #662F7A;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  padding: 25px 0 30px;
  position: relative;
}
.reason ul li h3::after{
  content: "";
  height: 40px;
  width: 1px;
  background: #662F7A;
  position: absolute;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  bottom: -40px;
}

.reason ul li h3 span{
  font-size: 32px;
}
.reason ul li p{
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  padding: 30px;
}*/
.reason > a{
  display: block;
  margin: 40px auto 0;
  width: fit-content;
}
/*------------------------------
.voice
------------------------------*/
.voice {
  background: url(/img/voice_bg.png) no-repeat;
  background-size: cover;
  padding: 100px 0;
}



/*------------------------------
導入実績
------------------------------*/
.companies{
  background: #333;
  background: url(/img/companies_bg.png) no-repeat;
  background-size: cover;
  padding: 100px 0;
}
.companies h2 {
  color: #B093BB;
  margin: 0 0 35px;
}
.companies h2 span{
  color: #fff;
}
.companies p{
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 40px;
}
.companies_inner{
  width: 80%;
  margin:0 auto;
}
/*.companies .slick_prev,
.companies .slick_next {
  display: none !important;
}*/
.companies .slick-dots {
  display: none !important;
}
.companies .slick-slide img {
  width: 95%;
}

.companies .slick_prev,
.companies .slick_next {
  position: absolute;
  top: 40px;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transform: translateY(-50%);
}
.companies .slick_prev{
  position: absolute;
  cursor: pointer;
  left: -50px;
}
.companies .slick_next{
  position: absolute;
  cursor: pointer;
  right:-50px;
}

.companies .slick_prev:before,
.companies .slick_next:before{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  opacity: 1;
  content: '';
}
.companies .slick_prev:before {
  transform: translate(-25%, -50%) rotate(-135deg);
}

.companies .slick_next:before {
  transform: translate(-75%, -50%) rotate(45deg);
}




/*------------------------------
.voice
------------------------------*/
.voice ul{
  width: 90%;
  margin: 0 auto 60px;
  display: flex;
  gap: 40px;
}
.voice ul li{
  width: 32%;
}
.voice ul li figure{
  margin:0 0 20px;
}
.voice ul li img{
  width: 100%;
  height: auto;
}
.voice ul li p{
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 180%;
  margin:0 0 10px;
}
.voice ul li .voice_name{
  text-align: right;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 30px;
}
.voice > a{
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/*------------------------------
.faq
------------------------------*/
/*
.faq{
  opacity: 0;
  transform: translateY(20px);
  animation-fill-mode: forwards;
}
.faq.on{
 animation-name: fadeInUp;
  animation-duration: 1s;
  animation-timing-function: ease;
}
.faq.on{
 animation-delay: 0.5s;
}
*/
.faq{
  background: #F8F8FA;
  padding: 0 0 100px;
}

.faq_inner{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 90px 0;
}
.faq h2 {
  color: #333;
  margin: 0 0 35px;
}
.faq h2 span{
  color: #662F7A;
}

.faq > a{
  display: block;
  width: fit-content;
  margin: 0 auto;
}


@media screen and (max-width: 768px) {
body {
  padding-top: 60px;
}
/*------------------------------
.hero 
------------------------------*/
.hero{
    height:56.25vw;
    aspect-ratio: 16 / 9;
}
.hero_video iframe{
    min-width:100vw;  
    min-height:56.25vw;
}
.hero_play_btn img {
    width: 60px;
}
.hero_scroll {
    right: 10px;
}
.hero_scroll img{
    width: 25px;
}
/*------------------------------
共通
------------------------------*/
img{
    width: 100%;
    height: auto;
}
h2 {
  font-size: 16px;
  margin: 0 0 25px;
}
h2 span {
  font-size: 26px;
}
/*------------------------------
.catchcopy
------------------------------*/
 .catchcopy {
    background: url(/img/catchcopy_bg_sp.png) no-repeat top #333;
    padding: 45% 30px;
    background-size: 100%;
   width: 100%;
}
.catchcopy .catchcopy_inner {
  height:auto;
  margin: 20px 0;
}
.catchcopy .img01,
.catchcopy .img02,
.catchcopy .reveal-cross{
  position: initial;
  transform: initial;
}

.catchcopy .reveal-cross img{
    width: 40%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: -1;
  }
.catchcopy .img01,
.catchcopy .img02{
    width: 80%;
  margin: 20px 0;
}

.scroll_inner img {
  height: 40px;
}
.catchcopy.on .img01 .mask{
  height:50%;
}
.catchcopy.on .img02 .mask {
    height: 50%;
    top: 60%;
}
.catchcopy .catchcopy_img01{
  top: 0;
  right: 6%;
  width: 24%;
}
.catchcopy .catchcopy_img02{
  top: 2%;
  left: 6%;
  width: 24%;
}
.catchcopy .catchcopy_img03 {
  top: 4%;
  right: 37%;
  width: 26%;
} 
.catchcopy .catchcopy_img04 {
  bottom: 3%;
  left: 10%;
  width: 37%;
}
.catchcopy .catchcopy_img05 {
  bottom: 0;
  left: 65%;
  width: 25%;
}
.catchcopy .text_area p {
  font-size: 16px;
}
.catchcopy .text_area p span {
  font-size: 18px;
}
.catchcopy .text_area {
  width: auto;
  position: initial;
  margin:0 0 40px;
}  
.catchcopy .text_area a img{
  width: auto;
  margin: 0 auto;
}
  
  
/*------------------------------
.features
------------------------------*/  
.features {
  background: url(/img/features_bg_sp.png) no-repeat;
  background-size: cover;
  padding: 50px 0;
}
.features ul {
  width: 90%;
  margin: 0 auto 40px;
  display: block;
}
.features ul li {
  width: 100%;
  padding: 20px;
  margin: 0 0 20px;
}
.features ul li h3 {
  font-size: 16px;
}
.features ul li h3 span {
  font-size: 20px;
}
.features ul li p {
  font-size: 14px;
}
.features .movie {
  width: 90%;
}
.features .movie .play-btn {
  width: 70px; 
}

.features .movie_btxt {
  font-size: 14px;
  padding: 0 20px;
  margin: 0 0 20px;
}
/*------------------------------
.teacher
------------------------------*/  
.teacher {
  background: url(/img/teacher_bg_sp.png) no-repeat;
  background-size: cover;
  padding: 50px 20px;
}
.teacher .teacher_inner p {
  font-size: 14px;
}
.slick_inner {
  width: 90%;
  margin: 0 auto;
}
.teacher .slick {
  width: 90%;
  margin: 0 auto;
}
.teacher .slick_list img.pc {
    display: none !important;
  }
  .teacher .slick_list img.sp {
    display: block !important; 
    width: 100%; 
    height: auto; 
  }

  .teacher .slick {
    width: 100%; 
  }
.teacher .slick_prev{
  position: absolute;
  top: 50%;
  right: initial;
  left: -35px;
  cursor: pointer;
}
.teacher .slick_prev::before, .teacher .slick_next::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
  opacity: 1;
  content: '';
}
.teacher .slick_next{
  position: absolute;
  top: 50%;
  right: -35px;
  cursor: pointer;
}

/*------------------------------
.process
------------------------------*/
.process {
    background: url(/img/process_bg_sp.png) no-repeat bottom;
    background-size: cover;
    padding: 50px 0;
}
.process ul {
    overflow-x: auto;
    padding-bottom: 10px;
}
.process ul li img{
    display: block;
    height: 210px;
    width: auto;
}
.process > p {
  text-align: left;
  padding: 20px 20px 0;
  font-size: 14px;
}
  
  
/*------------------------------
.plan
------------------------------*/    
.plan {
  background: url(/img/plan_bg_sp.png) no-repeat;
  background-size: cover;
  padding: 50px 0;
}
.plan .slick-slide img {
  display: block;
  width: 90%;
}
.plan .slick-slide img.pc{
  display: none !important;
} 
.plan .slick-slide img.sp{
  display: block !important;
  width: 90%;
} 

.plan > p {
  text-align: left;
  padding: 20px 20px 0;
  font-size: 14px;
}
 /*------------------------------
.reason
------------------------------*/   
.reason {
  background: url(/img/reason_bg_sp.png) no-repeat;
  background-size: cover;
  padding: 50px 0;
}

.reason h2 {
  font-size: 20px;
}
.reason h2 span {
    font-size: 26px;
    display: block;
    margin: 10px 0 0;
  }
.reason h2 span:nth-of-type(1) {
  font-size: 16px;
}
/*.reason ul {
  width: 90%;
  margin: 0 auto 50px;
  display: block;
}
.reason ul li {
  width: 100%;
  height: auto;
}
.reason ul li:nth-of-type(2) ,
.reason ul li:nth-of-type(3){
  margin: 0 0 30px;
}*/
.reason_inner img.sp {
  display: block !important;
}
.reason > a{
  padding: 0 20px;
}
.reason > a img{
  width: 100%;
  margin: 0 auto;
}
 /*------------------------------
導入実績
------------------------------*/  
.companies {
  padding: 50px 0;
}
.companies .companies_inner{
  width: 100%;
}
.companies .slick_inner {
    width: 80%;
    margin: 0 auto;
  }
.companies .slick-slide {
  margin: 0 5px;
}
.companies .slick_prev {
    left: -10%;
    top: 40%;
  }
.companies .slick_next {
    right: -10%;
    top: 40%;
}
.companies .slick_prev,
.companies .slick_next {
  background: none;
}
 /*------------------------------
.voice
------------------------------*/ 
.voice {
  background: url(/img/voice_bg_sp.png) no-repeat;
  background-size: cover;
  padding: 50px 0;
}
.voice ul {
  width: 90%;
  margin: 0 auto 60px;
  display: block;
}
.voice ul li {
  width: 100%;
}
.voice ul li p {
  font-size: 18px;
}
.voice ul li .voice_name {
  font-size: 16px;

}
  
/*------------------------------
.faq
------------------------------*/
.faq {
  padding: 0 20px 40px;
}
.faq_inner {
  padding: 40px 0 0;
}

}
