:root {
  --color-main: #0052ff;
  --color-background: #2f353f;
  --color-border: #d9d9d9;
  --color-white: #fff;
  --color-black: #000;
  --color-gray: #7f7f7f;
  --color-gray-light: #f0f0f0;
  --color-gray-tab: #f5f5f5;
  --color-gray-dark: #535353;
  --color-gray-label: #575757;
  --color-black-alpha: rgba(0, 0, 0, .3);
  --color-gray-alpha: rgba(127, 127, 127, 0.3);
  --color-footer: #f4f7fa;
  --color-lightblue: #EDF4FE;
  --font: "Inter", "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic",
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  --max-width: 960px;
}

.c-step-form_head {
  border-radius: 4px 4px 0 0;
  background-color: #08287f;
}

.c-step-form_title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 0;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.3;
}

.c-progress-form {
  display: flex;
  align-items: center;
  gap: 0 14px;
  margin-bottom: 18px;
}

.c-progress-form_bar {
  display: flex;
  position: relative;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  z-index: 0;
  border-radius: 50%;
  width: 80px;
  height: 80px;
}
.c-progress-form_bar::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: background 0.3s ease;
  border-radius: 50%;
  background: conic-gradient(from 0deg at 50% 50%, #0052ff 0deg 180deg, rgba(0, 82, 255, 0) 180deg 360deg);
  width: 100%;
  height: 100%;
  content: "";
}
.c-progress-form_bar.is-active::before {
  background: conic-gradient(from 0deg at 50% 50%, #0052ff 0deg 360deg, rgba(0, 82, 255, 0) 360deg 360deg);
}

.c-progress-form_fill {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  border-radius: 50%;
  background-color: var(--color-white);
  padding-top: 10px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  color: var(--color-gray);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.25;
  font-family: "Roboto", sans-serif;
}
.c-progress-form_fill strong {
  margin-top: -10px;
  color: var(--color-main);
  font-size: 34px;
  line-height: 0.9;
}

.c-progress-form_step {
  display: none;
  width: 100%;
}
.c-progress-form_step.is-active {
  display: block;
}
.c-progress-form_step h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.575;
  text-align: left;
}
.c-progress-form_step p {
  color: var(--color-gray);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.575;
  text-align: left;
}

