
/* pankuzu */
#page-pankuzu {
  width: 100%;
  background-color: #f5f5f5;
  overflow: auto;
}
#page-pankuzu ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 10px 15px;
}
@media screen and (max-width: 700px) {
  #page-pankuzu ul {
    padding: 7px 10px;
  }
}
#page-pankuzu li {
  position: relative;
  display: inline-block;
  font-size: 13px;
  white-space: nowrap;
}
@media screen and (max-width: 700px) {
  #page-pankuzu li {
    font-size: 12px;
  }
}
#page-pankuzu li:not(:last-child) {
  padding-right: 2em;
}
@media screen and (max-width: 700px) {
  #page-pankuzu li:last-child {
    padding-right: 15px;
  }
}
#page-pankuzu li:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0.9em;
  display: block;
  width: 0.6em;
  height: 0.6em;
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
}
@media screen and (max-width: 700px) {
  #page-pankuzu li:not(:last-child)::before {
    border-top: 2px solid #C1599D;
    border-right: 2px solid #C1599D;
  }
}
#page-pankuzu li a, 
#page-pankuzu li span {
  white-space: nowrap;
  transition: .3s opacity;
}
@media screen and (max-width: 700px) {
  #page-pankuzu li a, 
  #page-pankuzu li span {
    color: #000;
    text-shadow: none;
  }
}
#page-pankuzu li a:hover {
  opacity: .6;
}


/* コースページテンプレート */
.page-course-template .course-teacher-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #000;
}
.page-course-template .course-teacher-head h1 {
  width: 100%;
  padding: 0 5%;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.page-course-template .course-teacher-head img {
  display: block;
  width: 50%;
  height: auto;
}
@media screen and (max-width: 900px) {
  .page-course-template .course-teacher-head h1 {
    font-size: 26px;
  }
}
@media screen and (max-width: 700px) {
  .page-course-template .course-teacher-head {
    flex-direction: column;
  }
  .page-course-template .course-teacher-head h1 {
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    font-size: 24px;
  }
  .page-course-template .course-teacher-head img {
    width: 100%;
    padding: 5px;
  }
}


.page-course-template section .box {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
.page-course-template section .box h2 {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 0;
  margin-bottom: 60px;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-course-template section .box h2 {
    font-size: 24px;
  }
}
.page-course-template section .box h2:after {
  content: '';
  position: absolute;
  left: calc(50% - 15px);
  bottom: -20px;
  display: block;
  width: 30px;
  height: 5px;
  border-radius: 999px;
  background-color: #000;
}
.page-course-template section .box h3 {
  display: block;
  width: 100%;
  margin-top: 70px;
  margin-bottom: 30px;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-course-template section .box h3 {
    font-size: 20px;
  }
}
.page-course-template section .box h3 span {
  position: relative;
  display: inline-block;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.page-course-template section .box h3 span:before,
.page-course-template section .box h3 span:after {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  display: block;
  width: 25px;
  height: 4px;
  border-radius: 999px;
  background-color: #000;
}
.page-course-template section .box h3 span:before {
  left: -25px;
}
.page-course-template section .box h3 span:after {
  right: -25px;
}


.page-course-template section#toc {
  width: 100%;
  margin: 0;
  padding: 60px 5%;
  background-color: #f7f7f7;
}
@media screen and (max-width: 768px) {
  .page-course-template section#toc {
    padding: 30px 5%;
  }
} 
.page-course-template section#toc .box ul {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .page-course-template section#toc .box ul {
    gap: 10px;
  }
} 
.page-course-template section#toc .box ul li {
  width: calc(33.3333% - 10px);
  list-style: none;
}
@media screen and (max-width: 768px) {
  .page-course-template section#toc .box ul li {
    width: calc(50% - 10px);
  }
} 
@media screen and (max-width: 500px) {
  .page-course-template section#toc .box ul li {
    width: 100%;
  }
} 
.page-course-template section#toc .box ul li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 4em;
  margin: 0;
  padding: .5em 30px .5em .5em;
  font-size: 15px;
  font-weight: 700;
  color: #000;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .page-course-template section#toc .box ul li a {
    font-size: 13px;
  }
} 
.page-course-template section#toc .box ul li a:hover {
  opacity: .5;
}
.page-course-template section#toc .box ul li a:after {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: 10px;
  display: block;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-top: 8px solid #000;
}


