.zenkakugo {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 400;
}

.c-btnA {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #0F96A0;
  border-radius: 5px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  padding: 27px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  position: relative;
}
.c-btnA span {
  letter-spacing: 0.1em;
  font-size: 18px;
}
.c-btnA img {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 58px;
}
@media screen and (max-width: 768px) {
  .c-btnA img {
    width: 38px;
  }
}
.c-btnA.m-type2 {
  background-color: #0F96A0;
}
.c-btnA.m-type3 {
  background-color: #DD7C1B;
}
.c-btnA.m-type4 {
  background-color: #3D8E39;
}
.c-btnA.m-type5 {
  background-color: #015495;
}
.c-btnA.m-type6 {
  background-color: #A1AA31;
}
.c-btnA.m-type-gray {
  background-color: #72839A;
  border-radius: 0;
  height: 100px;
  margin: 60px auto 0;
  width: 380px;
}
@media screen and (max-width: 768px) {
  .c-btnA.m-type-gray {
    margin: 40px auto 0;
    height: 65px;
    width: 100%;
  }
}
.c-btnA.m-type-gray span {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .c-btnA.m-type-gray span {
    font-size: 18px;
  }
}

.c-modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 999;
  cursor: pointer;
}
.c-modal-bg.is-active {
  opacity: 1;
  pointer-events: auto;
}

.c-modal {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-left: 160px;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .c-modal {
    margin-left: 0;
  }
}
.c-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
.c-modal .c-modal__inr {
  background-color: #F0FAFF;
  min-width: 610px;
  padding: 25px 25px 30px;
  border-radius: 9px;
  max-height: 90vh;
  overflow: scroll;
  position: relative;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .c-modal .c-modal__inr {
    min-width: 95vw;
  }
}
.c-modal .c-modal__inr .c-modal__close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 27px;
  height: 27px;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.c-modal .c-modal__inr .c-modal__close span {
  height: 2px;
  width: 12px;
  background-color: #707070;
  border-radius: 9999px;
  position: absolute;
  top: 50%;
  left: 50%;
}
.c-modal .c-modal__inr .c-modal__close span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal .c-modal__inr .c-modal__close span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.c-modal .c-modal__body .c-modal__header {
  background-color: #0F96A0;
  border-radius: 9999px;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 500;
  padding: 4px 38px;
  font-size: 18px;
  margin-bottom: 1.5em;
}
.c-modal .c-modal__body .c-modal__header.m-type2 {
  background-color: #DD7C1B;
}
.c-modal .c-modal__body .c-modal__header.m-type3 {
  background-color: #3D8E39;
}
.c-modal .c-modal__body .c-modal__header.m-type4 {
  background-color: #015495;
}
.c-modal .c-modal__body .c-modal__header.m-type5 {
  background-color: #A1AA31;
}
.c-modal .c-modal__body .c-modal__title {
  letter-spacing: 0.1em;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 0.5em;
}
.c-modal .c-modal__body .c-modal__list > li {
  letter-spacing: 0.1em;
  font-size: 16px;
}
.c-modal .c-modal__body .c-modal__list > li > span {
  color: #FF0000;
}
.c-modal .c-modal__body .c-modal__list > li + li {
  margin-top: 0.35em;
}
.c-modal .c-modal__body .c-btnA {
  color: #0F0D0C;
  margin: 32px auto 0;
  height: 60px;
  width: 270px;
  background-color: rgba(15, 150, 160, 0.3);
}
.c-modal .c-modal__body .c-btnA.m-type7 {
  background-color: rgba(221, 124, 27, 0.3);
}
.c-modal .c-modal__body .c-btnA.m-type8 {
  background-color: rgba(61, 142, 57, 0.3);
}
.c-modal .c-modal__body .c-btnA.m-type9 {
  background-color: rgba(1, 84, 149, 0.3);
}
.c-modal .c-modal__body .c-btnA.m-type10 {
  background-color: rgba(161, 170, 49, 0.3);
}

.area_exam-point {
  padding: 150px 12px 100px;
}
@media screen and (max-width: 768px) {
  .area_exam-point {
    padding: 113px 12px 30px;
  }
}
.area_exam-point .area_top {
  margin-bottom: 60px;
}

.exam-point__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 880px;
  margin: 0 auto;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .exam-point__list {
    gap: 8px;
  }
}
.exam-point__list .c-btnA {
  width: calc(50% - 20px);
}
@media screen and (max-width: 768px) {
  .exam-point__list .c-btnA {
    width: 100%;
  }
}

.type-content {
  margin-top: 112px;
  margin-bottom: 170PX;
}
@media screen and (max-width: 768px) {
  .type-content {
    margin-top: 60px;
    margin-bottom: 100PX;
  }
}