  @charset "utf-8";

/* =============================================
  style
============================================= */
img.book-ico{
  margin-right: 5px;
  vertical-align: middle;
}
.course_list_table tr > td:nth-child(1){
  width: auto;
  font-size: 2.2rem;
  vertical-align: middle;
}
.item-lavel{
  position: relative;
  display: flex;
  gap: 5px;
  width: 10em;
  padding: 5px 10px;
  margin: -5px 0 10px -20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.55em;
  color: #fff;
  text-align: center;
  background-color: #6a6453;
}
.item-lavel::after{
  position: absolute;
  top: -5px;
  right: -31px;
  bottom: -5px;
  height: auto;
  aspect-ratio: cos(30deg);
  content: '';
  background: #f1f1e9;
  clip-path: polygon(35% 0,0 50%,35% 100%);
}
.item-lavel span:nth-child(2){
  position: relative;
  top: -2px;
  font-size: 1.2em;
  font-weight: bold;
}
.item-lavel span:nth-child(2)::before{
  display: inline-block;
  padding-right: 4px;
  content: '/';
}
td .disc > li{
  font-size: 1.3rem;
}
.table_price div{
  grid-template-columns: 40% 1fr;
}
.dl{
  margin: 20px auto 0;
}
.dl a{
  display: inline-block;
  width: 100%;
  padding: 20px 25px;
  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  color: #333;
  color: var(--font-dark);
  text-align: center;text-decoration: none;
  border: 1px solid var(--nikken-red);
  border-radius: 30px;
  transition: all 0.2s ease;
}
.dl a:hover{
  opacity: 0.7;
}
.dl-ico{
  margin-right: 10px;
  vertical-align: middle;
}

/* ===========================================
	MediaQueries
=========================================== */

/* スマホ----------------------------- */
@media screen and (width <= 767px){

}

/* PC----------------------------- */
@media screen and (width >= 768px){
  .course_list_table tr > td:nth-child(2) {
    width: 40%;
  }
  .course_list_table tr > td:nth-child(3) {
    width: 30%;
  }
  .item-lavel::after{
    right: -28px;
  }
  .dl{
     width: 800px;
     margin: 0 auto;
  }
}