@charset "utf-8";

table {
  border-collapse: collapse;
}

.page2 img {
  width: 100%;
}

:root {
  --title: #0086e4;
  --bg: #dff2fc;
}

.page2 .title {
  margin-bottom: 10px;
}

.page2 .message {
  margin-bottom: 50px;
}
.page2 .message:nth-last-of-type(2) {
  display: flex;
}
.page2 .message .text-wrap {
  display: flex;
  margin-bottom: 20px;
}
.page2 .message .text-wrap .img {
  width: 45%;
  margin-right: 20px;
}
.page2 .message .text-wrap .text {
  width: 50%;
}
.page2 .message .text-wrap .text .lead {
  font-size: 20px;
  font-weight: 600;
  color: var(--title);
  margin-bottom: 20px;
}
.page2 .message .text-wrap .text .name {
  color: var(--title);
  font-weight: 600;
  margin-bottom: 10px;
}
.page2 .message .text-wrap .text .name span {
  font-size: 20px;
}
.page2 .message .schedule-wrap {
  display: flex;
}
.page2 .message .schedule-wrap .list-wrap {
  width: 40%;
  margin-right: 40px;
}
.page2 .message .schedule-wrap .list {
  background-color: var(--title);
  border-radius: 20px;
  padding: 10px 5px 5px;
  height: fit-content;
}
.page2 .message .schedule-wrap .list .lead {
  color: #fff;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.page2 .message .schedule-wrap .list table {
  background-color: var(--bg);
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  display: flex;
}
.page2 .message .schedule-wrap .list table th {
  width: 55px;
  display: block;
  padding-right: 20px;
  text-align: right;
}
.page2 .message .schedule-wrap .list-wrap > p {
  font-size: 14px;
  margin-top: 5px;
}
.page2 .message .schedule-wrap > .img {
  width: 55%;
  max-width: 600px;
}
.page2 .message:nth-last-of-type(2) .list-wrap {
  width: 45%;
  margin-right: 20px;
}
.page2 .message:nth-last-of-type(2) .list-wrap .img {
  max-width: 300px;
  margin-bottom: 10px;
}
.page2 .message:nth-last-of-type(2) .list-wrap .list {
  background-color: var(--title);
  border-radius: 20px;
  padding: 10px 5px 5px
}
.page2 .message:nth-last-of-type(2) .list-wrap .list .lead {
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.page2 .message:nth-last-of-type(2) .list-wrap .list table {
  background-color: var(--bg);
  border-radius: 20px;
  padding: 20px;
  width: 100%;
}
.page2 .message:nth-last-of-type(2) .list-wrap .list table {
  display: flex;
}
.page2 .message:nth-last-of-type(2) .list-wrap .list table th {
  width: 55px;
  padding-right: 20px;
  text-align: right;
}
.page2 .message:nth-last-of-type(2) .list-wrap > p {
  font-size: 14px;
  margin-top: 5px;
}
.page2 .message:nth-last-of-type(2) .text-wrap  {
  display: block;
}
.page2 .message:nth-last-of-type(2) .text-wrap .lead {
  font-size: 20px;
  font-weight: 600;
  color: var(--title);
  margin-bottom: 20px;
}
.page2 .message:nth-last-of-type(2) .text-wrap .name {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--title);
}
.page2 .message:nth-last-of-type(2) .text-wrap .name span {
  font-size: 20px;
}
.page2 .etc .lead {
  font-size: 20px;
  font-weight: 600;
  color: var(--title);
  margin-bottom: 10px;
}
.page2 .etc .wrap {
  display: flex;
}
.page2 .etc .wrap .img {
  width: 20%;
}
.page2 .etc .wrap p {
  width: 80%;
  margin-left: 20px;
}


@media screen and (max-width:768px){
  .page2 .message:nth-last-of-type(2) {
    flex-direction: column;
  }
  .page2 .message:nth-last-of-type(2) .list-wrap {
    display: contents;
  }
  .page2 .message:nth-last-of-type(2) .list-wrap .list {
    order: 1;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
  .page2 .message:nth-last-of-type(2) .list-wrap > p {
    order: 1;
    max-width: 400px;
    margin: 5px auto 0;
  }
}

@media screen and (max-width:600px) {
  .page2 .message .text-wrap {
    display: block;
  }
  .page2 .message .text-wrap .text .lead {
    margin-bottom: 10px;
  }
  .page2 .message:nth-last-of-type(2) .text-wrap .lead {
    margin-bottom: 10px;
  }
  .page2 .message .text-wrap .img {
    margin-right: 0;
    width: 100%;
  }
.page2 .message .text-wrap .text {
  width: 100%;
}
.page2 .message .schedule-wrap {
  flex-direction: column-reverse;
}
.page2 .message .schedule-wrap .list-wrap {
  width: 80%;
  margin: 0 auto;
}
.page2 .message .schedule-wrap > .img {
  width: 100%;
}
.page2 .message:nth-last-of-type(2) .list-wrap .img {
  margin: 0 auto 10px;
}
.page2 .etc .wrap {
  display: block;
}
.page2 .etc .wrap .img {
  max-width: 400px;
  width: 100%;
  margin: 0 auto 20px;
}
.page2 .etc .wrap p {
  margin-left: 0;
  width: 100%;
}
}