.opacity img {
position: absolute; top: 0; left: 0; width: 100%; height: auto; opacity: 0.8; z-index: -1;
}

.tab_menu {
  display: flex;
  align-items: center;
  gap: 50px;
  border-bottom: 1px solid #d5d5d5;
}
.tab_menu li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 24px 10px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.6px;
  color: #888;
  position: relative;
}
.menu_list li:nth-child(3) a {
  color: var(--brandColor);
  font-weight: 600;
}
.tab_menu li a.active {
  color: var(--brandColor);
  font-weight: 600;
}
.tab_menu li a.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #007aff;
}
/* 공지사항 notice_wrap*/
.notice_area {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 107px;
}
.notice_area .notice_list {
  padding: 4px 44px;
  border-radius: 10px;
  border: solid 1px #d5d5d5;
  background-color: #fff;
  margin-bottom: 40px;
}
.notice_area .notice_list li {
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 26px 42px;
  border-bottom: 1px solid #d5d5d5;
  font-size: 16px;
  position: relative;
}
.notice_area .notice_list li:last-child {
  border-bottom: none;
}
.notice_list .badge {
  display: inline-block;
  padding: 6px 20px;
  border: solid 1px #d5d5d5;
  background: #fff;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.6px;
  text-align: center;
  color: #3a3a3a;
}

.notice_list .title {
  flex: 1;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.72px;
}

.notice_list .date {
  font-size: 20px;
  letter-spacing: -0.6px;
  color: #878787;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.pagination .prev_box {
  margin-right: 30px;
}
.pagination .next_box {
  margin-left: 30px;
}
.pagination .prev_box, .pagination .next_box {
  display: flex;
  align-items: center;
  gap: 20px;
} 
.pagination .page {
  font-size: 18px;
  color: #878787;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .page:not(:last-of-type) {
  margin-right: 16px;
}
.pagination .arrow {
  position: relative;
}
.pagination .arrow img{
  width: 100%;
  height: 100%;
}
.pagination .page.active {
  background-color: var(--brandColor);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
}

.pagination .arrow:disabled {
  cursor: default;
}

.pagination .arrow.disabled {
  pointer-events: none;
  opacity: 0.3; 
}
/* faq 자주하는질문 faq_wrap */
.faq_category {
  padding-top: 50px;
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq_category .menu {

}
.faq_category .menu ul{
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq_category .menu a {
  padding: 8px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.54px;
  text-align: center;
  color: #878787;
  border-radius: 20px;
  border: solid 1px #d5d5d5;
  background-color: #fff;
  cursor: pointer;
}
.faq_category .menu a.on {
  background: #f2f7fc;
  color: var(--brandColor);
  border-color: var(--brandColor);
}
.faq_category .search-box {
  width: 340px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 50px;
  overflow: hidden;
}
.faq_category .search-box input {
  width: 100%;
  padding: 0px 26px;
  font-size: 18px;
  font-weight: 500;
  color: #878787;
}

.faq_category .search-box button {
  padding: 0px 27px 0 0;
}
.faq_container {
  margin-bottom: 40px;
}
.faq_box {
  padding: 16px 44px;
  border-radius: 10px;
  border: solid 1px #d5d5d5;
  background-color: #fff;
  display: none;
}
.faq_box.on {
  display: block;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  display: flex;
  flex-direction: column;
}
.faq-item .question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 16px;
  cursor: pointer;
}
.faq-item .question .text {
  display: flex;
  align-items: center;
  gap: 36px;
}
.faq-item .question .category {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 18px;
  border: solid 1px var(--brandColor);
  background-color: #fff;
  font-size: 20px;
  font-weight: 500;;
  letter-spacing: -0.6px;
  text-align: center;
  color: var(--brandColor);
}
.faq-item .question h4 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.72px;
}
.faq-item .question h4 b{
  display: inline-block;
  margin-right: 12px;
  color: var(--brandColor);
}
.faq-item .answer {
  display: none;
  padding: 22px 22px 22px 160px;
  border-radius: 10px;
  background-color: #fafafa;
}
.faq-item .answer p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.6px;
  color: #3a3a3a;
}
.faq-item .question.open .arrow {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.faq-item .arrow {
  transition: transform 0.3s ease;
}
/* 1:1 문의 */
.one_page {
  padding-bottom: 122px;
}
.one_area .title_box {
  padding: 55px 0 80px 0;
}
.one_area .title_box h3 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -1.02px;
  margin-bottom: 24px;
}
.one_area .title_box p {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.6px;
  color: #3a3a3a;
}
.one_area .title_box p:not(:last-of-type) {
  margin-bottom: 12px;
}

