/*
.detailBox
---------------------------*/
.detailBox {
  background-color: #fff;
  border-radius: 10px;
}
.detailBox + .detailBox {
  margin-top: 20px;
}
.detailBox .contentName {
  position: relative;
  font-size: 16px;
  background-color: #E73079;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.05em;
  font-family: "Noto Sans JP", sans-serif;
  padding: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.detailBox .detailBoxInner {
  padding: 15px 4%;
}
.detailBox .detailBoxInner p + p {
  padding-top: 10px;
}
.detailBox .imageBox {
  text-align: center;
}
.detailBox .imageBox img {
  border-radius: 10px;
}
.detailBox .btnWrap {
  text-align: center;
  padding-top: 15px;
}
@media (min-width: 768px) {
  .detailBox {
    border-radius: 20px;
  }
  .detailBox.wideType {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .detailBox.wideType > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .detailBox.wideType .detailText {
    width: 60%;
  }
  .detailBox.wideType .imageBox {
    width: 45%;
  }
  .detailBox.wideType .contentName {
    position: relative;
    width: 90%;
    border-top-right-radius: 0;
    z-index: 1;
  }
  .detailBox.wideType .contentName.type02:before {
    height: 99%;
  }
  .detailBox.wideType .contentName:before {
    display: block;
    position: absolute;
    width: 60px;
    right: -35px;
    top: 0;
    bottom: 0;
    content: "";
    background-color: #E73079;
    border-bottom-right-radius: 10px;
    margin: auto;
    -webkit-transform: skew(-20deg);
            transform: skew(-20deg);
    z-index: -1;
  }
  .detailBox.wideType .btnWrap {
    text-align: left;
  }
  .detailBox + .detailBox {
    margin-top: 30px;
  }
  .detailBox .imageBox img {
    border-radius: 20px;
  }
  .detailBox .btnWrap {
    padding-top: 30px;
  }
}
@media (min-width: 1000px) {
  .detailBox .detailBoxInner {
    padding: 30px;
  }
  .detailBox .contentName {
    font-size: 24px;
    padding: 10px 20px;
  }
}

.bgContent {
  background-image: url(../img/program/content-bg.jpg);
  background-color: #B1D4F0;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding-bottom: 40px;
}
@media (min-width: 1000px) {
  .bgContent {
    padding-bottom: 100px;
  }
}

.contentWrap {
  padding: 30px 4.8% 0;
}
.contentWrap .inner02 {
  padding: 0;
}
.contentWrap .inner02 #contentInner {
  position: relative;
  padding: 20px 5%;
  margin-bottom: 40px;
  background-color: #ffffff;
}
.contentWrap .inner02 #contentInner h2 {
  margin-bottom: 20px;
}
@media (min-width: 1000px) {
  .contentWrap {
    padding: 0;
    margin: 100px 0 0;
  }
  .contentWrap .inner02 #contentInner {
    padding: 40px 50px;
    margin-bottom: 80px;
  }
  .contentWrap .inner02 #contentInner h2 {
    margin-bottom: 40px;
  }
}
.contentWrap section.genreContainer {
  position: relative;
  border: 2px solid #231815;
}
@media (min-width: 1000px) {
  .contentWrap section.genreContainer {
    border: 3px solid #231815;
  }
}
.contentWrap section.genreContainer::after {
  position: absolute;
  content: "";
  bottom: -25px;
  right: -21px;
  width: 0;
  height: 0;
  border-top: 19px solid #ffffff;
  border-right: 19px solid transparent;
  border-bottom: 19px solid transparent;
  border-left: 19px solid transparent;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 1000px) {
  .contentWrap section.genreContainer::after {
    bottom: -26px;
    right: -23px;
  }
}
.contentWrap section.genreContainer::before {
  position: absolute;
  content: "";
  bottom: -19px;
  right: -17px;
  width: 0;
  height: 0;
  border-top: 17px solid #000000;
  border-right: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 17px solid transparent;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 1000px) {
  .contentWrap section.genreContainer::before {
    bottom: -22px;
    right: -22px;
    width: 0;
    height: 0;
    border-top: 19px solid #000000;
    border-right: 19px solid transparent;
    border-bottom: 19px solid transparent;
    border-left: 19px solid transparent;
  }
}
.contentWrap section.genreContainer:not(:last-of-type) {
  margin-bottom: 45px;
}
.contentWrap section h3 {
  padding: 5%;
  background-color: rgba(225, 234, 152, 0.5);
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}
@media (min-width: 1000px) {
  .contentWrap section h3 {
    padding: 16px 0;
    font-size: 24px;
  }
}
.contentWrap section .contentsContainer {
  padding: 10% 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1000px) {
  .contentWrap section .contentsContainer {
    padding: 0;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
  }
}
.contentWrap section .textContainer {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 1000px) {
  .contentWrap section .textContainer {
    width: 65%;
    margin-bottom: 0;
    padding: 4% 0 4% 2%;
  }
}
.contentWrap section .textContainer h3 {
  width: 100%;
  font-size: 24px;
  letter-spacing: 0.05em;
}
.contentWrap section .textContainer h4 {
  position: relative;
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: bold;
}
@media (min-width: 1000px) {
  .contentWrap section .textContainer h4 {
    font-size: 22px;
  }
}
.contentWrap section .textContainer h4::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  content: "";
  background: url("/../img/program/border01.svg");
  background-repeat: repeat-x;
  height: 7px;
  width: 100%;
}
@media (min-width: 1000px) {
  .contentWrap section .textContainer h4::after {
    height: 9px;
  }
}
.contentWrap section .textContainer h4 span {
  padding-right: 4px;
  background-color: #ff0000;
  color: #ffffff;
  font-size: 0.8em;
  font-weight: bold;
}
.contentWrap section .textContainer p {
  width: 100%;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}
