/*=== メインエリア ===*/
.main-inner {
  margin: 0 auto 135px;
  background-color: #fff;
}
.main-cont {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.main-ttl {
  padding: 7px 25px 1px;
  font-size: 24px;
  font-weight: bold;
  border-bottom: 2px solid #232c35;
  background-color: #f1f5f8;
}


/*=== 回答の進捗状況 ===*/
.graph {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 20px;
}
.graph-txt {
  margin-right: 10px;
}
.graph-main {
  width: 339px;
  height: 57px;
  background: url(/images/azby/enquete/common/bg-gra.gif) no-repeat left top / 100% auto;
  overflow: hidden;
}
.graph-meter {
  height: 26px;
  margin: 29px 0 0 11px;
}
.graph-nograph {
  visibility: hidden;
}


/*=== アンケート ===*/
.enquete {
  margin-top: 10px;
}
.enquete-head {
  display: none;
}
.enquete-lead {
  margin-top: 15px;
  font-size: 18px;
}
.enquete-section {
  padding: 0 20px;
}
.enquete-ttl {
  margin-top: 40px;
  padding-bottom: 2px;
  border-bottom: 1px solid #5f6b78;
  font-size: 18px;
  font-weight: bold;
}
.enquete-cont {
  margin-top: 20px;
  font-size: 14px;
}
.enquete-cont + .enquete-cont {
  margin-top: 30px;
}
.enquete-question {
  padding: 7px 10px 5px;
  font-weight: bold;
  font-size: 14px;
  background-color: #f2f5f8;
}
.enquete-question span {
  text-decoration: underline;
}
.enquete-question .type-highlight {
  color: #ac2330;
  text-decoration: none;
}
.enquete-question_sub {
  position: relative;
  padding: 2px 0 0 15px;
  font-weight: bold;
}
.enquete-question_sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: #2770a8;
}
.enquete-txt {
  margin-top: 10px;
}
.enquete-form {
  margin-top: 10px;
  padding: 0 20px;
}
.enquete-sub {
  margin-bottom: 30px;
  padding: 0 15px;
}
.enquete-item {
  position: relative;
  margin-top: 8px;
  padding-left: 20px;
}
.enquete-sub .enquete-item {
  display: inline-block;
  margin-right: 60px;
}
.enquete-sub .enquete-item:last-child {
  margin-right: 0;
}
.enquete-select {
  width: 100%;
  max-width: 250px;
  margin-top: 5px;
  padding: 4px 10px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.enquete textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #ccc;
}
.enquete input[type="radio"],
.enquete input[type="checkbox"] {
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  margin: 0;
}
.enquete input[type="text"] {
  position: absolute;
  top: -6px;
  width: 100%;
  max-width: 320px;
  margin-left: 10px;
  padding: 2px 5px;
  border: 1px solid #ccc;
}
.enquete input[type="text"]::-webkit-input-placeholder {
  color: #777;
  font-size: 14px;
}
.enquete input[type="text"]:-moz-placeholder {
  color: #777;
  font-size: 14px;
}
.enquete input[type="text"]::-moz-placeholder {
  color: #777;
  font-size: 14px;
}
.enquete input[type="text"]:-ms-input-placeholder {
  color: #777;
  font-size: 14px;
}


/*=== 確認ボタン ===*/
.confirm {
  margin-top: 60px;
  text-align: center;
}
.confirm-btn {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}
.confirm-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.confirm-btn input[type="button"] {
  width: 100%;
  padding: 16px 30px 15px;
  border: none;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 1.2;
  background-color: #ac2330;
  border-radius: 5px;
  cursor: pointer;
}
.confirm-btn input[type="button"]:hover {
  opacity: 0.7;
}
.confirm-transition {
  margin-top: 25px;
}
a.confirm-link {
  position: relative;
  display: inline-block;
  color: #746749;
  padding-left: 15px;
}
a.confirm-link:visited {
  color: #746749;
}
a.confirm-link::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5.5px 0 5.5px 7px;
  border-color: transparent transparent transparent #ee416a;
}


/*=== ご応募ありがとうございました ===*/
.thanks {
  margin-top: 40px;
  text-align: center;
}
.thanks-ttl {
  color: #ac2330;
  font-weight: bold;
  font-size: 18px;
}
.thanks-thumb {
  margin: 20px auto 0;
}
.thanks-txt {
  margin-top: 20px;
}


@media only screen and (max-width: 768px) {
  /*=== メインエリア ===*/
  .main-inner {
    margin: 0;
    padding-bottom: 110px;
  }
  .main-cont {
    padding: 0 10px;
  }
  .main-ttl {
    padding: 7px 10px 1px;
    font-size: 18px;
  }
  /*=== 回答の進捗状況 ===*/
  .graph-main {
    flex-shrink: 0;
    width: 230px;
    height: 40px;
  }
  .graph-meter {
    height: 17px;
    margin: 20px 0 0 8px;
  }
  /*=== アンケート ===*/
  .enquete-lead {
    font-size: 16px;
  }
  .enquete-cont {
    margin-top: 10px;
  }
  .enquete-section {
    padding: 0;
  }
  .enquete-ttl {
    font-size: 16px;
  }
  .enquete-question {
    padding: 7px 10px 5px;
    font-weight: bold;
    font-size: 14px;
    background-color: #f2f5f8;
  }
  .enquete-form {
    padding: 0 10px;
  }
  .enquete-sub .enquete-item {
    display: block;
    margin-right: 0;
  }
  .enquete input[type="text"] {
    display: block;
    position: static;
    margin: 3px 0 0;
  }
  input[type="text"]::-webkit-input-placeholder {
    color: transparent;
  }
  input[type="text"]:-moz-placeholder {
    color: transparent;
  }
  input[type="text"]::-moz-placeholder {
    color: transparent;
  }
  input[type="text"]:-ms-input-placeholder {
    color: transparent;
  }
  .enquete-transition {
    margin-top: 15px;
  }
  a.enquete-btn {
    max-width: 260px;
    font-size: 14px
  }
  a.enquete-btn::after {
    right: 17px;
    width: 8px;
    height: 8px;
  }
  /*=== 確認ボタン ===*/
  .confirm {
    margin-top: 40px;
  }
  .confirm-btn {
    max-width: 260px;
  }
  .confirm-btn::after {
    right: 17px;
    width: 8px;
    height: 8px;
  }
  .confirm-btn input[type="button"] {
    font-size: 14px;
  }
  a.confirm-link::before {
    top: 5px;
  }
  /*=== ご応募ありがとうございました ===*/
  .thanks {
    margin-top: 25px;
  }
  .thanks-ttl {
    font-size: 16px;
  }
  .thanks-txt {
    text-align: left;
  }
}