@charset "UTF-8";
/* ▼▼▼ 1日の流れ
====================================================== */
/* timeline
----------------------------------------*/
.sub_ttl {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .sub_ttl {
    margin-bottom: 30px;
  }
}

.timeline_list li {
  display: grid;
  grid-template-columns: 20% 1fr;
  gap: 0 50px;
}
@media screen and (max-width: 767px) {
  .timeline_list li {
    grid-template-columns: 100px 1fr;
    gap: 20px;
  }
}
.timeline_list li:not(:last-child) {
  margin-bottom: 90px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .timeline_list li:not(:last-child) {
    margin-bottom: 70px;
  }
}
.timeline_list li:not(:last-child)::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 35px 0 35px;
  border-color: #009856 transparent transparent transparent;
  position: absolute;
  -webkit-transform: translatex(-50%);
          transform: translatex(-50%);
  left: 50%;
  bottom: -63px;
}
@media screen and (max-width: 767px) {
  .timeline_list li:not(:last-child)::after {
    border-width: 20px 25px 0 25px;
    bottom: -50px;
  }
}
.timeline_list li .img img {
  border-radius: 10px;
}
.timeline_list li .time {
  display: inline-block;
  background: url(../img/schedule/icon_time.svg) no-repeat left 10px top 55%/24px, #009856;
  border-radius: 5px;
  padding: 10px 15px 10px 43px;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .timeline_list li .time {
    background-position: left 5px top 7px;
    background-size: 20px;
    padding: 8px 10px 8px 30px;
    margin-bottom: 10px;
    font-size: 14px;
  }
}
.timeline_list li .txt {
  line-height: 1.8;
}