@charset "utf-8";

/*==============================================

	program

==============================================*/
.program {
  max-width: 1160px;
  margin: 0 auto 100px;
  padding: 0 30px;
  width: 100%;
}
.program .heading {
  border-bottom: 1px solid #CCBCA4;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.program .heading .en_title img {
  height: 28px;
}
.program .heading h2 {
    color: var(--br);
    font-size: 1.4rem;
    margin-top: 20px;
}

.program_list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 3%;
}
.program_list > li {
  width: calc((100% - 3% * (3 - 1)) / 3);
}
.program_list > li img {
  border-radius: 10px;
}
.program_list > li h3 {
    color: var(--br);
    font-size: 1.8rem;
    margin-top: 15px;
    margin-bottom: 5px;
}
.program_list > li .text {
    font-size: 1.3rem;
    margin-bottom: 0;
}
.program_list > li .more {
  margin-top: 10px;
}
.program_list > li .more a {
  display: inline-block;
  position: relative;
  background-image: url(../../common/img/arrow-r-br.svg);
  background-size: 25px;
  background-position: right center;
  background-repeat: no-repeat;
  transition: all 0.3s;
  color: var(--br);
  font-size: 1.4rem;
  padding: 10px 50px 10px 0;
}

.program_wrap {
  margin-bottom: 150px;
}
@media screen and (max-width: 736px) {

  .program_wrap {
    margin-top: 30px;
    margin-bottom: 80px;
  }
  .program {
    margin-bottom: 70px;
  }
  .program .heading .en_title img {
    height: 21px;
  }
  .program .heading h2 {
    margin-top: 5px;
  }
  .program_list > li {
    width: 100%;
  }
  .training .heading .en_title img {
    height: 60px;
  }
}