.popup_two{
  background: rgba(0,0,0,0.85);
  width: 100vw;
  height: 100%;
  position: fixed;
  z-index: 1000;
  overflow: auto;
  display: none;
}

.popup_two > div{
  position: absolute;
  width: 840px;
  padding: 30px 80px;
  border-radius: 20px;
  background-color: #fff;
  top: 70px;
  left: calc(50% - 500px);
  text-align: center;
}

.popup_two .popup__title{
  color: #ea7e1d;
  font-size: 35px;
}
.popup_two .popup__subtitle{
  color: #ea7e1d;
  font-size: 18px;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 20px;
}

.popup_two .popup__section {
  display: flex;
  align-items: flex-start;
}

.popup_two .popup__section:not(:last-child) {
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 20px;
}

.popup_two .popup__section:last-child {
  align-items: center;
}

.popup_two .popup__section img {
  width: 60px;
  height: 100px;
  margin-right: 30px;
}

.popup_two .popup__section-title {
  color: #ff6d80;
  font-weight: 600;
  font-size: 20px;
  text-align: left;
  margin-bottom: 5px;
}

.popup_two .popup__section-text {
  color: #1a1a1a;
  font-size: 18px;
  text-align: left;
  margin-bottom: 20px;
}

.popup_two .popup__list {
  margin-bottom: 20px;
}

.popup_two .popup__list-title {
  display: flex;
  margin-bottom: 10px;
}

.popup_two .popup__list-title img{
  width: 23px;
  height: 23px;
  margin-right: 10px;
}

.popup_two .popup__list-title p{
  color: #52a8f2;
  font-size: 16px;
  font-weight: 600;
}

.popup_two .popup__list-content {
  color: #666666;
  font-size: 16px;
  line-height: 26px;
  text-align: left
}

.popup_two .popup__list-content ol{
  list-style: decimal;
  list-style-position: inside;
}

.popup_two .popup__link{
  color: #ea7e1d;
  margin-left: 5px;
  text-decoration: underline;
}

.popup_two .popup__list-items{
  display: flex;
  margin-top: 5px;
}

.popup_two .popup__list-item:first-child {
  margin-right: 40px;
}

.popup_two .item__title {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 1px;
  font-weight: 600;
}

.popup_two .item__list {
  list-style: disc;
  margin-left: 16px;
}

.popup_two .popup__list-note {
  margin-top: 5px;
  color:#999999;
  font-size: 14px;
}
@media screen and (max-width:1100px){
  .evp1but a {
    padding: 10px 35px 10px 25px
  }
}

@media screen and (max-width:1050px){
  .popup_two > div{
    width: calc(80% - 40px);
    padding: 20px 20px 0 20px;
    left: 10%;
  }

  .popup_two .popup__list-item:first-child {
    margin-right: 20px;
  }
}

@media screen and (max-width:800px){
  .popup_two > div{
    width: calc(90% - 40px);
    left: 5%;
  }
  .popup_two .popup__section {
    flex-direction: column;
    align-items: center;
  }

  .popup_two .popup__section > img {
    margin-bottom: 12px;
    margin-right: 0px;
  }

  .popup_two .popup__list-title {
    margin-bottom: 8px;
  }
  
  .popup_two .popup__list-items{
    flex-direction: column;
    justify-content: center;
  }

  .popup_two .popup__list-item:first-child {
    margin-right: 0;
    margin-bottom: 20px;
  }
}