@charset "utf-8";

/* ==================== 
 main visual
=====================*/

.mainImg__pc{
    display: none;
}

@media screen and (min-width:769px) {
  .mainImg__pc{
    display: block;
    position: relative;
  }

  .mainImg__sp{
    display: none;
  }
}/* pc 769px */

/* ==================== 
 about
=====================*/

.section--about{
  padding: 20px 5.3% 38px;
  background-color: var(--primary-beige, #FFEDE0);
}

.about_name img {
  display: block;
  margin: 0 auto;
  width:100px
}

.about_contents{
  display: block;
  background-color: var(--primary-white, #ffffff);
  padding: 37px 1.4% 24px;
  margin-top: 20px;
  box-shadow: 2px 2px 10px 10px #ffffff;
}

.aboutImg .about_spImge{
  text-align: center;
}

.about_txt{
  margin-top: 30px;
  color: var(--primary-brown, #6E5E4F);
  display: inline-block;
  position: relative;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  z-index: 10;
}

.about_txt::before{
  content:'';
  display: block;
  background-image: url(../images/pink-orange.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 221px;
  height: 134px;
  position: absolute;
  z-index: -10;
}

.about_txt::after{
  content:'';
  display: block;
  width: 208px;
  height: 160px;
  background-image: url(../images/blue-green.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom:-50px;
  right: -40px;
  z-index: -10;
}

/* about pc */
@media screen and (min-width:769px) {
  .section--about{
    padding:27px 8.6% 87px;
  }

  .about_name img{
    display: block;
    width: 243px;
    height: 165px
  }

  .about_contents{
    display: flex;
    max-width: 1184px;
    align-items: center;
    margin: 72px auto 0;
    padding: 40px 18px 53px 10px;
  }

  .about_txt{
    margin:0 0 0 10px;
    font-family: "Noto Sans";
    font-size: 1.8rem;
  }

}/* pc 769px */

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

.section--feature{
  padding: 40px 0 40px;
  background-image: url(../images/features_background.png);
  background-size: 500px;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-color: rgba(255,255,255,0.6);
  background-blend-mode: lighten;
}

.feature_name img {
  display: block;
  margin: 0 auto;
  width:100px
}

.feature_list{
  width: 300px;
  margin: 0 auto;
  padding-top: 40px;
  background-size: 400px;
  margin: 0 auto;
}

.feature_item{
  width: 300px;
  height: 300px;
  background-color: #FFDCC3;
  margin-top: 40px;
  padding-top: 26px;
  border-radius: 50%;
  position: relative;
}

.feature_item:nth-child(1){
  margin-top: 0;
}

/* point1 */
.feature_item::after{
  content:'';
  display: block;
  background-repeat: no-repeat;
  width: 75px;
  height: 35px;
  background-image: url(../images/point1.png);
  background-size: contain;
  position: absolute;
  top: 22px;
  transform: rotate(-15deg);
}

/* point2 */
.feature_list .feature_item:nth-child(2)::after{
  content:'';
  display: block;
  background-repeat: no-repeat;
  width: 75px;
  height: 35px;
  background-image: url(../images/point2.png);
  background-size: contain;
  position: absolute;
  top: 22px;
  transform: rotate(-15deg);
}

/* point3 */
.feature_list .feature_item:nth-child(3)::after{
  content:'';
  display: block;
  background-repeat: no-repeat;
  width: 75px;
  height: 35px;
  background-image: url(../images/point3.png);
  background-size: contain;
  position: absolute;
  top: 22px;
  transform: rotate(-15deg);
}


.feature_topic{
  text-align: center;
  font-family: "Noto Sans";
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.8px;
  position: relative;
}

.feature_topic::before{
  content:'';
  display: inline-block;
  width: 220px;
  height: 3px;
  background-color: #ffffff;
  position: absolute;
  bottom: -5px;
  left: 40px;
}

.redBig{
  color: var(--primary-red, #FF6666);
  font-family: "Noto Sans";
  font-size: 4.8rem;
  font-weight: 700;
}

.feature_txt{
  color: #6E5E4F;
  font-family: "Noto Sans";
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1.6px;
  position: absolute;
  padding: 20px 34px 20px 37px;
}

/* feature pc */
@media screen and (min-width:769px) {
  .section--feature{
    padding: 63px 8% 80px;
    background-size: 50%;
    background-position: right;
  }

  .feature_name img{
    display: block;
    width: 196px;
    height: 79px
  }
  
  .feature_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 50px;
    width: 100%;
  }

  .feature_item{
    margin: 0 auto 40px ;
  }
}/*  pc 769px */


/* ==================== 
 course
=====================*/

.section--top-course{
  padding: 40px 16%;
  background-color: var(--primary-beige, #FFEDE0);
}

.course_name{
  width: 100px;
  margin: 0 auto;
}

.top-course_list{
  max-width: 1186px;
  margin: 35px auto 0;
}

.course_item{
  max-width: 300px;
  padding-top: 32px;
  font-family: "Noto Sans";
  font-size: 2rem;
  font-weight: 400;
  line-height: 3;
  text-align: center;
}

.courseImg{
  position: relative;
}

.top-course_list img{
  transform: rotate(15deg);
}

ul p{
  margin: 63px 0  20px
}

.courseImg-orange, .courseImg-blue, .courseImg-green{
  transform: rotate(-15deg);
}

.courseImg-orange{
  background-image: url(../images/back-orange.png);
  margin-top: 0;
}

.courseImg-blue{
  background-image: url(../images/back-blue.png);
}

.courseImg-green{
  background-image: url(../images/back-green.png);
}

.course_btn{
  width: 184px;
  height: 68px;
  color: var(--primary-red, #FF6666);
  font-size: 1.8rem;
  border: solid 3px;
  background-color: #ffffff;
  border-radius: 56px;
  position: relative;
  text-align: center;
  margin: 0 auto;
  margin-top: 35px;
}

.course_btn::after{
    content: '';
    display: block;
    position: absolute;
    top: 34%;
    right: 10%;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid  var(--primary-red, #FF6666);
    border-right: 0;
}

.course_link{
  display: block;
  padding: 17px 49px 16px 20px;
}

/*  top-course pc*/
@media screen and (min-width:769px) {
  .section--top-course{
    padding: 58px 8.8%;
  }

  .course_name{
    width: 145px;
  }

  .top-course_list{
    display: flex;
    justify-content: space-between;
    margin-top: 85px;
  }

  .top-course_list p{
    margin: 0 0 52px 0;
  }

  .course_item{
    padding: 0;
    margin-right: 111px;
  }

  .top-course_list .course_item:nth-of-type(3){
    margin-right: 0;
  }

}/* pc 769px */