/* ==========================================================================
	pop
========================================================================== */
body.popFix {
  overflow: hidden;
}

.pop {
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  padding: 20px;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.pop.flex {
  display: flex;
}
.pop .popBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.pop section {
  display: none;
  position: relative;
  flex-direction: column;
  width: 450px;
  max-height: calc(100% - 40px);
  background-color: #ffffff;
  border-radius: 8px;
  overflow: auto;
  opacity: 0;
  transform: scale(0.1);
  transition: 0.3s;
}
.pop section.scale {
  opacity: 1;
  transform: scale(1);
}
.pop section.wide {
  width: 760px;
}
.pop section.flex {
  display: flex;
}
.pop section .head {
  position: relative;
  min-height: 50px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2b4ec0;
  background-image: linear-gradient(to right, #2b4ec0 0%, #1998d2 100%);
}
.pop section .head h3 {
  font-size: 24px;
  color: #ffffff;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pop section .head .btn_close {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
}
.pop section .head .btn_close img {
  width: 30%;
  transition: 0.5s;
}
.pop section .head .btn_close:hover img {
  transform: rotate(180deg);
}
.pop section .info {
  padding: 30px;
  width: 100%;
  text-align: center;
  overflow: auto;
  background-image: linear-gradient(to bottom, #ede8d2 0%, #ffffff 150px, #ffffff 100%);
}
.pop section .info p {
  font-size: 20px;
  color: #333333;
  line-height: 1.5;
  text-align: center;
}
.pop section .info p.impt {
  margin-bottom: -10px;
  font-size: 16px;
}
.pop section .info p.mb {
  margin-bottom: 30px;
}
.pop section .info span {
  display: inline;
  margin: 0 5px;
  font-size: 24px;
  color: #e20b4d;
  font-family: Arial, sans-serif;
}
.pop section .info ol {
  margin: 0;
  padding-left: 20px;
}
.pop section .info ol li {
  margin-bottom: 5px;
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  text-align: justify;
  list-style-type: decimal;
}
.pop section .info ol.disc {
  padding-left: 24px;
}
.pop section .info ol.disc li {
  list-style-type: disc;
}
.pop section .info table {
  margin-top: 15px;
  width: 100%;
  font-size: 16px;
  color: #333333;
  border-width: 1px 0 0 1px;
  border-color: #ccc;
  border-style: solid;
}
.pop section .info table th, .pop section .info table td {
  padding: 9px 5px 10px;
  line-height: 1;
  text-align: center;
  border-width: 0 1px 1px 0;
  border-color: #ccc;
  border-style: solid;
}
.pop section .info table tr:nth-child(odd) td {
  background-color: #fffaf5;
}
.pop section .info table th {
  color: #ffffff;
  line-height: 1;
  font-weight: 400;
  background-color: #2b4ec0;
}
.pop section .info table td {
  background-color: #ffffff;
}
.pop section .info .infoHead {
  margin-bottom: 20px;
  width: 100%;
}
.pop section .info .card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 10px auto 0;
  width: 90%;
}
.pop section .info .card img {
  position: relative;
  width: 48%;
  cursor: pointer;
  border-radius: 11px;
  overflow: hidden;
  transition: 0.3s;
}
.pop section .info .card img:nth-child(1), .pop section .info .card img:nth-child(2) {
  margin-bottom: 4%;
}
.pop section .info .card img:hover {
  filter: brightness(110%);
}
.pop section .info .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding-bottom: 2px;
  width: 70%;
  max-width: 250px;
  min-width: 180px;
  height: 40px;
  font-size: 18px;
  color: #ffffff;
  border-radius: 100px;
  background-color: #2b4ec0;
}
.pop section .info .btn:hover {
  background-color: #1998d2;
}
.pop section .info .btn.btnColor {
  background-color: #999999;
}
.pop section .info .btn.btnColor:hover {
  background-color: #bbbbbb;
}
.pop section .info .award {
  margin: 20px 0 10px;
  max-width: 200px;
}
.pop section .info .name {
  margin-bottom: 25px;
  font-size: 24px;
  color: #e20b4d;
  line-height: 1;
  font-weight: 500;
}
.pop section#pop_1 .info .btn {
  width: 47%;
  min-width: auto;
}
.pop section#pop_1 .info .btn:last-child {
  margin-left: 10px;
}

@media screen and (max-width: 800px) {
  .pop .popBox.wide {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .pop {
    padding: 15px;
  }
  .pop section {
    width: 100%;
  }
  .pop section .head {
    min-height: 45px;
  }
  .pop section .head h3 {
    font-size: 21px;
  }
  .pop section .head .btn_close {
    width: 45px;
    height: 45px;
  }
  .pop section .info h3 {
    font-size: 16px;
  }
  .pop section .info p, .pop section .info ol li {
    font-size: 16px;
  }
  .pop section .info p:nth-of-type(1) {
    font-size: 18px;
  }
  .pop section .info span {
    font-size: 24px;
  }
  .pop section .info table {
    font-size: 15px;
  }
  .pop section .info .infoHead {
    margin-bottom: 6vw;
  }
  .pop section .info .award {
    max-width: 180px;
  }
  .pop section .info .name {
    font-size: 22px;
  }
  .pop section .info .btn {
    height: 36px;
    font-size: 16px;
  }
}/*# sourceMappingURL=pop.css.map */