@charset "UTF-8";

/* first-view animation */
.first-view {
  height: 30vw;
  min-height: 140px;
  max-height: 270px;
}

/* contact */
.contact {
  padding: clamp(45px, 10vw, 90px) 7vw;
}

.contact-inner {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.explain {
  color: #696969;
  font-size: clamp(12px, 1.7vw, 18px);

}

.contact form p:not(.submit-btn p) {
  padding-top: clamp(20px, 7%, 40px);
}

.contact form label {
  display: block;
  margin-bottom: 10px;
}

.contact form label {
  color: #5e5e5e;
  font-size: clamp(12px, 1.7vw, 16px);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 2%;
}

.contact form label span{
  border-radius: 4px ;
  background-color: #ff3535;
  color: #fcfcfc;
  font-size: 0.5em;
  font-weight: 500;
  padding:3px 5px;
}

.contact form input:not(.submit-btn),
.contact form textarea{
  border: solid 1px #71deff;
  border-radius: 5px;
  padding: 7px;
  width: 100%;
}

.contact form input:not(.submit-btn) {
  max-width: 500px;
}

.submit-btn-cover {
  width: 18vw;
  height: 6vw;
  max-width: 145px;
  min-width: 100px;
  max-height: 45px;
  min-height: 32px;
  border-radius: 30px;
  background: linear-gradient(45deg, #50D5FF, #51C0E3);
  padding: 0 clamp(19px, 5%, 25px);
  position: relative;
  display: block;
  margin: clamp(30px,5vw,70px) auto 0;
}

.submit-btn-cover:hover{
    background: linear-gradient(45deg, #7be0ff, #6fdeff);
}


.submit-btn {
  color: #fcfcfc;
  font-size: clamp(12px, 2.2vw, 16px);
  font-weight: 600;
  position: absolute;
  padding-left: 12%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  text-align: start;
  background-color: transparent;
}

.submit-btn-icon{
  width: 1vw;
  height: 1vw;
  max-width: 10px;
  min-width: 8px;
  max-height: 10px;
  min-height: 8px;
  border-right: solid 3px;
  border-top: solid 3px;
  transform: rotate(45deg) translateY(-50%);
  color: #fcfcfc;
  position: absolute;
  right: 12%;
  top: 50%;
}
