@charset "utf-8";

.page2 img {
  width: 100%;
}

:root {
  --title: #0086e4;
  --bg: #dff2fc;
}

.f-bold {
  font-weight: 600;
}

div > h3 {
  font-size: 1rem;
}

.page2 .title {
  margin-bottom: 10px;
}

.page2 .message {
  margin-bottom: 50px;
  display: flex;
}
.page2 .message .lead {
  font-size: 20px;
    font-weight: 600;
    color: var(--title);
    margin-bottom: 10px;
}
.page2 .message .name-wrap {
  margin-right: 20px;
  width: 33.333%;
}
.page2 .message .name-wrap .name {
  font-weight: 600;
  color: var(--title);
}
.page2 .message .name-wrap .name span {
  font-size: 20px;
}
.page2 .message .text-wrap {
  width: 66.666%;
}
.page2 .message .text-wrap .lead {
  font-size: 20px;
  font-weight: 600;
  color: var(--title);
  margin-bottom: 10px;
}
.page2 .message .text-wrap .name {
  color: var(--title);
  font-weight: 600;
}
.page2 .message .text-wrap .name span {
  font-size: 20px;
}
.page2 .message > .img {
  width: 33.333%;
  margin-right: 20px;
}
.page2 .license {
  border: 2px solid var(--title);
  border-radius: 20px;
  padding: 10px;
  max-width: 800px;
  margin: 0 auto 50px;
}
.page2 .license .lead {
  font-weight: 600;
  font-size: 18px;
}
.page2 .license .wrap {
  display: flex;
}
.page2 .license .wrap .text {
  max-width: calc(100%*4/5);
}
.page2 .license .wrap .text p:last-of-type {
  color: #e60012;
  font-weight: 600;
}
.page2 .license .wrap .img {
  max-width: calc(100%*1/5);
}
.page2 .status {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.page2 .status figure figcaption {
  text-align: center;
  font-weight: 600;

}

@media screen and (max-width:768px) {
  .page2 .status {
    gap: 20px;
  }
}

@media screen and (max-width:600px) {
  .page2 .message {
    display: block;
  }
  .page2 .message .name-wrap {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }
  .page2 .message .text-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .page2 .message .text-wrap .lead {
    margin-bottom: 0;
  }
  .page2 .message > .img {
    width: 100%;
    margin-right: 0;
  }
  .page2 .message .text-wrap .name {
    order: -1;
    margin-bottom: 10px;
  }
  .page2 .license .wrap {
    flex-direction: column;
    align-items: end;
  }
  .page2 .license .wrap .text {
    max-width: 100%;
    margin-bottom: 10px;
  }
  .page2 .license .wrap .img {
    max-width: 40%;
  }
  .page2 .status {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
}