*, *::before, *::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  overflow-y: auto;
}

section {
  min-height: 100vh;
  position: relative;
  background: #2F3D2E;
}
section.white_bg {
  background: url("../images/wave.png") no-repeat center bottom/cover #fff;
}
section.white_bg h2 {
  color: #000;
  margin-bottom: 20px;
}
section .checker_wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
section .checker_wrapper.new h4 {
  font-size: 74px;
  color: #044A72;
  text-align: center;
  margin-bottom: 40px;
  font-family: "Aldrich", sans-serif;
  font-weight: normal;
}
section .checker_wrapper.new p {
  color: #000;
  font-size: 20px;
  font-family: "Rockwell", serif;
  margin-bottom: 40px;
}
section .checker_wrapper.new p.mb-small {
  margin-bottom: 10px;
}
section .checker_wrapper.new h2 {
  color: #000;
  font-family: "Rockwell", serif;
  font-weight: normal;
}
section .logo {
  width: 270px;
  display: block;
  margin: 0 auto 40px;
}
section h2 {
  font-size: 40px;
  font-family: "Aldrich", sans-serif;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
}
section p {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  font-family: "Aldrich", sans-serif;
  padding: 0 20px;
}
section table {
  margin: 0 auto 30px;
}
section table tr td {
  font-size: 20px;
  font-family: "Aldrich", sans-serif;
  padding-bottom: 20px;
}
section table tr td:first-child {
  text-align: right;
}
section table tr td:last-child {
  text-align: left;
  padding-left: 30px;
}
section .form_box {
  width: 910px;
  margin: 0 auto 40px;
}
section .form_box input {
  width: 100%;
  height: 76px;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background: #2E2E2E;
  color: #fff;
  font-family: "Aldrich", sans-serif;
  text-align: center;
  font-size: 16px;
  padding: 0 40px;
  outline: 0;
}
section .form_box input::-moz-placeholder {
  color: white;
  opacity: 1;
}
section .form_box input::placeholder {
  color: white;
  opacity: 1;
}

.main_btn {
  width: 224px;
  height: 60px;
  border-radius: 8px;
  background: #B12A2A;
  color: #fff;
  display: block;
  margin: 0 auto 10px;
  border: none;
  font-family: "Aldrich", sans-serif;
}
.main_btn.grey_btn {
  background: #6D6D6D;
}

footer {
  background: #000 url("../images/logo_ptma_footer.png") no-repeat right top/contain;
  padding: 40px 0;
}
footer .container {
  position: relative;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
}
footer .container img {
  display: block;
  width: 100px;
  height: 120px;
}
footer .container .info_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: calc(100% - 100px);
  padding-left: 80px;
}
footer .container .info_box {
  font-size: 12px;
}
footer .container .info_box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "Aldrich";
}
footer .container .info_box a {
  display: block;
  margin-bottom: 10px;
}
footer .container .info_box p {
  font-size: 12px;
  line-height: 14px;
}
footer .container .info_box .info {
  display: flex;
  flex-wrap: wrap;
}
footer .container .info_box .info a:first-child {
  margin-right: 100px;
}

.popup_certif {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  background: rgba(0, 0, 0, 0.75);
  display: none;
}
.popup_certif .popup_box {
  position: absolute;
  width: 100%;
  max-width: 960px;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.popup_certif img {
  width: 100%;
}
.popup_certif .close_btn {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: white;
  color: #000;
  border-radius: 40px;
  position: absolute;
  top: -40px;
  right: -40px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  cursor: pointer;
}

.popup_not_found {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  display: none;
}
.popup_not_found .popup_box {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 300px;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
}
.popup_not_found .popup_box h4 {
  font-size: 24px;
  margin-bottom: 20px;
  font-family: "Aldrich", sans-serif;
}
.popup_not_found .popup_box p {
  font-size: 16px;
  margin-bottom: 20px;
  font-family: "Aldrich", sans-serif;
}
.popup_not_found .popup_box .main_btn {
  width: 200px;
  height: 40px;
  line-height: 40px;
}

@media only screen and (max-width: 1080px) {
  section {
    padding: 40px 0;
  }
  section .checker_wrapper {
    position: static;
    transform: none;
  }
  section .form_box {
    width: 100%;
    padding: 0 20px;
  }
  footer .container {
    padding: 0 40px;
  }
  footer .container .info_flex {
    justify-content: center;
  }
  footer .container .info_box {
    width: 50%;
    margin-bottom: 20px;
  }
  footer .container .info_box p {
    margin-bottom: 0;
  }
  .popup_certif .close_btn {
    width: 30px;
    height: 30px;
    line-height: 30px;
    top: -40px;
    right: 0px;
  }
  .popup_certif .popup_box {
    top: 50%;
    max-width: 90%;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 743px) {
  section .logo {
    width: 160px;
  }
  section .checker_wrapper.new h2 {
    font-size: 20px;
  }
  section .checker_wrapper.new h4 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  section .checker_wrapper.new p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  section .checker_wrapper.new p br {
    display: none;
  }
  section table tr td {
    padding: 0 10px 10px;
    font-size: 16px;
  }
  section table tr td:last-child {
    padding-left: 0px;
  }
  section .main_btn {
    width: 200px;
    height: 50px;
  }
  footer {
    background: #000 url("../../public/images/logo_ptma_footer_new.png") no-repeat right -40px bottom -40px/contain;
  }
  footer .container {
    padding: 0 20px;
    display: block;
  }
  footer .container img {
    display: block;
    margin: 0 auto 60px;
  }
  footer .container .info_flex {
    width: 100%;
    padding-left: 0;
  }
  footer .container .info_box {
    width: 100%;
    margin: 0 0 40px;
    text-align: center;
  }
  footer .container .info_box h5 {
    font-size: 16px;
  }
  footer .container .info_box .info {
    display: block;
  }
  footer .container .info_box .info a:first-child {
    margin-right: 0;
  }
}/*# sourceMappingURL=main.css.map */