:root {
  --main-color: #7BB9EB;
  --bg-color: #FAFAFA;
  --border-color: #E5E5E5;
  --sub-txt-color: #999999;
  --red-color: #EF4646;
  --green-color: #87CE7D;
}
* {
  box-sizing: border-box;
  /*
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  */
  -webkit-tap-highlight-color : transparent;
}
html {
  scroll-behavior : smooth;
}
body {
  font-family: "Figtree", "Pretendard", "Open Sans";
  font-weight: 400;
  font-size: 100%;
  position: relative;
}
/*공통*/
main {
  padding-top: 143px;
}
input {
  font-size: 16px;
}
input:read-only {
  background-color: var(--bg-color);
}
button {
  font-size: 16px;
}
input[type="text"] {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--border-color);
}
input[type="text"].error {
    color: #333 !important;
}
input[type="email"] {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 16px;
    border: 1px solid var(--border-color);
  }
  input[type="email"].error {
    color: #333 !important;
}
input[type="password"].error {
    color: #333 !important;
}
input[type="password"] {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--border-color);
}
input:focus {
  outline: none;
  border: 1px solid var(--main-color);
}
select {
  font-size: 16px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 36px 0 16px;
  border: 1px solid var(--border-color);
  -webkit-appearance:none; /* for chrome */
   -moz-appearance:none; /*for firefox*/
   appearance:none;
   background:url('../images/icons/arrow_down_gc.png') no-repeat calc(100% - 16px) 50% / 12px 7px;
}
select:disabled {
  background-color: var(--bg-color);
}
select:focus {
  outline: none;
  border: 1px solid var(--main-color);
}
.btn {
    display: inline-block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 14px;
}
.btn.btn-sm {
  min-width: 130px;
  height: 40px;
  font-size: 12px;
  line-height: 40px;
}
.btn-200 {
    max-width: 200px;
}
.btn-130 {
    max-width: 130px;
}
.btn-center {
    margin: 25px auto 0;
}
.btn-solid {
  background-color: var(--main-color);
  color: #fff;
  transition: .2s;
}
.btn-solid:hover {
  opacity: 0.8;
  transition: .2s;
}
.btn-default {
  background-color: #fff;
  border: 1px solid var(--sub-txt-color);
  transition: .2s;
}
.btn-default:hover {
  background-color: #f9f9f9;
  transition: .2s;
}
.btn-gray {
  background-color: #fff;
  border: 1px solid var(--border-color);
  transition: .2s;
  text-align: left;
  padding: 0 16px;
  font-size: 16px;
}
.btn-gray:hover {
  background-color: #f9f9f9;
  transition: .2s;
}
.category-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.category-btn {
  padding: 10px 15px;
  background-color: #fff;
  transition: .2s;
  font-size: 14px;
  color: var(--sub-txt-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
}
.category-btn:hover {
  background-color: #f9f9f9;
  transition: .2s;
}
.category-btn.category-on {
  border: 1px solid var(--main-color);
  color: #fff;
  background-color: var(--main-color);
}
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.bg-wrap {
  width: 100%;
  background-color: var(--bg-color);
  padding: 150px 0;
}
.top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
  background-color: var(--main-color);
  cursor: pointer;
  z-index: 98;
}
.top-btn img {
  width: 20px;
  height: 20px;
}
.logo {
  display: inline-block;
}
.logo img {
  width: 150px;
}
.mw-400 {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.mw-500 {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.mw-800 {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.user-tit {
  margin-top: 100px;
}
.user-tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
}
.user-tit p:first-child {
  font-size: 38px;
  font-weight: 600;
}
.user-tit p:nth-child(2) {
  font-size: 16px;
  color: var(--sub-txt-color);
}
.user-input {
  margin-top: 70px;
}
.user-input .user-sub-tit {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 500;
}
.user-input .user-sub-tit.sec {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--border-color);
}
.input-box:not(:first-child) {
  margin-top: 25px;
}
.input-box {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  position: relative;
}
.input-box.divider {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--border-color);
  margin-bottom: 50px;
}
.input-box .text-cnt {
  position: absolute;
  right: 16px;
  bottom: 16px;
  font-size: 12px;
  color: var(--sub-txt-color);
}
.input-box .text-cnt .pre-text {
  display: inline-block;
}
.input-box textarea {
  border: 1px solid var(--border-color);
  padding: 16px 16px 36px;
  min-height: 250px;
}
.input-box .input-flex {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  column-gap: 10px;
}
.input-box .input-flex > label {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 16px;
    border: 1px solid var(--border-color);
}
.input-box .input-flex input[type="file"] {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 16px;
    border: 1px solid var(--border-color);
}
.input-box .radio-flex {
  display: flex;
  column-gap: 40px;
  margin: 5px 0 10px;
}
.input-box .radio-flex label {
  display: flex;
  align-items: center;
  column-gap: 5px;
  cursor: pointer;
}
.input-box .radio-flex label input[type="radio"] {
  width: 17px;
  height: 17px;
  margin: 0;
  cursor: pointer;
}
.input-box .radio-flex label span {
  display: inline-block;
  color: var(--sub-txt-color);
}
.input-box .input-flex button {
  max-width: 130px;
  white-space: nowrap;
}
.input-box .select-box {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.input-box > p {
  font-size: 14px;
}
.input-box > p.sr::after {
  content: "*";
  color: var(--red-color);
  font-weight: 600;
  margin-left: 5px;
  font-size: 12px;
}
.auth-mark {
  width: max-content;
  display: inline-flex;
  align-items: center;
  column-gap: 5px;
  font-size: 13px;
  color: var(--green-color);
  margin-bottom: 5px;
  position: relative;
}
.auth-mark img {
  width: 15px;
  height: 15px;
}
.auth-mark .ballon {
  display: none;
  position: absolute;
  width: max-content;
  padding: 5px;
  left: 0;
  bottom: -30px;
  background: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  color: #fff;
  border-radius: 5px;
}
.auth-mark:hover .ballon {
  display: block;
}
.auth-mark .ballon:after {
  border-top: 0 solid transparent;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(0, 0, 0, 0.8);
  content: "";
  position: absolute;
  top: -5px;
  left: 15px;
  transform: translateX(-50%);
}
.page-tit {
  width: 100%;
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  margin: 50px 0;
}
.pagination {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
  position: relative;
}
.pagination > a {
  max-width: 130px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.pagination li {
  display: inline-block;
}
.pagination li.on a {
  background-color: var(--main-color);
  color: #fff;
}
.pagination li a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background-color: #fff;
  color: var(--sub-txt-color);
}
.pagination li a img {
  width: 10px;
}
.pagination li a.empty img {
  width: 20px;
}
/*modal*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: none;
}
.modal .modal-content {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
  min-height: 1px;
  max-height: calc(100vh - 60px);
  max-width: 740px;
  overflow: hidden;
}
.modal .modal-content.mw-450 {
  max-width: 450px;
}
.modal .modal-content .tit {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 20px;
  border-bottom: 1px solid var(--border-color);
  padding: 30px 30px 20px;
}
.modal .modal-content .tit span {
  display: inline-block;
  font-size: 14px;
  color: var(--sub-txt-color);
}
/*header*/
.sub-gnb .mobile-info {
  display: none;
}
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 1px solid var(--border-color);
  background-color: #fff;
  z-index: 99;
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 36px;
}
.gnb-box {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.sub-gnb {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 12px;
}
.sub-gnb li {
  display: flex;
  align-items: center;
  position: relative;
}

.sub-gnb li:not(:last-child):after {
  content: "·";
  margin: 0 15px;
  font-weight: bold;
  color: var(--sub-txt-color);
}

.sub-gnb li a {
  display: flex;
  align-items: center;
  column-gap: 5px;
  font-size: 14px;
  color: var(--sub-txt-color);
}
.sub-gnb li a img {
  height: 15px;
}
.gnb {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 30px;
}
.gnb li {
  display: flex;
  align-items: center;
  position: relative;
}
.gnb li:first-child::after {
  content: "";
  margin-left: 30px;
  height: 15px;
  border-left: 1px solid #000;
}
.gnb li a {
  position: relative;
  display: inline-block;
}
.gnb li a:before{
  content : '';
  position: absolute;
  background-color: var(--main-color);
  height: 1px;
  width : 0;
  bottom: -10px;      
  transition: 0.3s;
  left : 50%; 
  transform: translateX(-50%);
}
.gnb li a:hover:before{
  width : 100%;
}
/*footer*/
footer {
  width: 100%;
  margin-top: 100px;
  border-top: 1px solid var(--border-color);
}
.fnb-box {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 50px;
}
.fnb {
  display: flex;
  align-items: center;
  column-gap: 30px;
  font-size: 15px;
}
.fnb li {
  display: inline-block;
}
.fnb li a {
  display: inline-block;
}
.fnb li a:hover {
  opacity: 0.8;
}
.fnb-copy {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.fnb-copy p {
  color: var(--sub-txt-color);
  font-size: 13px;
  text-align: center;
}
.fnb-info {
  background-color: #333;
  padding: 16px;
}
.fnb-info .wrap {
  display: flex;
  justify-content: center;
}
.fnb-info span {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: var(--sub-txt-color);
}
.fnb-info span:not(:last-child)::after {
  content: "";
  height: 10px;
  border-left: 1px solid var(--sub-txt-color);
  margin: 0 10px;
}


.ham {
  display: none;
}
#ham_btn {
  display: none;
}
#ham_btn + label {
  position: relative;
  display: block;
  width: 32px;
  height: 20px;
  cursor: pointer;
  z-index: 10;
}
#ham_btn + label > span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--main-color);
  border-radius: 5px;
  transition: all 300ms;
}
#ham_btn:checked + label > span:nth-child(1) {
  top: 50%;
  transform: translate(0, -50%);
  transform: rotate(45deg);
}
#ham_btn + label > span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}
#ham_btn:checked + label > span:nth-child(2) {
  opacity: 0;
}
#ham_btn + label > span:nth-child(3) {
  bottom: 0;
}
#ham_btn:checked + label > span:nth-child(3) {
  top: 50%;
  transform: translate(0, -50%);
  transform: rotate(-45deg);
}

