@charset "UTF-8";

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

/* ----------------------------
  LessTube
---------------------------- */

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

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

.lesstube .topWrap > div:nth-of-type(2) {
  flex-direction: row-reverse;
}

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

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

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

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

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

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


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

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

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

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

}

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

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

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

  .lesstube .topWrap > div:nth-of-type(2) {
    flex-direction: column;
  }

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

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

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

}



/* feature
============================ */

.lesstube .featureWrap .title {
  padding: 0 0 .5rem 1rem;
  border-bottom: 1px solid #048629;
  font-size: 1.6rem;
  font-weight: bold;
}

.lesstube .featureCont {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 6rem;
}

.lesstube .featureCont div {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.lesstube .featureCont div img {
  padding-bottom: 2rem;
}

.lesstube .featureCont div p {
  padding-bottom: 1.2rem;
  font-weight: bold;
  text-align: center;
}

.lesstube .featureCont div ul {
  padding-left: 2rem;
  text-align: justify;
}



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

  .lesstube .featureCont {
    gap: 1rem;
  }

}

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

  .lesstube .featureCont {
    flex-direction: column;
  }

  .lesstube .featureCont div img {
    width: 80%;
    padding: 0;
  }

  .lesstube .featureCont div {
    width: 100%;
    padding: 0 1rem 0 0;
  }

}



/* point
============================ */

.lesstube .point {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 20rem;
  padding: 2rem 0;
  background: #f4ffef;
}

.lesstube .point .titleWrap {
  width: 60%;
}

.lesstube .point .titleWrap .title {
  padding: 0 0 .5rem 1rem;
  border-bottom: 1px solid #048629;
  font-size: 1.6rem;
  font-weight: bold;
}

.lesstube .point .titleWrap .read {
  height: auto;
  padding: 2rem 0 0 1rem;
  color: #666;
}

.lesstube .point .imageWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
}

.lesstube .point .imageWrap img {
  width: 80%;
}



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

.lesstube .point .titleWrap,
.lesstube .point .imageWrap {
  width: 50%;
}

}

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

  .lesstube .point {
    flex-direction: column;
  }

  .lesstube .point .titleWrap,
  .lesstube .point .imageWrap {
    width: 100%;
  }

  .lesstube .point .imageWrap img {
    padding: 1rem 0 0 0;
  }

}