@charset "UTF-8";

/* =================================
共通
==================================== */

html{
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: #333;
}

/*フォント指定*/
body {
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
    color: #333;
    line-height: 1.5;
}

.wrapper {
  width: 92%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}


/* =================================
Loading背景画面設定
==================================== */

#splash {
  /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background:#fff;
    text-align:center;
    color:#fff;
  }
  
  /* Loading画像中央配置　*/
  #splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  /* Loading アイコンの大きさ設定*/
  #splash_logo img {
    width:260px;
  }
  
  /* fadeUpをするロゴ画像の動き */
  .fadeUp{
  animation-name: fadeUpAnime;
  animation-duration:0.7s;
  animation-fill-mode:forwards;
  opacity: 0;
  }
  
  @keyframes fadeUpAnime{
    from {
      opacity: 1;
      /* transform: translateY(100px); */
      transform:scale(1.1);
    }
  
    to {
      opacity: 0.4;
      /* transform: translateY(0); */
      transform:scale(1.0);
    }
  }



/* =================================
ヘッダー
==================================== */

.header{
  /*ヘッダー上部固定*/
  position: sticky; 
  top: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0px 3px 6px #00000029;
}

.header_inner{
	display: flex; /* h1とnavを横並び */
	justify-content: space-between; 
	align-items: center; 
	margin: 0 auto;
  height: 80px;
}

@media (max-width: 767px){
  .header_inner{
    height: 60px;
  }
}

/* ロゴ */
.logo_wrapper img{
  vertical-align: middle;
}

.logo_ml{
  width: 220px;
  padding-right: 16px;
  border-right: 1px solid #666;
  position: relative;
  top: -1px
}

.logo_ip{
  width: 170px;
  padding-left: 2px;
  position: relative;
  top: 4px
}

@media(max-width: 767px){
  .logo_ml{
    width: 180px;
  }
  .logo_ip{
    width: 160px;
  }
}

@media(max-width: 575px){
  .logo_ml{
    width: 160px;
  }
  .logo_ip{
    width: 140px;
    top: 3px;
  }
}


/*無料登録ボタン*/
.btn_register_pc, 
.btn_about_ip,
.btn_service,
.btn_cta{
  display: block;
  width: 290px;
  background: #0159A5;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 2px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
/*字間-ボックスシャドウｰアイコン*/
   position: relative; /*矢印アイコンの基準*/
   transition: .3s;
}

.btn_about_ip{
  width: 270px;
  font-size: 14px;
}

@media(max-width: 767px){
  .btn_about_ip{
    margin-bottom: 50px;
  }
}

/* ボタン矢印 */
.btn_register_pc::after,
.btn_about_ip::after,
.btn_service::after,
.btn_cta::after {
    position: absolute;
    content: '';
    width: 9px;
    height: 9px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    top: 50%;
    right: 18px;
    margin-top: -4px;
}

.btn_cta::after{
  border-color: #0159A5;
}

/* ボタンホバー */
.btn_register_pc:hover,
.btn_about_ip:hover,
.btn_service:hover,
.btn_cta:hover{
	transform: translateY(-4px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.24);
  color: #fff;
}

.btn_cta:hover{
  color: #0159A5;
}