/*user*/
.remember-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.remember-box label {
  display: flex;
  align-items: center;
  column-gap: 5px;
  cursor: pointer;
}
.remember-box label input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin: 0;
}
.remember-box label span {
  display: inline-block;
  font-size: 14px;
  color: var(--sub-txt-color);
}
.remember-box > div {
  display: flex;
  align-items: center;
}
.remember-box > div a {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: var(--sub-txt-color);
}
/*
.remember-box > div a:first-child::after {
  content: "";
  height: 10px;
  border-left: 1px solid var(--sub-txt-color);
  margin: 0 10px;
}
  */
.user-btn {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.user-btn.mw-400 {
  max-width: 400px;
}
.user-btn.mt-70 {
  margin-top: 70px;
}
.user-btn.fl-row {
  flex-direction: row-reverse;
  column-gap: 10px;
}
.social-btn {
  margin-top: 50px;
}
.social-btn p {
  color: var(--sub-txt-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.social-btn p::before {
  content: "";
  flex-grow: 1;
  background: var(--border-color);
  height: 1px;
  margin: 0 20px 0 0;
}
.social-btn p::after {
  content: "";
  flex-grow: 1;
  background: var(--border-color);
  height: 1px;
  margin: 0 0 0 20px;
}
.social-btn > div {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
}
.social-btn > div img {
  width: 40px;
  height: 40px;
}

.user-terms {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  row-gap: 35px;
}
.user-textarea {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.user-textarea.mt-30 {
  margin-top: 30px;
}
.user-textarea label {
  display: flex;
  align-items: center;
  column-gap: 5px;
  cursor: pointer;
}
.user-textarea label input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin: 0;
  cursor: pointer;
}
.user-textarea label span {
  display: inline-block;
  font-size: 14px;
}
.user-textarea textarea {
  padding: 16px;
  border: 1px solid var(--border-color);
  color: var(--sub-txt-color);
  font-size: 13px;
  min-height: 150px;
}
.user-textarea .terms-expl {
  padding: 16px;
  border: 1px solid var(--border-color);
}
.user-textarea .terms-expl > div {
  display: flex;
  align-items: flex-start;
  column-gap: 20px;
}
.user-textarea .terms-expl > div span {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.3;
}
.user-textarea .terms-expl > div span:first-child {
  min-width: 110px;
}
.user-textarea .terms-expl > div span:nth-child(2) {
  color: var(--sub-txt-color);
}
.user-textarea .terms-expl > span {
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
  display: inline-block;
  font-size: 14px;
  color: var(--sub-txt-color);
  line-height: 1.3;
}
.user-textarea .terms-expl > span::before {
  content: "*";
  font-size: 14px;
  color: var(--red-color);
  font-weight: 600;
}
.user-select {
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 80px;
}
.user-select .item {
  text-align: center;
  position: relative;
}
.user-select .item .img-box {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 auto 30px;
  position: relative;
  border: 1px solid var(--border-color);
}
.user-select .item .del-btn {
  position: absolute;
  top: 0;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 100%;
  border: 1px solid var(--border-color);
  z-index: 3;
}
.user-select .item .del-btn img {
  width: 20px;
}
.user-select .item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1.1;
  transition: .2s;
}
.user-select .item a {
  display: inline-block;
}
.user-select .item:has(> a:hover) > .img-box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(159, 159, 159, 0.5);
}
.user-select .item:has(> a:hover) > .img-box img {
  scale: 1;
  transition: all .2s;
}
.user-select .item a p:first-child {
  margin-bottom: 10px;
}
.user-select .item a p:nth-child(2) {
  font-size: 14px;
  color: var(--sub-txt-color);
  line-height: 1.3;
}
.user-input .phone-auth {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--border-color);
  background-color: #fff;
  transition: .2s;
}
.user-input .phone-auth:hover {
  background-color: var(--bg-color);
  border: 1px solid var(--sub-txt-color);
  transition: .2s;
}
.user-input .phone-auth > div {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.user-input .phone-auth > div img {
  width: 20px;
}
.user-input .phone-auth > img {
  width: 7px;
}
.user-input > label {
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
  column-gap: 5px;
  cursor: pointer;
}
.user-input > label input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin: 2px 0 0;
}
.user-input > label span {
  display: inline-block;
  font-size: 14px;
  color: var(--sub-txt-color);
  line-height: 1.3;
}
.user-input .result-box {
  border: 1px solid var(--border-color);
  background-color: var(--bg-color);
  margin-top: 30px;
  padding: 16px;
  text-align: center;
}
.user-input .result-box p:first-child {
  color: var(--sub-txt-color);
  font-size: 14px;
  margin-bottom: 10px;
}
.user-input .result-box p:nth-child(2) {
  font-size: 18px;
  font-weight: 500;
}

