@charset "UTF-8";
/* 2.2 form
------------------------------ */
.form--post dt {
    font: normal bold 16px/1.9 '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Hiragino Kaku Gothic ProN', 'Osaka', 'ＭＳ Ｐゴシック', sans-serif;
    letter-spacing: 0.1em;
    margin: 3em 0 1em;
}
.form--post dd {
    font: normal bold 14px/1.9 '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Hiragino Kaku Gothic ProN', 'Osaka', 'ＭＳ Ｐゴシック', sans-serif;
    letter-spacing: 0.1em;
    margin: 0 0 1em;
}
/* placeholder */
::-webkit-input-placeholder {
  color: #f6f6f6;
}
::-moz-placeholder {
  color: #f6f6f6;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #f6f6f6;
}
:-moz-placeholder {
  color: #f6f6f6;
}
/* autofill */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}
/* input */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="number"] {
  color: inherit;
  font: normal bold 14px/1.9 '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Hiragino Kaku Gothic ProN', 'Osaka', 'ＭＳ Ｐゴシック', sans-serif;
letter-spacing: 0.1em;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius:0;
  border: 1px solid #000;
  background: #f6f6f6;
  padding: 0.5em;
  margin: 0 10px 0 0;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus {
  border-color: inherit;
}
input[type="text"].form__error,
input[type="tel"].form__error,
input[type="email"].form__error,
input[type="password"].form__error,
input[type="number"].form__error {
  background: #fff0ea;
  color: #ff7676;
  border-color: #ff7676;
}
input[type="text"].form__error:focus,
input[type="tel"].form__error:focus,
input[type="email"].form__error:focus,
input[type="password"].form__error:focus,
input[type="number"].form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
input[type="text"][disabled],
input[type="tel"][disabled],
input[type="email"][disabled],
input[type="password"][disabled],
input[type="number"][disabled] {
  background: #f6f6f6;
  border: none;
  opacity: 0.5;
}
.input--half {
  width: 50% !important;
}
.input--quarter {
  width: 25% !important;
}
/* textarea */
textarea {
  color: inherit;
  font: normal bold 14px/1.9 '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Hiragino Kaku Gothic ProN', 'Osaka', 'ＭＳ Ｐゴシック', sans-serif;
    letter-spacing: 0.1em;
  -webkit-appearance: none;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  background: #f6f6f6;
  border: 1px solid #000;
  padding: 0.5em;
  height: 10em;
}
textarea:focus {
  border-color: inherit;
}
textarea.form__error {
  background: #fff0ea;
  color: #ff7676;
  border-color: #ff7676;
}
textarea.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
textarea[disabled] {
  background: #ddd;
  border: none;
  opacity: 0.5;
}
/* select */
.form__select {
  display: inline-block;
  position: relative;
}
.form__select select {
    color: inherit;
    font: normal bold 14px/1.9 '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Hiragino Kaku Gothic ProN', 'Osaka', 'ＭＳ Ｐゴシック', sans-serif;
    letter-spacing: 0.1em;
    -webkit-appearance: none;
    display: inline-block;
    width: 100%;
    max-width: 100%;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    border: 1px solid #000;
    padding: 0.3em 0.5em;
    padding-right: 2em;
}
.form__select select:focus {
  border-color: inherit;
}
.form__select select.form__error {
  background: #fff0ea;
  color: #ff7676;
  border-color: #ff7676;
}
.form__select select.form__error:focus {
  background: transparent;
  color: inherit;
  border-color: inherit;
}
.form__select select[disabled] {
  background: #f6f6f6;
  border: none;
  opacity: 0.5;
}
.form__select::after {
    content: '';
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 2px solid #000;
    border-top: none;
    border-right: none;
    margin: -0.45em 0 0;
    position: absolute;
    right: 0.75em;
    top: 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* checkbox */
.form__checkbox label p {
    color: inherit;
    font: normal bold 14px/1.9 '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Hiragino Kaku Gothic ProN', 'Osaka', 'ＭＳ Ｐゴシック', sans-serif;
    letter-spacing: 0.1em;
    display: block;
    padding: 0.5em;
    position: relative;
    cursor: pointer;
}
.form__checkbox input[type="checkbox"],
.form__checkbox input[type="radio"] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__checkbox.form__error {
  color: #ff7676;
}
.form__checkbox label p {
  padding-left: 1.6em;
}
.form__checkbox label p::before {
    content: '';
    display: inline-block;
    width: 1.1em;
    height: 1.1em;
    border-radius: 0;
    border: 1px solid #000;
    margin: -0.6em 0 0;
    position: absolute;
    left: 0;
    top: 50%;
}
.form__checkbox label p::after {
    content: '';
    display: inline-block;
    width: 0.7em;
    height: 0.3em;
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    margin: -0.33em 0 0;
    position: absolute;
    left: 0.2em;
    top: 70%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
}
.form__checkbox :checked ~ p::before {
  background: #6192b8;
  border-color: #6192b8;
}
.form__checkbox :checked ~ p::after {
  top: 50%;
  opacity: 1;
}
/* radio */
.form__radio label p {
  color: inherit;
  font: normal bold 14px/1.9 '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Hiragino Kaku Gothic ProN', 'Osaka', 'ＭＳ Ｐゴシック', sans-serif;
    letter-spacing: 0.1em;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__radio input[type="checkbox"],
.form__radio input[type="radio"] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__radio.form__error {
  color: #ff7676;
}
.form__radio label p {
  padding-left: 1.6em;
}
.form__radio label p::before {
  content: '';
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  border-radius: 50%;
  border: 1px solid #000;
  margin: -0.6em 0 0;
  position: absolute;
  left: 0;
  top: 50%;
}
.form__radio :checked ~ p::before {
    border-color: #6192b8;
    width: 0.7em;
    height: 0.7em;
    border-width: 0.3em;
}
/* toggle button */
.form__toggle label p {
  color: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.06em;
  display: block;
  padding: 0.5em;
  position: relative;
  cursor: pointer;
}
.form__toggle input[type="checkbox"],
.form__toggle input[type="radio"] {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.form__toggle.form__error {
  color: #ff7676;
}
.form__toggle label p {
  padding-left: 0;
  position: relative;
}
.form__toggle label p::before,
.form__toggle label p::after {
  content: '';
  display: block;
  height: 30px;
  margin: -15px 0 0;
  position: absolute;
  border: 1px solid #000;
}
.form__toggle label p::before {
  width: 50px;
  border-radius: 0;
  right: 0;
  top: 50%;
}
.form__toggle label p::after {
  width: 30px;
  background: #fff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  right: 20px;
  top: 50%;
}
.form__toggle :checked ~ p::before {
  background: #6192b8;
  border-color: #6192b8;
}
.form__toggle :checked ~ p::after {
  right: 0;
}
/* horizontal */
.form--horizontal li {
  display: inline-block;
}
.form--horizontal label {
  display: inline-block;
  margin: 0 0.3em 0 0;
}


@media (max-width: 769px) {
    .form--post dt {
        font-size: 14px;
        margin: 2.4em 0 1em;
    }
}


/* アンケート */
body#nfmember_questionnaire #wrap #main #content .form_box {
    display: block;
    width: 540px;
    margin: 0 auto;
}
body#nfmember_questionnaire #wrap #main.confirm #content .section-tit {
    text-align: center;
    margin: 0 0 70px;
    font: normal bold 18px/1.2 'Roboto', sans-serif;
    letter-spacing: 0.18em;
}
body#nfmember_questionnaire #wrap #main.confirm #content .txt--basic {
    margin: 0 0 40px;
}
body#nfmember_questionnaire #wrap #main.complete #content .txt--basic {
    text-align: center;
    margin: 0 0 40px;
}
body#nfmember_questionnaire #wrap #main.complete #content .btn {
    display: block;
    width: 380px;
    margin: 0 auto;
}
body#nfmember_questionnaire #wrap #main.complete #content .btn .btn--main {
    width: 100%;
    display: block;
    padding: 10px 0;
    text-align: center;
    border: 1px solid;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    appearance: none;
    -webkit-appearance: none;
    margin: 0 0 15px;
    cursor: pointer;
}
body#nfmember_questionnaire #wrap #main.complete #content .btn .btn--main:hover { background: #6192b8; }

