.bg-layer1 {
  position: relative;
}
.bg-layer1::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -100px;
  border-radius: 35px 35px 0 0;
  background-color: #E0F6F9;
  z-index: -1;
}

@media print, screen and (min-width: 880px) {
  .bg-layer1::after {
    height: 82%;
    border-radius: 70px 70px 0 0;
  }
}
.second-head {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: calc(100% - 20px);
  width: 100%;
  height: 195px;
  margin: 0 auto;
  background-image: url(../img/top_img.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 70%;
  border-radius: 35px;
  margin-bottom: 50px;
}
.second-head .h2-wrap {
  color: #fff;
}
.second-head .h2-wrap .h2-second {
  font-size: 42px;
  text-align: center;
  margin-bottom: 5px;
  text-shadow: 0 0 20px rgba(0, 59, 87, 0.8784313725);
}
.second-head .pankuzu {
  width: 100%;
  display: flex;
  justify-content: center;
}
.second-head .pankuzu li {
  color: #fff;
  font-size: 15px;
}
.second-head .pankuzu li:not(:last-of-type) {
  margin-right: 10px;
}
.second-head .pankuzu li:not(:last-of-type)::after {
  content: "";
  width: 8px;
  height: 8px;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: #fff;
  transform: translateY(-2px) rotate(45deg);
  display: inline-block;
  margin-left: 10px;
}
.second-head .pankuzu li a {
  color: #fff;
  text-decoration: underline;
}

@media print, screen and (min-width: 880px) {
  .second-head {
    height: 461px;
    max-width: calc(100% - 120px);
    border-radius: 70px;
  }
  .second-head .h2-wrap .h2-second {
    font-size: 72px;
  }
}
.content {
  width: 100%;
  background-color: #F1FCFE;
  border-radius: 35px 35px 0 0;
  padding: 60px 0 40px 0;
}
.content p {
  font-size: 17px;
}

@media print, screen and (min-width: 880px) {
  .content {
    border-radius: 76px 76px 0 0;
    padding: 100px 0;
  }
}
.h2-main {
  font-size: 25px;
  color: #1DA1B0;
  margin-bottom: 15px;
  padding-left: 33px;
  position: relative;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.h2-main::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: #3CBFCE;
  border-radius: 5px;
  left: 0;
  top: 6px;
}
.h2-main::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 17px;
  background-color: #1DA1B0;
  border-radius: 20px;
  left: 4px;
  top: 10px;
}

@media print, screen and (min-width: 880px) {
  .h2-main {
    font-size: 50px;
    padding-left: 65px;
  }
  .h2-main::before {
    width: 42px;
    height: 42px;
    top: 20px;
    border-radius: 8px;
  }
  .h2-main::after {
    width: 28px;
    height: 28px;
    left: 7px;
    top: 27px;
  }
}
.list-num {
  list-style-type: none;
  counter-reset: cnt;
}
.list-num li {
  font-size: 16px;
  text-indent: -1.4em;
  padding-left: 25px;
}
.list-num li:not(:last-of-type) {
  margin-bottom: 20px;
}
.list-num li::before {
  counter-increment: cnt;
  content: counter(cnt) ". ";
  color: #1DA1B0;
  font-size: 17px;
  font-weight: 500;
}

@media print, screen and (min-width: 880px) {
  .list-num li {
    font-size: 20px;
    padding-left: 1em;
  }
  .list-num li::before {
    font-size: 26px;
  }
}
.list-disc li {
  padding-left: 20px;
  font-size: 17px;
  position: relative;
}
.list-disc li:not(:last-of-type) {
  margin-bottom: 15px;
}
.list-disc li::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 4px;
  background-color: var(--fc3);
  top: 12px;
  left: 5px;
}

.grid-table {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 60px;
}
.grid-table dt {
  font-size: 17px;
  color: #1DA1B0;
  font-weight: 600;
  vertical-align: top;
  text-align: left;
}
.grid-table dd {
  margin-bottom: 20px;
}
.grid-table dd ul {
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr;
  padding-top: 10px;
}
.grid-table dd ul li {
  position: relative;
  font-size: 17px;
}

