@charset "UTF-8";
/* Button */
.btn {
  display: inline-block;
  border-radius: 4px;
  text-align: center;
  transition: transform 0.2s ease-out, background-color 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}
.btn-mini {
  height: 32px;
  line-height: 32px;
  font-size: 16px;
  text-align: center;
  border-radius: 4px;
}
.btn-sm {
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  border-radius: 4px;
}
.btn-md {
  height: 44px;
  line-height: 44px;
  font-size: 16px;
}
.btn-lg {
  height: 48px;
  line-height: 48px;
  font-size: 16px;
  font-weight: 600;
}
.btn-big {
  height: 56px;
  line-height: 56px;
}
.btn_bor_800 {
  border-radius: 800px;
}
.btn-w100p {
  width: 100%;
}
.btn-textType {
  text-decoration: underline;
  font-size: 14px;
  font-weight: 400;
  color: #111111;
}
.btn_p16 {
  padding: 0 16px;
}
.btn.disabled {
  background-color: #999999;
  color: #fff;
  border: 1px solid #999999;
}
.btn:disabled {
  background-color: #999999;
  color: #fff;
  border: 1px solid #999999;
}
.btn_black {
  background: #2f3438;
  color: #fff;
}
.btn_black:hover {
  transform: translateY(-2px);
  background-color: #1a1d20;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.btn_black_bor {
  border: 1px solid #111111;
  background: #fff;
  color: #111111;
}
.btn_black_bor:hover {
  transform: translateY(-2px);
  background-color: #f5f5f5;
  border-color: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.btn_brand {
  background: var(--brand_color);
  color: #ffffff;
}
.btn_brand:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 4px 12px rgba(72, 54, 30, 0.2);
}
.btn_beige {
  background: #f1eeed;
  color: #48361e;
}
.btn_beige:hover {
  transform: translateY(-2px);
  background-color: #e8e0dc;
  box-shadow: 0 4px 12px rgba(72, 54, 30, 0.1);
}
.btn_area {
  display: flex;
}
.btn_area.column {
  flex-direction: column;
  row-gap: 8px;
}
.brown_req {
  color: #48361e;
}
/* #### Modal #### */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
  opacity: 0;
}

.modal.open {
  z-index: 1000;
  opacity: 1;
}

.modal__inner {
  position: absolute;
  top: 47.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  height: auto;
  border-radius: 8px;
  background-color: #fff;
  transition: 0.45s;
  opacity: 0;
}

.modal.open .modal__inner {
  top: 50%;
  opacity: 1;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 32px;
}

.modal__header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2f3438;
}

.modal__header .btn_modal-close {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url(../_img/icon/icon_close_modal.svg) no-repeat center / contain;
}

.modal__content {
  padding-left: 32px;
}

.modal__content::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.modal__content::-webkit-scrollbar-thumb {
  height: 30%;
  background: #cccccc;
}

.modal__content::-webkit-scrollbar-track {
  background: transparent;
}

.modal__btns {
  padding: 28px 32px;
}
.modal_counsel .modal__content {
  padding: 0 32px;
}
/* modal_basic */
.modal_basic .modal__inner {
  max-height: 80dvh;
  height: 100%;
  /* overflow: auto; */
}
.modal_basic .modal__header {
  padding: 12px;
  justify-content: flex-end;
}
.modal_basic .modal__content {
  padding-right: 4px;
  overflow: auto;
  height: calc(100% - 52px);
}
/* Form */
input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"],
input[type="tel"] {
  border: 1px solid #cccccc;
  border-radius: 4px;
  background-color: #fff;
  padding: 0 16px;
  font-size: 16px;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="number"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: #999999;
}
.input-basic {
  height: 48px;
  width: 100%;
}
/* input-typeA */
.input-typeA input {
  display: none;
}
.input-typeA input + em {
  height: 48px;
  display: inline-block;
  font-style: normal;

  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  padding: 0 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
}
.input-typeA input + em p {
  width: 20px;
  height: 20px;
  background: url(../_img/icon/icon_radio_basic.svg) no-repeat center center / contain;
  display: inline-block;
}
.input-typeA input:checked + em {
  background: #fafafa;
}
.input-typeA input:checked + em p {
  background: url(../_img/icon/icon_radio_basic_on.svg) no-repeat center center/contain;
}
.gray_badge {
  background: #e5e5ec;
  display: inline-block;
  border-radius: 8px;
  width: 33px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  color: #111111;
  font-weight: 600;
  font-size: 14px;
}
/* 오른쪽 컬럼 (2열) */
.input-typeA:nth-child(2n) input + em {
  border-right: none;
}

