@charset "utf-8";
/*
 * content.css
 * 하단은 예시입니다. 디자인맞게 수정하세요.
 *
 */

#content {
  padding-bottom: 70rem;
}
#content > .inr {
  max-width: 1260rem;
  margin: 0 auto;
  padding: 0 20rem;
}
#content h2 {
  margin-top: 80rem;
  margin-bottom: 30rem;
  font-size: 35rem;
  color: #111;
  text-align: center;
  font-weight: 700;
  word-break: keep-all;
}

@media screen and (max-width: 1024px) {
  #header {
    border-bottom: 1rem solid #dedede;
  }
}
@media screen and (max-width: 480px) {
  #content h2 {
    margin-top: 50rem;
    font-size: 28rem;
  }
}

/* ready */
.ready-page {
  & {
    padding: 80rem 0 50rem;
    text-align: center;
  }
  strong {
    display: block;
    font-size: 35rem;
  }
  strong i {
    opacity: 0.2;
    display: block;
    margin-bottom: 10rem;
    font-size: 45rem;
  }
  p {
    margin-top: 20rem;
    font-size: 18rem;
    line-height: 1.4;
  }
}
/* ready-반응형 */
@media screen and (max-width: 480px) {
  .ready-page {
    & {
      padding-top: 20rem;
    }
    strong {
      font-size: 30rem;
    }
    p {
      font-size: 16rem;
      word-break: keep-all;
    }
    p br {
      display: none;
    }
  }
}

/* New Form Page Contact */

.newform-bluedmx {
  display: flex;
  flex-direction: row;
  gap: 100px;

  .newform-bluedmx-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* .newform-bluedmx-info > *:not(:first-child) {
    font-size: var(--font-base, 14rem);
  } */

  .title-bluedmx {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    position: relative;
  }

  .title-blue {
    width: fit-content;
  }

  .title-blue::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 154px;
    background-color: #a8a8a8;
    left: 0;
    bottom: -8px;
  }

  .address-bluedmx,
  .phone-bluedmx,
  .email-bluedmx {
    display: flex;
    gap: 8px;

    svg {
      width: 18px;
      height: auto;
    }

    p {
      font-size: var(--font-base, 14rem);
      width: 100%;
    }
  }

  .newform-bluedmx-form {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: auto;
    width: 100%;
    gap: 24px;
  }

  .form-label {
    margin-bottom: 6px;
  }

  .newform input,
  .newform select {
    width: 100%;
  }

  .newform-textarea {
    width: 100%;
    height: 200px;
  }

  .form-spam {
    display: flex;
    align-items: center;
  }

  .spam {
    margin-right: 12px;
    background-color: black;
    color: white;
    padding: 16px 20px;
  }

  em.tip {
    display: inline-block;
    margin-top: 6px;
    color: gray;
  }
}

@media (max-width: 1024px) {
  .newform-bluedmx {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .newform-bluedmx {
    display: flex;
    flex-direction: column;
  }
}