.email-wrap {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.email-wrap  span{
  padding-top: 16px;
}
.email-wrap select {
    width: 120px;
}
.custom-select .selected {
  width: 260px;
  height: 53px;
  padding: 0 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #878787;
}
.custom-select .options.show {
    display: flex !important;
    flex-direction: column;
}
.custom-select .options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  border-top: none;
  background: #fff;
  display: none;
  z-index: 10;
  max-height: 160px;
  overflow-y: auto;
}
.custom-select.open .options {
  display: block;
}
.custom-select .options li {
  padding: 10px;
  cursor: pointer;
  font-size: 14px;
}
.custom-select .options li:hover {
  background: #f1f1f1;
}
#customDomainInput {
  display: none;
  width: 150px;
}
.form_area .title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1.02px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d5d5d5;
}
.form-group {
  padding: 30px 44px;
  border-bottom: 1px solid #d5d5d5;
  display: flex;
}
.form-group input {
  width: 100%;
}
.form-group .label {
  min-width: 150px;
  width: 150px;
  height: 24px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.6px;
  margin: 15px 0;
}

.form-group .label::after {
    content: '*';
    color: #df222c;
    margin-left: 4px;
}
.form-group textarea {
  width: 100%;
  font-size: 18px;
  letter-spacing: -0.54px;
  height: 53px;
  padding: 16px 20px;
  border: 1px solid  #d5d5d5;
  border-radius: 6px;
}
.subject-group .subject {
  width: 900px;
  font-size: 18px;
  letter-spacing: -0.54px;
  height: 53px;
  padding: 0 20px;
  border: 1px solid  #d5d5d5;
  border-radius: 6px;
}
.name-group .name, .email-group .emailId, .tel-group .tel {
  width: 260px;
  font-size: 18px;
  letter-spacing: -0.54px;
  height: 53px;
  padding: 0 20px;
  border: 1px solid  #d5d5d5;
  border-radius: 6px;
}
.form-group textarea {
  width: 900px;
  height: 191px;
  resize: none;
  line-height: 1.33;
  letter-spacing: -0.54px;
  font-size: 18px;
}
.form-group textarea::placeholder {
  color: #878787;
}
.char-count {
  margin-left: 14px;
  font-size: 18px;
  color: #878787;
  line-height: 1.33;
  letter-spacing: -0.54px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.char-count #charCount {
  color: var(--brandColor);
}
.custom-file-upload {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.custom-file-upload input[type="file"] {
  display: none;
}

.custom-file-upload .upload-btn {
  width: 150px;
  height: 53px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 16px 0 0;
  border-radius: 5px;
  border: solid 1px #d5d5d5;
  background-color: #fff;
  font-size: 18px;
  letter-spacing: -0.54px;
  color: #3a3a3a;
  cursor: pointer;
}

.custom-file-upload #fileName {
  font-size: 14px;
  color: #333;
  max-width: 200px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

#fileStatus {
  font-size: 18px;
  letter-spacing: -0.54px;
  color: #3a3a3a;
}
#fileStatus .color {
  color: var(--brandColor) ;
}
.file-group .column {
  display: flex;
  flex-direction: column;
}
.file-info {
  font-size: 18px;
  letter-spacing: -0.54px;
  color: #3a3a3a;
}
.file-info.color { 
  color: #df222c;
  margin-top: 8px;
} 
.checkbox_group {
  padding: 26px 0 60px 44px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.checkbox_group label {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.9px;
  color: #3a3a3a;
}
.checkbox_group .box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkbox_group .box input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.checkbox_group .box i {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 100%;
  border: solid 1px #d5d5d5;
  position: relative;
}
.checkbox_group .box input[type="checkbox"] + i::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 7px;
    width: 6px;
    height: 11px;
    border: 1px solid #d5d5d5;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.checkbox_group .box input[type="checkbox"]:checked + i::before {
    border: 1px solid #fff;
    border-width: 0 2px 2px 0;
}
.checkbox_group .box input[type="checkbox"]:checked + i {
  background: var(--brandColor);
  border: solid 1px var(--brandColor);
}
.form-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.form-buttons > button {
  display: block;
  width: 343px;
  height: 62px;
  border-radius: 5px;
  border: solid 1px #d5d5d5;
  background-color: #fff;
  font-size: 22px;
  font-weight: 600;
  color: #878787;
  text-align: center;
  letter-spacing: -0.66px;
}
.form-buttons .send {
  border: solid 1px var(--brandColor);
  background-color: var(--brandColor);
  color: #fff;
}




/* 유효성 css */
textarea.focus_input:focus,
input.focus_input:focus,
div.focus_input:focus-within {
  border: 1px solid var(--brandColor);
}

.error_text{
  display: none;
  color: #df222c;
  font-weight: 500;
}
.select_box .error_text,
.input_box .error_text{ 
  /* position: absolute;
  bottom: -20px;
  left: 0; */
  margin-top: 10px;
}
.select_box,
.input_box{
  display: flex;
  flex-direction: column;
  position: relative;
}
.error{
  border: 1px solid #df222c !important;
}