@charset "UTF-8";

/***************************************
style_lesstube.css
***************************************/

/* ----------------------------
  anti-spy
---------------------------- */

/* top
============================ */

.antispy .topWrap > div {
  display: flex;
  flex-direction: row;
}

.antispy .topWrap > div > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
}

.antispy .topWrap > div > div.text {
  width: 60%;
  padding: 0 2rem;
  text-align: justify;
}

.antispy .topWrap > div > div.image {
  width: 40%;
  align-items: center;
}

.antispy .topWrap > div > div.image img {
  max-width: 80%;
}

.antispy .topWrap .catch {
  padding-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: justify;
}

.antispy .topWrap > div > div.text p {
  padding: .5rem 0;
}


/************ <= tablet ************/
@media screen and (max-width:960px){

  .antispy .topWrap > div > div.text {
    width: 60%;
  }

  .antispy .topWrap > div > div.image {
    width: 40%;
  }

  .antispy .topWrap > div > div.image img {
    max-width: 100%;
    width: 100%;
  }

}

/************ smart phone ************/
@media screen and (max-width:768px){

  .antispy .topWrap > div {
    flex-direction: column;
  }

  .antispy .topWrap > div + div {
    padding-top: 2rem;
  }

  .antispy .topWrap > div > div.text {
    width: 100%;
    padding: 0 1rem 2rem;
  }

  .antispy .topWrap > div > div.image {
    width: 80%;
    margin: 0 auto;
  }

  .antispy .topWrap > div > div.image img {
    display: block;
    width: 100%;
    object-fit: contain;
  }

}



/* service
============================ */

.antispy .serviceWrap .title {
  margin-bottom: 2rem;
  padding: 0 0 .5rem 1rem;
  border-bottom: 1px solid #048629;
  font-size: 1.6rem;
  font-weight: bold;
}

.antispy .serviceWrap > div {
  display: flex;
  flex-direction: row;
}

.antispy .serviceWrap > div > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
}

.antispy .serviceWrap.browser > div {
  flex-direction: row-reverse;
}

.antispy .serviceWrap > div > div.text {
  width: 60%;
  padding: 0 2rem;
  text-align: justify;
}

.antispy .serviceWrap > div > div.image {
  position: relative;
  width: 40%;
  align-items: center;
}

.antispy .serviceWrap > div > div.image img {
  max-width: 80%;
}

.antispy .serviceWrap > div > div.image::before {
  position: absolute;
  top: 0;
  left: 10%;
  width: 90%;
  height: 100%;
  display: block;
  background-image: linear-gradient(90deg, #fff 5%, transparent 75%);
  content: "";
}

.antispy .serviceWrap.browser > div > div.image::before {
  left: 0;
  right: 10%;
  background-image: linear-gradient(270deg, #fff 5%, transparent 75%);
}

.antispy .serviceWrap > div > div.text p {
  padding: .5rem 0;
}

.antispy .serviceWrap > div > div.text ul {
  margin: 1rem  0 0 1rem;
}

.antispy .serviceWrap > div > div.text ul li {
  padding: .2rem 0;
}



/************ <= tablet ************/
@media screen and (max-width:960px){

  .antispy .serviceWrap > div > div.text {
    width: 60%;
  }

  .antispy .serviceWrap > div > div.image {
    width: 40%;
  }

  .antispy .serviceWrap > div > div.image img {
    max-width: 100%;
    width: 100%;
  }

  .antispy .serviceWrap > div > div.image::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

}

/************ smart phone ************/
@media screen and (max-width:768px){

  .antispy .serviceWrap > div,
  .antispy .serviceWrap.browser > div {
    flex-direction: column;
  }

  .antispy .serviceWrap > div + div {
    padding-top: 2rem;
  }

  .antispy .serviceWrap > div > div.text {
    width: 100%;
    padding: 0 1rem 2rem;
  }

  .antispy .serviceWrap > div > div.image {
    width: 80%;
    margin: 0 auto;
  }

  .antispy .serviceWrap > div > div.image img {
    display: block;
    width: 100%;
    object-fit: contain;
  }

  .antispy .serviceWrap > div > div.image::before,
  .antispy .serviceWrap.browser > div > div.image::before {
    background-image: linear-gradient(90deg, transparent 5%, transparent 75%);
  }

}