.banner {
  display: none;
}

#content {
  background: url(../../main/img/bg/bg_texture-01.png);
  background-size: cover;
}

.contentInfo {
  width: 70%;
  margin: auto;
  padding: 1em 0 4em 0;
  border-bottom: 1px solid var(--mainColor);
}

.contentInfo h1 {
  font-size: 2.4em;
  font-weight: 700;
  color: var(--mainColor); 
  letter-spacing: 4px;
}

.contentInfo h3 {
  font-weight: 500;
  color: var(--mainColor);
  letter-spacing: 4px;   
}

.contentInfo .phone {
  background-color: #B6A188;
  padding: 2em;
  margin: 3em 0;
  position: relative;
}

.contentInfo .phone div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contentInfo .phone img {
  width: 3%;
  margin-right: 2em;
}

.contentInfo .phone div a {
  font-size: 1.8em;
  font-weight: 700;
  text-decoration: none;
  color: white;
}

.contentInfo .phone > a {
  position: absolute;
  top: 50%;
  right: 15%;
  font-size: 0.8em;
  color: white;
}

.contentInfo > p {
  line-height: 2em;
}

input[type=text], input[type=email] {
  background: white;
  border: none;
  border-radius: 0;
  outline: none;
  width: 85%;
  font-size: 17px;
}

textarea {
  border: none !important;
  background: white;
  resize: none;
  width: 85%;
  margin-top: 0.5em;
  outline: none;
  font-size: 17px;
}

.g-recaptcha {
  position: relative;
  padding-left: 150px;
}


.flex > div {
  width: 40%;
}

.contactDiv {
  height: 850px;
  display: flex;
  align-items: center;
}

.contactForm {
  width: 100%;
}

.contactForm > div {
  display: flex;
  justify-content: center;
}

.topNav > div {
  width: 70%;
  margin: auto;
}

.contactDiv .topNav {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
}

.contactDiv .topNav label {
  color: var(--mainColor);
  display: inline-block;
  font-size: 1em;
  width: 15%;
  vertical-align: top;
  font-weight: 400;
  font-family: 'Noto Serif TC';
  
}

select {
  background-color: unset;
  border: solid 1px var(--mainColor);
  color: var(--mainColor);
  border-radius: 0;
  width: 50%;
  font-size: 1em;
  font-family: 'Noto Serif TC';
  font-weight: 500;
  margin-bottom: 1em;
}

button {
  border: none;
  background: #666666;
  outline: none;
  color: #FFF;
  padding: 0.5em 3em;
  border-radius: 5px;
  margin: 2em 2em 2em 0em;
  font-size: 1.2em;
  font-family: 'Noto Serif TC';
  font-weight: 500;
}

.agree {
  display: flex;
  align-items: center;
  margin-top: 2em;
  padding-top: 5px;
  font-size: 0.8em;
  color: var(--text-gray);
}

.agree {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.submitDiv {
  display: flex;
  flex-direction: column;
  margin-left: 25.5%;
  width: 61%;
}

/* Hide the browser's default checkbox */
.agree input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: none;
  border: solid 1px var(--mainColor);
}

/* On mouse-over, add a grey background color */
.agree:hover input ~ .checkmark {
  background-color: #ccc;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.agree input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.agree .checkmark:after {
  left: 6px;
  top: -1px;
  width: 8px;
  height: 18px;
  border: solid var(--text-gray);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

@media screen and (max-width: 1024px) {
  .contentInfo .phone > a {
    right: 5%;
  }
}

@media screen and (max-width: 820px) {
  .contentInfo .phone > a {
    top: 70%;
  }
}

@media screen and (max-width: 428px) {
  .contentInfo {
    align-items: center;
    margin: 0 1em;
    padding: 1em 0 2em 0;
    width: 90%;
  }
  .contentInfo .phone {
    margin: 1em 0;
    padding: 2em 0 2em 2em;
  }
  .contentInfo .phone > a {
    right: 0;
    left: 5%;
  }
  .contentInfo .phone div {
    justify-content: flex-start;
  }
  .contentInfo .phone img {
    width: 8%;
    margin-right: 1em;
  }
  .topNav > div {
    width: 90%;
  }
  input[type=text], input[type=email], textarea {
    width: 80%;
  }
  .submitDiv {
    margin-left: 18%;
    width: 75%;
  }
  .contactDiv {
    padding-top: 4em;
    height: 850px;
  }
  .buttonDiv {
    display: flex;
  }
  .buttonDiv > button {
    margin: 2em 1em 2em 0;
    font-size: 1em;
    padding: 0.5em 2em;
  }
  .contactDiv .topNav {
    flex-direction: column;
    align-items: center;
  }
}







