section {
  overflow: hidden;
}

.notice_list {
  margin-top: 40px;
}
.notice_list > h6 {
  color: #474747;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -1.6px;
}
.notice_list > ul {
  margin-top: 20px;
  border-top: solid 2px var(--maincolor);
  border-bottom: solid 2px var(--maincolor);
}
.notice_list > ul li {
}

.notice_list > ul .pin_notice {
  background: #fffbf8;
}
.notice_list > ul li a {
  display: flex;
  justify-content: space-between;
  padding: 30px 40px;
  box-sizing: border-box;
  border-bottom: 1px solid #dbdbdb;
}
.notice_list > ul li:last-child a {
  border-bottom: 0;
}
.notice_list > ul li .left {
  display: flex;
  align-items: center;
  gap: 32px;
}
.notice_list > ul li .left > span {
  width: 88px;
  text-align: center;
  color: #303030;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.72px;
}

.notice_list > ul .pin_notice .left > span {
  color: #fff;
  background-color: var(--maincolor);
  padding: 14px 0;
  box-sizing: border-box;
  border-radius: 8px;
}
.notice_list > ul li .left > p {
  color: #474747;
  font-size: 18px;
  font-weight: 200;
  line-height: 1.6;
  letter-spacing: -0.72px;
}
.notice_list > ul li .right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.notice_list > ul li .right > p {
  color: #474747;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.6px;
}
.notice_list {
}

