/* =======================================
 reset
======================================= */
/***
    The new CSS reset - version 1.11.3 (last updated 25.08.2024)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
  list-style: none;
}

/* Firefox: solve issue where nested ordered lists continue numbering from parent (https://bugzilla.mozilla.org/show_bug.cgi?id=1881517) */
ol {
  counter-reset: revert;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

/* =======================================
 layout
======================================= */
:root {
  --font_color: #1a1a1a;
  --primary_color: #ff6926;
  --secondary_color: #00af59;
  --font_sans-serif: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", sans-serif;
}

html, body {
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

:focus-visible {
  outline: none;
}

img {
  vertical-align: bottom;
}

strong {
  font-weight: 700;
}

body {
  background: #bfebd5;
  color: var(--font_color);
  font-family: var(--font_sans-serif);
  font-weight: 500;
  line-height: 1;
  margin: auto;
  width: 100%;
}
@media only screen and (max-width: 750px) {
  body {
    font-size: 3.2vw;
  }
}
@media only screen and (min-width: 751px) {
  body {
    font-size: 24px;
    min-width: 750px;
  }
}

@media only screen and (min-width: 751px) {
  .sp_only {
    display: none !important;
  }
}

@media only screen and (max-width: 750px) {
  .pc_only {
    display: none !important;
  }
}

.contents {
  background: #fff;
}
@media only screen and (min-width: 751px) {
  .contents {
    margin: auto;
    width: 750px;
  }
}

@media only screen and (max-width: 750px) {
  .contents--lp {
    padding-bottom: 22.933vw;
  }
}
@media only screen and (min-width: 751px) {
  .contents--lp {
    padding-bottom: 172px;
  }
}

.form-1st {
  background: var(--secondary_color);
}
@media only screen and (max-width: 750px) {
  .form-1st {
    padding-bottom: 5.333vw;
  }
}
@media only screen and (min-width: 751px) {
  .form-1st {
    padding-bottom: 40px;
  }
}

.form-1st__box {
  background: #fff;
  margin: auto;
}
@media only screen and (max-width: 750px) {
  .form-1st__box {
    border-radius: 4vw;
    padding: 5.333vw 0 4vw;
    width: 90.667vw;
  }
}
@media only screen and (min-width: 751px) {
  .form-1st__box {
    border-radius: 30px;
    padding: 40px 0 30px;
    width: 680px;
  }
}

.form-1st__title {
  margin: auto;
}
@media only screen and (max-width: 750px) {
  .form-1st__title {
    width: 78.667vw;
  }
}
@media only screen and (min-width: 751px) {
  .form-1st__title {
    width: 590px;
  }
}

.form-1st__question {
  background: url(../images/form-1st_bg.png) 0 0/100% 100% no-repeat;
  color: #fff;
}
@media only screen and (max-width: 750px) {
  .form-1st__question {
    height: 15.333vw;
    margin: 1.867vw 0 0 6vw;
    padding: 4vw 0 3.333vw 18.667vw;
    width: 79.067vw;
  }
}
@media only screen and (min-width: 751px) {
  .form-1st__question {
    height: 115px;
    margin: 14px 0 0 45px;
    padding: 30px 0 25px 140px;
    width: 593px;
  }
}

.form-1st__list {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 750px) {
  .form-1st__list {
    gap: 1.333vw;
    margin: -0.4vw auto 0 6vw;
  }
}
@media only screen and (min-width: 751px) {
  .form-1st__list {
    gap: 10px;
    margin: -3px auto 0 45px;
  }
}

.form-1st__item {
  background: #fff;
  border: 1px solid #bcbcbc;
  display: block;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .form-1st__item {
    border-radius: 1.867vw;
    line-height: 10.667vw;
    padding-left: 8vw;
    width: 38.667vw;
  }
}
@media only screen and (min-width: 751px) {
  .form-1st__item {
    border-radius: 14px;
    line-height: 80px;
    padding-left: 60px;
    width: 290px;
  }
}
.form-1st__item::before {
  border: solid var(--secondary_color);
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 750px) {
  .form-1st__item::before {
    border-width: 0.267vw;
    height: 3.2vw;
    left: 2.667vw;
    width: 3.2vw;
  }
}
@media only screen and (min-width: 751px) {
  .form-1st__item::before {
    border-width: 2px;
    height: 24px;
    left: 20px;
    width: 24px;
  }
}

.just {
  background: #72deae;
}

.trouble {
  background: #d2d2c8;
}

.case {
  background: #f8f2de;
}
@media only screen and (max-width: 750px) {
  .case {
    padding-bottom: 10.133vw;
  }
}
@media only screen and (min-width: 751px) {
  .case {
    padding-bottom: 76px;
  }
}

@media only screen and (max-width: 750px) {
  .case__track {
    margin-top: 4.8vw;
  }
}
@media only screen and (min-width: 751px) {
  .case__track {
    margin-top: 36px;
  }
}

@media only screen and (max-width: 750px) {
  .case__item {
    padding: 0 4.667vw;
  }
}
@media only screen and (min-width: 751px) {
  .case__item {
    padding: 0 35px;
  }
}

@media only screen and (max-width: 750px) {
  .case__pagination {
    margin: 5.6vw 0 0;
  }
}
@media only screen and (min-width: 751px) {
  .case__pagination {
    margin: 42px 0 0;
  }
}
@media only screen and (max-width: 750px) {
  .case__pagination li {
    margin: 0 2.4vw;
  }
}
@media only screen and (min-width: 751px) {
  .case__pagination li {
    margin: 0 18px;
  }
}

.case__page {
  background: #808080;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 750px) {
  .case__page {
    height: 3.2vw;
    width: 3.2vw;
  }
}
@media only screen and (min-width: 751px) {
  .case__page {
    height: 24px;
    width: 24px;
  }
}
.case__page.is-active {
  background: var(--secondary_color);
}

.point {
  background: url(../images/point_bg.png) 0 0/100% auto repeat-y;
}

@media only screen and (max-width: 750px) {
  .point__item03 {
    -webkit-transform: translateX(-2.667vw);
            transform: translateX(-2.667vw);
    width: 102.667vw;
  }
}
@media only screen and (min-width: 751px) {
  .point__item03 {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    width: 770px;
  }
}

.introduce {
  background: #faf5d7;
}
@media only screen and (max-width: 750px) {
  .introduce {
    padding-bottom: 11.2vw;
  }
}
@media only screen and (min-width: 751px) {
  .introduce {
    padding-bottom: 84px;
  }
}

@media only screen and (max-width: 750px) {
  .job {
    margin-top: 8.667vw;
  }
}
@media only screen and (min-width: 751px) {
  .job {
    margin-top: 65px;
  }
}

@media only screen and (max-width: 750px) {
  .job__item {
    padding: 0 3.333vw;
    width: 38.667vw;
  }
}
@media only screen and (min-width: 751px) {
  .job__item {
    padding: 0 25px;
    width: 290px;
  }
}

.job__caption {
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .job__caption {
    font-size: 3.733vw;
    margin-top: 2.933vw;
  }
}
@media only screen and (min-width: 751px) {
  .job__caption {
    font-size: 28px;
    margin-top: 22px;
  }
}

.button {
  cursor: pointer;
  display: block;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
@media only screen and (max-width: 750px) {
  .button {
    -webkit-filter: drop-shadow(1.333vw 1.333vw 1.333vw rgba(0, 0, 0, 0.2));
            filter: drop-shadow(1.333vw 1.333vw 1.333vw rgba(0, 0, 0, 0.2));
    margin: 9.333vw auto 0;
    width: 84.267vw;
  }
}
@media only screen and (min-width: 751px) {
  .button {
    -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.2));
    margin: 70px auto 0;
    width: 632px;
  }
}
@media (any-hover: hover) {
  .button:hover {
    opacity: 0.8;
  }
}

.use {
  background: #e2f4ec;
}

@media only screen and (max-width: 750px) {
  .thanks {
    padding-bottom: 6.667vw;
  }
}
@media only screen and (min-width: 751px) {
  .thanks {
    padding-bottom: 50px;
  }
}

.thanks__main {
  background: #d9f3e6;
}

@media only screen and (max-width: 750px) {
  .button-close {
    margin: 6.667vw auto 0;
    width: 36vw;
  }
}
@media only screen and (min-width: 751px) {
  .button-close {
    margin: 50px auto 0;
    width: 270px;
  }
}
@media (any-hover: hover) {
  .button-close:hover {
    opacity: 0.8;
  }
}

.nav__list {
  display: flex;
}

.nav__item {
  width: 50%;
}

.nav__link {
  display: block;
}
@media (any-hover: hover) {
  .nav__link:hover {
    opacity: 0.8;
  }
}

.sticky-btn {
  bottom: 0;
  cursor: pointer;
  display: none;
  left: 50%;
  position: fixed;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 5;
}
@media only screen and (max-width: 750px) {
  .sticky-btn {
    width: 100%;
  }
}
@media only screen and (min-width: 751px) {
  .sticky-btn {
    box-shadow: 10px 10px 8px rgba(0, 0, 0, 0.3);
    width: 750px;
  }
}
@media (any-hover: hover) {
  .sticky-btn:hover {
    opacity: 0.9;
  }
}

.modal__bg {
  background: rgba(0, 0, 0, 0.2);
  display: block;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.form-1st--modal {
  background: var(--primary_color);
  left: 50%;
  position: fixed;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 15;
}
@media only screen and (max-width: 750px) {
  .form-1st--modal {
    box-shadow: 1.333vw 1.333vw 1.067vw rgba(0, 0, 0, 0.3);
    width: 100%;
  }
}
@media only screen and (min-width: 751px) {
  .form-1st--modal {
    box-shadow: 10px 10px 8px rgba(0, 0, 0, 0.3);
    width: 750px;
  }
}
.form-1st--modal .form-1st__question {
  background-image: url(../images/modal_bg.png);
  color: var(--font_color);
}
@media only screen and (max-width: 750px) {
  .form-1st--modal .form-1st__question {
    height: 15.467vw;
    width: 79.333vw;
  }
}
@media only screen and (min-width: 751px) {
  .form-1st--modal .form-1st__question {
    height: 116px;
    width: 595px;
  }
}

.modal__close {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
}
@media only screen and (max-width: 750px) {
  .modal__close {
    width: 8.667vw;
  }
}
@media only screen and (min-width: 751px) {
  .modal__close {
    width: 65px;
  }
}
@media (any-hover: hover) {
  .modal__close:hover {
    opacity: 0.8;
  }
}

/* =======================================
 form
======================================= */
::-webkit-input-placeholder {
  color: #b3b3b3;
}
:-ms-input-placeholder {
  color: #b3b3b3;
}
::-ms-input-placeholder {
  color: #b3b3b3;
}
::placeholder {
  color: #b3b3b3;
}

.q0 {
  display: none;
}

.form-top {
  align-items: center;
  background: #fff;
  display: flex;
  left: 0;
  justify-content: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
@media only screen and (max-width: 750px) {
  .form-top {
    gap: 3.333vw;
    padding: 2.667vw 0;
  }
}
@media only screen and (min-width: 751px) {
  .form-top {
    gap: 25px;
    padding: 20px 0;
  }
}

.stepbar {
  background: #e9ecef;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .stepbar {
    border-radius: 2vw;
    height: 4vw;
    width: 74.667vw;
  }
}
@media only screen and (min-width: 751px) {
  .stepbar {
    border-radius: 15px;
    height: 30px;
    width: 560px;
  }
}

.stepbar__bg {
  background: url(../images/stepbar.png) 0 0/auto 100% repeat-x;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: width 0.3s ease-out;
}

.stepbar--form1 .stepbar__bg {
  width: 14.25%;
}

.stepbar--form2 .stepbar__bg {
  width: 16.5%;
}

.is_active2 .stepbar--form1 .stepbar__bg {
  width: 28.5%;
}
.is_active2 .stepbar--form2 .stepbar__bg {
  width: 33%;
}

.is_active3 .stepbar--form1 .stepbar__bg {
  width: 42.75%;
}
.is_active3 .stepbar--form2 .stepbar__bg {
  width: 49.5%;
}

.is_active4 .stepbar--form1 .stepbar__bg {
  width: 57%;
}
.is_active4 .stepbar--form2 .stepbar__bg {
  width: 66%;
}

.is_active5 .stepbar--form1 .stepbar__bg {
  width: 71.25%;
}
.is_active5 .stepbar--form2 .stepbar__bg {
  width: 82.5%;
}

.is_active6 .stepbar--form1 .stepbar__bg {
  width: 85.5%;
}
.is_active6 .stepbar--form2 .stepbar__bg {
  width: 100%;
}

.is_active7 .stepbar--form1 .stepbar__bg {
  width: 100%;
}

.form-top__text {
  color: var(--secondary_color);
}

.form-top__num {
  font-size: 133.333%;
  padding: 0 0.25em 0 0.5em;
}

.contents--subpage {
  background: #bfebd5;
  padding-bottom: 0;
}

.form {
  background: #bfebd5;
}
@media only screen and (max-width: 750px) {
  .form {
    padding-bottom: 4vw;
  }
}
@media only screen and (min-width: 751px) {
  .form {
    padding-bottom: 30px;
  }
}

.block {
  display: none;
}

.block__inner {
  align-content: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
}
@media only screen and (max-width: 750px) {
  .block__inner {
    padding: 3.333vw;
  }
}
@media only screen and (min-width: 751px) {
  .block__inner {
    padding: 25px;
  }
}

.block--first {
  display: inherit;
}
@media only screen and (max-width: 750px) {
  .block--first .block__inner {
    min-height: calc(100vh - 66.667vw);
    min-height: calc(100dvh - 66.667vw);
  }
}
@media only screen and (min-width: 751px) {
  .block--first .block__inner {
    min-height: calc(100vh - 500px);
    min-height: calc(100dvh - 500px);
  }
}

.question {
  display: flex;
}
@media only screen and (max-width: 750px) {
  .question {
    gap: 2.667vw;
  }
}
@media only screen and (min-width: 751px) {
  .question {
    gap: 20px;
  }
}

.question__avatar {
  border-radius: 50%;
  opacity: 0;
  overflow: hidden;
}
@media only screen and (max-width: 750px) {
  .question__avatar {
    height: 10.667vw;
    width: 10.667vw;
  }
}
@media only screen and (min-width: 751px) {
  .question__avatar {
    height: 80px;
    width: 80px;
  }
}

.question__text {
  background: #fff;
  line-height: 1.5;
  opacity: 0;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .question__text {
    border-radius: 5.333vw;
    margin-top: 4.667vw;
    padding: 3.333vw 4vw;
    width: 61.067vw;
  }
}
@media only screen and (min-width: 751px) {
  .question__text {
    border-radius: 40px;
    margin-top: 35px;
    padding: 25px 30px;
    width: 458px;
  }
}
.question__text::before {
  background: #fff;
  -webkit-clip-path: polygon(62% 0, 0% 100%, 100% 100%);
          clip-path: polygon(62% 0, 0% 100%, 100% 100%);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  -webkit-transform: rotate(-47deg);
          transform: rotate(-47deg);
}
@media only screen and (max-width: 750px) {
  .question__text::before {
    height: 2.933vw;
    left: 0.267vw;
    width: 2.133vw;
  }
}
@media only screen and (min-width: 751px) {
  .question__text::before {
    height: 22px;
    left: 2px;
    width: 16px;
  }
}

.answer {
  background: var(--secondary_color);
  opacity: 0;
}
@media only screen and (max-width: 750px) {
  .answer {
    border-radius: 1.6vw;
    margin: 4vw auto 0;
    padding: 3.333vw 0 4vw 4vw;
    width: 74.667vw;
  }
}
@media only screen and (min-width: 751px) {
  .answer {
    border-radius: 1.6vw;
    margin: 30px auto 0;
    padding: 25px 0 30px 30px;
    width: 560px;
  }
}

.radio-list {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 750px) {
  .radio-list {
    gap: 0.8vw;
  }
}
@media only screen and (min-width: 751px) {
  .radio-list {
    gap: 6px;
  }
}

@media only screen and (max-width: 750px) {
  .radio-list__item {
    width: 66.667vw;
  }
}
@media only screen and (min-width: 751px) {
  .radio-list__item {
    width: 500px;
  }
}

.input-radio {
  display: none;
}

.radio-list__label {
  background: #fff;
  border: 1px solid #bcbcbc;
  cursor: pointer;
  display: block;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .radio-list__label {
    border-radius: 1.867vw;
    line-height: 9.067vw;
    padding-left: 8vw;
  }
}
@media only screen and (min-width: 751px) {
  .radio-list__label {
    border-radius: 14px;
    line-height: 68px;
    padding-left: 60px;
  }
}
.radio-list__label::before, .radio-list__label::after {
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 50%;
}
@media only screen and (max-width: 750px) {
  .radio-list__label::before, .radio-list__label::after {
    height: 3.2vw;
    left: 2.667vw;
    width: 3.2vw;
  }
}
@media only screen and (min-width: 751px) {
  .radio-list__label::before, .radio-list__label::after {
    height: 24px;
    left: 20px;
    width: 24px;
  }
}
.radio-list__label::before {
  border: 1px solid #dfe3e7;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.radio-list__label::after {
  background: var(--primary_color);
  display: none;
  -webkit-transform: translate(-1%, -50%) scale(0.67);
          transform: translate(-1%, -50%) scale(0.67);
}

.input-radio:checked + .radio-list__label {
  color: var(--primary_color);
}
.input-radio:checked + .radio-list__label::before {
  border-color: var(--primary_color);
}
.input-radio:checked + .radio-list__label::after {
  display: block;
}

.radio-list--2col {
  flex-direction: row;
  flex-wrap: wrap;
}
@media only screen and (max-width: 750px) {
  .radio-list--2col .radio-list__item {
    width: 32vw;
  }
}
@media only screen and (min-width: 751px) {
  .radio-list--2col .radio-list__item {
    width: 240px;
  }
}

select {
  -webkit-appearance: menulist-button;
          appearance: menulist-button;
  background: #fff;
  border: 1px solid #bcbcbc;
  cursor: pointer;
  display: block;
  font-size: 100%;
  line-height: 1;
}
@media only screen and (max-width: 750px) {
  select {
    border-radius: 1.867vw;
    padding: 2vw 3.333vw;
  }
}
@media only screen and (min-width: 751px) {
  select {
    border-radius: 14px;
    padding: 15px 25px;
  }
}

@media only screen and (max-width: 750px) {
  .select--area {
    width: 66.667vw;
  }
}
@media only screen and (min-width: 751px) {
  .select--area {
    width: 500px;
  }
}

@media only screen and (max-width: 750px) {
  .select--year {
    width: 26.933vw;
  }
}
@media only screen and (min-width: 751px) {
  .select--year {
    width: 202px;
  }
}

@media only screen and (max-width: 750px) {
  .select--month,
  .select--day {
    width: 24vw;
  }
}
@media only screen and (min-width: 751px) {
  .select--month,
  .select--day {
    width: 180px;
  }
}

.textbox__label {
  color: #fff;
}

.textbox__data {
  position: relative;
}
@media only screen and (max-width: 750px) {
  .textbox__data {
    margin-top: 2vw;
  }
}
@media only screen and (min-width: 751px) {
  .textbox__data {
    margin-top: 15px;
  }
}

.is_error + .message {
  background: #f00;
  border-radius: 5px;
  color: #fff;
  font-size: 85%;
  padding: 0.3em 0.5em;
  position: absolute;
  right: 1.5em;
  top: -2em;
}
.is_error + .message::after {
  border-color: red transparent transparent;
  border-style: solid;
  border-width: 0.4em 0.4em 0;
  bottom: 1px;
  content: "";
  display: block;
  height: 0;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  width: 0;
}

@media only screen and (max-width: 750px) {
  .textbox + .textbox {
    margin-top: 3.333vw;
  }
}
@media only screen and (min-width: 751px) {
  .textbox + .textbox {
    margin-top: 25px;
  }
}

.input-text {
  background: #fff;
  border: 1px solid #bcbcbc;
  font-size: 100%;
  line-height: 1;
}
@media only screen and (max-width: 750px) {
  .input-text {
    border-radius: 1.867vw;
    padding: 2.133vw 3.333vw;
    width: 66.667vw;
  }
}
@media only screen and (min-width: 751px) {
  .input-text {
    border-radius: 14px;
    padding: 16px 25px;
    width: 500px;
  }
}
.input-text.is_error {
  background: #fcc;
  border: 2px solid #f00;
}

.date-of-birth {
  align-items: center;
  display: flex;
}
@media only screen and (max-width: 750px) {
  .date-of-birth {
    gap: 6.667vw;
  }
}
@media only screen and (min-width: 751px) {
  .date-of-birth {
    gap: 50px;
  }
}
@media only screen and (max-width: 750px) {
  .date-of-birth + .date-of-birth {
    margin-top: 4vw;
  }
}
@media only screen and (min-width: 751px) {
  .date-of-birth + .date-of-birth {
    margin-top: 30px;
  }
}

.date-of-birth__col {
  align-items: center;
  display: flex;
}
@media only screen and (max-width: 750px) {
  .date-of-birth__col {
    gap: 0.8vw;
  }
}
@media only screen and (min-width: 751px) {
  .date-of-birth__col {
    gap: 6px;
  }
}

.date-of-birth__unit {
  color: #fff;
}

.answer__button {
  background: var(--primary_color);
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 100%;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .answer__button {
    border-radius: 4.667vw;
    margin: 4vw auto 0;
    padding: 3.067vw;
  }
}
@media only screen and (min-width: 751px) {
  .answer__button {
    border-radius: 35px;
    margin: 30px auto 0;
    padding: 23px;
  }
}
.answer__button:disabled {
  background: #b3b3b3;
  cursor: none;
}

@media only screen and (max-width: 750px) {
  .answer__button--next {
    width: 33.333vw;
  }
}
@media only screen and (min-width: 751px) {
  .answer__button--next {
    width: 250px;
  }
}

@media only screen and (max-width: 750px) {
  .answer__button--submit {
    width: 48.8vw;
  }
}
@media only screen and (min-width: 751px) {
  .answer__button--submit {
    width: 366px;
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.block.is_show .question__avatar {
  -webkit-animation: fadein 1s ease-out forwards;
          animation: fadein 1s ease-out forwards;
}
.block.is_show .question__text {
  -webkit-animation: fadein 1.5s ease-out forwards;
          animation: fadein 1.5s ease-out forwards;
}
.block.is_show .answer {
  -webkit-animation: fadein 2.5s ease-out forwards;
          animation: fadein 2.5s ease-out forwards;
}/*# sourceMappingURL=style.css.map */