@charset "utf-8";
@import url(common.css);
.page-contact .contact,
#Form {
  max-width: 1100px;
  margin: 0 auto;
  display: block;
  padding: 0 20px;
}
small {
  opacity: 0.5;
}
.page-contact .LINE,
.page-contact .DISC,
.page-contact .kakao,
.page-contact .X {
  background-color: rgba(20, 22, 26, 0.6);
  border-radius: 30px;
  margin: clamp(16px, 3vw, 60px) clamp(4px, 3vw, 15px);
  padding: clamp(4px, 3vw, 20px) clamp(4px, 3vw, 15px);
}
.page-contact .LINE-top,
.page-contact .DISC-top,
.page-contact .kakao-top,
.page-contact .X-top,
.page-contact .LINE-bottom,
.page-contact .DISC-bottom,
.page-contact .kakao-bottom,
.page-contact .X-bottom {
  display: flex;
  align-items: center;
}
.page-contact .LINE-bottom,
.page-contact .DISC-bottom,
.page-contact .kakao-bottom,
.page-contact .X-bottom {
  gap: 5%;
}
.page-contact .LINE-top img:first-child,
.page-contact .DISC-top img:first-child,
.page-contact .kakao-top img:first-child,
.page-contact .X-top img:first-child {
  width: 20%;
}
.page-contact .Line-Boder,
.page-contact .DISC-Boder,
.page-contact .kakao-Boder,
.page-contact .X-Boder {
  width: 80%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #4fa3a5;
  margin-left: clamp(8px, 3vw, 24px);
  padding: 20px 0;
}
.page-contact .LINE-top p,
.page-contact .DISC-top p,
.page-contact .kakao-top p,
.page-contact .X-top p {
  font-size: clamp(15px, 5vw, 60px);
}
.page-contact .LINE-top img:last-child,
.page-contact .DISC-top img:last-child,
.page-contact .kakao-top img:last-child,
.page-contact .X-top img:last-child {
  width: 10%;
  margin-left: clamp(25px, 4vw, 29px);
}
.page-contact .LINE-text,
.page-contact .DISC-text,
.page-contact .kakao-text,
.page-contact .X-text {
  width: 75%;
  margin-left: clamp(5px, 3vw, 10px);
  padding-top: clamp(8px, 3vw, 30px);
  font-size: clamp(2px, 3vw, 40px);
  line-height: 1.4;
}
.page-contact .LINE-text p:last-child,
.page-contact .DISC-text p:last-child,
.page-contact .kakao-text p:last-child,
.page-contact .X-text p:last-child {
  padding-top: clamp(8px, 3vw, 40px);
}
.page-contact .LINE-bottom > img,
.page-contact .DISC-bottom > img,
.page-contact .kakao-bottom > img,
.page-contact .X-bottom > img {
  width: 25%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
}
.page-contact .c-field,
.page-contact .c-field-l {
  margin-bottom: 20px;
  position: relative;
  display: block;
}
.page-contact .c-field > input,
.page-contact .c-field-l > textarea {
  width: 100%;
  background-color: rgba(20, 22, 26, 0.8);
  border-radius: 10px;
  margin-top: 5px;
}
.page-contact .c-field > input {
  height: 60px;
}
.page-contact .c-field-l > textarea {
  height: 500px;
  padding: 10px 12px;
}
.page-contact .c-field__req {
  color: red;
}
.page-contact .c-fileRow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.page-contact .c-file__preview {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
}
.page-contact .c-file__thumb {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: 1px solid rgba(230, 232, 234, 0.14);
  background: rgba(230, 232, 234, 0.06);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.page-contact .c-file__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-contact .c-file__meta {
  font-size: 12px;
  opacity: 0.75;
  margin-top: 6px;
}
.page-contact .c-file__clear {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(230, 232, 234, 0.18);
  background: rgba(230, 232, 234, 0.06);
  color: var(--fg);
  cursor: pointer;
}
.page-contact .c-file__clear:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.page-contact .c-submit {
  display: block;
  margin: 20px auto;
  padding: 10px 60px;
  font-size: 30px;
  border-radius: 30px;
  background-color: var(--bg);
  opacity: 0.9;
}
.page-contact .c-submit:hover {
  background-color: var(--ac);
  color: var(--bg);
}
#app .top,
.containar .top {
  width: 120px;
  margin: 10px 20px 10px auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 2;
}
#app .top a,
.containar .top a {
  display: inline-flex;
  width: 120px;
  justify-content: flex-end;
}
#app .top img,
.containar .top img {
  width: 120px;
  display: block;
}
.c-error {
  display: none;
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.4;
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.c-error.is-show {
  display: block;
}
.c-input.is-invalid,
.c-textarea.is-invalid {
  outline: none;
  border-color: rgba(255, 90, 90, 0.9);
  box-shadow: 0 0 0 3px rgba(255, 90, 90, 0.15);
}
.top a:hover img[src*="IMG/TOP.png"] {
  transform: translateY(-2px) scale(1.06);
  opacity: 0.9;
}
ul .noneli {
  display: none;
}
.call-contact {
  width: min(1040px, calc(100% - 40px));
  margin: 54px auto;
  padding: 1px;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.36);
}

.call-contact__inner {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 27px;
  background-color: rgba(20, 22, 26, 0.6);
  border: 1px solid rgba(230, 232, 234, 0.12);
  text-align: center;
}

.call-contact__label {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(79, 163, 165, 0.16);
  border: 1px solid rgba(79, 163, 165, 0.38);
  color: #8bd2d4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.call-contact h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: 0.06em;
  line-height: 1.25;
}

.call-contact__lead {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.9;
  opacity: 0.92;
}

.call-contact__buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.call-contact__btn {
  position: relative;
  display: flex;
  min-height: 118px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  padding: 24px 26px;
  border-radius: 22px;
  overflow: hidden;
  text-align: left;
  border: 1px solid rgba(230, 232, 234, 0.18);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.call-contact__btn::after {
  content: "›";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  font-weight: 300;
  opacity: 0.75;
}

.call-contact__btn--line {
  background: linear-gradient(
    135deg,
    rgba(0, 185, 0, 0.92),
    rgba(0, 120, 60, 0.88)
  );
  color: #fff;
}

.call-contact__btn--kakao {
  background: linear-gradient(
    135deg,
    rgba(250, 225, 0, 0.96),
    rgba(196, 148, 0, 0.92)
  );
  color: #191919;
}

.call-contact__btn:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
  filter: brightness(1.05);
}

.call-contact__btn-main {
  font-size: clamp(21px, 2.4vw, 30px);
  font-weight: 1000;
  letter-spacing: 0.04em;
}

.call-contact__btn-sub {
  padding-right: 38px;
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 700;
  line-height: 1.6;
  opacity: 0.86;
}

.call-contact__note {
  max-width: 760px;
  margin: 24px auto 0;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(230, 232, 234, 0.06);
  border: 1px solid rgba(230, 232, 234, 0.12);
  font-size: clamp(12px, 1.3vw, 14px);
  line-height: 1.8;
  opacity: 0.86;
}

@media (max-width: 768px) {
  .call-contact {
    width: min(100% - 24px, 1040px);
    margin: 34px auto;
    border-radius: 22px;
  }

  .call-contact__inner {
    padding: 24px 18px;
    border-radius: 21px;
  }

  .call-contact__buttons {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
  }

  .call-contact__btn {
    min-height: 104px;
    padding: 20px 22px;
    border-radius: 18px;
  }

  .call-contact__btn::after {
    right: 18px;
    font-size: 38px;
  }
}
