@charset "UTF-8";

/* contact */
#contact .width-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#contact .width-wrap .title-area h6 {
  margin-bottom: 40px;
}
#contact .width-wrap form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
#contact .width-wrap form .col > p {
  margin-bottom: 16px;
}
#contact .width-wrap form .col .radio-area {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
#contact .width-wrap form .col .input-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#contact .width-wrap form .col.check {
  display: flex;
  align-items: center;
  gap: 2px;
}
#contact .width-wrap form .col.check label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
input[type="text"],
input[type="text"]::placeholder,
textarea {
  font-family: "Pretendard JP";
  font-weight: 400;
  line-height: 150%;
  font-size: var(--font-18);
  letter-spacing: var(--font-18-ls);
}
input[type="text"]::placeholder,
textarea::placeholder {
  color: #b7b7b7;
}
input[type="text"] {
  border-radius: 12px;
  background: #f9f9f9;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
}
textarea {
  padding: 20px;
  box-sizing: border-box;
  border-radius: 12px;
  background: #f9f9f9;
  width: 100%;
  height: 200px;
  margin-top: 16px;
}
input[type="checkbox"] {
  background: url("/media/img/icon/icon_agree_check.svg") 50% no-repeat;
  background-size: auto;
  padding: 0;
  margin: 0;
  width: 16px;
  aspect-ratio: 1 / 1;
  border-radius: 1000px;
  border: 1px solid #656565;
  appearance: none;
  cursor: pointer;
  transition: all 0.25s linear;
}
input[type="checkbox"]:checked {
  background: var(--po) url("/media/img/icon/icon_agree_checked.svg") 50%
    no-repeat;
  border: 1px solid var(--po);
}
input[type="radio"] {
  position: absolute;
  width: 0;
  opacity: 0;
}
.radio {
  padding: 20px;
  box-sizing: border-box;
  border-radius: 12px;
  background: #f9f9f9;
  color: #b7b7b7;
  display: block;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.25s linear;
}
.radio img {
  display: none;
}
.radio:hover,
.radio.check {
  background: var(--black);
  color: var(--white);
}
.radio.check img {
  display: block;
}
div.required {
  position: relative;
}
div.required:before {
  content: url("/media/img/icon/icon_asterisk_red.svg");
  position: absolute;
  top: 15px;
  left: 20px;
}
div.required input[type="text"] {
  padding: 20px 20px 20px 34px;
}
p.required {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

/* banner */
#banner .width-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 160px;
  padding: var(--paddingBannerS);
}
#banner .width-wrap .item p:first-child {
  color: var(--black-op5);
  margin-bottom: 6px;
}

/* responsive */
@media all and (max-width: 1550px) {
  #banner .width-wrap {
    gap: 113px;
  }
}
@media all and (max-width: 1200px) {
  #contact .width-wrap {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .radio {
    padding: 15px 16px;
  }

  #banner .width-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }
}
@media all and (max-width: 500px) {
  #contact .width-wrap .title-area h6 {
    margin-bottom: 16px;
  }
  #contact .width-wrap form {
    gap: 28px;
  }
  #contact .width-wrap form .col > p {
    margin-bottom: 14px;
  }
  #contact .width-wrap form .col.check {
    flex-direction: column;
    align-items: flex-start;
  }
  #contact .width-wrap form .col.check label {
    align-items: flex-start;
  }
  #contact .width-wrap form .col.check a {
    margin-left: 22px;
  }
  input[type="text"] {
    padding: 10px 12px;
    border-radius: 8px;
  }
  textarea {
    padding: 10px 12px;
    border-radius: 8px;
    height: 120px;
    margin-top: 14px;
  }
  .radio {
    font-size: 14px;
    letter-spacing: -0.56px;
    padding: 10px 12px;
    border-radius: 8px;
  }
  div.required:before {
    top: 4px;
    left: 12px;
  }
  div.required input[type="text"] {
    padding: 10px 12px 10px 26px;
  }
}
