@charset "utf-8";

.page2 img {
  width: 100%;
}

:root {
  --title: #0086e4;
  --bg: #dff2fc;
}

.page2 .title {
  margin-bottom: 10px;
}

.page2 .message {
  margin-bottom: 50px;
}

.page2 .message .img {
  float: left;
  width: 33.333%;
  max-width: 500px;
  margin-right: 20px;
}
.page2 .message .text-wrap {
  margin-bottom: 30px;
}
.page2 .message .text-wrap .lead {
  font-size: 20px;
  color: var(--title);
  font-weight: 600;
  margin-bottom: 20px;
}
.page2 .message .text-wrap .lead span {
  font-size: 16px;
}
.page2 .message .text-wrap .name {
  font-weight: 600;
  color: var(--title);
  margin-bottom: 10px;
}
.page2 .message .text-wrap .name span {
  font-size: 20px;
  margin-bottom: 10px;
}
.page2 .message .schedule-wrap {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
}
.page2 .message .schedule-wrap .img{
  margin-right: 20px;
  max-width: 35%;
}
.page2 .message .schedule-wrap .list {
  background-color: var(--title);
  border-radius: 20px;
  width: 60%;
  padding: 10px 5px 5px;
}
.page2 .message .schedule-wrap .list .lead {
  color: #fff;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.page2 .message .schedule-wrap .list .schedule {
  background-color: var(--bg);
  border-radius: 20px;
  padding: 10px;
  display: flex;
  justify-content: center;
}
.page2 .message .schedule-wrap .list .schedule table  {
  max-width: 50%;
}
.page2 .message .schedule-wrap .list .schedule table tr {
  display: flex;
}
.page2 .message .schedule-wrap .list .schedule table:first-of-type {
  margin-right: 20px;
}
.page2 .message .schedule-wrap .list .schedule table th {
width: 55px;
padding-right: 20px;
}
.page2 .message .schedule-wrap .list .schedule table tr:first-of-type th, .page2 .message .schedule-wrap .list .schedule table tr:last-of-type td {
  width: 100%;
}
.page2 .message .schedule-wrap .list .schedule table tr:first-of-type th {
  padding-right: 0;
  text-align: left;
}
.page2 .message .schedule-wrap .list .schedule table tr:last-of-type td {
  font-size: 14px;
}
.page2 .active .active-title {
  display: flex;
  margin-bottom: 20px;
}
.page2 .active .active-title .lead {
    font-size: 20px;
  color: var(--title);
  font-weight: 600;
  margin: 0 50px 20px 0;
}
.page2 .active .active-title table tr {
  display: flex;
}
.page2 .active .active-title table tr th {
  padding-right: 20px;
}
.page2 .active .active-title table tr td {
  padding-right: 20px;
}
.page2 .active .active-title table tr td:last-of-type {
  padding-right: 0;
}
.page2 .active .active-img {
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
}
.page2 .active .active-img figure {
  max-width: 60%;
}
.page2 .active .active-img figure figcaption {
  font-weight: 600;
}
.page2 .active .active-img .img {
  max-width: 40%;
}

@media screen and (max-width:600px) {
  .page2 .message .text-wrap .lead {
    margin-bottom: 10px;
  }
  .page2 .message .schedule-wrap {
    flex-direction: column;
    align-items: center;
  }
  .page2 .message .schedule-wrap .img {
    width: 100%;
    max-width: 500px;
    margin-right: 0;
  }
  .page2 .message .schedule-wrap .list {
    width: 80%;
  }
  .page2 .message .schedule-wrap .list .schedule {
    flex-direction: column;
  }
  .page2 .message .schedule-wrap .list .schedule table {
    max-width: 100%;
  }
  .page2 .message .schedule-wrap .list .schedule table:first-of-type {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .page2 .active .active-title {
    display: block;
  }
  .page2 .active .active-title .lead {
    margin-bottom: 10px;
  }
  .page2 .active .active-title table tr {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .page2 .active .active-title table tr th {
    width: 100%;
    text-align: left;
  }
  .page2 .active .active-img {
    display: block;
  }
  .page2 .active .active-img figure, .page2 .active .active-img .img {
    max-width: 80%;
    margin: 0 auto;
  }
}