@charset "utf-8";

.page2 img {
  width: 100%;
}

:root {
  --title: #0086e4;
  --bg: #dff2fc;
}

.page2 .title {
  margin-bottom: 10px;
}

.page2 .message {
  margin-bottom: 50px;
}
.page2 .message .lead {
  font-size: 20px;
    font-weight: 600;
    color: var(--title);
    margin-bottom: 10px;
}
.page2 .message .text-wrap {
  margin-bottom: 20px;
  display: flex;
}
.page2 .message .text-wrap .img {
  max-width: 33.333%;
  margin-right: 20px;
}
.page2 .message .text-wrap .text {
  max-width: 66.666%;
}
.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 .list {
  background-color: var(--title);
  padding: 10px 5px 5px;
  border-radius: 20px;
}
.page2 .message .list .lead {
  color: #fff;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.page2 .message .list .table {
  background-color: var(--bg);
  padding: 10px;
  border-radius: 20px;
}
.page2 .message .list .table p {
  padding-left: 5px;
}
.page2 .message .list .table table th {
  width: 55px;
  display: block;
  padding-right: 30px 20px;
}
.page2 .message:last-of-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.page2 .message:last-of-type figure figcaption {
  text-align: center;
  font-weight: 600;
}
.page2 .message:last-of-type figure:nth-child(3),.page2 .message:last-of-type figure:nth-child(4) {
  margin-bottom: 20px;
}
.page2 .message:last-of-type div >p {
  font-size: 24px;
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
}
.page2 .message:last-of-type div>p span {
  font-size: 36px;
  color: #e60012;
}
.page2 .message:last-of-type .license {
  max-width: 200px;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  .page2 .message:last-of-type {
    grid-template-columns: 1fr;
  }
  .page2 .message:last-of-type figure:nth-child(3) {
  margin-bottom: 0;
}
.page2 .message:last-of-type > div {
  margin-bottom: 20px;
}
}