:root {
  --black: #323232;
  --white: white;
  --green: #789c43;
  --transprant: #fff0;
  --pale-violet-red: #a65e7e;
  --grey: #e2e2e2;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--black);
  background-color: #e5e5e5;
  font-family: Noto Sans TC, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}

a {
  text-decoration: underline;
  transition: all .3s;
}

img {
  width: 100%;
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1000px;
}

.section {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.survey-content-b {
  padding: 10px 20px 20px;
  position: relative;
  overflow: hidden;
}

.survey-container {
  background-color: var(--white);
  padding-left: 30px;
  position: relative;
}

.survey-border {
  width: 30px;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.survey-border-yellow {
  background-color: #fadf4b;
  width: 100%;
  height: 30%;
}

.survey-border-green {
  background-color: var(--green);
  width: 100%;
  height: 70%;
}

.survey-header-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 5px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.survey-header-logo {
  width: calc(50% - 10px);
  max-width: 280px;
}

.padding-20 {
  padding-top: 20px;
}

.survey-title {
  font-size: 28px;
  font-weight: 400;
  line-height: 130%;
}

.padding-40 {
  padding-top: 40px;
}

.txt-b {
  font-weight: 700;
}

.form-b {
  margin-bottom: 0;
}

.form {
  background-color: var(--transprant);
}

.textarea {
  border: 1px solid var(--black);
  color: var(--black);
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  min-height: 180px;
  margin-bottom: 0;
  padding: 10px;
  font-size: 18px;
  line-height: 130%;
}

.textarea::placeholder {
  color: var(--black);
}

.form-list {
  grid-row-gap: 10px;
  flex-flow: wrap;
  display: flex;
}

.form-field-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.text-field {
  border-style: none none solid;
  border-width: 1px;
  border-color: black black var(--black);
  background-color: var(--transprant);
  color: var(--black);
  flex: 1;
  height: auto;
  margin-bottom: 0;
  padding: 0 0 2px;
  font-size: 18px;
  line-height: 130%;
}

.text-field::placeholder {
  color: var(--black);
  font-size: 18px;
  line-height: 130%;
}

.radio-btn-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 5px;
  flex-flow: wrap;
  width: 100%;
  display: flex;
}

.radio-btn-field {
  justify-content: flex-start;
  align-items: center;
  padding-left: 0;
  display: flex;
  position: relative;
}

.hide {
  display: none;
}

.form-radio-btn-label {
  z-index: 1;
  margin-bottom: 0;
  line-height: 100%;
}

.radio-btn {
  border: 1px solid var(--black);
  cursor: pointer;
  width: 16px;
  height: 16px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 5px;
}

.radio-btn.w--redirected-checked {
  border-width: 5px;
  border-color: var(--green);
}

.radio-btn.w--redirected-focus {
  box-shadow: 0 0 #0000;
}

.survey-bot-b {
  background-color: var(--green);
  color: var(--white);
  padding: 20px;
}

.txt-link {
  color: var(--white);
  text-decoration: none;
}

.txt-link:hover {
  opacity: .5;
}

.survey-bg-img {
  opacity: .35;
  pointer-events: none;
  width: 50%;
  position: absolute;
  inset: auto 0% 0% auto;
}

.relative {
  z-index: 1;
  position: relative;
}

.btn-common {
  color: #fff;
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: #a65e7e;
  border-radius: 1000px;
  padding: 8px 25px;
  font-size: 17px;
  font-weight: 700;
  transition: box-shadow .5s, background-color .5s;
  box-shadow: 0 0 8px #a65e7e00;
}

.btn-common:hover {
  background-color: #6a3b5e;
  box-shadow: 0 0 8px #a65e7e4d;
}

@media screen and (max-width: 991px) {
  .section {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 130%;
  }

  .survey-content-b {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .survey-container {
    padding-left: 15px;
  }

  .survey-border {
    width: 15px;
  }

  .text-field {
    flex: 0 auto;
    width: 100%;
    font-size: 16px;
    line-height: 130%;
  }

  .text-field::placeholder {
    font-size: 16px;
    line-height: 130%;
  }

  .survey-bg-img {
    width: 65%;
  }

  .btn-common {
    font-size: 16px;
    line-height: 18px;
  }
}

@media screen and (max-width: 479px) {
  .form-field-wrap {
    grid-row-gap: 5px;
    flex-flow: wrap;
  }

  .survey-bg-img {
    width: 80%;
  }
}