/* 마지막 줄 (마지막 2개) */
.input-typeA:nth-last-child(-n + 2) input + em {
  border-bottom: none;
}
/* radio-basic */
.radio-basic input {
  display: none;
}
.radio-basic input + em {
  width: 20px;
  height: 20px;
  background: url(../_img/icon/icon_radio_basic.svg) no-repeat center center/contain;
  display: inline-block;
}
.radio-basic input:checked + em {
  background: url(../_img/icon/icon_radio_basic_on.svg) no-repeat center center/contain;
}
.radio-basic label {
  cursor: pointer;
  display: flex;
  gap: 8px;
  align-items: center;
}
.radio-basic label p {
  color: #767676;
  font-weight: 600;
  font-size: 16px;
}
/* radio-typeA */
.radio-typeA input {
  display: none;
}
.radio-typeA input + em {
  font-style: normal;
  display: inline-block;
  height: 46px;
  line-height: 46px;
  border-radius: 800px;
  border: 1px dashed #cccccc;
  padding: 0 16px;
  color: #111111;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}
.radio-typeA input:checked + em {
  background: #2f3438;
  color: #ffffff;
  border: 1px solid #2f3438;
  box-shadow: 0 0 10px 0 #00000033;
}
.radio-typeA.sm-size input + em {
  height: 40px;
  line-height: 40px;
}
/* Select */
.select-primary {
  height: 44px;
  line-height: 44px;
  float: none;
  width: 100%;
  display: inline-block;
  padding: 0 12px;
  font-size: 14px;
}

.select-primary .list {
  width: inherit;
  max-height: 190px;
  overflow-y: auto;
  z-index: 1000;
}

.select-primary:active,
.select-primary.open,
.select-primary:focus {
  border-color: #ddd;
}

.select-primary .option {
  border-bottom: 1px solid #ddd;
  height: 40px;
  line-height: 40px;
}

.select-primary .option:last-child {
  border-bottom: none;
}

.select-primary .option.selected {
  font-weight: normal;
}

.select-primary:after {
  border-bottom: none;
  border-right: none;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../_img/icon/icon_arrow_down_50.svg) no-repeat center center / contain;
  transform: translateY(-50%) rotate(0deg);
  margin-top: 0;
  right: 12px;
}

.select-primary.open:after {
  transform: translateY(-50%) rotate(-180deg);
  transform-origin: center !important;
}

.textarea--typeA {
  width: 100%;
  min-height: 200px;
  border-radius: 4px;
  border: 1px solid #cccccc;
  padding: 16px;
}
.textarea--typeB {
  width: 100%;
  height: 140px;
  border-radius: 4px;
  border: 1px solid #cccccc;
  padding: 16px;
}

.c_brand {
  color: var(--brand_color);
}

h5.h5_tit {
  font-size: 20px;
  font-weight: 600;
  color: #111;
}
.orage_badge {
  background: #f7941e;
  height: 26px;
  line-height: 26px;
  padding: 0 12px;
  display: inline-block;
  border-radius: 8px;
  width: fit-content;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
}

/* Mobile */
@media screen and (max-width: 768px) {
  input[type="text"],
  input[type="password"],
  input[type="number"],
  input[type="email"],
  input[type="tel"] {
    padding: 0 12px;
    font-size: 14px;
  }
  input[type="text"]::placeholder,
  input[type="password"]::placeholder,
  input[type="number"]::placeholder,
  input[type="email"]::placeholder,
  input[type="tel"]::placeholder {
    font-size: 14px;
  }
  .input-basic {
    height: 44px;
  }
  .radio-basic label {
    gap: 4px;
  }
  .radio-basic input + em {
    width: 16px;
    height: 16px;
  }
  .radio-basic label p {
    font-size: 13px;
  }
  .btn-lg {
    height: 44px;
    line-height: 44px;
    font-size: 14px;
  }
  .modal__header {
    padding: 20px 12px;
  }
  .modal__header h3 {
    font-size: 16px;
  }
  .modal__content {
    padding-left: 12px;
  }
  .modal__btns {
    padding: 12px;
  }
  .modal__btns .btn {
    height: 44px;
    line-height: 44px;
    font-size: 14px;
  }

  .orage_badge {
    height: 24px;
    line-height: 24px;
    font-size: 13px;
  }
  .radio-typeA input + em {
    height: 36px;
    line-height: 36px;
    padding: 0 12px;
    font-size: 14px;
  }
  .radio-typeA.sm-size input + em {
    height: 36px;
    line-height: 36px;
  }
}
