:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-main: #14688F;
  --color-main2: #2F2D2C;
  --color-bg: #e2e9f1;
  --color-bg2: #E03D6B;
  --color-bg3: #f2f2f2;
  --color-form: #ffffff;
  --color-placeholder: #a7a7a7;
}

input[type="submit"],
input[type="button"],
input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="reset"],
select,
button,
textarea {
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="text"]::-webkit-search-decoration,
input[type="number"]::-webkit-search-decoration,
input[type="email"]::-webkit-search-decoration,
input[type="tel"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration,
select::-webkit-search-decoration,
button::-webkit-search-decoration,
textarea::-webkit-search-decoration {
  display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus,
input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="reset"]:focus,
select:focus,
button:focus,
textarea:focus {
  outline-offset: -2px;
}

.c-button {
  align-items: center;
  background-color: var(--color-bg2);
  border-radius: 25px;
  color: var(--color-white);
  display: flex;
  font-size: 18px;
  font-weight: 500;
  height: 50px;
  justify-content: center;
  letter-spacing: 0.1em;
  padding-bottom: 1px;
  position: relative;
  width: 257px;

  &:disabled {
    background-color: #a7a7a7;
  }
}
@media screen and (max-width: 999px) {
  .c-button {
    border-radius: calc(25 / 1000 * 100vw);
    font-size: calc(18 / 1000 * 100vw);
    height: calc(50 / 1000 * 100vw);
    width: calc(257 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-button {
    border-radius: calc(25 / 375 * 100vw);
    font-size: calc(18 / 375 * 100vw);
    height: calc(50 / 375 * 100vw);
    width: calc(235 / 375 * 100vw);
  }
}
.c-button::before {
  bottom: 0;
  content: "";
  display: block;
  height: 15px;
  margin: auto 0;
  position: absolute;
  right: 15px;
  top: 0;
  width: 10px;
}
@media screen and (max-width: 999px) {
  .c-button::before {
    height: calc(15 / 1000 * 100vw);
    right: calc(15 / 1000 * 100vw);
    width: calc(10 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-button::before {
    height: calc(15 / 375 * 100vw);
    right: calc(15 / 375 * 100vw);
    width: calc(10 / 375 * 100vw);
  }
}

.c-form {
  background-color: var(--color-white);
  box-shadow: 1px 1px 15px rgba(96, 95, 95, 0.142);
  width: 322px;
}
@media screen and (max-width: 1199px) {
  .c-form {
    box-shadow: calc(10 / 1200 * 100vw) calc(10 / 1200 * 100vw) calc(20 / 1200 * 100vw) rgba(0, 0, 0, 0.2);
    width: calc(322 / 1200 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  .c-form {
    box-shadow: calc(10 / 375 * 100vw) calc(10 / 375 * 100vw) calc(20 / 375 * 100vw) rgba(0, 0, 0, 0.2);
    width: calc(335 / 375 * 100vw);
  }
}
.c-form__titleBox {
  align-items: center;
  background-color: var(--color-main);
  display: flex;
  height: 110px;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  .c-form__titleBox {
    height: calc(110 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__titleBox {
    height: calc(75 / 375 * 100vw);
  }
}
.c-form__titleBox__subTitle {
  color: var(--color-white);
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .c-form__titleBox__subTitle {
    font-size: calc(20 / 1200 * 100vw);
    margin-bottom: calc(26 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__titleBox__subTitle {
    font-size: calc(10 / 375 * 100vw);
    margin-bottom: calc(6 / 375 * 100vw);
  }
}
.c-form__titleBox__title {
  color: var(--color-white);
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .c-form__titleBox__title {
    font-size: calc(35 / 1200 * 100vw);
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-form__titleBox__title {
    font-size: calc(23 / 375 * 100vw);
  }
}
.c-form__content__inner {
  padding: 21px 20px 28px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .c-form__content__inner {
    padding: calc(21 / 1200 * 100vw) calc(20 / 1200 * 100vw) calc(28 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__inner {
    padding: calc(21 / 375 * 100vw) calc(20 / 375 * 100vw) calc(28 / 375 * 100vw);
  }
}
.c-form__content__step {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 1199px) {
  .c-form__content__step {
    margin-bottom: calc(32 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__step {
    margin-bottom: calc(30 / 375 * 100vw);
  }
}
.c-form__content__step__label {
  align-items: center;
  background-color: var(--color-form);
  border: var(--color-main2) solid 2px;
  border-radius: 14px;
  color: var(--color-main2);
  display: flex;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  height: 27px;
  justify-content: center;
  padding-top: 1px;
  width: 80px;
}
@media screen and (max-width: 1199px) {
  .c-form__content__step__label {
    border-radius: calc(14 / 1200 * 100vw);
    font-size: calc(14 / 1200 * 100vw);
    height: calc(27 / 1200 * 100vw);
    width: calc(80 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__step__label {
    border-radius: calc(14 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
    height: calc(27 / 375 * 100vw);
    width: calc(80 / 375 * 100vw);
  }
}
.c-form__content__step__label.is-current {
  background-color: var(--color-main2);
  color: var(--color-white);
}
.c-form__content__step__label + .c-form__content__step__label {
  margin-left: 11px;
}
@media screen and (max-width: 1199px) {
  .c-form__content__step__label + .c-form__content__step__label {
    margin-left: calc(11 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__step__label + .c-form__content__step__label {
    margin-left: calc(11 / 375 * 100vw);
  }
}
.c-form__content__block {
  position: relative;
}
.c-form__content__block + .c-form__content__block {
  margin-top: 20px;
}
@media screen and (max-width: 1199px) {
  .c-form__content__block + .c-form__content__block {
    margin-top: calc(20 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__block + .c-form__content__block {
    margin-top: calc(18 / 375 * 100vw);
  }
}

/* フォーム1 */
.c-form__content__block__box {
  display: flex;
}
.c-form__content__block__box span {
  width: 15px;
  height: 15px;
  background: #d2ba9e;
  margin-top: 9px;
}
.c-form__content__block__title {
  font-size: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
@media screen and (max-width: 1199px) {
  .c-form__content__block__title {
    font-size: calc(14 / 1200 * 100vw);
    margin-bottom: calc(12 / 1200 * 100vw);
  }
  .c-form__content__block__box span {
    width: 13px;
    height: 13px;
    margin-top: 12px;
  }
}
@media screen and (max-width: 999px) {
  .c-form__content__block__box span {
    width: 13px;
    height: 13px;
    margin-top: 13px;
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__block__title {
    font-size: calc(14 / 375 * 100vw);
    margin-bottom: calc(12 / 375 * 100vw);
  }
}
@media screen and (max-width: 500px) {
  .c-form__content__block__box span {
    width: 10px;
    height: 10px;
    margin-top: 13px;
  }
}
.c-form__content__block__radio {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.c-form__content__block__radio__choice input {
  display: none;
}
.c-form__content__block__radio__choice input:checked + label {
  background-color: var(--color-bg2);
  border: solid var(--color-bg2) 2px;
  color: var(--color-white);
}
.c-form__content__block__radio__choice label {
  align-items: center;
  background-color: var(--color-form);
  color: var(--color-main2);
  border: solid var(--color-main2) 2px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  font-size: 20px;
  font-weight: 600;
  height: 50px;
  justify-content: center;
  letter-spacing: 0.05em;
  width: 270px;
}
@media screen and (max-width: 1199px) {
  .c-form__content__block__radio__choice label {
    font-size: calc(15 / 1200 * 100vw);
    height: calc(50 / 1200 * 100vw);
    width: calc(136 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__block__radio__choice label {
    font-size: calc(15 / 375 * 100vw);
    height: calc(52 / 375 * 100vw);
    width: calc(142 / 375 * 100vw);
  }
}
* + .c-form__content__block__radio__choice {
  margin-left: 20px;
}
@media screen and (max-width: 1199px) {
  * + .c-form__content__block__radio__choice {
    margin-left: calc(21 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  * + .c-form__content__block__radio__choice {
    margin-left: calc(11 / 375 * 100vw);
  }
}
.c-form__content__block input[type="text"],
.c-form__content__block input[type="tel"],
.c-form__content__block input[type="email"] {
  background-color: var(--color-form);
  font-size: 15px;
  height: 50px;
  padding: 0 16px;
  width: 100%;
  border: var(--color-main2) solid 1px;
  border-radius: 6px;
}
@media screen and (max-width: 1199px) {
  .c-form__content__block input[type="text"] {
    font-size: calc(20 / 1200 * 100vw);
    height: calc(50 / 1200 * 100vw);
    padding: 0 calc(16 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__block input[type="text"] {
    font-size: calc(15 / 375 * 100vw);
    height: calc(52 / 375 * 100vw);
    padding: 0 calc(16 / 375 * 100vw);
  }
}
.c-form__content__block input[type="text"]::-moz-placeholder {
  color: var(--color-placeholder);
}
.c-form__content__block input[type="text"]:-ms-input-placeholder {
  color: var(--color-placeholder);
}
.c-form__content__block input[type="text"]::placeholder {
  color: var(--color-placeholder);
}
.c-form__content__block select {
  background-color: var(--color-form);
  background-image: url(../img/icon_select.png);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 15px 8px;
  border: var(--color-main2) solid 2px;
  border-radius: 5px;
  font-size: 15px;
  height: 80px;
  padding: 0 16px;
  width: 100%;
  color: var(--color-black);
  font-weight: bold;
}

input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}


input[type="date"]::-webkit-inner-spin-button{
  -webkit-appearance: none;
}

input[type="date"]::-webkit-clear-button{
  -webkit-appearance: none;
}

input[type="date"]{

  position: relative;
}

.c-form__content__block select option{
   color: var(--color-placeholder);
}

@media screen and (max-width: 1199px) {
  .c-form__content__block select {
    background-position: right calc(16 / 1200 * 100vw) center;
    background-size: calc(15 / 1200 * 100vw) calc(8 / 1200 * 100vw);
    border-radius: calc(5 / 1200 * 100vw);
    font-size: calc(15 / 1200 * 100vw);
    height: calc(50 / 1200 * 100vw);
    padding: 0 calc(16 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__block select {
    background-position: right calc(16 / 375 * 100vw) center;
    background-size: calc(15 / 375 * 100vw) calc(8 / 375 * 100vw);
    border-radius: calc(5 / 375 * 100vw);
    font-size: calc(15 / 375 * 100vw);
    height: calc(52 / 375 * 100vw);
    padding: 0 calc(16 / 375 * 100vw);
  }
}
.c-form__content__block .parsley-errors-list {
  color: var(--color-bg2);
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 1px;
}
@media screen and (max-width: 1199px) {
  .c-form__content__block .parsley-errors-list {
    font-size: calc(12 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__block .parsley-errors-list {
    font-size: calc(12 / 375 * 100vw);
  }
}
.c-form__content__agree {
  margin-top: 35px;
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  .c-form__content__agree {
    margin-top: calc(20 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__agree {
    margin-top: calc(15 / 375 * 100vw);
  }
}
.c-form__content__agree input {
  display: none;
}
.c-form__content__agree input:checked + label {
  position: relative;
}
.c-form__content__agree input:checked + label::after {
  background-image: url(../images/icon_check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  content: "";
  display: block;
  height: 10px;
  left: -1px;
  position: absolute;
  top: 2px;
  width: 14px;
}
@media screen and (max-width: 1199px) {
  .c-form__content__agree input:checked + label::after {
    height: calc(10 / 1200 * 100vw);
    top: calc(2 / 1200 * 100vw);
    width: calc(14 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__agree input:checked + label::after {
    height: calc(10 / 375 * 100vw);
    top: calc(2 / 375 * 100vw);
    width: calc(14 / 375 * 100vw);
  }
}
.c-form__content__agree label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 11px;
  user-select: none;
}
@media screen and (max-width: 1199px) {
  .c-form__content__agree label {
    font-size: calc(11 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__agree label {
    font-size: calc(11 / 375 * 100vw);
  }
}

.c-form__content__agree label a {
  color: var(--color-bg2);
  padding-bottom: 2px;
}
@media screen and (max-width: 1199px) {
  .c-form__content__agree label a {
    padding-bottom: calc(2 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__agree label a {
    padding-bottom: calc(2 / 375 * 100vw);
  }
}
.c-form__content__agree .parsley-errors-list {
  color: var(--color-main);
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 1px;
}
@media screen and (max-width: 1199px) {
  .c-form__content__agree .parsley-errors-list {
    font-size: calc(12 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__agree .parsley-errors-list {
    font-size: calc(12 / 375 * 100vw);
  }
}
.c-form__content__button {
  margin-top: 35px;
}
@media screen and (max-width: 1199px) {
  .c-form__content__button {
    margin-top: calc(45 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__button {
    margin-top: calc(23 / 375 * 100vw);
  }
}
.c-form__content__button button {
  font-size: 14px;
  height: 40px;
  margin: 0 auto;
  width: 178px;
}
@media screen and (max-width: 1199px) {
  .c-form__content__button button {
    font-size: calc(14 / 1200 * 100vw);
    height: calc(40 / 1200 * 100vw);
    width: calc(178 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__button button {
    font-size: calc(14 / 375 * 100vw);
    height: calc(40 / 375 * 100vw);
    width: calc(178 / 375 * 100vw);
  }
}
.c-form__content__button button::before {
  height: 12px;
  right: 13px;
  width: 8px;
}
@media screen and (max-width: 1199px) {
  .c-form__content__button button::before {
    height: calc(12 / 1200 * 100vw);
    right: calc(13 / 1200 * 100vw);
    width: calc(8 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__button button::before {
    height: calc(12 / 375 * 100vw);
    right: calc(13 / 375 * 100vw);
    width: calc(8 / 375 * 100vw);
  }
}
.c-form__content__button button.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.c-form__content__back {
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .c-form__content__back {
    margin-top: calc(20 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__back {
    margin-top: calc(15 / 375 * 100vw);
  }
}
.c-form__content__back__text {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  justify-content: center;
  letter-spacing: 0.1em;
  user-select: none;
  margin-left: -36px;
}
@media screen and (max-width: 1199px) {
  .c-form__content__back__text {
    font-size: calc(14 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__back__text {
    font-size: calc(14 / 375 * 100vw);
  }
}
.c-form__content__back__text::before {
  content: "";
  display: block;
  height: 12px;
  margin-right: 15px;
  width: 8px;
}
@media screen and (max-width: 1199px) {
  .c-form__content__back__text::before {
    height: calc(12 / 1200 * 100vw);
    margin-right: calc(15 / 1200 * 100vw);
    width: calc(8 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-form__content__back__text::before {
    height: calc(12 / 375 * 100vw);
    margin-right: calc(15 / 375 * 100vw);
    width: calc(8 / 375 * 100vw);
  }
}

.c-voice {
  background-color: var(--color-white);
  border-radius: 10px;
  margin: 30px auto 0;
  width: 682px;
}
@media screen and (max-width: 999px) {
  .c-voice {
    border-radius: calc(10 / 1000 * 100vw);
    margin: calc(30 / 1000 * 100vw) auto 0;
    width: calc(682 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-voice {
    border-radius: calc(10 / 375 * 100vw);
    margin: calc(0 / 375 * 100vw) auto 0;
    width: calc(335 / 375 * 100vw);
  }
}
.c-voice__inner {
  padding: 30px;
  position: relative;
}
@media screen and (max-width: 999px) {
  .c-voice__inner {
    padding: calc(30 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-voice__inner {
    padding: calc(25 / 375 * 100vw);
  }
}
.c-voice__inner::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 233px;
  left: 460px;
  position: absolute;
  top: -30px;
  width: 149px;
  z-index: 1;
}
@media screen and (max-width: 999px) {
  .c-voice__inner::before {
    height: calc(233 / 1000 * 100vw);
    left: calc(460 / 1000 * 100vw);
    top: calc(-30 / 1000 * 100vw);
    width: calc(149 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-voice__inner::before {
    height: calc(217 / 375 * 100vw);
    left: calc(180 / 375 * 100vw);
    top: calc(14 / 375 * 100vw);
    width: calc(139 / 375 * 100vw);
  }
}
.c-voice__title {
  color: var(--color-main);
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 27px;
  margin-bottom: 20px;
}
@media screen and (max-width: 999px) {
  .c-voice__title {
    font-size: calc(20 / 1000 * 100vw);
    line-height: calc(27 / 1000 * 100vw);
    margin-bottom: calc(20 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-voice__title {
    font-size: calc(20 / 375 * 100vw);
    line-height: calc(27 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
  }
}
.c-voice__income {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 102px;
  margin-top: 20px;
  overflow: hidden;
  text-indent: 150vw;
  white-space: nowrap;
  width: 372px;
}
@media screen and (max-width: 999px) {
  .c-voice__income {
    height: calc(102 / 1000 * 100vw);
    margin-top: calc(20 / 1000 * 100vw);
    width: calc(372 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-voice__income {
    display: none;
    height: calc(206 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
    margin-top: calc(0 / 375 * 100vw);
    width: calc(138 / 375 * 100vw);
  }
}
.c-voice__income.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-voice__income.is-sp {
    display: block;
  }
}
.c-voice__text {
  font-size: 14px;
  line-height: 25px;
  margin-top: 20px;
  text-align: justify;
}
@media screen and (max-width: 999px) {
  .c-voice__text {
    font-size: calc(14 / 1000 * 100vw);
    line-height: calc(25 / 1000 * 100vw);
    margin-top: calc(20 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-voice__text {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(25 / 375 * 100vw);
  }
}
.c-voice--voice1 .c-voice__inner::before {
  background-image: url(../images/person_voice_1.png);
}
.c-voice--voice1 .c-voice__income {
  background-image: url(../images/income_voice_1.svg);
}
@media screen and (max-width: 767px) {
  .c-voice--voice1 .c-voice__income {
    background-image: url(../images/income_voice_1_sp.svg);
  }
}
.c-voice--voice2 .c-voice__inner::before {
  background-image: url(../images/person_voice_2.png);
}
.c-voice--voice2 .c-voice__income {
  background-image: url(../images/income_voice_2.svg);
}
@media screen and (max-width: 767px) {
  .c-voice--voice2 .c-voice__income {
    background-image: url(../images/income_voice_2_sp.svg);
  }
}
.c-voice--voice3 .c-voice__inner::before {
  background-image: url(../images/person_voice_3.png);
}
.c-voice--voice3 .c-voice__income {
  background-image: url(../images/income_voice_3.svg);
}
@media screen and (max-width: 767px) {
  .c-voice--voice3 .c-voice__income {
    background-image: url(../images/income_voice_3_sp.svg);
  }
}

.p-header {
  height: 70px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 999px) {
  .p-header {
    height: calc(70 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header {
    height: calc(66 / 375 * 100vw);
  }
}
.p-header__inner {
  align-items: center;
  display: flex;
  height: 100%;
  padding: 0 15px;
}
@media screen and (max-width: 999px) {
  .p-header__inner {
    padding: 0 calc(15 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding: 0 calc(15 / 375 * 100vw);
  }
}
.p-header__logo {
  width: 152px;
}
.p-header__logo img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 999px) {
  .p-header__logo {
    width: calc(152 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: calc(134 / 375 * 100vw);
  }
}

.p-footer {
  background-color: var(--color-bg2);
  height: 58px;
}
@media screen and (max-width: 999px) {
  .p-footer {
    height: calc(58 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer {
    height: calc(58 / 375 * 100vw);
  }
}
.p-footer .l-container {
  height: 100%;
}
.p-footer__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.p-footer__copyright {
  color: var(--color-white);
  font-size: 12px;
}
@media screen and (max-width: 999px) {
  .p-footer__copyright {
    font-size: calc(12 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: calc(12 / 375 * 100vw);
  }
}

.p-mainVisual {
  background-image: url(../images/mainvisual.png);
  background-position: center;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 696px;
  margin-bottom: 118px;
}
@media screen and (max-width: 1199px) {
  .p-mainVisual {
    height: calc(696 / 1200 * 100vw);
    margin-bottom: calc(118 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual {
    background-image: none;
    height: auto;
    margin-bottom: calc(0 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual::before {
    background-image: url(../images/mainvisual_sp.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: block;
    height: calc(536 / 375 * 100vw);
    left: 0;
    position: absolute;
    top: 0;
    width: calc(375 / 375 * 100vw);
  }
}
.p-mainVisual__inner {
  margin: 0 auto;
  padding-top: 205px;
  position: relative;
  width: 1132px;
}
@media screen and (max-width: 1199px) {
  .p-mainVisual__inner {
    padding-top: calc(205 / 1200 * 100vw);
    width: calc(1132 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__inner {
    padding-bottom: calc(28 / 375 * 100vw);
    padding-top: calc(237 / 375 * 100vw);
    width: calc(375 / 375 * 100vw);
  }
}
.p-mainVisual__title {
  background-image: url(../images/title_mainvisual.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 272px;
  overflow: hidden;
  text-indent: 150vw;
  white-space: nowrap;
  width: 502px;
}
@media screen and (max-width: 1199px) {
  .p-mainVisual__title {
    height: calc(272 / 1200 * 100vw);
    width: calc(502 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__title {
    height: calc(182 / 375 * 100vw);
    margin: 0 auto;
    width: calc(335 / 375 * 100vw);
  }
}
.p-mainVisual__badge {
  background-image: url(../images/badge_mainvisual.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 191px;
  left: 0;
  margin: 0 auto;
  overflow: hidden;
  position: absolute;
  right: 0;
  text-indent: 150vw;
  top: 590px;
  white-space: nowrap;
  width: 554px;
}
@media screen and (max-width: 1199px) {
  .p-mainVisual__badge {
    height: calc(191 / 1200 * 100vw);
    top: calc(590 / 1200 * 100vw);
    width: calc(554 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__badge {
    height: calc(132 / 375 * 100vw);
    margin-top: calc(24 / 375 * 100vw);
    position: static;
    width: calc(350 / 375 * 100vw);
  }
}
.p-mainVisual .c-form {
  position: absolute;
  right: 0;
  top: 83px;
}
@media screen and (max-width: 1199px) {
  .p-mainVisual .c-form {
    top: calc(83 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual .c-form {
    margin: calc(20 / 375 * 100vw) auto 0;
    position: static;
  }
}

.p-voice {
  background-color: var(--color-bg);
}
.p-voice__inner {
  padding-bottom: 80px;
  padding-top: 80px;
}
@media screen and (max-width: 999px) {
  .p-voice__inner {
    padding-bottom: calc(80 / 1000 * 100vw);
    padding-top: calc(80 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-voice__inner {
    padding-bottom: calc(50 / 375 * 100vw);
    padding-top: calc(50 / 375 * 100vw);
  }
}
.p-voice__swiper {
  margin: 0 auto;
  width: 788px;
}
@media screen and (max-width: 999px) {
  .p-voice__swiper {
    width: calc(788 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-voice__swiper {
    width: calc(335 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-voice__swiper .swiper-container {
    padding-bottom: calc(55 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-voice__swiper .swiper-button-next,
  .p-voice__swiper .swiper-button-prev {
    bottom: 0;
    top: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-voice__swiper .swiper-pagination {
    padding-bottom: calc(13 / 375 * 100vw);
  }
}

.p-performance__inner {
  padding-bottom: 80px;
  padding-top: 80px;
}
@media screen and (max-width: 999px) {
  .p-performance__inner {
    padding-bottom: calc(80 / 1000 * 100vw);
    padding-top: calc(80 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-performance__inner {
    padding-bottom: calc(50 / 375 * 100vw);
    padding-top: calc(50 / 375 * 100vw);
  }
}
.p-performance__logoList {
  background-image: url(../images/logolist_performance.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 116px;
  margin: 0 auto;
  width: 911px;
}
@media screen and (max-width: 999px) {
  .p-performance__logoList {
    height: calc(116 / 1000 * 100vw);
    width: calc(911 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-performance__logoList {
    background-image: url(../images/logolist_performance_sp.png);
    height: calc(194 / 375 * 100vw);
    width: calc(343 / 375 * 100vw);
  }
}

.p-trouble__inner {
  padding-bottom: 80px;
  padding-top: 80px;
}
@media screen and (max-width: 999px) {
  .p-trouble__inner {
    padding-bottom: calc(80 / 1000 * 100vw);
    padding-top: calc(80 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-trouble__inner {
    padding-bottom: calc(50 / 375 * 100vw);
    padding-top: calc(50 / 375 * 100vw);
  }
}
.p-trouble__faqList {
  background-color: var(--color-bg);
  border-radius: 10px;
  margin: 0 auto;
  padding: 50px;
  width: 782px;
}
@media screen and (max-width: 999px) {
  .p-trouble__faqList {
    border-radius: calc(10 / 1000 * 100vw);
    padding: calc(50 / 1000 * 100vw);
    width: calc(782 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-trouble__faqList {
    border-radius: calc(10 / 375 * 100vw);
    margin: 0 calc(-20 / 375 * 100vw);
    padding: calc(30 / 375 * 100vw) calc(20 / 375 * 100vw);
    width: calc(375 / 375 * 100vw);
  }
}
.p-trouble__faqList > ul > li + li {
  margin-top: 30px;
}
@media screen and (max-width: 999px) {
  .p-trouble__faqList > ul > li + li {
    margin-top: calc(30 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-trouble__faqList > ul > li + li {
    margin-top: calc(20 / 375 * 100vw);
  }
}
.p-trouble__faqList__faqBox__qBox {
  align-items: center;
  background-color: var(--color-white);
  border-radius: 10px;
  display: flex;
  padding: 13px 18px;
  position: relative;
  width: 666px;
}
@media screen and (max-width: 999px) {
  .p-trouble__faqList__faqBox__qBox {
    border-radius: calc(10 / 1000 * 100vw);
    padding: calc(13 / 1000 * 100vw) calc(18 / 1000 * 100vw);
    width: calc(666 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-trouble__faqList__faqBox__qBox {
    border-radius: calc(10 / 375 * 100vw);
    padding: calc(13 / 375 * 100vw) calc(16 / 375 * 100vw);
    width: calc(319 / 375 * 100vw);
  }
}
.p-trouble__faqList__faqBox__qBox::before {
  border-color: transparent transparent transparent #ffffff;
  border-style: solid;
  border-width: 8px 0 8px 18px;
  content: "";
  display: inline-block;
  height: 0;
  position: absolute;
  right: -18px;
  top: 19px;
  width: 0;
}
@media screen and (max-width: 999px) {
  .p-trouble__faqList__faqBox__qBox::before {
    border-width: calc(8 / 1000 * 100vw) 0 calc(8 / 1000 * 100vw) calc(18 / 1000 * 100vw);
    right: calc(-18 / 1000 * 100vw);
    top: calc(19 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-trouble__faqList__faqBox__qBox::before {
    border-width: calc(8 / 375 * 100vw) 0 calc(8 / 375 * 100vw) calc(18 / 375 * 100vw);
    right: calc(-18 / 375 * 100vw);
    top: calc(19 / 375 * 100vw);
  }
}
.p-trouble__faqList__faqBox__qBox__icon {
  margin-right: 11px;
  width: 28px;
}
.p-trouble__faqList__faqBox__qBox__icon img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 999px) {
  .p-trouble__faqList__faqBox__qBox__icon {
    margin-right: calc(11 / 1000 * 100vw);
    width: calc(28 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-trouble__faqList__faqBox__qBox__icon {
    margin-right: calc(11 / 375 * 100vw);
    width: calc(30 / 375 * 100vw);
  }
}
.p-trouble__faqList__faqBox__qBox__title {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 999px) {
  .p-trouble__faqList__faqBox__qBox__title {
    font-size: calc(16 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-trouble__faqList__faqBox__qBox__title {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(23 / 375 * 100vw);
    width: calc(240 / 375 * 100vw);
  }
}
.p-trouble__faqList__faqBox__aBox {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
@media screen and (max-width: 999px) {
  .p-trouble__faqList__faqBox__aBox {
    margin-top: calc(30 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-trouble__faqList__faqBox__aBox {
    margin-top: calc(20 / 375 * 100vw);
  }
}
.p-trouble__faqList__faqBox__aBox__icon {
  transform: translateY(8px);
  width: 64px;
}
.p-trouble__faqList__faqBox__aBox__icon img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 999px) {
  .p-trouble__faqList__faqBox__aBox__icon {
    transform: translateY(calc(8 / 1000 * 100vw));
    width: calc(64 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-trouble__faqList__faqBox__aBox__icon {
    transform: translateY(calc(10 / 375 * 100vw));
    width: calc(58 / 375 * 100vw);
  }
}
.p-trouble__faqList__faqBox__aBox__text {
  background-color: var(--color-white);
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 26px;
  padding: 13px 18px;
  position: relative;
  text-align: justify;
  width: 592px;
}
@media screen and (max-width: 999px) {
  .p-trouble__faqList__faqBox__aBox__text {
    border-radius: calc(10 / 1000 * 100vw);
    font-size: calc(16 / 1000 * 100vw);
    line-height: calc(26 / 1000 * 100vw);
    padding: calc(13 / 1000 * 100vw) calc(18 / 1000 * 100vw);
    width: calc(592 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-trouble__faqList__faqBox__aBox__text {
    border-radius: calc(10 / 375 * 100vw);
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(23 / 375 * 100vw);
    padding: calc(21 / 375 * 100vw) calc(19 / 375 * 100vw);
    width: calc(252 / 375 * 100vw);
  }
}
.p-trouble__faqList__faqBox__aBox__text::before {
  border-color: transparent #ffffff transparent transparent;
  border-style: solid;
  border-width: 8px 18px 8px 0;
  content: "";
  display: inline-block;
  height: 0;
  left: -18px;
  position: absolute;
  top: 32px;
  width: 0;
}
@media screen and (max-width: 999px) {
  .p-trouble__faqList__faqBox__aBox__text::before {
    border-width: calc(8 / 1000 * 100vw) calc(18 / 1000 * 100vw) calc(8 / 1000 * 100vw) 0;
    left: calc(-18 / 1000 * 100vw);
    top: calc(32 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-trouble__faqList__faqBox__aBox__text::before {
    border-width: calc(8 / 375 * 100vw) calc(18 / 375 * 100vw) calc(8 / 375 * 100vw) 0;
    left: calc(-18 / 375 * 100vw);
    top: calc(32 / 375 * 100vw);
  }
}
.p-trouble__faqList__faqBox__aBox__text span {
  color: var(--color-main);
}
.p-trouble__text {
  background-image: url(../images/text_trouble.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 68px;
  margin: 70px auto 0;
  overflow: hidden;
  text-indent: 150vw;
  white-space: nowrap;
  width: 551px;
}
@media screen and (max-width: 999px) {
  .p-trouble__text {
    height: calc(68 / 1000 * 100vw);
    margin: calc(70 / 1000 * 100vw) auto 0;
    width: calc(551 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-trouble__text {
    background-image: url(../images/text_trouble_sp.svg);
    height: calc(136 / 375 * 100vw);
    margin: calc(42 / 375 * 100vw) auto 0;
    width: calc(270 / 375 * 100vw);
  }
}

.p-reason {
  background-color: var(--color-bg);
}
.p-reason__inner {
  padding-bottom: 80px;
  padding-top: 80px;
}
@media screen and (max-width: 999px) {
  .p-reason__inner {
    padding-bottom: calc(80 / 1000 * 100vw);
    padding-top: calc(80 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__inner {
    padding-bottom: calc(50 / 375 * 100vw);
    padding-top: calc(50 / 375 * 100vw);
  }
}
.p-reason__reasonList {
  margin: 0 auto;
  width: 782px;
}
@media screen and (max-width: 999px) {
  .p-reason__reasonList {
    width: calc(782 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList {
    width: 100%;
  }
}
.p-reason__reasonList > ul > li + li {
  margin-top: 20px;
}
@media screen and (max-width: 999px) {
  .p-reason__reasonList > ul > li + li {
    margin-top: calc(20 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList > ul > li + li {
    margin-top: calc(20 / 375 * 100vw);
  }
}
.p-reason__reasonList__reasonBox {
  align-items: center;
  background-color: var(--color-white);
  border-radius: 10px;
  display: flex;
  height: 143px;
  justify-content: space-between;
  padding: 30px;
}
@media screen and (max-width: 999px) {
  .p-reason__reasonList__reasonBox {
    border-radius: calc(10 / 1000 * 100vw);
    height: calc(143 / 1000 * 100vw);
    padding: calc(30 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList__reasonBox {
    border-radius: calc(10 / 375 * 100vw);
    display: block;
    height: auto;
    padding: calc(25 / 375 * 100vw);
  }
}
.p-reason__reasonList__reasonBox__label {
  width: 80px;
}
.p-reason__reasonList__reasonBox__label img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 999px) {
  .p-reason__reasonList__reasonBox__label {
    width: calc(80 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList__reasonBox__label {
    display: none;
    width: calc(80 / 375 * 100vw);
  }
}
.p-reason__reasonList__reasonBox__textBox {
  width: 618px;
}
@media screen and (max-width: 999px) {
  .p-reason__reasonList__reasonBox__textBox {
    width: calc(618 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList__reasonBox__textBox {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList__reasonBox__textBox__titleBox {
    align-items: center;
    display: flex;
  }
}
.p-reason__reasonList__reasonBox__textBox__titleBox__label {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList__reasonBox__textBox__titleBox__label {
    display: block;
    flex-shrink: 0;
    margin-right: calc(16 / 375 * 100vw);
    width: calc(65 / 375 * 100vw);
  }
}
.p-reason__reasonList__reasonBox__textBox__titleBox__title {
  color: var(--color-main);
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 999px) {
  .p-reason__reasonList__reasonBox__textBox__titleBox__title {
    font-size: calc(20 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList__reasonBox__textBox__titleBox__title {
    font-size: calc(20 / 375 * 100vw);
    line-height: calc(28 / 375 * 100vw);
  }
}
.p-reason__reasonList__reasonBox__textBox__text {
  font-size: 14px;
  line-height: 25px;
  margin-top: 10px;
}
@media screen and (max-width: 999px) {
  .p-reason__reasonList__reasonBox__textBox__text {
    font-size: calc(14 / 1000 * 100vw);
    line-height: calc(25 / 1000 * 100vw);
    margin-top: calc(10 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList__reasonBox__textBox__text {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(25 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
  }
}

.p-flow__inner {
  padding-bottom: 80px;
  padding-top: 80px;
}
@media screen and (max-width: 999px) {
  .p-flow__inner {
    padding-bottom: calc(80 / 1000 * 100vw);
    padding-top: calc(80 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__inner {
    padding-bottom: calc(50 / 375 * 100vw);
    padding-top: calc(50 / 375 * 100vw);
  }
}
.p-flow__flowList {
  margin: 0 auto;
  width: 620px;
}
@media screen and (max-width: 999px) {
  .p-flow__flowList {
    width: calc(620 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList {
    width: 100%;
  }
}
.p-flow__flowList > ul > li {
  margin-top: 40px;
}
@media screen and (max-width: 999px) {
  .p-flow__flowList > ul > li {
    margin-top: calc(40 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList > ul > li {
    margin-top: calc(40 / 375 * 100vw);
  }
}
.p-flow__flowList__flowBox {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.p-flow__flowList__flowBox__thumbnailBox {
  position: relative;
  width: 148px;
}
@media screen and (max-width: 999px) {
  .p-flow__flowList__flowBox__thumbnailBox {
    width: calc(148 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList__flowBox__thumbnailBox {
    width: calc(123 / 375 * 100vw);
  }
}
.p-flow__flowList__flowBox__thumbnailBox__number {
  left: -11px;
  position: absolute;
  top: -11px;
  width: 28px;
}
.p-flow__flowList__flowBox__thumbnailBox__number img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 999px) {
  .p-flow__flowList__flowBox__thumbnailBox__number {
    left: calc(-11 / 1000 * 100vw);
    top: calc(-11 / 1000 * 100vw);
    width: calc(28 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList__flowBox__thumbnailBox__number {
    left: calc(-11 / 375 * 100vw);
    top: calc(-11 / 375 * 100vw);
    width: calc(28 / 375 * 100vw);
  }
}
.p-flow__flowList__flowBox__thumbnailBox__thumbnail {
  width: 100%;
}
.p-flow__flowList__flowBox__thumbnailBox__thumbnail img {
  height: auto;
  width: 100%;
}
.p-flow__flowList__flowBox__textBox {
  width: 440px;
}
@media screen and (max-width: 999px) {
  .p-flow__flowList__flowBox__textBox {
    width: calc(440 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList__flowBox__textBox {
    width: calc(191 / 375 * 100vw);
  }
}
.p-flow__flowList__flowBox__textBox__title {
  color: var(--color-main);
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 999px) {
  .p-flow__flowList__flowBox__textBox__title {
    font-size: calc(20 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList__flowBox__textBox__title {
    font-size: calc(18 / 375 * 100vw);
  }
}
.p-flow__flowList__flowBox__textBox__text {
  font-size: 14px;
  line-height: 25px;
  margin-top: 10px;
  text-align: justify;
}
@media screen and (max-width: 999px) {
  .p-flow__flowList__flowBox__textBox__text {
    font-size: calc(14 / 1000 * 100vw);
    line-height: calc(25 / 1000 * 100vw);
    margin-top: calc(10 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList__flowBox__textBox__text {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(23 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
  }
}

.p-contact__inner {
  padding-bottom: 70px;
  margin-top: 0px;
}
@media screen and (max-width: 650px) {
  .p-contact__inner {
      padding-bottom: 40px;
  }
}

.p-contact .c-form {
  margin: 0 auto;
  width: 1000px;
}

@media screen and (max-width: 1200px) {
  .p-contact .c-form {
    width: 856px;
  }
}

@media screen and (max-width: 999px) {
  .p-contact .c-form {
    width: 700px;
  }
}
@media screen and (max-width: 800px) {
  .p-contact .c-form {
    width: 90%;
  }
}
@media screen and (max-width: 999px) {
  .p-contact .c-form__titleBox {
    height: calc(100 / 1000 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  .p-contact .c-form__titleBox {
    height: calc(45 / 375 * 100vw);
  }
}
@media screen and (max-width: 500px) {
  .p-contact .c-form__titleBox {
    height: calc(55 / 375 * 100vw);
  }
}
.p-contact .c-form__titleBox__subTitle {
  width: 300px;
}
@media screen and (max-width: 1200px) {
  .p-contact .c-form__titleBox__subTitle {
    width: 500px;
    font-size: 23px;
  }
}
@media screen and (max-width: 999px) {
  .p-contact .c-form__titleBox__subTitle {
    margin-bottom: calc(24 / 1000 * 100vw);
    font-size: calc(33 / 1200 * 100vw);
    width: 400px;
  }
}
@media screen and (max-width: 800px) {
  .p-contact .c-form__titleBox__subTitle {
    margin-bottom: calc(15 / 375 * 100vw);
    width: 500px;
    font-size: 25px;
  }
}
@media screen and (max-width: 650px) {
  .p-contact .c-form__titleBox__subTitle {
    width: 400px;
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  .p-contact .c-form__titleBox__subTitle {
    width: 400px;
    font-size: 16px;
  }
}
@media screen and (max-width: 420px) {
  .p-contact .c-form__titleBox__subTitle {
    width: 300px;
    margin-bottom: calc(13 / 375 * 100vw);
  }
    .p-contact .c-form__titleBox {
      height: calc(50 / 375 * 100vw);
    }
}
@media screen and (max-width: 999px) {
  .p-contact .c-form__titleBox__title {
    font-size: calc(35 / 1000 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  .p-contact .c-form__titleBox__title {
    font-size: calc(15 / 375 * 100vw);
  }
}
.p-contact .c-form__content__inner {
  padding: 32px 40px 50px;
}
@media screen and (max-width: 999px) {
  .p-contact .c-form__content__inner {
    padding: calc(37 / 1000 * 100vw) calc(40 / 1000 * 100vw) calc(37 / 1000 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  .p-contact .c-form__content__inner {
    padding: calc(21 / 375 * 100vw) calc(20 / 375 * 100vw);
  }
}
.p-contact .c-form__content__step {
  margin-bottom: 32px;
}
@media screen and (max-width: 999px) {
  .p-contact .c-form__content__step {
    margin-bottom: calc(40 / 1000 * 100vw);
  }
}
.p-contact .c-form__content__step__label {
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  height: 35px;
  width: 80px;
}
@media screen and (max-width: 999px) {
  .p-contact .c-form__content__step__label {
    border-radius: calc(16 / 1000 * 100vw);
    font-size: calc(17 / 1000 * 100vw);
    height: calc(32 / 1000 * 100vw);
    width: calc(93 / 1000 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  .p-contact .c-form__content__step__label {
    border-radius: calc(14 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
    height: calc(27 / 375 * 100vw);
    width: calc(80 / 375 * 100vw);
  }
}
.p-contact .c-form__content__block + .c-form__content__block {
  margin-top: 23px;
}
@media screen and (max-width: 999px) {
  .p-contact .c-form__content__block + .c-form__content__block {
    margin-top: calc(23 / 1000 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  .p-contact .c-form__content__block + .c-form__content__block {
    margin-top: calc(8 / 375 * 100vw);
  }
}
.p-contact .c-form__content__block__title {
  color: var(--color-main2);
  font-weight: 600;
}
@media screen and (max-width: 999px) {
  .p-contact .c-form__content__block__title {
    font-size: calc(14 / 1000 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  .p-contact .c-form__content__block__title {
    font-size: calc(14 / 375 * 100vw);
    margin-bottom: calc(3 / 375 * 100vw);
  }
}
.p-contact .c-form__content__block input {
  height: 70px;
}
@media screen and (max-width: 999px) {
  .p-contact .c-form__content__block input {
    font-size: calc(20 / 1000 * 100vw);
    height: calc(70 / 1000 * 100vw);
    padding: 0 calc(16 / 1000 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  .p-contact .c-form__content__block input {
    font-size: calc(15 / 375 * 100vw);
    height: calc(52 / 375 * 100vw);
    padding: 0 calc(16 / 375 * 100vw);
  }
}
.p-contact .c-form__content__block select {
  height: 80px;
}
@media screen and (max-width: 999px) {
  .p-contact .c-form__content__block select {
    background-position: right calc(16 / 1000 * 100vw) center;
    background-size: calc(15 / 1000 * 100vw) calc(8 / 1000 * 100vw);
    border-radius: calc(5 / 1000 * 100vw);
    font-size: calc(15 / 1000 * 100vw);
    padding: 0 calc(16 / 1000 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  .p-contact .c-form__content__block select {
    background-position: right calc(16 / 375 * 100vw) center;
    background-size: calc(5 / 375 * 100vw) calc(3 / 375 * 100vw);
    border-radius: 6px;
    font-size: 15px;
    padding: 0 calc(16 / 375 * 100vw);
  }
}
.p-contact .c-form__content__block__radio__choice label {
  height: 76px;
}

.p-contact .c-form__content__block__radio__choice label:active {
  background: var(--color-bg2);
  color: var(--color-form);
  border: var(--color-bg2);
}

@media screen and (max-width: 999px) {
  .p-contact .c-form__content__block__radio__choice label {
    font-size: 16px;
    height: 80px;
    width: 235px;
  }
}
@media screen and (max-width: 800px) {
  .p-contact .c-form__content__block__radio__choice label {
    font-size: 16px;
    height: 70px;
  }
}
@media screen and (max-width: 560px) {
  .p-contact .c-form__content__block__radio__choice label {
    font-size: 16px;
    line-height: 1.2rem;
    height: 60px;
    width: calc(120 / 375 * 100vw);

  }
  .p-contact .c-form__content__block__radio__choice_1 label {
    font-size: 14px;
    line-height: 1.2rem;
    height: 55px;
    width: calc(143 / 375* 100vw);
  }
}
@media screen and (max-width: 999px) {
  .p-contact .c-form__content__block__radio__choice + .c-form__content__block__radio__choice {
    margin-left: calc(17 / 1000 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  .p-contact .c-form__content__block__radio__choice + .c-form__content__block__radio__choice {
    margin-left: calc(11 / 375 * 100vw);
  }
}
@media screen and (max-width: 999px) {
  .p-contact .c-form__content__block .parsley-errors-list {
    font-size: calc(12 / 1000 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  .p-contact .c-form__content__block .parsley-errors-list {
    font-size: calc(8 / 375 * 100vw);
  }
}
.p-contact .c-form__content__agree label {
  font-size: 15px;
}


@media screen and (max-width: 999px) {
  .p-contact .c-form__content__agree label a {
    padding-bottom: calc(2 / 1000 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  .p-contact .c-form__content__agree label a {
    padding-bottom: calc(2 / 375 * 100vw);
  }
}
@media screen and (max-width: 500px) {
  .p-contact .c-form__content__agree label {
    font-size: 13px;
  }
}
@media screen and (max-width: 999px) {
  .p-contact .c-form__content__agree .parsley-errors-list {
    font-size: calc(12 / 1000 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  .p-contact .c-form__content__agree .parsley-errors-list {
    font-size: calc(12 / 375 * 100vw);
  }
}
.p-contact .c-form__content__button button {
  border-radius: 100px;
  font-size: 19px;
  height: 60px;
  width: 325px;
}
@media screen and (max-width: 999px) {
  .p-contact .c-form__content__button button {
    font-size: calc(19 / 1000 * 100vw);
    height: calc(52 / 1000 * 100vw);
    width: calc(275 / 1000 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  .p-contact .c-form__content__button button {
    font-size: calc(8 / 375 * 100vw);
    height: calc(29 / 375 * 100vw);
  }
}
@media screen and (max-width: 500px) {
  .p-contact .c-form__content__button button {
    width: calc(150 / 375 * 100vw);
    height: calc(40 / 375 * 100vw);
    font-size: 13px;
  }
}
@media screen and (max-width: 999px) {
  .p-contact .c-form__content__back__text {
    font-size: calc(15 / 1000 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  .p-contact .c-form__content__back__text {
    font-size: 15px;
  }
}
@media screen and (max-width: 400px) {
  .p-contact .c-form__content__back__text {
    font-size: 13px;
  }
}
@media screen and (max-width: 999px) {
  .p-contact .c-form__content__back__text::before {
    height: calc(12 / 1000 * 100vw);
    margin-right: calc(15 / 1000 * 100vw);
    width: calc(8 / 1000 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  .p-contact .c-form__content__back__text::before {
    height: calc(12 / 375 * 100vw);
    width: calc(8 / 375 * 100vw);
  }
}

.p-cta {
  background-color: var(--color-bg2);
  height: 200px;
  margin-top: 30px;
}
@media screen and (max-width: 999px) {
  .p-cta {
    height: calc(200 / 1000 * 100vw);
    margin-top: calc(30 / 1000 * 100vw);
  }
}
@media screen and (max-width: 800px) {
  .p-cta {
    height: calc(173 / 375 * 100vw);
    margin-top: calc(32 / 375 * 100vw);
  }
}
.p-cta .l-container {
  height: 100%;
}
.p-cta__inner {
  align-items: center;
  display: flex;
  height: 100%;
  margin: 0 auto;
  position: relative;
  width: 910px;
}
@media screen and (max-width: 999px) {
  .p-cta__inner {
    width: calc(910 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__inner {
    width: 100%;
  }
}
.p-cta__inner::before {
  background-image: url(../images/decoration_cta.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  height: 274px;
  position: absolute;
  right: 0;
  width: 283px;
}
@media screen and (max-width: 999px) {
  .p-cta__inner::before {
    height: calc(274 / 1000 * 100vw);
    width: calc(283 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__inner::before {
    background-image: url(../images/decoration_cta_sp.png);
    height: calc(210 / 375 * 100vw);
    right: calc(-15 / 375 * 100vw);
    width: calc(165 / 375 * 100vw);
  }
}
.p-cta__content {
  align-items: center;
  display: flex;
}
.p-cta__content__text {
  background-image: url(../images/title_cta.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 85px;
  margin-right: 25px;
  overflow: hidden;
  text-indent: 150vw;
  white-space: nowrap;
  width: 301px;
}
@media screen and (max-width: 999px) {
  .p-cta__content__text {
    height: calc(85 / 1000 * 100vw);
    margin-right: calc(25 / 1000 * 100vw);
    width: calc(301 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__content__text {
    display: none;
    height: calc(85 / 375 * 100vw);
    margin-right: calc(25 / 375 * 100vw);
    width: calc(301 / 375 * 100vw);
  }
}
.p-cta__content__buttonBox {
  width: 257px;
}
@media screen and (max-width: 999px) {
  .p-cta__content__buttonBox {
    width: calc(257 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__content__buttonBox {
    width: calc(235 / 375 * 100vw);
  }
}
.p-cta__content__buttonBox__text {
  color: var(--color-white);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (max-width: 999px) {
  .p-cta__content__buttonBox__text {
    font-size: calc(18 / 1000 * 100vw);
    margin-bottom: calc(15 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__content__buttonBox__text {
    font-size: calc(17 / 375 * 100vw);
    line-height: calc(24 / 375 * 100vw);
    margin-bottom: calc(15 / 375 * 100vw);
  }
}
.p-thanks__inner {
  margin: 0 auto;
  padding-bottom: 30px;
  padding-top: 110px;
  width: 1000px;
}
@media screen and (max-width: 1199px) {
  .p-thanks__inner {
    padding-bottom: calc(30 / 1200 * 100vw);
    padding-top: calc(110 / 1200 * 100vw);
    width: calc(1000 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__inner {
    padding-bottom: calc(25 / 375 * 100vw);
    padding-left: calc(20 / 375 * 100vw);
    padding-right: calc(20 / 375 * 100vw);
    padding-top: calc(75 / 375 * 100vw);
    width: 100%;
  }
}
.p-thanks__message {
  padding: 90px 0;
}
@media screen and (max-width: 1199px) {
  .p-thanks__message {
    padding: calc(90 / 1200 * 100vw) 0;
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__message {
    padding: calc(30 / 375 * 100vw) 0 calc(20 / 375 * 100vw);
  }
}
.p-thanks__message__title {
  color: var(--color-main);
  font-size: 50px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-thanks__message__title {
    font-size: calc(50 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__message__title {
    font-size: calc(35 / 375 * 100vw);
  }
}
.p-thanks__message__textBox {
  margin-top: 30px;
}
@media screen and (max-width: 1199px) {
  .p-thanks__message__textBox {
    margin-top: calc(30 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__message__textBox {
    margin-top: calc(12 / 375 * 100vw);
  }
}
.p-thanks__message__textBox__title {
  color: var(--color-main);
  font-size: 27px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 40px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-thanks__message__textBox__title {
    font-size: calc(27 / 1200 * 100vw);
    line-height: calc(40 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__message__textBox__title {
    font-size: calc(24 / 375 * 100vw);
    line-height: calc(36 / 375 * 100vw);
  }
}
.p-thanks__message__textBox__text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 30px;
  margin-top: 10px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-thanks__message__textBox__text {
    font-size: calc(16 / 1200 * 100vw);
    line-height: calc(30 / 1200 * 100vw);
    margin-top: calc(10 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__message__textBox__text {
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(26 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
  }
}
.p-thanks__onegai {
  background-color: var(--color-bg3);
  padding: 60px;
}
@media screen and (max-width: 1199px) {
  .p-thanks__onegai {
    padding: calc(60 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__onegai {
    padding: calc(40 / 375 * 100vw) calc(25 / 375 * 100vw);
  }
}
.p-thanks__onegai__introduction__title {
  color: var(--color-main);
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 40px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-thanks__onegai__introduction__title {
    font-size: calc(24 / 1200 * 100vw);
    line-height: calc(40 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__onegai__introduction__title {
    font-size: calc(24 / 375 * 100vw);
    line-height: calc(40 / 375 * 100vw);
  }
}
.p-thanks__onegai__introduction__text {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 30px;
  margin-top: 10px;
  text-align: center;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-thanks__onegai__introduction__text {
    font-size: calc(15 / 1200 * 100vw);
    line-height: calc(30 / 1200 * 100vw);
    margin-top: calc(10 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__onegai__introduction__text {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(30 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
    text-align: justify;
  }
}
.p-thanks__onegai__line {
  margin-top: 30px;
}
@media screen and (max-width: 1199px) {
  .p-thanks__onegai__line {
    margin-top: calc(30 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__onegai__line {
    margin-top: calc(30 / 375 * 100vw);
  }
}
.p-thanks__onegai__line__button {
  margin: 0 auto;
  width: 197px;
}
.p-thanks__onegai__line__button img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .p-thanks__onegai__line__button {
    width: calc(197 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__onegai__line__button {
    width: calc(197 / 375 * 100vw);
  }
}
.p-thanks__onegai__line__button a {
  display: block;
}
.p-thanks__onegai__line__text {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 30px;
  margin-top: 20px;
  text-align: center;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-thanks__onegai__line__text {
    font-size: calc(15 / 1200 * 100vw);
    line-height: calc(30 / 1200 * 100vw);
    margin-top: calc(20 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__onegai__line__text {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(30 / 375 * 100vw);
    margin-top: calc(20 / 375 * 100vw);
    text-align: justify;
  }
}
.p-thanks__onegai__line__text span.color {
  color: var(--color-main);
  font-weight: bold;
}
.p-thanks__onegai__line__text span.em {
  font-weight: bold;
}
.p-thanks__onegai__notice {
  margin-top: 60px;
}
@media screen and (max-width: 1199px) {
  .p-thanks__onegai__notice {
    margin-top: calc(60 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__onegai__notice {
    margin-top: calc(30 / 375 * 100vw);
  }
}
.p-thanks__onegai__notice__title {
  color: var(--color-main);
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 40px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-thanks__onegai__notice__title {
    font-size: calc(24 / 1200 * 100vw);
    line-height: calc(40 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__onegai__notice__title {
    font-size: calc(22 / 375 * 100vw);
    line-height: calc(34 / 375 * 100vw);
  }
}
.p-thanks__onegai__notice__text {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 30px;
  margin-top: 10px;
  text-align: center;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-thanks__onegai__notice__text {
    font-size: calc(15 / 1200 * 100vw);
    line-height: calc(30 / 1200 * 100vw);
    margin-top: calc(10 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__onegai__notice__text {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(30 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
    text-align: justify;
  }
}
.p-thanks__flow {
  margin-top: 60px;
  padding: 60px 0;
}
@media screen and (max-width: 1199px) {
  .p-thanks__flow {
    margin-top: calc(60 / 1200 * 100vw);
    padding: calc(60 / 1200 * 100vw) 0;
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__flow {
    margin-top: calc(30 / 375 * 100vw);
    padding: calc(40 / 375 * 100vw) 0;
  }
}
.p-thanks__flow__title {
  color: var(--color-main);
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
}
@media screen and (max-width: 1199px) {
  .p-thanks__flow__title {
    font-size: calc(22 / 1200 * 100vw);
    margin-bottom: calc(50 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__flow__title {
    font-size: calc(22 / 375 * 100vw);
    margin-bottom: calc(40 / 375 * 100vw);
  }
}
.p-thanks__flow__stepList > ul > li + li {
  margin-top: 50px;
}
@media screen and (max-width: 1199px) {
  .p-thanks__flow__stepList > ul > li + li {
    margin-top: calc(50 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__flow__stepList > ul > li + li {
    margin-top: calc(30 / 375 * 100vw);
  }
}
.p-thanks__flow__stepList__stepBox {
  display: flex;
  justify-content: space-between;
}
.p-thanks__flow__stepList__stepBox__label {
  width: 51px;
}
.p-thanks__flow__stepList__stepBox__label img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .p-thanks__flow__stepList__stepBox__label {
    width: calc(51 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__flow__stepList__stepBox__label {
    display: none;
    width: calc(51 / 375 * 100vw);
  }
}
.p-thanks__flow__stepList__stepBox__textBox {
  width: 920px;
}
@media screen and (max-width: 1199px) {
  .p-thanks__flow__stepList__stepBox__textBox {
    width: calc(920 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__flow__stepList__stepBox__textBox {
    width: calc(920 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__flow__stepList__stepBox__textBox__titleBox {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
}
.p-thanks__flow__stepList__stepBox__textBox__titleBox__label {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-thanks__flow__stepList__stepBox__textBox__titleBox__label {
    display: block;
    width: calc(51 / 375 * 100vw);
  }
}
.p-thanks__flow__stepList__stepBox__textBox__titleBox__title {
  color: var(--color-main);
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
@media screen and (max-width: 1199px) {
  .p-thanks__flow__stepList__stepBox__textBox__titleBox__title {
    font-size: calc(20 / 1200 * 100vw);
    margin-bottom: calc(10 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__flow__stepList__stepBox__textBox__titleBox__title {
    font-size: calc(20 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
    width: calc(266 / 375 * 100vw);
  }
}
.p-thanks__flow__stepList__stepBox__textBox__text {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 28px;
  text-align: justify;
}
@media screen and (max-width: 1199px) {
  .p-thanks__flow__stepList__stepBox__textBox__text {
    font-size: calc(15 / 1200 * 100vw);
    line-height: calc(28 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__flow__stepList__stepBox__textBox__text {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(28 / 375 * 100vw);
    margin-top: calc(15 / 375 * 100vw);
  }
}
.p-thanks__faq {
  padding: 60px 0;
}
@media screen and (max-width: 1199px) {
  .p-thanks__faq {
    padding: calc(60 / 1200 * 100vw) 0;
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__faq {
    padding: calc(40 / 375 * 100vw) 0;
  }
}
.p-thanks__faq__title {
  color: var(--color-main);
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
}
@media screen and (max-width: 1199px) {
  .p-thanks__faq__title {
    font-size: calc(22 / 1200 * 100vw);
    margin-bottom: calc(50 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__faq__title {
    font-size: calc(22 / 375 * 100vw);
    margin-bottom: calc(40 / 375 * 100vw);
  }
}
.p-thanks__faq__faqList > ul > li + li {
  margin-top: 50px;
}
@media screen and (max-width: 1199px) {
  .p-thanks__faq__faqList > ul > li + li {
    margin-top: calc(50 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__faq__faqList > ul > li + li {
    margin-top: calc(30 / 375 * 100vw);
  }
}
.p-thanks__faq__faqList__faqBox__qBox {
  align-items: center;
  background-color: var(--color-bg3);
  border-radius: 5px;
  display: flex;
  height: 71px;
  padding: 0 25px;
}
@media screen and (max-width: 1199px) {
  .p-thanks__faq__faqList__faqBox__qBox {
    border-radius: calc(5 / 1200 * 100vw);
    height: calc(71 / 1200 * 100vw);
    padding: 0 calc(25 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__faq__faqList__faqBox__qBox {
    border-radius: calc(5 / 375 * 100vw);
    height: calc(86 / 375 * 100vw);
    padding: 0 calc(25 / 375 * 100vw);
  }
}
.p-thanks__faq__faqList__faqBox__qBox__icon {
  color: var(--color-main);
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-right: 20px;
}
@media screen and (max-width: 1199px) {
  .p-thanks__faq__faqList__faqBox__qBox__icon {
    font-size: calc(19 / 1200 * 100vw);
    margin-right: calc(20 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__faq__faqList__faqBox__qBox__icon {
    font-size: calc(19 / 375 * 100vw);
    line-height: calc(29 / 375 * 100vw);
    margin-right: calc(20 / 375 * 100vw);
  }
}
.p-thanks__faq__faqList__faqBox__qBox__title {
  color: var(--color-main);
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1199px) {
  .p-thanks__faq__faqList__faqBox__qBox__title {
    font-size: calc(19 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__faq__faqList__faqBox__qBox__title {
    font-size: calc(19 / 375 * 100vw);
    line-height: calc(29 / 375 * 100vw);
  }
}
.p-thanks__faq__faqList__faqBox__text {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 28px;
  margin-top: 20px;
}
@media screen and (max-width: 1199px) {
  .p-thanks__faq__faqList__faqBox__text {
    font-size: calc(15 / 1200 * 100vw);
    line-height: calc(28 / 1200 * 100vw);
    margin-top: calc(20 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__faq__faqList__faqBox__text {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(28 / 375 * 100vw);
    margin-top: calc(15 / 375 * 100vw);
  }
}
.p-thanks__cta {
  margin-top: 60px;
}
@media screen and (max-width: 1199px) {
  .p-thanks__cta {
    margin-top: calc(60 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__cta {
    margin-top: calc(60 / 375 * 100vw);
  }
}
.p-thanks__cta__title {
  color: var(--color-main);
  font-size: 27px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 40px;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-thanks__cta__title {
    font-size: calc(27 / 1200 * 100vw);
    line-height: calc(40 / 1200 * 100vw);
    margin-bottom: calc(30 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__cta__title {
    font-size: calc(18 / 375 * 100vw);
    line-height: calc(28 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
    text-align: left;
  }
}
.p-thanks__cta__button {
  margin: 0 auto;
  width: 150px;
}
.p-thanks__cta__button img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .p-thanks__cta__button {
    width: calc(150 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__cta__button {
    margin-left: 0;
    width: calc(150 / 375 * 100vw);
  }
}
.p-thanks__cta__button a {
  display: block;
}
.p-thanks__link {
  margin-top: 45px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .p-thanks__link {
    margin-top: calc(45 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__link {
    margin-top: calc(45 / 375 * 100vw);
  }
}
.p-thanks__link::before {
  background-image: url(../images/decoration_thanks_cta.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -30px;
  content: "";
  display: block;
  height: 314px;
  position: absolute;
  right: 86px;
  width: 212px;
}
@media screen and (max-width: 1199px) {
  .p-thanks__link::before {
    bottom: calc(-30 / 1200 * 100vw);
    height: calc(314 / 1200 * 100vw);
    right: calc(86 / 1200 * 100vw);
    width: calc(212 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__link::before {
    bottom: calc(-25 / 375 * 100vw);
    height: calc(227 / 375 * 100vw);
    right: calc(-25 / 375 * 100vw);
    width: calc(153 / 375 * 100vw);
  }
}
.p-thanks__link a {
  color: var(--color-main);
  display: none;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 1199px) {
  .p-thanks__link a {
    font-size: calc(14 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-thanks__link a {
    font-size: calc(14 / 375 * 100vw);
  }
}

.p-pp {
  -ms-overflow-style: none;
  background-color: var(--color-white);
  border-radius: 10px;
  height: 663px;
  overflow: scroll;
  padding: 60px 66px 36px;
  position: relative;
  scrollbar-width: none;
  width: 1000px;
}
@media screen and (max-width: 999px) {
  .p-pp {
    border-radius: calc(10 / 1000 * 100vw);
    height: calc(663 / 1000 * 100vw);
    padding: calc(60 / 1000 * 100vw) calc(66 / 1000 * 100vw) calc(40 / 1000 * 100vw);
    width: calc(1000 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-pp {
    height: 90vh;
    padding: calc(35 / 375 * 100vw) calc(30 / 375 * 100vw) calc(70 / 375 * 100vw);
    width: calc(335 / 375 * 100vw);
  }
}
.p-pp::-webkit-scrollbar {
  display: none;
}
.p-pp__title {
  color: var(--color-black);
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 999px) {
  .p-pp__title {
    font-size: calc(22 / 1000 * 100vw);
    margin-bottom: calc(50 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-pp__title {
    font-size: calc(11 / 375 * 100vw);
    margin-bottom: calc(30 / 375 * 100vw);
  }
}
.p-pp__entry h3 {
  font-size: 14px;
  line-height: 26px;
}
@media screen and (max-width: 999px) {
  .p-pp__entry h3 {
    font-size: calc(14 / 1000 * 100vw);
    line-height: calc(26 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-pp__entry h3 {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(26 / 375 * 100vw);
  }
}
.p-pp__entry > p {
  font-size: 14px;
  line-height: 26px;
}
@media screen and (max-width: 999px) {
  .p-pp__entry > p {
    font-size: calc(14 / 1000 * 100vw);
    line-height: calc(26 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-pp__entry > p {
    font-size: calc(11 / 375 * 100vw);
    line-height: calc(18 / 375 * 100vw);
  }
}
.p-pp__entry > p + * {
  margin-top: 21px;
}
@media screen and (max-width: 999px) {
  .p-pp__entry > p + * {
    margin-top: calc(21 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-pp__entry > p + * {
    margin-top: calc(21 / 375 * 100vw);
  }
}
.p-pp__entry a{
  color: var(--color-bg2);
}
.p-pp__button {
  background-color: var(--color-white);
  background-image: url(../images/icon_close.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  content: "";
  cursor: pointer;
  display: block;
  height: 32px;
  position: fixed;
  right: 20px;
  top: 20px;
  width: 32px;
}
@media screen and (max-width: 999px) {
  .p-pp__button {
    height: calc(32 / 1000 * 100vw);
    right: calc(20 / 1000 * 100vw);
    top: calc(20 / 1000 * 100vw);
    width: calc(32 / 1000 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-pp__button {
    bottom: calc(28 / 375 * 100vw);
    height: calc(32 / 375 * 100vw);
    left: 0;
    margin: 0 auto;
    right: 0;
    top: auto;
    width: calc(32 / 375 * 100vw);
  }
}

/* 書き足し */
.step {
  width: 47%;
  margin: 3rem auto;
}



.form{
  padding: 0 0 3.5rem;
  width: 55%;
  margin: 0 auto;
}

.select_box {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1199px) {
  .p-contact .c-form__content__step__label {
    border-radius: 5px;
    font-size: 12px;
    font-weight: 300;
    height: 30px;
    width: 75px;
  }
  .p-contact .c-form__content__block__title {
    font-size: 20px;
  }
  .c-form__content__block__radio__choice label {
    width: 228px;
    font-size: 20px;
  }
  .c-form__content__block__radio__choice_1 label {
    width: 260px;
  }
  .step {
    margin: 3rem auto;
  }
}

@media screen and (max-width: 999px) {
  .p-contact .c-form__content__block__title {
    font-size: 18px;
  }
  .step {
    width: 47%;
    margin: 2rem auto;
  }
  .form{
    padding: 0 0 3rem;
    width: 70%;
  }
}

@media screen and (max-width: 800px) {
  .p-contact .c-form__content__block__title {
    font-size: 15px;
  }
  .step {
    margin: 1.5rem auto;
  }
  .step-2-form {
    width: 60%;
    margin: 0 auto;
  }
  .form{
    padding: 0 0 2rem;
    width: 76%;
  }
}

@media screen and (max-width: 500px) {
  .p-contact .c-form__content__step__label {
    border-radius: 5px;
    font-size: 8px;
    font-weight: 500;
    height: 23px;
    width: 50px;
  }
  .step {
    margin: 1rem auto;
    width: 48%;
  }
  .form{
    padding: 0 0 1.7rem;
    width: 88%;
  }
  .c-form__content__block input[type=text], .c-form__content__block input[type=date] {
    height: 55px;
  }
}

@media screen and (max-width: 400px) {
  .form{
    padding: 0 0 1.4rem;
  }
}

.c-form__titleBox__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-form__content__block input[type=text], .c-form__content__block input[type=date] {
  background-color: var(--color-form);
  border-radius: 5px;
  border: solid var(--color-main2) 2px;
  color: var(--color-black);
  font-size: 15px;
  font-weight: bold;
  height: 80px;
  padding: 0 20px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .c-form__content__block input[type=text], .c-form__content__block input[type=date] {
    height: 70px;
  }
}
@media screen and (max-width: 500px) {
  .p-contact .c-form__content__block select {
    height: 60px;
  }
  .c-form__content__block input[type=text], .c-form__content__block input[type=date] {
    height: 65px;
  }
  .p-contact .c-form__content__back__text {
    font-size: 12px;
}
}

::placeholder {
  color: var(--color-placeholder);
}

input[type="text"]:focus {
  outline: none;
  border:2px solid var(--color-main2);
}

.c-form__content__block select:focus {
  outline: none;
  border:2px solid var(--color-main2);
}

.c-form__content__block__radio__box,
.c-form__content__block__radio__box__2{
  display: flex;
}

.c-form__content__block__radio__box__2{
  margin-top: 22px;
}

@media screen and (max-width: 999px) {
  .c-form__content__block__radio__box__2{
    margin-top: 18px;
  }
}

@media screen and (max-width: 500px) {
  .c-form__content__block__radio__box__2{
    margin-top: 14px;
  }
}

/* -------------------------
    　　プライバシーポリシー
------------------------- */
.lity-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #000205;
}

.lity-content {
  display: flex;
  width: 1000px;
}

#pp.p-pp {
  padding: 60px 51px 36px;
}

.p-pp__button {
  display: none;
}

@media screen and (max-width: 1100px) {
  .lity-content {
      display: flex;
      width: 700px;
  }
}

@media screen and (max-width: 750px) {
  .lity-content {
      display: flex;
      width: 400px;
      justify-content: center;
  }
  #pp.p-pp {
    padding: 60px 25px 36px;
  }
}

@media screen and (max-width: 400px) {
  .lity-content {
      display: flex;
      width: 350px;
      justify-content: center;
  }
  #pp.p-pp {
    padding: 60px 25px 36px;
  }
}


/* spinner */
.loader {
  font-size: 5px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  animation: mulShdSpin 1.1s infinite ease;
  transform: translateZ(0);
}

@keyframes mulShdSpin {
  0%,
  100% {
    box-shadow:
      0em -2.6em 0em 0em #ffffff,
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.5),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow:
      0em -2.6em 0em 0em rgba(255, 255, 255, 0.7),
      1.8em -1.8em 0 0em #ffffff,
      2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow:
      0em -2.6em 0em 0em rgba(255, 255, 255, 0.5),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7),
      2.5em 0em 0 0em #ffffff,
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow:
      0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.7),
      1.75em 1.75em 0 0em #ffffff,
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow:
      0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.5),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7),
      0em 2.5em 0 0em #ffffff,
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow:
      0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.7),
      -1.8em 1.8em 0 0em #ffffff,
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow:
      0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.5),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7),
      -2.6em 0em 0 0em #ffffff,
      -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow:
      0em -2.6em 0em 0em rgba(255, 255, 255, 0.2),
      1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2),
      2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
      1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2),
      0em 2.5em 0 0em rgba(255, 255, 255, 0.2),
      -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5),
      -2.6em 0em 0 0em rgba(255, 255, 255, 0.7),
      -1.8em -1.8em 0 0em #ffffff;
  }
}