.form--confirm { margin: 0 auto 40px; }
.form--confirm * {
  transition: none;
}
.form--confirm dt {
    font: normal bold 14px 'Roboto', sans-serif;
    letter-spacing: 0.13em;
    font-weight: bold;
    margin: 0 0 14px;
}
.form--confirm dt:first-of-type {
    margin-top: 0;
}
.form--confirm dd { margin-left: 0; }
.form--confirm dd:not(:last-of-type) {
    margin: 0 auto 25px;
}
.form--confirm.no-border {
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}
#questionnaire_form .btn .btn--main {
    font-family: 'Helvetica', '游ゴシック体', 'Yu Gothic', 'YuGothic', 'Hiragino Kaku Gothic ProN', 'Osaka', 'ＭＳ Ｐゴシック', sans-serif;
    border-radius: 0;
}
#questionnaire_form .btn .btn--sub {
    width: 100%;
    display: block;
    padding: 10px 0;
    text-align: center;
    border: 1px solid;
    font-size: 14px;
    font-weight: bold;
    appearance: none;
    -webkit-appearance: none;
    margin: 0 0 15px;
    cursor: pointer;
    border-color: #d9d9d9;
    color: #d9d9d9;
}
#questionnaire_form .btn .btn--sub:hover {
    background: #6192b8;
    color: #000;
    border-color: #000;
}
.confirm #questionnaire_form .btn {
    display: block;
    float: left;
    width: 49%;
    margin: 0 auto;
}
.confirm #questionnaire_form .btn.confirm_btn,
.confirm #questionnaire_form .btn:first-of-type {
    float: right;
    margin-left: 2%;
}
.confirm #questionnaire_form .confirm_btn,
.confirm #questionnaire_form .confirm_btn + .btn { margin: 20px 0 0; }
.block--error li { color: #ff6d6d; }

@media (max-width: 769px) {
    body#nfmember_questionnaire #wrap #main #content .form_box { width: 100%; }
    body#nfmember_questionnaire #wrap #main #content .title { margin: 0 0 30px; }
    body#nfmember_questionnaire #wrap #main.confirm #content .section-tit {
        margin: 0 0 30px;
    }
    body#nfmember_questionnaire #wrap #main.confirm #content .txt--basic {
        margin: 0 0 20px;
    }
    #questionnaire_form .btn
    .confirm #questionnaire_form .confirm_btn,
    .confirm #questionnaire_form .confirm_btn + .btn { margin: 15px 0 0; }
    .confirm #questionnaire_form .btn,
    .confirm #questionnaire_form .btn.confirm_btn,
    .confirm #questionnaire_form .btn:first-of-type { float: none; width: 100%; margin: 15px 0 0; margin-left: 0; }
    body#nfmember_questionnaire #wrap #main.complete #content .btn { width: 100%; }
}