/* サービス紹介内ボタン */
.btn_service,
.btn_cta{
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

/* CTAボタン */
.btn_cta{
  color: #0159A5;
  background: #fff;
}


/*
資料ダウンロードボタン SPのみ
----------------------------------------*/

@media(max-width: 767px) {
  .alert{
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 80;
    border: none;
  }
  
  /*閉じるボタンの位置調整*/
  .alert-dismissible .close{
    top: -23px;
    right: 7px;
    background: #1C2F40;

    text-shadow:none;
    color: #fff;
    opacity: 1!important;
    font-size: 0;
    padding: 7px;
    border-radius: 50%;
    z-index: 90;
  }
  
  .alert-dismissible .close img{
    width: 8px;
    height: 8px;
  }
}

.btn_register_sp{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  background-color: rgba(255, 255, 255, 0.7);
}

.btn_register_sp a{
  display: block;
  height: 42px;
  line-height: 42px;
  text-align: center;
  background: #0159A5;
  color: #fff;
  border-radius: 3px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin: 12px 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.btn_register_sp img{
  display: inline-block;
  line-height: 45px;
  vertical-align: middle;
  height: 17px;
  width: 17px;
  margin-top: -4px;
  margin-right: 5px;
}


/* =================================
メインビジュアル
==================================== */

.mv{
  background-color: #fff;
  background-image:  url(../img/bg_mv.png);
  background-size: cover;
  background-repeat: no-repeat; 
  background-position: top left;
  padding-top: 0;
  padding-bottom: 0;
  height: 520px;
  margin-bottom: 160px;
}

.mv_container{
  position:relative;
  display: flex;
  align-items: center;
  height: 100%;
}


/*メインコピー*/
.mv_text_1{
  font-weight: bold;
  color: #006AB8;
  font-size: clamp(25px, 3.565vw + 12.63125px , 53px);
  position: relative;
  z-index: 10;
  top: -30px;
  letter-spacing: -0.02em;
}

.mv_text_1 span{
  color: #333;
  font-size: clamp(25px, 3.241vw + 13.846px , 49px);
}


/*EV画像*/
.mv_img{
  position: absolute;
  right: 0px;
  top: 200px;
    /* width: 57vw; */
  max-width: 742px;
  margin-left: 3vw;
  margin-right: -10vw;
}


@media(max-width: 1199px){
  .mv{
    height: 430px;
  }

  .mv_img{
    width: 60vw;
    top: 150px;
  }

}

@media(max-width: 991px){
  .mv{
    height: 340px;
  }

  .mv_img{
    top: 150px;
  }
}

@media(max-width: 767px){

  .mv{
    height: 60vw;
    margin-bottom: 26vw;
  }

  .mv_img{
    top: 68%;
    left: 15%;
    width: 70vw;
  }
}

@media(max-width: 575px){
  .mv{
    margin-bottom: 33vw;
  }

  .mv_text_1{
    top: -15px;
  }

  .mv_img{
    top: 73%;
    left: 15%;
    width: 73vw;
  }
}

@media(max-width: 420px){
  .mv_text_1,
  .mv_text_1 span{
    font-size: 24px;
  }
}



/* =================================
IPとは
==================================== */

#about_ip  .inner_about_ip{
  background : linear-gradient(90deg, #F4F7FA 75%, rgba(255, 255, 255, 1) 75%);

}

#about_ip  .inner_about_ip > .wrapper{
  position: relative;
  padding-top: 90px;
  padding-bottom: 110px;
}

/* モックアップ画像 */
#about_ip .wrapper .mock_ip{
  position: absolute;
  top: -224px;
  left: -20px;
}

@media(max-width: 1199px){
  #about_ip .wrapper .mock_ip{
    top: -150px;
    width: 35vw;
  }
}

@media(max-width: 767px){

  #about_ip  .inner_about_ip > .wrapper{
    padding-top: 17vw;
  }

  #about_ip  .inner_about_ip{
    background: #F4F7FA;
  }

  #about_ip .wrapper .mock_ip{
    /* top: 30px; */
    top: 6vw;
    left: 50%;
    transform: translateX(-50%);
    width: 45vw;
  }

  #about_ip h2{
    /* margin-top: 150px; */
    margin-top: 20vw;
  }
}

@media(max-width: 575px){

  #about_ip .wrapper .mock_ip{
    top:10vw;
    width: 56vw;
  }

  #about_ip h2{
    margin-top:30vw;
  }
}

.title_h2{
  font-size: 17px;
  font-weight: bold;
  color: #333;
  margin-bottom: 70px;
}

.title_h2::before{
  display:block;
  font-size: 58px;
  color: #333;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.03em;
  font-weight: 500;
  position: relative;
  z-index: 10;
}

#about_ip .title_h2::before{
  content: "Sobre Nosotros" ;
}

#service .title_h2::before{
  content: "SERVICIO" ;
}

#about_ip h3{
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 50px;
  border-left: 3px solid #444;
  padding-left: 28px;
}

.about_ip_img img{
  box-shadow: 10px 10px 0 #DCDCDC;
  border: 1px solid #bec9d1;
}

.about_ip_text p{
  color: #333;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.025em;
  margin-bottom: 50px;
}


@media(max-width: 767px){
  .title_h2{
    font-size: 16px;
    margin-bottom: 45px;
  }

  .title_h2::before{
    font-size: 48px;
  }

  #about_ip h3{
    font-size: 18px;
    margin-bottom: 30px;
  }
}

@media(max-width: 575px){
  .title_h2::before{
    font-size: 38px;
  }
}


/* =================================
サービス - 台数
==================================== */

#service{
  padding: 90px 0 100px;
}

#service_others{
  padding:95px 0;
}

@media (min-width: 768px) {
  #service .service-text-box{
    padding-left: 60px;
  }

  #service .service-img-box{
    padding-right: 30px;
    padding-top: 12px;
  }
}
.service_title{
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.025em;
  margin-bottom: 30px;
}