.c-step-form .mktoForm {
  position: relative;
  padding: 0;
  width: 100% !important;
}
.c-step-form .mktoForm > .mktoFormRow:not(:first-of-type), .c-step-form .mktoForm > .mktoFormRow:not(:first-of-type + .mktoFormRow) {
  display: none;
}
.c-step-form .mktoForm > .mktoFormRow:first-of-type {
  display: block;
}
.c-step-form .mktoForm > .mktoFormRow:nth-of-type(2) {
  display: block;
}
.c-step-form .mktoForm * {
  font-family: var(--font);
}
.c-step-form .mktoForm .mktoFormRow {
  width: 100%;
}
.c-step-form .mktoForm .mktoFormRow .mktoFormCol,
.c-step-form .mktoForm .mktoFormRow .mktoFieldWrap {
  margin-bottom: 0 !important;
  width: 100%;
  min-height: initial;
}
.c-step-form .mktoForm .mktoFormRow .mktoCheckboxList {
  display: flex;
  align-items: center;
  padding-left: 13px;
}
.c-step-form .mktoForm .mktoFormRow .mktoCheckboxList label {
  margin-bottom: 0;
  margin-left: 7px;
}
.c-step-form .mktoForm .mktoFormRow .mktoHtmlText.mktoHasWidth {
  margin-top: -10px !important;
}
.c-step-form .mktoForm .mktoFormRow .mktoLogicalField.mktoCheckboxList.mktoHasWidth.mktoRequired {
  font-weight: bold;
}
.c-step-form .mktoForm .mktoButtonRow {
  width: 100%;
}
.c-step-form .mktoForm .mktoButtonRow .mktoButtonWrap {
  display: block;
  margin-right: auto !important;
  margin-left: auto !important;
  width: 100%;
  max-width: 358px;
}
.c-step-form .mktoForm .mktoButton {
  display: block;
  position: relative;
  transition: 0.3s;
  box-shadow: none !important;
  border-radius: 0 !important;
  background-image: none !important;
  background-color: var(--color-main);
  padding: 13px 10px 13px !important;
  color: var(--color-white);
  font-weight: bold !important;
  font-size: 1rem !important;
  line-height: 1.2 !important;
  font-family: var(--font) !important;
  text-align: center !important;
  text-shadow: none !important;
}
.c-step-form .mktoForm .mktoButton:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}
.c-step-form .mktoForm .mktoButton::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-image: url(/assets/images/common/icon-arrow-white.svg);
  width: 7px;
  height: 13px;
  content: "";
}
.c-step-form .mktoForm label#Lblirai {
  width: 100% !important;
  font-weight: 400 !important;
}
.c-step-form .mktoForm label#Lblirai span {
  font-weight: 400;
  font-size: 0.875rem !important;
  text-decoration: none !important;
}
.c-step-form .mktoForm label#Lblirai a {
  color: var(--color-main);
  text-decoration: underline;
}
.c-step-form .mktoForm label#Lblirai a:hover {
  text-decoration: none;
}
.c-step-form .mktoForm .mktoFieldWrap.mktoRequiredField label#Lblirai span {
  font-size: 10px !important;
  line-height: 1.3;
}
.c-step-form .mktoForm .mktoHtmlText.mktoHasWidth {
  width: 100% !important;
}
.c-step-form .mktoForm .mktoHtmlText.mktoHasWidth > div {
  text-align: left !important;
}
.c-step-form .mktoForm .mktoAsterix {
  float: left !important;
  padding-right: 5px !important;
  padding-left: 0 !important;
}
.c-step-form .mktoForm .mktoOffset {
  display: none !important;
}
.c-step-form .mktoForm input:not([type=radio]):not([type=checkbox]),
.c-step-form .mktoForm select:not([type=radio]):not([type=checkbox]) {
  border: 1px solid var(--color-border);
  padding: 0 10px;
  width: 100% !important;
  height: 40px;
  color: var(--color-black);
  font-size: 1rem;
}
@media print, screen and (min-width: 960px) {
  .c-step-form .mktoForm input:not([type=radio]):not([type=checkbox]),
  .c-step-form .mktoForm select:not([type=radio]):not([type=checkbox]) {
    height: 32px;
  }
}
.c-step-form .mktoForm textarea {
  border: 1px solid var(--color-border);
  padding: 10px !important;
  width: 100%;
  height: 250px !important;
  font-size: 1rem;
}
.c-step-form .mktoNav--step1 {
  position: absolute;
  right: 0;
  bottom: 16px;
  width: 100%;
}
.c-step-form .mktoNav--step1 .mktoButton::after {
  display: none;
}
.c-step-form .mktoStep[aria-hidden=true] {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
.c-step-form .mktoStep > .mktoFormCol > legend {
  display: none;
}
.c-step-form .mktoStep[data-step="2"] > .mktoFormCol > legend + .mktoFormRow {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}
@media print, screen and (min-width: 768px) {
  .c-step-form .mktoStep[data-step="2"] > .mktoFormCol > legend + .mktoFormRow {
    flex-direction: row;
    gap: 0 20px;
  }
}
.c-step-form .mktoStep[data-step="2"] > .mktoFormCol > legend + .mktoFormRow > .mktoFieldDescriptor {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .c-step-form .mktoStep[data-step="2"] > .mktoFormCol > legend + .mktoFormRow > .mktoFieldDescriptor {
    width: calc(50% - 10px);
  }
}
.c-step-form .mktoStep[data-step="2"] > .mktoFormCol > legend + .mktoFormRow .mktoClear {
  display: none;
}
.c-step-form .mktoNav--step2 {
  display: flex;
  flex-direction: row;
  gap: 0 24px;
  width: 100%;
}
.c-step-form .mktoNav--step2 .mktoBack,
.c-step-form .mktoNav--step2 .mktoButtonRow {
  width: calc(50% - 12px);
}
.c-step-form .mktoNav--step2 .mktoBack {
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  padding: 12px 10px 12px !important;
  color: var(--color-gray);
}
.c-step-form .mktoNav--step2 .mktoButtonRow {
  margin-top: 0;
}
.c-step-form .mktoNav--step2 .mktoButton::after {
  display: none;
}
.c-step-form .mktoForm {
  width: 100%;
  max-width: 700px;
}
.c-step-form .mktoForm .mktoFormRow {
  margin-top: 0;
  margin-bottom: 16px !important;
}
.c-step-form .mktoForm fieldset.mktoFormCol {
  border: none;
  padding: 0 !important;
}
.c-step-form .mktoForm .mktoFieldWrap {
  margin-top: 0;
}
.c-step-form .mktoForm .mktoFieldWrap .mktoLabel {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  transition: all 0.18s ease;
  background: var(--color-white);
  padding: 0 4px;
  width: auto !important;
  pointer-events: none;
  color: var(--color-gray);
  font-weight: 400;
  font-size: 16px;
}
.c-step-form .mktoForm .mktoFieldWrap .mktoLabel .mktoAsterix {
  margin-right: 2px;
  color: #dc2626;
}
.c-step-form .mktoForm .mktoFieldWrap .mktoLabel#Lblirai {
  position: static;
  color: var(--color-black);
  font-size: 14px;
}
.c-step-form .mktoForm .mktoFieldWrap .mktoGutter {
  display: none;
}
.c-step-form .mktoForm .mktoFieldWrap .mktoField:not(input[type=checkbox]) {
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  border: 1px solid #dddddd;
  border-radius: 6px;
  background: #fff;
  padding: 14px 12px;
  width: 100% !important;
  height: auto;
  min-height: 47px;
  color: #1f2937;
  font-size: 16px;
}
.c-step-form .mktoForm .mktoFieldWrap .mktoField:not(input[type=checkbox]):focus {
  outline: none;
  border-color: var(--color-main);
}
.c-step-form .mktoForm .mktoFieldWrap .mktoField:not(input[type=checkbox])[aria-invalid=true] {
  border-color: #dc2626;
}
.c-step-form .mktoForm .mktoFieldWrap .mktoField:not(input[type=checkbox])[aria-invalid=true] + .mktoLabel {
  color: #dc2626;
}
.c-step-form .mktoForm .mktoFieldWrap.has-value .mktoLabel, .c-step-form .mktoForm .mktoFieldWrap.is-focused .mktoLabel, .c-step-form .mktoForm .mktoFieldWrap.always-float .mktoLabel {
  top: -8px;
  transform: none;
  z-index: 2;
  font-size: 12px;
}
.c-step-form .mktoForm .mktoFieldWrap select.mktoField {
  -webkit-appearance: none;
  position: relative;
  appearance: none;
}
.c-step-form .mktoForm .mktoFieldWrap select.mktoField + .mktoInstruction {
  -webkit-mask-image: url(/assets/images/common/icon-arrow-down.svg);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  display: block;
  position: absolute;
  top: calc(50% - 3.75px);
  right: 10px;
  mask-image: url(/assets/images/common/icon-arrow-down.svg);
  mask-position: center;
  mask-size: cover;
  mask-repeat: no-repeat;
  background-color: #d9d9d9;
  width: 12px;
  height: 7.5px;
  pointer-events: none;
}
.c-step-form .mktoForm .mktoLogicalField.mktoCheckboxList {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
  width: 100% !important;
}
.c-step-form .mktoForm .mktoLogicalField.mktoCheckboxList input[type=checkbox] {
  width: 19px;
  height: 19px;
  accent-color: var(--color-main);
}
.c-step-form .mktoForm .mktoLogicalField.mktoCheckboxList label {
  font-weight: 400;
  font-size: 14px;
}
.c-step-form .mktoForm .mktoError {
  margin-top: 4px;
  font-size: 13px;
}
.c-step-form .mktoForm .mktoButton,
.c-step-form .mktoForm .mktoNext,
.c-step-form .mktoForm .mktoBack {
  transition: background 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 600;
}
.c-step-form .mktoForm .mktoButton:not(.mktoBack):not(.mktoNext) {
  border: none !important;
  background: var(--color-main) !important;
  width: 100% !important;
  color: var(--color-white) !important;
}
.c-step-form .mktoForm .mktoNext,
.c-step-form .mktoForm .mktoBack {
  width: calc(50% - 12px);
}
.c-step-form .mktoForm .mktoNext {
  margin-left: auto;
}
.c-step-form .mktoForm .mktoBack {
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--colorgray);
}