@media print, screen and (min-width: 880px) {
  .grid-table {
    grid-template-columns: 140px 1fr;
    gap: 40px;
  }
  .grid-table dt {
    font-size: 32px;
    text-align: right;
  }
  .grid-table dd ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }
  .grid-table dd ul li {
    font-size: 20px;
  }
}
.white-wrap {
  width: 100%;
  background-color: #fff;
  padding: 20px 10px;
  border-radius: 15px;
}

@media print, screen and (min-width: 880px) {
  .white-wrap {
    padding: 60px;
    border-radius: 45px;
  }
}
.grid-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
.grid-wrap .grid-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  padding: 15px;
  border-radius: 20px;
  border: 1px solid #99D5DC;
  box-shadow: 0 5px 0 #B0E6EC;
}
.grid-wrap .grid-content h3 {
  color: #229AA8;
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 3px;
}
.grid-wrap .grid-content .profile-wrap p {
  margin-bottom: 3px;
  font-size: 16px;
}
.grid-wrap .grid-content .hp-link {
  position: relative;
}
.grid-wrap .grid-content .hp-link a {
  color: var(--fc3);
  padding-left: 15px;
}
.grid-wrap .grid-content .hp-link a:hover {
  opacity: 0.6;
}
.grid-wrap .grid-content .hp-link::before {
  content: url(../img/hp_link_icon.png);
  position: absolute;
  top: 0;
  left: 0;
}

@media print, screen and (min-width: 470px) {
  .grid-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-wrap .grid-content .profile-wrap {
    min-height: 105px;
  }
}
@media print, screen and (min-width: 880px) {
  .grid-wrap {
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-wrap .grid-content {
    padding: 27px;
  }
  .grid-wrap .grid-content h3 {
    font-size: 26px;
    margin-bottom: 7px;
  }
  .grid-wrap .grid-content .profile-wrap {
    min-height: 126px;
  }
  .grid-wrap .grid-content .profile-wrap p {
    margin-bottom: 8px;
    font-size: 17px;
  }
}
.link-wrap .link {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--fc3);
  border-radius: 15px;
  padding: 14px;
  transition-duration: 0.2s;
  margin-bottom: 10px;
  text-align: center;
}
.link-wrap .link a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #fff;
}
.link-wrap .link a img, .link-wrap .link a p {
  float: left;
}
.link-wrap .link a img {
  height: 30px;
}
.link-wrap .link a p {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  line-height: 1.2em;
  margin-left: 10px;
}
.link-wrap .link a p br {
  display: none;
}
.link-wrap .link a .shiyakusho {
  padding: 0 15px 0 12px;
}
.link-wrap .link:hover {
  box-shadow: 4px 4px 0 rgba(29, 161, 176, 0.6156862745);
}

@media print, screen and (min-width: 491px) {
  .link-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 150px));
    gap: 12px;
  }
  .link-wrap .link {
    width: 150px;
    height: 119px;
    margin-bottom: 0;
  }
  .link-wrap .link a img, .link-wrap .link a p {
    float: none;
  }
  .link-wrap .link a img {
    height: 40px;
    margin-bottom: 5px;
  }
  .link-wrap .link a p {
    width: 100%;
    height: 41px;
    margin-left: 0;
  }
  .link-wrap .link a p br {
    display: flex;
  }
}
@media print, screen and (min-width: 880px) {
  .link-wrap {
    gap: 20px;
  }
  .link-wrap .link {
    height: 141px;
    padding: 16px;
  }
  .link-wrap .link a img {
    height: 55px;
  }
}
.dl-list {
  margin-bottom: 60px;
  display: inline-grid;
  grid-template-columns: 1fr;
  border-radius: 16px;
  border: solid 5px #e1f7fa;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.dl-list::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: solid 1px #8bd6df;
  top: 0;
  left: 0;
  border-radius: 12px;
}
.dl-list dt, .dl-list dd {
  font-size: 16px;
  padding: 9px 14px;
  border-bottom: solid 2px #F1FCFE;
}
.dl-list dt {
  font-weight: 700;
  color: var(--fc3);
}
.dl-list dd {
  background-color: #ffffff;
}

@media print, screen and (min-width: 880px) {
  .dl-list {
    grid-template-columns: 140px 1fr;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .dl-list dt, .dl-list dd {
    padding: 15px 20px;
  }
}