.mainArea {
  padding: 100px 20px 0;
}

.mainArea .title {
  font-weight: 700;
  font-size: 48px;
  line-height: 57px;
  text-align: center;
  margin-top: 120px;
}

.contArea {
  max-width: 1400px;
  margin: 90px auto 40px;
  padding: 40px;
  box-sizing: border-box;
  border: 1px solid #E9EAEB;
  border-radius: 32px;
}

.txtArea h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #586063;
  margin-bottom: 24px;
}

.txtArea ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.txtArea ul li h3 {
  font-weight: 600;
  color: #586063;
  font-size: 20px;
  line-height: 24px;
  padding-bottom: 8px;
}
.txtArea ul li p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #586063;
}

.txtArea ul li p > span {
  display: block;
}


/* 드롭박스 PC */
.dropDownArea.mobile{
  display: none;
}

.dropDownArea {
  max-width: 1400px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  justify-content: flex-end;
  margin: 0 auto 138px;
  /* padding: 40px; */
  box-sizing: border-box;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #939FA4;
}

.dropDownArea::after {
  display: block;
  content: '';
  position: absolute;
}

.selectedOption {
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  box-sizing: border-box;
  border: 1px solid #B8C6CC;
  border-radius: 12px;
}

.dropDownArea .dateList {
  position: absolute;
  width: 400px;
  padding: 16px;
  box-sizing: border-box;
  right: 0;
  top: 65px;
  border: 1px solid #B8C6CC;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #fff;
  flex-direction: column;
  gap: 12px;
  display: none;
}


.dropDownArea .dateList li {
  padding: 5px 0;
}

.dropDownArea .dateList.show {
  display: flex;
}

/* 모바일 기준 998px*/
@media screen and (max-width: 998px) {
  .mainArea {
    padding: 80px 20px 0;
  }

  .mainArea .title {
    font-size: 36px;
    line-height: 43px;
    margin-top: 30px;
  }
  
  .contArea {
    max-width: 1400px;
    margin: 32px auto 40px;
    padding: 0px;
    border: none;
  }
  
  .txtArea h2 {
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 24px;
  }
  
  .txtArea ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .txtArea ul li h3 {
    font-weight: 600;
    color: #586063;
    font-size: 20px;
    line-height: 24px;
    padding-bottom: 8px;
  }
  .txtArea ul li p {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #586063;
  }
  
  .txtArea ul li p > span {
    display: block;
  }
  
  /* 드롭박스 모바일 */
  .dropDownArea {
    display: none;
  }

  .dropDownArea.mobile {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    justify-content: flex-end;
    margin:40px 0 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 21px;
  }
  
  .dropDownArea .selectedOption {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    box-sizing: border-box;
    border: 1px solid #B8C6CC;
    border-radius: 12px;
  }
  
  .dropDownArea .dateList {
    position: absolute;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    left: 0;
    top: 65px;
    border: 1px solid #B8C6CC;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px;
    display: none;
  }
}


