@charset "utf-8";

.page2 img {
  width: 100%;
  vertical-align: bottom;
}

.page2 > .title {
  margin-bottom: 10px;
}

:root {
  --title: #0086e4;
}

.message {
  display: flex;
  margin-bottom: 50px;
}
.message:nth-of-type(2) {
  flex-direction: row-reverse;
}
.message .img {
  width: calc(100%*1/4);
  margin-right: 10px;
}
.message:nth-of-type(2) .img {
  margin-right: 0;
  margin-left: 10px;
}
.message .text {
  width: calc(100%*3/4);
}
.message .text .lead {
  font-size: 20px;
  font-weight: 600;
  color: var(--title);
  margin-bottom: 10px;
}
.message .text .name {
  color: var(--title);
  margin-bottom: 10px;
  font-weight: 600;
}

.schedule {
  max-width: 1000px;
  margin: 0 auto;
}
.schedule .lead {
  color: var(--title);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.schedule .wrap {
  display: flex;
}
.schedule .wrap .detail {
  flex: 2;
  margin-right: 10px;
}
.schedule .wrap .detail table tr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 10px;
}
.schedule .wrap .detail table tr:last-of-type {
  margin-bottom: 0;
}
.schedule .wrap .detail table tr th {
  font-weight: 600;
}
.schedule .wrap .schedule {
  display: flex;
  flex: 2;
}
.schedule .wrap .schedule .flex {
  flex: 2;
  background-color: var(--title);
  padding: 10px 5px 5px;
  border-radius: 20px;
}
.schedule .wrap .schedule .flex:first-of-type {
  margin-right: 5px;
}
.schedule .wrap .schedule .flex .title {
  margin-bottom: 5px;
  color: #fff;
  text-align: center;
  font-weight: 600;
}
.schedule .wrap .schedule .flex table {
  background-color: #dff2fc;
  padding: 10px;
  border-radius: 20px;
  width: 100%;
}
.schedule .wrap .schedule .flex table tr {
  margin-bottom: 5px;
}
.schedule .wrap .schedule .flex table tr:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width:768px) {
  .schedule {
    max-width: 500px;
  }
  .schedule .wrap {
    display: block;
  }
  .schedule .wrap .detail {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .schedule .wrap .schedule {
    display: block;
  }
  .schedule .wrap .schedule .flex {
    max-width: 350px;
    margin: 0 auto;
  }
  .schedule .wrap .schedule .flex:first-of-type {
    margin-right: auto;
    margin-bottom: 10px;
  }
}