.page-course-template section#teacher-detail {
  width: 100%;
  margin: 0;
  padding: 60px 5%;
  background-color: #fff;
  background-image: url(../images/course/voice-artists/day-background.png);
  background-repeat: repeat;
  background-size: 20px 25px;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .page-course-template section#teacher-detail {
    padding: 30px 5%;
  }
} 

.page-course-template section#teacher-detail .teacher-detail-wrap {
  position: relative;
  width: 100%;
  margin: 0;
}
.page-course-template section#teacher-detail .teacher-detail-wrap + .teacher-detail-wrap {
  margin-top: 50px;
}
.page-course-template section#teacher-detail .teacher-detail-contents {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.page-course-template section#teacher-detail .teacher-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin: 0;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 6px 6px 12px rgba(0,0,0,.07);
  background-color: #fff;
}
.page-course-template section#teacher-detail .teacher-detail-item h3 {
  margin: 0 0 10px 0;
  font-size: 22px;
  font-weight: 700;
  text-align: left;
}
.page-course-template section#teacher-detail .teacher-detail-item_text {
  width: 100%;
  flex: 1;
}
.page-course-template section#teacher-detail .teacher-detail-item_image {
  width: 300px;
}
.page-course-template section#teacher-detail .teacher-detail-item_image img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.page-course-template section#teacher-detail .teacher-detail-item_text > b {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding-left: 15px;
  font-size: 16px;
  border-left: 4px solid #000;
}
.page-course-template section#teacher-detail .teacher-detail-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}
.page-course-template section#teacher-detail .teacher-detail-item_works {
  margin: 15px 0 0 0;
  padding: 20px;
  border-radius: 10px;
  background-color: #fafafa;
}
.page-course-template section#teacher-detail .teacher-detail-item_works b {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}
.page-course-template section#teacher-detail .teacher-detail-item_works p {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .page-course-template section#teacher-detail .teacher-detail-item {
    width: 100%;
    padding: 20px;
  }
  .page-course-template section#teacher-detail .teacher-detail-item h3 {
    font-size: 18px;
  }
  .page-course-template section#teacher-detail .teacher-detail-item {
    flex-direction: column;
  }
  .page-course-template section#teacher-detail .teacher-detail-item_image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}


/* -------------------------------------------
各コース別色分け
------------------------------------------- */

/* type-voice-artists */
.page-course-template.type-voice-artists .course-teacher-head {
  background-color: #E8639E;
}
.page-course-template.type-voice-artists .course-head .title span {
  color: #E8639E;
}
.page-course-template.type-voice-artists .course-head .course-head-contents .job b:before {
  background-color: #E8639E;
}
.page-course-template.type-voice-artists .course-head .course-head-contents .job ul li:before {
  color: #E8639E;
}
.page-course-template.type-voice-artists .course-head .course-head-contents:before {
  background-image: url(../images/course/voice-artists/department-illust.png);
}
.page-course-template.type-voice-artists section .box h2:after {
  background-color: #E8639E !important;
}
.page-course-template.type-voice-artists section .box h3 span:before,
.page-course-template.type-voice-artists section .box h3 span:after {
  background-color: #E8639E;
}
.page-course-template.type-voice-artists section#toc .box ul li a:after {
  border-top-color: #E8639E;
}
.page-course-template.type-voice-artists section#teacher-detail .teacher-detail-wrap .teacher-detail-item_text > b {
  border-left-color: #E8639E;
}
.page-course-template.type-voice-artists section#teacher-detail .teacher-detail-item h3 {
  color: #E8639E;
}
.page-course-template.type-voice-artists section#achievements ul.course-achievements-list li {
  background-color: rgb(232, 99, 158, .1);
}
.page-course-template.type-voice-artists section#achievements .course-supports .text h3 {
  color: #E8639E;
}
.page-course-template.type-voice-artists section#day {
  background-image: url(../images/course/voice-artists/day-background.png);
}
.page-course-template.type-voice-artists section#day .day-contents .senpai span {
  color: #E8639E;
}
.page-course-template.type-voice-artists section#day .day-contents .schedule > b {
  color: #E8639E;
}
.page-course-template.type-voice-artists section#day .day-contents .schedule .schedule-item .time {
  background-color: #E8639E;
}
.page-course-template.type-voice-artists section#day .works-list .works-list-wrap .item b {
  background-color: #E8639E;
}
.page-course-template.type-voice-artists section#day .works-list .works-list-wrap .item b:before {
  background-color: #E8639E;
}
.page-course-template.type-voice-artists .course-equipment .text h3:after {
  background-color: #E8639E;
}
.page-course-template.type-voice-artists section#expenses .expenses-table-wrap table tr td span {
  color: #E8639E;
}
.page-course-template.type-voice-artists ul.course-news-list li a .text .date {
  color: #E8639E;
}
.page-course-template.type-voice-artists section#course-news {
  background-color: #E8639E;
}
.page-course-template.type-voice-artists section#course-oc {
  background-color: rgb(232, 99, 158, .1);
}
.page-course-template.type-voice-artists section#course-oc ul.course-opencampus-list li a,
.page-course-template.type-voice-artists section#other ul.course-other-link li a {
  background-color: #E8639E;
}
.page-course-template.type-voice-artists .dep-teacher-wrap .text .department {
  background-color: #E8639E;
}
.page-course-template.type-voice-artists .dep-teacher-wrap .text .works {
  background-color: rgb(232, 99, 158, .1);
}
.page-course-template.type-voice-artists .dep-teacher-wrap .text .works b {
  color: #E8639E;
}


