@charset "UTF-8";

:root {
  --ai-color: #F79500;
}


/* --------------------------------
  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;
  }
  .sub {
    font-size: 1.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(--ai-color);
  }

.custom-shape-divider-top-1768690448 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: -1;
}

.custom-shape-divider-top-1768690448 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 180px;
}

.custom-shape-divider-top-1768690448 .shape-fill {
    fill:var(--ai-color);
}


/* --------------------------------
  footer
-------------------------------- */
.footer {
  padding: 20px 0;
  background-color: var(--ai-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.5rem;
  margin: 40px auto 50px;
  padding: 10px 30px;
  font-family: "Zen Kurenaido", sans-serif;
  font-weight: 900;
  font-style: normal;
  background-color: #f7d29b;
}
.wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}
  .wrapper > img {
    margin-bottom: 10px;
  }
  .content img {
    margin-bottom: 20px;
  }
    .point {
      margin: 50px auto;
      margin-bottom: 10px;
      padding: 14px 10px 16px;
      background-color: #f7d29b;
      border: 3px outset var(--ai-color);
      text-align: left;
    }
      .point > ul {
        padding-left: 2.0rem;
        list-style:square;
        line-height: 1.5;
      }

@media screen and (max-width: 767px) {
  .wrapper {
    display: block;
  }
    h2 {
      font-size: 1.125rem;
    }
    .point > ul {
      font-size: 0.875rem;
    }
}