html {
  scroll-padding-top: 100px;
}

@media screen and (min-width: 501px) {
  .p-course {
    padding: 60px 0 120px;
  }
}
@media screen and (max-width: 500px) {
  .p-course {
    padding: 30px 0 80px;
  }
}

.p-course__mvWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
  height: 300px;
}
@media screen and (max-width: 1024px) and (min-width: 501px) {
  .p-course__mvWrap {
    height: 200px;
  }
}
@media screen and (max-width: 500px) {
  .p-course__mvWrap {
    height: 140px;
  }
}

.p-course__mvLoop {
  background: url("../img/course/mv.jpg") repeat-x center/contain;
  width: 100%;
  height: 100%;
  -webkit-animation-name: slide_voice;
          animation-name: slide_voice;
  -webkit-animation-duration: 500s;
          animation-duration: 500s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
@media screen and (max-width: 1024px) {
  .p-course__mvLoop {
    height: 200px;
    background-size: cover;
  }
}
@media screen and (max-width: 500px) {
  .p-course__mvLoop {
    height: 140px;
    background-size: cover;
  }
}

@-webkit-keyframes slide_voice {
  100% {
    background-position: -10000px 0;
  }
}

@keyframes slide_voice {
  100% {
    background-position: -10000px 0;
  }
}
.p-course__overview {
  margin-top: 137px;
}
@media screen and (max-width: 500px) {
  .p-course__overview {
    margin-top: 60px;
  }
}

.p-course__overviewWrap {
  max-width: 1080px;
}
.p-course__overviewWrap:nth-child(n+2) {
  margin-top: 100px;
}
@media screen and (max-width: 500px) {
  .p-course__overviewWrap:nth-child(n+2) {
    margin-top: 60px;
  }
}

.p-course__heading {
  position: relative;
  margin-bottom: 15px;
  padding-left: 30px;
  font-size: 30px;
  line-height: 1.46;
}
@media screen and (max-width: 500px) {
  .p-course__heading {
    padding-left: 26px;
    font-size: 24px;
  }
}
.p-course__heading:before, .p-course__heading:after {
  content: "";
  width: 10px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 500px) {
  .p-course__heading:before, .p-course__heading:after {
    width: 8px;
    height: 40px;
  }
}
.p-course__heading:before {
  background-color: #8E2247;
}
.p-course__heading:after {
  height: 12px;
  background-color: #795D01;
}
@media screen and (max-width: 500px) {
  .p-course__heading:after {
    height: 10px;
  }
}

.p-course__read {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
}
.p-course__read.--mg {
  margin-top: 20px;
}

.p-course__list {
  display: block;
  margin: 40px auto 0;
}

.p-course__item {
  display: block;
}
.p-course__item:nth-child(n+2) {
  margin-top: 40px;
}
@media screen and (max-width: 500px) {
  .p-course__item:nth-child(n+2) {
    margin-top: 20px;
  }
}

.p-course__link {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  display: block;
  border-radius: 10px;
  padding: 18px 20px 20px 35px;
  -webkit-box-shadow: 3px 3px 6px 0 rgba(51, 51, 51, 0.3);
          box-shadow: 3px 3px 6px 0 rgba(51, 51, 51, 0.3);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 500px) {
  .p-course__link {
    padding: 16px;
  }
}
.p-course__link:after {
  content: "";
  background: url("../img/common/arrow03.svg") no-repeat center/cover;
  width: 38px;
  height: 38px;
  display: block;
  position: absolute;
  right: 20px;
  bottom: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 500px) {
  .p-course__link:after {
    width: 30px;
    height: 30px;
    right: 16px;
    bottom: 16px;
  }
}
.p-course__link:hover {
  background-color: #F0F3F5;
}
.p-course__link:hover:after {
  background: url("../img/common/arrow03_hover.svg") no-repeat center/cover;
}

.p-course__pickup {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #8E2247;
  color: #fff;
  padding: 10px 20px;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  border-radius: 0 8px 0 8px;
}
@media screen and (max-width: 500px) {
  .p-course__pickup {
    padding: 5px 10px;
  }
}

.p-course__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 23px;
}
@media screen and (max-width: 500px) {
  .p-course__wrap {
    display: block;
    margin-bottom: 12px;
  }
}

.p-course__title {
  padding-right: 30px;
  font-size: 36px;
  line-height: 1.46;
}
@media screen and (max-width: 1024px) and (min-width: 501px) {
  .p-course__title {
    font-size: 32px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 500px) {
  .p-course__title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}

.p-course__min {
  margin-left: 10px;
  font-size: 30px;
}
@media screen and (max-width: 500px) {
  .p-course__min {
    font-size: 20px;
  }
}

.p-course__text {
  color: #539BBC;
  border: 1px solid #539BBC;
  background-color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  padding: 5px 15px;
  display: inline-block;
}

.p-course__pointList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% - 40px);
}

.p-course__pointItem {
  color: #795D01;
  border: 1px solid #795D01;
  background-color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  padding: 5px 15px;
  display: inline-block;
  margin-right: 15px;
}
@media screen and (max-width: 500px) {
  .p-course__pointItem {
    margin-top: 5px;
    margin-right: 10px;
  }
}