.is-interview_service03.p-home-kv-b_form_content .mktoForm .mktoFormRow:first-of-type .mktoFormCol {
  width: 100%;
}
.is-interview_service03.p-home-kv-b_form_content .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton {
  padding: 13px 10px 13px !important;
}
@media print, screen and (min-width: 960px) {
  .is-interview_service03 .mktoForm {
    min-height: 412px !important;
  }
}
@media print, screen and (min-width: 960px) {
  .is-interview_service03 .mktoForm .mktoNav--step1 {
    bottom: 8px;
  }
}
.is-interview_service03 .mktoForm .mktoButton.mktoBack {
  padding: 12px 10px 12px !important;
}
.is-interview_service03 .mktoStep[data-step="1"] .mktoFormRow {
  display: flex;
}

.is-survey_service01.p-home-kv-b_form_content .mktoForm .mktoFormRow:first-of-type .mktoFormCol {
  width: 100%;
}
.is-survey_service01 .mktoStep[data-step="1"] .mktoFormRow {
  display: flex;
}

@media print, screen and (min-width: 960px) {
  .p-download5mins__form-content.c-step-form .mktoForm {
    min-height: 417px !important;
  }
}
@media print, screen and (min-width: 960px) {
  .p-download5mins__form-content.c-step-form .mktoForm .mktoNav--step1 {
    bottom: 18px;
  }
}