/* type-actor-talent-musical */
.page-course-template.type-actor-talent-musical .course-teacher-head {
  background-color: #1EB8E2;
}
.page-course-template.type-actor-talent-musical .course-head .title span {
  color: #1EB8E2;
}
.page-course-template.type-actor-talent-musical .course-head .course-head-contents .job b:before {
  background-color: #1EB8E2;
}
.page-course-template.type-actor-talent-musical .course-head .course-head-contents .job ul li:before {
  color: #1EB8E2;
}
.page-course-template.type-actor-talent-musical .course-head .course-head-contents:before {
  background-image: url(../images/course/actor-talent-musical/department-illust.png);
}
.page-course-template.type-actor-talent-musical section .box h2:after {
  background-color: #1EB8E2 !important;
}
.page-course-template.type-actor-talent-musical section .box h3 span:before,
.page-course-template.type-actor-talent-musical section .box h3 span:after {
  background-color: #1EB8E2;
}
.page-course-template.type-actor-talent-musical section#toc .box ul li a:after {
  border-top-color: #1EB8E2;
}
.page-course-template.type-actor-talent-musical section#teacher-detail .teacher-detail-wrap .teacher-detail-item_text > b {
  border-left-color: #1EB8E2;
}
.page-course-template.type-actor-talent-musical section#teacher-detail .teacher-detail-item h3 {
  color: #1EB8E2;
}
.page-course-template.type-actor-talent-musical section#achievements ul.course-achievements-list li {
  background-color: rgb(30, 184, 226, .1);
}
.page-course-template.type-actor-talent-musical section#achievements .course-supports .text h3 {
  color: #1EB8E2;
}
.page-course-template.type-actor-talent-musical section#day {
  background-image: url(../images/course/actor-talent-musical/day-background.png);
}
.page-course-template.type-actor-talent-musical section#day .day-contents .senpai span {
  color: #1EB8E2;
}
.page-course-template.type-actor-talent-musical section#day .day-contents .schedule > b {
  color: #1EB8E2;
}
.page-course-template.type-actor-talent-musical section#day .day-contents .schedule .schedule-item .time {
  background-color: #1EB8E2;
}
.page-course-template.type-actor-talent-musical section#day .works-list .works-list-wrap .item b {
  background-color: #1EB8E2;
}
.page-course-template.type-actor-talent-musical section#day .works-list .works-list-wrap .item b:before {
  background-color: #1EB8E2;
}
.page-course-template.type-actor-talent-musical .course-equipment .text h3:after {
  background-color: #1EB8E2;
}
.page-course-template.type-actor-talent-musical section#expenses .expenses-table-wrap table tr td span {
  color: #1EB8E2;
}
.page-course-template.type-actor-talent-musical ul.course-news-list li a .text .date {
  color: #1EB8E2;
}
.page-course-template.type-actor-talent-musical section#course-news {
  background-color: #1EB8E2;
}
.page-course-template.type-actor-talent-musical section#course-oc {
  background-color: rgb(30, 184, 226, .1);
}
.page-course-template.type-actor-talent-musical section#course-oc ul.course-opencampus-list li a,
.page-course-template.type-actor-talent-musical section#other ul.course-other-link li a {
  background-color: #1EB8E2;
}
.page-course-template.type-actor-talent-musical .dep-teacher-wrap .text .department {
  background-color: #1EB8E2;
}
.page-course-template.type-actor-talent-musical .dep-teacher-wrap .text .works {
  background-color: rgb(30, 184, 226, .1);
}
.page-course-template.type-actor-talent-musical .dep-teacher-wrap .text .works b {
  color: #1EB8E2;
}

