@charset "UTF-8";

/* -------------------- Lesson -------------------- */
.lesson_top {
  width: 100%;
  height: 350px;
  background: url(../images/lesson/lesson_top.jpg) no-repeat center center / cover rgba(0, 0, 0, 0.3);
  background-blend-mode: darken;
  margin: 110px 0;
  display: flex;
  align-items: center;
}

.lesson_top-content {
  color: #fff;
}

.lesson_top-title {
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .lesson_top {
    margin-top: 132px;
  }
}

/* -------------------- Lesson-link -------------------- */
.lesson_link {
  display: flex;
  justify-content: center;
  gap: 40px;
  text-align: center;
  margin-bottom: 100px;
}

.green-btn {
  width: 45%;
  min-width: 300px;
  background: #B2D0C2;
  border-radius: 60px;
  padding: 15px 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.2s;
}

.dli-chevron-down {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}

.green-btn:hover {
  transform: translateY(3%);
}

@media screen and (max-width: 768px) {
  .lesson_link {
    flex-direction: column;
    margin-bottom: 80px;
  }

  .green-btn {
    width: 100%;
    font-size: 1.8rem;
  }
}

/* -------------------- Advisor,myself -------------------- */
.advisor,
.myself {
  padding: 80px 0;
  margin-bottom: 120px;
  background: #F5F3ED;
  scroll-margin-top: 100px;
}

.advisor_content,
.myself_content {
  display: flex;
  justify-content: space-around;
  margin-bottom: 100px;
}

.advisor_desc,
.myself_desc {
  width: 45%;
}

.advisor_title,
.myself_title {
  padding: 10px 20px;
  background: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
}

.advisor_img,
.myself_img {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .advisor_content,
  .myself_content {
    flex-direction: column;
  }

  .advisor_desc,
  .myself_desc {
    order: 2;
    width: 100%;
  }

  .advisor_img,
  .myself_img {
    order: 1;
    width: 100%;
  }
}

/* -------------------- Recommend -------------------- */
.recommend {
  margin-bottom: 60px;
}

.recommend_content {
  border: 1px solid #504949;
  background: #fff;
  padding: 45px 0;
  margin-bottom: 96px;
}

.recommend_content-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.666;
  text-align: center;
  margin-bottom: 20px;
}

.recommend_desc {
  width: 50%;
  margin: auto;
}

.recommend_desc li {
  position: relative;
  padding-left: 26px;
}

.recommend_desc li::before {
  content: url(../images/craft/check.svg);
  left: 0;
  position: absolute;
}

@media screen and (max-width: 768px) {
  .recommend_content {
    padding: 40px 20px;
  }

  .recommend_desc {
    width: 80%;
  }
}

/* -------------------- Advisor_note -------------------- */
.advisor_note {
  padding: 30px;
  background: #DEEBE5;
  margin-bottom: 80px;
  position: relative;
}

.advisor_note-title {
  position: absolute;
  top: -15px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.666;
}

.advisor_note ul {
  margin-left: 6%;
}

.advisor_note ul li {
  list-style: disc;
}

/* -------------------- Curriculum -------------------- */
.curriculum {
  margin-bottom: 100px;
}

.title_wrap {
  text-align: center;
  margin-bottom: 50px;
}

.title_wrap.let {
  margin-bottom: 72px;
}

.white-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  background: #fff;
  padding: 5px 30px;
  border-radius: 60px;
  display: inline-block;
}

.curriculum_txt {
  display: table;
  margin: 0 auto;
}

.curriculum_txt span {
  font-weight: 500;
}

/* -------------------- Advisor_lectureship -------------------- */
.advisor_lectureship {
  padding-bottom: 100px;
  margin-bottom: 20px;
}

.lectureship_content {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 30px;
}

.lectureship_lesson {
  width: calc((100% - 30px) / 2);
  background: #fff;
  padding: 20px 18px;
  position: relative;
}

.no {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background: #504949;
  padding: 0 16px;
  border-radius: 60px;
  display: inline-block;
  position: absolute;
  top: -20px;
  left: 0;
}

.more {
  display: none;
}

@media screen and (max-width: 768px) {
  .lectureship_lesson {
    width: 100%;
  }

  .hidden {
    height: 840px;
    overflow: hidden;
    position: relative;
  }

  .hidden.open {
    height: auto;
  }

  .hidden::before {
    content: "";
    width: 100%;
    height: 200px;
    display: block;
    background: linear-gradient(180deg,
        rgb(245, 243, 237, 0) 0%,
        rgb(245, 243, 237, 1) 70%);
    position: absolute;
    bottom: 0;
    z-index: 9;
  }

  .hidden.open::before {
    background: none;
  }

  .more {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    transition: bottom .4s;
    z-index: 10;
  }

  .more.open {
    display: none;
  }
}

/* -------------------- Lesson_oil -------------------- */
.lesson_oil,
.lesson_vegetable,
.lesson_herbal {
  margin-bottom: 100px;
}

/* -------------------- Lesson_fee -------------------- */
.lesson_fee {
  margin-bottom: 100px;
}

.price_list {
  background: #fff;
  padding: 40px 40px 25px;
  margin: 0 auto;
  width: 80%;
}

.table__row {
  display: grid;
  grid-template-columns: 1fr 7rem 14rem;
}

.table__price--no-tax {
text-align: right;
}

.table__row.total {
  padding-top: 15px;
  border-top: 2px solid rgba(80, 73, 73, 0.1);
  font-weight: 500;
  margin-bottom: 60px;
}

.table__row--name {
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .price_list {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    font-size: 1.4rem;
    padding: 30px 30px 25px;
  }

  .table__row {
    grid-template-columns: 1fr 7rem 12rem;
  }
}

/* -------------------- Application -------------------- */
.application {
  width: 100%;
  height: 150px;
  background: url(../images/lesson/lesson_prant.jpg) no-repeat center center / cover rgba(0, 0, 0, 0.3);
  background-blend-mode: darken;
  color: #fff;
  position: relative;
  text-align: center;
}

.sp-only {
  display: none;
}

.application_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}

.application_content-item {
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .application {
    height: 190px;
  }

  .sp-only {
    display: inline;
  }

  .application_content {
    width: 90%;
  }

  .application_content>p {
    font-size: 1.2rem;
  }

  .application_content-item {
    flex-direction: column;
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
}

/* -------------------- Myself_lectureship -------------------- */
.myself_content {
  display: flex;
  justify-content: space-around;
  gap: 30px;
}

.myself_content-item {
  position: relative;
  background: #fff;
  padding: 40px 25px;
  flex:1;
}

.myself_content-item-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 40px;
}

.myself_content-item ul {
  margin-left: 30px;
}

.myself_content-item ul li {
  list-style: disc;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .myself_content {
    gap: 50px;
  }
}