.service_title::before{
  display: block;
  font-weight: normal;
  font-size: 50px;
  /* color: #0159A5; */
  color: #006AB8;

  letter-spacing: 0.02em;
  margin-bottom: 5px;
  font-family: 'Roboto', sans-serif;
}

@media(max-width: 768px){

}

#service-01 .service_title::before{
  content: "01";
}

#modal-service-01 .service_title::before{
  content: "02";
}

#modal-service-02 .service_title::before{
  content: "03";
}

#modal-service-03 .service_title::before{
  content: "04";
}

#modal-service-04 .service_title::before{
  content: "05";
}

#modal-service-05 .service_title::before{
  content: "06";
}

#modal-service-06 .service_title::before{
  content: "07";
}

.text_service_01,
.text_service_02{
  font-size: 19px;
  font-weight: bold;
  color: #444;
  letter-spacing: 0.025em;
}

.text_service_01 + img{
  padding-left: 6px;
}

.text_service_03{
  padding-left: 1em;
  text-indent:-1em;
  list-style: inside;
  line-height: 1.7;
  font-size: 17px;
}

.marker {
  background: linear-gradient(transparent 65%, #C3E2FB 65%);
  padding-bottom: 3px;
}

@media(max-width: 991px){
  .text_service_03{
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {

  #service{
    padding: 60px 0 80px;
  }
  
  #service_others{
    padding: 60px 0;
  }

  #service .row{
    flex-direction: column-reverse;
  }
  .service_title{
    font-size: 26px;
  
  }

  .service_title::before{
    font-size: 43px;
    margin-bottom: 3px;
  }

  .text_service_01,
  .text_service_02{
    font-size: 18px;
  }
}

/* 
SVGアニメーション
============================================*/

.lottie_box{
  /* width: 40%; */
  /* background: pink; */
  margin: 0 auto;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  /* border: 10px; */
  border: 1px solid #bec9d1;
  box-shadow: 10px 10px 0 #DCDCDC;

}

.lottie_06{
  width: 100% !important;
  height: auto !important;
}


/* =================================
サービス - その他
==================================== */

#service_others{
  background: #F4F7FA;
}

#service_others h2{
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 75px;
}

@media(max-width: 767px){
  #service_others h2{
    font-size: 21px;
  }
}

#service_others .service_title_s{
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 12px;
}

.service_item {
  margin-bottom: 50px;
}


@media (min-width:576px) and (max-width:767px){
  .pr-sm-30{
    padding-right: 30px;
  }
  .pl-sm-30{
    padding-left: 30px;
   
  }

}

@media(min-width: 768px){

  .pr-md-35{
    padding-right: 35px;
  }
  .pl-md-35{
    padding-left: 35px;
  }
  .px-md-25{
    padding-left: 25px;
    padding-right: 25px;
  }
}


.service_img_box{
  position: relative;
}

#service_others .service_img{
  margin-bottom: 22px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  /* border: 1px solid #bec9d1;
  box-shadow: 6px 6px 0 #DCDCDC; */
}

#service_others .btn_plus{
  position: absolute;
  bottom: 14px;
  right: -10px;
}

.service_title_s span{
  color: #0159A5;
  font-weight: normal;
  margin-right: 12px;
  font-size: 22px;
  display: inline-block;
 position: relative;
 top:1px;
 font-family: 'Roboto', sans-serif;
}


/* 
モーダル
==================================== */

.modal-body{
  position: relative;
  padding: 45px 50px;
}

@media (max-width: 991px){
  .modal-body{
    position: relative;
    padding: 40px 20px;
  }
}


/*モーダルのサイズを拡大*/
@media (min-width: 992px){
 .modal-xl {
  max-width: 960px;
  }
}

@media (min-width: 1200px){
  .modal-xl {
   max-width: 1280px;
   }
 }

button.close{
  float: none;
  position: absolute;
  z-index: 100;
  top: 5px;
  right: 15px;
  font-size: 2.2rem;
  font-weight: 500;
}

@media(min-width: 992px){
  .slide-text-box{
    padding-right: 30px;
  }
}

body.modal-open .modal{
  padding-right: 15px !important;
  padding-left: 15px !important;
}



/* モーダル内のスライドのスタイル */


.carousel-item {
  /* border: 1px solid #AFBCC5; */
  border: 1px solid #bec9d1;
}


/*スライド インジケータ上書き*/
.carousel-indicators{
  position: relative;
  display: flex !important;
  justify-content: flex-start !important;
  margin-left: 0;
  margin-right: 0;
  margin-top: 15px;
}

.carousel-indicators li {
	width: 23.5%;
	height: auto;
	overflow: hidden;
	text-indent: 0;
	/* border: 1px #AFBCC5 solid; */
  border: 1px solid #bec9d1;
  margin-left: 0;
  margin-right: 2%;
  opacity: 1;
}

