@charset "UTF-8";
.page-header {
  margin-bottom: 0px;
}

.certificates {
  background-color: #ffda6e;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
  padding: 50px 0;
}
.student-handbook {
  background-color: #ffda6e;
  clip-path: polygon(0 0%, 100% 5%, 100% 95%, 0 100%);
  padding: 50px 0;
}
.committee {
  background-color: #ffda6e;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
  padding: 50px 0;
}
.prevention-of-bullying {
  background-color: #ffda6e;
  clip-path: polygon(0 0%, 100% 5%, 100% 95%, 0 100%);
  padding: 50px 0;
}
.school-management-plan {
  background-color: #ffda6e;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
  padding: 50px 0;
  margin-bottom: 200px;
}

.items {
  max-width: 300px;
  width: 100%;
}

.item {
  display: flex;
  justify-content: center;
}
.item .img {
  width: 40%;
}
.item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item .text {
  width: 40%;
  background-color: #fff;
  padding: 20px 30px;
}
.item .text .card-title .en {
  display: block;
  font-family: "Passion One";
  font-size: 22px;
  font-weight: 700;
}
.item .text .card-title .ja {
  display: block;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 30px;
}
.item .description {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.item .btn {
  background-color: #000;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 10px 30px;
  position: relative;
}
.item .btn::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 18px;
  right: 18px;
}

#certificates {
  margin-bottom: 50px;
}

#certificates .items .item {
  display: block;
  margin-left: auto;
  padding: 10px;
  position: relative;
  font-size: 18px;
}

#certificates .items .item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffda6e;

  position: absolute;
  top: 20px;
  left: -20px;
}

#committee {
  margin-bottom: 50px;
}

#committee .items .item {
  display: block;
  margin-left: auto;
  padding: 10px;
  position: relative;
  font-size: 18px;
}

#committee .items .item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffda6e;

  position: absolute;
  top: 20px;
  left: -20px;
}

#financial-report {
  margin-bottom: 50px;
}

#financial-report .items .item {
  display: block;
  margin-left: auto;
  padding: 10px;
  position: relative;
  font-size: 18px;
}

#financial-report .items .item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffda6e;

  position: absolute;
  top: 20px;
  left: -20px;
}

#school-management-plan {
  margin-bottom: 50px;
}

#school-management-plan .items .item {
  display: block;
  margin-left: auto;
  padding: 10px;
  position: relative;
  font-size: 18px;
}

#school-management-plan .items .item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffda6e;

  position: absolute;
  top: 20px;
  left: -20px;
}

@media screen and (max-width: 767px) {
  .certificates {
    background-color: #ffda6e;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
    padding: 80px 0;
    margin: -10px 0 0;
  }
  .student-handbook {
    background-color: #ffda6e;
    clip-path: polygon(0 0%, 100% 5%, 100% 95%, 0 100%);
    margin: -10px 0 0px;
  }
  .committee {
    background-color: #ffda6e;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
    padding: 80px 0;
    margin: -10px 0 0;
  }
  .prevention-of-bullying {
    background-color: #ffda6e;
    clip-path: polygon(0 0%, 100% 5%, 100% 95%, 0 100%);
    margin: -10px 0 0px;
  }
  .school-management-plan {
    background-color: #ffda6e;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
    padding: 80px 0;
    margin: -10px 0 40px;
  }

  .certificates .item {
    flex-direction: column;
  }
  .student-handbook .item {
    flex-direction: column-reverse;
  }
  .committee .item {
    flex-direction: column;
  }
  .prevention-of-bullying .item {
    flex-direction: column-reverse;
  }
  .school-management-plan .item {
    flex-direction: column;
  }

  .item .img {
    width: 100%;
  }
  .item .img img {
    object-fit: contain;
  }
  .item .text {
    width: 100%;
  }
}