/* type-video-creator */
.page-course-template.type-video-creator .course-teacher-head {
  background-color: #1BB1A0;
}
.page-course-template.type-video-creator .course-head .title span {
  color: #1BB1A0;
}
.page-course-template.type-video-creator .course-head .course-head-contents .job b:before {
  background-color: #1BB1A0;
}
.page-course-template.type-video-creator .course-head .course-head-contents .job ul li:before {
  color: #1BB1A0;
}
.page-course-template.type-video-creator .course-head .course-head-contents:before {
  background-image: url(../images/course/video-creator/department-illust.png);
}
.page-course-template.type-video-creator section .box h2:after {
  background-color: #1BB1A0 !important;
}
.page-course-template.type-video-creator section .box h3 span:before,
.page-course-template.type-video-creator section .box h3 span:after {
  background-color: #1BB1A0;
}
.page-course-template.type-video-creator section#toc .box ul li a:after {
  border-top-color: #1BB1A0;
}
.page-course-template.type-video-creator section#teacher-detail .teacher-detail-wrap .teacher-detail-item_text > b {
  border-left-color: #1BB1A0;
}
.page-course-template.type-video-creator section#teacher-detail .teacher-detail-item h3 {
  color: #1BB1A0;
}
.page-course-template.type-video-creator section#achievements ul.course-achievements-list li {
  background-color: rgb(27, 177, 160, .1);
}
.page-course-template.type-video-creator section#achievements .course-supports .text h3 {
  color: #1BB1A0;
}
.page-course-template.type-video-creator section#day {
  background-image: url(../images/course/video-creator/day-background.png);
}
.page-course-template.type-video-creator section#day .day-contents .senpai span {
  color: #1BB1A0;
}
.page-course-template.type-video-creator section#day .day-contents .schedule > b {
  color: #1BB1A0;
}
.page-course-template.type-video-creator section#day .day-contents .schedule .schedule-item .time {
  background-color: #1BB1A0;
}
.page-course-template.type-video-creator section#day .works-list .works-list-wrap .item b {
  background-color: #1BB1A0;
}
.page-course-template.type-video-creator section#day .works-list .works-list-wrap .item b:before {
  background-color: #1BB1A0;
}
.page-course-template.type-video-creator .course-equipment .text h3:after {
  background-color: #1BB1A0;
}
.page-course-template.type-video-creator section#expenses .expenses-table-wrap table tr td span {
  color: #1BB1A0;
}
.page-course-template.type-video-creator ul.course-news-list li a .text .date {
  color: #1BB1A0;
}
.page-course-template.type-video-creator section#course-news {
  background-color: #1BB1A0;
}
.page-course-template.type-video-creator section#course-oc {
  background-color: rgb(27, 177, 160, .1);
}
.page-course-template.type-video-creator section#course-oc ul.course-opencampus-list li a,
.page-course-template.type-video-creator section#other ul.course-other-link li a {
  background-color: #1BB1A0;
}
.page-course-template.type-video-creator .dep-teacher-wrap .text .department {
  background-color: #1BB1A0;
}
.page-course-template.type-video-creator .dep-teacher-wrap .text .works {
  background-color: rgb(27, 177, 160, .1);
}
.page-course-template.type-video-creator .dep-teacher-wrap .text .works b {
  color: #1BB1A0;
}


