/*--------------------------
      コース紹介TOP
  -------------------------*/
/*「教科センター方式」の画像*/
#content #renewal .p-course-mv__wrapper{
  background-image:url(../images/course/course__mv_2025.jpg);
}

/*画像付きコースボタン*/
#content #renewal .p-course-list2{
  display: flex;
  flex-wrap: wrap;
}
#content #renewal .p-course-list2__item{
  width: calc(50% - 20px);
  margin: 0 10px 20px 10px;
}
#content #renewal .p-course-list2__item a{
  width: 100%;
}
#content #renewal .p-course-list2__item a .p-course-list2__img{
  position: relative;
  display: block;
  aspect-ratio: 256 / 151;
  width: 100%;
  overflow: hidden;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-size .4s ease-out;
}
#content #renewal .p-course-list2__item a:hover .p-course-list2__img{
  background-size: 105%;
}
#content #renewal .p-course-list2__item a .p-course-list2__img::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
  transition: background-color .4s ease-out;
}
#content #renewal .p-course-list2__item a:hover .p-course-list2__img::before{
    background-color: rgba(0, 0, 0, 0.5);
}
#content #renewal .p-course-list2__item a .p-course-list2__img._1{
  background-image: url("../images/course/course__standard_2025.jpg");
}
#content #renewal .p-course-list2__item a .p-course-list2__img._2{
  background-image: url("../images/course/course__advanced_2025.jpg");
}
#content #renewal .p-course-list2__item a .p-course-list2__img._3{
  background-image: url("../images/course/course__international_2025.jpg");
}
#content #renewal .p-course-list2__item a .p-course-list2__img._4{
  background-image: url("../images/course/course__sport_2025.jpg");
}
#content #renewal .p-course-list2__item a .p-course-list2__img .p-course-list2__title{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 13px 10px 10px 10px;
}
#content #renewal .p-course-list2__item a .p-course-list2__img .p-course-list2__title .bgappear{
  position: relative;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  letter-spacing: normal;
  z-index: 2;
  transition: letter-spacing .4s ease-out;
}
#content #renewal .p-course-list2__item a:hover .p-course-list2__img .p-course-list2__title .bgappear{
  letter-spacing: 0.2em;
}
#content #renewal .p-course-list2__item a .p-course-list2__img .p-course-list2__title._1.bgLRextend::before{
  animation-name: bgRLextendAnime;
  animation-duration: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgba(68,165,73,0.8);
}
#content #renewal .p-course-list2__item a:hover .p-course-list2__img .p-course-list2__title._1.bgLRextend::before{
  animation-name: bgRLextendAnime2;
  animation-duration: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}
#content #renewal .p-course-list2__item a .p-course-list2__img .p-course-list2__title._2.bgLRextend::before{
  animation-name: bgRLextendAnime;
  animation-duration: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgba(254,147,38,0.8);
}
#content #renewal .p-course-list2__item a:hover .p-course-list2__img .p-course-list2__title._2.bgLRextend::before{
  animation-name: bgRLextendAnime2;
  animation-duration: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}
#content #renewal .p-course-list2__item a .p-course-list2__img .p-course-list2__title._3.bgLRextend::before{
  animation-name: bgRLextendAnime;
  animation-duration: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgba(255,91,141,0.8);
}
#content #renewal .p-course-list2__item a:hover .p-course-list2__img .p-course-list2__title._3.bgLRextend::before{
  animation-name: bgRLextendAnime2;
  animation-duration: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}
#content #renewal .p-course-list2__item a .p-course-list2__img .p-course-list2__title._4.bgLRextend::before{
  animation-name: bgRLextendAnime;
  animation-duration: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgba(0,162,217,0.8);
}
#content #renewal .p-course-list2__item a:hover .p-course-list2__img .p-course-list2__title._4.bgLRextend::before{
  animation-name: bgRLextendAnime2;
  animation-duration: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}
