@charset "UTF-8";

:root {
  --ps-color: #2FA3F7;
}


/* --------------------------------
  reset
-------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
html {
  font-size: 100%;
}


/* --------------------------------
  body
-------------------------------- */
body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  background-color: #fff;
  color: #333;
  font-size: 1.0rem;
  font-family: sans-serif;
  line-height: 1.8;
}


/* --------------------------------
  header
-------------------------------- */
.header {
  position: relative;
  padding: 20px 0;
  text-align: center;
}
  .header h1 {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .header > h1::first-line {
    font-size: 2.125rem;
  }
  .btn {
    display: inline-block;
    width: 100%;
    margin-top: 15px;
    border: #fff;
  }
  .btn a {
    padding: 6px 20px;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 700;
    transition: all .3s;
  }
  .btn a:hover {
    padding: 6px 20px;
    background-color: #fff;
    color: var(--ps-color);
  }

.custom-shape-divider-top-1768767556 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: -1;

}

.custom-shape-divider-top-1768767556 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 200px;
}

.custom-shape-divider-top-1768767556 .shape-fill {
    fill: var(--ps-color);
}
/* --------------------------------
  footer
-------------------------------- */
.footer {
  padding: 20px 0;
  background-color: var(--ps-color);
  color: #fff;
  text-align: center;
}
  .footer > p {
    line-height: 1.0;
  }


/* --------------------------------
  main
-------------------------------- */
.container {
  display: grid;
  gap: 10px;
  width: min(92%, 1000px);
  margin: 20px auto;
  text-align: center;
}
h2 {
  font-size: 1.525rem;
  margin: 50px auto 50px;
  padding: 10px 30px;
  font-family: "Zen Kurenaido", sans-serif;
  font-weight: 900;
  font-style: normal;
  background-color: #a8d9fb;
}
.content {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 10px;
}
  .content img {
    margin-bottom: 20px;
  }
.point {
  margin-bottom: 10px;
  padding: 14px 10px 16px;
  background-color: #a8d9fb;
  border: 3px outset var(--ps-color) ;
  text-align: left;
}
  .point > ul {
    padding-left: 2.0rem;
    list-style: square;
    line-height: 1.5;
  }

@media screen and (max-width: 767px) {
  .content {
    display: block;
  }
    h2 {
      font-size: 1.125rem;
    }
    .point > ul {
      font-size: 0.875rem;
    }
}