/* type-digital-content */
.page-course-template.type-digital-content .course-teacher-head {
  background-color: #13ae67;
}
.page-course-template.type-digital-content .course-head .title span {
  color: #13ae67;
}
.page-course-template.type-digital-content .course-head .course-head-contents .job b:before {
  background-color: #13ae67;
}
.page-course-template.type-digital-content .course-head .course-head-contents .job ul li:before {
  color: #13ae67;
}
.page-course-template.type-digital-content .course-head .course-head-contents:before {
  background-image: url(../images/course/digital-content/department-illust.png);
}
.page-course-template.type-digital-content section .box h2:after {
  background-color: #13ae67 !important;
}
.page-course-template.type-digital-content section .box h3 span:before,
.page-course-template.type-digital-content section .box h3 span:after {
  background-color: #13ae67;
}
.page-course-template.type-digital-content section#toc .box ul li a:after {
  border-top-color: #13ae67;
}
.page-course-template.type-digital-content section#teacher-detail .teacher-detail-wrap .teacher-detail-item_text > b {
  border-left-color: #13ae67;
}
.page-course-template.type-digital-content section#teacher-detail .teacher-detail-item h3 {
  color: #13ae67;
}
.page-course-template.type-digital-content section#achievements ul.course-achievements-list li {
  background-color: rgb(19, 174, 103, .1);
}
.page-course-template.type-digital-content section#achievements .course-supports .text h3 {
  color: #13ae67;
}
.page-course-template.type-digital-content section#day {
  background-image: url(../images/course/digital-content/day-background.png);
}
.page-course-template.type-digital-content section#day .day-contents .senpai span {
  color: #13ae67;
}
.page-course-template.type-digital-content section#day .day-contents .schedule > b {
  color: #13ae67;
}
.page-course-template.type-digital-content section#day .day-contents .schedule .schedule-item .time {
  background-color: #13ae67;
}
.page-course-template.type-digital-content section#day .works-list .works-list-wrap .item b {
  background-color: #13ae67;
}
.page-course-template.type-digital-content section#day .works-list .works-list-wrap .item b:before {
  background-color: #13ae67;
}
.page-course-template.type-digital-content .course-equipment .text h3:after {
  background-color: #13ae67;
}
.page-course-template.type-digital-content section#expenses .expenses-table-wrap table tr td span {
  color: #13ae67;
}
.page-course-template.type-digital-content ul.course-news-list li a .text .date {
  color: #13ae67;
}
.page-course-template.type-digital-content section#course-news {
  background-color: #13ae67;
}
.page-course-template.type-digital-content section#course-oc {
  background-color: rgb(19, 174, 103, .1);
}
.page-course-template.type-digital-content section#course-oc ul.course-opencampus-list li a,
.page-course-template.type-digital-content section#other ul.course-other-link li a {
  background-color: #13ae67;
}
.page-course-template.type-digital-content .dep-teacher-wrap .text .department {
  background-color: #13ae67;
}
.page-course-template.type-digital-content .dep-teacher-wrap .text .works {
  background-color: rgb(19, 174, 103, .1);
}
.page-course-template.type-digital-content .dep-teacher-wrap .text .works b {
  color: #13ae67;
}




/* type-stage-voice-staff */
.page-course-template.type-stage-voice-staff .course-teacher-head {
  background-color: #F57721;
}
.page-course-template.type-stage-voice-staff .course-head .title span {
  color: #F57721;
}
.page-course-template.type-stage-voice-staff .course-head .course-head-contents .job b:before {
  background-color: #F57721;
}
.page-course-template.type-stage-voice-staff .course-head .course-head-contents .job ul li:before {
  color: #F57721;
}
.page-course-template.type-stage-voice-staff .course-head .course-head-contents:before {
  background-image: url(../images/course/stage-voice-staff/department-illust.png);
}
.page-course-template.type-stage-voice-staff section .box h2:after {
  background-color: #F57721 !important;
}
.page-course-template.type-stage-voice-staff section .box h3 span:before,
.page-course-template.type-stage-voice-staff section .box h3 span:after {
  background-color: #F57721;
}
.page-course-template.type-stage-voice-staff section#toc .box ul li a:after {
  border-top-color: #F57721;
}
.page-course-template.type-stage-voice-staff section#teacher-detail .teacher-detail-wrap .teacher-detail-item_text > b {
  border-left-color: #F57721;
}
.page-course-template.type-stage-voice-staff section#teacher-detail .teacher-detail-item h3 {
  color: #F57721;
}
.page-course-template.type-stage-voice-staff section#achievements ul.course-achievements-list li {
  background-color: rgb(245, 119, 33, .1);
}
.page-course-template.type-stage-voice-staff section#achievements .course-supports .text h3 {
  color: #F57721;
}
.page-course-template.type-stage-voice-staff section#day {
  background-image: url(../images/course/stage-voice-staff/day-background.png);
}
.page-course-template.type-stage-voice-staff section#day .day-contents .senpai span {
  color: #F57721;
}
.page-course-template.type-stage-voice-staff section#day .day-contents .schedule > b {
  color: #F57721;
}
.page-course-template.type-stage-voice-staff section#day .day-contents .schedule .schedule-item .time {
  background-color: #F57721;
}
.page-course-template.type-stage-voice-staff section#day .works-list .works-list-wrap .item b {
  background-color: #F57721;
}
.page-course-template.type-stage-voice-staff section#day .works-list .works-list-wrap .item b:before {
  background-color: #F57721;
}
.page-course-template.type-stage-voice-staff .course-equipment .text h3:after {
  background-color: #F57721;
}
.page-course-template.type-stage-voice-staff section#expenses .expenses-table-wrap table tr td span {
  color: #F57721;
}
.page-course-template.type-stage-voice-staff ul.course-news-list li a .text .date {
  color: #F57721;
}
.page-course-template.type-stage-voice-staff section#course-news {
  background-color: #F57721;
}
.page-course-template.type-stage-voice-staff section#course-oc {
  background-color: rgb(245, 119, 33, .1);
}
.page-course-template.type-stage-voice-staff section#course-oc ul.course-opencampus-list li a,
.page-course-template.type-stage-voice-staff section#other ul.course-other-link li a {
  background-color: #F57721;
}
.page-course-template.type-stage-voice-staff .dep-teacher-wrap .text .department {
  background-color: #F57721;
}
.page-course-template.type-stage-voice-staff .dep-teacher-wrap .text .works {
  background-color: rgb(245, 119, 33, .1);
}
.page-course-template.type-stage-voice-staff .dep-teacher-wrap .text .works b {
  color: #F57721;
}