.carousel-indicators li:last-of-type{
  margin-right: 0;
}

/*スライド矢印上書き*/
.carousel-control-next, 
.carousel-control-prev {
width: 10%;
}

.carousel-control-prev-icon {
  background-image: url("../img/icon_arrow_left_slide.svg");
}

.carousel-control-next-icon{
  background-image: url("../img/icon_arrow_right_slide.svg");
}

.carousel-control-next-icon, 
.carousel-control-prev-icon{
  width: 30px;
  height: 50px;
}

.btn_service{
  margin-top: 15px;
}




/* =================================
 マークラインズのデータ
==================================== */

#ml_data{
  padding: 95px 0 50px;
}

#ml_data h2{
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.42;
}

#ml_data h2 span{
    color: #0159A5;
}

#ml_data h2 .num{
  font-size: 29px;
}

#ml_data .text{
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 55px;
}

.ml_data_box dl{
  margin-bottom: 35px;
}

.ml_data_box dt{
  font-size: 15px;
  font-weight: normal;
  color: #0159A5;
  text-align: center;
  border: 1px solid #0159A5;
  border-radius: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 1;
  margin-bottom: 9px;
  letter-spacing: 0.025em;
}

.ml_data_box dd{
  font-family: 'Oswald', sans-serif;
}

.ml_data_box dd:not(span){
  font-size: 26px;
  
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
}

.ml_data_box dd span{
  font-size: 16px;
  margin: 0 4px;
  font-weight: normal;
}




@media(max-width: 767px){
  #ml_data{
    padding: 65px 0 50px;
  }

  .ml_data_box dd span{
    font-size: 14px;
    margin: 0 4px;
  }

  #ml_data h2{
    font-size: 20px;
  }

  #ml_data h2 .num{
    font-size: 26px;
  }

  .ml_data_box dl{
    margin-bottom: 30px;
  }
}

@media(min-width: 768px){
  #ml_data .ml_data_imgbox{
    padding-left: 65px;
  }
}



/* =================================
CTA
==================================== */

#cta {
  padding: 80px 0;
  background-image: url(../img/bg_cta.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #fff;
}

.cta_title{
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 35px;
}

.cta_text{
  font-size: 18px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 35px;
}

@media(max-width: 767px){
  .cta_title{
    font-size: 21px;
  }

  .cta_text{
    font-size: 17px;
  }
}

.cta_title br{
  display: none;
}

@media(min-width:430px){
  .cta_title br{
    display: block;
  }
}

/* =================================
フッター
==================================== */

footer{
  background-color: #F4F7FA;
  color: #333;
  padding-top: 70px;
}

.footer_inner{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
}

@media(max-width:991px){
  .footer_inner{
    flex-direction: column;
    align-items: flex-start;
  }

  footer .address{
    margin-bottom: 30px;
  }

}

footer .address{
  font-size: 16px;
}

.logo_ml_footer{
  width: 200px;
  padding-right: 16px;
  margin-bottom: 15px;
  margin-left: -3px;
}

footer .address .tel img{
  transform: translateY(-3px);
  width: 16px;
  margin-right: 6px;
}


@media(max-width: 767px){
  .footer_menu{
    font-size: 14px;
    text-align: center;
  }
}


/* ============ コピーライト ============*/

.copyright {
  font-size: 13px;
  padding: 30px 0;
  border-top: 1px solid #888;
}

.copyright{
  display: flex;
  justify-content: space-between;
  padding-left: 15px;
  padding-right: 15px;
}

.copyright ul,
.footer_menu ul{
  display: flex;
}

@media(max-width: 767px){
  .copyright {
    flex-direction: column;
    align-items: center;
  }

  .copyright > ul{
    margin-bottom: 5px;
  }
}

.copyright{
  color: #444;
}

.footer_menu li:not(:first-of-type){
  margin-left: 20px;
  padding-left: 10px;
  border-left: 1px solid #111;
}

.copyright li:not(:first-of-type){
  margin-left: 15px;

}

/* 調整 */
.adjustment-01{
  line-height: 1;
  margin-top: 16px;
}


/* =================================
PC・SP 表示/非表示（CSSの最後に記述）
==================================== */

.sp-only {
  display: block; /*スマホのみ表示*/
}

.pc-only {
  display: none; /*スマホは非表示、PCのみ表示*/
}

/*PC用のスタイル*/
@media screen and (min-width:768px) {
  .sp-only {
    display: none; /*PCでは非表示にする*/
  }

  .pc-only {
    display: block; /*PCのみ表示にする*/
  }
}