@media screen and (max-width: 550px){
  #content #renewal .p-course-list2__item{
  width: calc(50% - 10px);
  margin: 0 5px 10px 5px;
}
  #content #renewal .p-course-list2__item a .p-course-list2__img .p-course-list2__title{
    padding: 7px 10px 5px 10px;
  }
}
@media screen and (max-width: 420px){
  #content #renewal .p-course-list2__item a .p-course-list2__img .p-course-list2__title{
    font-size: 14px;
    padding: 5px 5px 3px 5px;
  }
}
#content #renewal .p-course-list2__item a .p-course-list2__description{
  position: relative;
  padding: 10px;
}
#content #renewal .p-course-list2__item a .p-course-list2__description .bgappear{
  position: relative;
  font-size: 14px;
  color: #333;
  transition: all 0.4s ease;
}
#content #renewal .p-course-list2__item a:hover .p-course-list2__description .bgappear{
  color: #fff;
}
#content #renewal .p-course-list2__item a:hover .p-course-list2__description._1.bgRLextend::before{
  animation-name: bgLRextendAnime;
  animation-duration: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgba(68,165,73,1);
}
#content #renewal .p-course-list2__item a .p-course-list2__description._1.bgRLextend::before{
  animation-name: bgLRextendAnime2;
  animation-duration: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgba(68,165,73,1);
}
#content #renewal .p-course-list2__item a:hover .p-course-list2__description._2.bgRLextend::before{
  animation-name: bgLRextendAnime;
  animation-duration: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgba(254,147,38,1);
}
#content #renewal .p-course-list2__item a .p-course-list2__description._2.bgRLextend::before{
  animation-name: bgLRextendAnime2;
  animation-duration: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgba(254,147,38,1);
}
#content #renewal .p-course-list2__item a:hover .p-course-list2__description._3.bgRLextend::before{
  animation-name: bgLRextendAnime;
  animation-duration: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgba(255,91,141,1);
}
#content #renewal .p-course-list2__item a .p-course-list2__description._3.bgRLextend::before{
  animation-name: bgLRextendAnime2;
  animation-duration: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgba(255,91,141,1);
}
#content #renewal .p-course-list2__item a:hover .p-course-list2__description._4.bgRLextend::before{
  animation-name: bgLRextendAnime;
  animation-duration: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgba(0,162,217,1);
}
#content #renewal .p-course-list2__item a .p-course-list2__description._4.bgRLextend::before{
  animation-name: bgLRextendAnime2;
  animation-duration: .3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgba(0,162,217,1);
}
@keyframes bgLRextendAnime{
  0%{
    transform-origin:left;
    transform:scaleX(0);
  }
  100%{
    transform-origin:left;
    transform:scaleX(1);
  }
}
@keyframes bgLRextendAnime2{
  0%{
    transform-origin:left;
    transform:scaleX(1);
  }
  100%{
    transform-origin:left;
    transform:scaleX(0);
  }
}
@keyframes bgRLextendAnime{
  0%{
    transform-origin:right;
    transform:scaleX(0);
  }
  100%{
    transform-origin:right;
    transform:scaleX(1);
  }
}
@keyframes bgRLextendAnime2{
  0%{
    transform-origin:right;
    transform:scaleX(1);
  }
  100%{
    transform-origin:right;
    transform:scaleX(0);
  }
}