@media screen and (min-width: 768px) {
  .notice_list > ul li:hover {
    background-color: #ffce96;
    transition: all 0.6s;
  }
}
@media screen and (max-width: 768px) {
  .notice_list > h6 {
    font-size: 16px;
    letter-spacing: -1px;
  }
  .notice_list {
    margin-top: 20px;
  }

  .notice_list > ul li a {
    padding: 15px 10px;
  }
  .notice_list > ul li .left {
    flex: 1;
  }
  .notice_list > ul li .left > span {
    font-size: 12px;
    width: 60px;
    padding: 10px 5px;
    box-sizing: border-box;
  }
  .notice_list > ul .pin_notice .left > span {
    padding: 10px 5px;
  }
  .notice_list > ul li .left {
    gap: 15px;
  }
  .notice_list > ul li .left > p {
    font-size: 16px;
    white-space: nowrap; /* 텍스트가 한 줄로 제한 */
    overflow: hidden; /* 넘치는 텍스트 숨기기 */
    text-overflow: ellipsis; /* 넘치는 텍스트를 ... 으로 처리 */
    width: 100%; /* 부모 요소의 너비에 맞추기 */
    display: block;
    max-width: 180px;
  }
  .notice_list > ul li .right {
  }
  .notice_list > ul li .right > div {
    display: none;
  }
  .notice_list > ul li .right > p {
    font-size: 12px;
  }
}
@media screen and (max-width: 350px) {
  .notice_list > ul li .left > p {
    max-width: 100px;
  }
}
.view_cont {
  margin-top: 80px;
  padding: 80px 0;
  box-sizing: border-box;
  border-top: solid 2px var(--maincolor);
  border-bottom: solid 2px var(--maincolor);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.view_cont .text_box {
  color: #474747;
  text-align: center;
  font-size: 18px;
  font-weight: 200;
  line-height: 1.6;
  letter-spacing: -0.72px;
}
@media screen and (max-width: 768px) {
  .view_cont {
    margin-top: 40px;
    padding: 40px 0;
  }
}
.sns_list {
  margin-top: 80px;
}
.sns_list > ul {
  border-top: 1px solid #d6d6d6;
  box-sizing: border-box;
}
.sns_list > ul > li a {
  border-bottom: 1px solid #d6d6d6;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
}
.sns_list > ul > li .text_box {
}
.sns_list > ul > li .text_box h6 {
  color: #474747;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.64px;
}
.sns_list > ul > li .text_box h3 {
  color: #303030;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -1.04px;
  margin-top: 8px;
}

.sns_list > ul > li .text_box .date_box {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sns_list > ul > li .text_box .date_box p {
  color: #303030;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: -0.6px;
}

.sns_list > ul > li .img_box {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.6s;
}
@media screen and (min-width: 768px) {
  .sns_list > ul > li:hover .img_box {
    transform: translateX(-50px);
    transition: all 0.6s;
  }

  .sns_list > ul > li:hover .text_box h3 {
    color: var(--maincolor);
    transition: color 0.2s ease;
  }
}
@media screen and (max-width: 768px) {
  .sns_list {
    margin-top: 40px;
  }
  .sns_list > ul > li a {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .sns_list > ul > li .text_box {
    text-align: center;
    width: 100%;
  }
  .sns_list > ul > li .img_box img {
    max-width: 100%;
  }
  .sns_list > ul > li .text_box .date_box {
    justify-content: center;
  }
  .sns_list > ul > li .text_box h3 {
    font-size: 20px;
  }
}

.no_pay_tab {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 25px;
}
.no_pay_tab > li {
  cursor: pointer;
  color: #303030;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -1.6px;
  position: relative;
}
.no_pay_tab > li.on {
  color: var(--maincolor);
}
.no_pay_tab > li p {
}
.no_pay_tab > li::after {
  content: "|";
  position: absolute;
  top: 0;
  right: -15px;
  color: #303030;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -1.6px;
}
.no_pay_tab > li:last-child::after {
  display: none;
}
.no_pay_box {
  margin-top: 20px;
}
.no_pay_cont table {
  width: 100%;
  border-top: solid 2px var(--maincolor);
  border-bottom: solid 2px var(--maincolor);
}

.no_pay_cont table tr {
}
.no_pay_cont table th {
  border-right: solid 1px #dbdbdb;
  border-bottom: solid 1px #dbdbdb;
  color: #303030;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.8px;
  padding: 25px 5px;
  line-height: 1.3;
  box-sizing: border-box;
  background: #fffbf8;
}
.no_pay_cont table td {
  border-right: solid 1px #dbdbdb;
  border-bottom: solid 1px #dbdbdb;
  text-align: center;
  color: #303030;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.72px;
  padding: 25px 5px;
  vertical-align: middle;
}
.no_pay_cont table .first_td {
  background: #fffbf8;
  font-size: 20px;
  font-weight: 500;
  vertical-align: middle;
}
.no_pay_cont table td:last-child,
.no_pay_cont table th:last-child {
  border-right: 0;
}
.no_pay_cont table th:nth-child(1) {
  width: 15%;
}
.no_pay_cont table th:nth-child(2) {
  width: auto;
}
.no_pay_cont table th:nth-child(3) {
  width: 10%;
}
.no_pay_cont table th:nth-child(4) {
  width: 12%;
}
.no_pay_cont table td:nth-child(1) {
  width: 15%;
}
.no_pay_cont table td:nth-child(2) {
  width: auto;
}
.no_pay_cont table td:nth-child(3) {
  width: 10%;
}
.no_pay_cont table td:nth-child(4) {
  width: 12%;
}
.no_pay_cont .no_pay_tip_text {
  margin-top: 20px;
  color: #303030;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.6;
  letter-spacing: -0.64px;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .no_pay_tab > li:hover {
    color: var(--maincolor);
    transition: all 0.4s;
  }
}
@media screen and (max-width: 1020px) {
  .no_pay_cont table th:nth-child(1),
  .no_pay_cont table td:nth-child(1) {
    width: 8%;
  }
  .no_pay_cont table th:nth-child(3),
  .no_pay_cont table td:nth-child(3) {
    width: 5%;
  }
  .no_pay_cont table th:nth-child(4),
  .no_pay_cont table td:nth-child(4) {
    width: 5%;
  }
}

@media screen and (max-width: 768px) {
  .no_pay_tab {
    margin-top: 20px;
  }
  .no_pay_tab > li {
    font-size: 18px;
  }
  .no_pay_cont table .first_td,
  .no_pay_cont table th {
    font-size: 16px;
    padding: 15px 5px;
  }
  .no_pay_cont table td {
    font-size: 14px;
    padding: 15px 5px;
  }
  .no_pay_cont .no_pay_tip_text {
    font-size: 14px;
    margin-top: 10px;
  }
}

.reservation_sec {
  max-width: 1100px;
  width: 100%;
  margin: 80px auto 0;
}
.reservaton_box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form_3_box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.form_3_box li {
  width: 100%;
  flex: 1;
  border-radius: 8px;
  border: 2px solid #d6d6d6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
  box-sizing: border-box;
  gap: 15px;
}
.reservaton_box .input_title {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.72px;
  gap: 3px;
}
.reservaton_box .input_title label {
  color: #474747;
}
.reservaton_box .input_title > span {
  display: inline-block;
  color: var(--maincolor);
}
.reservaton_box .input_box {
  flex: 1;
}
.reservaton_box .input_box input[type="text"] {
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.64px;
  padding: 14px 0;
  box-sizing: border-box;
  width: 100%;
  text-align: right;
  border: none;
  outline: none;
}
.reservaton_box .input_box select {
  color: #959595;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.64px;
  padding: 14px 0;
  box-sizing: border-box;
  width: 100%;
  text-align: right;
  border: none;
  outline: none;
  pointer-events: auto;
  text-align-last: right;
}

.reservaton_box .input_box select[data-selected="true"] {
  color: var(--black); /* 값 선택 후 변경 */
}
.reservaton_box .input_box input::placeholder {
  color: #959595;
}

.reservaton_box input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
  background: #fff;
  position: relative;
  border: none;
  box-sizing: border-box;
  padding: 10px 0;
  box-sizing: border-box;
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.64px;
  text-align: right;
  text-align-last: right;
  width: 100%;
}
.reservaton_box input[type="date"]::-webkit-clear-button,
.reservaton_box input[type="date"]::-webkit-inner-spin-button {
  display: none;
}
.reservaton_box input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  color: transparent;
  right: 10px;
}
.reservaton_box input[type="date"]::before {
  content: attr(data-placeholder);
  font-family: "Pretendard-Regular";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff url("/img/community/reservation_icon.svg") no-repeat 100% 50%;
  box-sizing: border-box;
  padding: 11px 25px;
  box-sizing: border-box;
  color: #959595;
  font-family: var(--black);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.64px;
  text-align: right;
}

.reservaton_box input[type="date"]:valid::before {
  display: none;
}
.reservaton_box input[type="date"]:valid {
  font-size: 16px;
}

.reservaton_cont {
  width: 100%;
  border-radius: 8px;
  border: 2px solid #d6d6d6;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  box-sizing: border-box;
  gap: 15px;
}
.reservaton_cont .textarea_box {
  width: 100%;
  flex: 1;
}
.reservaton_cont textarea {
  width: 100%;
  display: inline-block;
  resize: none;
  min-height: 120px;
  border: none;
  outline: none;
  color: var(--black);
  font-size: 16px;
  font-weight: 200;
  line-height: 1.6;
  letter-spacing: -0.64px;
  box-sizing: border-box;
}
.reservaton_cont textarea::placeholder {
  color: #959595;
}
.form_btn_sec {
  margin-top: 40px;
}
.checkbox_layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
}
.checkbox_layout input[type="checkbox"] {
  display: none;
}

