@charset "utf-8";

.page2 img {
  width: 100%;
}

:root {
  --title: #0086e4;
  --bg: #dff2fc;
}

.page2 .title {
  margin-bottom: 10px;
}

.page2 .message {
  margin-bottom: 50px;
}
.page2 .message:nth-of-type(2) {
  display: flex;
}
.page2 .message .lead {
font-size: 20px;
    font-weight: 600;
    color: var(--title);
    margin-bottom: 10px;
}
.page2 .message .wrap {
  display: flex;
}
.page2 .message .wrap .content {
  width: calc(100%*3/4);
  display: flex;
}
.page2 .message:nth-of-type(2) .wrap .content {
  width: 100%;
}
.page2 .message .wrap .content .img{
  max-width: 300px;
  width: calc(100%*1/3);
  margin-right: 10px;
}
.page2 .message:nth-of-type(2) .wrap .content .img {
  max-width: 300px;
  width: calc(100%*1/3);
  margin-right: 0;
  margin-left: 10px;
}
.page2 .message .wrap .content .text {
  width: calc(100%*2/3);
  margin-right: 10px;
}
.page2 .message .wrap .content .text .name {
color: var(--title);
margin-bottom: 10px;
font-weight: 600;
}
.page2 .message .wrap .content .text .name span {
  font-weight: 600;
  font-size: 18px;
}
.page2 .message .wrap .list {
  background-color: var(--title);
  border-radius: 20px;
  padding: 10px 5px 5px;
  width: calc(100%*1/4);
  height: fit-content;
}
.page2 .message:nth-of-type(2) .list {
    background-color: var(--title);
  border-radius: 20px;
  padding: 10px 5px 5px;
  width: calc(100%*1/4);
  height: fit-content;
}
.page2 .message:nth-of-type(2) .list table {
  background-color: var(--bg);
      border-radius: 20px;
    padding: 5px;
    width: 100%;
}
.page2 .message:nth-of-type(2) .wrap {
  width: calc(100%*3/4);
  display: block;
  margin-left: 10px;
}
.page2 .message .wrap .list .lead {
color: #fff;
    font-weight: 600;
    text-align: center;
    font-size: 18px;
}
.page2 .message:nth-of-type(2) .list .lead {
  color: #fff;
    font-weight: 600;
    text-align: center;
    font-size: 18px;
}
.page2 .message .wrap .list table {
  background-color: var(--bg);
    border-radius: 20px;
    padding: 5px;
    width: 100%;
}
.page2 .message:nth-of-type(2) .list table, .page2 .message:nth-of-type(3) .wrap .list table {
  border-radius: 0 0 20px 20px;
}
.page2 .message .list table caption, .page2 .message .wrap .list table caption {
  background-color: var(--bg);
  border-radius: 20px 20px 0 0;
  padding: 10px 0 0 ;
  font-weight: 600;
}
.page2 .message .wrap .list table tr {
  margin-bottom: 5px;
}
.page2 .message .wrap .list table tr th {
  display: block;
}
.page2 .event .lead {
  font-size: 20px;
    font-weight: 600;
    color: var(--title);
    margin-bottom: 10px;
}
.page2 .event .img {
  display: flex;
}
.page2 .event .img figure figcaption {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width:768px) {
  .page2 .message .wrap {
    flex-direction: column;
    align-items: center;
  }
  .page2 .message .wrap .content {
    width: 100%;
    margin-bottom: 20px;
  }
  .page2 .message .wrap .list {
    width: 60%;
  }
  .page2 .message:nth-of-type(2) {
    flex-direction: column-reverse;
    align-items: center;
  }
  .page2 .message:nth-of-type(2) .list {
    width: 60%;
  }
  .page2 .message:nth-of-type(2) .wrap {
    width: 100%;
    margin-left: 0;
  }
  .page2 .event .img {
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
  }
  .page2 .event .img figure {
    margin-bottom: 20px;
  }
}