@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
.ttl-page {
  display: block;
  aspect-ratio: 72/21;
  position: relative;
  margin: 0 auto -24rem auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .ttl-page {
    aspect-ratio: 1/1;
  }
}
.ttl-page__img {
  background-image: url(../img/ttl-example.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .ttl-page__img {
    background-position: left 35%;
    background-size: auto;
    transform: scale(1.5) rotate(7deg) translateX(-10%);
    border: 1px solid #000;
  }
}
.ttl-page__txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -115%);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  padding: 5rem 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ttl-page__txt {
    font-size: 3.2rem;
    width: 100%;
    transform: translate(-50%, -130%);
  }
}
.ttl-page__illust {
  position: absolute;
  top: 2vw;
  right: 15vw;
  width: 10vw;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .ttl-page__illust {
    top: 21vw;
    right: 6vw;
    width: 15vw;
  }
}

.col-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem 8rem;
  margin-bottom: 3rem;
}

.col-4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 4rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .col-4 {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem 2rem;
  }
}

.ttl-sentence {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 6rem auto 4rem auto;
  padding: 1.4rem 0;
  border-top: 1px solid #26A647;
  border-bottom: 1px solid #26A647;
}

.ttl-block {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 3rem auto 1.5rem auto;
  padding: 1rem 1.5rem;
  background-color: rgba(204, 204, 204, 0.4);
  border-radius: 1rem;
}

.ttl-parts {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 3rem auto 1.5rem auto;
  padding: 0 0 0.5rem 0;
  color: #26A647;
  border-bottom: 1px solid #26A647;
}

.certificate {
  background-color: #fff;
  border: 1px solid #CCC;
  padding: 2rem 3.5rem;
  margin-top: 4rem;
  border-radius: 1rem;
}

.list-parts {
  background-color: #fff;
  border: 1px solid #CCC;
  padding: 2rem 2rem 2rem 4.5rem;
  border-radius: 1rem;
  list-style-type: none;
}
.list-parts li, .list-parts p {
  position: relative;
}
.list-parts li::before, .list-parts p::before {
  position: absolute;
  top: 0.4rem;
  left: -2rem;
  content: "●";
  color: #26A647;
  font-size: 1.2rem;
}

.figure-example {
  margin: 0;
}
.figure-example img {
  border-radius: 1rem;
  overflow: hidden;
  width: 100%;
}
.figure-example figcaption {
  display: block;
  margin-top: 1rem;
  line-height: 1.5;
}

.cap-box {
  width: 100%;
  background-color: #fff;
  margin: 3rem auto;
  padding: 2rem 4rem;
  border-radius: 1rem;
  position: relative;
  box-shadow: 0.4rem 0.4rem 0.8rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 900px) {
  .cap-box {
    margin: 2rem 0;
    padding: 2rem;
  }
}

.cap-box-ttl {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 900px) {
  .cap-box-ttl {
    text-align: left;
  }
}

.caplink {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  padding-left: 0;
  list-style-type: none;
}
.caplink li {
  text-align: center;
}
.caplink li a {
  display: block;
  border: 1px solid #26A647;
  border-radius: 3rem;
  padding: 0.5rem;
  color: #26A647;
  font-weight: 500;
  background-color: #fff;
}
.caplink li a:hover {
  background-color: #C9E8AF;
}

.example-certificate-cut {
  position: absolute;
  top: -7rem;
  right: 6rem;
  width: 15rem;
}
@media screen and (max-width: 768px) {
  .example-certificate-cut {
    top: -4rem;
    right: 0rem;
    width: 9rem;
  }
}

.example-outdated-cut {
  position: absolute;
  top: -3rem;
  right: 50%;
  transform: translateX(300%);
  width: 15rem;
}
@media screen and (max-width: 768px) {
  .example-outdated-cut {
    top: -3rem;
    transform: translateX(220%);
    width: 9rem;
  }
}/*# sourceMappingURL=example.css.map */