.checkbox_layout .checkmark {
  width: 20px;
  height: 20px;
  border: 1px solid #303030;
  border-radius: 4px;
  background-color: white;
  position: relative;
}

.checkbox_layout input:checked + .checkmark {
  background-color: var(--maincolor);
  border-color: var(--maincolor);
}

.checkbox_layout input + .checkmark::after,
.checkbox_layout input:checked + .checkmark::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%);
}

.checkbox_layout input + .checkmark::after {
  content: url("/img/sub/icon_checkbox_none.svg");
}

.checkbox_layout input:checked + .checkmark::after {
  content: url("/img/sub/icon_checkbox_checked.svg");
}
.checkbox_layout label {
  color: #474747;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.72px;

  cursor: pointer;
}
.checkbox_layout a {
  color: #eaa150;
  font-size: 16px;
  font-weight: 200;
  letter-spacing: -0.64px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;

  margin-left: 6px;
}
.reservation_sec .form_btn {
  max-width: 566px;
  width: 100%;
  margin: 30px auto 0;
}
.reservation_sec .form_btn > button {
  width: 100%;
  border-radius: 12px;
  background-color: var(--maincolor);
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.88px;
  text-align: center;
  padding: 13px 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}
@media screen and (max-width: 768px) {
  .reservation_sec {
    margin: 40px auto 0;
  }
  .reservaton_box {
    gap: 10px;
  }
  .form_3_box {
    flex-direction: column;
    gap: 10px;
  }
  .form_3_box li {
    padding: 0 10px;
  }
  .reservaton_cont {
    padding: 10px;
  }
  .reservaton_box .input_title {
    font-size: 14px;
    line-height: 1.3;
  }
  .reservaton_box input[type="date"] {
    height: 38px;
  }
  .reservaton_box input[type="date"]:valid,
  .reservaton_box input[type="date"],
  .reservaton_box .input_box input[type="text"],
  .reservaton_box input[type="date"]::before,
  .reservaton_box .input_box select,
  .reservaton_cont textarea,
  .checkbox_layout label,
  .checkbox_layout a {
    font-size: 14px;
    line-height: 1.3;
  }
  .form_btn_sec {
    margin-top: 20px;
  }
  .reservation_sec .form_btn > button {
    padding: 8px;
    font-size: 18px;
    line-height: 1.3;
    border-radius: 5px;
  }
  .checkbox_layout .checkmark {
    width: 16px;
    height: 16px;
  }
}
