/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
.schedule_list {}
.schedule_list > li {
  text-align: left;
  padding: 15px 0;
  border-bottom: 1px dotted #333;
}
.schedule_list ul {}
.schedule_list ul li {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  padding: 5px 0;
}
.schedule_list ul li dt {
  width: 65px;
  color: #fff;
  text-align: center;
}
.schedule_list ul li dt span {
  background: #f76f77;
  display: block;
}
.schedule_list ul li dd {
  width: calc(100% - 80px);
}
.schedule_btn {
  text-align: center;
  margin: 1em auto 0;
}
.schedule_btn a {
  position: relative;
  display: inline-block;
  padding: 7px 0px;
  width: 210px;
  background: #7d7d7d;
  color: #fff !important;
  border-radius: 30px;
  text-align: center;
  margin: 0.5em auto 0;
  transition: all 0.3s ease;
}
.schedule_btn a:hover {
  background: #f76f77;
}
.schedule_btn a::before {
  position: absolute;
  content: '\f054';
  font-family: FontAwesome;
  font-weight: 400;
  color: #fff;
  font-size: 1.2rem;
  top: 50%;
  right: 10px;
  transform: translate(0%, -50%);
  transition: all 0.3s ease;
}
.schedule_btn a:hover::before {
  right: 5px;
}
.schedule_btn a.reverse {
  background: #f76f77;
}
.schedule_btn a.reverse:hover {
  filter: brightness(1.2);
}
.schedule_ttl {
  text-align: left;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
  padding: 0 0 10px;
  border-bottom: 1px dotted #333;
}
.schedule_entry {
  text-align: left;
  margin: 1em auto 0;
}
.schedule_entry li {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  padding: 5px 0;
}
.schedule_entry li dt {
  width: 65px;
  color: #fff;
  text-align: center;
}
.schedule_entry li dt span {
  background: #f76f77;
  display: block;
}
.schedule_entry li dd {
  width: calc(100% - 80px);
}
  .schedule_entry p{

margin-bottom: 20px;
  }
.entry-body a {
  word-break: break-all;       /* 単語の途中でも改行 */
  overflow-wrap: anywhere;     /* よりモダンなブラウザ対応 */
}

/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  .schedule_list > li {
    padding: 20px 0;
  }
  .schedule_list ul {}
  .schedule_list ul li {
    padding: 5px 0;
  }
  .schedule_list ul li dt {
    width: 80px;
  }
  .schedule_list ul li dd {
    width: calc(100% - 100px);
  }
  .schedule_btn {
    text-align: right;
    margin: 1em auto 0;
  }
  .schedule_btn.center {
    text-align: center;
    margin: 2em auto 0;
  }
  .schedule_btn.center a {
    margin: 0 5px;
    width: 250px;
  }
  .schedule_ttl {
    font-size: 2.3rem;
  }
  .schedule_entry {
    text-align: left;
    margin: 2em auto 0;
  }
  .schedule_entry li dt {
    width: 90px;
  }
  .schedule_entry li dd {
    width: calc(100% - 110px);
  }
}