/*메인*/
.map-area {
  width: 100%;
  height: 500px;
  position: relative;
}
.pre-location {
    font-size: 13px;
    font-weight: 300;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    white-space: nowrap;
    color: var(--sub-txt-color);
}
.pre-location > img {
    height: 14px;
}
.pre-location > b {
    font-weight: 600;
}
.map-area > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.status-box {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: max-content;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 16px;
  border-radius: 10px;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  display: flex;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
}
.status-box .item > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.status-box .item {
  display: flex;
  position: relative;
}
.status-box .item:not(:last-child)::after {
  content: "";
  height: 100%;
  border-left: 1px solid var(--sub-txt-color);
  margin: 0 26px;
}
.status-box .item p:first-child {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
}
.status-box .item p:nth-child(2) {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.section-tit {
  margin-top: 100px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}
.section-tit > a {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  font-size: 24px;
  font-weight: 500;
}
.section-tit > a > img {
  width: 30px;
  height: 30px;
}
.swiper-arrow-box {
  width: calc(100% + 40px);
  position: absolute;
  left: -20px;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}
.swiper-arrow-box .slider-arrow {
  background-color: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  overflow: visible;
}
.swiper-arrow-box .slider-arrow img {
  width: 10px;
}
.swiper-slide a {
  display: flex;
  flex-direction: column;
}
.swiper-slide a:hover > .img-box img {
  scale: 1.1;
  transition: .2s;
}
.swiper-slide a > .img-box {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
  padding: 10px;
  border: 1px solid var(--border-color);
}
.swiper-slide a > .img-box::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.swiper-slide a > .img-box .login-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  padding: 20px;
  line-height: 1.3;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  word-break: keep-all;
}
.swiper-slide a > .img-box .info-cover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 30%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  row-gap: 5px;
  padding: 10px;
}
.swiper-slide a > .img-box .info-cover .badge {
  width: max-content;
  border-radius: 2px;
  padding: 3px;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  color: #fff;
  background-color: var(--red-color);
}
.swiper-slide a > .img-box .info-cover span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: #fff;
  font-size: 14px;
}
.swiper-slide a > .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1;
  z-index: 1;
  transition: .2s;
}
.swiper-slide a > .tit {
  font-size: 18px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 15px;
}
.swiper-slide a > .info {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.swiper-slide a > .info > div {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.swiper-slide a > .info > div span {
  display: inline-block;
  font-size: 14px;
  color: var(--sub-txt-color);
}
.swiper-slide a > .info > div span:first-child {
  display: flex;
  align-items: center;
  column-gap: 5px;
  white-space: nowrap;
}
.swiper-slide a > .info > div span:first-child img {
  width: 12px;
}
.swiper-slide a > .info > div span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.grid-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.grid-list .empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 30px 0;
}
.grid-list .item {
  display: flex;
  column-gap: 10px;
}
.grid-list .item .img-box {
  min-width: 120px;
  width: 120px;
  height: 120px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  padding: 10px;
  border: 1px solid var(--border-color);
}
.grid-list .item .img-box::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.grid-list .item .img-box > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1;
  z-index: 1;
  transition: .2s;
}
.grid-list .item:hover .img-box > img {
  scale: 1.1;
  transition: .2s;
}
.grid-list .item .img-box .login-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  padding: 20px;
  line-height: 1.3;
  font-size: 12px;
  font-weight: 300;
  text-align: center;
  word-break: keep-all;
}
.grid-list .item .info-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.grid-list .item .info-box .tit-box {
  display: flex;
  flex-direction: column;
}
.grid-list .item .info-box .tit-box > div {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.grid-list .item .info-box .uni-status {
  width: max-content;
  border-radius: 2px;
  padding: 3px;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  color: #fff;
  background-color: var(--red-color);
}
.grid-list .item .info-box .uni-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--sub-txt-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.grid-list .item .info-box .year {
  font-size: 14px;
  color: var(--sub-txt-color);
  margin-bottom: 5px;
}
.grid-list .item .info-box .tit {
  font-size: 18px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.grid-list .item .info-box .info {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.grid-list .item .info-box .info > div {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.grid-list .item .info-box .info > div span {
  display: inline-block;
  font-size: 14px;
  color: var(--sub-txt-color);
}
.grid-list .item .info-box .info > div span:first-child {
  display: flex;
  align-items: center;
  column-gap: 5px;
  white-space: nowrap;
}
.grid-list .item .info-box .info > div span:first-child img {
  width: 12px;
}
.grid-list .item .info-box .info > div span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.grid-list .item .info-box .info .content {
  margin-top: 5px;
  font-size: 14px;
  color: var(--sub-txt-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.grid-list .item .img-box .info-cover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 30%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  row-gap: 5px;
  padding: 10px;
}
.grid-list .item .img-box .info-cover .badge {
  width: max-content;
  border-radius: 2px;
  padding: 3px;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  color: #fff;
  background-color: var(--red-color);
}
.grid-list .item .img-box .info-cover span {
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  word-break: keep-all;
}

.grid-list .item .img-box .compare-chk {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  margin: 0;
  width: 25px;
  height: 25px;
  cursor: pointer;
  display: none;
}
/*찾기 페이지*/
.list-cnt-box {
  margin-top: 70px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.list-cnt-box .cnt {
  color: var(--sub-txt-color);
}
.list-cnt-box .cnt span {
  display: inline-block;
  color: var(--green-color);
}
.list-cnt-box .compare {
  display: flex;
}
.list-cnt-box .compare > div {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.list-cnt-box .compare .compare-on {
  display: none;
}
.compare-table {
  width: 100%;
  table-layout: fixed;
}
.compare-table tr:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}
.compare-table tr th {
  width: 140px;
  min-width: 140px;
  background-color: #F8F9FF;
  padding: 20px;
  vertical-align: middle;
  font-size: 14px;
}
.compare-table tr td {
  padding: 20px;
  vertical-align: middle;
  font-size: 14px;
  color: var(--sub-txt-color);
  text-align: center;
  line-height: 1.2;
}
.compare-table tr td img {
  max-width: 120px;
  border-radius: 5px;
}
.modal .content-box {
  max-height: 650px;
  overflow: hidden;
  overflow-y: auto;
}
.modal .content-box.pre-line {
  padding: 30px;
  white-space: pre-line;
}
.modal .content-box.pre-line img {
  max-width: 100%;
}
.modal .modal-btn {
  display: flex;
  align-items: center;
}
.modal .modal-btn button {
  width: 100%;
  border: none;
  text-align: center;
  padding: 15px;
}
.modal .modal-btn button.modal-ok {
  background-color: var(--main-color);
  color: #fff;
}
.modal .modal-btn button.modal-close {
  background-color: var(--bg-color);
}

.search-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.search-box.mt-30 {
  margin-top: 30px;
}
.search-box .select-box {
  position: relative;
}
.search-box .select-box > select {
  padding-left: 46px;
}
.search-box .select-box > button {
  font-size: 16px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 36px 0 46px;
  border: 1px solid var(--border-color);
  text-align: left;
}
.search-box .select-box > button:focus {
  border: 1px solid var(--main-color);
}
.search-box .select-box > img {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  width: 20px;
}
.modal .subject-box {
  max-height: calc(100vh - 185px);
  overflow: hidden;
  overflow-y: auto;
  padding: 20px 30px;
}
.subject-grid:not(:last-child) {
  margin-bottom: 30px;
}
.subject-grid > p {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}
.subject-grid .grid-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.subject-grid .grid-box .item {
  font-size: 14px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: var(--sub-txt-color);
  padding: 0 16px 0 8px;
  border: 1px solid var(--border-color);
  cursor: pointer;
}
.subject-grid .grid-box .item span {
  display: inline-block;
  white-space: nowrap;
}
.subject-grid .grid-box .item > input[type="checkbox"] {
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
}
.subject-grid .grid-box .item:has(> input[type="checkbox"]:checked) {
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

.view-area {
  display: flex;
  align-items: flex-start;
  column-gap: 40px;
  position: relative;
  margin-bottom: 100px;
}
.view-area .content {
  flex: 1;
  border-right: 1px solid var(--border-color);
  padding-right: 40px;
  position: relative;
}
.view-area .content .cover-on {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 95%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.view-area .content .img-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 50px;
}
.view-area .content .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.view-area .content .tab-menu {
  position: sticky;
  background-color: #fff;
  top: 142px;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--sub-txt-color);
  border-bottom: 1px solid var(--border-color);
}
.view-area .content .tab-menu button {
  width: 100%;
  text-align: center;
  padding: 20px 16px;
}
.view-area .content .tab-menu button.tab-on {
  padding: 20px 16px 17px;
  border-bottom: 3px solid #555;
}
.view-area .content .view-tit {
  font-size: 24px;
  font-weight: 500;
  color: #555;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
  margin: 70px 0 30px;
}
.view-area .content .info-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.view-area .content .info-box .item {
  display: flex;
  align-items: flex-start;
  column-gap: 20px;
}
.view-area .content .info-box .item > div  {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: var(--sub-txt-color);
  min-width: 120px;
}
.view-area .content .info-box .item > div img {
  width: 20px;
}
.view-area .content .info-box .item span {
  display: inline-block;
  line-height: 1.2;
}
.view-area .content .video-box {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.view-area .content .video-box video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.view-area .content .detail-box {
  white-space: pre-line;
}
.view-area .content .detail-box > img {
  max-width: 100%;
}
.view-area .fixed-content {
  position: sticky;
  top: 153px;
  left: 0;
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f1f1;
  overflow: hidden;
}
.view-area .fixed-content .fixed-basic {
  padding: 30px;
}
.view-area .fixed-content .fixed-basic .tit {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}
.view-area .fixed-content .fixed-detail {
  padding: 30px 0;
  margin: 0 30px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px dashed var(--border-color);
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.view-area .fixed-content .fixed-detail.bn {
  border-bottom: none;
}
.view-area .fixed-content .fixed-detail > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.view-area .fixed-content .fixed-detail > div span {
  display: inline-block;
}
.view-area .fixed-content .fixed-detail > div span:first-child {
  color: var(--sub-txt-color);
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.view-area .fixed-content .fixed-detail > div span:first-child img {
  width: 20px;
}
.view-area .fixed-content .price {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 40px;
  padding: 30px;
}
.view-area .fixed-content .price span {
  display: inline-block;
}
.view-area .fixed-content .price span:first-child {
  color: var(--sub-txt-color);
}
.view-area .fixed-content .btn-wrap {
  display: flex;
  align-items: center;
}
.view-area .fixed-content .btn-wrap button {
  width: 100%;
  padding: 15px;
  font-size: 14px;
  text-align: center;
}
.view-area .fixed-content .btn-wrap button:first-child {
  background-color: var(--bg-color);
}
.view-area .fixed-content .btn-wrap button:nth-child(2) {
  background-color: var(--main-color);
  color: #fff;
}
.modal .coupon-box {
  padding: 30px 30px;
}
.modal .coupon-box .expl {
  color: #555;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 20px;
}
.modal .coupon-box .expl span {
  display: inline-block;
  color: var(--green-color);
}
.modal .coupon-box .sub-expl {
  font-size: 14px;
  color: #555;
  text-align: center;
  line-height: 1.2;
}
.modal .receive-box {
  padding: 0 30px 30px;
}
.modal .receive-box > p {
  color: #555;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
.modal .receive-box > p::before {
  content: "";
  display: block;
  width: 100px;
  border-bottom: 1px solid var(--border-color);
  margin: 0 auto 30px;
}
.modal .receive-box .radio-box {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 40px;
}
.modal .receive-box .radio-box label {
  display: flex;
  align-items: center;
  column-gap: 5px;
  cursor: pointer;
}
.modal .receive-box .radio-box label input[type="radio"] {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
}
.modal .receive-box .radio-box label span {
  display: inline-block;
  color: var(--sub-txt-color);
}
.list-cnt-box .quick-group-btn {
  display: flex;
  align-items: center;
}
.list-cnt-box .quick-group-btn button {
  display: flex;
  align-items: center;
  column-gap: 5px;
  color: var(--sub-txt-color);
  font-size: 14px;
}
.list-cnt-box .quick-group-btn button:not(:last-child)::after {
  content: "";
  display: inline-block;
  height: 12px;
  border-left: 1px solid var(--sub-txt-color);
  margin: 0 15px 0 10px;
}
.list-cnt-box .quick-group-btn button img {
  width: 16px;
}
.quick-history-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}
.quick-history-grid .empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 30px 0;
}
.quick-history-grid .item {
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f1f1; 
}
.quick-history-grid .item > span {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: #555;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.quick-history-grid .item > a > span {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: #555;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-history-grid .item > a {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 20px;
}
.quick-history-grid .item > a > div {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.quick-history-grid .item > a:hover > div {
  opacity: 0.7;
}
.quick-history-grid .item > .info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 20px;
  margin-bottom: 10px;
}
.quick-history-grid .item > .info:last-child {
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
  margin: 15px 0 0;
}
.quick-history-grid .item > .info > span {
  display: inline-block;
  font-size: 14px;
}
.quick-history-grid .item > .info > span:first-child {
  color: var(--sub-txt-color);
}
.quick-history-grid .item .number-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.quick-history-grid .item .number-box > span:first-child {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: #555;
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quick-history-grid .item .number-box > span:nth-child(2) {
    font-size: 14px;
    color: var(--sub-txt-color);
}

/*유료서비스*/
.service-area {
  width: 100%;
  max-width: 500px;
  margin: 50px auto 0;
}
.user-textarea > .service-expl {
  display: inline-block;
  font-size: 14px;
  color: var(--sub-txt-color);
  line-height: 1.3;
}
.user-textarea > .service-expl::before {
  content: "*";
  font-size: 14px;
  color: var(--red-color);
  font-weight: 600;
}
.user-textarea.mt-25 {
  margin-top: 25px;
}
.service-area .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.service-area .product-grid .item {
  width: 100%;
  border: 1px solid var(--border-color);
  padding: 20px;
  position: relative;
  cursor: pointer;
}
.service-area .product-grid .item::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.service-area .product-grid .item .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service-area .product-grid .item .content .tit {
  font-size: 14px;
  color: var(--sub-txt-color);
  margin-bottom: 15px;
}
.service-area .product-grid .item .content .price {
  font-size: 20px;
  font-weight: 500;
}
.service-area .product-grid .item input[type="radio"] {
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
}
.service-area .product-grid .item input[type="checkbox"] {
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
}
.service-area .product-grid .item:has(input[type="radio"]:checked) {
  border: 1px solid var(--main-color);
}
.service-area .product-grid .item:has(input[type="radio"]:checked) .tit {
  color: var(--main-color);
}
.service-area .product-grid .item:has(input[type="checkbox"]:checked) {
    border: 1px solid var(--main-color);
  }
  .service-area .product-grid .item:has(input[type="checkbox"]:checked) .tit {
    color: var(--main-color);
  }
.service-history {
  border-top: 1px solid var(--sub-txt-color);
  border-bottom: 1px solid var(--border-color);
  margin-top: 50px;
}
.service-history li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 16px;
}
.service-history li.empty {
  justify-content: center;
  padding: 30px 0;
}
.service-history li:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}
.service-history li.th > div {
  width: 100%;
  text-align: center;
  padding: 0 16px;
}
.service-history .th > div:first-child {
  min-width: 60px;
  width: 60px;
}
.service-history.pay-history .th > div:first-child {
    width: 100%;
}
.service-history .th > div:last-child {
  width: 150px;
  min-width: 150px;
}
.service-history .content {
  width: 100%;
  display: flex;
  align-items: center;
}
.service-history .content > div {
  width: 100%;
  text-align: center;
  padding: 0 16px;
  color: var(--sub-txt-color);
}
.service-history .content > div:first-child {
  width: 60px;
  min-width: 60px;
}
.service-history .content.pay-his > div:first-child {
    width: 100%;
    max-width: 100%;
}
.service-history .content > div:nth-child(2) {
  font-weight: 400;
  color: #333;
}
.service-history .content > .tit {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.service-history .content > .tit.bold {
    font-weight: 600;
}
.service-history .content > div:last-child {
  width: 150px;
  min-width: 150px;
}
.support-view .tit-box {
  border-top: 1px solid var(--sub-txt-color);
  border-bottom: 1px solid var(--border-color);
  margin-top: 50px;
  padding: 20px 16px;
}
.support-view .tit-box p:first-child {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
}
.support-view .tit-box p:nth-child(2) {
  font-size: 14px;
  color: var(--sub-txt-color);
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.support-view .content {
  white-space: pre-line;
  min-height: 200px;
  padding: 50px 16px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 50px;
}
.support-view .content img {
  max-width: 100%;
}
.support-view .other-list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding: 20px 16px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.support-view .other-list a {
  display: flex;
  align-items: center;
  column-gap: 60px;
}
.support-view .other-list a span:first-child {
  display: flex;
  align-items: center;
  column-gap: 15px;
  white-space: nowrap;
}
.support-view .other-list a span:first-child img {
  width: 15px;
}
.support-view .other-list a span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: var(--sub-txt-color);
}
.support-view .other-list a:hover span:nth-child(2) {
  opacity: 0.7;
}
.service-history .content:hover > .tit {
  opacity: 0.7;
}
.write-area .expl-box {
  margin: 50px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sub-txt-color);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  column-gap: 40px;
}
.write-area .expl-box > div:first-child {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.write-area .expl-box > div p {
  font-size: 14px;
  color: var(--sub-txt-color);
  word-break: keep-all;
  line-height: 1.2;
}
.write-area .expl-box > div p:last-child {
  margin-left: 7px;
  text-indent: -7px;
}
.write-area .expl-box > div:last-child {
  font-size: 14px;
  color: var(--sub-txt-color);
}
.write-area .expl-box > div:last-child::before {
  content: "*";
  color: var(--red-color);
  font-weight: 600;
  font-size: 12px;
}
.write-area .terms-content {
  min-height: 250px;
  white-space: pre-line;
  padding: 50px 16px;
  border-top: 1px solid var(--sub-txt-color);
  border-bottom: 1px solid var(--border-color);
  margin-top: 50px;
}
.write-area .terms-content img {
  max-width: 100%;
}

/*mypage*/
.mypage-area {
  margin-top: 50px;
}
.mypage-area .basic-box {
  display: flex;
  gap: 10px;
}
.mypage-area .basic-box.cl {
    flex-direction: column;
    row-gap: 10px;
}
.mypage-area .basic-box > div {
  flex: 1;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f1f1;
  border-top: 2px solid var(--main-color);
  overflow: hidden;
  padding: 30px;
}
.mypage-area .basic-box > div > p {
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}
.mypage-area .basic-box > div > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.mypage-area .basic-box.cl > div > div {
    grid-template-columns: repeat(4, 1fr);
}
.mypage-area .basic-box > div > div p:first-child {
  font-size: 14px;
  color: var(--sub-txt-color);
  margin-bottom: 10px;
}
.mypage-area .basic-box > div > div p:nth-child(2) {
  font-size: 18px;
  line-height: 1.2;
}
.input-box .input-file {
  display: flex;
  column-gap: 10px;
  margin-bottom: 5px;
}
.input-box .input-file label {
  max-width: 130px;
  white-space: nowrap;
  cursor: pointer;
}
.input-box .input-file > input[type="file"] {
  display: none;
}
.input-box .input-file .upload-name {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--border-color);
}
.input-box .input-file .upload-name:focus {
  border: 1px solid var(--main-color);
}
.input-box .file-list > p {
  font-size: 14px;
  margin: 10px 0;
}
.input-box .file-list ul {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.input-box .file-list ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
}
.input-box .file-list ul li > span {
  color: var(--sub-txt-color);
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  padding: 5px 0;
}
.input-box .file-list ul li > div {
  white-space: nowrap;
  display: flex;
  align-items: center;
  color: var(--sub-txt-color);
  font-size: 14px;
}
.input-box .file-list ul li > div > a:first-child::after {
  display: inline-flex;
  content: "";
  border-left: 1px solid var(--sub-txt-color);
  height: 10px;
  margin: 0 8px;
}
.input-box .input-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 10px;
}
.input-box .input-grid .item > p {
  font-size: 14px;
  margin-bottom: 10px;
}
.input-box .input-grid .item > p.sr::after {
  content: "*";
  color: var(--red-color);
  font-weight: 600;
  margin-left: 5px;
  font-size: 12px;
}
.input-box .input-grid .item > .warning {
  font-size: 14px;
  color: var(--sub-txt-color);
  margin-top: 10px;
}
.input-box .input-grid .item > .warning::before {
  content: "*";
  color: var(--red-color);
  font-weight: 600;
  margin-right: 5px;
  font-size: 12px;
}
.mypage-area .divider-tit {
  font-size: 24px;
  font-weight: 500;
  padding-top: 30px;
  margin: 30px 0;
  border-top: 1px solid var(--border-color);
}
#mem_userid-error {
    border: none;
    color: var(--red-color);
    font-size: 14px;
    padding: 0;
    height: unset;
    line-height: unset;
}
#mem_password-error {
    border: none;
    color: var(--red-color);
    font-size: 14px;
    padding: 0;
    height: unset;
    line-height: unset;
}
#agree-error {
    border: none;
    color: var(--red-color);
    font-size: 14px;
    padding: 0;
    height: unset;
    line-height: unset;
}
#agree2-error {
    border: none;
    color: var(--red-color);
    font-size: 14px;
    padding: 0;
    height: unset;
    line-height: unset;
}
#agree3-error {
    border: none;
    color: var(--red-color);
    font-size: 14px;
    padding: 0;
    height: unset;
    line-height: unset;
}
.help-block {
    font-size: 14px;
    color: var(--sub-txt-color);
    line-height: 1.3;
}
.help-block br {
    display: none;
}
#captcha_key-error {
    border: none;
    color: var(--red-color);
    font-size: 14px;
    padding: 0;
    height: unset;
    line-height: unset;
}
#mem_email-error {
    border: none;
    color: var(--red-color);
    font-size: 14px;
    padding: 0;
    height: unset;
    line-height: unset;
}
#mem_nickname-error {
    border: none;
    color: var(--red-color);
    font-size: 14px;
    padding: 0;
    height: unset;
    line-height: unset;
}
#mem_password_re-error {
    border: none;
    color: var(--red-color);
    font-size: 14px;
    padding: 0;
    height: unset;
    line-height: unset;
}
#cur_password-error {
    border: none;
    color: var(--red-color);
    font-size: 14px;
    padding: 0;
    height: unset;
    line-height: unset;
}
#new_password-error {
    border: none;
    color: var(--red-color);
    font-size: 14px;
    padding: 0;
    height: unset;
    line-height: unset;
}
#new_password_re-error {
    border: none;
    color: var(--red-color);
    font-size: 14px;
    padding: 0;
    height: unset;
    line-height: unset;
}
.alert-warning {
    font-size: 14px;
    color: var(--red-color);
    line-height: 1.3;
    text-align: center;
}
.alert-info {
    font-size: 14px;
    text-align: center;
    color: var(--red-color);
    line-height: 1.3;
}
.selected-product {
    border: 1px solid var(--border-color);
    padding: 32px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--sub-txt-color);
}
.selected-price {
    font-weight: 700;
    color: #333;
}
.mt-25 {
    margin-top: 25px;
}
.delete-box {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 10px;
}
.delete-box > img {
    max-width: 100%;
    object-fit: contain;
}
.leave-expl {
    text-align: center;
    line-height: 1.3;
}
.leave-message {
    text-align: center;
    line-height: 1.3;
    padding: 100px 0;
    font-size: 20px;
    font-weight: 500;
}
.warning-custom {
    text-align: center;
    margin: 20px 0 0;
    font-size: 20px;
    font-weight: 600;
}
.error {
    border: none;
    color: var(--red-color);
    font-size: 14px;
    padding: 0;
    height: unset;
    line-height: unset;
}
.subject-btn {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.type-btn {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.support-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 10px;
    flex-wrap: wrap;
}
.support-btn-wrap a {
    width: max-content;
}
.support-btn-wrap button {
    width: max-content;
}
.option-flex {
    display: flex;
    align-items: center;
    column-gap: 20px;
}
.option-flex label {
    font-size: 14px;
    color: var(--sub-txt-color);
    display: flex;
    align-items: center;
    cursor: pointer;
}
.file-delete-box {
    display: flex;
    align-items: center;
    column-gap: 5px;
}
.delete-name {
    font-size: 14px;
    text-decoration: underline;
}
.delete-file-btn {
    cursor: pointer;
}
.delete-file-btn > img {
    width: 20px;
    height: 20px;
}
.search-wrap {
    margin-top: 25px;
    display: flex;
    justify-content: flex-end;
}
.type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.type-grid .item {
    width: 100%;
    border: 1px solid var(--border-color);
    padding: 20px;
    position: relative;
    cursor: pointer;
}
.type-grid .item input[type="radio"] {
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
}
.type-grid .item:has(input[type="radio"]:checked) {
    border: 1px solid var(--main-color);
}
.type-grid .item .content {
    display: flex;
    align-items: center;
    justify-content: center;
}
.type-grid .item .content .tit {
    font-size: 14px;
    color: var(--sub-txt-color);
    margin-bottom: 15px;
    text-align: center;
}
.type-grid .item:has(input[type="radio"]:checked) .tit {
    color: var(--main-color);
}

.middle-banner-area {
    margin: 100px 0;
    width: 100%;
}
.middle-banner-slider {
    width: 100%;
    overflow: hidden;
}
.middle-banner-slider .swiper-slide > a {
    display: block;
    width: 100%;
    aspect-ratio: 6 / 1;
}
.middle-banner-slider .swiper-slide > a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.quick-menu {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 8;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.quick-menu.left {
    left: 16px;
}
.quick-menu.right {
    right: 16px;
}
.quick-menu ul {
    display: flex;
    flex-direction: column;
}
.quick-menu ul li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}
.quick-menu ul li:hover {
    background-color: rgba(0, 0, 0, 0.05);
}
.quick-menu ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 8px;;
}
.quick-menu ul li a p {
    font-size: 12px;
    color: #555;
}
.quick-menu .img-box {
    margin-bottom: 8px;
}
.quick-menu .img-box img {
    width: 26px;
    object-fit: contain;
}