@charset "UTF-8";
.c_box {
  margin: 4em auto;
  position: relative;
}
.c_box .c_title span {
  background-color: #6699cc;
}
.c_box .s_5 {
  position: absolute;
  right: 0;
  top: 30px;
  width: 145px;
}

#schedule {
  display: grid;
  grid-template-columns: repeat(2, 48%);
  justify-content: space-between;
  row-gap: 2em;
  max-width: 800px;
  margin: 4em auto;
}
#schedule .schedule {
  display: grid;
  grid-template-columns: minmax(0, 30%) minmax(0, 70%);
  justify-content: center;
  line-height: 3em;
  color: black;
  row-gap: 0.5em;
  text-align: center;
}
#schedule .schedule .time {
  background-color: darkorange;
  position: relative;
}
#schedule .schedule .time::before {
  content: "▼";
  width: 1em;
  height: 1em;
  position: absolute;
  left: 45%;
  bottom: 0;
  color: #000;
  z-index: 2;
}
#schedule .schedule .time:nth-last-of-type(2)::before {
  content: "";
}
#schedule .schedule .todo {
  background-color: white;
  border-bottom: 1px solid #000;
}
#schedule .img {
  display: grid;
  row-gap: 1em;
}
#schedule .img img {
  max-height: 150px;
  width: auto;
}
#schedule .img img:nth-child(odd) {
  justify-self: left;
}
#schedule .img img:nth-child(even) {
  justify-self: right;
}

.features {
  border: 2px solid #fe6c6c;
  border-radius: 10px;
  overflow: hidden;
  max-width: 600px;
  margin: auto;
}
.features .features_title {
  background-color: #fe6c6c;
  color: white;
  text-align: center;
}
.features .features_title h2 {
  line-height: 2em;
}
.features .features_text {
  background-color: #fff;
  padding: 1em;
}
.features .features_text ul {
  display: block;
  margin: auto;
  margin-bottom: 1em;
}
.features .features_text ul li {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  margin-bottom: 0.5em;
}
.features .features_text ul li span {
  color: #343434;
}
.features .features_text ul li .p1 {
  width: 1em;
  height: 1em;
  background-color: #fe6c6c;
}
.features .features_text .caution {
  text-align: right;
  color: #868686;
  display: block;
  width: 100%;
}
.features .features_text .caution .red {
  color: #fe6c6c;
}/*# sourceMappingURL=lifes.css.map */