/* type-voice-event-staff */
.page-course-template.type-voice-event-staff .course-teacher-head {
  background-color: #F5A227;
}
.page-course-template.type-voice-event-staff .course-head .title span {
  color: #F5A227;
}
.page-course-template.type-voice-event-staff .course-head .course-head-contents .job b:before {
  background-color: #F5A227;
}
.page-course-template.type-voice-event-staff .course-head .course-head-contents .job ul li:before {
  color: #F5A227;
}
.page-course-template.type-voice-event-staff .course-head .course-head-contents:before {
  background-image: url(../images/course/voice-event-staff/department-illust.png);
}
.page-course-template.type-voice-event-staff section .box h2:after {
  background-color: #F5A227 !important;
}
.page-course-template.type-voice-event-staff section .box h3 span:before,
.page-course-template.type-voice-event-staff section .box h3 span:after {
  background-color: #F5A227;
}
.page-course-template.type-voice-event-staff section#toc .box ul li a:after {
  border-top-color: #F5A227;
}
.page-course-template.type-voice-event-staff section#teacher-detail .teacher-detail-wrap .teacher-detail-item_text > b {
  border-left-color: #F5A227;
}
.page-course-template.type-voice-event-staff section#teacher-detail .teacher-detail-item h3 {
  color: #F5A227;
}
.page-course-template.type-voice-event-staff section#achievements ul.course-achievements-list li {
  background-color: rgb(245, 162, 39, .1);
}
.page-course-template.type-voice-event-staff section#achievements .course-supports .text h3 {
  color: #F5A227;
}
.page-course-template.type-voice-event-staff section#day {
  background-image: url(../images/course/voice-event-staff/day-background.png);
}
.page-course-template.type-voice-event-staff section#day .day-contents .senpai span {
  color: #F5A227;
}
.page-course-template.type-voice-event-staff section#day .day-contents .schedule > b {
  color: #F5A227;
}
.page-course-template.type-voice-event-staff section#day .day-contents .schedule .schedule-item .time {
  background-color: #F5A227;
}
.page-course-template.type-voice-event-staff section#day .works-list .works-list-wrap .item b {
  background-color: #F5A227;
}
.page-course-template.type-voice-event-staff section#day .works-list .works-list-wrap .item b:before {
  background-color: #F5A227;
}
.page-course-template.type-voice-event-staff .course-equipment .text h3:after {
  background-color: #F5A227;
}
.page-course-template.type-voice-event-staff section#expenses .expenses-table-wrap table tr td span {
  color: #F5A227;
}
.page-course-template.type-voice-event-staff ul.course-news-list li a .text .date {
  color: #F5A227;
}
.page-course-template.type-voice-event-staff section#course-news {
  background-color: #F5A227;
}
.page-course-template.type-voice-event-staff section#course-oc {
  background-color: rgb(245, 162, 39, .1);
}
.page-course-template.type-voice-event-staff section#course-oc ul.course-opencampus-list li a,
.page-course-template.type-voice-event-staff section#other ul.course-other-link li a {
  background-color: #F5A227;
}
.page-course-template.type-voice-event-staff .dep-teacher-wrap .text .department {
  background-color: #F5A227;
}
.page-course-template.type-voice-event-staff .dep-teacher-wrap .text .works {
  background-color: rgb(245, 162, 39, .1);
}
.page-course-template.type-voice-event-staff .dep-teacher-wrap .text .works b {
  color: #F5A227;
}