/*コースボタンの色*/
.p-course-nav__item:nth-child(1) a{background-color:#44a549}
@media screen and (min-width: 768px){
  #content #renewal .p-course-nav__item:nth-child(1) a{border:1px solid #44a549}
}
@media screen and (min-width: 1024px){
  #content #renewal .p-course-nav__item:nth-child(1) a:hover{background-color:#fff;color:#44a549}
  #content #renewal .p-course-nav__item:nth-child(1) a:hover::before{border-style:solid;height:0;width:0;border-color:#44a549 transparent transparent transparent;border-width:7px 5.5px 0 5.5px}
}

#content #renewal .p-course-nav__item:nth-child(2) a{background-color:#ff5b8d}
@media screen and (min-width: 768px){
  #content #renewal .p-course-nav__item:nth-child(2) a{border:1px solid #ff5b8d}
}
@media screen and (min-width: 1024px){
  #content #renewal .p-course-nav__item:nth-child(2) a:hover{background-color:#fff;color:#ff5b8d}
  #content #renewal .p-course-nav__item:nth-child(2) a:hover::before{border-style:solid;height:0;width:0;border-color:#ff5b8d transparent transparent transparent;border-width:7px 5.5px 0 5.5px}
}

#content #renewal .p-course-nav__item:nth-child(3) a{background-color:#fe9326}
@media screen and (min-width: 768px){
  #content #renewal .p-course-nav__item:nth-child(3) a{border:1px solid #fe9326}
}
@media screen and (min-width: 1024px){
  #content #renewal .p-course-nav__item:nth-child(3) a:hover{background-color:#fff;color:#fe9326}
  #content #renewal .p-course-nav__item:nth-child(3) a:hover::before{border-style:solid;height:0;width:0;border-color:#fe9326 transparent transparent transparent;border-width:7px 5.5px 0 5.5px}
}

#content #renewal .p-course-nav__item:nth-child(4) a{background-color:#00a2d9}
@media screen and (min-width: 768px){
  #content #renewal .p-course-nav__item:nth-child(4) a{border:1px solid #00a2d9}
}
@media screen and (min-width: 1024px){
  #content #renewal .p-course-nav__item:nth-child(4) a:hover{background-color:#fff;color:#00a2d9}
  #content #renewal .p-course-nav__item:nth-child(4) a:hover::before{border-style:solid;height:0;width:0;border-color:#00a2d9 transparent transparent transparent;border-width:7px 5.5px 0 5.5px}
}

/*--------------------------
          全コース共通
  -------------------------*/
/*時間割テーブル*/
.p-schedule-table__row td{
  height: 4em;
}
/*2列の写真配置*/
.p-course-point__imgs{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
}
#content #renewal .p-course-point__img._col2{
  width:calc(50% - 7px);
  margin-bottom: 14px;
}
/*メイン画像*/
.p-cdetail-mv__img{
  padding-top:56.2%!important;
  background-size:100% auto!important;
}
/*Student's voice*/
.p-cdetail__students-voice{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.p-cdetail__students-voice h3{
  width: 100%;
  max-width: 500px;
}
.p-cdetail__students-voice .student{
  width: 100%;
  max-width: 500px;
  margin: 10px 0;
  padding: 20px;
  border-radius: 10px;
}
.p-cdetail__students-voice .student figure{
  width: 100%;
  text-align: center;
  padding-bottom: 10px;
}
.p-cdetail__students-voice .student figure>div{
  width: 155px;
  margin: 0 auto;
}
.p-cdetail__students-voice .student figcaption{
  font-size: 16px;
  font-weight: bold;
  padding-top: 5px;
}
.p-cdetail__students-voice .student p{
  width: 100%;
  font-size: 14px;
}
/*「教育課程と履修単位数はこちら」「時間割例 (2年生)はこちら（PDF）」ボタン*/
.c-btn2 ul{
  width: 100%;
}
.c-btn2 ul li{
  width: 90%;
  max-width: 500px;
  padding: 0;
  margin: 0 auto 10px auto;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  background-color: #103574;
}
.c-btn2 ul li:hover{
  background-color: #294575;
}
.c-btn2 ul li a{
  display: block;
  width: calc(100% - 20px);
  padding: 20px 10px;
  text-align: center;
}

/*--------------------------
          普通コース
  -------------------------*/
/*メイン画像*/
#content #renewal .p-cdetail-mv__img._standard{
  background-image:url("../images/course/mv/mv_standard_pc_2025.jpg")!important;
}
/*Student's voices*/
.p-cdetail__students-voice .student.standard{
  background-color: #e4f1de;
}

/*--------------------------
          国際コース
  -------------------------*/
/*メイン画像*/
#content #renewal .p-cdetail-mv__img._international{
  background-image:url("../images/course/mv/mv_international_pc_2025.jpg")!important;
}
/*Student's voices*/
.p-cdetail__students-voice .student.international{
  background-color: #fce9e6;
}

/*--------------------------
          特進コース
  -------------------------*/
/*メイン画像*/
#content #renewal .p-cdetail-mv__img._advanced{
  background-image:url("../images/course/mv/mv_advanced_pc_2025.jpg")!important;
}
/*Student's voices*/
.p-cdetail__students-voice .student.advanced{
  background-color: #feebd3;
}

/*--------------------------
      スポーツ科学コース
  -------------------------*/
/*メイン画像*/
#content #renewal .p-cdetail-mv__img._sport{
  background-image:url("../images/course/mv/mv_sport_pc_2025.jpg")!important;
}
/*Student's voices*/
.p-cdetail__students-voice .student.sport{
  background-color: #daf0fc;
}