@charset "utf-8";

.main_list {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 50px;
}

.main_list .item {
  flex: 0 1 calc(25% - 10px); /* 항목 너비를 25%로 지정하고 여유 공간 10px을 뺌 */
  margin-bottom: 10px; /* 각 항목 간의 간격 */
  box-sizing: border-box; /* 패딩과 보더를 포함한 전체 크기를 지정 */
  /* padding: 10px; */
  padding-bottom: 20px;
  margin: 10px 5px;
}

.main_list .item ._item_img {
  border-radius: 10px;
  height: 290px;
  background-size: cover;
  background-position: center;
}

.main_list .item ._item_txt {
  padding: 15px 10px;
}
.main_list .item ._item_txt p {
  font-weight: bold;

  color: #003c7e;
  margin-bottom: 5px;
  font-size: 15px;
}

.main_list .item ._item_txt h2 {
  font-weight: bold;
  font-size: 17px;
}

.main_list .item.item2 {
  flex: 0 1 calc(50% - 10px); /* 2칸을 차지하는 항목의 너비를 50%로 지정 */
}

.main_list .other_content {
  background-color: #f4f5f7;
  padding: 40px;
  margin-top: 20px;
  border-radius: 10px;
  position: relative;
}

.main_list .other_content.no_padding {
  padding: 0;
}
.main_list .other_content.no_padding a {
  padding: 40px;
  display: block;
  height: 100%;
}
.main_list .other_content.cursor {
  cursor: pointer;
}

.main_list .item2.other_content {
  background-color: #eeeeee;
}
.main_list .other_content h3 {
  font-size: 20px;
}
.main_list .other_content p {
  color: #999;
  font-size: 15px;
}
.display_none {
  display: none !important;
}

.other_content ._form input {
  width: 40%;
  display: inline;
  position: relative;
  border: 1px solid #eee;
  background-color: #fff;
  padding: 11px 10px;
}
.other_content ._form input._input_second {
  margin-left: -4px;
}
.other_content ._form button {
  width: 20%;
  background-color: #9b3288;
  height: 42px;
  border: none;
  color: #fff;
  margin-left: -3px;
}
.other_content ._form input._input_checkbox {
  width: auto;
  position: relative;
  top: 1px;
}
.other_content ._form {
  padding: 10px 0;
}
.other_content ._form ._input_checkbox_label {
  padding-top: 5px;
  display: inline-block;
  color: #666;
}
.other_content ._arrow_img {
  position: absolute;
  right: 40px;
  bottom: 20px;
}
._more_content {
  cursor: pointer;
}

@media (max-width: 1600px) {
  .main_list .item {
    flex: 0 1 calc(33.3333% - 10px);
  }
  .main_list .item.item2 {
    flex: 0 1 calc(33.3333% - 10px);
  }
}

@media (max-width: 1000px) {
  .main_list .item {
    flex: 0 1 calc(50% - 10px);
  }
  .main_list .item.item2 {
    flex: 0 1 calc(50% - 10px);
  }
}

@media (max-width: 700px) {
  .main_list .item {
    flex: 0 1 100%;
  }
  .main_list .item.item2 {
    flex: 0 1 100%;
  }
}
