@charset "UTF-8";

.g-line {
  display: block;
  width: 100%;
  max-width: 475px;
  margin: 20px auto 0;
}

.app_point {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

  & dl {
    width: 47%;
    margin-top: 60px;
    padding-top: 420px;
    background-size: contain;
    background-repeat: no-repeat;
  }

  & dl:nth-of-type(1) {
    background-image: url(/img/app_01.jpg);
  }

  & dl:nth-of-type(2) {
    background-image: url(/img/app_02.jpg);
  }

  & dl:nth-of-type(3) {
    background-image: url(/img/app_03.jpg);
  }

  & dl:nth-of-type(4) {
    background-image: url(/img/app_04.jpg);
  }

  & dt {
    display: grid;
    padding: 10px;
    align-items: center;
    background-color: #5CB531;
    color: #fff;
    line-height: 1.5;
    text-align: center;
    font-size: 2rem;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 700;
    text-align: center;
    position: relative;
  }

  & dd {
    margin-top: 20px;
  }
}

.btn_download {
  padding: 40px;
  background-color: #fff;
  margin-bottom: 140px;

  & ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 625px;
    margin: 60px auto;
  }

  & li {
    width: 210px;
  }

  & .center {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 500;
    font-size: 1.8rem;
  }
}

.ad_error {
  background-color: #e7e7e7;
  margin-top: 50px;
  font-size: 90%;
  line-height: 1.7;
  padding: 0 0 20px 0;
  word-break: break-all;

  & strong {
    font-weight: bold;
  }

  & a {
    text-decoration: underline;
    color: #5CB531;

    &:hover {
      opacity: 0.6;
    }
  }

  & p {
    padding: 0 20px;
  }

  & ol {
    counter-reset: listnum;
    padding: 0 20px;
    margin: 10px 0;
  }

  & ol li {
    width: 100%;
    position: relative;
    padding-left: 2em;
    margin-top: 0;

    &::before {
      counter-increment: listnum;
      content: "（" counter(listnum) "）";
      position: absolute;
      left: 0;
    }
  }
}

p.ad_tit {
  background-color: #666;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.5;
  padding: 10px;
}

p.ad_tit2 {
  font-weight: bold;
  text-align: center;
  text-decoration: underline;
  margin: 30px 0 0px;
}

.how-to {
  position: relative;
  width: 100%;
  max-width: 330px;
  margin: 0 auto;

  & video {
    width: 100%;
  }
}

h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  margin-bottom: 70px;
  background-color: #5CB531;
  text-align: center;
  color: #fff;
  font-size: 2.2rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
}

@media screen and (max-width: 829px) {
  .app_point {
    margin-top: 0;

    & dl {
      width: 100%;
      margin-top: 40px;
      padding-top: 110%;
    }

    & dt {
      font-size: 1.6rem;
      padding: 15px;
    }
  }

  .btn_download {
    padding: 20px;
    margin-bottom: 70px;

    & .center {
      text-align: left;
      font-size: 1.5rem;
      line-height: 1.8;
    }

    & ul {
      width: 100%;
      justify-content: space-evenly;
      margin-top: 0;
    }

    & li {
      margin-top: 40px;
    }
  }

  h4 {
    margin-bottom: 40px;
    height: auto;
    padding: 15px;
    line-height: 1.7;
  }
}