@charset "utf-8";

.page2 img {
  width: 100%;
}

:root {
  --title: #0086e4;
  --bg: #dff2fc;
}
.f-bold {
  font-weight: 600;
}

.page2 .title {
  margin-bottom: 10px;
}

.page2 .message {
  margin-bottom: 50px;
  display: flex;
}
.page2 .message .img-wrap {
  max-width: calc(100%*1/3);
  margin-right: 20px;
}
.page2 .message:nth-of-type(2) .img-wrap {
  max-width: 25%;
}
.page2 .message .img-wrap .img {
  margin-bottom: 10px;
}
.page2 .message .img-wrap .name {
  color: var(--title);
  font-weight: 600;
  margin-bottom: 20px;
}
.page2 .message .img-wrap .name span {
  font-size: 20px;
}
.page2 .message .img-wrap .list {
  background-color: var(--title);
  padding: 10px 5px 5px;
  border-radius: 20px;
}
.page2 .message .img-wrap .list .lead {
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 5px;
}
.page2 .message .img-wrap .list table {
  background-color: var(--bg);
  padding: 5px;
  border-radius: 20px;
  width: 100%;
}
.page2 .message .img-wrap .list table tr th {
  display: block;
  text-align: end;
  padding-right: 20px;
}
.page2 .message .text-wrap {
  max-width: calc(100%*2/3);
}
.page2 .message:nth-of-type(2) .text-wrap {
  max-width: 75%;
}
.page2 .message .text-wrap .lead {
  font-size: 20px;
    font-weight: 600;
    color: var(--title);
    margin-bottom: 10px;
}
.page2 .message .text-wrap .text .f-pink {
  color: #e5006e;
  font-weight: 600;
}
.page2 .etc {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  column-gap: 20px;
}
.page2 .etc .text .lead {
    font-size: 20px;
    font-weight: 600;
    color: #e5006e;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .page2 .message .img-wrap {
    margin-right: 10px;
  }
  .page2 .message:nth-of-type(2) .img-wrap {
    max-width: calc(100%*1/3);
  }
  .page2 .message:nth-of-type(2) .text-wrap {
    max-width: calc(100%*2/3);
  }
  .page2 .etc {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
  .page2 .etc .img {
    max-width: 250px;
  }
  .page2 .etc .text {
    order: 1;
    grid-column: 1 / -1;
  }
  .page2 .etc .sns {
    max-width: 250px;
  }
}

@media screen and (max-width: 600px) {
  .page2 .message {
    display: block;
  }
  .page2 .message .img-wrap {
    margin-right: 0;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .page2 .message:nth-of-type(2) .img-wrap {
    max-width: 100%;
  }
  .page2 .message .img-wrap .img {
    max-width: 350px;
    margin: 0 auto;
  }
  .page2 .message .text-wrap {
    max-width: 100%;
  }
  .page2 .message:nth-of-type(2) .text-wrap {
    max-width: 100%;
  }
}