@media (min-width: 1000px) {
  .contentWrap section .textContainer p {
    font-size: 16px;
  }
}
.contentWrap section .textContainer p .em {
  color: #E60012;
}
.contentWrap section .textContainer .information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contentWrap section a.btn {
  position: relative;
  height: 40px;
  width: 153px;
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e1ea98;
  color: #000000;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
}
@media (min-width: 1000px) {
  .contentWrap section a.btn {
    height: 55px;
    width: 203px;
    padding-left: 20px;
    font-size: 20px;
  }
}
.contentWrap section a.btn:hover {
  opacity: 1;
}
.contentWrap section a.btn::after {
  position: absolute;
  left: 12px;
  content: "";
  background: url("/../img/common/arrow04.svg");
  background-repeat: no-repeat;
  height: 20px;
  width: 18px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (min-width: 1000px) {
  .contentWrap section a.btn::after {
    left: 18px;
    height: 25px;
    width: 21px;
  }
}
.contentWrap section a.btn:hover::after {
  left: 17px;
}
@media (min-width: 1000px) {
  .contentWrap section a.btn:hover::after {
    left: 23px;
  }
}
.contentWrap section a.btn::before {
  content: unset;
}
.contentWrap section .imageContainer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1000px) {
  .contentWrap section .imageContainer {
    width: 35%;
    padding: 0 2%;
  }
}
.contentWrap section .imageContainer img {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 15px;
}
.contentWrap section.genreContainer.twoColumn section {
  position: relative;
}
.contentWrap section.genreContainer.twoColumn section::after {
  position: absolute;
  bottom: -3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  background: url("/../img/program/dotted02.svg");
  background-repeat: repeat-x;
  background-size: 8px 3px;
  height: 5px;
  width: 94%;
}
.contentWrap section.genreContainer.twoColumn section:last-of-type::after {
  content: none;
}
.contentWrap section.genreContainer.threeColumn > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1000px) {
  .contentWrap section.genreContainer.threeColumn > div {
    padding: 4% 2%;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.contentWrap section.genreContainer.threeColumn .contentsContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contentWrap section.genreContainer.threeColumn .contentsContainer:not(:last-of-type) {
  position: relative;
}
.contentWrap section.genreContainer.threeColumn .contentsContainer:not(:last-of-type)::after {
  position: absolute;
  bottom: -3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  background: url("/../img/program/dotted02.svg");
  background-repeat: repeat-x;
  background-size: 8px 3px;
  height: 5px;
  width: 94%;
}
@media (min-width: 1000px) {
  .contentWrap section.genreContainer.threeColumn .contentsContainer:not(:last-of-type)::after {
    top: 2%;
    right: -5px;
    bottom: unset;
    left: unset;
    content: "";
    background: url("/../img/program/dotted02.svg");
    background-repeat: repeat-y;
    background-size: 3px 8px;
    height: 100%;
    width: 5px;
  }
}
@media (min-width: 1000px) {
  .contentWrap section.genreContainer.threeColumn .textContainer {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 0;
    padding: 4% 0 10% 0;
  }
}
@media (min-width: 1000px) {
  .contentWrap section.genreContainer.threeColumn .textContainer h4::after {
    height: 8px;
    background: url("/../img/program/border02.svg");
  }
}
@media (min-width: 1000px) {
  .contentWrap section.genreContainer.threeColumn .imageContainer {
    width: 90%;
    margin: 0 auto;
  }
}/*# sourceMappingURL=program.css.map */