@charset "UTF-8";

/* ------------------------------ reset ------------------------------ */

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

input[type='checkbox'],
input[type='radio'] {
  margin: 0;
}

input[type='submit'],
input[type='button'],
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}


/* ------------------------------ adv-form ------------------------------ */

/* PC */
@media print, screen and (min-width: 769px) {
  .adv-form__wrap {
    padding-bottom: 69px;
  }
  .adv-form {
    width: 100%;
    margin: 0 auto;
  }
  .adv-form__inner {
    margin-bottom: 40px;
  }
  .adv-form__content {
    margin-bottom: 30px;
  }
  .adv-form__content:last-of-type {
    margin-bottom: 0;
  }
  .adv-form__question {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  .adv-form__select {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .adv-form__select-txt {
    font-size: 16px;
    min-height: 32px;
  }
  .adv-form__select-txt:first-of-type {
    margin-right: 20px;
  }
  .adv-form__select-list {
    display: flex;
    margin-right: 20px;
  }
  .adv-form__select-item {
    width: 32px;
    margin-right: 20px;
    position: relative;
    z-index: 2;
  }
  .adv-form__select-item::after {
    content: "";
    width: 20px;
    height: 1px;
    color: #E7EEEC;
    background-color: #E7EEEC;
    position: absolute;
    right: -20px;
    top: 34px;
    z-index: -1;
  }
  .adv-form__select-item:last-of-type {
    margin-right: 0;
  }
  .adv-form__select-item:last-of-type::after {
    content: none;
    content: unset;
  }
  .adv-form__select-num {
    display: block;
    font-size: 12px;
    text-align: center;
    line-height: 1.5;
  }
  .adv-form__select-circle {
    width: 100%;
    min-height: 32px;
    border-radius: 50%;
    border: 1px solid #E7EEEC;
    cursor: pointer;
  }
  .adv-form__select-circle:checked {
    outline: 1px solid #60B8EF;
    border: 4px solid #fff;
    background-color: #60B8EF;
  }
  .adv-form__select-list.is-noActive .adv-form__select-circle {
    background-color: #F8F8F8;
  }
  .adv-form__txtarea {
    width: 100%;
    min-height: 140px;
    font-size: 14px;
    line-height: 1.6;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #E7EEEC;
    background-color: #F8F8F8;
    box-sizing: border-box;
  }
}
/* SP */
@media print, screen and (max-width: 768px) {
  .adv-form__wrap {
    padding-bottom: 60px;
  }
  .adv-form {
    width: 285px;
    margin: 0 auto;
  }
  .adv-form__inner {
    margin-bottom: 30px;
  }
  .adv-form__content {
    margin-bottom: 20px;
  }
  .adv-form__content:last-of-type {
    margin-bottom: 0;
  }
  .adv-form__question {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 4px;
  }
  .adv-form__select {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .adv-form__select-txt {
    font-size: 12px;
    line-height: 1.5;
    width: 50%;
    margin-bottom: 2px;
  }
  .adv-form__select-txt:first-of-type {
    text-align: left;
    order: 1;
  }
  .adv-form__select-txt:last-of-type {
    text-align: right;
    order: 2;
  }
  .adv-form__select-list {
    display: flex;
    margin-right: 20px;
    order: 3;
  }
  .adv-form__select-item {
    width: 24px;
    margin-right: 20px;
    position: relative;
    z-index: 2;
  }
  .adv-form__select-item::after {
    content: "";
    width: 20px;
    height: 1px;
    color: #E7EEEC;
    background-color: #E7EEEC;
    position: absolute;
    right: -20px;
    top: 24px;
    z-index: -1;
  }
  .adv-form__select-item:last-of-type {
    margin-right: 0;
  }
  .adv-form__select-item:last-of-type::after {
    content: none;
    content: unset;
  }
  .adv-form__select-num {
    display: block;
    font-size: 10px;
    text-align: center;
    line-height: 1;
    margin-bottom: 2px;
  }
  .adv-form__select-circle {
    width: 100%;
    min-height: 24px;
    border-radius: 50%;
    border: 1px solid #E7EEEC;
    cursor: pointer;
  }
  .adv-form__select-circle:checked {
    outline: 1px solid #60B8EF;
    border: 1px solid #fff;
    background-color: #60B8EF;
  }
  .adv-form__select-list.is-noActive .adv-form__select-circle {
    background-color: #F8F8F8;
  }
  .adv-btn {
    width: 100%;
  }
  .adv-form__txtarea {
    width: 100%;
    min-height: 140px;
    font-size: 12px;
    line-height: 1.5;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #E7EEEC;
    background-color: #F8F8F8;
    box-sizing: border-box;
  }
}

.adv-form__txtarea.form-active{
  background-color: #ffffff;
}
.adv-form__txtarea:focus{
  outline: none;
  color: #000000;
  border:1px solid #60B8EF;
  background-color: #ffffff;
}
.questionnaire_inner_link{
  text-align: center;
  font-size: 12px;
  margin-top: 30px;
  display: block;
  text-align: center;
}
